summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dibb <beandog@gentoo.org>2008-06-03 14:52:33 +0000
committerSteve Dibb <beandog@gentoo.org>2008-06-03 14:52:33 +0000
commitba8c7ee418ef5391b0fb88366e53e4b1f43b1606 (patch)
tree338a03b0a9b944a00594584a534d420411801c32 /media-sound
parentVersion bump, bug 216357 (diff)
downloadgentoo-2-ba8c7ee418ef5391b0fb88366e53e4b1f43b1606.tar.gz
gentoo-2-ba8c7ee418ef5391b0fb88366e53e4b1f43b1606.tar.bz2
gentoo-2-ba8c7ee418ef5391b0fb88366e53e4b1f43b1606.zip
Add index option to init script, bug 204418
(Portage version: 2.1.5.3)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/gnump3d/ChangeLog5
-rw-r--r--media-sound/gnump3d/files/gnump3d.init.d9
2 files changed, 12 insertions, 2 deletions
diff --git a/media-sound/gnump3d/ChangeLog b/media-sound/gnump3d/ChangeLog
index 8e941936cbfb..d012df034dcc 100644
--- a/media-sound/gnump3d/ChangeLog
+++ b/media-sound/gnump3d/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/gnump3d
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/ChangeLog,v 1.63 2008/01/17 18:58:41 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/ChangeLog,v 1.64 2008/06/03 14:52:32 beandog Exp $
+
+ 03 Jun 2008; Steve Dibb <beandog@gentoo.org> files/gnump3d.init.d:
+ Add index option to init script, bug 204418
17 Jan 2008; Fabian Groffen <grobian@gentoo.org> gnump3d-2.9_pre7.ebuild,
gnump3d-2.9_pre99.ebuild:
diff --git a/media-sound/gnump3d/files/gnump3d.init.d b/media-sound/gnump3d/files/gnump3d.init.d
index ba2071340a50..bf5832eb4a1c 100644
--- a/media-sound/gnump3d/files/gnump3d.init.d
+++ b/media-sound/gnump3d/files/gnump3d.init.d
@@ -1,7 +1,9 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/files/gnump3d.init.d,v 1.3 2004/07/14 22:48:07 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/gnump3d/files/gnump3d.init.d,v 1.4 2008/06/03 14:52:33 beandog Exp $
+
+opts="start stop index"
depend() {
need net
@@ -28,3 +30,8 @@ stop() {
eend $?
}
+index() {
+ ebegin "Indexing music files"
+ /usr/bin/gnump3d-index
+ eend $?
+}