ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/util/gatherer
(Generate patch)

Comparing deliantra/Deliantra-Client/util/gatherer (file contents):
Revision 1.4 by root, Fri Dec 30 06:52:07 2011 UTC vs.
Revision 1.14 by root, Fri Jan 27 23:13:38 2012 UTC

1#!/bin/bash 1#!/bin/bash
2 2
3# this gem of a hack gathers all fiels required by the client for the platform 3# this gem of a hack gathers all files required by the client for the platform
4# by deep magic, it works on osx, linux and windows. on MY osx, linux 4# by deep magic, it works on osx, linux and windows. on MY osx, linux
5# and windows, that is. 5# and windows, that is.
6 6
7STRIP="strip" 7STRIP="strip"
8LIBEXT=so 8LIBEXT=so
10SO=so 10SO=so
11SYSLIB=/usr/lib 11SYSLIB=/usr/lib
12MAKE=make 12MAKE=make
13ARCHNAME=x86 13ARCHNAME=x86
14GENPACK_ENVVARS="LD_LIBRARY_PATH=." 14GENPACK_ENVVARS="LD_LIBRARY_PATH=."
15EXTRA_EXTRACT=
15 16
16umask 022 17umask 022
17 18
18if [ "$(uname -s)" = CYGWIN_NT-5.0 ]; then 19if [ "$(uname -s)" = CYGWIN_NT-5.0 ]; then
19 . ~/.setenv 20 . ~/.setenv
20 21
21 OS=windows 22 OS=windows
22 URLADER=.exe 23 URLADER=windows-x86
23 unset PANGO 24 unset PANGO
24 PERL=/c/perl/bin/perl 25 PERL=/c/perl/bin/perl
25 MAKE=nmake 26 MAKE=nmake
26 SYSLIB=/c/gtk/bin 27 SYSLIB=/c/gtk/bin
27 LIBEXT=dll 28 LIBEXT=dll
28 LIB0=dll 29 LIB0=dll
29 SO=dll 30 SO=dll
30 STRIP=":" # stripping the perl library kills it, and apparently, everythignis always stripped 31 STRIP=":" # stripping the perl library kills it, and apparently, everythignis always stripped
32 EXTRA_EXTRACT="-MWin32::GUI::SplashScreen"
31 33
32 # fontconfig apparently ignores env vars and always looks at ./etc/fonts/fonts.conf, 34 # fontconfig apparently ignores env vars and always looks at ./etc/fonts/fonts.conf,
33 # but only if . isn't actually called bin or lib. hope for the best. 35 # but only if . isn't actually called bin or lib. hope for the best.
34 GENPACK_ENVVARS="FONTCONFIG_PATH=pm/Deliantra/Client/private/resources/fonts FONTCONFIG_FILE=fonts.conf" 36 GENPACK_ENVVARS="FONTCONFIG_PATH=pm/Deliantra/Client/private/resources/fonts FONTCONFIG_FILE=fonts.conf"
35 37
37 /c/gtk/bin/pango-querymodules # empty output usually 39 /c/gtk/bin/pango-querymodules # empty output usually
38 } 40 }
39 41
40elif [ "$(uname -s)" = Darwin ]; then 42elif [ "$(uname -s)" = Darwin ]; then
41 OS=darwin 43 OS=darwin
42 URLADER=-osx105 44 URLADER=darwin-x86
43 PANGO=1.6.0 45 PANGO=1.6.0
44 PERL=/opt/local/bin/perl 46 PERL=/opt/local/bin/perl
45 GENPACK_ENVVARS="DYLD_LIBRARY_PATH=." 47 GENPACK_ENVVARS="DYLD_LIBRARY_PATH=."
46 48
47 SYSLIB=/opt/local/lib 49 SYSLIB=/opt/local/lib
48 LIB0=dylib 50 LIB0=dylib
49 SO=bundle 51 SO=bundle
50 STRIP="strip -x" 52 STRIP="strip -x"
51elif [ $(arch) = i686 ]; then 53elif [ $(arch) = i686 ]; then
52 OS=linux 54 OS=linux
53 URLADER=-x86 55 URLADER=linux-x86
54 PANGO=1.5.0 56 PANGO=1.5.0
55 PERL=/usr/bin/perl 57 PERL=/usr/bin/perl
56else 58else
57 OS=linux 59 OS=linux
58 URLADER=-amd64 60 URLADER=linux-amd64
59 PANGO=1.5.0 61 PANGO=1.5.0
60 PERL=/usr/bin/perl 62 PERL=/usr/bin/perl
61 ARCHNAME=amd64 63 ARCHNAME=amd64
62fi 64fi
63 65
64export DIST="$(pwd)/dist/$OS-$ARCHNAME" 66DISTf="dist/$OS-$ARCHNAME"
67export DIST="$(pwd)/$DISTf"
65 68
66rm -rf "$DIST" 69eval $("$PERL" -V:sitebinexp:)
67mkdir -p "$DIST"
68 70
69#PERL=/opt/perl 71"$PERL" "$sitebinexp"/perl-libextractor --exedir . --dlldir . --bindir pm/bin --libdir pm \
70#PANGO=1.6.0 72 --perl --core-support --script deliantra $EXTRA_EXTRACT \
71 73 --runtime-only \
72export EV_EVENTFD=0 74 --copy "$DISTf"
73export EV_INOTIFY=0
74export EV_SIGNALFD=0
75
76if true; then
77 for mod in deliantra/Deliantra deliantra/Deliantra-Client; do
78# for mod in common-sense AnyEvent EV JSON-XS deliantra/Deliantra Compress-LZF BDB Guard deliantra/Deliantra-Client; do
79# for mod in CFPlus; do
80 (
81 cd /root/src/$mod
82 cvs update -AdP
83 $PERL Makefile.PL </dev/null >/dev/null
84 $MAKE clean >/dev/null
85 $PERL Makefile.PL </dev/null >/dev/null
86 if ! $MAKE install >log 2>&1; then
87 cat log
88 exit
89 fi
90 rm -f log
91 $MAKE clean >/dev/null
92 ) || exit
93 done
94fi
95 75
96cat <<EOF >"$DIST"/pango.rc 76cat <<EOF >"$DIST"/pango.rc
97[Pango] 77[Pango]
98ModuleFiles = pango.modules 78ModuleFiles = pango.modules
99EOF 79EOF
102 exec 5>"$DIST"/pango.modules 82 exec 5>"$DIST"/pango.modules
103 pango-querymodules | grep ^/ | while read lib rest; do 83 pango-querymodules | grep ^/ | while read lib rest; do
104 base=$(basename "$lib") 84 base=$(basename "$lib")
105 [ "$base" = pango-basic-x.$LIBEXT ] && continue 85 [ "$base" = pango-basic-x.$LIBEXT ] && continue
106 cp -p "$lib" "$DIST"/. 86 cp -p "$lib" "$DIST"/.
107 echo "$base $rest" >&5 87 echo "./$base $rest" >&5 # using ./ seems to help pango not to rummage around in /usr/lib etc.
108 done 88 done
109) 89)
110 90
111############################################################################# 91#############################################################################
112 92
115eval $($PERL -V:sitebinexp -V:sitearchexp -V:sitelib -V:vendorarchexp -V:vendorlibexp -V:archlibexp -V:privlibexp) 95eval $($PERL -V:sitebinexp -V:sitearchexp -V:sitelib -V:vendorarchexp -V:vendorlibexp -V:archlibexp -V:privlibexp)
116 96
117mkdir -p "$DIST"/pm/bin 97mkdir -p "$DIST"/pm/bin
118cp "$sitebinexp"/deliantra "$DIST"/pm/bin/ 98cp "$sitebinexp"/deliantra "$DIST"/pm/bin/
119cp -p util/run "$DIST" 99cp -p util/run "$DIST"
120
121(
122 exec <util/modules.dep
123
124# while read type name; do
125# if [ "$type" = d ]; then
126# # not implemented
127# dir=$(echo "$name" | sed -e s%::%/%g)
128# for lib in "$sitearchexp" "$sitelib" "$vendorarchexp" "$vendorlibexp" "$archlibexp" "$privlibexp"; do
129# if [ -e "$lib/auto/$dir/.packlist" ]; then
130# cat "$lib/auto/$dir/.packlist"
131# fi
132# echo "x $lib $dir"
133# done
134# elif [ $type = m ]; then
135# :
136# else
137# echo "unknown type $type ($name)"
138# exit 1
139# fi
140# done
141 mkdir -p "$DIST"/pm
142
143 export OSDIST="$DIST"
144 [ "$OS" = windows ] && OSDIST=$(cygpath -w "$OSDIST")
145
146 $PERL -e '
147 use Config;
148 use File::Glob qw(:glob);
149 use File::Copy;
150 use File::Path;
151 use File::Basename;
152
153 my @path = do {
154 my %seen;
155 grep !$seen{$_}++, grep length, map $Config{$_}, qw(
156 sitearchexp
157 sitelib
158 vendorarchexp
159 vendorlibexp
160 archlibexp
161 privlibexp
162 )
163 };
164
165 while (<>) {
166 s/\015?\012$//;
167 next if /^(#|$)/;
168 s/\.dynob$/.'$SO'/;
169
170 my $found;
171 for my $lib (@path) {
172 chdir $lib || next;
173
174 my @glob = File::Glob::bsd_glob $_, 0; # explicit 0 needed
175
176 if (@glob) {
177 ++$found;
178
179 for (@glob) {
180 if (-d $_) {
181 system "rsync", "-aR", $_, "$ENV{DIST}/pm/.";
182 } else {
183 File::Path::mkpath "$ENV{OSDIST}/pm/" . dirname $_;
184 File::Copy::syscopy "$_", "$ENV{OSDIST}/pm/$_"
185 or die "$ENV{OSDIST}/pm/$_: $!";
186
187 if (s/\.pm$//) {
188 $auto = "auto/$_";
189
190 for my $glob ("*.'$SO'", "autosplit.ix", "*.al") {
191 for (bsd_glob "$auto/$glob", 0) {
192 File::Path::mkpath "$ENV{OSDIST}/pm/" . dirname $_;
193 File::Copy::syscopy "$_", "$ENV{OSDIST}/pm/$_";
194 }
195 }
196 }
197 }
198 }
199
200 last;
201 }
202 }
203
204 warn "$_: not found\n"
205 unless $found;
206 }
207 '
208) || exit
209 100
210############################################################################# 101#############################################################################
211 102
212if [ "$OS" = windows ]; then 103if [ "$OS" = windows ]; then
213 libdeps() { 104 libdeps() {
245} 136}
246 137
247( 138(
248 cd "$DIST" 139 cd "$DIST"
249 140
250 cp -p "$PERL" .
251
252 if [ "$OS" = windows ]; then 141 if [ "$OS" = windows ]; then
253 cp -p $SYSLIB/libvorbisfile-3.dll $SYSLIB/mikmod.dll $SYSLIB/libpng12-0.dll . 142 cp -p $SYSLIB/libvorbisfile-3.dll $SYSLIB/mikmod.dll $SYSLIB/libpng12-0.dll .
254 cp /root/src/CFPlus/util/splash.bmp . 143 cp /root/src/CFPlus/util/splash.bmp .
255 chmod -R u+rwX pm/auto 144 chmod -R u+rwX pm/auto
256 145
257 # convert perl to a non-console-app 146 # convert perl to a non-console-app
258 $PERL -MWin32::Exe -e '$e = new Win32::Exe"perl.exe"; $e->set_subsystem_windows; $e->write' 147 $PERL -MWin32::Exe -e '$e = new Win32::Exe"perl.exe"; $e->set_subsystem_windows; $e->write'
259 148
260 else 149 else
261 # patch braindamaged pango
262 perl -pe 's{/u(?=sr/lib(32)?/pango)}{/\x00}g; s{\Q'$PANGO'\E\x00}{y.t.u\x00}g' <$SYSLIB/libpango-1.0.$LIB0 >libpango-1.0.$LIB0
263 chmod 755 libpango-1.0.$LIB0
264
265 for lib in mikmod vorbisfile; do 150 for lib in mikmod vorbisfile; do
266 cp -p $SYSLIB/lib$lib.$LIB0 . 151 cp -p $SYSLIB/lib$lib.$LIB0 .
267 chmod 755 lib$lib.$LIB0 152 chmod 755 lib$lib.$LIB0
268 done 153 done
269 fi 154 fi
277 for lib in \ 162 for lib in \
278 dl c m rt pthread nsl crypt \ 163 dl c m rt pthread nsl crypt \
279 X11 Xext Xau Xdmcp ICE SM Xrandr Xrender Xxf86vm drm GL \ 164 X11 Xext Xau Xdmcp ICE SM Xrandr Xrender Xxf86vm drm GL \
280 z 165 z
281 do 166 do
282 rm -f lib"$lib".$SO0 167 rm -f lib"$lib".$LIB0
283 done 168 done
169
170 if [ "$OS" != windows ]; then
171 # patch braindamaged pango
172
173 if [ "$OS" != darwin ]; then
174 set libpango-1.0.$LIB0
175 perl -pe 's{/u(?=sr/lib(32)?/pango)}{.\x00}g;' <"$1" >"$1~" && mv "$1~" "$1"
176 else
177 set lib*pango-1.0.0.dylib
178 perl -pe 's{/o(?=pt/local/.../pango)}{.\x00}g;' <"$1" >"$1~" && mv "$1~" "$1"
179 fi
180 chmod 755 "$1"
181 fi
284 182
285 if [ "$OS" = darwin ]; then 183 if [ "$OS" = darwin ]; then
286 # "dll hell" is most severe on os x, because apple 184 # "dll hell" is most severe on os x, because apple
287 # does not generally give a shit for backwards compatibility, 185 # does not generally give a shit for backwards compatibility,
288 # alwayss ships outdated libraries and often provides libraries 186 # alwayss ships outdated libraries and often provides libraries
320 patchlibs "$lib" 218 patchlibs "$lib"
321 mv "$lib" "libdeliantra-$stem.dylib" 219 mv "$lib" "libdeliantra-$stem.dylib"
322 done 220 done
323 fi 221 fi
324 222
325 [ "$OS" = linux ] && chrpath -d perl # debian perls have an rpath. really. 223 [ "$OS" = linux ] && chrpath -d perl $(find pm -name "*.so") # debian perls have an rpath, many modules too
326 $STRIP $(find . -name "*.$SO" -o -name "*.$LIBEXT" -o -name "*.$LIB0") perl 224 $STRIP $(find . -name "*.$SO" -o -name "*.$LIBEXT" -o -name "*.$LIB0") perl
225
226 : >timidity.cfg
327) 227)
328 228
329printf -- urlader$URLADER >"$DIST".urlader 229cat >"$DIST".vars <<EOF
230G_URLADER="$URLADER"
231G_OS="$OS"
232G_ARCHNAME="$ARCHNAME"
233G_ENVVARS="$GENPACK_ENVVARS"
234G_COMMAND="./perl run"
235EOF
330 236
331echo >"$DIST".genpack genpack deliantra_S-$OS-"$ARCHNAME" '"$EXE_VER"' '"$1"' $GENPACK_ENVVARS ./perl run
332
333exit
334
335
336tar cf deliantra-gnu-linux-$ARCHNAME.tar deliantra-gnu-linux-$ARCHNAME
337gzip -9vf deliantra-gnu-linux-$ARCHNAME.tar
338todata deliantra-gnu-linux-$ARCHNAME.tar.gz
339

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines