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: xfconf-4.8.1.ebuild ChangeLog
Date: Tue, 27 Dec 2011 12:34:04
Message-Id: 20111227123354.64F622004B@flycatcher.gentoo.org
1 ssuominen 11/12/27 12:33:54
2
3 Modified: ChangeLog
4 Added: xfconf-4.8.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.52 xfce-base/xfconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.52&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.52&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?r1=1.51&r2=1.52
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v
20 retrieving revision 1.51
21 retrieving revision 1.52
22 diff -u -r1.51 -r1.52
23 --- ChangeLog 20 May 2011 17:47:26 -0000 1.51
24 +++ ChangeLog 27 Dec 2011 12:33:54 -0000 1.52
25 @@ -1,6 +1,11 @@
26 # ChangeLog for xfce-base/xfconf
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.51 2011/05/20 17:47:26 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.52 2011/12/27 12:33:54 ssuominen Exp $
30 +
31 +*xfconf-4.8.1 (27 Dec 2011)
32 +
33 + 27 Dec 2011; Samuli Suominen <ssuominen@g.o> +xfconf-4.8.1.ebuild:
34 + Version bump.
35
36 20 May 2011; Fabian Groffen <grobian@g.o> xfconf-4.8.0.ebuild:
37 Add --disable-visibility on Darwin, bug #366857
38
39
40
41 1.1 xfce-base/xfconf/xfconf-4.8.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.8.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/xfconf-4.8.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xfconf-4.8.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.8.1.ebuild,v 1.1 2011/12/27 12:33:54 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/xfconf"
57 SRC_URI="mirror://xfce/src/xfce/xfconf/${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.90
65 >=dev-libs/glib-2.18
66 >=xfce-base/libxfce4util-4.8
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 RESTRICT="test"
78
79 pkg_setup() {
80 XFCONF=(
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 [[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857
90
91 DOCS=( AUTHORS ChangeLog NEWS TODO )
92 }
93
94 src_compile() {
95 emake OTHERLDFLAGS="${LDFLAGS}"
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 }