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/xfce-utils: ChangeLog xfce-utils-4.7.4.ebuild
Date: Sun, 02 Jan 2011 15:27:08
Message-Id: 20110102152658.E57CF20054@flycatcher.gentoo.org
1 ssuominen 11/01/02 15:26:58
2
3 Modified: ChangeLog
4 Added: xfce-utils-4.7.4.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.169 xfce-base/xfce-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce-utils/ChangeLog?rev=1.169&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce-utils/ChangeLog?rev=1.169&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce-utils/ChangeLog?r1=1.168&r2=1.169
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v
20 retrieving revision 1.168
21 retrieving revision 1.169
22 diff -u -r1.168 -r1.169
23 --- ChangeLog 5 Dec 2010 16:24:45 -0000 1.168
24 +++ ChangeLog 2 Jan 2011 15:26:58 -0000 1.169
25 @@ -1,6 +1,11 @@
26 # ChangeLog for xfce-base/xfce-utils
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v 1.168 2010/12/05 16:24:45 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v 1.169 2011/01/02 15:26:58 ssuominen Exp $
31 +
32 +*xfce-utils-4.7.4 (02 Jan 2011)
33 +
34 + 02 Jan 2011; Samuli Suominen <ssuominen@g.o> +xfce-utils-4.7.4.ebuild:
35 + Version bump.
36
37 *xfce-utils-4.7.3 (05 Dec 2010)
38
39
40
41
42 1.1 xfce-base/xfce-utils/xfce-utils-4.7.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce-utils/xfce-utils-4.7.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce-utils/xfce-utils-4.7.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xfce-utils-4.7.4.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/xfce-utils/xfce-utils-4.7.4.ebuild,v 1.1 2011/01/02 15:26:58 ssuominen Exp $
52
53 EAPI=3
54 inherit xfconf
55
56 DESCRIPTION="Xfce's utilities"
57 HOMEPAGE="http://www.xfce.org/projects/xfce-utils/"
58 SRC_URI="mirror://xfce/src/xfce/${PN}/4.7/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
63 IUSE="dbus debug +lock"
64
65 COMMON_DEPEND="x11-libs/libX11
66 >=x11-libs/gtk+-2.10:2
67 >=xfce-base/libxfce4util-4.6
68 >=xfce-base/libxfce4ui-4.7
69 >=xfce-base/xfconf-4.6
70 dbus? ( >=dev-libs/dbus-glib-0.70 )"
71 RDEPEND="${COMMON_DEPEND}
72 x11-apps/xrdb
73 x11-misc/xdg-user-dirs
74 lock? ( || ( x11-misc/xscreensaver
75 gnome-extra/gnome-screensaver
76 x11-misc/xlockmore
77 x11-misc/slock ) )"
78 DEPEND="${COMMON_DEPEND}
79 dev-util/intltool
80 dev-util/pkgconfig
81 sys-devel/gettext"
82
83 pkg_setup() {
84 XFCONF=(
85 --docdir="${EPREFIX}"/usr/share/doc/${PF}
86 --disable-dependency-tracking
87 --disable-xfconf-migration
88 $(use_enable dbus)
89 $(xfconf_use_debug)
90 --with-vendor-info=Gentoo
91 --with-xsession-prefix="${EPREFIX}"/usr
92 )
93
94 DOCS="AUTHORS ChangeLog NEWS"
95 }
96
97 src_install() {
98 xfconf_src_install
99
100 rm -f "${ED}"/usr/share/applications/xfhelp4.desktop
101
102 insinto /usr/share/xfce4
103 doins "${FILESDIR}"/Gentoo || die
104
105 echo startxfce4 > "${T}"/Xfce4
106 exeinto /etc/X11/Sessions
107 doexe "${T}"/Xfce4 || die
108 }