# -*- shell-script -*-
# cygwin/mknetrel - LilyPond mknetrel overrides

# This script should be used to package LilyPond for Cygwin.
# It can be used to build LilyPond on Cygwin, but also on GNU/Linux.
#
# See http://lilypond.org/web/devel/packaging.html for more information,
# report bugs to bug-lilypond@gnu.org.
#
# To build the package, do:
cat >/dev/null <<EOC

   cd /
   cvs -d:pserver:anoncvs@sources.redhat.com:/cvs/cygwin-apps co -d netrel mknetrel
   wget -P/var/tmp ftp://lilypond.org/pub/LilyPond/v1.9/lilypond-1.9.9.tar.gz
   mkdir -p /netrel/src && cd /netrel/src
   rm -rf /netrel/src/lilypond-*
   tar xzf /var/tmp/lilypond-*
   mv lilypond-1.9.9 lilypond-1.9.9-1
   cp lilypond-1.9.9-1/cygwin/mknetrel /netrel/extra/lilypond
   /netrel/bin/mknetrel -xX lilypond

EOC

sub_packages="doc"
old_path=$PATH

patch=$mknetrel_root/patch

# for cross-compiling LilyPond:
if ! iscygwin; then
    uploads=$here/uploads/$base && mkdir -p $uploads/
    tarstem=$uploads/$package
fi

# 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


needdevoflags () {
    return 1
}

preconfig () {

    patchsrc 
    rm -f config.cache

    # for cross-compiling LilyPond, fake a guile-config
    if ! iscygwin; then
	cd $build || exit 1
	GUILE=1.6.4
	cat > guile-config <<EOF
[ "\$1" == "--version" ] && echo "guile-config - Guile version $GUILE"
[ "\$1" == "compile" ] && echo "-I$cygwin_root/usr/include"
[ "\$1" == "link" ] && echo "-L$cygwin_root/usr/lib -lguile"
exit 0
EOF
	chmod 755 guile-config
	PATH=$(pwd):$PATH
    fi
}

postconfig () {
    # cross-compiling: configure for build-host
    if ! iscygwin; then
	rm -f config.cache
	export HOST_CC=gcc
	export HOST_CXX=g++
	if [ "$ABI" = "1.3" ]; then
	    HOST_CC=gcc-2.95
	    HOST_CXX=g++-2.95
	    (cd $src && ln -s GNUmakefile.in GNUmakefile)
	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)
    fi
}

prebuild () {
    for i in $sub_packages; do
	rm -rf $inst-$i
	mkdir -p $inst-$i || exit 1
    done
    
    # cross-compiling: build for build-host, generate doc
    if ! iscygwin; then
	cd $build || exit 1

	PATH=/bin:/usr/bin:$PATH \
	    make conf=for-build all doc web || exit 1
	
	mkdir -p mf/out
	cp -pv mf/out-for-build/* mf/out
    fi

    # set LDFLAGS to find the python library
    # EXTRABUILDARGS="LDFLAGS=$cygwin_root/usr/bin/libpython2.3.dll"

    addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.3.dll" ' ' "target=i686-pc-cygwin" ' '

    if iscygwin; then
	# EXTRABUILDARGS="$EXTRABUILDARGS all doc web"
	addmakeflags all ' ' doc ' ' web ' '
    fi
}

preinstall () {

    # set LDFLAGS to find the python library
    # addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.3.dll" ' ' "target=i686-pc-cygwin"
#    if ! iscygwin; then
#	EXTRAINSTALLARGS="target=i686-pc-cygwin"
#    else
    if iscygwin; then
	#EXTRAINSTALLARGS="web-install target=i686-pc-cygwin"
	addmakeflags webdir="$inst-doc/$packagedocdir" ' ' web-install
    fi
}

postinstall () {
    fixdoc
    
    mkdir -p $inst-doc/$docprefix
    cd $build || exit 1
    
    if ! iscygwin; then
	make conf=for-build webdir=$inst-doc/$packagedocdir web-install
    fi

    ## copy READMEs etc

    cd $src || exit 1
    install -d -m755 $inst/$packagedocdir

    install -m644  COPYING ChangeLog DEDICATION THANKS VERSION $inst/$packagedocdir

    # txt files reside elsewhere
    cd $build/Documentation/topdocs/out
    install -m644 AUTHORS.txt INSTALL.txt NEWS.txt README.txt $inst/$packagedocdir

    ## Cygwin readmes
    cygwin=cygwin
    cd $src || exit 1
    install -d -m755 $inst/$cygdocdir
    install -m644 $cygwin/changelog $inst/$cygdocdir/changelog.Cygwin

    cd $build || exit 1
    install -m644 $cygwin/out/README $inst/$packagedocdir/README.Cygwin
    install -m644 $cygwin/out/README $inst/$cygdocdir/$package.README

    ## copy examples
    cd $src || exit 1
    cp -prv input $inst/$packagedocdir
       cd $inst/$packagedocdir
       rm -rf $(find -name 'CVS')

    #cd $inst-doc/$packagedocdir &&
    #ln -s $(find html/Documentation -name '*.ps.gz') .
}
