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/thunar: ChangeLog thunar-1.1.4.ebuild thunar-1.1.3.ebuild
Date: Thu, 04 Nov 2010 14:11:15
Message-Id: 20101104141106.9A69420051@flycatcher.gentoo.org
1 ssuominen 10/11/04 14:11:06
2
3 Modified: ChangeLog
4 Added: thunar-1.1.4.ebuild
5 Removed: thunar-1.1.3.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.104 xfce-base/thunar/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/thunar/ChangeLog?rev=1.104&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/thunar/ChangeLog?rev=1.104&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/thunar/ChangeLog?r1=1.103&r2=1.104
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v
21 retrieving revision 1.103
22 retrieving revision 1.104
23 diff -u -r1.103 -r1.104
24 --- ChangeLog 3 Nov 2010 22:05:51 -0000 1.103
25 +++ ChangeLog 4 Nov 2010 14:11:06 -0000 1.104
26 @@ -1,6 +1,11 @@
27 # ChangeLog for xfce-base/thunar
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.103 2010/11/03 22:05:51 ssuominen Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.104 2010/11/04 14:11:06 ssuominen Exp $
31 +
32 +*thunar-1.1.4 (04 Nov 2010)
33 +
34 + 04 Nov 2010; Samuli Suominen <ssuominen@g.o> +thunar-1.1.4.ebuild:
35 + Version bump.
36
37 *thunar-1.1.3 (03 Nov 2010)
38
39
40
41
42 1.1 xfce-base/thunar/thunar-1.1.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/thunar/thunar-1.1.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/thunar/thunar-1.1.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: thunar-1.1.4.ebuild
48 ===================================================================
49 # Copyright 1999-2010 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.1.4.ebuild,v 1.1 2010/11/04 14:11:06 ssuominen Exp $
52
53 EAPI=3
54 inherit virtualx xfconf
55
56 MY_P=${P/t/T}
57
58 DESCRIPTION="File manager for Xfce4"
59 HOMEPAGE="http://thunar.xfce.org/"
60 SRC_URI="mirror://xfce/src/xfce/${PN}/1.1/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2 LGPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
65 IUSE="dbus debug exif libnotify pcre startup-notification test +xfce_plugins_trash udev"
66
67 COMMON_DEPEND=">=xfce-base/exo-0.5.3
68 >=dev-libs/glib-2.18:2
69 >=x11-libs/gtk+-2.14:2
70 >=xfce-base/libxfce4util-4.6
71 >=xfce-base/libxfce4ui-4.7.1
72 >=dev-lang/perl-5.6
73 dbus? ( dev-libs/dbus-glib )
74 exif? ( >=media-libs/libexif-0.6.19 )
75 libnotify? ( x11-libs/libnotify )
76 pcre? ( >=dev-libs/libpcre-6 )
77 startup-notification? ( x11-libs/startup-notification )
78 xfce_plugins_trash? ( dev-libs/dbus-glib
79 >=xfce-base/xfce4-panel-4.3.90 )
80 udev? ( >=sys-fs/udev-145[extras] )"
81 RDEPEND="${COMMON_DEPEND}
82 >=x11-misc/shared-mime-info-0.80
83 >=dev-util/desktop-file-utils-0.17
84 udev? ( >=gnome-base/gvfs-1.6.3[gdu,udev] )"
85 DEPEND="${COMMON_DEPEND}
86 dev-util/intltool
87 dev-util/pkgconfig
88 sys-devel/gettext"
89
90 S=${WORKDIR}/${MY_P}
91
92 pkg_setup() {
93 XFCONF=(
94 --docdir="${EPREFIX}"/usr/share/doc/${PF}
95 --disable-dependency-tracking
96 $(use_enable dbus)
97 $(use_enable startup-notification)
98 $(use_enable udev gudev)
99 $(use_enable libnotify notifications)
100 $(use_enable debug)
101 $(use_enable exif)
102 $(use_enable pcre)
103 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
104 )
105
106 if use xfce_plugins_trash; then
107 XFCONF+=( --enable-dbus )
108 else
109 XFCONF+=( --disable-tpa-plugin )
110 fi
111
112 DOCS="AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO"
113 }
114
115 src_test() {
116 Xemake check || die
117 }