65 lines
1.7 KiB
Bash
65 lines
1.7 KiB
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/kde-base/gwenview/gwenview-4.12.3.ebuild,v 1.1 2014/03/04 19:13:59 johu Exp $
|
|
|
|
EAPI=5
|
|
|
|
KDE_HANDBOOK="optional"
|
|
OPENGL_REQUIRED="always"
|
|
inherit kde4-base
|
|
|
|
DESCRIPTION="KDE image viewer"
|
|
HOMEPAGE="
|
|
http://www.kde.org/applications/graphics/gwenview/
|
|
http://gwenview.sourceforge.net/
|
|
"
|
|
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_kdebase_dep kdelibs 'semantic-desktop?')
|
|
$(add_kdebase_dep libkonq)
|
|
$(add_kdebase_dep kactivities)
|
|
media-gfx/exiv2:=
|
|
media-libs/lcms:2
|
|
media-libs/libpng:0=
|
|
virtual/jpeg:0
|
|
x11-libs/libX11
|
|
kipi? ( $(add_kdebase_dep libkipi) )
|
|
semantic-desktop? ( $(add_kdebase_dep nepomuk-core) )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake-utils_use_with semantic-desktop Soprano)
|
|
$(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=Nepomuk)
|
|
else
|
|
mycmakeargs+=(-DGWENVIEW_SEMANTICINFO_BACKEND=None)
|
|
fi
|
|
|
|
kde4-base_src_configure
|
|
}
|
|
|
|
pkg_postinst() {
|
|
kde4-base_pkg_postinst
|
|
|
|
if ! has_version kde-base/svgpart:${SLOT} ; then
|
|
elog "For SVG support, install kde-base/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
|
|
}
|