diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-03-22 15:37:18 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-03-22 15:37:18 +0000 |
commit | a5c373dde9d666fdbbb810293ea232e74aa7b239 (patch) | |
tree | a262da209e04daeb5a0d3315bc38a3aee68d590f /media-sound/gnump3d/files | |
parent | Changing SRC_URI to a working mirror (Manifest recommit) (diff) | |
download | gentoo-2-a5c373dde9d666fdbbb810293ea232e74aa7b239.tar.gz gentoo-2-a5c373dde9d666fdbbb810293ea232e74aa7b239.tar.bz2 gentoo-2-a5c373dde9d666fdbbb810293ea232e74aa7b239.zip |
*** empty log message ***
Diffstat (limited to 'media-sound/gnump3d/files')
-rw-r--r-- | media-sound/gnump3d/files/digest-gnump3d-2.6-r1 | 1 | ||||
-rw-r--r-- | media-sound/gnump3d/files/gnump3d-2.6-gentoo.patch | 18 | ||||
-rw-r--r-- | media-sound/gnump3d/files/gnump3d-2.6-initd | 11 |
3 files changed, 21 insertions, 9 deletions
diff --git a/media-sound/gnump3d/files/digest-gnump3d-2.6-r1 b/media-sound/gnump3d/files/digest-gnump3d-2.6-r1 new file mode 100644 index 000000000000..13e935bf4619 --- /dev/null +++ b/media-sound/gnump3d/files/digest-gnump3d-2.6-r1 @@ -0,0 +1 @@ +MD5 30c361ca60c4f01a81dc5b86fd949e6f gnump3d-2.6.tar.bz2 190567 diff --git a/media-sound/gnump3d/files/gnump3d-2.6-gentoo.patch b/media-sound/gnump3d/files/gnump3d-2.6-gentoo.patch new file mode 100644 index 000000000000..ab4ed2abde60 --- /dev/null +++ b/media-sound/gnump3d/files/gnump3d-2.6-gentoo.patch @@ -0,0 +1,18 @@ +diff -ur gnump3d-2.6.original/bin/gnump3d2 gnump3d-2.6/bin/gnump3d2 +--- gnump3d-2.6.original/bin/gnump3d2 2003-10-16 09:21:20.000000000 -0500 ++++ gnump3d-2.6/bin/gnump3d2 2004-01-23 16:34:11.425553072 -0600 +@@ -393,6 +393,13 @@ + 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 ); ++ + } + + +Only in gnump3d-2.6/bin: gnump3d2~ diff --git a/media-sound/gnump3d/files/gnump3d-2.6-initd b/media-sound/gnump3d/files/gnump3d-2.6-initd index b094bb72d2bf..bb19da539a21 100644 --- a/media-sound/gnump3d/files/gnump3d-2.6-initd +++ b/media-sound/gnump3d/files/gnump3d-2.6-initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/files/gnump3d-2.6-initd,v 1.2 2004/03/04 18:50:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/files/gnump3d-2.6-initd,v 1.3 2004/03/22 15:37:18 mkennedy Exp $ depend() { need net @@ -9,9 +9,7 @@ depend() { start() { ebegin "Starting gnump3d" - start-stop-daemon --start --quiet --make-pidfile \ - --background --pidfile /var/run/gnump3d.pid \ - --exec /usr/bin/gnump3d2 -- --quiet + start-stop-daemon --start --quiet --exec /usr/bin/gnump3d2 -- --background --quiet eend $? } @@ -21,8 +19,3 @@ stop() { eend $? } -# Local Variables: *** -# mode: shell-script *** -# indent-tabs-mode: t *** -# tab-width: 4 *** -# End: *** |