blob: 6d4724e6dcc95729fa1d40785944b1622d4e91dc (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfishtank/xfishtank-2.1-r1.ebuild,v 1.6 2012/03/06 21:50:44 ranger Exp $
EAPI=2
inherit eutils toolchain-funcs
MY_P=${P}tp
DESCRIPTION="Turns your root window into an aquarium."
HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/demos/"
SRC_URI="http://www.ibiblio.org/pub/Linux/X11/demos/${MY_P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-linux"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXt
x11-libs/libXext"
DEPEND="${RDEPEND}
x11-proto/xproto
x11-misc/imake"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-implicits.patch
}
src_compile() {
xmkmf || die
emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" \
EXTRA_LDOPTIONS="${LDFLAGS}" ${PN} || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README README.Linux README.TrueColor README.Why.2.1tp || die
}
|