summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-05-28 17:58:20 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-05-28 17:58:20 +0000
commited1798cb249bec09d3080f2ddbe01c43bbdaf7c0 (patch)
tree97184c6e27faba700f939b752f1b5837921fc6f9 /media-sound/peercast/files
parentRemove vulnerable version. (diff)
downloadgentoo-2-ed1798cb249bec09d3080f2ddbe01c43bbdaf7c0.tar.gz
gentoo-2-ed1798cb249bec09d3080f2ddbe01c43bbdaf7c0.tar.bz2
gentoo-2-ed1798cb249bec09d3080f2ddbe01c43bbdaf7c0.zip
Remove vulnerable version.
(Portage version: 2.1_rc3) (Signed Manifest commit)
Diffstat (limited to 'media-sound/peercast/files')
-rw-r--r--media-sound/peercast/files/digest-peercast-0.12121
-rw-r--r--media-sound/peercast/files/peercast.init44
2 files changed, 0 insertions, 45 deletions
diff --git a/media-sound/peercast/files/digest-peercast-0.1212 b/media-sound/peercast/files/digest-peercast-0.1212
deleted file mode 100644
index 612fcc97a130..000000000000
--- a/media-sound/peercast/files/digest-peercast-0.1212
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3ff5efb2710fe80ed9bc3e3290141ab9 peercast-linux-0.1212.tgz 197079
diff --git a/media-sound/peercast/files/peercast.init b/media-sound/peercast/files/peercast.init
deleted file mode 100644
index 005c706424ee..000000000000
--- a/media-sound/peercast/files/peercast.init
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/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/peercast/files/peercast.init,v 1.1 2004/10/07 10:04:49 trapni Exp $
-
-depend() {
- need net
-}
-
-host_ia32_aware() {
- case "$(uname -m)" in
- i?86)
- return 0;
- ;;
- x86_64)
- return $(test $(cat /proc/sys/abi/vsyscall32 2>/dev/null) -eq 1);
- ;;
- *)
- return 1;
- ;;
- esac
-}
-
-start() {
- ebegin "Starting peercast"
-
- if host_ia32_aware; then
- start-stop-daemon --start --chuid nobody --make-pidfile --pidfile /opt/peercast/peercast.pid --background --exec /opt/bin/peercast
- rv=$?
- else
- eerror "You must have IA32 Emulation enabled in your kernel!"
- rv=1
- fi
-
- eend $rv
-}
-
-stop() {
- ebegin "Stopping peercast"
-
- start-stop-daemon --stop --retry 20 --pidfile /opt/peercast/peercast.pid &>/dev/null
-
- eend $?
-}