diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-25 11:23:58 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-25 11:23:58 +0000 |
commit | af4ec6fc9e22a2044cb93c01dbfa72c82a70e466 (patch) | |
tree | d2421f7f33f7dc31380f70530968d42385e881e9 /games-misc/fortune-mod-it/fortune-mod-it-1.51.ebuild | |
parent | initial commit - bug #54983 (diff) | |
download | historical-af4ec6fc9e22a2044cb93c01dbfa72c82a70e466.tar.gz historical-af4ec6fc9e22a2044cb93c01dbfa72c82a70e466.tar.bz2 historical-af4ec6fc9e22a2044cb93c01dbfa72c82a70e466.zip |
initial commit - bug #64874
Diffstat (limited to 'games-misc/fortune-mod-it/fortune-mod-it-1.51.ebuild')
-rw-r--r-- | games-misc/fortune-mod-it/fortune-mod-it-1.51.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/games-misc/fortune-mod-it/fortune-mod-it-1.51.ebuild b/games-misc/fortune-mod-it/fortune-mod-it-1.51.ebuild new file mode 100644 index 000000000000..4a17f6d432f9 --- /dev/null +++ b/games-misc/fortune-mod-it/fortune-mod-it-1.51.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +DESCRIPTION="Database of the Italian cookies for the fortune program" +HOMEPAGE="http://www.orson.it/~fedeliallalinea/" +SRC_URI="http://www.orson.it/~fedeliallalinea/files/${P}.tar.gz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="x86" +IUSE="offensive" + +DEPEND="games-misc/fortune-mod" + +S="${WORKDIR}/${P}/src" + +src_unpack() { + unpack ${A} + use offensive || rm -f "${S}/zozzital" +} + +src_compile() { + local f + + for f in * + do + strfile -s ${f} || die "strfile ${f} failed" + done +} + +src_install() { + dodir /usr/share/fortune + cp * "${D}/usr/share/fortune" || die "cp failed" + dodoc ../README +} |