diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-09-03 01:11:15 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-09-03 02:08:03 +0200 |
commit | 11a0ff92302d6176062dd9ff04d9dba82c21b7ea (patch) | |
tree | 413871c28436912422620d4aa1187a718010a840 /media-sound/kid3/kid3-3.4.2.ebuild | |
parent | app-admin/lnav: remove old (diff) | |
download | gentoo-11a0ff92302d6176062dd9ff04d9dba82c21b7ea.tar.gz gentoo-11a0ff92302d6176062dd9ff04d9dba82c21b7ea.tar.bz2 gentoo-11a0ff92302d6176062dd9ff04d9dba82c21b7ea.zip |
media-sound/kid3: Bump to version 3.4.2
Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'media-sound/kid3/kid3-3.4.2.ebuild')
-rw-r--r-- | media-sound/kid3/kid3-3.4.2.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/media-sound/kid3/kid3-3.4.2.ebuild b/media-sound/kid3/kid3-3.4.2.ebuild new file mode 100644 index 000000000000..c52b7b3a61a0 --- /dev/null +++ b/media-sound/kid3/kid3-3.4.2.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KDE_LINGUAS="cs de es et fi fr it nl pl ru sr sr@ijekavian sr@ijekavianlatin +sr@Latn tr zh_CN zh_TW" +KDE_REQUIRED="optional" +KDE_HANDBOOK="optional" +inherit kde4-base + +DESCRIPTION="A simple tag editor for KDE" +HOMEPAGE="http://kid3.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="4" +KEYWORDS="~amd64 ~x86" +IUSE="acoustid flac kde mp3 mp4 +phonon +taglib vorbis" + +REQUIRED_USE="flac? ( vorbis )" + +RDEPEND=" + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + dev-qt/qtdeclarative:4 + dev-qt/qtgui:4 + sys-libs/readline:0 + acoustid? ( + media-libs/chromaprint + virtual/ffmpeg + ) + flac? ( + media-libs/flac[cxx] + media-libs/libvorbis + ) + mp3? ( media-libs/id3lib ) + mp4? ( media-libs/libmp4v2:0 ) + phonon? ( || ( + media-libs/phonon[qt4] + dev-qt/qtphonon:4 + ) ) + taglib? ( >=media-libs/taglib-1.9.1 ) + vorbis? ( + media-libs/libogg + media-libs/libvorbis + ) +" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-3.3.2-libdir.patch" ) + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with acoustid CHROMAPRINT) + $(cmake-utils_use_with flac) + $(cmake-utils_use_with mp3 ID3LIB) + $(cmake-utils_use_with mp4 MP4V2) + $(cmake-utils_use_with phonon) + $(cmake-utils_use_with taglib) + $(cmake-utils_use_with vorbis) + "-DWITH_QT5=OFF" + ) + + if use kde; then + mycmakeargs+=("-DWITH_APPS=KDE;CLI") + else + mycmakeargs+=("-DWITH_APPS=Qt;CLI") + fi + + kde4-base_src_configure +} |