Port peercast to -ng

git-svn-id: svn://svn.openwrt.org/openwrt/packages@4491 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2006-08-06 14:50:20 +00:00
parent 8d0f5dbe76
commit 4385fe73b3
3 changed files with 173 additions and 0 deletions

View File

@ -0,0 +1,74 @@
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=peercast
PKG_VERSION:=0.1214
PKG_RELEASE:=1
PKG_MD5SUM:=4e8449cde7135ad97f788e67e1bd64ee
PKG_SOURCE_URL:=http://www.cti.ecp.fr/~beauxir5/peercast
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk
define Package/peercast
SECTION:=multimedia
CATEGORY:=Multimedia
DEPENDS:=+libpthread +uclibcxx
TITLE:=P2P audio and video streaming server
DESCRIPTION:=PeerCast is a fresh new P2P streaming server. It can stream music\\\
and video from a broad variety of formats. Many audio players can\\\
listen to peercast streams, as it's been built to remain compatible\\\
with Nullsoft Shoutcast.\\\
URL:=http://www.peercast.org/
endef
define Package/peercast/conffiles
/etc/peercast.ini
endef
define Build/Configure
$(call Build/Configure/Default,--enable-shared \
--disable-static \
--with-gnu-ld \
--enable-staticbin, BUILD_CC=$(TARGET_CC) HOSTCC=$(HOSTCC) \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin -nostdinc++ -nodefaultlibs" \
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
LIBS="-nodefaultlibs -luClibc++ -lpthread")
endef
define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Package/peercast/install
install -m0755 -d $(1)/usr/sbin
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/peercast $(1)/usr/sbin/
install -m0755 -d $(1)/usr/share/peercast/html
$(CP) $(PKG_INSTALL_DIR)/usr/share/peercast/html/en $(1)/usr/share/peercast/html/
install -m0755 -d $(1)/etc
install -m0644 ./files/peercast.ini $(1)/etc/
install -m0755 -d $(1)/etc/init.d
install -m0755 ./files/peercast.init $(1)/etc/init.d/peercast
ln -sf peercast $(1)/etc/init.d/S60peercast
endef
$(eval $(call BuildPackage,peercast))

View File

@ -0,0 +1,81 @@
[Server]
serverPort = 7144
autoServe = Yes
forceIP =
isRoot = No
maxBitrateOut = 0
maxRelays = 1
maxDirect = 0
maxRelaysPerChannel = 0
firewallTimeout = 30
forceNormal = No
rootMsg =
authType = cookie
cookiesExpire = session
htmlPath = html/en
minPGNUIncoming = 10
maxPGNUIncoming = 20
maxServIn = 50
chanLog =
networkID = 00000000000000000000000000000000
[Broadcast]
broadcastMsgInterval = 10
broadcastMsg =
icyMetaInterval = 8192
broadcastID = 898145B5C0427118B595AF7D9E110000
hostUpdateInterval = 180
maxControlConnections = 3
rootHost = yp.peercast.org
[Client]
refreshHTML = 5
relayBroadcast = 30
minBroadcastTTL = 1
maxBroadcastTTL = 7
pushTries = 5
pushTimeout = 60
maxPushHops = 8
autoQuery = 0
queryTTL = 7
[Privacy]
password = hackme
maxUptime = 0
[Filter]
ip = 255.255.255.255
private = No
ban = No
network = Yes
direct = Yes
[End]
[Notify]
PeerCast = Yes
Broadcasters = Yes
TrackInfo = Yes
[End]
[Server1]
allowHTML = Yes
allowBroadcast = Yes
allowNetwork = Yes
allowDirect = Yes
[End]
[Server2]
allowHTML = No
allowBroadcast = Yes
allowNetwork = No
allowDirect = No
[End]
[Debug]
logDebug = No
logErrors = No
logNetwork = No
logChannel = No
pauseLog = No
idleSleepTime = 10

View File

@ -0,0 +1,18 @@
#!/bin/sh
PID_F=/var/run/peercast.pid
case $1 in
start)
peercast -d -i /etc/peercast.ini -l /var/log/peercast.log -p $PID_F
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?