From: Heiko Z. <smi...@us...> - 2015-01-13 19:25:12
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv16290/scripts Modified Files: intltool motion Added Files: ffmpeg flac libexif libid3tag libogg libvorbis minidlna Log Message: - updated nut to 2.7.2 - updated grsecurity to 3.0-3.2.66-201501111416.patch.bz2 - updated Linux kernel to 3.2.66 - added ffmpeg 2.5.2 (Szombathelyi Gyrgy) - added flac 1.3.1 (Szombathelyi Gyrgy) - updated libHX to 3.22 - added libexif 0.6.21 (Szombathelyi Gyrgy) - added libid3tag 0.15.1b (Szombathelyi Gyrgy) - added libogg 1.3.2 (Szombathelyi Gyrgy) - added libvorbis 1.3.4 (Szombathelyi Gyrgy) - added minidlna 1.1.4 (Szombathelyi Gyrgy) - updated clamav to 0.98.5 - updated netatalk to 3.1.7 - updated pam_mount to 2.15 --- NEW FILE: libexif --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_LIBEXIF" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 fi ;; install ) if [ "$CONFIG_LIBEXIF" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr/lib $CDDIR/usr || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: intltool =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/intltool,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- intltool 10 Dec 2011 19:34:30 -0000 1.4 +++ intltool 13 Jan 2015 19:25:09 -0000 1.5 @@ -16,13 +16,11 @@ case $1 in build ) - if [ "$CONFIG_AVAHI" = "y" ]; then ./configure --prefix=/usr --localstatedir=/var || exit 1 make $PMAKE all || exit 1 # install it in local system, because other programs could need it make install - fi ;; * ) --- NEW FILE: ffmpeg --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_FFMPEG" = "y" ]; then ./configure --disable-static --enable-shared --enable-pic --enable-version3 --enable-libvorbis --disable-debug --enable-runtime-cpudetect --disable-yasm --prefix=/usr || exit 1 make $PMAKE || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 fi ;; install ) if [ "$CONFIG_FFMPEG" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr/lib $CDDIR/usr || exit 1 copy_files $TMPDIR/usr/bin $CDDIR/usr || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: libid3tag --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_LIBID3TAG" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 fi ;; install ) if [ "$CONFIG_LIBID3TAG" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr/lib $CDDIR/usr || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: motion =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/motion,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- motion 5 Dec 2011 09:11:38 -0000 1.9 +++ motion 13 Jan 2015 19:25:10 -0000 1.10 @@ -20,7 +20,7 @@ case $1 in build ) if [ "$CONFIG_MOTION" = "y" ]; then - OPT_FLAGS="" + OPT_FLAGS="--without-ffmpeg" if [ ! "$CONFIG_MYSQL_CLIENT" = "y" ]; then OPT_FLAGS="$OPT_FLAGS --without-mysql" fi --- NEW FILE: minidlna --- #!/bin/bash # # http://www.devil-linux.org # # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings MYNAME=MINIDLNA case $1 in build ) if [ "$CONFIG_MINIDLNA" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 fi ;; install ) if [ "$CONFIG_MINIDLNA" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr $CDDIR || exit 1 cp -dp $MYDIR/scripts/minidlna $ETCDIR/etc/init.d/minidlna || exit 1 echo "# Start $MYNAME?" >> $CONFIGFILE echo "START_$MYNAME=no" >> $CONFIGFILE echo "# Additional minidlna daemon parameters" >> $CONFIGFILE echo "MINIDLNA_PARAMS=\"\"" >> $CONFIGFILE echo >> $CONFIGFILE echo "HELP_$MYNAME=\"Minidlna is a DLNA media server\"" >> $SOFTWAREHELP rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: libogg --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_LIBOGGVORBIS" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 fi ;; install ) if [ "$CONFIG_LIBOGGVORBIS" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr/lib $CDDIR/usr || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: flac --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_FLAC" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 fi ;; install ) if [ "$CONFIG_FLAC" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr/lib $CDDIR/usr || exit 1 copy_files $TMPDIR/usr/bin $CDDIR/usr || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: libvorbis --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_LIBOGGVORBIS" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 fi ;; install ) if [ "$CONFIG_LIBOGGVORBIS" = "y" ]; then rm -rf $TMPDIR mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR copy_files $TMPDIR/usr/lib $CDDIR/usr || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |