blob: b712fc34eb6867353bafa38d2daeef800c354243 (
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
46
47
48
49
50
51
52
53
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pornview/pornview-0.2.0_pre1-r1.ebuild,v 1.1 2006/09/19 13:56:02 antarus Exp $
inherit eutils
IUSE="jpeg mplayer nls static"
DESCRIPTION="Image viewer/manager with optional support for MPEG movies."
HOMEPAGE="http://pornview.sourceforge.net"
LICENSE="GPL-2"
DEPEND="media-libs/libpng
mplayer? ( media-video/mplayer )
jpeg? ( media-libs/jpeg )
>=x11-libs/gtk+-2.0
nls? ( sys-devel/gettext )"
SLOT="0"
KEYWORDS="x86 ppc amd64"
SRC_URI="mirror://sourceforge/${PN}/${P/_/}.tar.gz"
RESTRICT="nomirror"
S="${WORKDIR}/${P/_/}"
src_compile() {
local myflags
myflags="${myflags} --with-gtk2"
if use mplayer; then
myflags="${myflags} --enable-mplayer"
fi
use jpeg || myflags="${myflags} --disable-exif"
use nls || myflags="${myflags} --disable-nls"
use static && myflags="${myflags} --enable-static"
epatch ${FILESDIR}/${P}-4.diff || die
epatch ${FILESDIR}/traypatch.diff || die
econf ${myflags} || die "./configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS NEWS README
}
|