blob: 60b06e3a3b1867275dcc2bec6d9ee61f8e830e68 (
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
64
65
66
67
68
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/shermans-aquarium/shermans-aquarium-2.2.0.ebuild,v 1.2 2003/09/06 23:52:57 msterret Exp $
MY_P=${PN/-/_}-${PV}
DESCRIPTION="A gnome/wm applet displaying comical fish"
HOMEPAGE="http://aquariumapplet.sourceforge.net"
SRC_URI="mirror://sourceforge/aquariumapplet/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
# this applet contains support for either using gnome1, gnome2,
# gtk1, or gtk2, so we could use something like
# if gtk is enabled, then that infers to build for gnome1
# if gtk2 is enabled, it infers to build for gnome2
# it's not possible to cross build (eg, gtk1 and gnome2)
# as outlined in the INSTALL file provided with the source
IUSE="gtk gtk2 sdl"
DEPEND="x11-base/xfree
!gtk2? ( =x11-libs/gtk+-1.2*
media-libs/gdk-pixbuf
=gnome-base/gnome-applets-1.4* )
gtk2? ( >=gnome-base/libgnome-2
>=gnome-base/gnome-applets-2 )
sdl? ( >=media-libs/libsdl-1.2
x11-misc/xscreensaver )"
# redefine ${S} to point to the correct source, needs
# the _ switched for - because of the source naming
S=${WORKDIR}/${MY_P}
src_compile( ) {
cd ${S}
local myconf
# if we dont want gtk2 support
if [ -z "`use gtk2`" ]; then
myconf="${myconf} --disable-gtk2 --disable-gnome2"
fi
# if we dont want sdl (fullscreen support)
if [ -z "`use sdl`" ]; then
myconf="${myconf} --disable-fullscreen"
fi
econf ${myconf} || die
emake || die
}
src_install( ) {
# we need to create some dirs that arent created in the
# Makefile. which ones depend on whether we're building
# for gtk1 or gtk2
if [ -n "`use gtk2`" ]; then
dodir /usr/lib/bonobo/servers /usr/share/gnome-2.0/ui
else
dodir /etc/CORBA/servers /usr/share/applets/Amusements
fi
dodir /usr/share/pixmaps
make DESTDIR=${D} install || die
dodoc FAQ README XSCREENSAVER
}
|