blob: 76461205e52229ad190cb827dbe8311fdbec81e4 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/qiv/qiv-2.2.3.ebuild,v 1.3 2010/06/22 08:36:27 ssuominen Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="Quick Image Viewer"
HOMEPAGE="http://spiegl.de/qiv/"
SRC_URI="http://spiegl.de/qiv/download/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="xinerama"
RDEPEND=">=x11-libs/gtk+-2.12:2
media-libs/imlib2
!<media-gfx/pqiv-0.11
xinerama? ( x11-libs/libXinerama )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
sed -i \
-e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' \
Makefile || die
if ! use xinerama; then
sed -i \
-e 's:-DGTD_XINERAMA::' \
Makefile || die
fi
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
dobin qiv || die
doman qiv.1
dodoc Changelog qiv-command.example README README.TODO
}
|