blob: 06fc575ec5d8facf60c2a8b6a72e8f015bd46fca (
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-prolinux/fortune-mod-prolinux-0.25.ebuild,v 1.4 2010/09/07 15:16:42 nyhm 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/s}
src_compile() {
./mkdat cookies
}
src_install() {
insinto /usr/share/fortune
doins prolinux prolinux.dat || die
dodoc AUTHORS ChangeLog README
}
|