# Copyright 1999-2017 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://bgoglin.free.fr/lltag/" SRC_URI="https://github.com/bgoglin/${PN}/archive/${P}.tar.gz" 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 }