mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-12 12:15:52 +02:00
Drop icecast
This is unmaintained for a very long time. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org> Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
committed by
Arne Fitzenreiter
parent
65b08a04da
commit
8485b98d61
@@ -1,55 +0,0 @@
|
||||
usr/bin/icecast
|
||||
usr/etc/icecast.xml
|
||||
#usr/share/doc/icecast
|
||||
#usr/share/doc/icecast/AUTHORS
|
||||
#usr/share/doc/icecast/COPYING
|
||||
#usr/share/doc/icecast/ChangeLog
|
||||
#usr/share/doc/icecast/NEWS
|
||||
#usr/share/doc/icecast/README
|
||||
#usr/share/doc/icecast/TODO
|
||||
usr/share/doc/icecast/icecast2_admin.html
|
||||
usr/share/doc/icecast/icecast2_basicsetup.html
|
||||
usr/share/doc/icecast/icecast2_changes.html
|
||||
usr/share/doc/icecast/icecast2_config_file.html
|
||||
usr/share/doc/icecast/icecast2_faq.html
|
||||
usr/share/doc/icecast/icecast2_glossary.html
|
||||
usr/share/doc/icecast/icecast2_introduction.html
|
||||
usr/share/doc/icecast/icecast2_listenerauth.html
|
||||
usr/share/doc/icecast/icecast2_relay.html
|
||||
usr/share/doc/icecast/icecast2_stats.html
|
||||
usr/share/doc/icecast/icecast2_win32.html
|
||||
usr/share/doc/icecast/icecast2_yp.html
|
||||
usr/share/doc/icecast/index.html
|
||||
usr/share/doc/icecast/listener_auth1.jpg
|
||||
usr/share/doc/icecast/listener_auth2.jpg
|
||||
usr/share/doc/icecast/listener_auth3.jpg
|
||||
#usr/share/icecast
|
||||
#usr/share/icecast/admin
|
||||
usr/share/icecast/admin/listclients.xsl
|
||||
usr/share/icecast/admin/listmounts.xsl
|
||||
usr/share/icecast/admin/manageauth.xsl
|
||||
usr/share/icecast/admin/moveclients.xsl
|
||||
usr/share/icecast/admin/response.xsl
|
||||
usr/share/icecast/admin/stats.xsl
|
||||
usr/share/icecast/admin/updatemetadata.xsl
|
||||
#usr/share/icecast/doc
|
||||
usr/share/icecast/doc/icecast.xml.dist
|
||||
usr/share/icecast/doc/icecast_minimal.xml.dist
|
||||
usr/share/icecast/doc/icecast_shoutcast_compat.xml.dist
|
||||
usr/share/icecast/doc/icecast_urlauth.xml.dist
|
||||
#usr/share/icecast/web
|
||||
usr/share/icecast/web/auth.xsl
|
||||
usr/share/icecast/web/corner_bottomleft.jpg
|
||||
usr/share/icecast/web/corner_bottomright.jpg
|
||||
usr/share/icecast/web/corner_topleft.jpg
|
||||
usr/share/icecast/web/corner_topright.jpg
|
||||
usr/share/icecast/web/icecast.png
|
||||
usr/share/icecast/web/key.gif
|
||||
usr/share/icecast/web/key.png
|
||||
usr/share/icecast/web/server_version.xsl
|
||||
usr/share/icecast/web/status.xsl
|
||||
usr/share/icecast/web/status2.xsl
|
||||
usr/share/icecast/web/style.css
|
||||
usr/share/icecast/web/tunein.png
|
||||
usr/share/doc/icecast/masterslave.png
|
||||
usr/share/doc/icecast/relay.png
|
||||
85
lfs/icecast
85
lfs/icecast
@@ -1,85 +0,0 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation, either version 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.3.2
|
||||
|
||||
THISAPP = icecast-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = icecast
|
||||
PAK_VER = 3
|
||||
|
||||
DEPS = "libshout lame sox libvorbis libogg"
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = ff516b3ccd2bcc31e68f460cd316093f
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
@$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
$(UPDATE_AUTOMAKE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
Reference in New Issue
Block a user