diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-03-07 14:34:58 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-03-07 14:36:38 +0100 |
commit | c1941078fbe8744f0710332dee5705d3a95a800b (patch) | |
tree | 2fbace875e510011c2845a85071b60cf371926d5 /kde-apps/libkcddb | |
parent | app-emulation/xen-tools: drop old (diff) | |
download | gentoo-c1941078fbe8744f0710332dee5705d3a95a800b.tar.gz gentoo-c1941078fbe8744f0710332dee5705d3a95a800b.tar.bz2 gentoo-c1941078fbe8744f0710332dee5705d3a95a800b.zip |
kde-apps: Add KDE Applications 18.12.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.51, 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-18.12.3.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/kde-apps/libkcddb/Manifest b/kde-apps/libkcddb/Manifest index ae2d09ed0d9a..b3d100109aff 100644 --- a/kde-apps/libkcddb/Manifest +++ b/kde-apps/libkcddb/Manifest @@ -1,2 +1,3 @@ DIST libkcddb-18.08.3.tar.xz 426900 BLAKE2B dc5267b33ae715b95b9b40f36737e2c42ccbb6686580eb087ce86b7e156109bfc6f605b4a32cbacbcb01e0aff76ca26790173f64927f8745d16826b251e5c0d1 SHA512 07c91d8e53c2b30bfc2ca1e13aaae793ff88fc79d57475d32aa6cb392c6cd36b174ed8b5ab185a2a625d1fea29067b813b46985ecaca15510d8094fe32a5193d DIST libkcddb-18.12.2.tar.xz 426604 BLAKE2B c754a54f12e620a62b87d0ed8b17d4370f4ee849f6b3daeb8dc4b33c5f759044dbc90e62d18689ae9ed282a0e130fb2cc2796a38f7ce5d47fd2c799ddba4cf16 SHA512 1477089e289971f6af787ed56aa3b91733aa5ba7ba74840cbeefbc29de8d9905eac46930e2764c1043634f986f0bb6fefe617c8c110682ace0e11f4efe60fe00 +DIST libkcddb-18.12.3.tar.xz 426548 BLAKE2B 01b0ed1e47866f089e9b9548c321877bacb31b798fdb77df3928cced45c3348c7a856de200becfc83bfa2d96460769693aca383ea3e805d406b1b87866f4b92a SHA512 e74809ec9009d452c2cfe0157e438570305e6b31050124b562f9880bab7e7749c77747ad0975aa4ac47d0e23530a6a406547d69b35db72dd387d2322c99d5772 diff --git a/kde-apps/libkcddb/libkcddb-18.12.3.ebuild b/kde-apps/libkcddb/libkcddb-18.12.3.ebuild new file mode 100644 index 000000000000..05aa44913966 --- /dev/null +++ b/kde-apps/libkcddb/libkcddb-18.12.3.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 +} |