blob: e5fabec2127b93ff64cb1c44c9e7a9c4b15b33fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-1.0.1.ebuild,v 1.7 2009/06/22 16:59:12 armin76 Exp $
EAPI="2"
MY_PN=${PN/t/T}
inherit virtualx xfce4
XFCE_VERSION=4.6.1
xfce4_core
DESCRIPTION="File manager"
HOMEPAGE="http://thunar.xfce.org"
KEYWORDS="~alpha amd64 arm hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
LICENSE="GPL-2 LGPL-2"
IUSE="dbus debug doc exif gnome hal pcre startup-notification +trash-plugin"
RDEPEND=">=dev-lang/perl-5.6
>=dev-libs/glib-2.6:2
>=dev-util/desktop-file-utils-0.14
>=media-libs/freetype-2
>=media-libs/jpeg-6b
>=media-libs/libpng-1.2.0
virtual/fam
>=x11-libs/gtk+-2.6:2
x11-libs/libSM
>=x11-misc/shared-mime-info-0.20
>=xfce-extra/exo-0.3.92[hal?]
>=xfce-base/libxfce4util-${XFCE_VERSION}
dbus? ( dev-libs/dbus-glib )
exif? ( >=media-libs/libexif-0.6 )
hal? ( dev-libs/dbus-glib
sys-apps/hal )
gnome? ( gnome-base/gconf )
pcre? ( >=dev-libs/libpcre-6 )
startup-notification? ( x11-libs/startup-notification )
trash-plugin? ( dev-libs/dbus-glib
>=xfce-base/xfce4-panel-${XFCE_VERSION} )"
DEPEND="${RDEPEND}
dev-util/intltool
doc? ( dev-util/gtk-doc )"
pkg_setup() {
XFCE_CONFIG+="$(use_enable dbus) $(use_enable doc gtk-doc)
$(use_enable exif) $(use_enable gnome gnome-thumbnailers)
$(use_enable pcre)"
if use hal && ! use dbus; then
ewarn "USE hal detected, enabling dbus."
fi
if use hal; then
XFCE_CONFIG+=" --enable-dbus --with-volume-manager=hal"
else
XFCE_CONFIG+=" --with-volume-manager=none"
fi
if use trash-plugin && ! use dbus; then
XFCE_CONFIG+=" --enable-dbus"
ewarn "USE trash-plugin detected, enabling dbus."
fi
use trash-plugin || XFCE_CONFIG+=" --disable-tpa-plugin"
}
src_test() {
Xemake check || die "emake check failed"
}
DOCS="AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO"
|