blob: 3c9f150f20259d948e8775d6945ba63bbb794ce4 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/gnump3d-1.0_pre1.ebuild,v 1.1 2002/11/05 19:29:05 aliz Exp $
IUSE="oggvorbis"
MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files"
SRC_URI="mirror://sourceforge/gnump3d/${MY_P}.tar.gz"
HOMEPAGE="http://gnump3d.sourceforge.net/"
DEPEND="virtual/glibc"
RDEPEND=">=sys-devel/perl-5.6.1
oggvorbis? ( media-libs/libvorbis )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
src_compile() {
use oggvorbis && myconf="${myconf} --with-vorbis" \
|| myconf="${myconf} --without-vorbis"
econf $myconf || die
emake || die
}
src_install() {
dodir /usr/share/${PN}
make PREFIX=${D}/usr \
CONFIGDIR=${D}/etc/${PN} \
TEMPLATEDIR=${D}/usr/share/${PN} \
MANDIR=${D}/usr/share/man/man1 \
DESTDIR=${D} install || die
dodoc AUTHORS BUGS CHANGELOG COPYING README* TODO
docinto templates; dodoc templates/README*
exeinto /etc/init.d
newexe ${FILESDIR}/gnump3d.rc6 gnump3d
}
|