]> git.donarmstrong.com Git - lilypond.git/blobdiff - cygwin/mknetrel
Update Finnish translation.
[lilypond.git] / cygwin / mknetrel
index 4fb5bf81e45dfa3261f75cc9debb4d8f7a5114aa..390a1db84af68fdb592ae6d21b7a31894cd353e6 100644 (file)
 # -*- shell-script -*-
 
-# ancient LilyPond releases: lilypond-1.6
-# archive=ftp://lilypond.org/pub/LilyPond/v1.6
-
-# stable LilyPond releases: lilypond-1.8
-# archive=ftp://lilypond.org/pub/LilyPond/v1.8
-
-# development LilyPond releases: lilypond-1.9
-# archive=ftp://lilypond.org/pub/LilyPond/v1.9
-
-# LilyPond mknetrel overrides
-# To use this, do something like:
-cat >/dev/null <<EOC
-
-   wget -P/var/tmp ftp://lilypond.org/pub/LilyPond/v1.8/lilypond-1.8.0.tar.gz
-   rm -rf /home/netrel/src/lilypond-*
-   mkdir -p /home/netrel/src && cd /home/netrel/src
-   ## TODO: look at pimport
-   tar xzf /var/tmp/lilypond-*
-   mv lilypond-* $(echo lilypond-*)-1
-   cd -
-   ./bin/mknetrel -xXC lilypond
-
-EOC
+sub_packages="doc"
 
-# sover=14
+[ "$cygwin" == "mingw" ] && sub_packages="doc extra"
 
-patch=$mknetrel_root/patch
-if iscygwin; then
-    true
-else 
-    uploads=$here/uploads/$base && mkdir -p $uploads/
-    [ "$ABI" = "1.5" ] && uploads=$here/uploads-development/$base && mkdir -p $uploads/
-    tarstem=$uploads/$package
-fi
+depends="libfontconfig1 libfreetype6 libguile16 libintl3 libpango1"
+build_depends="mingw-devel gettext-devel guile-devel pango-devel"
 
-sub_packages="doc"
-old_path=$PATH
+v=$(expr "$ver" : "\(.*\)-[0-9]*")
 
+save_PATH="$PATH"
 
 # copy and include extra mknetrel stuff
-extras="doc patch auto cross split"
-for i in $extras; do
-    f=mknetrel.$i
-    [ -r $extra/$f ] && cp -pv $extra/$f $src/cygwin/$f
-    . $src/cygwin/$f
-done
-
+. $src/$cygwin/mknetrel.extras || . $mknetrel/extras
 
-needdevoflags () {
-    return 1
+doc () {
+    # doc works, but take too long to build each time
+    [ "$cygwin" == "mingw" ] && return 1
+    return 0
 }
 
+preconfig () {
+    extras_preconfig
 
-preconfig () { # aka libtool_woes ()
-
-    # Add to mknetrel?
-    patchsrc 
-
-    ## autoupdate
-
+    [ "$cygwin" == "mingw" ] && if grep 'PYTHON_DEVEL(REQUIRED)' $src/configure.in; then
+       sed -i~ -e 's/PYTHON_DEVEL(REQUIRED)/PYTHON_DEVEL(OPTIONAL)/' \
+           $src/configure.in
+    fi
+    [ "$cygwin" == "mingw" ] && cd $src && ./autogen.sh --noconfigure
+    
     cd $build || exit 1
+    # cross-compiling: configure for build-host
+    if ! iscygwin; then
+       rm -f config.cache
+       export HOST_CC=${HOST_CC:-gcc}
+       export HOST_CXX=${HOST_CXX:-g++}
+       export HOST_PKG_CONFIG=${HOST_PKG_CONFIG:-pkg-config}
+       export HOST_PKG_CONFIG_PATH=${HOST_PKG_CONFIG_PATH:-}
+       export HOST_FREETYPE_CONFIG=${HOST_FREETYPE_CONFIG:-freetype-config}
+       (PATH="$build:$save_PATH" \
+           CFLAGS="-O2 -g" \
+           CPPFLAGS="" \
+           CC=$HOST_CC \
+           CXX=$HOST_CXX \
+           LDFLAGS="" \
+           PKG_CONFIG=$HOST_PKG_CONFIG \
+           PKG_CONFIG_PATH=$HOST_PKG_CONFIG_PATH \
+           FREETYPE_CONFIG=$HOST_FREETYPE_CONFIG \
+           $src/configure --prefix=$prefix --enable-config=for-build)
+    fi
 
-    GUILE=1.6.4
-    cat > guile-config <<EOF
-[ "\$1" == "--version" ] && echo "guile-config - Guile version $GUILE"
+    GUILE=$(GUILE_LOAD_PATH=$cygwin_prefix/share/guile/* $cygwin_prefix/bin/guile-config --version 2>&1 | awk '{print $NF}')
+    cat > $target-guile-config <<EOF
+[ "\$1" == "--version" ] && echo "$target-guile-config - Guile version $GUILE"
 [ "\$1" == "compile" ] && echo "-I$cygwin_prefix/include"
-[ "\$1" == "link" ] && echo "-L$cygwin_prefix/lib -lguile"
+[ "\$1" == "link" ] && echo "-L$cygwin_prefix/lib -lguile -lgmp"
 exit 0
 EOF
-    chmod 755 guile-config
-    PATH=$(pwd):$PATH
+    chmod 755 $target-guile-config
+    export PATH=.:$PATH
+    build_cxx="$build_cxx -I$(pwd)"
+    if [ "$cygwin" == "mingw" ]; then
+       CONFIGOPTS="--without-kpathsea $CONFIGOPTS"
+       #CPPFLAGS="-DARGV0_RELOCATION=1 $CPPFLAGS"
+       CONFIGOPTS="--enable-relocation $CONFIGOPTS"
+       # There's a problem with inlining the string utils.
+       # The -O2 flag is still passed by default through opt.
+       CONFIGOPTS="--disable-optimising $CONFIGOPTS"
+        ## debugging
+       ##opt='-g'
+    fi
+    
+    if [ "$cygwin" == "mingw" ]; then
+       cp /usr/include/FlexLexer.h .
+       mkdir python2.3
+       cp /usr/include/python2.3/Python.h python2.3
+
+       CXX="$(echo $build_cxx | sed 's/ -mwindows//')" \
+           CXX_FOR_TARGET="${build_cxx}" \
+           CC="${build_cc}" \
+           CC_FOR_TARGET="${build_cc}" \
+           GCC_FOR_TARGET="${build_cc}" \
+           RANLIB="${build_ranlib}" \
+           RANLIB_FOR_TARGET="${build_ranlib}" \
+           DLLWRAP="${build_dllwrap}" \
+           AR="${build_ar}" NM="${build_nm}" \
+           LD=$(${build_cc} -print-prog-name=ld) \
+           $src/configure --enable-config=console $CONFIGOPTS
+
+       rm -f config.cache
+        iscygwin || crosscache
+    fi
 
+    :
+}
 
-    if [ "$ABI" != "1.5" ];then
-       export LDFLAGS="$cygwin_prefix/bin/cygkpathsea-3abi13.dll"
+prebuild () {
+    extras_prebuild
+
+    # shortcircuit python for mingw
+    if [ "$cygwin" == "mingw" ]; then
+       #sed -e s/-mwindows// < config.make > config-console.make
+       #cp config.hh config-console.hh
+
+       mkdir -p python/out python/out-console
+       touch python/out/midi.lo python/out/midi.so python/out/midi.dll
+       touch python/out-console/midi.lo python/out-console/midi.so python/out-console/midi.dll
     fi
-    ##opt='-O2 -g' LDFLAGS='"$cygwin_prefix/bin/libpython2.2.dll"
-    rm -f config.cache
-}
 
-postconfig () {
-    # Configure for build, for generating doc
-    rm -f config.cache
-    export HOST_CC=gcc
-    export HOST_CXX=g++
-    if [ "$ABI" != "1.5" ]; then
-       HOST_CC=gcc-2.95
-       HOST_CXX=g++-2.95
-       (cd $src && ln -s GNUmakefile.in GNUmakefile)
+    # cross-compiling: build for build-host, generate doc
+    if ! iscygwin; then
+       cd $build || exit 1
+
+       if doc; then
+           args="all doc web"
+       else
+           args="all"
+       fi
+       (PATH="$build:$save_PATH" \
+           CFLAGS="-O2 -g" \
+           CPPFLAGS="" \
+           CC=$HOST_CC \
+           CXX=$HOST_CXX \
+           LDFLAGS="" \
+           eval make conf=for-build $args) || exit 1
+
+       # fake mf and texi
+        mkdir -p mf/out
+       cp -pv mf/out-for-build/* mf/out
+       mkdir -p Documentation/user/out
+       cp -pv Documentation/user/out-for-build/*{tely,texi} Documentation/user/out
     fi
-    (PATH="$old_path" \
-       PATH="$HOME/usr/pkg/guile-1.6/bin:$PATH" \
-       CFLAGS="-O2 -g" \
-       CC=$HOST_CC \
-       CXX=$HOST_CXX \
-       $src/configure --prefix=/usr --enable-config=for-build)
-}
 
-prebuild () {
-    for i in $sub_packages; do
-       rm -rf $inst-$i
-       mkdir -p $inst-$i || exit 1
-    done
-    
-    # Build for build, generating doc
-    cd $build || exit 1
-    
-    #PATH=/bin:/usr/bin:$PATH make conf=for-build all doc html-doc || exit 1
-    PATH=/bin:/usr/bin:$PATH make conf=for-build all doc web || exit 1
-    for i in $(find . -path "out-for-build/*.1"); do
-       cp -pv $i $(dirname $(dirname $i))/$(basename $i)
-    done
+    if [ "$cygwin" == "mingw" ]; then
+       # fake mf and texi
+        mkdir -p mf/out-console
+       cp -pv mf/out-for-build/* mf/out-console
+       mkdir -p Documentation/user/out-console
+       cp -pv Documentation/user/out-for-build/*{tely,texi} Documentation/user/out-console
+       # fake manual pages, only works without --enable-config
+       mkdir -p scripts/out-console
+       cp scripts/out-for-build/*.1 scripts/out-console
+       mkdir -p lily/out-console
+       cp lily/out-for-build/*.1 lily/out-console
+       make conf=console || exit 1
+    fi
 
-    mkdir -p mf/out
-    cp -pv mf/out-for-build/* mf/out
-    
-    if false; then #[ "$ABI" != "1.5" ]; then
-       addmakeflags MAKE_PFA_FILES=1 ' ' LDFLAGS="$cygwin_prefix/bin/libpython2.2.dll" ' ' 'target=i686-pc-cygwin'
-    else
-       addmakeflags MAKE_PFA_FILES=1 ' ' LDFLAGS="$cygwin_prefix/bin/libpython2.3.dll" ' ' 'target=i686-pc-cygwin'
+    addmakeflags "target=$target" ' '
+    if [ -f "$cygwin_prefix/bin/libpython2.4.dll" ]; then
+       addmakeflags LDFLAGS="$cygwin_prefix/bin/libpython2.4.dll" ' '
+    fi
+
+    if iscygwin && doc; then
+       addmakeflags all ' ' doc ' ' web ' '
     fi
 }
 
 preinstall () {
-    cd $build || exit 1
-    cp -v scripts/out-for-build/midi2ly.1 scripts/out
-    cp -v lily/out-for-build/lilypond.1 lily/out
-    
-    if false; then # [ "$ABI" != "1.5" ]; then
-       addmakeflags MAKE_PFA_FILES=1 ' ' LDFLAGS="$cygwin_prefix/bin/libpython2.2.dll" ' ' 'target=i686-pc-cygwin'
-    else
-       addmakeflags MAKE_PFA_FILES=1 ' ' LDFLAGS="$cygwin_prefix/bin/libpython2.3.dll" ' ' 'target=i686-pc-cygwin'
+    extras_preinstall
+    if iscygwin && doc; then
+       addmakeflags webdir="$inst-doc/$packagedocdir" ' ' web-install
     fi
 }
 
 postinstall () {
-    fixdoc
-    
-    mkdir -p $inst-doc/$docprefix
-    cd $build || exit 1
+    if [ "$cygwin" == "mingw" ]; then
+       cp $inst/usr/share/lilypond/$v/python/* $inst/usr/bin
+       install -m755 $build/lily/out/lilypond $inst/usr/bin/lilypond-windows
+       install -m755 $build/lily/out-console/lilypond $inst/usr/bin/
+    fi
     
-    make conf=for-build webdir=$inst-doc/$packagedocdir web-install
+    extras_postinstall
+
+    if [ "$cygwin" == "mingw" ]; then
+       for i in $inst/usr/bin/*; do
+           m=$(file -b $i)
+           if echo "$m" | grep "guile"; then
+               mv $i $i.scm
+           elif echo "$m" | grep "python"; then
+               mv $i $i.py
+           fi
+       done
+    fi
 
-    ## copy READMEs etc
+    cd $build || exit 1
+    if ! iscygwin && doc; then
+       make conf=for-build webdir=$inst-doc/$packagedocdir web-install
+    fi
 
+    # txt files reside elsewhere
+    cd $build/Documentation/topdocs/out
+    install -m644 AUTHORS.txt INSTALL.txt NEWS.txt README.txt $inst/$packagedocdir
+    ## copy examples
     cd $src || exit 1
-    install -d -m755 $inst/$packagedocdir
+    cp -prv input $inst/$packagedocdir
+    rm -rf $(find $inst/$packagedocdir -name 'CVS')
+    rm -f $(find $inst/$packagedocdir -name 'SCons*')
+    rm -f $(find $inst/$packagedocdir -name 'GNUmakefile*')
 
-    ## Generic READMEs
-    find . -maxdepth 1 -type f -exec cp -pv \{\} $inst/$packagedocdir \;
+    rm -rf $(find $inst/usr/share/lilypond -name '*.pyc')
+    rm -f $inst/usr/share/lilypond/$v/tex/texinfo.tex
 
-    ## Cygwin readmes
-    cygwin=cygwin
-    cd $src || exit 1
-    install -m644 $cygwin/changelog $inst/$cygdocdir/changelog.Cygwin
-    install -d -m755 $inst/$prefix/doc/Cygwin
-    #install -m644 $cygwin/README $inst/$cygdocdir/Cygwin/$package.README
+    if [ "$cygwin" == "mingw" ]; then
+       find $inst -name '*ly' | xargs unix2dos
+    fi
 
-    cd $build || exit 1
-    install -m644 $cygwin/out/README $inst/$packagedocdir/README.Cygwin
-    install -m644 $cygwin/out/README $inst/$cygdocdir/$package.README
+    install -d -m755 $inst-doc/$infodir/lilypond
+    if doc; then
+       cd $inst-doc/$infodir/lilypond && ln -sf ../../doc/$base-$ver/Documentation/user/out-www/*png .
+    fi
+}
 
-    ## copy examples
-    cd $src || exit 1
-    cp -prv input $inst/$packagedocdir
+doc_split () {
+    extras_doc_split
+    mkdir -p ./$packagedocdir/input
+    mv $inst/$packagedocdir/input/{no-notation,regression,test,tutorial} ./$packagedocdir/input
+    mkdir -p ./$prefix/share/lilypond/$v/fonts
+    mv $inst/$prefix/share/lilypond/$v/fonts/source ./$prefix/share/lilypond/$v/fonts
+}
 
-    cd $inst-doc/$packagedocdir &&
-    ln -s $(find html/Documentation -name '*.ps.gz') .
+extra_name () {
+    echo lilypond-extra
 }
 
+extra_split () {
+    # should be in devel...
+    mkdir -p ./$prefix/share/lilypond/$v
+    for i in make python tex vim; do
+    #for i in make tex vim; do
+       mv $inst/$prefix/share/lilypond/$v/$i ./$prefix/share/lilypond/$v
+    done
+    mkdir -p ./$prefix/share/lilypond/$v/fonts
+    for i in source svg tfm; do
+       mv $inst/$prefix/share/lilypond/$v/fonts/$i ./$prefix/share/lilypond/$v/fonts
+    done
+
+    mkdir -p ./$prefix/share
+    for i in locale omf; do
+       mv $inst/$prefix/share/$i ./$prefix/share
+    done
+}