blob: c59f8279a55aadd85cd9ac75e5ea59fcdfd69c6c (
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
30
31
32
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MY_PN="${PN/-mod/s}"
MY_P="${MY_PN}_${PV}"
DESCRIPTION="Quotes from Prolinux articles and comments"
HOMEPAGE="http://downloads.nanolx.org/index.php?dir=fortunes-flashrider"
SRC_URI="http://downloads.nanolx.org/fortunes-flashrider/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
DEPEND="games-misc/fortune-mod"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_prepare()
{
sed -e 's#INSTALLDIR = .*#INSTALLDIR = /share/fortune#' -i Makefile
}
src_install() {
emake install PREFIX="${EPREFIX}"/usr DESTDIR="${D}"
dodoc AUTHORS ChangeLog README
}
|