blob: 5dd0d8a4da1ef1ff6c9a670174071a75d8a8aec1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fireflies/fireflies-2.07.ebuild,v 1.1 2006/07/01 20:07:58 nelchael Exp $
inherit eutils
IUSE=""
DESCRIPTION="Fireflies screensaver: Wicked cool eye candy"
HOMEPAGE="http://somewhere.fscked.org/fireflies/"
SRC_URI="http://somewhere.fscked.org/fireflies/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
RDEPEND="|| ( media-libs/mesa virtual/x11 )
media-libs/libsdl"
DEPEND="${RDEPEND}
|| ( (
x11-proto/xproto
x11-libs/libX11 )
virtual/x11 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-2.06-configure.patch
epatch ${FILESDIR}/${PN}-2.06-Make.include.in.patch
}
src_compile() {
local myconf
myconf="--with-bindir=/usr/lib/misc/xscreensaver
--with-confdir=/usr/share/xscreensaver/config/"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc COMPILE README TODO
}
|