* [gentoo-commits] repo/gentoo:master commit in: media-sound/gnump3d/, media-sound/gnump3d/files/
@ 2021-07-13 20:57 Conrad Kostecki
0 siblings, 0 replies; 2+ messages in thread
From: Conrad Kostecki @ 2021-07-13 20:57 UTC (permalink / raw
To: gentoo-commits
commit: d83298b328852bfea9774483510af278c1658bab
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 13 20:42:54 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Jul 13 20:55:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d83298b3
media-sound/gnump3d: fix init script
Closes: https://bugs.gentoo.org/520558
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
media-sound/gnump3d/files/gnump3d.init.d-r1 | 40 +++++++++++++++
media-sound/gnump3d/gnump3d-3.0-r4.ebuild | 76 +++++++++++++++++++++++++++++
2 files changed, 116 insertions(+)
diff --git a/media-sound/gnump3d/files/gnump3d.init.d-r1 b/media-sound/gnump3d/files/gnump3d.init.d-r1
new file mode 100644
index 00000000000..2ead467d788
--- /dev/null
+++ b/media-sound/gnump3d/files/gnump3d.init.d-r1
@@ -0,0 +1,40 @@
+#!/sbin/openrc-run
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+extra_commands="index"
+
+depend() {
+ need net
+ after netmount nfsmount
+}
+
+start() {
+ ebegin "Starting gnump3d"
+
+ if [ ${DO_INDEX} -eq 1 ]; then
+ ebegin "Updating index of music files (may take a while for the first time)"
+ /usr/bin/gnump3d-index
+ eend $?
+ fi
+
+ start-stop-daemon --start --quiet --exec /usr/bin/gnump3d2 --make-pidfile \
+ --pidfile /var/run/gnump3d.pid --background -- --quiet
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping gnump3d"
+ start-stop-daemon --stop --quiet --pidfile /var/run/gnump3d.pid
+ eend $?
+}
+
+index() {
+ ebegin "Indexing music files"
+ /usr/bin/gnump3d-index
+ eend $?
+}
+
+start_pre() {
+ checkpath -d -o "gnump3d:gnump3d" -q "/var/cache/gnump3d" "/var/cache/gnump3d/serving"
+}
diff --git a/media-sound/gnump3d/gnump3d-3.0-r4.ebuild b/media-sound/gnump3d/gnump3d-3.0-r4.ebuild
new file mode 100644
index 00000000000..fc1a65587ec
--- /dev/null
+++ b/media-sound/gnump3d/gnump3d-3.0-r4.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib perl-module
+
+DESCRIPTION="A streaming server for MP3, OGG vorbis and other streamable files"
+HOMEPAGE="https://www.gnu.org/software/gnump3d/"
+SRC_URI="https://savannah.gnu.org/download/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha amd64 ~ppc ppc64 sparc x86"
+IUSE="sox"
+
+DEPEND="
+ acct-group/gnump3d
+ acct-user/gnump3d
+"
+
+RDEPEND="
+ ${DEPEND}
+ sox? ( media-sound/sox )
+"
+
+RESTRICT="test"
+
+pkg_setup() {
+ LIBDIR=/usr/$(get_libdir)
+}
+
+src_compile() { :; }
+
+src_install() {
+ perl_set_version
+
+ insinto "${VENDOR_LIB}"/gnump3d
+ doins lib/gnump3d/*.pm
+ insinto "${VENDOR_LIB}"/gnump3d/plugins
+ doins lib/gnump3d/plugins/*.pm
+ insinto "${VENDOR_LIB}"/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
+ sed -e "s,PLUGINDIR,${VENDOR_LIB},g" -i "${ED}/etc/gnump3d/gnump3d.conf" || die
+ sed -e 's,^user *= *\(.*\)$,user = gnump3d,g' -i "${ED}/etc/gnump3d/gnump3d.conf" || die
+
+ dodoc AUTHORS ChangeLog DOWNSAMPLING PLUGINS README SUPPORT TODO
+
+ newinitd "${FILESDIR}"/${PN}.init.d-r1 gnump3d
+ newconfd "${FILESDIR}"/${PN}.conf.d gnump3d
+
+ keepdir /var/log/gnump3d
+ fowners gnump3d:gnump3d /var/log/gnump3d
+}
+
+pkg_postinst() {
+ elog "Please edit your /etc/gnump3d/gnump3d.conf before running"
+ elog "/etc/init.d/gnump3d start"
+ elog ""
+ elog "At the very least, you will need to change the root directory"
+ elog "where music is found. By default, gnump3d will also listen"
+ elog "to any address on port 8888"
+ elog ""
+ elog "You can optionally use sox to downmix the quality of streamed"
+ elog "music in realtime for slow connections."
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/gnump3d/, media-sound/gnump3d/files/
@ 2024-02-29 0:22 Sam James
0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2024-02-29 0:22 UTC (permalink / raw
To: gentoo-commits
commit: a281d64685db953da8812f16e324b0faefe2dfe6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 29 00:16:00 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 29 00:16:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a281d646
media-sound/gnump3d: update init.d for nfsmount removal
Bug: https://bugs.gentoo.org/925459
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/gnump3d/files/gnump3d.init.d-r1 | 2 +-
media-sound/gnump3d/{gnump3d-3.0-r5.ebuild => gnump3d-3.0-r6.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/gnump3d/files/gnump3d.init.d-r1 b/media-sound/gnump3d/files/gnump3d.init.d-r1
index 2ead467d7882..6a644d6c5346 100644
--- a/media-sound/gnump3d/files/gnump3d.init.d-r1
+++ b/media-sound/gnump3d/files/gnump3d.init.d-r1
@@ -6,7 +6,7 @@ extra_commands="index"
depend() {
need net
- after netmount nfsmount
+ after netmount
}
start() {
diff --git a/media-sound/gnump3d/gnump3d-3.0-r5.ebuild b/media-sound/gnump3d/gnump3d-3.0-r6.ebuild
similarity index 98%
rename from media-sound/gnump3d/gnump3d-3.0-r5.ebuild
rename to media-sound/gnump3d/gnump3d-3.0-r6.ebuild
index eb01124fbbc2..4b8beef479f8 100644
--- a/media-sound/gnump3d/gnump3d-3.0-r5.ebuild
+++ b/media-sound/gnump3d/gnump3d-3.0-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-02-29 0:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-29 0:22 [gentoo-commits] repo/gentoo:master commit in: media-sound/gnump3d/, media-sound/gnump3d/files/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-07-13 20:57 Conrad Kostecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox