Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/kaudiocreator/
Date: Sun, 03 Mar 2019 15:27:31
Message-Id: 1551626830.fae5f211649f4657f8ece9cf0937d5a57b2e7fea.asturm@gentoo
1 commit: fae5f211649f4657f8ece9cf0937d5a57b2e7fea
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 3 14:05:13 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 3 15:27:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fae5f211
7
8 media-sound/kaudiocreator: Add 1.3_p20190225 snapshot, EAPI-7 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/kaudiocreator/Manifest | 1 +
14 .../kaudiocreator-1.3_p20190225.ebuild | 67 ++++++++++++++++++++++
15 2 files changed, 68 insertions(+)
16
17 diff --git a/media-sound/kaudiocreator/Manifest b/media-sound/kaudiocreator/Manifest
18 index 7e11e667960..ed67bef77e5 100644
19 --- a/media-sound/kaudiocreator/Manifest
20 +++ b/media-sound/kaudiocreator/Manifest
21 @@ -1 +1,2 @@
22 DIST kaudiocreator-1.3_p20170806.tar.xz 706008 BLAKE2B 62f2a3106c581e43921a1b8abcc78039b45773d618e531d77f00cbcd121722aa2bf8ef0d4f009f656400d55f414aebc69742b2fe736ec5ea08d7106e18573f6e SHA512 0e06092f8519e9a5a1341f828442de5eace4982723fcb466c23e771d4c42f0c67e91bbf59e6a924d0dc9f2cb8b7b04aaa1660ac97a0075ea6aae155f6a4b2533
23 +DIST kaudiocreator-1.3_p20190225.tar.gz 762053 BLAKE2B 6527d260148ee32d5cb234808ae40205370fc98dd205f32fe74ae1e0958b3f5dffd4e93c338150caa7a990a3818f35a2dc925f351bad1bea98c3b8546840b524 SHA512 63d6e24f001b3664c001581f9e1d929adc096bd563d841a10dd9966ac4e56f1d4ae80ad90e4aa5b879529e8e6710242bce69a0a71cbbf5d3cd3d1f67abaa8957
24
25 diff --git a/media-sound/kaudiocreator/kaudiocreator-1.3_p20190225.ebuild b/media-sound/kaudiocreator/kaudiocreator-1.3_p20190225.ebuild
26 new file mode 100644
27 index 00000000000..bf29fd9c775
28 --- /dev/null
29 +++ b/media-sound/kaudiocreator/kaudiocreator-1.3_p20190225.ebuild
30 @@ -0,0 +1,67 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +COMMIT="471cab933bf9e5a299d07e7cb1c0851e31e299f2"
37 +KDE_TEST="forceoptional"
38 +inherit kde5
39 +
40 +DESCRIPTION="CD ripper and audio encoder frontend based on KDE Frameworks"
41 +HOMEPAGE="https://kde.org/applications/multimedia/kaudiocreator/"
42 +SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2 FDL-1.2"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +DEPEND="
49 + $(add_frameworks_dep kcmutils)
50 + $(add_frameworks_dep kcompletion)
51 + $(add_frameworks_dep kconfig)
52 + $(add_frameworks_dep kconfigwidgets)
53 + $(add_frameworks_dep kcoreaddons)
54 + $(add_frameworks_dep kdelibs4support)
55 + $(add_frameworks_dep ki18n)
56 + $(add_frameworks_dep kio)
57 + $(add_frameworks_dep knotifications)
58 + $(add_frameworks_dep knotifyconfig)
59 + $(add_frameworks_dep kservice)
60 + $(add_frameworks_dep ktextwidgets)
61 + $(add_frameworks_dep kwidgetsaddons)
62 + $(add_frameworks_dep kxmlgui)
63 + $(add_frameworks_dep solid)
64 + $(add_kdeapps_dep libkcddb)
65 + $(add_kdeapps_dep libkcompactdisc)
66 + $(add_qt_dep qtnetwork)
67 + $(add_qt_dep qtwidgets)
68 + media-libs/libdiscid
69 + media-libs/phonon[qt5(+)]
70 + >=media-libs/taglib-1.5
71 +"
72 +RDEPEND="${DEPEND}
73 + $(add_kdeapps_dep audiocd-kio)
74 +"
75 +
76 +DOCS=( Changelog TODO )
77 +
78 +pkg_postinst() {
79 + local stcnt=0
80 +
81 + has_version media-libs/flac && stcnt=$((stcnt+1))
82 + has_version media-sound/lame && stcnt=$((stcnt+1))
83 + has_version media-sound/vorbis-tools && stcnt=$((stcnt+1))
84 +
85 + if [[ ${stcnt} -lt 1 ]] ; then
86 + elog "You should emerge at least one of the following packages"
87 + elog "for ${PN} to do anything useful."
88 + fi
89 + elog "Optional runtime dependencies:"
90 + elog "FLAC - media-libs/flac"
91 + elog "MP3 - media-sound/lame"
92 + elog "OGG - media-sound/vorbis-tools"
93 +
94 + kde5_pkg_postinst
95 +}
96 +
97 +S="${WORKDIR}/${PN}-${COMMIT}"