blob: 11d738295d28ff099c858355b042a9ce381d73fc (
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-2005 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.7 2005/01/22 06:45:18 vapier Exp $
inherit gnome2 eutils
DESCRIPTION="Applets for the Gnome2 Desktop and Panel"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2 FDL-1.1"
SLOT="2"
KEYWORDS="x86 ppc alpha sparc hppa amd64 ia64 ~mips ~ppc64"
IUSE="doc apm acpi ipv6 gstreamer"
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"
|