summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-20 20:16:33 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-21 00:28:25 -0500
commit88faed72a8d7faf0c0c10f0f7f5f1edd46d735d5 (patch)
treeefd9543ddeed37d92c97451fdac4d94607005d14 /multimedia
parent9f17f92bb2b8f0170e254cff28f4ce11d989ea8c (diff)
downloadslackbuilds-88faed72a8d7faf0c0c10f0f7f5f1edd46d735d5.tar.gz
slackbuilds-88faed72a8d7faf0c0c10f0f7f5f1edd46d735d5.tar.xz
multimedia/sopcast: Removed (broken download link)
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/sopcast/README18
-rw-r--r--multimedia/sopcast/README.SLACKWARE17
-rw-r--r--multimedia/sopcast/slack-desc19
-rw-r--r--multimedia/sopcast/sopcast.SlackBuild54
-rw-r--r--multimedia/sopcast/sopcast.info10
5 files changed, 0 insertions, 118 deletions
diff --git a/multimedia/sopcast/README b/multimedia/sopcast/README
deleted file mode 100644
index 4380f64fc1..0000000000
--- a/multimedia/sopcast/README
+++ /dev/null
@@ -1,18 +0,0 @@
-SopCast is a simple, free way to broadcast video and audio or watch the video
-and listen to radio on the Internet. Adopting P2P(Peer-to-Peer) technology,
-it is very efficient and easy to use. Let anyone become a broadcaster
-without the costs of a powerful server and vast bandwidth. You can build
-your own TV stations comparable with large commercial sites with minimal
-resources. Using SopCast, you can serve 10,000 online users with a personal
-computer and a home broadband connection.
-
-SoP is the abbreviation for Streaming over P2P. Sopcast is a Streaming
-Direct Broadcasting System based on P2P. The core is the communication
-protocol produced by Sopcast Team, which is named sop://, or SoP technology.
-
-This is the command line version of sopcast, but a gtk gui frontend called
-"gsopcast" is also available at SlackBuilds.org.
-
-This appears to be a binary-only deal, and there isn't one for x86_64.
-
-See README.SLACKWARE for initial setup and configuration hints.
diff --git a/multimedia/sopcast/README.SLACKWARE b/multimedia/sopcast/README.SLACKWARE
deleted file mode 100644
index 3bfc66217e..0000000000
--- a/multimedia/sopcast/README.SLACKWARE
+++ /dev/null
@@ -1,17 +0,0 @@
-sopcast README.SLACKWARE 20091016
-
-Sopcast's official readme file is included in sp-auth.tgz. The following is
-a bit similar to it but hopefully it'll get you running. To run sopcast on
-the command line:
-
-1. Type "sp-sc sop://211.152.36.37:3912/60341 8908 8909 > /dev/null &"
-
-2. Check if sop is running with "ps ux | grep sp-sc"
-
-Now you can load your live channel with xine, gxine, mplayer, or vlc like this:
-
- xine http://localhost:8909/tv.asf
-
-If it doesn't work, most likely the channel is dead.
-
-To see a list of commands, type: "sp-sc"
diff --git a/multimedia/sopcast/slack-desc b/multimedia/sopcast/slack-desc
deleted file mode 100644
index 938857ec71..0000000000
--- a/multimedia/sopcast/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|' on
-# the right side marks the last column you can put a character in. You must make
-# exactly 11 lines for the formatting to be correct. It's also customary to
-# leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-sopcast: sopcast (command line client)
-sopcast:
-sopcast: SopCast is a simple, free way to broadcast video and audio or watch
-sopcast: the video and listen to radio on the Internet. Adopting
-sopcast: P2P(Peer-to-Peer) technology, It is very efficient and easy to use.
-sopcast: Let anyone become a broadcaster without the costs of a powerful
-sopcast: server and vast bandwidth. You can build your own TV stations
-sopcast: comparable with large commercial sites with minimal resources.
-sopcast:
-sopcast: http://www.sopcast.com/
-sopcast: \ No newline at end of file
diff --git a/multimedia/sopcast/sopcast.SlackBuild b/multimedia/sopcast/sopcast.SlackBuild
deleted file mode 100644
index e82d2b57d8..0000000000
--- a/multimedia/sopcast/sopcast.SlackBuild
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for sopcast
-# Written by Nai (bluedbs@gmail.com)
-
-PRGNAM=sopcast
-VERSION=${VERSION:-3.0.1}
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/sp-auth.tgz
-cd sp-auth
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-mkdir -p $PKG/usr/bin
-cp -f sp-sc-auth $PKG/usr/bin/sp-sc
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a Readme $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-cat $CWD/README.SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README.SLACKWARE
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/multimedia/sopcast/sopcast.info b/multimedia/sopcast/sopcast.info
deleted file mode 100644
index 9cb3b848ac..0000000000
--- a/multimedia/sopcast/sopcast.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="sopcast"
-VERSION="3.0.1"
-HOMEPAGE="http://www.sopcast.com/"
-DOWNLOAD="http://download.sopcast.cn/download/sp-auth.tgz"
-MD5SUM="5d1fbdd6d39a0d4c33a8e8500d43361f"
-DOWNLOAD_x86_64="UNSUPPORTED"
-MD5SUM_x86_64=""
-MAINTAINER="Nai"
-EMAIL="bluedbs@gmail.com"
-APPROVED="rworkman"