From: Heiko Z. <smi...@us...> - 2011-01-07 15:40:01
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv23623/scripts Modified Files: sagator Added Files: mod_proxy_html Log Message: added mod_proxy_html 3.1.1 Index: sagator =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/sagator,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- sagator 2 Dec 2010 18:25:58 -0000 1.23 +++ sagator 7 Jan 2011 15:39:51 -0000 1.24 @@ -19,8 +19,8 @@ case $1 in build ) if [ "$CONFIG_SAGATOR" = "y" ]; then - patch_from_file 0 $DL_DIR/src/sagator_clamav-0.96.2.patch.bz2 - patch_from_file 1 $DL_DIR/src/sagator-milter_umask.patch.bz2 + #patch_from_file 0 $DL_DIR/src/sagator_clamav-0.96.2.patch.bz2 + #patch_from_file 1 $DL_DIR/src/sagator-milter_umask.patch.bz2 #replace_str Makefile python2.2 python2.3 export PYTHONHOME=$WORKDIR/Python-install/usr --- NEW FILE: mod_proxy_html --- #!/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_HTTPD" = "y" ]; then if [ "$CONFIG_MOD_PROXY_HTML" = "y" ]; then apxs -a -c -I/usr/include/libxml2 -I./ -i mod_xml2enc.c || exit 1 apxs -a -c -I/usr/include/libxml2 -I./ -i mod_proxy_html.c || exit 1 strip_debug fi fi ;; install ) if [ "$CONFIG_HTTPD" = "y" ]; then if [ "$CONFIG_MOD_PROXY_HTML" = "y" ]; then cp -dfpv .libs/mod_*.so $CDDIR/usr/lib/apache2/modules/ || exit 1 cp -dfpv proxy_html.conf $ETCDIR/etc/apache2/extra || exit 1 fi fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |