diff options
author | Alexandre Buisse <nattfodd@gentoo.org> | 2006-10-28 18:58:15 +0000 |
---|---|---|
committer | Alexandre Buisse <nattfodd@gentoo.org> | 2006-10-28 18:58:15 +0000 |
commit | ff1c0fb7e2ce67c6a8aaadf40c183f51a24d257a (patch) | |
tree | 47320e7635725a512764618a31a65bc33bcf6eb0 /media-sound/lltag | |
parent | (#131802) Fix cross-compilation (Josu López Fernández). (diff) | |
download | gentoo-2-ff1c0fb7e2ce67c6a8aaadf40c183f51a24d257a.tar.gz gentoo-2-ff1c0fb7e2ce67c6a8aaadf40c183f51a24d257a.tar.bz2 gentoo-2-ff1c0fb7e2ce67c6a8aaadf40c183f51a24d257a.zip |
Bump to 0.12.2
(Portage version: 2.1.2_rc1)
Diffstat (limited to 'media-sound/lltag')
-rw-r--r-- | media-sound/lltag/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/lltag/files/digest-lltag-0.12.2 | 3 | ||||
-rw-r--r-- | media-sound/lltag/lltag-0.12.2.ebuild | 33 |
3 files changed, 43 insertions, 1 deletions
diff --git a/media-sound/lltag/ChangeLog b/media-sound/lltag/ChangeLog index 84a88df356eb..625a992e7900 100644 --- a/media-sound/lltag/ChangeLog +++ b/media-sound/lltag/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/lltag # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lltag/ChangeLog,v 1.8 2006/10/09 15:11:57 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lltag/ChangeLog,v 1.9 2006/10/28 18:58:15 nattfodd Exp $ + +*lltag-0.12.2 (28 Oct 2006) + + 28 Oct 2006; Alexandre Buisse <nattfodd@gentoo.org> -lltag-0.12.1.ebuild, + +lltag-0.12.2.ebuild: + Bump to 0.12.2 (minor fixes). *lltag-0.12.1 (09 Oct 2006) diff --git a/media-sound/lltag/files/digest-lltag-0.12.2 b/media-sound/lltag/files/digest-lltag-0.12.2 new file mode 100644 index 000000000000..38cf7d1476b2 --- /dev/null +++ b/media-sound/lltag/files/digest-lltag-0.12.2 @@ -0,0 +1,3 @@ +MD5 c7321fa688cf191875b22b66ea36a3b6 lltag-0.12.2.tar.bz2 36136 +RMD160 f1ac713b1a75013b264bc91a6a9905a24414220e lltag-0.12.2.tar.bz2 36136 +SHA256 60f59fe909249b3386606ccc416bb6aca8a9e2d07d8582feb499b509664cb1a4 lltag-0.12.2.tar.bz2 36136 diff --git a/media-sound/lltag/lltag-0.12.2.ebuild b/media-sound/lltag/lltag-0.12.2.ebuild new file mode 100644 index 000000000000..815f7ae4723d --- /dev/null +++ b/media-sound/lltag/lltag-0.12.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lltag/lltag-0.12.2.ebuild,v 1.1 2006/10/28 18:58:15 nattfodd Exp $ + +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="~x86" +IUSE="mp3 ogg flac readline" + +RDEPEND="dev-lang/perl + mp3? ( media-sound/mp3info ) + ogg? ( media-sound/vorbis-tools ) + flac? ( media-libs/flac ) + readline? ( dev-perl/Term-ReadLine-Perl )" + +src_compile() { + make PREFIX=/usr SYSCONFDIR=/etc MANDIR=/usr/share/man \ + PERL_INSTALLDIRS=vendor || die "Failed to compile" +} + +src_install() { + make DESTDIR="${D}/" PREFIX=/usr SYSCONFDIR=/etc MANDIR=/usr/share/man \ + PERL_INSTALLDIRS=vendor install || die "Failed to install" + fixlocalpod + dodoc Changes + dohtml doc/*.html +} |