blob: 9163de72336d3c30d169bf72d54c188805846b1a (
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
|
# Copyrigth 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xalf/xalf-0.12-r1.ebuild,v 1.6 2002/07/11 06:30:58 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="X11 Application Launch Feedback"
SRC_URI="http://www.lysator.liu.se/~astrand/projects/xalf/${P}.tgz"
HOMEPAGE="http://www.lysator.liu.se/~astrand/projects/xalf/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="=x11-libs/gtk+-1.2*
gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1
gnome-base/control-center )"
src_compile() {
local myconf
if [ "`use gnome`" ]
then
myconf="--prefix=/usr --enable-capplet"
else
myconf="--prefix=/usr --disable-capplet"
fi
./configure ${myconf} || die "Failed to configure package."
emake || die "Failed to build package."
}
src_install() {
make prefix=${D}/usr install || die
dodoc AUTHORS COPYING ChangeLog README
}
|