blob: 3af8cdcf0e44341543735088be8883b1dbf5d485 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
IUSE=""
S=${WORKDIR}/audiooss-${PV}
HOMEPAGE="http://romeo.skybert.no/~erik/linux.html"
DESCRIPTION="Transparent OSS emulation on top of the Network Audio System"
SRC_URI="http://romeo.skybert.no/~erik/audiooss-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="virtual/x11
media-libs/nas"
RDEPEND="${DEPEND}"
src_compile() {
xmkmf -a || die
mv Makefile Makefile.old
sed -e "s:.*CDEBUGFLAGS =.*:CDEBUGFLAGS=${CFLAGS}:" \
Makefile.old > Makefile
emake || die
}
src_install() {
emake DESTDIR=${D} install || die
}
|