blob: bae73ac86cd5e10fc5897250b03290a4829627a1 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmountains/xmountains-2.6.ebuild,v 1.1 2004/04/12 20:07:30 pyrania Exp $
DESCRIPTION="Fractal terrains of snow-capped mountains near water"
HOMEPAGE="http://www.epcc.ed.ac.uk/~spb/${PN}/"
MY_P="${P/-/_}"
SRC_URI="${HOMEPAGE}/${MY_P}.tar.gz"
S="${WORKDIR}"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/x11"
src_compile() {
xmkmf || die
make CFLAGS="${CFLAGS} -DVROOT" || die
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc README
cp xmountains.man xmountains.1
doman xmountains.1
}
|