diff options
Diffstat (limited to 'mod_python/mod_python.build')
| -rwxr-xr-x | mod_python/mod_python.build | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/mod_python/mod_python.build b/mod_python/mod_python.build index d2d5f09f..cd23abf2 100755 --- a/mod_python/mod_python.build +++ b/mod_python/mod_python.build @@ -21,10 +21,16 @@ fi PACKAGE="mod_python" VERSION=${VERSION:=2.7.11} ARCH="${ARCH:=x86_64}" -BUILD=${BUILD:=1rha} +BUILD=${BUILD:=2rha} SRC_DIR=${SRC:=$CWD} TMP=${TMP:=/tmp} +# ------- error codes for createpkg -------------- +ERROR_WGET=31; ERROR_MAKE=32; ERROR_INSTALL=33 +ERROR_MD5=34; ERROR_CONF=35; ERROR_HELP=36 +ERROR_TAR=37; ERROR_MKPKG=38; ERROR_GPG=39 +ERROR_PATCH=40 + if [ "$ARCH" == "x86_64" ]; then export CFLAGS="-fPIC" export LDFLAGS="-L/lib64 -L/usr/lib64 -fPIC" @@ -51,7 +57,7 @@ else fi if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then - wget "$URL" -O "$SRC_DIR/$SRC" + wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET fi TMP="$TMP/$PACKAGE" @@ -65,6 +71,14 @@ cd $TMP tar xvf$tarflag $SRC_DIR/$SRC cd $PACKAGE-$VERSION +if [ -f "$CWD/$PACKAGE-$VERSION.diff" ]; then + patch -p1 < $CWD/$PACKAGE-$VERSION.diff || exit $ERROR_PATCH +fi + +if [ -f "$CWD/$PACKAGE-$VERSION-$ARCH.diff" ]; then + patch -p1 < $CWD/$PACKAGE-$VERSION-$ARCH.diff || exit $ERROR_PATCH +fi + ./configure # coxa, favor corrigir! @@ -73,8 +87,8 @@ if [ "$ARCH" == "x86_64" ]; then mv src/Makefile.new src/Makefile fi -make || exit 32 -make install +make || exit $ERROR_MAKE +make install || exit $ERROR_INSTALL CWD="`pwd`" |
