blob: db543ebc5e488194a641410435b576b000173c15 (
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
69
70
71
72
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.1.2-r1.ebuild,v 1.1 2005/05/03 20:24:01 eradicator Exp $
inherit libtool eutils flag-o-matic gcc
DESCRIPTION="free lossless audio encoder which includes an XMMS plugin"
HOMEPAGE="http://flac.sourceforge.net/"
SRC_URI="mirror://sourceforge/flac/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~ppc-macos ~sparc ~x86"
IUSE="3dnow debug doc ogg sse xmms"
RDEPEND="ogg? ( >=media-libs/libogg-1.0_rc2 )
xmms? ( media-sound/xmms )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )
sys-apps/gawk
doc? ( app-doc/doxygen )"
src_unpack() {
unpack ${A}
cd "${S}"
if use xmms ; then
epatch "${FILESDIR}"/${P}-xmms-config.patch
else
sed -i -e '/^@FLaC__HAS_XMMS_TRUE/d' src/Makefile.in || die
fi
epatch "${FILESDIR}"/${P}-m4.patch
epatch "${FILESDIR}"/${P}-libtool.patch
epatch "${FILESDIR}"/${P}-gas.patch
epatch "${FILESDIR}"/${P}-makefile.patch
./autogen.sh
libtoolize --copy --force
elibtoolize --reverse-deps
}
src_compile() {
use doc || export ac_cv_prog_DOXYGEN=''
econf \
$(use_with ogg ogg /usr) \
$(use_enable sse) \
$(use_enable 3dnow) \
$(use_enable debug) \
--disable-dependency-tracking || die
# the man page ebuild requires docbook2man... yick!
sed -i -e 's:include man:include:g' Makefile
# emake seems to mess up the building of the xmms input plugin
make || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README
}
pkg_postinst() {
ewarn "If you've upgraded from a previous version of flac, you may need to run"
ewarn "one or more of the following:"
ewarn "revdep-rebuild --soname libFLAC.so.4"
ewarn "revdep-rebuild --soname libFLAC++.so.2"
ewarn "revdep-rebuild --soname libFLAC.so.6"
ewarn "revdep-rebuild --soname libFLAC++.so.4"
}
# see #59482
src_test() { :; }
|