diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-05-12 10:15:34 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-09-25 06:32:38 +0300 |
commit | 07a5f08c15e92e0492daa816eee07fd2e7241b99 (patch) | |
tree | 7065ab89b746dc7e1e6d03d592690ee316c138a4 /media-sound | |
parent | media-sound/audiotag: fix LICENSE (diff) | |
download | gentoo-07a5f08c15e92e0492daa816eee07fd2e7241b99.tar.gz gentoo-07a5f08c15e92e0492daa816eee07fd2e7241b99.tar.bz2 gentoo-07a5f08c15e92e0492daa816eee07fd2e7241b99.zip |
media-sound/audiotag: EAPI=7 bump
Closes: https://bugs.gentoo.org/685686
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11976
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/audiotag/audiotag-0.19-r1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-sound/audiotag/audiotag-0.19-r1.ebuild b/media-sound/audiotag/audiotag-0.19-r1.ebuild new file mode 100644 index 000000000000..ec257e988dea --- /dev/null +++ b/media-sound/audiotag/audiotag-0.19-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils + +DESCRIPTION="Command-line tool for mass tagging/renaming of audio files" +HOMEPAGE="https://github.com/Daenyth/audiotag" +SRC_URI="https://github.com/downloads/Daenyth/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND="dev-lang/perl" + +src_install() { + dobin ${PN} + dodoc ChangeLog README +} + +pkg_postinst() { + optfeature "for m4a/mp4 support" media-video/atomicparsley media-video/atomicparsley-wez + optfeature "for flac support" media-libs/flac + optfeature "for mp3 support" media-libs/id3lib + optfeature "for vorbis support" media-sound/vorbis-tools +} |