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/xfdesktop: xfdesktop-4.7.0.ebuild
Date: Wed, 03 Nov 2010 19:24:27
Message-Id: 20101103192424.6A89920051@flycatcher.gentoo.org
1 ssuominen 10/11/03 19:24:24
2
3 Modified: xfdesktop-4.7.0.ebuild
4 Log:
5 Add KEYWORDS, bump garcon depend, convert XFCONF to an array
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild?r1=1.2&r2=1.3
15
16 Index: xfdesktop-4.7.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- xfdesktop-4.7.0.ebuild 6 Sep 2010 13:40:27 -0000 1.2
23 +++ xfdesktop-4.7.0.ebuild 3 Nov 2010 19:24:24 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild,v 1.2 2010/09/06 13:40:27 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.7.0.ebuild,v 1.3 2010/11/03 19:24:24 ssuominen Exp $
29
30 EAPI=3
31 inherit xfconf
32 @@ -11,9 +11,7 @@
33
34 LICENSE="GPL-2"
35 SLOT="0"
36 -# This is because xfdesktop doesn't ship menu files anymore. Unreleased garcon is required, which has them.
37 -KEYWORDS=""
38 -#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
39 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
40 IUSE="debug thunar"
41
42 RDEPEND="x11-libs/libX11
43 @@ -23,7 +21,7 @@
44 >=x11-libs/gtk+-2.14:2
45 >=xfce-base/libxfce4util-4.6
46 >=xfce-base/libxfce4ui-4.7
47 - >=xfce-base/garcon-0.1.1
48 + >=xfce-base/garcon-0.1.2
49 >=xfce-base/xfconf-4.6
50 thunar? ( >=xfce-base/exo-0.5
51 xfce-extra/thunar-vfs
52 @@ -34,13 +32,15 @@
53 dev-util/pkgconfig"
54
55 pkg_setup() {
56 - XFCONF="--docdir=${EPREFIX}/usr/share/doc/${PF}
57 + XFCONF=(
58 + --docdir="${EPREFIX}"/usr/share/doc/${PF}
59 --disable-dependency-tracking
60 --disable-static
61 $(use_enable thunar file-icons)
62 --disable-thunarx
63 $(use_enable thunar exo)
64 - $(xfconf_use_debug)"
65 + $(xfconf_use_debug)
66 + )
67
68 DOCS="AUTHORS ChangeLog NEWS README TODO"
69 }