Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-base/thunar: ChangeLog thunar-1.0.1.ebuild thunar-1.0.0.ebuild
Date: Tue, 21 Apr 2009 04:28:51
Message-Id: E1Lw7bE-0001fX-QL@stork.gentoo.org
1 darkside 09/04/21 04:28:48
2
3 Modified: ChangeLog
4 Added: thunar-1.0.1.ebuild
5 Removed: thunar-1.0.0.ebuild
6 Log:
7 Version bump for xfce-4.6.1 release, remove old
8 (Portage version: 2.1.6.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.68 xfce-base/thunar/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/thunar/ChangeLog?rev=1.68&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/thunar/ChangeLog?rev=1.68&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/thunar/ChangeLog?r1=1.67&r2=1.68
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v
20 retrieving revision 1.67
21 retrieving revision 1.68
22 diff -u -r1.67 -r1.68
23 --- ChangeLog 10 Mar 2009 13:49:26 -0000 1.67
24 +++ ChangeLog 21 Apr 2009 04:28:48 -0000 1.68
25 @@ -1,6 +1,12 @@
26 # ChangeLog for xfce-base/thunar
27 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.67 2009/03/10 13:49:26 angelos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.68 2009/04/21 04:28:48 darkside Exp $
30 +
31 +*thunar-1.0.1 (21 Apr 2009)
32 +
33 + 21 Apr 2009; Jeremy Olexa <darkside@g.o> -thunar-1.0.0.ebuild,
34 + +thunar-1.0.1.ebuild:
35 + Version bump for xfce-4.6.1 release, remove old
36
37 *thunar-1.0.0 (10 Mar 2009)
38
39
40
41
42 1.1 xfce-base/thunar/thunar-1.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/thunar/thunar-1.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-base/thunar/thunar-1.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: thunar-1.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-1.0.1.ebuild,v 1.1 2009/04/21 04:28:48 darkside Exp $
52
53 EAPI="2"
54
55 MY_PN=${PN/t/T}
56 inherit virtualx xfce4
57
58 XFCE_VERSION=4.6.1
59
60 xfce4_core
61
62 DESCRIPTION="File manager"
63 HOMEPAGE="http://thunar.xfce.org"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 IUSE="dbus debug doc exif gnome hal pcre startup-notification +trash-plugin"
66
67 RDEPEND=">=dev-lang/perl-5.6
68 >=dev-libs/glib-2.6:2
69 >=dev-util/desktop-file-utils-0.14
70 >=media-libs/freetype-2
71 >=media-libs/jpeg-6b
72 >=media-libs/libpng-1.2.0
73 virtual/fam
74 >=x11-libs/gtk+-2.6:2
75 x11-libs/libSM
76 >=x11-misc/shared-mime-info-0.20
77 >=xfce-extra/exo-0.3.92[hal?]
78 >=xfce-base/libxfce4util-${XFCE_VERSION}
79 dbus? ( dev-libs/dbus-glib )
80 exif? ( >=media-libs/libexif-0.6 )
81 hal? ( dev-libs/dbus-glib
82 sys-apps/hal )
83 gnome? ( gnome-base/gconf )
84 pcre? ( >=dev-libs/libpcre-6 )
85 startup-notification? ( x11-libs/startup-notification )
86 trash-plugin? ( dev-libs/dbus-glib
87 >=xfce-base/xfce4-panel-${XFCE_VERSION} )"
88 DEPEND="${RDEPEND}
89 dev-util/intltool
90 doc? ( dev-util/gtk-doc )"
91
92 pkg_setup() {
93 XFCE_CONFIG+="$(use_enable dbus) $(use_enable doc gtk-doc)
94 $(use_enable exif) $(use_enable gnome gnome-thumbnailers)
95 $(use_enable pcre)"
96
97 if use hal && ! use dbus; then
98 ewarn "USE hal detected, enabling dbus."
99 fi
100
101 if use hal; then
102 XFCE_CONFIG+=" --enable-dbus --with-volume-manager=hal"
103 else
104 XFCE_CONFIG+=" --with-volume-manager=none"
105 fi
106
107 if use trash-plugin && ! use dbus; then
108 XFCE_CONFIG+=" --enable-dbus"
109 ewarn "USE trash-plugin detected, enabling dbus."
110 fi
111
112 use trash-plugin || XFCE_CONFIG+=" --disable-tpa-plugin"
113 }
114
115 src_test() {
116 Xemake check || die "emake check failed"
117 }
118
119 DOCS="AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO"