media-sound/kaudiocreator: Add 1.3_p20190225 snapshot, EAPI-7 bump

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2019-03-03 15:05:13 +01:00
parent 4d2b3a2e0d
commit fae5f21164
2 changed files with 68 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST kaudiocreator-1.3_p20170806.tar.xz 706008 BLAKE2B 62f2a3106c581e43921a1b8abcc78039b45773d618e531d77f00cbcd121722aa2bf8ef0d4f009f656400d55f414aebc69742b2fe736ec5ea08d7106e18573f6e SHA512 0e06092f8519e9a5a1341f828442de5eace4982723fcb466c23e771d4c42f0c67e91bbf59e6a924d0dc9f2cb8b7b04aaa1660ac97a0075ea6aae155f6a4b2533
DIST kaudiocreator-1.3_p20190225.tar.gz 762053 BLAKE2B 6527d260148ee32d5cb234808ae40205370fc98dd205f32fe74ae1e0958b3f5dffd4e93c338150caa7a990a3818f35a2dc925f351bad1bea98c3b8546840b524 SHA512 63d6e24f001b3664c001581f9e1d929adc096bd563d841a10dd9966ac4e56f1d4ae80ad90e4aa5b879529e8e6710242bce69a0a71cbbf5d3cd3d1f67abaa8957

View File

@@ -0,0 +1,67 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
COMMIT="471cab933bf9e5a299d07e7cb1c0851e31e299f2"
KDE_TEST="forceoptional"
inherit kde5
DESCRIPTION="CD ripper and audio encoder frontend based on KDE Frameworks"
HOMEPAGE="https://kde.org/applications/multimedia/kaudiocreator/"
SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 FDL-1.2"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep solid)
$(add_kdeapps_dep libkcddb)
$(add_kdeapps_dep libkcompactdisc)
$(add_qt_dep qtnetwork)
$(add_qt_dep qtwidgets)
media-libs/libdiscid
media-libs/phonon[qt5(+)]
>=media-libs/taglib-1.5
"
RDEPEND="${DEPEND}
$(add_kdeapps_dep audiocd-kio)
"
DOCS=( Changelog TODO )
pkg_postinst() {
local stcnt=0
has_version media-libs/flac && stcnt=$((stcnt+1))
has_version media-sound/lame && stcnt=$((stcnt+1))
has_version media-sound/vorbis-tools && stcnt=$((stcnt+1))
if [[ ${stcnt} -lt 1 ]] ; then
elog "You should emerge at least one of the following packages"
elog "for ${PN} to do anything useful."
fi
elog "Optional runtime dependencies:"
elog "FLAC - media-libs/flac"
elog "MP3 - media-sound/lame"
elog "OGG - media-sound/vorbis-tools"
kde5_pkg_postinst
}
S="${WORKDIR}/${PN}-${COMMIT}"