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/libxfce4ui: ChangeLog libxfce4ui-4.8.1.ebuild
Date: Tue, 27 Dec 2011 12:24:09
Message-Id: 20111227122353.F238C2004B@flycatcher.gentoo.org
1 ssuominen 11/12/27 12:23:53
2
3 Modified: ChangeLog
4 Added: libxfce4ui-4.8.1.ebuild
5 Log:
6 Version bump. Use upstream patch for XF86WWW and XF86Mail keyboard shortcuts.
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.26 xfce-base/libxfce4ui/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 11 Dec 2011 07:15:59 -0000 1.25
24 +++ ChangeLog 27 Dec 2011 12:23:53 -0000 1.26
25 @@ -1,6 +1,12 @@
26 # ChangeLog for xfce-base/libxfce4ui
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/ChangeLog,v 1.25 2011/12/11 07:15:59 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/ChangeLog,v 1.26 2011/12/27 12:23:53 ssuominen Exp $
30 +
31 +*libxfce4ui-4.8.1 (27 Dec 2011)
32 +
33 + 27 Dec 2011; Samuli Suominen <ssuominen@g.o> +libxfce4ui-4.8.1.ebuild,
34 + +files/libxfce4ui-4.8.1-keyboard-shortcuts.patch:
35 + Version bump. Use upstream patch for XF86WWW and XF86Mail keyboard shortcuts.
36
37 *libxfce4ui-4.8.0-r1 (11 Dec 2011)
38
39
40
41
42 1.1 xfce-base/libxfce4ui/libxfce4ui-4.8.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.8.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.8.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libxfce4ui-4.8.1.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/libxfce4ui/libxfce4ui-4.8.1.ebuild,v 1.1 2011/12/27 12:23:53 ssuominen Exp $
52
53 EAPI=4
54 inherit xfconf
55
56 DESCRIPTION="Unified widgets and session management libraries for the Xfce desktop environment"
57 HOMEPAGE="http://www.xfce.org/projects/libxfce4"
58 SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
63 IUSE="debug glade startup-notification"
64
65 RDEPEND=">=dev-libs/glib-2.16
66 >=x11-libs/gtk+-2.14:2
67 x11-libs/libICE
68 x11-libs/libSM
69 x11-libs/libX11
70 >=xfce-base/libxfce4util-4.8
71 >=xfce-base/xfconf-4.8
72 glade? ( dev-util/glade:3 )
73 startup-notification? ( x11-libs/startup-notification )"
74 DEPEND="${RDEPEND}
75 dev-lang/perl
76 dev-util/intltool
77 dev-util/pkgconfig
78 sys-devel/gettext"
79
80 pkg_setup() {
81 PATCHES=( "${FILESDIR}"/${P}-keyboard-shortcuts.patch ) #392001
82
83 XFCONF=(
84 $(use_enable startup-notification)
85 $(use_enable glade gladeui)
86 $(xfconf_use_debug)
87 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
88 )
89
90 [[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857
91
92 DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
93 }