summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2012-12-25 13:37:00 +0000
committerPacho Ramos <pacho@gentoo.org>2012-12-25 13:37:00 +0000
commitd50b7e6e7b6a1a74f1c76b1d3f2cc1ba0b8fadfd (patch)
tree081ddd2db373d37b6c3f2aed5926bcc6b68d364e /net-fs/ccxstream/files
parentDrop masked for removal package (diff)
downloadgentoo-2-d50b7e6e7b6a1a74f1c76b1d3f2cc1ba0b8fadfd.tar.gz
gentoo-2-d50b7e6e7b6a1a74f1c76b1d3f2cc1ba0b8fadfd.tar.bz2
gentoo-2-d50b7e6e7b6a1a74f1c76b1d3f2cc1ba0b8fadfd.zip
Drop masked for removal package
Diffstat (limited to 'net-fs/ccxstream/files')
-rw-r--r--net-fs/ccxstream/files/ccxstream-termcap.patch11
-rw-r--r--net-fs/ccxstream/files/ccxstream.confd54
-rw-r--r--net-fs/ccxstream/files/ccxstream.initd27
3 files changed, 0 insertions, 92 deletions
diff --git a/net-fs/ccxstream/files/ccxstream-termcap.patch b/net-fs/ccxstream/files/ccxstream-termcap.patch
deleted file mode 100644
index c006ec551e28..000000000000
--- a/net-fs/ccxstream/files/ccxstream-termcap.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig 2003-12-27 04:57:23.733355080 +0000
-+++ Makefile 2003-12-27 04:57:34.506717280 +0000
-@@ -22,7 +22,7 @@
- #
-
- CFLAGS+=-I. -g
--LDFLAGS+=-lreadline -ltermcap
-+LDFLAGS+=-lreadline -lncurses
-
- all: ccxstream ccxtest
-
diff --git a/net-fs/ccxstream/files/ccxstream.confd b/net-fs/ccxstream/files/ccxstream.confd
deleted file mode 100644
index 5b68f1dc10b8..000000000000
--- a/net-fs/ccxstream/files/ccxstream.confd
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-#Uncomment the line below to begin (mandatory)
-#CHECK=YES
-
-#Below the user to run the service as (mandatory)
-RUNASUSER="root"
-
-#Below the password on the XBOX (optional)
-#REMOTEPASS="xboxpassword"
-
-#Below the interface to listen on (mandatory)
-LISTENINTERFACE="192.168.1.1"
-
-FOLLOWSYMLINKS=YES
-
-#Comment (optional)
-#SERVERCOMMENT="Video and MP3 server powered by Gentoo. Watch and listen and ENJOY."
-
-#Shares to make available (mandatory)
-SHARES="movies=/data/videos audio=/data/mp3"
-
-#Location of binary file. Leave default unless you know what you're doing (mandatory)
-BIN="/usr/bin/ccxstream"
-
-#-----------------------------------------------------------------------------#
-#-----------------------------------------------------------------------------#
-
-DIR="-"
-
-PIDFILE=/var/run/ccxstream.pid
-
-PARAMS="-f -F $PIDFILE -r $DIR -u $RUNASUSER"
-
-if test "$FOLLOWSYMLINKS" == "YES" ; then
- PARAMS="$PARAMS -L"
-fi
-
-if test "x$REMOTEPASS" != "x" ; then
- PARAMS="$PARAMS -P $REMOTEPASS"
-fi
-
-if test "x$LISTENINTERFACE" != "x" ; then
- PARAMS="$PARAMS -l $LISTENINTERFACE"
-fi
-
-for i in $SHARES ; do
- PARAMS="$PARAMS -S $i"
-done
-
-if test "x$SERVERCOMMENT" = "x" ; then
- SERVERCOMMENT="`hostname`"
-fi
-
diff --git a/net-fs/ccxstream/files/ccxstream.initd b/net-fs/ccxstream/files/ccxstream.initd
deleted file mode 100644
index 1c47116420ce..000000000000
--- a/net-fs/ccxstream/files/ccxstream.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-#
-#
-
-depend() {
- need net
-}
-
-start() {
- if [ "${CHECK}" = "YES" ] ; then
-
- ebegin "Starting ccXstream"
- start-stop-daemon --start --quiet --exec ${BIN} \
- -- ${PARAMS} -C ${SERVERCOMMENT}
- eend $?
- else
- eerror "Please setup /etc/conf.d/ccxstream before starting ccXstream"
-
- return 1
- fi
-}
-
-stop() {
- ebegin "Stopping ccXstream"
- start-stop-daemon --stop --quiet --pidfile /var/run/ccxstream.pid
- eend $?
-}