summaryrefslogtreecommitdiff
path: root/audio/moss
diff options
context:
space:
mode:
Diffstat (limited to 'audio/moss')
-rw-r--r--audio/moss/DESCR3
-rw-r--r--audio/moss/Makefile35
-rw-r--r--audio/moss/PLIST39
-rw-r--r--audio/moss/distinfo6
-rw-r--r--audio/moss/files/moss.sh28
-rw-r--r--audio/moss/patches/patch-aa99
6 files changed, 0 insertions, 210 deletions
diff --git a/audio/moss/DESCR b/audio/moss/DESCR
deleted file mode 100644
index 82187f86370..00000000000
--- a/audio/moss/DESCR
+++ /dev/null
@@ -1,3 +0,0 @@
-MOSS (MP3/OGG Streaming Server) is an HTTP-based streaming server
-written in Python. It supports the web mode where you browse and
-select songs, and the live mode which supports real-time broadcast.
diff --git a/audio/moss/Makefile b/audio/moss/Makefile
deleted file mode 100644
index c99213f5b06..00000000000
--- a/audio/moss/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# $NetBSD: Makefile,v 1.15 2006/08/23 10:38:01 minskim Exp $
-
-DISTNAME= moss-0.1.13
-PKGREVISION= 3
-CATEGORIES= audio
-MASTER_SITES= http://kldp.net/frs/download.php/1580/
-
-MAINTAINER= myunggoni@users.kldp.net
-HOMEPAGE= http://moss.kldp.net/
-COMMENT= MP3/OGG Streaming Server
-
-DEPENDS+= ${PYPKGPREFIX}-ogg>=1.3:../../audio/py-ogg
-DEPENDS+= ${PYPKGPREFIX}-vorbis>=1.3:../../audio/py-vorbis
-
-PYTHON_VERSIONS_INCOMPATIBLE= 20 15
-PYTHON_PATCH_SCRIPTS= ${WRKSRC}/*.py
-
-RCD_SCRIPTS= moss
-CONF_FILES= ${PREFIX}/share/moss/moss.conf.sample \
- ${PKG_SYSCONFDIR}/moss.conf
-
-SUBST_CLASSES+= path
-SUBST_MESSAGE.path= Fixing hardcoded paths.
-SUBST_STAGE.path= post-patch
-SUBST_FILES.path= moss.conf.sample
-SUBST_SED.path= -e 's,$${PREFIX}/var,${VARBASE},g'
-SUBST_SED.path+= -e 's,$${PREFIX}/share,${PREFIX}/share,g'
-
-FILES_SUBST+= INTERPRETER=${PYTHONBIN:Q}
-
-PYDISTUTILSPKG= yes
-
-.include "../../lang/python/extension.mk"
-.include "../../lang/python/application.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/audio/moss/PLIST b/audio/moss/PLIST
deleted file mode 100644
index ff85529e86e..00000000000
--- a/audio/moss/PLIST
+++ /dev/null
@@ -1,39 +0,0 @@
-@comment $NetBSD: PLIST,v 1.4 2006/05/22 10:01:03 rillig Exp $
-bin/moss
-${PYSITELIB}/moss/__init__.py
-${PYSITELIB}/moss/__init__.pyc
-${PYSITELIB}/moss/__init__.pyo
-${PYSITELIB}/moss/fileinfo.py
-${PYSITELIB}/moss/fileinfo.pyc
-${PYSITELIB}/moss/fileinfo.pyo
-${PYSITELIB}/moss/htmltmpl.py
-${PYSITELIB}/moss/htmltmpl.pyc
-${PYSITELIB}/moss/htmltmpl.pyo
-${PYSITELIB}/moss/live.py
-${PYSITELIB}/moss/live.pyc
-${PYSITELIB}/moss/live.pyo
-${PYSITELIB}/moss/moss.py
-${PYSITELIB}/moss/moss.pyc
-${PYSITELIB}/moss/moss.pyo
-${PYSITELIB}/moss/mkpasswd.py
-${PYSITELIB}/moss/mkpasswd.pyc
-${PYSITELIB}/moss/mkpasswd.pyo
-${PYSITELIB}/moss/template.py
-${PYSITELIB}/moss/template.pyc
-${PYSITELIB}/moss/template.pyo
-${PYSITELIB}/moss/web.py
-${PYSITELIB}/moss/web.pyc
-${PYSITELIB}/moss/web.pyo
-share/examples/rc.d/moss
-share/moss/images/back.gif
-share/moss/images/dir.gif
-share/moss/images/file.gif
-share/moss/images/play.gif
-share/moss/images/root.gif
-share/moss/mkpasswd.py
-share/moss/moss.conf.sample
-share/moss/templates/default.tmpl
-@dirrm share/moss/templates
-@dirrm share/moss/images
-@dirrm share/moss
-@dirrm ${PYSITELIB}/moss
diff --git a/audio/moss/distinfo b/audio/moss/distinfo
deleted file mode 100644
index 6f65e56bbaf..00000000000
--- a/audio/moss/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.6 2005/02/23 20:39:49 agc Exp $
-
-SHA1 (moss-0.1.13.tar.gz) = 238919100168cee55c8405b808d05de0e0658082
-RMD160 (moss-0.1.13.tar.gz) = fb6067ddf5fb404bc846c760c64c679a93ae308e
-Size (moss-0.1.13.tar.gz) = 43581 bytes
-SHA1 (patch-aa) = 31b252c52e4e0010064a1a9dca38dcd53d407d9e
diff --git a/audio/moss/files/moss.sh b/audio/moss/files/moss.sh
deleted file mode 100644
index 5198387b7a7..00000000000
--- a/audio/moss/files/moss.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# $NetBSD: moss.sh,v 1.1.1.1 2004/08/10 06:48:21 minskim Exp $
-#
-
-# PROVIDE: moss
-# REQUIRE: DAEMON LOGIN wscons
-# KEYWORD: shutdown
-
-if [ -f /etc/rc.subr ]; then
- . /etc/rc.subr
-fi
-
-name="moss"
-rcvar=$name
-command="@PREFIX@/bin/${name}"
-command_interpreter="@INTERPRETER@"
-pidfile="/var/run/moss.pid"
-required_files="@PREFIX@/etc/moss.conf"
-command_args="-c ${required_files}"
-
-if [ -f /etc/rc.subr ]; then
- load_rc_config $name
- run_rc_command "$1"
-else
- echo -n " ${name}"
- ${command} ${command_args}
-fi
diff --git a/audio/moss/patches/patch-aa b/audio/moss/patches/patch-aa
deleted file mode 100644
index 3aca948b681..00000000000
--- a/audio/moss/patches/patch-aa
+++ /dev/null
@@ -1,99 +0,0 @@
-$NetBSD: patch-aa,v 1.4 2004/11/27 01:22:26 minskim Exp $
-
---- setup.py.orig Sat Oct 23 20:22:42 2004
-+++ setup.py
-@@ -41,50 +41,50 @@ class my_install_data(install_data):
- global installed_lib_dir
- install_data.finalize_options(self)
-
-- if not os.path.isdir(os.path.join(self.install_dir, "etc")):
-- print "creating %s" % os.path.join(self.install_dir, "etc")
-- os.mkdir(os.path.join(self.install_dir, "etc"))
--
-- if not os.path.isfile(os.path.join(self.install_dir, "etc", "moss.conf")):
-- print "creating %s" % os.path.join(self.install_dir, "etc", "moss.conf")
--
-- src = open("moss.conf.sample", "r")
-- dest = open(os.path.join(self.install_dir, "etc", "moss.conf"), "w")
--
-- for line in src.readlines():
-- if line.find("${PREFIX}") != -1:
-- line = line.replace("${PREFIX}", self.install_dir)
--
-- dest.write(line)
--
-- src.close()
-- dest.close()
-- else:
-- if self.force:
-- print "creating %s" % os.path.join(self.install_dir, "etc", "moss.conf")
--
-- src = open("moss.conf.sample", "r")
-- dest = open(os.path.join(self.install_dir, "etc", "moss.conf"), "w")
--
-- for line in src.readlines():
-- if line.find("${PREFIX}") != -1:
-- line = line.replace("${PREFIX}", self.install_dir)
--
-- dest.write(line)
--
-- src.close()
-- dest.close()
--
-- if not os.path.isdir(os.path.join(self.install_dir, "var")):
-- os.mkdir(os.path.join(self.install_dir, "var"))
--
-- if not os.path.isdir(os.path.join(self.install_dir, "var", "log")):
-- print "creating %s" % os.path.join(self.install_dir, "var", "log")
-- os.mkdir(os.path.join(self.install_dir, "var", "log"))
--
-- if not os.path.isdir(os.path.join(self.install_dir, "var", "run")):
-- print "creating %s" % os.path.join(self.install_dir, "var", "run")
-- os.mkdir(os.path.join(self.install_dir, "var", "run"))
-+# if not os.path.isdir(os.path.join(self.install_dir, "etc")):
-+# print "creating %s" % os.path.join(self.install_dir, "etc")
-+# os.mkdir(os.path.join(self.install_dir, "etc"))
-+#
-+# if not os.path.isfile(os.path.join(self.install_dir, "etc", "moss.conf")):
-+# print "creating %s" % os.path.join(self.install_dir, "etc", "moss.conf")
-+#
-+# src = open("moss.conf.sample", "r")
-+# dest = open(os.path.join(self.install_dir, "etc", "moss.conf"), "w")
-+#
-+# for line in src.readlines():
-+# if line.find("${PREFIX}") != -1:
-+# line = line.replace("${PREFIX}", self.install_dir)
-+#
-+# dest.write(line)
-+#
-+# src.close()
-+# dest.close()
-+# else:
-+# if self.force:
-+# print "creating %s" % os.path.join(self.install_dir, "etc", "moss.conf")
-+#
-+# src = open("moss.conf.sample", "r")
-+# dest = open(os.path.join(self.install_dir, "etc", "moss.conf"), "w")
-+#
-+# for line in src.readlines():
-+# if line.find("${PREFIX}") != -1:
-+# line = line.replace("${PREFIX}", self.install_dir)
-+#
-+# dest.write(line)
-+#
-+# src.close()
-+# dest.close()
-+#
-+# if not os.path.isdir(os.path.join(self.install_dir, "var")):
-+# os.mkdir(os.path.join(self.install_dir, "var"))
-+#
-+# if not os.path.isdir(os.path.join(self.install_dir, "var", "log")):
-+# print "creating %s" % os.path.join(self.install_dir, "var", "log")
-+# os.mkdir(os.path.join(self.install_dir, "var", "log"))
-+#
-+# if not os.path.isdir(os.path.join(self.install_dir, "var", "run")):
-+# print "creating %s" % os.path.join(self.install_dir, "var", "run")
-+# os.mkdir(os.path.join(self.install_dir, "var", "run"))
-
- if not os.path.isdir(os.path.join(self.install_dir, "share")):
- os.mkdir(os.path.join(self.install_dir, "share"))