blob: 8bc65f65cddf06713f8d6a46fe02dfb8b7267372 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/nas/nas-1.5-r1.ebuild,v 1.2 2004/06/24 23:17:21 agriffis Exp $
inherit eutils
DESCRIPTION="Network Audio System"
SRC_URI="http://radscan.com/nas/${P}.src.tar.gz"
HOMEPAGE="http://radscan.com/nas.html"
SLOT="0"
LICENSE="X11"
KEYWORDS="x86 sparc ~ppc hppa alpha"
IUSE=""
# This is ridculuous, we only need xmkmf, but no other package
# provides it. 20020607 (Seemant): Actually, the homepage says it needs
# the entire X11 build environment, so this is ok.
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-libaudioMakefile.patch
}
src_compile() {
xmkmf
touch doc/man/lib/tmp.{_man,man}
emake World || die
}
src_install () {
make DESTDIR=${D} install || die
make DESTDIR=${D} install.man || die
for i in ${D}/usr/X11R6/man/man?/*.?x
do
gzip -9 $i
done
dodoc BUGS BUILDNOTES FAQ HISTORY README RELEASE TODO
mv ${D}/usr/X11R6/lib/X11/doc/html ${D}/usr/share/doc/${P}/
rmdir ${D}/usr/X11R6/lib/X11/doc
}
|