diff options
Diffstat (limited to 'media-sound/gnump3d/gnump3d-2.2.ebuild')
-rw-r--r-- | media-sound/gnump3d/gnump3d-2.2.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/media-sound/gnump3d/gnump3d-2.2.ebuild b/media-sound/gnump3d/gnump3d-2.2.ebuild new file mode 100644 index 000000000000..ef663dac8a2b --- /dev/null +++ b/media-sound/gnump3d/gnump3d-2.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/gnump3d-2.2.ebuild,v 1.1 2003/03/08 23:43:48 aliz Exp $ + +inherit eutils + +DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files" +SRC_URI="mirror://sourceforge/gnump3d/${P}.tar.gz" +HOMEPAGE="http://gnump3d.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc" +RDEPEND=">=sys-devel/perl-5.6.1" + +src_install() { + eval `perl '-V:installarchlib'` + ARCH_LIB=${installarchlib} + + insinto ${ARCH_LIB}/gnump3d + doins lib/gnump3d/*.pm + + insinto ${ARCH_LIB}/gnump3d/plugins + doins lib/gnump3d/plugins/*.pm + + into /usr + + dobin bin/gnump3d2 bin/gnump3d-top + dosym /usr/bin/gnump3d2 /usr/bin/gnump3d + + doman man/*.1 + + for a in templates/*; do + insinto /usr/share/gnump3d/${a/templates} + doins templates/${a/templates}/* + done + + insinto /etc/init.d + newins ${FILESDIR}/gnump3d-${PV}.rc6 gnump3d + + insinto /etc/gnump3d + doins etc/gnump3d.conf etc/mime.types + + dodoc AUTHORS COPYING ChangeLog INSTALL README TODO +} + |