blob: 869788b3dfd81bf0e45bf9ddb8215a9044ea0760 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="Fortune database of #gentoo-dev quotes"
HOMEPAGE="https://dev.gentoo.org/~avenj"
SRC_URI="http://ircd.oppresses.us/~avenj/files/gentoo-dev-${PV}.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa m68k ~mips ppc64 s390 sh x86 ~x86-fbsd"
IUSE=""
RDEPEND="games-misc/fortune-mod"
S=${WORKDIR}
src_compile() {
mv gentoo-dev-${PV} gentoo-dev || die
strfile gentoo-dev || die
}
src_install() {
insinto /usr/share/fortune
doins gentoo-dev gentoo-dev.dat || die
}
|