blob: c4d43b6f07c343c965f4f40cb5ff2425125f039d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit perl-module
DESCRIPTION="Automatic command-line mp3/ogg/flac file tagger and renamer"
HOMEPAGE="http://bgoglin.free.fr/lltag/ https://github.com/bgoglin/lltag"
SRC_URI="https://github.com/bgoglin/lltag/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="flac mp3 ogg readline"
RDEPEND="
dev-perl/libwww-perl
flac? ( media-libs/flac )
mp3? (
dev-perl/MP3-Tag
media-sound/mp3info
)
ogg? ( media-sound/vorbis-tools )
readline? ( dev-perl/Term-ReadLine-Perl )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-${P}"
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
}
|