summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--media-sound/twolame/ChangeLog10
-rw-r--r--media-sound/twolame/files/digest-twolame-0.3.123
-rw-r--r--media-sound/twolame/twolame-0.3.12.ebuild30
3 files changed, 41 insertions, 2 deletions
diff --git a/media-sound/twolame/ChangeLog b/media-sound/twolame/ChangeLog
index 8008baf55975..2433563816fe 100644
--- a/media-sound/twolame/ChangeLog
+++ b/media-sound/twolame/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-sound/twolame
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/twolame/ChangeLog,v 1.29 2007/12/20 14:09:24 aballier Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/twolame/ChangeLog,v 1.30 2008/01/17 09:20:00 drac Exp $
+
+*twolame-0.3.12 (17 Jan 2008)
+
+ 17 Jan 2008; Samuli Suominen <drac@gentoo.org> +twolame-0.3.12.ebuild:
+ Version bump wrt #206309 which includes a fix to #200047 from upstream.
+ Thanks to Ryan Hill and Juan Aguado.
20 Dec 2007; Alexis Ballier <aballier@gentoo.org> twolame-0.3.10.ebuild:
Keyword ~x86-fbsd, working fine here, add elibtoolize to get the same .so
diff --git a/media-sound/twolame/files/digest-twolame-0.3.12 b/media-sound/twolame/files/digest-twolame-0.3.12
new file mode 100644
index 000000000000..f777f6d0cfbf
--- /dev/null
+++ b/media-sound/twolame/files/digest-twolame-0.3.12
@@ -0,0 +1,3 @@
+MD5 d38c3ead5ac49b7425c1a9ef91126a35 twolame-0.3.12.tar.gz 483148
+RMD160 d5577b36380007ecc701e3afb5b98bc145790085 twolame-0.3.12.tar.gz 483148
+SHA256 c1bd7e9a16a88a040410ba16701d7aa5cc9f94ee8ed8f2d0a3494ca7dc7d3874 twolame-0.3.12.tar.gz 483148
diff --git a/media-sound/twolame/twolame-0.3.12.ebuild b/media-sound/twolame/twolame-0.3.12.ebuild
new file mode 100644
index 000000000000..fb9f1007244d
--- /dev/null
+++ b/media-sound/twolame/twolame-0.3.12.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/twolame/twolame-0.3.12.ebuild,v 1.1 2008/01/17 09:20:00 drac Exp $
+
+inherit libtool
+
+DESCRIPTION="TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder"
+HOMEPAGE="http://www.twolame.org"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND=">=media-libs/libsndfile-1"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ # Needed for FreeBSD to get a sane .so versioning.
+ elibtoolize
+}
+
+src_install() {
+ emake DESTDIR="${D}" pkgdocdir="/usr/share/doc/${PF}" \
+ install || die "emake install failed."
+ dodoc AUTHORS ChangeLog README TODO
+ prepalldocs
+}