39 lines
1 KiB
Bash
39 lines
1 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/nepomuk-core/nepomuk-core-4.12.5.ebuild,v 1.5 2014/05/08 07:32:59 ago Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit kde4-base
|
|
|
|
DESCRIPTION="Nepomuk core libraries"
|
|
KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
|
|
IUSE="debug epub exif ffmpeg pdf taglib"
|
|
|
|
DEPEND="
|
|
>=dev-libs/shared-desktop-ontologies-0.11.0
|
|
>=dev-libs/soprano-2.9.3[dbus,raptor,redland,virtuoso]
|
|
epub? ( app-text/ebook-tools )
|
|
exif? ( media-gfx/exiv2:= )
|
|
ffmpeg? ( virtual/ffmpeg )
|
|
pdf? ( app-text/poppler[qt4] )
|
|
taglib? ( media-libs/taglib )
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
!<kde-base/nepomuk-4.8.80:4
|
|
"
|
|
|
|
RESTRICT="test"
|
|
# bug 392989
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake-utils_use_find_package epub EPub)
|
|
$(cmake-utils_use_find_package exif Exiv2)
|
|
$(cmake-utils_use_find_package ffmpeg FFmpeg)
|
|
$(cmake-utils_use_find_package pdf PopplerQt4)
|
|
$(cmake-utils_use_find_package taglib Taglib)
|
|
)
|
|
|
|
kde4-base_src_configure
|
|
}
|