blob: 24c0c7d39aaefed6b5d8744e1985ab251e1a7b12 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.0.14.ebuild,v 1.1 2003/01/30 09:39:03 raker Exp $
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"
IUSE=""
DEPEND="virtual/glibc
>=dev-libs/fftw-2.0.0
>=media-libs/libsndfile-1.0.0
>=dev-util/pkgconfig-0.14.0"
S=${WORKDIR}/${P}
src_compile() {
econf || die"configure failed"
emake || die "compile failed"
}
src_install() {
einstall || die "make install failed"
}
|