blob: 17a84fb068505b02224f4101709bb9cfaad40658 (
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
|
# 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.0.13.ebuild,v 1.6 2004/07/14 20:14:44 agriffis 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/libc
>=dev-libs/fftw-2.0.0
>=media-libs/libsndfile-1.0.0
>=dev-util/pkgconfig-0.14.0"
src_compile() {
econf || die"configure failed"
emake || die "compile failed"
}
src_install() {
einstall || die "make install failed"
}
|