diff options
Diffstat (limited to 'app-admin/packagekit/packagekit-0.6.6.ebuild')
-rw-r--r-- | app-admin/packagekit/packagekit-0.6.6.ebuild | 172 |
1 files changed, 172 insertions, 0 deletions
diff --git a/app-admin/packagekit/packagekit-0.6.6.ebuild b/app-admin/packagekit/packagekit-0.6.6.ebuild new file mode 100644 index 0000000000..ab7df7116a --- /dev/null +++ b/app-admin/packagekit/packagekit-0.6.6.ebuild @@ -0,0 +1,172 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +RESTRICT="test" # tests are failing atm + +inherit autotools-utils multilib python nsplugins + +MY_PN="PackageKit" +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Manage packages in a secure way using a cross-distro and cross-architecture API" +HOMEPAGE="http://www.packagekit.org/" +SRC_URI="http://www.packagekit.org/releases/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="connman cron gtk networkmanager nls nsplugin pm-utils ++policykit qt4 static-libs test udev" + +CDEPEND=" + dev-db/sqlite:3 + >=dev-libs/dbus-glib-0.74 + >=dev-libs/glib-2.16.1:2 + dev-libs/gobject-introspection + >=sys-apps/dbus-1.2.24 + connman? ( net-misc/connman ) + gtk? ( + dev-libs/dbus-glib + media-libs/fontconfig + >=x11-libs/gtk+-2.14.0:2 + x11-libs/pango + ) + networkmanager? ( >=net-misc/networkmanager-0.6.4 ) + nsplugin? ( + dev-libs/dbus-glib + dev-libs/glib:2 + dev-libs/nspr + x11-libs/cairo + >=x11-libs/gtk+-2.14.0:2 + x11-libs/pango + ) + policykit? ( >=sys-auth/polkit-0.96 ) + qt4? ( + >=x11-libs/qt-core-4.4.0 + >=x11-libs/qt-dbus-4.4.0 + >=x11-libs/qt-sql-4.4.0 + ) + udev? ( >=sys-fs/udev-145[extras] ) +" +DEPEND="${CDEPEND} + dev-libs/libxslt + >=dev-util/intltool-0.35.0 + dev-util/pkgconfig + sys-devel/gettext + nsplugin? ( >=net-libs/xulrunner-1.9.1 ) + test? ( + qt4? ( + dev-util/cppunit + >=x11-libs/qt-gui-4.4.0 + ) + ) +" +RDEPEND="${CDEPEND} + >=app-portage/layman-1.2.3 + >=sys-apps/portage-2.2_rc67 + pm-utils? ( sys-power/pm-utils ) +" + +S="${WORKDIR}/${MY_P}" + +# NOTES: +# do not use a specific user, useless and not more secure according to upstream +# doc is in the tarball and always installed +# mono doesn't install anything (RDEPEND dev-dotnet/gtk-sharp-gapi:2 +# (R)DEPEND dev-dotnet/glib-sharp:2 dev-lang/mono), upstream bug 23247 + +# TODO: +# +doc to install doc/website +# check if test? qt? ( really needs qt-gui) + +# UPSTREAM: +# documentation/website with --enable-doc-install +# failing tests + +DOCS=(AUTHORS ChangeLog MAINTAINERS NEWS README TODO) + +src_prepare() { + autotools-utils_src_prepare + + eautoreconf +} + +src_configure() { + # localstatedir: for gentoo it's /var/lib but for $PN it's /var + # option-check,libtool-lock,strict,local: obvious reasons + # gtk-doc: doc already built + # command,debuginfo,gstreamer,service-packs: not supported by backend + myeconfargs=( + --localstatedir=/var + --enable-option-checking + --enable-libtool-lock + --disable-strict + --disable-local + --disable-gtk-doc + --disable-command-not-found + --disable-debuginfo-install + --disable-gstreamer-plugin + --disable-service-packs + --disable-managed + --enable-man-pages + --disable-dummy + --enable-portage + --with-default-backend=portage + $(use_enable connman) + $(use_enable cron) + $(use_enable gtk gtk-module) + $(use_enable networkmanager) + $(use_enable nls) + $(use_enable nsplugin browser-plugin) + $(use_enable pm-utils) + $(use_enable qt4 qt) + $(use_enable test tests) + $(use_enable udev device-rebind) + ) + + if use policykit; then + myconfargs+=(--with-security-framework=polkit) + else + myconfargs+=(--with-security-framework=dummy) + fi + + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + if use nsplugin; then + src_mv_plugins /usr/$(get_libdir)/mozilla/plugins + fi + + # Remove precompiled python modules, we handle byte compiling + rm -f "${D}/$(python_get_sitedir)"/${PN}*.py[co] +} + +pkg_postinst() { + python_mod_optimize "$(python_get_sitedir)/${PN}" + + if ! use policykit; then + ewarn "You are not using policykit, the daemon can't be considered as secure." + ewarn "All users will be able to do anything through ${MY_PN}." + ewarn "Please, consider rebuilding ${MY_PN} with policykit USE flag." + ewarn "THIS IS A SECURITY ISSUE." + echo + ebeep + epause 5 + fi +} + +pkg_prerm() { + einfo "Removing downloaded files with ${MY_PN}..." + [[ -d "${ROOT}"/var/cache/${MY_PN}/downloads/ ]] && \ + rm -rf /var/cache/PackageKit/downloads/* +} + +pkg_postrm() { + python_mod_cleanup $(python_get_sitedir)/${PN} +} |