1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
|
#!/usr/bin/env python
# -*- coding: ascii -*-
# Program msys_build_deps.py
# Requires Python 2.4 or later and win32api.
"""Build Pygame dependencies using MinGW and MSYS
Configured for Pygame 1.9.0 and Python 2.4 and up.
The libraries are installed in /usr/local of the MSYS directory structure.
This program can be run from a Windows cmd.exe or MSYS terminal. The current
directory and its outer directory are searched for the library source
directories.
The recognized, and optional, environment variables are:
SHELL - MSYS shell program path - already defined in the MSYS terminal
CFLAGS - compiler options - overrides the defaults used by this program
LDFLAGS - linker options - prepended to flags set by the program
LIBRARY_PATH - library directory paths - appended to those used by this
program
CPATH - C/C++ header file paths - appended to the paths used by this program
To get a list of command line options run
python build_deps.py --help
This program has been tested against the following libraries:
SDL 1.2 (.13) revision 4114 from SVN
SDL_image 1.2.6
SDL_mixer 1.2 (.8) revision 3942 from SVN
SDL_ttf 2.0.9
smpeg revision 370 from SVN
freetype 2.3.7
libogg 1.1.3
libvorbis 1.2.0
FLAC 1.2.1
tiff 3.8.2
libpng 1.2.32
jpeg 6b
zlib 1.2.3
PortMidi release 82
The build environment used:
gcc-core-3.4.5
gcc-c++-3.4.5
binutils-2.17.50
mingwrt-3.15.1
win32api-3.12
mingw32-make-3.81-20080326
MSYS-1.0.10
msysDTK-1.0.1
msys-automake-1.8.2
msys-autocont-2.59
m4-1.4.7-MSYS
nasm-2.05rc6-win32 (SourceForge)
Builds have been performed on Windows 98 and XP.
Build issues:
For pre-2007 computers: MSYS bug "[ 1170716 ] executing a shell scripts
gives a memory leak" (http://sourceforge.net/tracker/
index.php?func=detail&aid=1170716&group_id=2435&atid=102435)
It may not be possible to use the --all option to build all Pygame
dependencies in one session. Instead the job may need to be split into two
or more sessions, with a reboot of the operating system between each. Use
the --help-args option to list the libraries in the their proper build
order.
"""
import msys
from optparse import OptionParser
import os
import sys
from glob import glob
import time
# For Python 2.x/3.x compatibility
def geterror():
return sys.exc_info()[1]
#
# Generic declarations
#
hunt_paths = ['.', '..']
def prompt(p=None):
"""MSYS friendly raw_input
This provides a hook that can be replaced for testing.
"""
msys.msys_raw_input(p)
def print_(*args, **kwds):
msys.msys_print(*args, **kwds)
def confirm(message):
"""Ask a yes/no question, return result"""
reply = prompt("\n%s [Y/n]:" % message)
if reply and reply[0].lower() == 'n':
return 0
return 1
def as_flag(b):
"""Return bool b as a shell script flag '1' or '0'"""
if b:
return '1'
return '0'
def merge_strings(*args, **kwds):
"""Returns non empty string joined by sep
The default separator is an empty string.
"""
sep = kwds.get('sep', '')
return sep.join([s for s in args if s])
class BuildError(Exception):
"""Raised for missing source paths and failed script runs"""
pass
class Dependency(object):
"""Builds a library"""
def __init__(self, name, wildcards, dlls, shell_script):
self.name = name
self.wildcards = wildcards
self.shell_script = shell_script
self.dlls = dlls
def configure(self, hunt_paths):
self.path = None
self.paths = []
self.hunt(hunt_paths)
self.choosepath()
def hunt(self, hunt_paths):
parent = os.path.abspath('..')
for p in hunt_paths:
for w in self.wildcards:
found = glob(os.path.join(p, w))
found.sort() or found.reverse() #reverse sort
for f in found:
if f[:5] == '..'+os.sep+'..' and \
os.path.abspath(f)[:len(parent)] == parent:
continue
if os.path.isdir(f):
self.paths.append(f)
def choosepath(self):
path = None
if not self.paths:
raise BuildError("Path for %s: not found" % self.name)
if len(self.paths) == 1:
path = self.paths[0]
else:
print_("Select path for %s:" % self.name)
for i in range(len(self.paths)):
print_(" %d = %s" % (i+1, self.paths[i]))
print_(" 0 = <Nothing>")
choice = prompt("Select 0-%d (1=default):" % len(self.paths))
if not choice:
choice = 1
else:
choice = int(choice)
if choice > 0:
path = self.paths[choice-1]
if path is not None:
self.path = os.path.abspath(path)
def build(self, msys):
if self.path is not None:
msys.environ['BDWD'] = msys.windows_to_msys(self.path)
return_code = msys.run_shell_script(self.shell_script)
if return_code != 0:
raise BuildError("The build for %s failed with code %d" %
(self.name, return_code))
else:
raise BuildError("No source directory for %s" % self.name)
class Preparation(object):
"""Perform necessary build environment preperations"""
def __init__(self, name, shell_script):
self.name = name
self.path = ''
self.paths = []
self.dlls = []
self.shell_script = shell_script
def configure(self, hunt_paths):
pass
def build(self, msys):
return_code = msys.run_shell_script(self.shell_script)
if return_code != 0:
raise BuildError("Preparation '%s' failed with code %d" %
(self.name, return_code))
def configure(dependencies):
"""Find source directories of all dependencies"""
success = True
print_("Hunting for source directories...")
for dep in dependencies:
try:
dep.configure(hunt_paths)
except BuildError:
print_(geterror())
success = False
else:
if dep.path:
print_("Source directory for", dep.name, ":", dep.path)
if not success:
raise BuildError("Not all source directories were found")
def build(dependencies, msys):
"""Execute that shell scripts for all dependencies"""
for dep in dependencies:
dep.build(msys)
def command_line():
"""Process the command line and return the options"""
usage = ("usage: %prog [options] --all\n"
" %prog [options] [args]\n"
"\n"
"Build the Pygame dependencies. The args, if given, are\n"
"libraries to include or exclude.\n"
"\n"
"At startup this program may prompt for missing information.\n"
"Be aware of this before redirecting output or leaving the\n"
"program unattended. Once the 'Starting build' message appears\n"
"no more user input is required. The build process will"
"abort on the first error, as library build order is important.\n"
"\n"
"See --include and --help-args.\n"
"\n"
"For more details see the program's document string\n")
parser = OptionParser(usage)
parser.add_option('-a', '--all', action='store_true', dest='build_all',
help="Include all libraries in the build")
parser.set_defaults(build_all=False)
parser.add_option('--no-msvcr71', action='store_false', dest='msvcr71',
help="Do not link to msvcr71.dll")
parser.set_defaults(msvcr71=True)
parser.add_option('--console', action='store_true', dest='console',
help="Link with the console subsystem:"
" defaults to Win32 GUI")
parser.set_defaults(console=False)
parser.add_option('--no-configure', action='store_false', dest='configure',
help="Do not prepare the makefiles")
parser.set_defaults(configure=True)
parser.add_option('--no-compile', action='store_false', dest='compile',
help="Do not compile or install the libraries")
parser.set_defaults(compile=True)
parser.add_option('--no-install', action='store_false', dest='install',
help="Do not install the libraries")
parser.add_option('--no-strip', action='store_false', dest='strip',
help="Do not strip the library")
parser.set_defaults(strip=True)
parser.set_defaults(install=True)
parser.add_option('--clean', action='store_true', dest='clean',
help="Remove generated files (make clean)"
" as a last step")
parser.set_defaults(clean=False)
parser.add_option('--clean-only', action='store_true', dest='clean_only',
help="Perform only a clean")
parser.set_defaults(clean_only=False)
parser.add_option('-e', '--exclude', action='store_true', dest='exclude',
help="Exclude the specified libraries")
parser.set_defaults(exclude=False)
parser.add_option('-m', '--msys-root', action='store',
dest='msys_directory',
help="MSYS directory path, which may include"
" the 1.x subdirectory")
parser.set_defaults(msys_directory='')
parser.add_option('--help-args', action='store_true', dest='arg_help',
help="Show a list of recognised libraries,"
" in build order, and exit")
parser.set_defaults(arg_help=False)
return parser.parse_args()
def set_environment_variables(msys, options):
"""Set the environment variables used by the scripts"""
environ = msys.environ
msys_root = msys.msys_root
environ['BDCONF'] = as_flag(options.configure and
not options.clean_only)
environ['BDCOMP'] = as_flag(options.compile and
not options.clean_only)
environ['BDINST'] = as_flag(options.install and
options.compile and
not options.clean_only)
environ['BDSTRIP'] = as_flag(options.install and
options.strip and
not options.clean_only)
environ['BDCLEAN'] = as_flag(options.clean or options.clean_only)
environ.pop('INCLUDE', None) # INCLUDE causes problems with MIXER.
if 'CFLAGS' not in environ:
environ['CFLAGS'] = '-O2'
ldflags = '-mwindows'
if options.console:
ldflags = '-mconsole'
environ['LDFLAGS'] = merge_strings(environ.get('LDFLAGS', ''), ldflags,
sep=' ')
library_path = os.path.join(msys_root, 'local', 'lib')
msvcr71_path = ''
if options.msvcr71:
# Hide the msvcrt.dll import libraries with those for msvcr71.dll.
# Their subdirectory is in the same directory as the SDL library.
msvcr71_path = os.path.join(library_path, 'msvcr71')
environ['DBMSVCR71'] = msvcr71_path
# For dependency libraries and msvcrt hiding.
environ['LIBRARY_PATH'] = merge_strings(library_path, msvcr71_path,
environ.get('LIBRARY_PATH', ''),
sep=';')
# For dependency headers.
include_path = os.path.join(msys_root, 'local', 'include')
environ['CPATH'] = merge_strings(include_path, environ.get('CPATH', ''),
sep=';')
class ChooseError(Exception):
"""Failer to select dependencies"""
pass
def choose_dependencies(dependencies, options, args):
"""Return the dependencies to actually build"""
if options.build_all:
if args:
raise ChooseError("No library names are accepted"
" for the --all option.")
if options.exclude:
return []
else:
return dependencies
if args:
names = [d.name for d in dependencies]
args = [a.upper() for a in args]
for a in args:
if a not in names:
msg = ["%s is an unknown library; valid choices are:" % a]
msg.extend(names)
raise ChooseError('\n'.join(msg))
if options.exclude:
return [d for d in dependencies if d.name not in args]
return [d for d in dependencies if d.name in args]
return []
def summary(dependencies, msys, start_time, chosen_deps):
"""Display a summary report of new, existing and missing DLLs"""
import datetime
print_("\n\n=== Summary ===")
if start_time is not None:
print_(" Elapse time:",
datetime.timedelta(seconds=time.time()-start_time))
print_()
for dep in chosen_deps:
if dep.path is None:
print_(" ** No source directory found for", dep.name)
elif dep.path:
print_(" Source directory for", dep.name, ":", dep.path)
print_()
msys_root = msys.msys_root
bin_dir = os.path.join(msys_root, 'local', 'bin')
for d in dependencies:
name = d.name
dlls = d.dlls
for dll in dlls:
dll_path = os.path.join(bin_dir, dll)
try:
mod_time = os.path.getmtime(dll_path)
except:
msg = "No DLL"
else:
if mod_time >= start_time:
msg = "Installed new DLL %s" % dll_path
else:
msg = "-- (old DLL %s)" % dll_path
print_(" %-10s: %s" % (name, msg))
def main(dependencies, msvcr71_preparation, msys_preparation):
"""Build the dependencies according to the command line options."""
options, args = command_line()
if options.arg_help:
print_("These are the Pygame library dependencies:")
for dep in dependencies:
print_(" ", dep.name)
return 0
try:
chosen_deps = choose_dependencies(dependencies, options, args)
except ChooseError:
print_(geterror())
return 1
if not chosen_deps:
if not args:
print_("No libraries specified.")
elif options.build_all:
print_("All libraries excluded")
if options.msvcr71:
chosen_deps.insert(0, msvcr71_preparation)
if chosen_deps:
chosen_deps.insert(0, msys_preparation)
try:
m = msys.Msys(options.msys_directory)
except msys.MsysException:
print_(geterror())
return 1
start_time = None
return_code = 1
set_environment_variables(m, options)
try:
configure(chosen_deps)
except BuildError:
print_("Build aborted:", geterror())
else:
print_("\n=== Starting build ===")
start_time = time.time() # For file timestamp checks.
try:
build(chosen_deps, m)
except BuildError:
print_("Build aborted:", geterror())
else:
# A successful build!
return_code = 0
summary(dependencies, m, start_time, chosen_deps)
# MinGW configure file for setup.py (optional).
try:
import mingwcfg
except ImportError:
pass
else:
mingwcfg.write(m.mingw_root)
return return_code
#
# Build specific code
#
# This list includes the MSYS shell scripts to build each library. Each script
# runs in an environment where MINGW_ROOT_DIRECTORY is defined and the MinGW
# bin directory is in PATH. Four other environment variables are defined:
# BDCONF, BDCOMP, BDINST and BDCLEAN. They are either '0' or '1'. They
# represent configure, compile, install and clean respectively. When '1' the
# corresponding action is performed. When '0' it is skipped. A final variable,
# DBWD, is the root directory of the source code. A script will cd to it before
# doing anything else.
#
# None of these scripts end with an "exit". Exit, possibly, leads to Msys
# freezing on some versions of Windows (98).
#
# The list order corresponds to build order. It is critical.
dependencies = [
Dependency('SDL', ['SDL-[1-9].*'], ['SDL.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# Remove NONAMELESSUNION from directx.h headers.
for d in video audio; do
BDDXHDR=src/$d/windx5/directx.h
cp -f $BDDXHDR $BDDXHDR'_'
sed 's/^\\(#define NONAMELESSUNION\\)/\\/*\\1*\\//' $BDDXHDR'_' >$BDDXHDR
if [ x$? != x0 ]; then exit $?; fi
rm $BDDXHDR'_'
BDDXHDR=
done
# This comes straight from SVN so has no configure script
if [ ! -f "./configure" ]; then
./autogen.sh
fi
./configure
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
# Make SDL_config_win32.h available for prebuilt and MSVC
cp -f "$BDWD/include/SDL_config_win32.h" "/usr/local/include/SDL"
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/SDL.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('Z', ['zlib-[1-9].*'], ['zlib1.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# Use the existing gcc makefile, modified to add linker options.
sed "s/dllwrap/dllwrap $LDFLAGS/" win32/Makefile.gcc >Makefile.gcc
fi
if [ x$BDCOMP == x1 ]; then
# Build with the import library renamed.
make IMPLIB='libz.dll.a' -fMakefile.gcc "CFLAGS=$CFLAGS"
fi
if [ x$BDINST == x1 ]; then
# Have to do own install.
cp -fp *.a /usr/local/lib
cp -fp zlib.h /usr/local/include
cp -fp zconf.h /usr/local/include
cp -fp zlib1.dll /usr/local/bin
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/zlib1.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('FREETYPE', ['freetype-[2-9].*'], ['libfreetype-6.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# Need to define inline as freetypes is compiled as -pedentic
# yet stdlib.h is not.
export CPPFLAGS="-Dinline=__inline__ $CPPFLAGS"
./configure
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/libfreetype-6.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('FONT', ['SDL_ttf-[2-9].*'], ['SDL_ttf.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
./configure
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/SDL_ttf.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('PNG', ['libpng-[1-9].*'], ['libpng12-0.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# This will only build a static library.
./configure --with-libpng-compat=no
# Remove a duplicate entry in the def file.
BDDEF=scripts/pngw32.def
cp -f "$BDDEF" temp_
sed '222 s/^\\( png_malloc_warn @195\\)/;\\1/' temp_ >"$BDDEF"
rm temp_
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
# Sorry, but no one else recognizes png12
cp -f /usr/local/lib/libpng12.dll.a /usr/local/lib/libpng.dll.a
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/libpng12-0.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('JPEG', ['jpeg-[6-9]*'], ['jpeg.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# This will only build a static library.
./configure --disable-shared
fi
if [ x$BDCOMP == x1 ]; then
# Build the DLL as a win32 gui.
make
dlltool --export-all-symbols -D jpeg.dll -l libjpeg.dll.a -z in.def libjpeg.a
ranlib libjpeg.dll.a
gcc -shared -s $LDFLAGS -def in.def -o jpeg.dll libjpeg.a
fi
if [ x$BDINST == x1 ]; then
# Only install the headers and import library, otherwise SDL_image will
# statically link to jpeg.
make install-headers
cp -fp libjpeg.a /usr/local/lib
cp -fp libjpeg.dll.a /usr/local/lib
cp -fp jpeg.dll /usr/local/bin
if [ x$? != x0 ]; then exit $?; fi
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/jpeg.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
rm -f in.def
rm -f libjpeg.dll.a
rm -f jpeg.dll
fi
"""),
Dependency('TIFF', ['tiff-[3-9].*'], ['libtiff.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# The shared library build does not work
./configure --disable-cxx --prefix=/usr/local --disable-shared
fi
if [ x$BDCOMP == x1 ]; then
make
# Build the DLL as a win32 gui
cd libtiff
gcc -shared -s $LDFLAGS -def libtiff.def -o libtiff.dll .libs/libtiff.a \
-ljpeg -lz
dlltool -D libtiff.dll -d libtiff.def -l libtiff.dll.a
ranlib libtiff.dll.a
cd ..
fi
if [ x$BDINST == x1 ]; then
# Don't install any libtools info files so SDL_image will not
# statically link to jpeg.
cd libtiff
make install-data-am
cp -fp .libs/libtiff.a /usr/local/lib
cp -fp libtiff.dll.a /usr/local/lib
cp -fp libtiff.dll /usr/local/bin
if [ x$? != x0 ]; then exit $?; fi
cd ..
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/libtiff.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
rm -f libtiff/libtiff.dll.a
rm -f libtiff/libtiff.dll
fi
"""),
Dependency('IMAGE', ['SDL_image-[1-9].*'], ['SDL_image.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# Disable dynamic loading of image libraries as that uses the wrong DLL
# search path
./configure --disable-jpeg-shared --disable-png-shared --disable-tif-shared
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/SDL_image.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('SMPEG', ['smpeg-[0-9].*', 'smpeg'], ['smpeg.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# This comes straight from SVN so has no configure script
if [ ! -f "./configure" ]; then
./autogen.sh
fi
./configure --disable-gtk-player --disable-opengl-player --disable-gtktest
fi
if [ x$BDCOMP == x1 ]; then
make CXXLD='$(CXX) -no-undefined'
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/smpeg.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('OGG', ['libogg-[1-9].*'], ['libogg-0.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
./configure
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/libogg-0.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('VORBIS',
['libvorbis-[1-9].*'],
['libvorbis-0.dll', 'libvorbisfile-3.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
./configure
fi
if [ x$BDCOMP == x1 ]; then
make LIBS='-logg'
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/libvorbis-0.dll
strip --strip-all /usr/local/bin/libvorbisfile-3.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('FLAC', ['flac-[1-9].*'], [], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# Add __MINGW32__ to SIZE_T_MAX declaration test in alloc.h header.
BDHDR='include/share/alloc.h'
BDTMP='alloc.h_'
cp -f "$BDHDR" "$BDTMP"
sed 's/^# ifdef _MSC_VER$/# if defined _MSC_VER || defined __MINGW32__/' \
"$BDTMP" >"$BDHDR"
rm "$BDTMP"
# Will only install a static library, but that is all that is needed.
./configure --disable-shared --disable-ogg --disable-cpplibs \
--disable-doxygen-docs
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
cp src/libFLAC/.libs/libFLAC.a /usr/local/lib
mkdir -p /usr/local/include/FLAC
cp -f include/FLAC/*.h /usr/local/include/FLAC
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('MIXER', ['SDL_mixer-[1-9].*'], ['SDL_mixer.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
# This comes straight from SVN so has no configure script
if [ ! -f "./configure" ]; then
./autogen.sh
fi
# Need to add Ws2_32 library for FLAC.
cp -f configure configure_
sed '
s/\\(EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lFLAC\\)"/\\1 -lWs2_32"/
s/\\(LIBS="-lFLAC\\)\\( $LIBS"\\)/\\1 -lWs2_32\\2/' \
configure_ >configure
rm configure_
# No dynamic loading of dependent libraries.
./configure --disable-music-ogg-shared --disable-music-mp3-shared \
--disable-music-flac-shared
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/SDL_mixer.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
fi
"""),
Dependency('PORTMIDI', ['portmidi', 'portmidi-[1-9].*'], ['portmidi.dll'], """
set -e
cd $BDWD
if [ x$BDCONF == x1 ]; then
cat > GNUmakefile << 'THE_END'
# Makefile for portmidi, generated for Pygame by msys_build_deps.py.
target = /usr/local
pmcom = pm_common
pmwin = pm_win
pt = porttime
pmdll = portmidi.dll
pmlib = libportmidi.a
pmimplib = libportmidi.dll.a
pmcomsrc = $(pmcom)/portmidi.c $(pmcom)/pmutil.c
pmwinsrc = $(pmwin)/pmwin.c $(pmwin)/pmwinmm_.c
pmobj = portmidi.o pmutil.o pmwin.o pmwinmm_.o
pmsrc = $(pmcomsrc) $(pmwinsrc)
pmreqhdr = $(pmcom)/portmidi.h $(pmcom)/pmutil.h
pmhdr = $(pmreqhdr) $(pmcom)/pminternal.h $(pmwin)/pmwinmm.h
ptsrc = $(pt)/porttime.c porttime/ptwinmm.c
ptobj = porttime.o ptwinmm.o
ptreqhdr = $(pt)/porttime.h
pthdr = $(ptreqhdr)
src = $(pmsrc) $(ptsrc)
reqhdr = $(pmreqhdr) $(ptreqhdr)
hdr = $(pmhdr) $(pthdr)
obj = $(pmobj) $(ptobj)
def = portmidi.def
IHDR := -I$(pmcom) -I$(pmwin) -I$(pt)
LIBS := $(LOADLIBES) $(LDLIBS) -lwinmm
all : $(pmdll)
.PHONY : all
$(pmwin)/pmwinmm_.c : $(pmwin)/pmwinmm.c
\tsed 's_#define DEBUG.*$$_/*&*/_' < "$<" > "$@"
$(pmlib) : $(src) $(hdr)
\t$(CC) $(CPPFLAGS) $(IHDR) -c $(CFLAGS) $(src)
\tar rc $(pmlib) $(obj)
\tranlib $(pmlib)
$(pmdll) : $(pmlib) $(def)
\t$(CC) -shared $(LDFLAGS) -def $(def) $(pmlib) $(LIBS) -o $@
\tdlltool -D $(pmdll) -d $(def) -l $(pmimplib)
\tranlib $(pmimplib)
.PHONY : install
install : $(pmdll)
\tcp -f --target-directory=$(target)/bin $<
\tcp -f --target-directory=$(target)/lib $(pmlib)
\tcp -f --target-directory=$(target)/lib $(pmimplib)
\tcp -f --target-directory=$(target)/include $(reqhdr)
.PHONY : clean
clean :
\trm -f $(obj) $(pmdll) $(pmimplib) $(pmlib) $(pmwin)/pmwinmm_.c
THE_END
cat > portmidi.def << 'THE_END'
LIBRARY portmidi.dll
EXPORTS
Pm_Abort
Pm_Close
Pm_CountDevices
Pm_Dequeue
Pm_Enqueue
Pm_GetDefaultInputDeviceID
Pm_GetDefaultOutputDeviceID
Pm_GetDeviceInfo
Pm_GetErrorText
Pm_GetHostErrorText
Pm_HasHostError
Pm_Initialize
Pm_OpenInput
Pm_OpenOutput
Pm_Poll
Pm_QueueCreate
Pm_QueueDestroy
Pm_QueueEmpty
Pm_QueueFull
Pm_QueuePeek
Pm_Read
Pm_SetChannelMask
Pm_SetFilter
Pm_SetOverflow
Pm_Terminate
Pm_Write
Pm_WriteShort
Pm_WriteSysEx
Pt_Sleep
Pt_Start
Pt_Started
Pt_Stop
Pt_Time
pm_add_device
pm_alloc
pm_descriptor_index DATA
pm_descriptor_max DATA
pm_fail_fn
pm_fail_timestamp_fn
pm_free
pm_hosterror DATA
pm_hosterror_text DATA
pm_init
pm_none_dictionary DATA
pm_read_bytes
pm_read_short
pm_success_fn
pm_term
pm_winmm_in_dictionary DATA
pm_winmm_init
pm_winmm_out_dictionary DATA
pm_winmm_term
THE_END
fi
if [ x$BDCOMP == x1 ]; then
make
fi
if [ x$BDINST == x1 ]; then
make install
fi
if [ x$BDSTRIP == x1 ]; then
strip --strip-all /usr/local/bin/portmidi.dll
fi
if [ x$BDCLEAN == x1 ]; then
set +e
make clean
rm -f GNUmakefile portmidi.def
fi
"""),
] # End dependencies = [.
msys_prep = Preparation('/usr/local', """
# Ensure /usr/local and its subdirectories exist.
mkdir -p /usr/local/lib
mkdir -p /usr/local/include
mkdir -p /usr/local/bin
mkdir -p /usr/local/doc
mkdir -p /usr/local/man
mkdir -p /usr/local/share
""")
msvcr71_prep = Preparation('msvcr71.dll linkage', r"""
set -e
#
# msvcr71.dll support
#
if [ ! -f "$DBMSVCR71/libmoldname.a" ]; then
mkdir -p "$DBMSVCR71"
cp -fp /mingw/lib/libmoldname71.a "$DBMSVCR71/libmoldname.a"
cp -fp /mingw/lib/libmoldname71d.a "$DBMSVCR71/libmoldnamed.a"
cp -fp /mingw/lib/libmsvcr71.a "$DBMSVCR71/libmsvcrt.a"
cp -fp /mingw/lib/libmsvcr71d.a "$DBMSVCR71/libmsvcrtd.a"
fi
""")
if __name__ == '__main__':
sys.exit(main(dependencies, msvcr71_prep, msys_prep))
|