forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gentoo-bug: 567990 Package-Manager: portage-2.2.26
- Loading branch information
Michael Palimaka
committed
Dec 13, 2015
1 parent
b829105
commit 36e3800
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST tellico-2.3.10.tar.bz2 4877384 SHA256 e916101f86b6f843b85be42e8545aa7441cd496cbb9b81590e2e0bd03a58faaa SHA512 a93300900febae996633294fa0b2e5808af62bbebafa718e0ba345f206dcd2836e44b6172621fd1b506fd3e6ae60f5c03514d0f53433188c67e6b92a058b33aa WHIRLPOOL 88ea79b081ae35a6f4bff5a34d9df2e2e85af2435e071d93697d4157e8aff638c881445bfa0f9f1bcf30807ac30280e39f08cbc4c968aee47b963b6447f65bb3 | ||
DIST tellico-2.3.11.tar.bz2 5174873 SHA256 3064756f6e1662d07385c37f5821a0f6be8b22b6decad17d6852536016ca2128 SHA512 26a9b49051cbf2f75e89109c0d68d4e91d7b9bd63e3ec99413354cda91ef08b99d2eef3e9dd6f2e017bbbae1a111d3de90115a965f063f6149d36073242c58a9 WHIRLPOOL 1fe854da86baf8babbc4e870ebdbf37f337e300ccbdfb26dbebf9a4146efcf3190671d3f9a132a04960989a7b7a2eda134770467e13dea36ad28ab3c33159258 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et eu fi fr ga gl hu | ||
ia it ja kk lt mr ms nb nds nl nn pl pt pt_BR ro ru sk sl sv tr ug uk zh_CN | ||
zh_TW" | ||
KDE_MINIMAL="4.13.1" | ||
KDE_HANDBOOK="optional" | ||
inherit kde4-base | ||
|
||
DESCRIPTION="A collection manager for the KDE environment" | ||
HOMEPAGE="http://tellico-project.org/" | ||
SRC_URI="http://tellico-project.org/files/${P}.tar.bz2" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="4" | ||
KEYWORDS="~amd64 ~ppc ~x86" | ||
IUSE="addressbook cddb debug pdf scanner taglib v4l xmp yaz" | ||
|
||
RDEPEND=" | ||
dev-libs/libxml2 | ||
dev-libs/libxslt | ||
dev-libs/qjson | ||
dev-qt/qtdbus:4 | ||
media-libs/qimageblitz | ||
addressbook? ( $(add_kdebase_dep kdepimlibs) ) | ||
cddb? ( $(add_kdeapps_dep libkcddb) ) | ||
pdf? ( app-text/poppler[qt4] ) | ||
scanner? ( $(add_kdeapps_dep libksane) ) | ||
taglib? ( >=media-libs/taglib-1.5 ) | ||
v4l? ( >=media-libs/libv4l-0.8.3 ) | ||
xmp? ( >=media-libs/exempi-2 ) | ||
yaz? ( >=dev-libs/yaz-2:0 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
sys-devel/gettext | ||
" | ||
|
||
# tests need network access and well-defined server responses | ||
RESTRICT="test" | ||
|
||
DOCS=( AUTHORS ChangeLog README ) | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DWITH_Nepomuk=OFF | ||
$(cmake-utils_use_with addressbook KdepimLibs) | ||
$(cmake-utils_use_with cddb KdeMultimedia) | ||
$(cmake-utils_use_with pdf PopplerQt4) | ||
$(cmake-utils_use_with scanner KSane) | ||
$(cmake-utils_use_with taglib) | ||
$(cmake-utils_use_enable v4l WEBCAM) | ||
$(cmake-utils_use_with xmp Exempi) | ||
$(cmake-utils_use_with yaz) | ||
) | ||
|
||
kde4-base_src_configure | ||
} |