blob: 9f37c5456ee3b5ba204782e5158f4d7c96d38a69 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/fortune-mod-gentoo-forums/fortune-mod-gentoo-forums-20040922.ebuild,v 1.9 2006/07/17 04:59:11 vapier Exp $
DESCRIPTION="Fortune database of quotes from forums.gentoo.org"
HOMEPAGE="http://forums.gentoo.org/"
SRC_URI="http://dev.gentoo.org/~squinky86/files/gentoo-forums-${PV}.gz
offensive? ( http://dev.gentoo.org/~squinky86/files/gentoo-forums-offensive-${PV}.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE="offensive"
RDEPEND="games-misc/fortune-mod"
S=${WORKDIR}
src_compile() {
mv gentoo-forums-${PV} gentoo-forums || die
use offensive && cat gentoo-forums-offensive-${PV} >> gentoo-forums
strfile gentoo-forums || die
}
src_install() {
insinto /usr/share/fortune
doins gentoo-forums gentoo-forums.dat || die
}
|