blob: acfa0044c6df91a6cb699314ca62858d9ccaeff1 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/fortune-mod-zx-error/fortune-mod-zx-error-1.0.ebuild,v 1.3 2005/07/31 14:42:36 corsair Exp $
MY_P="fortunes-zx-error-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Sinclair ZX Spectrum BASIC error Fortunes"
HOMEPAGE="http://melkor.dnp.fmph.uniba.sk/~garabik/fortunes-zx-error.html"
SRC_URI="http://melkor.dnp.fmph.uniba.sk/~garabik/fortunes-zx-error/${MY_P}.tar.gz"
KEYWORDS="alpha amd64 hppa mips ppc ~ppc64 sparc x86"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
RDEPEND="games-misc/fortune-mod"
src_install() {
cp zx/error zx-error
cp zx/error.dat zx-error.dat
insinto /usr/share/fortune
doins zx-error zx-error.dat
dodoc README
}
|