blob: 0ae6a2430db4e5be88a66c0dc18c18850ebe33b4 (
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
73
74
75
76
77
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.1.4.ebuild,v 1.3 2007/02/24 20:30:08 aballier Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit libtool eutils toolchain-funcs autotools
MY_P="${P/_beta/-beta}"
PATCHLEVEL="11"
DESCRIPTION="free lossless audio encoder and decoder"
HOMEPAGE="http://flac.sourceforge.net/"
SRC_URI="mirror://sourceforge/flac/${MY_P}.tar.gz
mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="3dnow debug doc ogg sse"
RDEPEND="ogg? ( >=media-libs/libogg-1.1.2 )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )
sys-apps/gawk
sys-devel/gettext
doc? ( app-doc/doxygen )
dev-util/pkgconfig"
RESTRICT="test"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
# Enable only for GCC 4.1 and later
[[ $(gcc-major-version)$(gcc-minor-version) -ge 41 ]] || \
export EPATCH_EXCLUDE="130_all_visibility.patch 160_all_protected.patch"
EPATCH_SUFFIX="patch" \
epatch "${WORKDIR}/patches"
AT_M4DIR="m4" eautoreconf
elibtoolize
}
src_compile() {
econf \
$(use_enable ogg) \
$(use_enable sse) \
$(use_enable 3dnow) \
$(use_enable debug) \
$(use_enable doc doxygen-docs) \
--disable-dependency-tracking || die
# the man page ebuild requires docbook2man... yick!
sed -i -e 's:include man:include:g' Makefile
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" \
install || die "make install failed"
dodoc AUTHORS README
use doc || rm -rf "${D}/usr/share/doc/${PF}/api"
doman man/{flac,metaflac}.1
}
pkg_postinst() {
ewarn "If you've upgraded from a previous version of flac, you may need to re-emerge"
ewarn "packages that linked against flac by running revdep-rebuild"
}
|