]> git.donarmstrong.com Git - lilypond.git/blob - cygwin/mknetrel
919d1f446a3b99c44f7db0c5556e867af48a344a
[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 }
113
114 postconfig () {
115     # fix_libtool_script
116
117     # cross-compiling: configure for build-host
118     if ! iscygwin; then
119         rm -f config.cache
120         export HOST_CC=${HOST_CC:-gcc}
121         export HOST_CXX=${HOST_CXX:-g++}
122         export HOST_PKG_CONFIG=${HOST_PKG_CONFIG:-pkg-config}
123         export HOST_PKG_CONFIG_PATH=${HOST_PKG_CONFIG_PATH:-}
124         (PATH="$old_path" \
125             PATH="$HOME/usr/pkg/guile/bin:$PATH" \
126             CFLAGS="-O2 -g" \
127             CC=$HOST_CC \
128             CXX=$HOST_CXX \
129             PKG_CONFIG=$HOST_PKG_CONFIG \
130             PKG_CONFIG_PATH=$HOST_PKG_CONFIG_PATH \
131             $src/configure --prefix=/usr --enable-config=for-build)
132     fi
133 }
134
135 prebuild () {
136     for i in $sub_packages; do
137         rm -rf $inst-$i
138         mkdir -p $inst-$i || exit 1
139     done
140     
141     # cross-compiling: build for build-host, generate doc
142     if ! iscygwin; then
143         cd $build || exit 1
144
145         PATH=/bin:/usr/bin:$PATH \
146             make conf=for-build all doc web || exit 1
147         
148         mkdir -p mf/out
149         cp -pv mf/out-for-build/* mf/out
150
151         mkdir -p Documentation/user/out
152         cp -pv Documentation/user/out-for-build/*{tely,texi} Documentation/user/out
153     fi
154
155     # set LDFLAGS to find the python library
156     # EXTRABUILDARGS="LDFLAGS=$cygwin_root/usr/bin/libpython2.3.dll"
157
158     addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.4.dll" ' ' "target=i686-pc-cygwin" ' '
159
160     if iscygwin; then
161         # EXTRABUILDARGS="$EXTRABUILDARGS all doc web"
162         addmakeflags all ' ' doc ' ' web ' '
163     fi
164 }
165
166 preinstall () {
167
168     # set LDFLAGS to find the python library
169     # addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.3.dll" ' ' "target=i686-pc-cygwin"
170 #    if ! iscygwin; then
171 #       EXTRAINSTALLARGS="target=i686-pc-cygwin"
172 #    else
173     if iscygwin; then
174         #EXTRAINSTALLARGS="web-install target=i686-pc-cygwin"
175         addmakeflags webdir="$inst-doc/$packagedocdir" ' ' web-install
176     fi
177 }
178
179 postinstall () {
180     fixdoc
181     fix_libtool_la
182     
183     mkdir -p $inst-doc/$docprefix
184     cd $build || exit 1
185     
186     if ! iscygwin; then
187         make conf=for-build webdir=$inst-doc/$packagedocdir web-install
188     fi
189
190     ## copy READMEs etc
191
192     cd $src || exit 1
193     install -d -m755 $inst/$packagedocdir
194
195     install -m644  COPYING ChangeLog DEDICATION THANKS VERSION $inst/$packagedocdir
196
197     # txt files reside elsewhere
198     cd $build/Documentation/topdocs/out
199     install -m644 AUTHORS.txt INSTALL.txt NEWS.txt README.txt $inst/$packagedocdir
200
201     ## Cygwin readmes
202     cygwin=cygwin
203     cd $src || exit 1
204     install -d -m755 $inst/$cygdocdir
205     install -m644 $cygwin/changelog $inst/$packagedocdir/changelog.Cygwin
206
207     cd $build || exit 1
208     install -m644 $cygwin/out/README $inst/$packagedocdir/README.Cygwin
209     install -m644 $cygwin/out/README $inst/$cygdocdir/$package.README
210
211     ## copy examples
212     cd $src || exit 1
213     cp -prv input $inst/$packagedocdir
214        cd $inst/$packagedocdir
215        rm -rf $(find -name 'CVS')
216
217     #cd $inst-doc/$packagedocdir &&
218     #ln -s $(find html/Documentation -name '*.ps.gz') .
219
220     install -d -m755 $inst-doc/$infodir/lilypond
221     cd $inst-doc/$infodir/lilypond && ln -sf ../../doc/$base-$ver/Documentation/user/out-www/*png .
222 }