diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-30 12:27:05 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-30 12:27:05 +0000 |
commit | 8f93ecde6eabe290162a2d7dde84a4a0033ac89d (patch) | |
tree | 35bdda01c9d6adf6cd166ba7d63ea7850dff8acc /media-sound/toolame/toolame-02l-r3.ebuild | |
parent | remove unmaintainable svn ebuild (diff) | |
download | historical-8f93ecde6eabe290162a2d7dde84a4a0033ac89d.tar.gz historical-8f93ecde6eabe290162a2d7dde84a4a0033ac89d.tar.bz2 historical-8f93ecde6eabe290162a2d7dde84a4a0033ac89d.zip |
Apply uint32_t patch wrt #138002 which should solve RIFF headers parsing.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'media-sound/toolame/toolame-02l-r3.ebuild')
-rw-r--r-- | media-sound/toolame/toolame-02l-r3.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-sound/toolame/toolame-02l-r3.ebuild b/media-sound/toolame/toolame-02l-r3.ebuild new file mode 100644 index 000000000000..759baa1d4ee0 --- /dev/null +++ b/media-sound/toolame/toolame-02l-r3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/toolame/toolame-02l-r3.ebuild,v 1.1 2009/05/30 12:27:05 ssuominen Exp $ + +EAPI=2 +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="tooLAME - an optimized mpeg 1/2 layer 2 audio encoder" +HOMEPAGE="http://www.planckenergy.com" +SRC_URI="mirror://sourceforge/toolame/${P}.tgz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gentoo.diff \ + "${FILESDIR}"/${P}-uint.patch \ + "${FILESDIR}"/${P}-uint32_t.patch +} + +src_compile() { + append-lfs-flags + tc-export CC + emake || die "emake failed" +} + +src_install() { + dobin toolame || die "dobin failed" + dodoc README HISTORY FUTURE html/* text/* +} |