blob: 46a519fc1e8590b1df41ca2815d5afe3038059c9 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
KDE_HANDBOOK="optional"
OPENGL_REQUIRED="always"
inherit kde4-base kde4-functions-extra
DESCRIPTION="KDE image viewer"
HOMEPAGE="
https://www.kde.org/applications/graphics/gwenview/
https://userbase.kde.org/Gwenview
"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug kipi semantic-desktop"
# tests fail, last checked 4.11.0
RESTRICT="test"
DEPEND="
$(add_kdeapps_dep libkdcraw)
$(add_kdeapps_dep libkonq)
$(add_kdeframeworks_dep kactivities '' 4.13)
media-gfx/exiv2:=
media-libs/lcms:2
media-libs/libpng:0=
virtual/jpeg:0
x11-libs/libX11
kipi? ( $(add_kdeapps_dep libkipi) )
semantic-desktop? ( $(add_kdeframeworks_dep baloo) )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with kipi)
)
# Workaround for bug #479510
if [[ -e ${EPREFIX}/usr/include/${CHOST}/jconfig.h ]]; then
mycmakeargs+=( -DJCONFIG_H="${EPREFIX}/usr/include/${CHOST}/jconfig.h" )
fi
if use semantic-desktop; then
mycmakeargs+=(-DGWENVIEW_SEMANTICINFO_BACKEND=Baloo)
else
mycmakeargs+=(-DGWENVIEW_SEMANTICINFO_BACKEND=None)
fi
kde4-base_src_configure
}
pkg_postinst() {
kde4-base_pkg_postinst
if ! has_version kde-apps/svgpart:${SLOT} ; then
elog "For SVG support, install kde-apps/svgpart:${SLOT}"
fi
if use kipi && ! has_version media-plugins/kipi-plugins ; then
elog "The plugins for the KIPI inteface can be found in media-plugins/kipi-plugins"
fi
}
|