Gentoo Archives: gentoo-commits

From: "Fabio Erculiani (lxnay)" <lxnay@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/packagekit-qt4: packagekit-qt4-0.6.17.ebuild ChangeLog
Date: Tue, 02 Aug 2011 05:45:43
Message-Id: 20110802054534.840942004C@flycatcher.gentoo.org
1 lxnay 11/08/02 05:45:34
2
3 Modified: ChangeLog
4 Added: packagekit-qt4-0.6.17.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 app-admin/packagekit-qt4/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/packagekit-qt4/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/packagekit-qt4/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/packagekit-qt4/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 20 Jul 2011 10:29:01 -0000 1.2
24 +++ ChangeLog 2 Aug 2011 05:45:34 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/packagekit-qt4
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/ChangeLog,v 1.2 2011/07/20 10:29:01 lxnay Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/ChangeLog,v 1.3 2011/08/02 05:45:34 lxnay Exp $
30 +
31 +*packagekit-qt4-0.6.17 (02 Aug 2011)
32 +
33 + 02 Aug 2011; Fabio Erculiani <lxnay@g.o>
34 + +packagekit-qt4-0.6.17.ebuild:
35 + version bump
36
37 20 Jul 2011; Fabio Erculiani <lxnay@g.o> packagekit-qt4-0.6.16.ebuild:
38 remove --disable-managed
39
40
41
42 1.1 app-admin/packagekit-qt4/packagekit-qt4-0.6.17.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/packagekit-qt4/packagekit-qt4-0.6.17.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/packagekit-qt4/packagekit-qt4-0.6.17.ebuild?rev=1.1&content-type=text/plain
46
47 Index: packagekit-qt4-0.6.17.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/packagekit-qt4-0.6.17.ebuild,v 1.1 2011/08/02 05:45:34 lxnay Exp $
52
53 EAPI="3"
54
55 inherit eutils base
56
57 MY_PN="PackageKit"
58 MY_P=${MY_PN}-${PV}
59
60 DESCRIPTION="Qt4 PackageKit backend library"
61 HOMEPAGE="http://www.packagekit.org/"
62 SRC_URI="http://www.packagekit.org/releases/${MY_P}.tar.xz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND=">=x11-libs/qt-core-4.4.0
70 >=x11-libs/qt-dbus-4.4.0
71 >=x11-libs/qt-sql-4.4.0
72 ~app-admin/packagekit-base-${PV}"
73 DEPEND="${RDEPEND}
74 dev-libs/libxslt
75 dev-util/pkgconfig"
76
77 S="${WORKDIR}/${MY_P}"
78
79 src_configure() {
80 econf \
81 --enable-introspection=no \
82 --localstatedir=/var \
83 --disable-dependency-tracking \
84 --enable-option-checking \
85 --enable-libtool-lock \
86 --disable-strict \
87 --disable-local \
88 --disable-gtk-doc \
89 --disable-command-not-found \
90 --disable-debuginfo-install \
91 --disable-gstreamer-plugin \
92 --disable-service-packs \
93 --disable-man-pages \
94 --disable-cron \
95 --disable-gtk-module \
96 --disable-networkmanager \
97 --disable-browser-plugin \
98 --disable-pm-utils \
99 --disable-device-rebind \
100 --disable-tests \
101 --enable-qt
102 }
103
104 src_compile() {
105 cd "${S}"/lib/packagekit-qt || die
106 emake || die "emake install failed"
107 }
108
109 src_install() {
110 cd "${S}"/lib/packagekit-qt || die
111 emake DESTDIR="${D}" install || die "emake install failed"
112 }