blob: c58583232dead85caa39b1f9725b8daf34957e6d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.1-r1.ebuild,v 1.8 2005/09/04 12:25:57 flameeyes Exp $
DESCRIPTION="Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio"
HOMEPAGE="http://www.mega-nerd.com/SRC/"
SRC_URI="http://www.mega-nerd.com/SRC/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc sparc ~alpha ~ia64 amd64 ~ppc-macos"
IUSE="sndfile static"
RDEPEND=">=sci-libs/fftw-3.0.1
sndfile? ( >=media-libs/libsndfile-1.0.2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.14.0"
src_compile() {
local myconf=$(use_enable static)
# Unconditonal use of -fPIC (#55238).
myconf="${myconf} --with-pic"
econf $myconf || die "./configure failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README
dohtml doc/*.html doc/*.css doc/*.png
}
|