blob: 00f6e8b25faac9b01f69db5fa8011c2fcddba864 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-volstatus-icon/xfce4-volstatus-icon-0.1.0.ebuild,v 1.4 2007/07/15 16:30:52 armin76 Exp $
inherit eutils xfce44
xfce44
DESCRIPTION="Systray status icon for safe unmount/eject of volumes"
HOMEPAGE="http://goodies.xfce.org"
SRC_URI="http://goodies.xfce.org/releases/${PN}/${P}${COMPRESS}"
KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
IUSE="debug"
RDEPEND=">=x11-libs/gtk+-2.10
>=xfce-base/libxfce4util-${XFCE_MASTER_VERSION}
>=xfce-base/libxfcegui4-${XFCE_MASTER_VERSION}
>=xfce-extra/exo-0.3.2
>=sys-apps/hal-0.5.9
dev-libs/dbus-glib"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool"
pkg_setup() {
if ! built_with_use xfce-extra/exo hal; then
ewarn "Volume status icon requires exo with hal support."
ewarn "Enable hal USE flag and re-emerge exo."
die "re-emerge exo with USE hal"
fi
}
DOCS="AUTHORS ChangeLog NEWS README TODO"
|