blob: bed53affdc37702b4d18ffff251660b890a96ca0 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/gwenview/gwenview-4.2.1-r1.ebuild,v 1.1 2009/03/06 01:16:28 jmbsvicetto Exp $
EAPI="2"
KMNAME="kdegraphics"
inherit kde4-meta
DESCRIPTION="KDE image viewer"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="debug kipi +semantic-desktop"
RESTRICT="test"
DEPEND="
media-gfx/exiv2
media-libs/jpeg
kipi? ( >=kde-base/libkipi-${PV}:${SLOT} )
>=kde-base/kdelibs-${PV}:${SLOT}[semantic-desktop?]
"
RDEPEND="${DEPEND}"
PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${KDEDIR}/$(get_libdir)/pkgconfig"
# Patch sent to the packagers ml to fix the version.
PATCHES=( "${FILESDIR}/${PN}-fix-version.diff" )
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with semantic-desktop Soprano)
$(cmake-utils_use_with kipi Kipi)"
if use semantic-desktop; then
mycmakeargs="${mycmakeargs}
-DGWENVIEW_SEMANTICINFO_BACKEND=Nepomuk"
else
mycmakeargs="${mycmakeargs}
-DGWENVIEW_SEMANTICINFO_BACKEND=None"
fi
kde4-meta_src_configure
}
pkg_postinst() {
kde4-meta_pkg_postinst
echo
elog "If you want to have svg support, emerge kde-base/svgpart"
echo
}
|