Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-base/xfconf: xfconf-4.7.2.ebuild ChangeLog
Date: Wed, 10 Feb 2010 15:54:54
Message-Id: E1NfEtu-0007ra-Pf@stork.gentoo.org
1 darkside 10/02/10 15:54:50
2
3 Modified: ChangeLog
4 Added: xfconf-4.7.2.ebuild
5 Log:
6 Version bump with many small bug fixes http://releases.xfce.org/feeds/project/xfconf - also convert to EAPI3
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 xfce-base/xfconf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/xfconf/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 9 Feb 2010 20:49:54 -0000 1.22
23 +++ ChangeLog 10 Feb 2010 15:54:50 -0000 1.23
24 @@ -1,6 +1,12 @@
25 # ChangeLog for xfce-base/xfconf
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.22 2010/02/09 20:49:54 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.23 2010/02/10 15:54:50 darkside Exp $
29 +
30 +*xfconf-4.7.2 (10 Feb 2010)
31 +
32 + 10 Feb 2010; Jeremy Olexa <darkside@g.o> +xfconf-4.7.2.ebuild:
33 + Version bump with many small bug fixes
34 + http://releases.xfce.org/feeds/project/xfconf - also convert to EAPI3
35
36 09 Feb 2010; Fabian Groffen <grobian@g.o> xfconf-4.7.0.ebuild:
37 Marked ~x64-solaris
38
39
40
41 1.1 xfce-base/xfconf/xfconf-4.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/xfconf/xfconf-4.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/xfconf/xfconf-4.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xfconf-4.7.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.7.2.ebuild,v 1.1 2010/02/10 15:54:50 darkside Exp $
51
52 EAPI=3
53 inherit xfconf
54
55 DESCRIPTION="Xfce configuration daemon and utilities"
56 HOMEPAGE="http://www.xfce.org/"
57 SRC_URI="mirror://xfce/src/xfce/xfconf/4.7/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~x64-solaris"
62 IUSE="debug -perl profile"
63
64 RDEPEND=">=dev-libs/dbus-glib-0.72
65 >=dev-libs/glib-2.12:2
66 >=xfce-base/libxfce4util-4.6
67 perl? ( dev-perl/glib-perl )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 dev-util/intltool
71 sys-devel/gettext
72 perl? ( dev-perl/extutils-depends
73 dev-perl/extutils-pkgconfig )"
74
75 RESTRICT="test"
76
77 pkg_setup() {
78 XFCONF="--disable-dependency-tracking
79 --disable-static
80 --with-perl-options=INSTALLDIRS=vendor
81 $(use_enable perl perl-bindings)
82 --disable-gtk-doc
83 --disable-gtk-doc-html
84 --disable-gtk-doc-pdf
85 $(use_enable debug)
86 $(use_enable debug checks)
87 --with-html-dir=${EPREFIX}/usr/share/doc/${PF}/html"
88
89 use profile && XFCONF="${XFCONF} --enable-profiling"
90
91 DOCS="AUTHORS ChangeLog NEWS TODO"
92 }
93
94 src_compile() {
95 emake OTHERLDFLAGS="${LDFLAGS}" || die
96 }
97
98 src_install() {
99 xfconf_src_install
100
101 if use perl; then
102 find "${ED}" -type f -name perllocal.pod -delete
103 find "${ED}" -depth -mindepth 1 -type d -empty -delete
104 fi
105 }