blob: 83e74505110a0b1e818a5098a82ef1f960a6c6fa (
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
63
64
65
66
67
68
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.96.ebuild,v 1.10 2004/07/13 20:36:40 kloeri Exp $
inherit flag-o-matic gcc eutils
DESCRIPTION="LAME Ain't an Mp3 Encoder"
HOMEPAGE="http://lame.sourceforge.net"
SRC_URI="mirror://sourceforge/lame/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa amd64 ~ia64 ~mips"
IUSE="gtk debug"
RDEPEND=">=sys-libs/ncurses-5.2
gtk? ( =x11-libs/gtk+-1.2* )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )"
src_unpack() {
unpack ${A}
cd ${S}
}
src_compile() {
# take out -fomit-frame-pointer from CFLAGS if k6-2
is-flag "-march=k6-3" && filter-flags "-fomit-frame-pointer"
is-flag "-march=k6-2" && filter-flags "-fomit-frame-pointer"
is-flag "-march=k6" && filter-flags "-fomit-frame-pointer"
[ "`gcc-fullversion`" == "3.3.2" ] && replace-flags -march=2.0 -march=1.0
local myconf=""
if use gtk; then
myconf="${myconf} --enable-mp3x"
fi
# as of 3.95.1 changed from "yes" to "norm" ("alot" is also accepted)
use debug \
&& myconf="${myconf} --enable-debug=norm" \
|| myconf="${myconf} --enable-debug=no"
# The user sets compiler optimizations... But if you'd like
# lame to choose it's own... uncomment one of these (experiMENTAL)
# myconf="${myconf} --enable-expopt=full \
# myconf="${myconf} --enable-expopt=norm \
econf \
--enable-shared \
--enable-nasm \
--enable-mp3rtp \
${myconf} || die
# Parallel make isn't happy
emake -j1 || die
}
src_install() {
make DESTDIR=${D} pkghtmldir=/usr/share/doc/${PF}/html install || die
dodoc API ChangeLog HACKING PRESETS.draft README* STYLEGUIDE TODO USAGE
dohtml misc/lameGUI.html Dll/LameDLLInterface.htm
dobin ${S}/misc/mlame
}
|