blob: e642d47289cb12434838d066358c14c281edb5af (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfishtank/xfishtank-2.1.ebuild,v 1.9 2005/12/18 15:29:38 nelchael Exp $
inherit eutils
DESCRIPTION="Turns your root window into an aquarium."
HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/demos/"
MY_P="${P}tp"
SRC_URI="http://www.ibiblio.org/pub/Linux/X11/demos/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="ppc ppc64 x86"
IUSE=""
DEPEND="virtual/x11"
src_unpack() {
unpack "${A}"
epatch "${FILESDIR}/${MY_P}-Makefile.patch"
}
src_compile() {
makedepend || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc README README.Linux README.TrueColor README.Why.2.1tp
}
|