# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header$ DESCRIPTION="Database of the lamer.cz cookies for the fortune(6) program" HOMEPAGE="http://www.lamer.cz/" SRC_URI="http://lamer.cz/static/fortune.txt" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" IUSE="" RDEPEND="games-misc/fortune-mod" src_unpack() { cd "${S}" } src_compile() { local f for f in [[:lower:]]* ; do strfile -s ${f} || die "strfile ${f} failed" done } src_install() { insinto /usr/share/fortune/ doins [[:lower:]]* || die "doins failed" }