summaryrefslogtreecommitdiff
blob: ce3306edf0d9e42d520bfa23dfd5deea0a481f5f (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
# Copyright 1999-2004 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.ebuild,v 1.1 2004/08/10 18:23:03 fvdpol Exp $

IUSE="sndfile static pic"

inherit 64-bit

DESCRIPTION="a library for converting 44.1kHz CD Audio to 48kHz for DAT"
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"

DEPEND=">=dev-libs/fftw-3.0.1
	sndfile? ( >=media-libs/libsndfile-1.0.2 )
	>=dev-util/pkgconfig-0.14.0"

src_compile() {
	local myconf=`use_enable static`

	if 64-bit; then
		myconf="${myconf} --with-pic"
	else
		myconf="${myconf} `use_with pic`"
	fi

	econf $myconf || die "./configure failed"
	emake || die "emake failed"
}

src_install() {
	make DESTDIR="${D}" install || die
	dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README
	dohtml doc/*.html doc/*.css doc/*.png
}