blob: e2f8963c548721ea5a9d190f32eac61230eaf241 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/alsa-oss-0.9.8.ebuild,v 1.10 2005/01/23 11:24:56 eradicator Exp $
IUSE=""
DESCRIPTION="Advanced Linux Sound Architecture OSS compatibility layer."
HOMEPAGE="http://www.alsa-project.org/"
LICENSE="GPL-2"
DEPEND="virtual/libc
>=media-libs/alsa-lib-0.9.8"
SLOT="0"
KEYWORDS="x86 -sparc ppc amd64"
SRC_URI="mirror://alsaproject/oss-lib/${P}.tar.bz2"
RESTRICT="nomirror"
src_compile() {
econf || die "./configure failed"
emake || die "Parallel Make Failed"
}
src_install() {
einstall || die
dodoc COPYING
}
|