blob: 2053a2246d0f00c3f8dddde52a8db03af7ef663e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-0.8.4.2.ebuild,v 1.3 2010/02/19 20:04:12 ssuominen Exp $
EAPI=2
inherit xfconf
DESCRIPTION="Power manager for Xfce4"
HOMEPAGE="http://goodies.xfce.org/projects/applications/xfce4-power-manager"
SRC_URI="mirror://xfce/src/apps/${PN}/0.8/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="debug doc +plugins"
COMMON_DEPEND=">=dev-libs/dbus-glib-0.70
>=dev-libs/glib-2.16:2
>=gnome-base/libglade-2
>=sys-apps/hal-0.5.6
>=x11-libs/gtk+-2.12:2
>=x11-libs/libnotify-0.4.1
>=xfce-base/libxfce4util-4.6
>=xfce-base/libxfcegui4-4.6
>=xfce-base/xfconf-4.6
plugins? ( >=xfce-base/xfce4-panel-4.6 )
x11-libs/libXext"
RDEPEND="${COMMON_DEPEND}
gnome-base/librsvg"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext
x11-proto/xproto
doc? ( dev-libs/libxslt )"
pkg_setup() {
XFCONF="--disable-dependency-tracking
--enable-dpms
$(use_enable plugins panel-plugins)
$(use_enable doc xsltproc)
$(use_enable debug)"
DOCS="AUTHORS ChangeLog NEWS README TODO"
}
|