blob: 88d8bce28665870d44bf54ec2aae79cf7bba3056 (
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
39
40
41
42
43
44
45
|
# Copyright 1999-2008 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-r1.ebuild,v 1.3 2008/11/14 19:06:49 coldwind Exp $
EAPI=1
inherit eutils
MY_P="${PN}_${PV}"
DESCRIPTION="A webcomic reader."
HOMEPAGE="http://stripclub.sourceforge.net/"
SRC_URI="mirror://sourceforge/stripclub/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc x86"
IUSE=""
DEPEND=">=x11-libs/fltk-1.1.4:1.1
>=dev-libs/libpcre-5.0
>=media-libs/libpng-1.2.8
>=media-libs/jpeg-6b-r4
x11-libs/libXpm"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-Makefile-fixes.patch
}
src_compile() {
# No standard configure script.
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--mandir=/usr/share/man \
--docdir=/usr/share/doc/${PN} \
--skip-tests || die "./configure failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|