blob: f7d40a5410bcb82491e0c217392fc4e8d5f67f8b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.8.1.1.ebuild,v 1.4 2004/12/23 16:28:30 gmsoft Exp $
inherit gnome2 eutils
DESCRIPTION="Applets for the Gnome2 Desktop and Panel"
HOMEPAGE="http://www.gnome.org/"
IUSE="doc apm acpi ipv6 gstreamer"
SLOT="2"
LICENSE="GPL-2 FDL-1.1"
KEYWORDS="x86 ppc ~alpha sparc hppa ~amd64 ~ia64 ~mips ~ppc64"
RDEPEND=">=x11-libs/gtk+-2.1
>=gnome-base/gail-1.3
>=gnome-base/gconf-2.0
>=gnome-base/gnome-vfs-2
>=gnome-base/libgtop-2.8
>=gnome-base/gnome-panel-2.7
>=gnome-base/libglade-2
>=gnome-base/libgnome-2
>=gnome-base/libgnomeui-2
>=x11-libs/libxklavier-0.97
apm? ( sys-apps/apmd )
acpi? ( sys-apps/acpid )
gstreamer? ( >=media-libs/gstreamer-0.8 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12.0
>=app-text/scrollkeeper-0.3.11
doc? ( dev-util/gtk-doc )"
DOCS="AUTHORS ChangeLog NEWS README"
G2CONF="${G2CONF} $(use_enable ipv6) $(use_enable gstreamer) --enable-flags"
MAKEOPTS="${MAKEOPTS} -j1"
src_unpack() {
unpack ${A}
gnome2_omf_fix
}
src_install () {
gnome2_src_install
for APPLET in accessx-status battstat \
cdplayer charpick drivemount \
geyes gkb-new gswitchit \
gtik gweather mailcheck \
mini-commander mixer modemlights multiload \
stickynotes wireless; do
docinto ${APPLET}
dodoc ${APPLET}/[ChangeLog,AUTHORS,NEWS,TODO] ${APPLET}/README*
done
}
USE_DESTDIR="1"
|