blob: 5959243e6196f0365729a28f75e3e0e1133bbdee (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/xcruise/xcruise-0.24.ebuild,v 1.2 2004/01/06 05:12:53 avenj Exp $
DESCRIPTION="Fly about 3D-formed file system"
SRC_URI="http://tanaka-www.cs.titech.ac.jp/%7Eeuske/prog/${P}.tar.gz
http://members.optushome.com.au/psylence/xcruise.man"
HOMEPAGE="http://tanaka-www.cs.titech.ac.jp/%7Eeuske/prog/"
KEYWORDS="x86 ppc ~amd64"
SLOT="0"
LICENSE="as-is"
DEPEND="virtual/x11"
S="${WORKDIR}/${P}"
src_unpack() {
unpack ${P}.tar.gz
}
src_compile() {
cp ${DISTDIR}/xcruise.man .
xmkmf -a
make || die "could not make"
}
src_install() {
dobin xcruise
mv xcruise.man xcruise.1
doman xcruise.1
}
|