blob: b21840a254d80d0800f85df2404db27020dc0423 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_LA_PUNT="yes"
inherit gnome2 toolchain-funcs
DESCRIPTION="A graphical, full featured, twin-panel file manager"
HOMEPAGE="https://gcmd.github.io/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="chm exif gsf pdf taglib samba test +unique"
RDEPEND="
app-text/yelp-tools
>=dev-libs/glib-2.44.0:2
unique? ( >=dev-libs/libunique-0.9.3:1 )
gnome-base/gnome-keyring
>=gnome-base/gnome-vfs-2.0.0
>=gnome-base/libgnome-2.0.0
>=gnome-base/libgnomeui-2.4.0
>=x11-libs/gtk+-2.18.0:2
chm? ( dev-libs/chmlib )
exif? ( >=media-gfx/exiv2-0.14 )
gsf? ( >=gnome-extra/libgsf-1.12.0 )
samba? ( >=gnome-base/gnome-vfs-2.0.0[samba] )
pdf? ( >=app-text/poppler-0.18 )
taglib? ( >=media-libs/taglib-1.4 )
"
PATCHES=( "${FILESDIR}/${P}-exiv2-0.27.1-missing-header.patch" )
DEPEND="
${RDEPEND}
dev-util/gtk-doc-am
sys-devel/gettext
virtual/pkgconfig
test? ( >=dev-cpp/gtest-1.7.0 )
"
src_configure() {
gnome2_src_configure \
--disable-static \
$(use_with chm libchm) \
$(use_with exif exiv2) \
$(use_with gsf libgsf) \
$(use_with pdf poppler) \
$(use_with samba) \
$(use_with taglib) \
$(use_with unique)
}
pkg_pretend() {
if tc-is-gcc && [[ $(gcc-major-version) -lt 8 ]]; then
eerror "Compilation with gcc older than version 8 is not supported"
die "GCC too old, please use gcc-8 or above"
fi
}
pkg_postinst() {
gnome2_pkg_postinst
has_version dev-util/meld || elog "You need dev-util/meld to synchronize files and directories."
has_version gnome-extra/yelp || elog "You need gnome-extra/yelp to view the docs."
}
|