diff options
author | Sebastian Pipping <sping@gentoo.org> | 2017-10-02 20:52:29 +0200 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2017-10-02 20:53:25 +0200 |
commit | d723b86617c925f180a19deec6109ff0e147ffb2 (patch) | |
tree | 214fe9c398146fbfcc8612e7ebd54f5b9e661c84 /media-sound | |
parent | games-board/qgo: Fix narrowing conversion error, bug 598406 (diff) | |
download | gentoo-d723b86617c925f180a19deec6109ff0e147ffb2.tar.gz gentoo-d723b86617c925f180a19deec6109ff0e147ffb2.tar.bz2 gentoo-d723b86617c925f180a19deec6109ff0e147ffb2.zip |
media-sound/soundkonverter: 3.0.1
Package-Manager: Portage-2.3.10, Repoman-2.3.3
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/soundkonverter/Manifest | 1 | ||||
-rw-r--r-- | media-sound/soundkonverter/soundkonverter-3.0.1.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/media-sound/soundkonverter/Manifest b/media-sound/soundkonverter/Manifest index b77a718241f2..7c14217a1fa9 100644 --- a/media-sound/soundkonverter/Manifest +++ b/media-sound/soundkonverter/Manifest @@ -1 +1,2 @@ DIST soundkonverter-3.0.0.tar.gz 821111 SHA256 f6864a9f145100b721e176b1af8c44646201fcad0886614ea30790a0c3320aee SHA512 5120de077082cc7a760cd1d1f4a7dd804ce8f4190c94d8d2b14baa92c851c6f6338c6f075bfa5a8fed8891840938a790e3765465b49c8863166f0805b355506a WHIRLPOOL 2b5600db2072d780891753bda2cb43901920e2170238cca9cdcb562410caffa63faecc904c1ddce277a8d70e1efa376d28cc19540c8c24c636a61b62afa823d2 +DIST soundkonverter-3.0.1.tar.gz 821278 SHA256 92117f8aff85aac3a336cc0c94f3739aaa2d07ddd741d737dfd4b1571c60a0ce SHA512 db0f9ff7b8d229012d08bb8030c7f11c428632867d0eeb7de8717d47f651a7641240aa0df9c947653fe6a2ad7d4930421f69fff8d038d47f28ca563dfa720911 WHIRLPOOL 2dfe82c4400c0afd05dced2fb5b92f2f239a456ee87ebe6d3eb10c2474f70121d0d72700ee3fdbe2b31ea7f1a3d5fc78e65af0f89bb73c291467b5e698053e5c diff --git a/media-sound/soundkonverter/soundkonverter-3.0.1.ebuild b/media-sound/soundkonverter/soundkonverter-3.0.1.ebuild new file mode 100644 index 000000000000..6da7c224a693 --- /dev/null +++ b/media-sound/soundkonverter/soundkonverter-3.0.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit kde5 + +DESCRIPTION="Frontend to various audio converters" +HOMEPAGE="https://www.linux-apps.com/search?projectSearchText=soundKonverter + https://github.com/dfaust/soundkonverter" +SRC_URI="https://github.com/dfaust/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + $(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 kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_frameworks_dep solid) + $(add_kdeapps_dep libkcddb) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + media-libs/phonon[qt5] + >=media-libs/taglib-1.10 + media-sound/cdparanoia +" +DEPEND="${RDEPEND} + sys-devel/gettext +" + +PATCHES=( "${FILESDIR}/${PN}-3.0.0-deps.patch" ) + +S="${WORKDIR}"/${P}/src + +pkg_postinst() { + kde5_pkg_postinst + + elog "soundKonverter optionally supports many different audio formats." + elog "You will need to install the appropriate encoding packages for the" + elog "formats you require. For a full listing, consult the README file" + elog "in /usr/share/doc/${PF}" +} |