forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimv-4.0.1-r2.ebuild
91 lines (80 loc) · 1.63 KB
/
imv-4.0.1-r2.ebuild
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs xdg-utils
DESCRIPTION="Minimal image viewer designed for tiling window manager users"
HOMEPAGE="https://github.com/eXeC64/imv"
SRC_URI="https://github.com/eXeC64/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT-with-advertising"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="X +freeimage jpeg png +svg test tiff wayland"
RESTRICT="!test? ( test )"
REQUIRED_USE="
|| ( X wayland )
"
RDEPEND="
!sys-apps/renameutils
media-libs/fontconfig
media-libs/libsdl2
media-libs/sdl2-ttf
X? (
virtual/glu
x11-libs/libX11
x11-libs/libxcb
x11-libs/libxkbcommon
x11-libs/pango
)
freeimage? ( media-libs/freeimage )
jpeg? ( media-libs/libjpeg-turbo )
png? ( media-libs/libpng )
svg? ( gnome-base/librsvg )
tiff? ( media-libs/tiff )
wayland? ( dev-libs/wayland )
"
BDEPEND="
app-text/asciidoc
test? ( dev-util/cmocka )
"
DEPEND="
${RDEPEND}
"
src_prepare() {
default
sed -i -e 's|pkg-config|$(PKG_CONFIG)|g' Makefile || die
}
src_configure() {
tc-export PKG_CONFIG
local WINDOWS
if use X; then
if ! use wayland; then
WINDOWS=x11
else
WINDOWS=all
fi
else
if use wayland; then
WINDOWS=wayland
fi
fi
BACKENDS=(
BACKEND_FREEIMAGE=$(usex freeimage)
BACKEND_JPEG=$(usex jpeg)
BACKEND_LIBPNG=$(usex png)
BACKEND_LIBRSVG=$(usex svg)
BACKEND_LIBTIFF=$(usex tiff)
WINDOWS=${WINDOWS}
)
}
src_compile() {
emake ${BACKENDS[@]}
}
src_install() {
emake ${BACKENDS[@]} DESTDIR="${D}" install
}
pkg_postinst() {
xdg_desktop_database_update
}
pkg_postrm() {
xdg_desktop_database_update
}