blob: 0d64a92ff890bdccd9758d480e0ff4c3441b2cf6 (
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
33
34
35
36
37
38
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/stripclub/stripclub-0.9.1.2.ebuild,v 1.2 2005/06/20 12:32:12 dholm Exp $
inherit eutils
MY_P="${PN}_${PV}"
DESCRIPTION="A webcomic reader."
HOMEPAGE="http://stripclub.sourceforge.net/"
SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/stripclub/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND=">=x11-libs/fltk-1.1.4
>=dev-libs/libpcre-5.0
>=media-libs/libpng-1.2.8
>=media-libs/jpeg-6b-r4"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-Makefile.linux.patch
}
src_compile() {
./configure --skip-tests
emake PREFIX=/usr || die "emake failed"
}
src_install() {
emake PREFIX=${D}/usr BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man DOCDIR=${D}/usr/share/doc/stripclub install || die
dodoc readme.txt FAQ
}
|