blob: 63eae674b75ada273aca3ebc127585caddc692ce (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Arcady Genkin <agenkin@thpoon.com>
# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/alsa-oss-0.9.0_rc1.ebuild,v 1.4 2002/07/01 00:51:49 lostlogic Exp $
DESCRIPTION="Advanced Linux Sound Architecture OSS compatibility layer"
HOMEPAGE="http://www.alsa-project.org/"
DEPEND="virtual/glibc
>=media-libs/alsa-lib-0.9.0_rc1"
SRC_URI="ftp://ftp.alsa-project.org/pub/oss-lib/${P/_rc/rc}.tar.bz2"
S="${WORKDIR}/${P/_rc/rc}"
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
|| die "./configure failed"
emake || die "Parallel Make Failed"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc COPYING
}
|