From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/tellico/
Date: Thu, 9 May 2019 19:35:25 +0000 (UTC) [thread overview]
Message-ID: <1557428603.7413b0b9bbba41b80d7f1b9d8ac6babe7d5f5d86.asturm@gentoo> (raw)
commit: 7413b0b9bbba41b80d7f1b9d8ac6babe7d5f5d86
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 19:03:23 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu May 9 19:03:23 2019 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7413b0b9
kde-misc/tellico: (Re-)add live ebuild
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-misc/tellico/metadata.xml | 17 +++++++
kde-misc/tellico/tellico-9999.ebuild | 89 ++++++++++++++++++++++++++++++++++++
2 files changed, 106 insertions(+)
diff --git a/kde-misc/tellico/metadata.xml b/kde-misc/tellico/metadata.xml
new file mode 100644
index 0000000000..c982ea5a1f
--- /dev/null
+++ b/kde-misc/tellico/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>kde@gentoo.org</email>
+ <name>Gentoo KDE Project</name>
+ </maintainer>
+ <longdescription lang="en">
+ Tellico is a KDE application for organizing your collections. It provides
+ default templates for books, bibliographies, videos, music, video games, coins,
+ stamps, trading cards, comic books, and wines.
+ </longdescription>
+ <use>
+ <flag name="discid">Add support for reading disc IDs from audio CDs</flag>
+ <flag name="yaz">Add support for searching Z39.50 databases</flag>
+ </use>
+</pkgmetadata>
diff --git a/kde-misc/tellico/tellico-9999.ebuild b/kde-misc/tellico/tellico-9999.ebuild
new file mode 100644
index 0000000000..d314b62ec0
--- /dev/null
+++ b/kde-misc/tellico/tellico-9999.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="forceoptional"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Collection manager based on KDE Frameworks"
+HOMEPAGE="http://tellico-project.org/"
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+ SRC_URI="http://tellico-project.org/files/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="|| ( GPL-2 GPL-3 )"
+IUSE="cddb discid pdf scanner semantic-desktop taglib v4l xmp yaz"
+
+BDEPEND="
+ sys-devel/gettext
+"
+RDEPEND="
+ $(add_frameworks_dep karchive)
+ $(add_frameworks_dep kcodecs)
+ $(add_frameworks_dep kcompletion)
+ $(add_frameworks_dep kconfig)
+ $(add_frameworks_dep kconfigwidgets)
+ $(add_frameworks_dep kcoreaddons)
+ $(add_frameworks_dep kcrash)
+ $(add_frameworks_dep kguiaddons)
+ $(add_frameworks_dep khtml)
+ $(add_frameworks_dep kiconthemes)
+ $(add_frameworks_dep kitemmodels)
+ $(add_frameworks_dep ki18n)
+ $(add_frameworks_dep kjobwidgets)
+ $(add_frameworks_dep kio)
+ $(add_frameworks_dep knewstuff)
+ $(add_frameworks_dep kparts)
+ $(add_frameworks_dep kservice)
+ $(add_frameworks_dep ktextwidgets)
+ $(add_frameworks_dep kwallet)
+ $(add_frameworks_dep kwidgetsaddons)
+ $(add_frameworks_dep kwindowsystem)
+ $(add_frameworks_dep kxmlgui)
+ $(add_frameworks_dep solid)
+ $(add_frameworks_dep sonnet)
+ $(add_qt_dep qtdbus)
+ $(add_qt_dep qtgui)
+ $(add_qt_dep qtnetwork)
+ $(add_qt_dep qtwidgets)
+ $(add_qt_dep qtxml)
+ dev-libs/libxml2
+ dev-libs/libxslt
+ >=dev-perl/Text-BibTeX-0.780.0-r1
+ cddb? ( $(add_kdeapps_dep libkcddb) )
+ discid? ( dev-libs/libcdio:= )
+ pdf? ( app-text/poppler[qt5] )
+ scanner? ( $(add_kdeapps_dep libksane) )
+ semantic-desktop? ( $(add_frameworks_dep kfilemetadata) )
+ 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}"
+
+# tests need network access
+RESTRICT+=" test"
+
+DOCS=( AUTHORS ChangeLog README )
+
+src_configure() {
+ local mycmakeargs=(
+ -DCMAKE_DISABLE_FIND_PACKAGE_Csv=ON
+ $(cmake-utils_use_find_package cddb KF5Cddb)
+ $(cmake-utils_use_find_package discid CDIO)
+ $(cmake-utils_use_find_package pdf Poppler)
+ $(cmake-utils_use_find_package scanner KF5Sane)
+ $(cmake-utils_use_find_package semantic-desktop KF5FileMetaData)
+ $(cmake-utils_use_find_package taglib Taglib)
+ -DENABLE_WEBCAM=$(usex v4l)
+ $(cmake-utils_use_find_package xmp Exempi)
+ $(cmake-utils_use_find_package yaz Yaz)
+ )
+
+ kde5_src_configure
+}
next reply other threads:[~2019-05-09 19:35 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-09 19:35 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-06-05 19:06 [gentoo-commits] proj/kde:master commit in: kde-misc/tellico/ Andreas Sturmlechner
2019-11-12 1:28 Andreas Sturmlechner
2020-02-23 13:27 Andreas Sturmlechner
2020-05-24 17:27 Andreas Sturmlechner
2020-12-17 13:34 Andreas Sturmlechner
2021-02-25 12:29 Andreas Sturmlechner
2021-08-16 2:45 Sam James
2022-11-16 18:50 Andreas Sturmlechner
2024-03-10 9:03 Andreas Sturmlechner
2024-03-10 9:04 Andreas Sturmlechner
2024-08-09 19:25 Andreas Sturmlechner
2024-09-10 17:57 Andreas Sturmlechner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1557428603.7413b0b9bbba41b80d7f1b9d8ac6babe7d5f5d86.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox