]> git.donarmstrong.com Git - lilypond.git/blob - cygwin/mknetrel
(grob-cause): Yet another fix, hope it's
[lilypond.git] / cygwin / mknetrel
1 # -*- shell-script -*-
2 # cygwin/mknetrel - LilyPond mknetrel overrides
3
4 # This script should be used to package LilyPond for Cygwin.
5 # It can be used to build LilyPond on Cygwin, but also on GNU/Linux.
6 #
7 # See http://lilypond.org/web/devel/packaging.html for more information,
8 # report bugs to bug-lilypond@gnu.org.
9 #
10 # To build the package, do:
11 cat >/dev/null <<EOC
12
13    cd /
14    cvs -d:pserver:anoncvs@sources.redhat.com:/cvs/cygwin-apps co -d netrel mknetrel
15    wget -P/var/tmp ftp://lilypond.org/pub/LilyPond/v1.9/lilypond-1.9.9.tar.gz
16    mkdir -p /netrel/src && cd /netrel/src
17    rm -rf /netrel/src/lilypond-*
18    tar xzf /var/tmp/lilypond-*
19    mv lilypond-1.9.9 lilypond-1.9.9-1
20    cp lilypond-1.9.9-1/cygwin/mknetrel /netrel/extra/lilypond
21    /netrel/bin/mknetrel -xX lilypond
22
23 EOC
24
25 sub_packages="doc"
26 old_path=$PATH
27
28 patch=$mknetrel_root/patch
29
30 # for cross-compiling LilyPond:
31 if ! iscygwin; then
32     uploads=$here/uploads/$base && mkdir -p $uploads/
33     tarstem=$uploads/$package
34 fi
35
36 # copy and include extra mknetrel stuff
37 extras="doc patch auto cross split"
38 for i in $extras; do
39     f=mknetrel.$i
40     [ -r $extra/$f ] && cp -pv $extra/$f $src/cygwin/$f
41     . $src/cygwin/$f
42 done
43
44
45 needdevoflags () {
46     false
47 }
48
49 fix_libtool_script () {
50     cd $build || exit 1
51
52     # Fix libtool's -rpath detection
53     export CC="${build_cc}"
54     export CXX="${build_cxx}"
55     export DLLTOOL=${build_dlltool}
56     export OBJDUMP=${build_objdump}
57     export AS="${build_as}"
58     export HOST_CC=/usr/bin/gcc
59     export allow_undefined="yes"
60     export allow_undefined_flag=""
61     
62     # fix libtool's dlltool usage
63     mv libtool libtool.orig
64     sed -e 's/^DLLTOOL="dlltool"/DLLTOOL="i686-cygwin-dlltool"/' \
65         -e 's/^DLLTOOL=/HOST_CC=gcc\nDLLTOOL=/' \
66         -e 's/^HOST_CC=/SED=sed\nHOST_CC=/' < libtool.orig > libtool
67     chmod +x libtool
68 }
69
70 fix_libtool_la () {
71     # fix libtool's .la dependency_libs output for dlopen
72     for i in $inst/lib $inst/$prefix/lib ]; do
73         if [ -d $i ]; then
74             cd $i || exit 1
75             for j in $(ls -1 *la); do
76                 mv $j .libtool-$j
77                 sed -e 's/ *-L *[^ ][^ ]*//g' .libtool-$j > $j
78                 chmod +x $j
79             done
80         fi
81     done
82 }
83
84 preconfig () {
85
86     patchsrc 
87     rm -f config.cache
88
89     cd $src
90     if [ ! -x ./configure ]; then
91         ./autogen.sh --noconfigure
92     fi
93
94     cd $build
95     # for cross-compiling LilyPond, fake a guile-config
96     if ! iscygwin; then
97         cd $build || exit 1
98         GUILE=1.6.5
99         cat > i686-cygwin-guile-config <<EOF
100 [ "\$1" == "--version" ] && echo "i686-cygwin-guile-config - Guile version $GUILE"
101 [ "\$1" == "compile" ] && echo "-I$cygwin_root/usr/include"
102 [ "\$1" == "link" ] && echo "-L$cygwin_root/usr/lib -lguile"
103 exit 0
104 EOF
105         chmod 755 i686-cygwin-guile-config
106         PATH=$(pwd):$PATH
107         export PKG_CONFIG_PATH=$cygwin_root/usr/lib/pkgconfig
108         export PKG_CONFIG="pkg-config \
109 --define-variable prefix=$cygwin_root \
110 --define-variable includedir=$cygwin_root/usr/include"
111     fi
112     export CFLAGS="-DKPSE_DLL"
113 }
114
115 postconfig () {
116     # fix_libtool_script
117
118     # cross-compiling: configure for build-host
119     if ! iscygwin; then
120         rm -f config.cache
121         export HOST_CC=${HOST_CC:-gcc}
122         export HOST_CXX=${HOST_CXX:-g++}
123         export HOST_PKG_CONFIG=${HOST_PKG_CONFIG:-pkg-config}
124         export HOST_PKG_CONFIG_PATH=${HOST_PKG_CONFIG_PATH:-}
125         (PATH="$old_path" \
126             PATH="$HOME/usr/pkg/guile/bin:$PATH" \
127             CFLAGS="-O2 -g" \
128             CC=$HOST_CC \
129             CXX=$HOST_CXX \
130             PKG_CONFIG=$HOST_PKG_CONFIG \
131             PKG_CONFIG_PATH=$HOST_PKG_CONFIG_PATH \
132             $src/configure --prefix=/usr --enable-config=for-build)
133     fi
134 }
135
136 prebuild () {
137     for i in $sub_packages; do
138         rm -rf $inst-$i
139         mkdir -p $inst-$i || exit 1
140     done
141     
142     # cross-compiling: build for build-host, generate doc
143     if ! iscygwin; then
144         cd $build || exit 1
145
146         PATH=/bin:/usr/bin:$PATH \
147             make conf=for-build all doc web || exit 1
148         
149         mkdir -p mf/out
150         cp -pv mf/out-for-build/* mf/out
151
152         mkdir -p Documentation/user/out
153         cp -pv Documentation/user/out-for-build/*{tely,texi} Documentation/user/out
154     fi
155
156     # set LDFLAGS to find the python library
157     # EXTRABUILDARGS="LDFLAGS=$cygwin_root/usr/bin/libpython2.3.dll"
158
159     addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.4.dll" ' ' "target=i686-pc-cygwin" ' '
160
161     if iscygwin; then
162         # EXTRABUILDARGS="$EXTRABUILDARGS all doc web"
163         addmakeflags all ' ' doc ' ' web ' '
164     fi
165 }
166
167 preinstall () {
168
169     # set LDFLAGS to find the python library
170     # addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.3.dll" ' ' "target=i686-pc-cygwin"
171 #    if ! iscygwin; then
172 #       EXTRAINSTALLARGS="target=i686-pc-cygwin"
173 #    else
174     if iscygwin; then
175         #EXTRAINSTALLARGS="web-install target=i686-pc-cygwin"
176         addmakeflags webdir="$inst-doc/$packagedocdir" ' ' web-install
177     fi
178 }
179
180 postinstall () {
181     fixdoc
182     fix_libtool_la
183     
184     mkdir -p $inst-doc/$docprefix
185     cd $build || exit 1
186     
187     if ! iscygwin; then
188         make conf=for-build webdir=$inst-doc/$packagedocdir web-install
189     fi
190
191     ## copy READMEs etc
192
193     cd $src || exit 1
194     install -d -m755 $inst/$packagedocdir
195
196     install -m644  COPYING ChangeLog DEDICATION THANKS VERSION $inst/$packagedocdir
197
198     # txt files reside elsewhere
199     cd $build/Documentation/topdocs/out
200     install -m644 AUTHORS.txt INSTALL.txt NEWS.txt README.txt $inst/$packagedocdir
201
202     ## Cygwin readmes
203     cygwin=cygwin
204     cd $src || exit 1
205     install -d -m755 $inst/$cygdocdir
206     install -m644 $cygwin/changelog $inst/$packagedocdir/changelog.Cygwin
207
208     cd $build || exit 1
209     install -m644 $cygwin/out/README $inst/$packagedocdir/README.Cygwin
210     install -m644 $cygwin/out/README $inst/$cygdocdir/$package.README
211
212     ## copy examples
213     cd $src || exit 1
214     cp -prv input $inst/$packagedocdir
215        cd $inst/$packagedocdir
216        rm -rf $(find -name 'CVS')
217
218     #cd $inst-doc/$packagedocdir &&
219     #ln -s $(find html/Documentation -name '*.ps.gz') .
220
221     install -d -m755 $inst-doc/$infodir/lilypond
222     cd $inst-doc/$infodir/lilypond && ln -sf ../../doc/$base-$ver/Documentation/user/out-www/*png .
223 }