blob: ab934f7d6031631340e128309e61963c55f35d26 (
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
29
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/fortune-mod-flashrider/fortune-mod-flashrider-0.25.ebuild,v 1.1 2010/10/30 15:08:56 zzam Exp $
EAPI=2
DESCRIPTION="Quotes from Prolinux articles and comments"
HOMEPAGE="http://www.pro-linux.de/news/2009/14520.html"
SRC_URI="http://www.pro-linux.de/files/fortunes-prolinux-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
DEPEND="games-misc/fortune-mod"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN/-mod-flashrider/s-prolinux}
src_compile() {
./mkdat cookies
}
src_install() {
insinto /usr/share/fortune
doins prolinux prolinux.dat || die
dodoc AUTHORS ChangeLog README
}
|