blob: 78a46217053aaa622a05bfbf69988203ec0c848c (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/speex/speex-1.2_rc1.ebuild,v 1.1 2008/07/31 02:58:58 chutzpah Exp $
inherit autotools eutils flag-o-matic
MY_P=${P/_} ; MY_P=${MY_P/_p/.}
DESCRIPTION="Audio compression format designed for speech."
HOMEPAGE="http://www.speex.org"
SRC_URI="http://downloads.xiph.org/releases/speex/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="ogg sse"
RDEPEND="ogg? ( media-libs/libogg )"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-configure.patch
sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
"${S}"/libspeex/Makefile.am \
|| die "unable to disable tests building"
eautoreconf
}
src_compile() {
append-flags -D_FILE_OFFSET_BITS=64
econf $(use_enable sse) $(use_enable ogg)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" \
install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README* TODO
}
|