f28f2c1a72
Those ebuild inherit kde4-base, which ingerit kde4-functions, and that eclass has no support for EAPI 2 now.
28 lines
750 B
Bash
28 lines
750 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="3"
|
|
|
|
KMNAME="playground/sysadmin"
|
|
inherit kde4-base
|
|
|
|
DESCRIPTION="KDE-based PackageKit frontend"
|
|
HOMEPAGE="http://www.kde-apps.org/content/show.php/show.php?content=84745"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~x86 ~amd64"
|
|
SLOT="4"
|
|
IUSE="debug"
|
|
|
|
DEPEND=">=app-admin/packagekit-qt4-0.6.4"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
kde4-base_src_install
|
|
# fix dbus service path otherwise conflicting with gnome-packagekit one
|
|
mv "${ED}/usr/share/dbus-1/services/org.freedesktop.PackageKit.service" \
|
|
"${ED}"/usr/share/dbus-1/services/kde-org.freedesktop.PackageKit.service || \
|
|
die "cannot hackily move packagekit dbus service file"
|
|
}
|