diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-11-24 08:05:30 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-11-24 08:05:30 +0000 |
commit | 5177f1d0b1091742c5153c98c3d3ff2b06e36b9d (patch) | |
tree | b83bfcbe4b2642eb88784cd1d54870605bab90de /media-sound/gnump3d/files | |
parent | simplification of the port (no need for gentoo-diffs for install and pid), ad... (diff) | |
download | historical-5177f1d0b1091742c5153c98c3d3ff2b06e36b9d.tar.gz historical-5177f1d0b1091742c5153c98c3d3ff2b06e36b9d.tar.bz2 historical-5177f1d0b1091742c5153c98c3d3ff2b06e36b9d.zip |
simplification of the port (no need for gentoo-diffs for install and pid), add a gnump3d user to the system, version bump
Diffstat (limited to 'media-sound/gnump3d/files')
-rw-r--r-- | media-sound/gnump3d/files/digest-gnump3d-2.6 | 1 | ||||
-rw-r--r-- | media-sound/gnump3d/files/gnump3d-2.6-initd | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/media-sound/gnump3d/files/digest-gnump3d-2.6 b/media-sound/gnump3d/files/digest-gnump3d-2.6 new file mode 100644 index 000000000000..13e935bf4619 --- /dev/null +++ b/media-sound/gnump3d/files/digest-gnump3d-2.6 @@ -0,0 +1 @@ +MD5 30c361ca60c4f01a81dc5b86fd949e6f gnump3d-2.6.tar.bz2 190567 diff --git a/media-sound/gnump3d/files/gnump3d-2.6-initd b/media-sound/gnump3d/files/gnump3d-2.6-initd new file mode 100644 index 000000000000..ff175d4aeee5 --- /dev/null +++ b/media-sound/gnump3d/files/gnump3d-2.6-initd @@ -0,0 +1,27 @@ +#!/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 --make-pidfile \ + --background --pidfile /var/run/gnump3d.pid \ + --exec /usr/bin/gnump3d2 -- --quiet + eend $? +} + +stop() { + ebegin "Stopping gnump3d" + start-stop-daemon --stop --quiet --pidfile /var/run/gnump3d.pid + eend $? +} + +# Local Variables: *** +# mode: shell-script *** +# indent-tabs-mode: t *** +# tab-width: 4 *** +# End: *** |