blob: b629be0fa4174a68f1614b3e5cf15951da68d1d5 (
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
54
55
56
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-1.8-r1.ebuild,v 1.1 2010/08/01 21:28:27 idl0r Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="A fast, lightweight imageviewer using imlib2"
HOMEPAGE="https://derf.homelinux.org/~derf/projects/feh/"
SRC_URI="http://www.chaosdorf.de/~derf/feh/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test gif jpeg png tiff xinerama"
COMMON_DEPEND=">=media-libs/giblib-1.2.4
media-libs/imlib2[gif?,jpeg?,png?,tiff?]
>=media-libs/libpng-1.4
x11-libs/libX11
xinerama? ( x11-libs/libXinerama )"
RDEPEND="${COMMON_DEPEND}"
DEPEND="${COMMON_DEPEND}
x11-libs/libXt
x11-proto/xproto
test? ( dev-perl/Test-Command )"
pkg_setup() {
fehopts=(
"DESTDIR=${D}"
"PREFIX=/usr"
"doc_dir=${D}/usr/share/doc/${PF}"
)
}
src_prepare() {
if ! use xinerama; then
sed -i -e '/^xinerama/d' config.mk || die
fi
}
src_compile() {
tc-export CC
emake "${fehopts[@]}" || die
}
src_test() {
if has_version ">=dev-lang/perl-5.10"; then
emake test || die
fi
}
src_install() {
emake "${fehopts[@]}" install || die
prepalldocs
}
|