blob: 161c6260be010c26466c0b2f49f90cda3c3619c9 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.0.3.ebuild,v 1.8 2002/10/05 18:08:30 gerk Exp $
IUSE="sse xmms"
inherit libtool
DESCRIPTION="A free lossless audio encoder"
SRC_URI="mirror://sourceforge/flac/${P}.tar.gz"
HOMEPAGE="http://flac.sourceforge.net/"
S=${WORKDIR}/${P}
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="x86 ppc sparc sparc64"
RDEPEND="virtual/glibc
>=media-libs/libogg-1.0_rc2
xmms? ( media-sound/xmms )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )
sys-apps/gawk"
src_compile() {
elibtoolize
local myconf
use sse && myconf="--enable-sse"
#--use-3dnow is documented but apparently not yet enabled.
#use 3dnow && myconf="${myconf} --use-3dnow"
econf ${myconf} || die
cp Makefile Makefile.orig
#the man page ebuild requires docbook2man... yick!
sed -e 's:include man:include:g' Makefile.orig > Makefile
#emake seems to mess up the building of the xmms input plugin
make || die
}
src_install() {
cd ${S}
make DESTDIR=${D} install
}
|