blob: 66cd3a5d7c85162134bddf85cce436c9f1b2989d (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-volman/thunar-volman-0.1.2.ebuild,v 1.9 2007/04/24 14:22:13 gustavoz Exp $
inherit eutils xfce44
xfce44
DESCRIPTION="Thunar volume management"
HOMEPAGE="http://foo-projects.org/~benny/projects/thunar-volman"
SRC_URI="http://download2.berlios.de/xfce-goodies/${P}.tar.bz2"
KEYWORDS="amd64 ~ia64 ~ppc64 sparc x86 ~ppc"
RDEPEND="dev-libs/dbus-glib
sys-apps/hal
>=xfce-extra/exo-0.3.2
>=xfce-base/thunar-${THUNAR_MASTER_VERSION}"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
if ! built_with_use xfce-extra/exo hal; then
ewarn "Volume management requires exo with hal support. Enable"
ewarn "hal USE flag and re-emerge exo."
die "re-emerge exo with USE hal"
fi
}
DOCS="AUTHORS ChangeLog NEWS README THANKS"
|