diff options
author | 2020-08-21 23:36:00 +0200 | |
---|---|---|
committer | 2020-08-22 18:05:51 +0200 | |
commit | 34b31b2a7b5e2db4c46642c5647655eec1cf0479 (patch) | |
tree | 5ebcfb2039fcc8273f7e5382499e1bbcf6bae5ae /media-sound/lltag/lltag-0.14.4-r1.ebuild | |
parent | media-sound/lltag: 0.14.6 version bump, EAPI-7 bump (diff) | |
download | gentoo-34b31b2a7b5e2db4c46642c5647655eec1cf0479.tar.gz gentoo-34b31b2a7b5e2db4c46642c5647655eec1cf0479.tar.bz2 gentoo-34b31b2a7b5e2db4c46642c5647655eec1cf0479.zip |
media-sound/lltag: Drop 0.14.4-r1
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/lltag/lltag-0.14.4-r1.ebuild')
-rw-r--r-- | media-sound/lltag/lltag-0.14.4-r1.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/media-sound/lltag/lltag-0.14.4-r1.ebuild b/media-sound/lltag/lltag-0.14.4-r1.ebuild deleted file mode 100644 index 87024dd4bbb..00000000000 --- a/media-sound/lltag/lltag-0.14.4-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit perl-module - -DESCRIPTION="Automatic command-line mp3/ogg/flac file tagger and renamer" -HOMEPAGE="http://home.gna.org/lltag" -SRC_URI="http://download.gna.org/lltag/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="flac mp3 ogg readline" - -RDEPEND="dev-perl/libwww-perl - mp3? ( media-sound/mp3info dev-perl/MP3-Tag ) - ogg? ( media-sound/vorbis-tools ) - flac? ( media-libs/flac ) - readline? ( dev-perl/Term-ReadLine-Perl )" -DEPEND="${RDEPEND}" - -pkg_setup() { - mylltagopts=( - "DESTDIR=${D}" - "PREFIX=/usr" - "SYSCONFDIR=/etc" - "MANDIR=/usr/share/man" - "PERL_INSTALLDIRS=vendor" - "DOCDIR=/usr/share/doc/${PF}" - ) -} - -src_compile() { - emake "${mylltagopts[@]}" -} - -src_install() { - emake "${mylltagopts[@]}" install{,-doc,-man} - dodoc Changes - perl_delete_localpod - # Move config to recommended location - mv "${D}usr/share/doc/${PF}"/config "${D}"etc/lltag/ || die -} |