Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-base/xfconf: ChangeLog xfconf-4.7.5.ebuild
Date: Sun, 02 Jan 2011 15:25:20
Message-Id: 20110102152510.4EB5520054@flycatcher.gentoo.org
1 ssuominen 11/01/02 15:25:10
2
3 Modified: ChangeLog
4 Added: xfconf-4.7.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.44 xfce-base/xfconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 3 Dec 2010 21:35:48 -0000 1.43
24 +++ ChangeLog 2 Jan 2011 15:25:10 -0000 1.44
25 @@ -1,6 +1,11 @@
26 # ChangeLog for xfce-base/xfconf
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.43 2010/12/03 21:35:48 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.44 2011/01/02 15:25:10 ssuominen Exp $
31 +
32 +*xfconf-4.7.5 (02 Jan 2011)
33 +
34 + 02 Jan 2011; Samuli Suominen <ssuominen@g.o> +xfconf-4.7.5.ebuild:
35 + Version bump.
36
37 *xfconf-4.7.4 (03 Dec 2010)
38
39
40
41
42 1.1 xfce-base/xfconf/xfconf-4.7.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.7.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.7.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xfconf-4.7.5.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/xfce-base/xfconf/xfconf-4.7.5.ebuild,v 1.1 2011/01/02 15:25:10 ssuominen Exp $
52
53 EAPI=3
54 inherit xfconf
55
56 DESCRIPTION="Xfce's configuration storage system"
57 HOMEPAGE="http://www.xfce.org/"
58 SRC_URI="mirror://xfce/src/xfce/xfconf/4.7/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 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"
63 IUSE="debug perl"
64
65 RDEPEND=">=dev-libs/dbus-glib-0.72
66 >=dev-libs/glib-2.18:2
67 >=xfce-base/libxfce4util-4.6
68 perl? ( dev-perl/glib-perl )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 dev-util/intltool
72 sys-devel/gettext
73 perl? ( dev-perl/extutils-depends
74 dev-perl/extutils-pkgconfig )"
75
76 RESTRICT="test"
77
78 pkg_setup() {
79 XFCONF=(
80 --disable-dependency-tracking
81 --disable-static
82 $(use_enable perl perl-bindings)
83 $(xfconf_use_debug)
84 $(use_enable debug checks)
85 --with-perl-options=INSTALLDIRS=vendor
86 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
87 )
88
89 DOCS="AUTHORS ChangeLog NEWS TODO"
90 }
91
92 src_compile() {
93 emake OTHERLDFLAGS="${LDFLAGS}" || die
94 }
95
96 src_install() {
97 xfconf_src_install
98
99 if use perl; then
100 find "${ED}" -type f -name perllocal.pod -delete
101 find "${ED}" -depth -mindepth 1 -type d -empty -delete
102 fi
103 }