blob: 0b0984e667e78040f7d27ceb1fcfd264a589c172 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit desktop gnome2-utils toolchain-funcs xdg-utils vcs-snapshot
DESCRIPTION="Quick Image Viewer"
HOMEPAGE="http://spiegl.de/qiv/ https://bitbucket.org/ciberandy/qiv"
SRC_URI="https://bitbucket.org/ciberandy/qiv/get/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~x86"
IUSE="exif lcms magic"
RDEPEND=">=x11-libs/gtk+-2.12:2
media-libs/imlib2[X]
exif? ( media-libs/libexif )
lcms? (
media-libs/lcms:2
media-libs/tiff:0
virtual/jpeg:0
)
magic? ( sys-apps/file )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${P}-optional-tiff.patch )
src_prepare() {
default
sed -i \
-e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' \
Makefile || die
if ! use exif ; then
sed -i 's/^EXIF =/#\0/' Makefile || die
fi
if ! use lcms ; then
sed -i 's/^LCMS =/#\0/' Makefile || die
fi
if ! use magic ; then
sed -i 's/^MAGIC =/#\0/' Makefile || die
fi
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
}
src_install() {
dobin qiv
doman qiv.1
dodoc Changelog contrib/qiv-command.example README README.TODO
domenu qiv.desktop
doicon qiv.png
}
pkg_postinst() {
xdg_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
xdg_desktop_database_update
gnome2_icon_cache_update
}
|