diff options
author | John J. Ellis <jje@gentoo.org> | 2003-05-10 06:09:54 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-05-10 06:09:54 +0000 |
commit | 93c846713bf64abea96378f8ff0256879dbce6ab (patch) | |
tree | 9f277b6ac7638b8939ec27c16d4b0ecc598a55aa /media-sound/gnump3d/files | |
parent | Updated ebuild. Closes #15721 (~x86 masked) (diff) | |
download | gentoo-2-93c846713bf64abea96378f8ff0256879dbce6ab.tar.gz gentoo-2-93c846713bf64abea96378f8ff0256879dbce6ab.tar.bz2 gentoo-2-93c846713bf64abea96378f8ff0256879dbce6ab.zip |
Updated ebuild. Closes #15721 (~x86 masked)
Diffstat (limited to 'media-sound/gnump3d/files')
-rw-r--r-- | media-sound/gnump3d/files/digest-gnump3d-2.2-r1 | 1 | ||||
-rw-r--r-- | media-sound/gnump3d/files/gnump3d-2.2-gentoo.diff | 62 | ||||
-rw-r--r-- | media-sound/gnump3d/files/gnump3d-2.2-initd | 20 |
3 files changed, 83 insertions, 0 deletions
diff --git a/media-sound/gnump3d/files/digest-gnump3d-2.2-r1 b/media-sound/gnump3d/files/digest-gnump3d-2.2-r1 new file mode 100644 index 000000000000..532498c73dc0 --- /dev/null +++ b/media-sound/gnump3d/files/digest-gnump3d-2.2-r1 @@ -0,0 +1 @@ +MD5 10849cbaaa2c4a1589ec69b30fd04e47 gnump3d-2.2.tar.gz 173740 diff --git a/media-sound/gnump3d/files/gnump3d-2.2-gentoo.diff b/media-sound/gnump3d/files/gnump3d-2.2-gentoo.diff new file mode 100644 index 000000000000..51b9f2e16261 --- /dev/null +++ b/media-sound/gnump3d/files/gnump3d-2.2-gentoo.diff @@ -0,0 +1,62 @@ +diff -ru gnump3d-2.2-orig/Makefile gnump3d-2.2/Makefile +--- gnump3d-2.2-orig/Makefile 2003-02-04 11:25:13.000000000 +0200 ++++ gnump3d-2.2/Makefile 2003-02-22 04:07:20.000000000 +0200 +@@ -26,12 +26,10 @@ + install -d $(PREFIX)/share/gnump3d + install -d $(PREFIX)/bin + install -d $(PREFIX)/man/man1 +- install -d /var/log/gnump3d +- install -d /etc/gnump3d + cp lib/gnump3d/*.pm $(LIBDIR)/gnump3d + cp lib/gnump3d/plugins/*.pm $(LIBDIR)/gnump3d/plugins + cp bin/gnump3d2 $(PREFIX)/bin/ +- -ln -s $(PREFIX)/bin/gnump3d2 $(PREFIX)/bin/gnump3d ++ -ln -s gnump3d2 $(PREFIX)/bin/gnump3d + cp bin/gnump3d-top $(PREFIX)/bin + cp man/gnump3d-top.1 $(PREFIX)/man/man1 + cp man/gnump3d.1 $(PREFIX)/man/man1 +@@ -39,8 +37,6 @@ + cp -R templates/* $(PREFIX)/share/gnump3d + chmod -R a+r $(PREFIX)/share/gnump3d/ + chmod +rx $(PREFIX)/share/gnump3d/*/ +- if [ ! -e /etc/gnump3d/gnump3d.conf ]; then cp etc/gnump3d.conf /etc/gnump3d ; fi +- cp etc/mime.types /etc/gnump3d + + uninstall: + rm -f $(PREFIX)/bin/gnump3d-top +diff -ru gnump3d-2.2-orig/bin/gnump3d2 gnump3d-2.2/bin/gnump3d2 +--- gnump3d-2.2-orig/bin/gnump3d2 2003-02-04 11:25:13.000000000 +0200 ++++ gnump3d-2.2/bin/gnump3d2 2003-02-22 03:43:12.000000000 +0200 +@@ -280,6 +280,11 @@ + if ( ( not $DEBUG ) and ( $BACKGROUND ) ) + { + fork() && exit; ++ # 2003-02-22 Jyrki Muukkonen ++ # we need a pidfile for /etc/init.d/gnump3d script ++ open( PIDFILE, ">/var/run/gnump3d.pid" ); ++ print PIDFILE $PID; ++ close( PIDFILE ); + } + + +diff -ru gnump3d-2.2-orig/etc/gnump3d.conf gnump3d-2.2/etc/gnump3d.conf +--- gnump3d-2.2-orig/etc/gnump3d.conf 2003-02-04 11:25:13.000000000 +0200 ++++ gnump3d-2.2/etc/gnump3d.conf 2003-02-22 02:34:42.000000000 +0200 +@@ -93,7 +93,7 @@ + # If you're on a multi-user system its probably a good idea to + # make the audio files readable to other users anyway... + # +-root = /home/mp3 ++# root = /home/mp3 + + + # +@@ -611,7 +611,7 @@ + # + # plugin_directory = /usr/lib/perl5/gnump3d/plugins + # +- ++plugin_directory = /usr/lib/perl5/5.8.0/gnump3d/plugins + + # + # By default all the plugins which are shipped with this server are diff --git a/media-sound/gnump3d/files/gnump3d-2.2-initd b/media-sound/gnump3d/files/gnump3d-2.2-initd new file mode 100644 index 000000000000..8f8b8a460227 --- /dev/null +++ b/media-sound/gnump3d/files/gnump3d-2.2-initd @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later + +depend() { + need net +} + +start() { + ebegin "Starting gnump3d" + start-stop-daemon --start --quiet --exec /usr/bin/gnump3d2 -- --background --quiet + eend $? +} + +stop() { + ebegin "Stopping gnump3d" + start-stop-daemon --stop --quiet --pidfile /var/run/gnump3d.pid + eend $? +} + |