diff options
author | 2019-04-18 12:40:20 +0200 | |
---|---|---|
committer | 2019-04-18 16:29:37 +0200 | |
commit | 77996f0bd46af757187d387e251f25fdf21a33f8 (patch) | |
tree | 18c9cc45de05d82b4e08b5966b62d51dc802872e /kde-apps/libkcddb | |
parent | www-client/opera-beta: Old (diff) | |
download | gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.tar.gz gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.tar.bz2 gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.zip |
kde-apps: Add KDE Applications 19.04.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'kde-apps/libkcddb')
-rw-r--r-- | kde-apps/libkcddb/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/libkcddb/libkcddb-19.04.0.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/kde-apps/libkcddb/Manifest b/kde-apps/libkcddb/Manifest index 908147204f62..2223576f7698 100644 --- a/kde-apps/libkcddb/Manifest +++ b/kde-apps/libkcddb/Manifest @@ -1 +1,2 @@ DIST libkcddb-18.12.3.tar.xz 426548 BLAKE2B 01b0ed1e47866f089e9b9548c321877bacb31b798fdb77df3928cced45c3348c7a856de200becfc83bfa2d96460769693aca383ea3e805d406b1b87866f4b92a SHA512 e74809ec9009d452c2cfe0157e438570305e6b31050124b562f9880bab7e7749c77747ad0975aa4ac47d0e23530a6a406547d69b35db72dd387d2322c99d5772 +DIST libkcddb-19.04.0.tar.xz 426552 BLAKE2B ce0adc7ed3953fd8ac37c52e895be04da30e5ff465c412971b3631e8f3f54e9e4c01756c1452bbb8381a10e5de496b52376ab451b82c3524e9f89ef46deb87b6 SHA512 e89c5847d89f6407a41f8c20693a48fc8dc5cde3b94fa2d88b19d34eb0f45266987eeec3462097ce68c83a2147aa1d7944d161b3011564c7fdee8d496e2428b9 diff --git a/kde-apps/libkcddb/libkcddb-19.04.0.ebuild b/kde-apps/libkcddb/libkcddb-19.04.0.ebuild new file mode 100644 index 000000000000..05aa44913966 --- /dev/null +++ b/kde-apps/libkcddb/libkcddb-19.04.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="forceoptional" +KDE_TEST="true" +inherit kde5 + +DESCRIPTION="KDE library for CDDB" +LICENSE="GPL-2+ handbook? ( FDL-1.2 )" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="musicbrainz" + +DEPEND=" + $(add_frameworks_dep kcodecs) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kwidgetsaddons) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + musicbrainz? ( media-libs/musicbrainz:5 ) +" +RDEPEND="${DEPEND}" + +# tests require network access and compare static data with online data +# bug 280996 +RESTRICT+=" test" + +src_prepare() { + kde5_src_prepare + + if ! use handbook ; then + pushd kcmcddb > /dev/null + cmake_comment_add_subdirectory doc + popd > /dev/null + fi +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package musicbrainz MusicBrainz5) + ) + + kde5_src_configure +} |