posaune
[projects.git] / tools / make / mconfigure
index c164f10..b102ad7 100755 (executable)
@@ -2,64 +2,16 @@
 set -e
 
 function echo_usage {
-       echo "usage: mconfigure <package> [options]"
-       echo "  -a <arch>"
-       echo "  -c : configure"
+       echo "usage: mconfigure [options] <package>"
+       echo "  -c : copy configure/Makefile"
        echo "  -d : compile"
        echo "  -p : pack default: do all"
+       ./configure -I
 }
 
-function set_build {
-       if [ -e .svn ]
-       then
-               version="0.0"
-               build=$(svnversion)
-               build=${build/:/-}
-       elif [ -e .git ]
-       then
-               tag=$(git describe --tags 2>/dev/null) || true
-               if test -z "$tag"
-               then
-                       tag="0.0-TOP"
-               fi
-               changes=$(git status -s |grep "^ *M") || true
-               if test -n "$changes"
-               then
-                       tag="${tag}M"
-               fi
-               version=${tag%%-*}
-               version=${version##*_}
-               build=${tag#*-}
-       else
-               echo "No configuration system found. Cannot determine version."
-               exit 1
-       fi
-}
-
-function check_version {
-       vline=$(head -1 debian/$paket.changelog)
-       vline=${vline%-*}
-       clversion=${vline#*(}
-       if [ $version = "0.0" ]
-       then
-               version=$clversion
-               return
-       fi
-       if [ "$clversion" != $version ]
-       then
-               echo "version mismatch: git: $version, changelog: $clversion"
-               exit 1
-       fi
-}
-# to build a package you need ...
-# <package>.cp (optional): copy step for package production
-# <package>.cpp.sh (optional): commands to setup the C++ compile environment
-
-if [ $# -lt 1 ]
-then
-       echo_usage
-       exit 1
-fi
+##############################################################################
+# Main program
+##############################################################################
 
 if [ ! -d debian ]
 then
@@ -67,155 +19,98 @@ then
        exit 2
 fi
 
-paket=$1
-
 configure=0
 compile=0
 pack=0
-shift
-while getopts ":acdp" opt; do
-       case $opt in
-               a) ARCH=$OPTARG
-                       ;;
-               c) configure=1
-                       ;;
-               d)      compile=1
-                       ;;
-               p)      pack=1
-                       ;;
-               \?) echo "Invalid option: -$OPTARG"
-                       echo_usage
-                       exit 1
-                       ;;
-               :) echo "Option -$OPTARG requires an argument."
-                       echo_usage
-                       exit 1
-                       ;;
-       esac
+confirure_args="-b ../build"
+while [ $OPTIND -le "$#" ]
+do
+       if getopts "cdp" opt
+       then
+               case $opt in
+                       c) configure=1
+                               ;;
+                       d)      compile=1
+                               ;;
+                       p)      pack=1
+                               ;;
+                       \?) $confirure_args="$configure_ars -$OPTARG"
+                               if [ $OPTARG="a" -o $OPTARG="C" -o $OPTARG="i" -o $OPTARG="v" ]
+                               then
+                                       eval OPTIND=OPTIND+1
+                                       $confirure_args="$configure_ars ${!OPTIND}"
+                               fi
+                               ;;
+                       :) echo "Option -$OPTARG requires an argument."
+                               echo_usage
+                               exit 1
+                               ;;
+               esac
+       else
+               paket="${!OPTIND}"
+               eval OPTIND=OPTIND+1
+       fi
 done
 
-# if nothing is selected, select all
-if [ $configure -eq 0 -a $compile -eq 0 -a $pack -eq 0 ]
+if [ -z "$paket" ]
 then
-       configure=1
-       compile=1
-       pack=1
+       echo_usage
+       exit 1
 fi
 
 if [ $configure -eq 1 ]
 then
-       echo "paket=$paket" > debian/rules.pre
-#      shift
-       ARCH=""
-       cpp_build=0
-
-       set_build
-       check_version
-       echo "version=$version" >> debian/rules.pre
-       echo "build=$build" >> debian/rules.pre
-
-       # get repository name
-#      tmp=$(pwd)
-#      pwd=${tmp##*/}
-#      pwd=${pwd,,*}
-#      echo "pwd=$pwd" >> debian/rules.pre
-
-       echo "building $paket with build $version-$build"
-
-       pushd debian >/dev/null
-       # ./debian -------------------------------------
-
-       ln -sf /usr/share/mbuild/rules .
-
-       if [ -e tmp ]
-       then
-               rm -rf tmp
-       fi
-
-       # check for pre/post installation scripts
-       if [ -f $paket.preinst ]
+       # installation of configure file
+       cp /usr/share/mbuild/configure .
+else
+       if [ ! -e configure ]
        then
-               echo "add_inst_tgt += debian/tmp/DEBIAN/preinst" >> rules.pre
-       fi
-        if [ -f $paket.postinst ]
-        then
-                echo "add_inst_tgt += debian/tmp/DEBIAN/postinst" >> rules.pre
-        fi
-        if [ -f $paket.prerm ]
-        then
-                echo "add_inst_tgt += debian/tmp/DEBIAN/prerm" >> rules.pre
-        fi
-        if [ -f $paket.postrm ]
-        then
-                echo "add_inst_tgt += debian/tmp/DEBIAN/postrm" >> rules.pre
-        fi
-
-       mkdir -p tmp/DEBIAN
-
-       # load util functions for C/C++ - build
-       if [ -f $paket.cpp.sh ]
-       then
-               cpp_build=1
-               . projects/tools/make/c_configure.sh
-               . $paket.cpp.sh
+               ln -s /usr/share/mbuild/configure .
        fi
+fi
 
-       popd >/dev/null
-       # ./. ---------------------------------------------
+configure_args="$configure_args $paket"
+if [ -x debian/$paket.preconfigure ]
+then
+       # if necessary $configure_args can be added to setenv.sh
+       debian/$paket.preconfigure
+fi
 
-       # copy package control
-       if [ -f debian/$paket.control ]
+#-> configure
+# .build or .cmake
+if [ -x debian/$paket.build -o -e debian/$paket.cmake ]
+then
+       echo "BUILD_DIR=../build" >> debian/setenv.sh
+       if [ -e ../build ]
        then
-               cp debian/$paket.control debian/control
-       else
-               # try old fashoned way
-               control=$(find etc -name $paket.control) || true
-               if [ -z "$control" ]
-               then
-                       echo "warning: control file not found"
-                       echo "  this file is necessary for any package production."
-               else    
-                       echo "Source: $pwd
-       Section: main
-       Priority: optional
-       Maintainer: WagnerTech UG <mail@wagnertech.de>
-       " > debian/control
-                       grep -v "Version:" $control |grep -v "Maintainer:" >> debian/control 
-               fi
+               rm -rf ../build
+               mkdir ../build
        fi
-       
-       # build prepare
-       if [ -e debian/$paket.build ]
-       then
-               if [ -e ../build ]
-               then
-                       rm -rf ../build
-                       mkdir ../build
-               fi
-               debian/$paket.build -prepare
-       fi
-       
-       # pack prepare
-       if [ -f debian/$paket.cp -a -f $paket.control ]
-       then
-               echo "PACK=binary" >> debian/rules.pre
-       elif [ -f debian/$paket.cp ]
-       then
-               echo "PACK=zip" >> debian/rules.pre
-       else
-               echo "PACK=version" >> debian/rules.pre
+       if grep -- "-prepare" debian/$paket.build >/dev/null
+       then                    
+               echo "prepare in <paket>.build no longer supported. Use <paket>.prebuild"
+               exit 2
        fi
+       # sync build dir
+       . debian/setenv.sh
+       debian/rules sync
 fi
 
-if [ $compile -eq 1 -a ! -e debian/build.sh ]
+# perform configure
+. debian/setenv.sh
+./configure $configure_args
+
+# if nothing is selected, select all
+if [ $compile -eq 0 -a $pack -eq 0 ]
 then
-       echo "no debian/build.sh: skipping build step"
-       compile=0
+       compile=1
+       pack=1
 fi
+
 if [ $compile -eq 1 ]
 then
-       # build artefacts
-       debian/rules build
+       # build
+       make
 fi
 
 if [ $pack -eq 1 ]