blob: 937dac0c4cf721ece29b648d8e7d4182c7495183 (
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
72
73
74
75
76
77
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils xdg-utils gnome2-utils savedconfig toolchain-funcs
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/muennich/sxiv.git"
inherit git-r3
else
SRC_URI="https://github.com/muennich/sxiv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Simple (or small or suckless) X Image Viewer"
HOMEPAGE="https://github.com/muennich/sxiv/"
LICENSE="GPL-2"
SLOT="0"
IUSE="exif gif"
RDEPEND="
exif? ( media-libs/libexif )
gif? ( media-libs/giflib:0= )
media-libs/imlib2[X,gif?]
x11-libs/libX11
"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i '/^LDFLAGS/d' Makefile || die
# disable exif support as required
if ! use exif; then
sed \
-e 's/^.* -DHAVE_LIBEXIF/#\0/' \
-e 's/^.* -lexif/#\0/' \
-i Makefile || die
fi
# disable gif support as required
if ! use gif; then
sed \
-e 's/^.* -DHAVE_GIFLIB/#\0/' \
-e 's/^.* -lgif/#\0/' \
-i Makefile || die
fi
tc-export CC
restore_config config.h
default
}
src_install() {
emake DESTDIR="${ED}" PREFIX=/usr install
emake -C icon DESTDIR="${ED}" PREFIX=/usr install
dodoc README.md
domenu sxiv.desktop
save_config config.h
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
xdg_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
xdg_desktop_database_update
gnome2_icon_cache_update
}
|