From d1b6aa72bb7eff5246de5c1d5a8e945def73f5c1 Mon Sep 17 00:00:00 2001 From: ms Date: Tue, 29 Aug 2006 15:56:35 +0000 Subject: [PATCH] Hinzugefuegt: * VLC und seine Libs. EXPERIMENTAL! git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@261 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- doc/ChangeLog | 8 + lfs/ffmpeg | 90 +++++++ lfs/libmad | 84 +++++++ lfs/mpeg2dec | 84 +++++++ lfs/videolan | 86 +++++++ lfs/xvid | 87 +++++++ make.sh | 13 +- src/paks/ffmpeg/ROOTFILES | 34 +++ src/paks/ffmpeg/install.sh | 11 + src/paks/ffmpeg/uninstall.sh | 10 + src/paks/libmad/ROOTFILES | 6 + src/paks/libmad/install.sh | 11 + src/paks/libmad/uninstall.sh | 10 + src/paks/mpeg2dec/ROOTFILES | 20 ++ src/paks/mpeg2dec/install.sh | 11 + src/paks/mpeg2dec/uninstall.sh | 10 + src/paks/videolan/ROOTFILES | 427 +++++++++++++++++++++++++++++++++ src/paks/videolan/install.sh | 11 + src/paks/videolan/uninstall.sh | 10 + src/paks/xvid/ROOTFILES | 5 + src/paks/xvid/install.sh | 11 + src/paks/xvid/uninstall.sh | 10 + tools/perfTest.sh | 2 +- 23 files changed, 1049 insertions(+), 2 deletions(-) create mode 100644 lfs/ffmpeg create mode 100644 lfs/libmad create mode 100644 lfs/mpeg2dec create mode 100644 lfs/videolan create mode 100644 lfs/xvid create mode 100644 src/paks/ffmpeg/ROOTFILES create mode 100644 src/paks/ffmpeg/install.sh create mode 100644 src/paks/ffmpeg/uninstall.sh create mode 100644 src/paks/libmad/ROOTFILES create mode 100644 src/paks/libmad/install.sh create mode 100644 src/paks/libmad/uninstall.sh create mode 100644 src/paks/mpeg2dec/ROOTFILES create mode 100644 src/paks/mpeg2dec/install.sh create mode 100644 src/paks/mpeg2dec/uninstall.sh create mode 100644 src/paks/videolan/ROOTFILES create mode 100644 src/paks/videolan/install.sh create mode 100644 src/paks/videolan/uninstall.sh create mode 100644 src/paks/xvid/ROOTFILES create mode 100644 src/paks/xvid/install.sh create mode 100644 src/paks/xvid/uninstall.sh diff --git a/doc/ChangeLog b/doc/ChangeLog index b424e9149c..45c5b1068e 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,11 @@ +------------------------------------------------------------------------ +r260 | ms | 2006-08-28 19:42:07 +0200 (Mon, 28 Aug 2006) | 5 lines + +Hinzugefuegt: + * Nagios 2.5 mit Plugins +Programmupdate: + * GD 2.0.20 --> 2.0.33 + ------------------------------------------------------------------------ r259 | ms | 2006-08-28 16:18:38 +0200 (Mon, 28 Aug 2006) | 5 lines diff --git a/lfs/ffmpeg b/lfs/ffmpeg new file mode 100644 index 0000000000..9f204d4812 --- /dev/null +++ b/lfs/ffmpeg @@ -0,0 +1,90 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 2 of the License, or # +# (at your option) any later version. # +# # +# IPCop 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 IPCop; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Makefiles are based on LFSMake, which is # +# Copyright (C) 2002 Rod Roard # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 20051126 + +THISAPP = ffmpeg-$(VER) +DL_FILE = $(THISAPP).tar.bz2 +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) +PROG = ffmpeg +PAK_VER = 1 + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = f9e50bf9ee1dd248a276bf9bd4d606e0 + +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 jxf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && sed -i "s/static uint64/const uint64/" \ + libavcodec/liba52/resample_mmx.c + cd $(DIR_APP) && ./configure --prefix=/usr --enable-gpl --enable-shared \ + --enable-pthreads --disable-ffplay --enable-pp \ + --enable-mp3lame --enable-libogg --enable-vorbis \ + --enable-xvid --enable-a52 + cd $(DIR_APP) && make + cd $(DIR_APP) && make -C doc ff{mpeg,play,server}.1 + cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/lfs/libmad b/lfs/libmad new file mode 100644 index 0000000000..f5b67d1e8e --- /dev/null +++ b/lfs/libmad @@ -0,0 +1,84 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 2 of the License, or # +# (at your option) any later version. # +# # +# IPCop 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 IPCop; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Makefiles are based on LFSMake, which is # +# Copyright (C) 2002 Rod Roard # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 0.15.1b + +THISAPP = libmad-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) +PROG = libmad +PAK_VER = 1 + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = 1be543bc30c56fb6bea1d7bf6a64e66c + +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) + cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && make + cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/lfs/mpeg2dec b/lfs/mpeg2dec new file mode 100644 index 0000000000..31150324df --- /dev/null +++ b/lfs/mpeg2dec @@ -0,0 +1,84 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 2 of the License, or # +# (at your option) any later version. # +# # +# IPCop 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 IPCop; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Makefiles are based on LFSMake, which is # +# Copyright (C) 2002 Rod Roard # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 20050802 + +THISAPP = mpeg2dec-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/mpeg2dec-0.4.1-cvs +TARGET = $(DIR_INFO)/$(THISAPP) +PROG = mpeg2dec +PAK_VER = 1 + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = 79b3559a9354085fcebb1460dd93d237 + +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) + cd $(DIR_APP) && ./configure --prefix=/usr --enable-shared + cd $(DIR_APP) && make + cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/lfs/videolan b/lfs/videolan new file mode 100644 index 0000000000..d831a3a383 --- /dev/null +++ b/lfs/videolan @@ -0,0 +1,86 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 2 of the License, or # +# (at your option) any later version. # +# # +# IPCop 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 IPCop; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Makefiles are based on LFSMake, which is # +# Copyright (C) 2002 Rod Roard # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 0.8.5 + +THISAPP = vlc-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) +PROG = videolan +PAK_VER = 1 + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = 90d19a5ba2ef2e03e6062fadc2e810d2 + +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) + cd $(DIR_APP) && ./configure --prefix=/usr \ + --disable-wxwidgets --disable-skins2 --without-x \ + --enable-httpd --enable-ncurses + cd $(DIR_APP) && make + cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/lfs/xvid b/lfs/xvid new file mode 100644 index 0000000000..b7dbba9fff --- /dev/null +++ b/lfs/xvid @@ -0,0 +1,87 @@ +############################################################################### +# This file is part of the IPCop Firewall. # +# # +# IPCop 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 2 of the License, or # +# (at your option) any later version. # +# # +# IPCop 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 IPCop; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Makefiles are based on LFSMake, which is # +# Copyright (C) 2002 Rod Roard # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 1.1.0 + +THISAPP = xvidcore-$(VER) +DL_FILE = $(THISAPP).tar.bz2 +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) +PROG = postfix +PAK_VER = ipfire-beta1 + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = 359eebc5fb496a2bf7b15010059e7897 + +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 jxf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP)/build/generic && ./configure --prefix=/usr + cd $(DIR_APP)/build/generic && make + cd $(DIR_APP)/build/generic && make install + chmod -v 755 /usr/lib/libxvidcore.so.4.1 + ln -v -sf libxvidcore.so.4.1 /usr/lib/libxvidcore.so.4 + ln -v -sf libxvidcore.so.4 /usr/lib/libxvidcore.so + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/make.sh b/make.sh index 4e5b97b26b..143c0611e3 100644 --- a/make.sh +++ b/make.sh @@ -732,12 +732,17 @@ buildipcop() { ipcopmake bristuff ipcopmake asterisk ipcopmake mpg123 - echo -ne "`date -u '+%b %e %T'`: Building ### MP3-Server ### \n" | tee -a $LOGFILE + echo -ne "`date -u '+%b %e %T'`: Building ### Multimedia-Server ### \n" | tee -a $LOGFILE + ipcopamke libmad ipcopmake libogg ipcopmake libvorbis ipcopmake lame + ipcopmake xvid + ipcopmake mpeg2dec + ipcopmake ffmpeg ipcopmake sox ipcopmake gnump3d + ipcopmake videolan echo -ne "`date -u '+%b %e %T'`: Building ### P2P-Clients ### \n" | tee -a $LOGFILE ipcopmake applejuice ipcopmake ocaml @@ -881,16 +886,19 @@ ipfirepackages() { ipfiredist cups ipfiredist cyrusimap ipfiredist fetchmail + ipfiredist ffmpeg ipfiredist gnump3d ipfiredist iptraf ipfiredist java ipfiredist lame + ipfiredist libmad ipfiredist libogg ipfiredist libtiff ipfiredist libvorbis ipfiredist libxml2 ipfiredist mailx ipfiredist mldonkey + ipfiredist mpeg2dec ipfiredist nagios ipfiredist nfs ipfiredist nmap @@ -902,9 +910,11 @@ ipfirepackages() { ipfiredist sox ipfiredist spamassassin ipfiredist subversion + ipfiredist videolan ipfiredist web-cyradm ipfiredist xampp # ipfiredist xinetd + ipfiredist xvid test -d $BASEDIR/packages || mkdir $BASEDIR/packages mv -f $LFS/install/packages/*.{tar.gz,md5} $BASEDIR/packages >> $LOGFILE 2>&1 rm -rf $BASEDIR/build/install/packages/* @@ -1638,6 +1648,7 @@ batch) if [ "$input" == "yes" ]; then $0 svn commit fi + $0 sync ;; "SVN: Update") $0 svn update diff --git a/src/paks/ffmpeg/ROOTFILES b/src/paks/ffmpeg/ROOTFILES new file mode 100644 index 0000000000..f30cfaf0cf --- /dev/null +++ b/src/paks/ffmpeg/ROOTFILES @@ -0,0 +1,34 @@ +usr/bin/ffmpeg +usr/bin/ffserver +#usr/include/ffmpeg +#usr/include/ffmpeg/avcodec.h +#usr/include/ffmpeg/avformat.h +#usr/include/ffmpeg/avio.h +#usr/include/ffmpeg/avutil.h +#usr/include/ffmpeg/common.h +#usr/include/ffmpeg/integer.h +#usr/include/ffmpeg/intfloat_readwrite.h +#usr/include/ffmpeg/mathematics.h +#usr/include/ffmpeg/rational.h +#usr/include/ffmpeg/rtp.h +#usr/include/ffmpeg/rtsp.h +#usr/include/ffmpeg/rtspcodes.h +#usr/include/postproc +#usr/include/postproc/postprocess.h +#usr/lib/libavcodec-CVS.so +usr/lib/libavcodec.so +#usr/lib/libavformat-CVS.so +usr/lib/libavformat.so +#usr/lib/libavutil-CVS.so +usr/lib/libavutil.so +#usr/lib/pkgconfig/libavcodec.pc +#usr/lib/pkgconfig/libavformat.pc +#usr/lib/pkgconfig/libavutil.pc +#usr/lib/vhook +#usr/lib/vhook/drawtext.so +#usr/lib/vhook/fish.so +#usr/lib/vhook/null.so +#usr/lib/vhook/ppm.so +#usr/lib/vhook/watermark.so +#usr/share/man/man1/ffmpeg.1 +#usr/share/man/man1/ffserver.1 diff --git a/src/paks/ffmpeg/install.sh b/src/paks/ffmpeg/install.sh new file mode 100644 index 0000000000..3a9ce551bf --- /dev/null +++ b/src/paks/ffmpeg/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Extract the files +tar xfz files.tgz -C / +cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/ffmpeg/uninstall.sh b/src/paks/ffmpeg/uninstall.sh new file mode 100644 index 0000000000..ad6122665e --- /dev/null +++ b/src/paks/ffmpeg/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Delete the files +## Befehl fehlt noch +rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/libmad/ROOTFILES b/src/paks/libmad/ROOTFILES new file mode 100644 index 0000000000..a24486d0b2 --- /dev/null +++ b/src/paks/libmad/ROOTFILES @@ -0,0 +1,6 @@ +#usr/include/mad.h +#usr/lib/libmad.a +#usr/lib/libmad.la +usr/lib/libmad.so +usr/lib/libmad.so.0 +usr/lib/libmad.so.0.2.1 diff --git a/src/paks/libmad/install.sh b/src/paks/libmad/install.sh new file mode 100644 index 0000000000..3a9ce551bf --- /dev/null +++ b/src/paks/libmad/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Extract the files +tar xfz files.tgz -C / +cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/libmad/uninstall.sh b/src/paks/libmad/uninstall.sh new file mode 100644 index 0000000000..ad6122665e --- /dev/null +++ b/src/paks/libmad/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Delete the files +## Befehl fehlt noch +rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/mpeg2dec/ROOTFILES b/src/paks/mpeg2dec/ROOTFILES new file mode 100644 index 0000000000..98ca313707 --- /dev/null +++ b/src/paks/mpeg2dec/ROOTFILES @@ -0,0 +1,20 @@ +#usr/bin/corrupt_mpeg2 +#usr/bin/extract_mpeg2 +usr/bin/mpeg2dec +#usr/include/mpeg2dec +#usr/include/mpeg2dec/mpeg2.h +#usr/include/mpeg2dec/mpeg2convert.h +#usr/lib/libmpeg2.a +#usr/lib/libmpeg2.la +usr/lib/libmpeg2.so +usr/lib/libmpeg2.so.0 +usr/lib/libmpeg2.so.0.0.0 +#usr/lib/libmpeg2convert.a +#usr/lib/libmpeg2convert.la +usr/lib/libmpeg2convert.so +usr/lib/libmpeg2convert.so.0 +usr/lib/libmpeg2convert.so.0.0.0 +#usr/lib/pkgconfig/libmpeg2.pc +#usr/lib/pkgconfig/libmpeg2convert.pc +#usr/share/man/man1/extract_mpeg2.1 +#usr/share/man/man1/mpeg2dec.1 diff --git a/src/paks/mpeg2dec/install.sh b/src/paks/mpeg2dec/install.sh new file mode 100644 index 0000000000..3a9ce551bf --- /dev/null +++ b/src/paks/mpeg2dec/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Extract the files +tar xfz files.tgz -C / +cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/mpeg2dec/uninstall.sh b/src/paks/mpeg2dec/uninstall.sh new file mode 100644 index 0000000000..ad6122665e --- /dev/null +++ b/src/paks/mpeg2dec/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Delete the files +## Befehl fehlt noch +rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/videolan/ROOTFILES b/src/paks/videolan/ROOTFILES new file mode 100644 index 0000000000..d4b8dd378c --- /dev/null +++ b/src/paks/videolan/ROOTFILES @@ -0,0 +1,427 @@ +usr/bin/vlc +usr/bin/vlc-config +#usr/include/vlc +#usr/include/vlc/aout.h +#usr/include/vlc/decoder.h +#usr/include/vlc/input.h +#usr/include/vlc/intf.h +#usr/include/vlc/libvlc.h +#usr/include/vlc/mediacontrol.h +#usr/include/vlc/mediacontrol_structures.h +#usr/include/vlc/sout.h +#usr/include/vlc/vlc.h +#usr/include/vlc/vout.h +usr/lib/libvlc.a +#usr/lib/mozilla +#usr/lib/mozilla/components +usr/lib/vlc +#usr/lib/vlc/access +#usr/lib/vlc/access/libaccess_directory_plugin.so +#usr/lib/vlc/access/libaccess_fake_plugin.so +#usr/lib/vlc/access/libaccess_file_plugin.so +#usr/lib/vlc/access/libaccess_ftp_plugin.so +#usr/lib/vlc/access/libaccess_http_plugin.so +#usr/lib/vlc/access/libaccess_mms_plugin.so +#usr/lib/vlc/access/libaccess_smb_plugin.so +#usr/lib/vlc/access/libaccess_tcp_plugin.so +#usr/lib/vlc/access/libaccess_udp_plugin.so +#usr/lib/vlc/access/libcdda_plugin.so +#usr/lib/vlc/access/libvcd_plugin.so +#usr/lib/vlc/access_filter +#usr/lib/vlc/access_filter/libaccess_filter_record_plugin.so +#usr/lib/vlc/access_filter/libaccess_filter_timeshift_plugin.so +#usr/lib/vlc/access_output +#usr/lib/vlc/access_output/libaccess_output_dummy_plugin.so +#usr/lib/vlc/access_output/libaccess_output_file_plugin.so +#usr/lib/vlc/access_output/libaccess_output_http_plugin.so +#usr/lib/vlc/access_output/libaccess_output_udp_plugin.so +#usr/lib/vlc/audio_filter +#usr/lib/vlc/audio_filter/liba52tospdif_plugin.so +#usr/lib/vlc/audio_filter/libaudio_format_plugin.so +#usr/lib/vlc/audio_filter/libbandlimited_resampler_plugin.so +#usr/lib/vlc/audio_filter/libdolby_surround_decoder_plugin.so +#usr/lib/vlc/audio_filter/libdtstospdif_plugin.so +#usr/lib/vlc/audio_filter/libequalizer_plugin.so +#usr/lib/vlc/audio_filter/libfixed32tofloat32_plugin.so +#usr/lib/vlc/audio_filter/libfixed32tos16_plugin.so +#usr/lib/vlc/audio_filter/libfloat32tos16_plugin.so +#usr/lib/vlc/audio_filter/libfloat32tos8_plugin.so +#usr/lib/vlc/audio_filter/libfloat32tou16_plugin.so +#usr/lib/vlc/audio_filter/libfloat32tou8_plugin.so +#usr/lib/vlc/audio_filter/libheadphone_channel_mixer_plugin.so +#usr/lib/vlc/audio_filter/liblinear_resampler_plugin.so +#usr/lib/vlc/audio_filter/libmpgatofixed32_plugin.so +#usr/lib/vlc/audio_filter/libnormvol_plugin.so +#usr/lib/vlc/audio_filter/libparam_eq_plugin.so +#usr/lib/vlc/audio_filter/libs16tofixed32_plugin.so +#usr/lib/vlc/audio_filter/libs16tofloat32_plugin.so +#usr/lib/vlc/audio_filter/libs16tofloat32swab_plugin.so +#usr/lib/vlc/audio_filter/libs8tofloat32_plugin.so +#usr/lib/vlc/audio_filter/libsimple_channel_mixer_plugin.so +#usr/lib/vlc/audio_filter/libtrivial_channel_mixer_plugin.so +#usr/lib/vlc/audio_filter/libtrivial_resampler_plugin.so +#usr/lib/vlc/audio_filter/libu8tofixed32_plugin.so +#usr/lib/vlc/audio_filter/libu8tofloat32_plugin.so +#usr/lib/vlc/audio_filter/libugly_resampler_plugin.so +#usr/lib/vlc/audio_mixer +#usr/lib/vlc/audio_mixer/libfloat32_mixer_plugin.so +#usr/lib/vlc/audio_mixer/libspdif_mixer_plugin.so +#usr/lib/vlc/audio_mixer/libtrivial_mixer_plugin.so +#usr/lib/vlc/audio_output +#usr/lib/vlc/audio_output/libaout_file_plugin.so +#usr/lib/vlc/audio_output/liboss_plugin.so +#usr/lib/vlc/codec +#usr/lib/vlc/codec/liba52_plugin.so +#usr/lib/vlc/codec/libadpcm_plugin.so +#usr/lib/vlc/codec/libaraw_plugin.so +#usr/lib/vlc/codec/libcinepak_plugin.so +#usr/lib/vlc/codec/libcmml_plugin.so +#usr/lib/vlc/codec/libcvdsub_plugin.so +#usr/lib/vlc/codec/libdts_plugin.so +#usr/lib/vlc/codec/libdvbsub_plugin.so +#usr/lib/vlc/codec/libfake_plugin.so +#usr/lib/vlc/codec/libflacdec_plugin.so +#usr/lib/vlc/codec/liblibmpeg2_plugin.so +#usr/lib/vlc/codec/liblpcm_plugin.so +#usr/lib/vlc/codec/libmpeg_audio_plugin.so +#usr/lib/vlc/codec/libpng_plugin.so +#usr/lib/vlc/codec/librawvideo_plugin.so +#usr/lib/vlc/codec/libspudec_plugin.so +#usr/lib/vlc/codec/libsubsdec_plugin.so +#usr/lib/vlc/codec/libsvcdsub_plugin.so +#usr/lib/vlc/codec/libvorbis_plugin.so +#usr/lib/vlc/control +#usr/lib/vlc/control/libgestures_plugin.so +#usr/lib/vlc/control/libhotkeys_plugin.so +#usr/lib/vlc/control/libhttp_plugin.so +#usr/lib/vlc/control/libnetsync_plugin.so +#usr/lib/vlc/control/librc_plugin.so +#usr/lib/vlc/control/libshowintf_plugin.so +#usr/lib/vlc/control/libtelnet_plugin.so +#usr/lib/vlc/demux +#usr/lib/vlc/demux/liba52sys_plugin.so +#usr/lib/vlc/demux/libaiff_plugin.so +#usr/lib/vlc/demux/libasf_plugin.so +#usr/lib/vlc/demux/libau_plugin.so +#usr/lib/vlc/demux/libavi_plugin.so +#usr/lib/vlc/demux/libdemuxdump_plugin.so +#usr/lib/vlc/demux/libdtssys_plugin.so +#usr/lib/vlc/demux/libflac_plugin.so +#usr/lib/vlc/demux/libh264_plugin.so +#usr/lib/vlc/demux/libm3u_plugin.so +#usr/lib/vlc/demux/libm4a_plugin.so +#usr/lib/vlc/demux/libm4v_plugin.so +#usr/lib/vlc/demux/libmjpeg_plugin.so +#usr/lib/vlc/demux/libmp4_plugin.so +#usr/lib/vlc/demux/libmpga_plugin.so +#usr/lib/vlc/demux/libmpgv_plugin.so +#usr/lib/vlc/demux/libnsc_plugin.so +#usr/lib/vlc/demux/libnsv_plugin.so +#usr/lib/vlc/demux/libnuv_plugin.so +#usr/lib/vlc/demux/libogg_plugin.so +#usr/lib/vlc/demux/libplaylist_plugin.so +#usr/lib/vlc/demux/libps_plugin.so +#usr/lib/vlc/demux/libpva_plugin.so +#usr/lib/vlc/demux/librawdv_plugin.so +#usr/lib/vlc/demux/libreal_plugin.so +#usr/lib/vlc/demux/libsgimb_plugin.so +#usr/lib/vlc/demux/libsubtitle_plugin.so +#usr/lib/vlc/demux/libty_plugin.so +#usr/lib/vlc/demux/libvobsub_plugin.so +#usr/lib/vlc/demux/libvoc_plugin.so +#usr/lib/vlc/demux/libwav_plugin.so +#usr/lib/vlc/demux/libxa_plugin.so +#usr/lib/vlc/gui +#usr/lib/vlc/gui/libncurses_plugin.so +#usr/lib/vlc/libffmpeg.a +#usr/lib/vlc/libi420_rgb_mmx.a +#usr/lib/vlc/libi420_ymga_mmx.a +#usr/lib/vlc/libi420_yuy2_mmx.a +#usr/lib/vlc/libi422_yuy2_mmx.a +#usr/lib/vlc/libmemcpy3dn.a +#usr/lib/vlc/libmemcpymmx.a +#usr/lib/vlc/libmemcpymmxext.a +#usr/lib/vlc/libstream_out_switcher.a +#usr/lib/vlc/misc +#usr/lib/vlc/misc/libdummy_plugin.so +#usr/lib/vlc/misc/libexport_plugin.so +#usr/lib/vlc/misc/libfreetype_plugin.so +#usr/lib/vlc/misc/libgrowl_plugin.so +#usr/lib/vlc/misc/libipv4_plugin.so +#usr/lib/vlc/misc/libipv6_plugin.so +#usr/lib/vlc/misc/liblogger_plugin.so +#usr/lib/vlc/misc/libmemcpy_plugin.so +#usr/lib/vlc/misc/libscreensaver_plugin.so +#usr/lib/vlc/misc/libvod_rtsp_plugin.so +#usr/lib/vlc/misc/libxml_plugin.so +#usr/lib/vlc/misc/libxtag_plugin.so +#usr/lib/vlc/mux +#usr/lib/vlc/mux/libmux_asf_plugin.so +#usr/lib/vlc/mux/libmux_avi_plugin.so +#usr/lib/vlc/mux/libmux_dummy_plugin.so +#usr/lib/vlc/mux/libmux_mp4_plugin.so +#usr/lib/vlc/mux/libmux_mpjpeg_plugin.so +#usr/lib/vlc/mux/libmux_ogg_plugin.so +#usr/lib/vlc/mux/libmux_ps_plugin.so +#usr/lib/vlc/mux/libmux_wav_plugin.so +#usr/lib/vlc/packetizer +#usr/lib/vlc/packetizer/libpacketizer_copy_plugin.so +#usr/lib/vlc/packetizer/libpacketizer_h264_plugin.so +#usr/lib/vlc/packetizer/libpacketizer_mpeg4audio_plugin.so +#usr/lib/vlc/packetizer/libpacketizer_mpeg4video_plugin.so +#usr/lib/vlc/packetizer/libpacketizer_mpegvideo_plugin.so +#usr/lib/vlc/services_discovery +#usr/lib/vlc/services_discovery/libpodcast_plugin.so +#usr/lib/vlc/services_discovery/libsap_plugin.so +#usr/lib/vlc/services_discovery/libshout_plugin.so +#usr/lib/vlc/stream_out +#usr/lib/vlc/stream_out/libstream_out_bridge_plugin.so +#usr/lib/vlc/stream_out/libstream_out_description_plugin.so +#usr/lib/vlc/stream_out/libstream_out_display_plugin.so +#usr/lib/vlc/stream_out/libstream_out_dummy_plugin.so +#usr/lib/vlc/stream_out/libstream_out_duplicate_plugin.so +#usr/lib/vlc/stream_out/libstream_out_es_plugin.so +#usr/lib/vlc/stream_out/libstream_out_gather_plugin.so +#usr/lib/vlc/stream_out/libstream_out_mosaic_bridge_plugin.so +#usr/lib/vlc/stream_out/libstream_out_rtp_plugin.so +#usr/lib/vlc/stream_out/libstream_out_standard_plugin.so +#usr/lib/vlc/stream_out/libstream_out_transcode_plugin.so +#usr/lib/vlc/video_chroma +#usr/lib/vlc/video_chroma/libi420_rgb_plugin.so +#usr/lib/vlc/video_chroma/libi420_ymga_plugin.so +#usr/lib/vlc/video_chroma/libi420_yuy2_plugin.so +#usr/lib/vlc/video_chroma/libi422_yuy2_plugin.so +#usr/lib/vlc/video_filter +#usr/lib/vlc/video_filter/libadjust_plugin.so +#usr/lib/vlc/video_filter/libblend_plugin.so +#usr/lib/vlc/video_filter/libclone_plugin.so +#usr/lib/vlc/video_filter/libcrop_plugin.so +#usr/lib/vlc/video_filter/libdeinterlace_plugin.so +#usr/lib/vlc/video_filter/libdistort_plugin.so +#usr/lib/vlc/video_filter/libinvert_plugin.so +#usr/lib/vlc/video_filter/liblogo_plugin.so +#usr/lib/vlc/video_filter/libmagnify_plugin.so +#usr/lib/vlc/video_filter/libmarq_plugin.so +#usr/lib/vlc/video_filter/libmosaic_plugin.so +#usr/lib/vlc/video_filter/libmotionblur_plugin.so +#usr/lib/vlc/video_filter/libmotiondetect_plugin.so +#usr/lib/vlc/video_filter/libosdmenu_plugin.so +#usr/lib/vlc/video_filter/librss_plugin.so +#usr/lib/vlc/video_filter/librv32_plugin.so +#usr/lib/vlc/video_filter/libscale_plugin.so +#usr/lib/vlc/video_filter/libtime_plugin.so +#usr/lib/vlc/video_filter/libtransform_plugin.so +#usr/lib/vlc/video_filter/libwall_plugin.so +#usr/lib/vlc/video_output +#usr/lib/vlc/video_output/libfb_plugin.so +#usr/lib/vlc/video_output/libimage_plugin.so +#usr/lib/vlc/visualization +#usr/lib/vlc/visualization/libvisual_plugin.so +#usr/share/doc/vlc +#usr/share/doc/vlc/bugreport-howto.txt +#usr/share/doc/vlc/fortunes.txt +#usr/share/doc/vlc/intf-cdda.txt +#usr/share/doc/vlc/intf-vcd.txt +#usr/share/locale/ca/LC_MESSAGES/vlc.mo +#usr/share/locale/da/LC_MESSAGES/vlc.mo +#usr/share/locale/de/LC_MESSAGES/vlc.mo +#usr/share/locale/en_GB/LC_MESSAGES/vlc.mo +#usr/share/locale/es/LC_MESSAGES/vlc.mo +#usr/share/locale/fr/LC_MESSAGES/vlc.mo +#usr/share/locale/gl/LC_MESSAGES/vlc.mo +#usr/share/locale/he/LC_MESSAGES/vlc.mo +#usr/share/locale/hi/LC_MESSAGES/vlc.mo +#usr/share/locale/hu/LC_MESSAGES/vlc.mo +#usr/share/locale/it/LC_MESSAGES/vlc.mo +#usr/share/locale/ja/LC_MESSAGES/vlc.mo +#usr/share/locale/ka +#usr/share/locale/ka/LC_MESSAGES +#usr/share/locale/ka/LC_MESSAGES/vlc.mo +#usr/share/locale/ko/LC_MESSAGES/vlc.mo +#usr/share/locale/nl/LC_MESSAGES/vlc.mo +#usr/share/locale/oc +#usr/share/locale/oc/LC_MESSAGES +#usr/share/locale/oc/LC_MESSAGES/vlc.mo +#usr/share/locale/pt_BR/LC_MESSAGES/vlc.mo +#usr/share/locale/ro/LC_MESSAGES/vlc.mo +#usr/share/locale/ru/LC_MESSAGES/vlc.mo +#usr/share/locale/sv/LC_MESSAGES/vlc.mo +#usr/share/locale/tr/LC_MESSAGES/vlc.mo +#usr/share/locale/zh_CN/LC_MESSAGES/vlc.mo +#usr/share/locale/zh_TW/LC_MESSAGES/vlc.mo +usr/share/vlc +#usr/share/vlc/http +#usr/share/vlc/http/.hosts +#usr/share/vlc/http/dialogs +#usr/share/vlc/http/dialogs/.hosts +#usr/share/vlc/http/dialogs/browse +#usr/share/vlc/http/dialogs/footer +#usr/share/vlc/http/dialogs/input +#usr/share/vlc/http/dialogs/main +#usr/share/vlc/http/dialogs/mosaic +#usr/share/vlc/http/dialogs/playlist +#usr/share/vlc/http/dialogs/sout +#usr/share/vlc/http/dialogs/vlm +#usr/share/vlc/http/favicon.ico +#usr/share/vlc/http/iehacks.css +#usr/share/vlc/http/images +#usr/share/vlc/http/images/delete.png +#usr/share/vlc/http/images/delete_small.png +#usr/share/vlc/http/images/eject.png +#usr/share/vlc/http/images/empty.png +#usr/share/vlc/http/images/fullscreen.png +#usr/share/vlc/http/images/help.png +#usr/share/vlc/http/images/info.png +#usr/share/vlc/http/images/loop.png +#usr/share/vlc/http/images/minus.png +#usr/share/vlc/http/images/next.png +#usr/share/vlc/http/images/pause.png +#usr/share/vlc/http/images/play.png +#usr/share/vlc/http/images/playlist.png +#usr/share/vlc/http/images/playlist_small.png +#usr/share/vlc/http/images/plus.png +#usr/share/vlc/http/images/prev.png +#usr/share/vlc/http/images/refresh.png +#usr/share/vlc/http/images/repeat.png +#usr/share/vlc/http/images/sd.png +#usr/share/vlc/http/images/shuffle.png +#usr/share/vlc/http/images/slider_bar.png +#usr/share/vlc/http/images/slider_left.png +#usr/share/vlc/http/images/slider_point.png +#usr/share/vlc/http/images/slider_right.png +#usr/share/vlc/http/images/slow.png +#usr/share/vlc/http/images/sort.png +#usr/share/vlc/http/images/sout.png +#usr/share/vlc/http/images/speaker.png +#usr/share/vlc/http/images/speaker_mute.png +#usr/share/vlc/http/images/stop.png +#usr/share/vlc/http/images/vlc16x16.png +#usr/share/vlc/http/images/volume_down.png +#usr/share/vlc/http/images/volume_up.png +#usr/share/vlc/http/images/white.png +#usr/share/vlc/http/images/white_cross_small.png +#usr/share/vlc/http/index.html +#usr/share/vlc/http/js +#usr/share/vlc/http/js/functions.js +#usr/share/vlc/http/js/mosaic.js +#usr/share/vlc/http/js/vlm.js +#usr/share/vlc/http/mosaic.html +#usr/share/vlc/http/old +#usr/share/vlc/http/old/.hosts +#usr/share/vlc/http/old/admin +#usr/share/vlc/http/old/admin/.access +#usr/share/vlc/http/old/admin/browse.html +#usr/share/vlc/http/old/admin/dboxfiles.html +#usr/share/vlc/http/old/admin/index.html +#usr/share/vlc/http/old/cone_minus.png +#usr/share/vlc/http/old/cone_plus.png +#usr/share/vlc/http/old/index.html +#usr/share/vlc/http/old/info.html +#usr/share/vlc/http/old/style.css +#usr/share/vlc/http/old/vlm +#usr/share/vlc/http/old/vlm/edit.html +#usr/share/vlc/http/old/vlm/index.html +#usr/share/vlc/http/old/vlm/new.html +#usr/share/vlc/http/old/vlm/show.html +#usr/share/vlc/http/old/webcam.html +#usr/share/vlc/http/requests +#usr/share/vlc/http/requests/browse.xml +#usr/share/vlc/http/requests/playlist.xml +#usr/share/vlc/http/requests/readme +#usr/share/vlc/http/requests/status.xml +#usr/share/vlc/http/requests/vlm.xml +#usr/share/vlc/http/requests/vlm_cmd.xml +#usr/share/vlc/http/style.css +#usr/share/vlc/http/vlm.html +#usr/share/vlc/http/vlm_export.html +#usr/share/vlc/osdmenu +#usr/share/vlc/osdmenu/default +#usr/share/vlc/osdmenu/default.cfg +#usr/share/vlc/osdmenu/default/selected +#usr/share/vlc/osdmenu/default/selected/bw.png +#usr/share/vlc/osdmenu/default/selected/esc.png +#usr/share/vlc/osdmenu/default/selected/fw.png +#usr/share/vlc/osdmenu/default/selected/next.png +#usr/share/vlc/osdmenu/default/selected/play_pause.png +#usr/share/vlc/osdmenu/default/selected/previous.png +#usr/share/vlc/osdmenu/default/selected/stop.png +#usr/share/vlc/osdmenu/default/selected/volume.png +#usr/share/vlc/osdmenu/default/selection +#usr/share/vlc/osdmenu/default/selection/bw.png +#usr/share/vlc/osdmenu/default/selection/esc.png +#usr/share/vlc/osdmenu/default/selection/fw.png +#usr/share/vlc/osdmenu/default/selection/next.png +#usr/share/vlc/osdmenu/default/selection/play_pause.png +#usr/share/vlc/osdmenu/default/selection/previous.png +#usr/share/vlc/osdmenu/default/selection/stop.png +#usr/share/vlc/osdmenu/default/selection/volume.png +#usr/share/vlc/osdmenu/default/unselected.png +#usr/share/vlc/osdmenu/default/volume +#usr/share/vlc/osdmenu/default/volume/volume_00.png +#usr/share/vlc/osdmenu/default/volume/volume_01.png +#usr/share/vlc/osdmenu/default/volume/volume_02.png +#usr/share/vlc/osdmenu/default/volume/volume_03.png +#usr/share/vlc/osdmenu/default/volume/volume_04.png +#usr/share/vlc/osdmenu/default/volume/volume_05.png +#usr/share/vlc/osdmenu/default/volume/volume_06.png +#usr/share/vlc/osdmenu/default/volume/volume_07.png +#usr/share/vlc/osdmenu/default/volume/volume_08.png +#usr/share/vlc/osdmenu/default/volume/volume_09.png +#usr/share/vlc/osdmenu/default/volume/volume_10.png +#usr/share/vlc/osdmenu/dvd +#usr/share/vlc/osdmenu/dvd.cfg +#usr/share/vlc/osdmenu/dvd/selected +#usr/share/vlc/osdmenu/dvd/selected/bw.png +#usr/share/vlc/osdmenu/dvd/selected/esc.png +#usr/share/vlc/osdmenu/dvd/selected/fw.png +#usr/share/vlc/osdmenu/dvd/selected/mute.png +#usr/share/vlc/osdmenu/dvd/selected/next.png +#usr/share/vlc/osdmenu/dvd/selected/pause.png +#usr/share/vlc/osdmenu/dvd/selected/play.png +#usr/share/vlc/osdmenu/dvd/selected/previous.png +#usr/share/vlc/osdmenu/dvd/selected/slow.png +#usr/share/vlc/osdmenu/dvd/selected/stop.png +#usr/share/vlc/osdmenu/dvd/selected/volume.png +#usr/share/vlc/osdmenu/dvd/selection +#usr/share/vlc/osdmenu/dvd/selection/bw.png +#usr/share/vlc/osdmenu/dvd/selection/esc.png +#usr/share/vlc/osdmenu/dvd/selection/fw.png +#usr/share/vlc/osdmenu/dvd/selection/mute.png +#usr/share/vlc/osdmenu/dvd/selection/next.png +#usr/share/vlc/osdmenu/dvd/selection/pause.png +#usr/share/vlc/osdmenu/dvd/selection/play.png +#usr/share/vlc/osdmenu/dvd/selection/previous.png +#usr/share/vlc/osdmenu/dvd/selection/slow.png +#usr/share/vlc/osdmenu/dvd/selection/stop.png +#usr/share/vlc/osdmenu/dvd/unselect +#usr/share/vlc/osdmenu/dvd/unselect/barroff.png +#usr/share/vlc/osdmenu/dvd/volume +#usr/share/vlc/osdmenu/dvd/volume/volume00.png +#usr/share/vlc/osdmenu/dvd/volume/volume01.png +#usr/share/vlc/osdmenu/dvd/volume/volume02.png +#usr/share/vlc/osdmenu/dvd/volume/volume03.png +#usr/share/vlc/osdmenu/dvd/volume/volume04.png +#usr/share/vlc/osdmenu/dvd/volume/volume05.png +#usr/share/vlc/pda-forwardb16x16.xpm +#usr/share/vlc/pda-openb16x16.xpm +#usr/share/vlc/pda-pauseb16x16.xpm +#usr/share/vlc/pda-playb16x16.xpm +#usr/share/vlc/pda-playlistb16x16.xpm +#usr/share/vlc/pda-preferencesb16x16.xpm +#usr/share/vlc/pda-rewindb16x16.xpm +#usr/share/vlc/pda-stopb16x16.xpm +#usr/share/vlc/skins2 +#usr/share/vlc/skins2/default.vlt +#usr/share/vlc/skins2/fonts +#usr/share/vlc/skins2/fonts/FreeSans.ttf +#usr/share/vlc/skins2/fonts/FreeSansBold.ttf +#usr/share/vlc/skins2/skin.catalog +#usr/share/vlc/skins2/skin.dtd +#usr/share/vlc/skins2/winamp2.xml +#usr/share/vlc/vlc128x128.png +#usr/share/vlc/vlc16x16.png +#usr/share/vlc/vlc16x16.xpm +#usr/share/vlc/vlc32x32.png +#usr/share/vlc/vlc32x32.xpm +#usr/share/vlc/vlc48x48.ico +#usr/share/vlc/vlc48x48.png diff --git a/src/paks/videolan/install.sh b/src/paks/videolan/install.sh new file mode 100644 index 0000000000..3a9ce551bf --- /dev/null +++ b/src/paks/videolan/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Extract the files +tar xfz files.tgz -C / +cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/videolan/uninstall.sh b/src/paks/videolan/uninstall.sh new file mode 100644 index 0000000000..ad6122665e --- /dev/null +++ b/src/paks/videolan/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Delete the files +## Befehl fehlt noch +rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/xvid/ROOTFILES b/src/paks/xvid/ROOTFILES new file mode 100644 index 0000000000..ffa7bc59d0 --- /dev/null +++ b/src/paks/xvid/ROOTFILES @@ -0,0 +1,5 @@ +#usr/include/xvid.h +#usr/lib/libxvidcore.a +usr/lib/libxvidcore.so +usr/lib/libxvidcore.so.4 +usr/lib/libxvidcore.so.4.1 diff --git a/src/paks/xvid/install.sh b/src/paks/xvid/install.sh new file mode 100644 index 0000000000..3a9ce551bf --- /dev/null +++ b/src/paks/xvid/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Extract the files +tar xfz files.tgz -C / +cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2 diff --git a/src/paks/xvid/uninstall.sh b/src/paks/xvid/uninstall.sh new file mode 100644 index 0000000000..ad6122665e --- /dev/null +++ b/src/paks/xvid/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +################################################################# +# # +# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org # +# # +################################################################# +# +# Delete the files +## Befehl fehlt noch +rm -f /opt/pakfire/installed/ROOTFILES.$2 diff --git a/tools/perfTest.sh b/tools/perfTest.sh index ba7b27537f..063a2cbefe 100644 --- a/tools/perfTest.sh +++ b/tools/perfTest.sh @@ -34,7 +34,7 @@ # something around 5 seconds for the entire test. # ## Basic settings -CGI_HOST=192.168.0.100 +CGI_HOST=$1 CGI_PORT=444 CGI_URL="https://$CGI_HOST:$CGI_PORT/cgi-bin" USER=admin -- 2.39.2