diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-11-25 00:00:53 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-11-25 00:00:53 +0000 |
commit | 0668e9daea3a50d38823f9255577e0878bcb4af5 (patch) | |
tree | 3c2836a7bd8a3199ac131082ac5ed1ffac9feb81 | |
parent | - add temp tcl.nanorc till one comes from upstream (diff) | |
download | gentoo-2-0668e9daea3a50d38823f9255577e0878bcb4af5.tar.gz gentoo-2-0668e9daea3a50d38823f9255577e0878bcb4af5.tar.bz2 gentoo-2-0668e9daea3a50d38823f9255577e0878bcb4af5.zip |
version bump, bug #193132
(Portage version: 2.1.4_rc3)
-rw-r--r-- | media-sound/gnump3d/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/gnump3d/files/digest-gnump3d-3.0 | 3 | ||||
-rw-r--r-- | media-sound/gnump3d/gnump3d-3.0.ebuild | 71 |
3 files changed, 80 insertions, 1 deletions
diff --git a/media-sound/gnump3d/ChangeLog b/media-sound/gnump3d/ChangeLog index b6031580302e..5278d6fd81ed 100644 --- a/media-sound/gnump3d/ChangeLog +++ b/media-sound/gnump3d/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/gnump3d # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/ChangeLog,v 1.57 2007/10/15 14:38:27 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/ChangeLog,v 1.58 2007/11/25 00:00:52 aballier Exp $ + +*gnump3d-3.0 (24 Nov 2007) + + 24 Nov 2007; Alexis Ballier <aballier@gentoo.org> +gnump3d-3.0.ebuild: + version bump, bug #193132 15 Oct 2007; Markus Rothe <corsair@gentoo.org> gnump3d-2.9_pre99.ebuild: Stable on ppc64 diff --git a/media-sound/gnump3d/files/digest-gnump3d-3.0 b/media-sound/gnump3d/files/digest-gnump3d-3.0 new file mode 100644 index 000000000000..be2764884f5d --- /dev/null +++ b/media-sound/gnump3d/files/digest-gnump3d-3.0 @@ -0,0 +1,3 @@ +MD5 41786650bbc591484c08014a89478bf9 gnump3d-3.0.tar.bz2 633215 +RMD160 c0c3cbe31a6961675636309e82f4ff116db323f1 gnump3d-3.0.tar.bz2 633215 +SHA256 1ac5bd0e850b0e18ccd9d19219f5108fa84b50d8ae3825a361e8b907eab7f19c gnump3d-3.0.tar.bz2 633215 diff --git a/media-sound/gnump3d/gnump3d-3.0.ebuild b/media-sound/gnump3d/gnump3d-3.0.ebuild new file mode 100644 index 000000000000..a6b78885bbed --- /dev/null +++ b/media-sound/gnump3d/gnump3d-3.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/gnump3d-3.0.ebuild,v 1.1 2007/11/25 00:00:52 aballier Exp $ + +inherit eutils multilib + +MY_PV=${PV/9/9final} +MY_P=${PN}-${MY_PV} + +DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files" +HOMEPAGE="http://www.gnump3d.org/" +SRC_URI="http://savannah.gnu.org/download/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="sys-apps/sed + dev-lang/perl" + +RESTRICT="test" + +S="${WORKDIR}"/${MY_P} + +pkg_setup() { + enewuser gnump3d '' '' '' nogroup || die "Failed to add new user." + LIBDIR=/usr/$(get_libdir) +} + +src_compile() { :; } + +src_install() { + PERLDIR="`perl bin/getlibdir`" + + insinto ${PERLDIR}/gnump3d + doins lib/gnump3d/*.pm + insinto ${PERLDIR}/gnump3d/plugins + doins lib/gnump3d/plugins/*.pm + insinto ${PERLDIR}/gnump3d/lang + doins lib/gnump3d/lang/*.pm + + dobin bin/gnump3d2 bin/gnump3d-top bin/gnump3d-index + dosym /usr/bin/gnump3d2 /usr/bin/gnump3d + doman man/*.1 + + insinto /usr/share/gnump3d + doins -r templates/* + + insinto /etc/gnump3d + doins etc/gnump3d.conf etc/mime.types etc/file.types + dosed "s,PLUGINDIR,${PERLDIR},g" /etc/gnump3d/gnump3d.conf + dosed 's,^user *= *\(.*\)$,user = gnump3d,g' /etc/gnump3d/gnump3d.conf + + dodoc AUTHORS ChangeLog DOWNSAMPLING PLUGINS README SUPPORT TODO + + newinitd "${FILESDIR}"/${PN}.init.d gnump3d + newconfd "${FILESDIR}"/${PN}.conf.d gnump3d + + keepdir /var/log/gnump3d + keepdir /var/cache/gnump3d/serving + + fowners gnump3d:nogroup /var/log/gnump3d /var/cache/gnump3d +} + +pkg_postinst() { + einfo + elog "Please edit your /etc/gnump3d/gnump3d.conf before running" + elog "/etc/init.d/gnump3d start" + einfo +} |