blob: 8ed20b5810c4a171b180583b70fcfd67c80a27f5 (
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
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild,v 1.15 2011/11/28 17:59:49 ssuominen Exp $
EAPI=3
inherit autotools eutils
DESCRIPTION="LAME Ain't an MP3 Encoder"
HOMEPAGE="http://lame.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz -> ${P}-r1.tar.gz" #346155
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
RDEPEND=">=sys-libs/ncurses-5.2
sndfile? ( >=media-libs/libsndfile-1.0.2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
mmx? ( dev-lang/nasm )"
RESTRICT="mirror" #346155
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-3.98-shared-frontend.patch \
"${FILESDIR}"/${PN}-3.96-ccc.patch \
"${FILESDIR}"/${PN}-3.98-gtk-path.patch \
"${FILESDIR}"/${PN}-3.98.2-get_audio.patch
mkdir libmp3lame/i386/.libs || die #workaround parallel build with nasm
sed -i -e '/define sp/s/+/ + /g' libmp3lame/i386/nasm.h || die
AT_M4DIR="${S}" eautoreconf
epunt_cxx #74498
}
src_configure() {
local myconf
use sndfile && myconf="--with-fileio=sndfile"
econf \
--disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_enable debug debug norm) \
$(use_enable mmx nasm) \
--disable-mp3x \
$(use_enable mp3rtp) \
${myconf}
}
src_install() {
emake DESTDIR="${D}" pkghtmldir="${EPREFIX}/usr/share/doc/${PF}/html" install || die
dobin misc/mlame || die
dodoc API ChangeLog HACKING README* STYLEGUIDE TODO USAGE || die
dohtml misc/lameGUI.html Dll/LameDLLInterface.htm || die
find "${ED}" -name '*.la' -exec rm -f '{}' +
}
|