diff options
author | Fabio Erculiani <lxnay@gentoo.org> | 2011-07-19 19:14:05 +0000 |
---|---|---|
committer | Fabio Erculiani <lxnay@gentoo.org> | 2011-07-19 19:14:05 +0000 |
commit | e55fc0a4522eb268da560c86d0437f9086747e77 (patch) | |
tree | cf1b02933ab1efbfa744c154b5554d86dd229ce2 /app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild | |
parent | Version bump and remove old. (diff) | |
download | historical-e55fc0a4522eb268da560c86d0437f9086747e77.tar.gz historical-e55fc0a4522eb268da560c86d0437f9086747e77.tar.bz2 historical-e55fc0a4522eb268da560c86d0437f9086747e77.zip |
new ebuild
Package-Manager: portage-2.2.0_alpha37/cvs/Linux x86_64
Diffstat (limited to 'app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild')
-rw-r--r-- | app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild b/app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild new file mode 100644 index 000000000000..3645c3a6aec6 --- /dev/null +++ b/app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/packagekit-qt4-0.6.16.ebuild,v 1.1 2011/07/19 19:13:43 lxnay Exp $ + +EAPI="3" + +inherit eutils base + +MY_PN="PackageKit" +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Qt4 PackageKit backend library" +HOMEPAGE="http://www.packagekit.org/" +SRC_URI="http://www.packagekit.org/releases/${MY_P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=x11-libs/qt-core-4.4.0 + >=x11-libs/qt-dbus-4.4.0 + >=x11-libs/qt-sql-4.4.0 + ~app-admin/packagekit-base-${PV}" +DEPEND="${RDEPEND} + dev-libs/libxslt + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + econf \ + --enable-introspection=no \ + --localstatedir=/var \ + --disable-dependency-tracking \ + --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 \ + --disable-man-pages \ + --disable-cron \ + --disable-gtk-module \ + --disable-networkmanager \ + --disable-browser-plugin \ + --disable-pm-utils \ + --disable-device-rebind \ + --disable-tests \ + --enable-qt +} + +src_compile() { + cd "${S}"/lib/packagekit-qt || die + emake || die "emake install failed" +} + +src_install() { + cd "${S}"/lib/packagekit-qt || die + emake DESTDIR="${D}" install || die "emake install failed" +} |