blob: 5a74df486dca9a13a699c6b707434355337d92e2 (
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
|
# 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-gentoo-dev/fortune-mod-gentoo-dev-20050106.ebuild,v 1.2 2005/03/23 00:13:49 avenj Exp $
DESCRIPTION="Fortune database of #gentoo-dev quotes"
HOMEPAGE="http://oppresses.us/~avenj/index.html"
SRC_URI="http://oppresses.us/~avenj/files/gentoo-dev/gentoo-dev-${PV}.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc mips alpha hppa amd64"
IUSE=""
DEPEND="games-misc/fortune-mod"
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_compile () {
mv gentoo-dev-${PV} gentoo-dev
strfile gentoo-dev
}
src_install () {
insinto /usr/share/fortune
doins gentoo-dev gentoo-dev.dat
}
|