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.9.0.ebuild
Date: Fri, 30 Mar 2012 20:19:43
Message-Id: 20120330201927.195CD2004B@flycatcher.gentoo.org
1 ssuominen 12/03/30 20:19:27
2
3 Modified: ChangeLog
4 Added: xfconf-4.9.0.ebuild
5 Log:
6 Version bump to development release.
7
8 (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.58 xfce-base/xfconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 23 Mar 2012 21:29:28 -0000 1.57
24 +++ ChangeLog 30 Mar 2012 20:19:27 -0000 1.58
25 @@ -1,6 +1,11 @@
26 # ChangeLog for xfce-base/xfconf
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.57 2012/03/23 21:29:28 angelos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.58 2012/03/30 20:19:27 ssuominen Exp $
30 +
31 +*xfconf-4.9.0 (30 Mar 2012)
32 +
33 + 30 Mar 2012; Samuli Suominen <ssuominen@g.o> +xfconf-4.9.0.ebuild:
34 + Version bump to development release.
35
36 23 Mar 2012; Christoph Mende <angelos@g.o> xfconf-4.8.1.ebuild:
37 Add slot dep on glib
38
39
40
41 1.1 xfce-base/xfconf/xfconf-4.9.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.9.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.9.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xfconf-4.9.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.9.0.ebuild,v 1.1 2012/03/30 20:19:27 ssuominen Exp $
51
52 EAPI=4
53 inherit xfconf
54
55 DESCRIPTION="A simple client-server configuration storage and query system for the Xfce desktop environment"
56 HOMEPAGE="http://www.xfce.org/projects/"
57 SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${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"
63
64 RDEPEND=">=dev-libs/dbus-glib-0.98
65 >=dev-libs/glib-2.18
66 >=xfce-base/libxfce4util-4.9
67 perl? ( dev-perl/glib-perl )"
68 DEPEND="${RDEPEND}
69 dev-util/intltool
70 dev-util/pkgconfig
71 sys-devel/gettext
72 perl? (
73 dev-perl/extutils-depends
74 dev-perl/extutils-pkgconfig
75 )"
76
77 pkg_setup() {
78 XFCONF=(
79 --disable-static
80 $(use_enable perl perl-bindings)
81 $(xfconf_use_debug)
82 $(use_enable debug checks)
83 --with-perl-options=INSTALLDIRS=vendor
84 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
85 )
86
87 [[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857
88
89 DOCS=( AUTHORS ChangeLog NEWS TODO )
90 }
91
92 src_compile() {
93 emake OTHERLDFLAGS="${LDFLAGS}"
94 }
95
96 src_install() {
97 xfconf_src_install
98
99 if use perl; then
100 find "${ED}" -type f -name perllocal.pod -exec rm -f {} +
101 find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} +
102 fi
103 }