blob: c85fd982ad85cce03739da40db313ef188c1d83d (
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
|
#Copyright 2002 Gentoo Technologies, Inc.
#Distributed under the terms of the GNU General Public License v2
#Author John Stalker <stalker@math.princeton.edu>
#$Header: /var/cvsroot/gentoo-x86/app-misc/oneko/oneko-1.2.ebuild,v 1.1 2002/02/09 12:15:28 verwilst Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A cat (or dog) which chases the mouse around the screen"
SRC_URI="http://agtoys.sourceforge.net/oneko/${P}.tar.gz"
HOMEPAGE="http://agtoys.sourceforge.net"
SLOT="0"
DEPEND="virtual/glibc
>=x11-base/xfree-4.1.0"
src_compile() {
xmkmf -a || die
emake || die
}
src_install () {
into /usr
dobin oneko
mv oneko._man oneko.1x
doman oneko.1x
dodoc oneko.1x.html oneko.1.html README README-NEW
}
|