blob: 4c172a0b4dbc41dc1748f670ac4c2876e26f31be (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.4.ebuild,v 1.7 2004/06/24 23:14:31 agriffis Exp $
IUSE=""
DESCRIPTION="A C library for reading and writing files containing sampled sound"
HOMEPAGE="http://www.zipworld.com.au/~erikd/libsndfile/"
SRC_URI="http://www.zipworld.com.au/~erikd/libsndfile/${P}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="x86 sparc ~ppc amd64"
DEPEND="virtual/glibc"
src_compile () {
econf || die "configure failed"
make || die "make failed"
}
src_install () {
einstall || die "make install failed"
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
|