diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-12-18 17:02:09 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-12-18 17:02:09 +0000 |
commit | 82a9eb917c148dc71e1b31a2daba0aa41af618bd (patch) | |
tree | adcbe7b2d056311151277be548c9cd34aedc58b9 /devel/py-game/files | |
parent | 95383bf79bbe3466c9a9ae9a36fca7c2058e8634 (diff) | |
download | FreeBSD-ports-82a9eb917c148dc71e1b31a2daba0aa41af618bd.zip FreeBSD-ports-82a9eb917c148dc71e1b31a2daba0aa41af618bd.tar.gz |
Add Pygame. Pygame is a cross-platfrom library designed to make it easy to
write multimedia software, such as games, in Python.
Diffstat (limited to 'devel/py-game/files')
-rw-r--r-- | devel/py-game/files/patch-aa | 13 | ||||
-rw-r--r-- | devel/py-game/files/patch-ab | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/devel/py-game/files/patch-aa b/devel/py-game/files/patch-aa new file mode 100644 index 0000000..3244d79 --- /dev/null +++ b/devel/py-game/files/patch-aa @@ -0,0 +1,13 @@ +--- config_unix.py 2000/12/16 08:03:29 1.1 ++++ config_unix.py 2000/12/16 08:23:56 +@@ -4,7 +4,9 @@ + import os, sys, shutil + from glob import glob + +-configcommand = 'sdl-config --version --cflags --libs' ++try: configcommand = os.environ['SDL_CONFIG'] ++except KeyError: configcommand = 'sdl-config' ++configcommand = configcommand + ' --version --cflags --libs' + + + diff --git a/devel/py-game/files/patch-ab b/devel/py-game/files/patch-ab new file mode 100644 index 0000000..cf06875 --- /dev/null +++ b/devel/py-game/files/patch-ab @@ -0,0 +1,13 @@ +--- Setup.in 2000/12/16 09:11:55 1.1 ++++ Setup.in 2000/12/16 09:12:14 +@@ -4,8 +4,8 @@ + SDL = -I/usr/include/SDL -D_REENTRANT -lSDL + FONT = -lSDL_ttf + IMAGE = -lSDL_image +-MIXER = -lSDL_mixer +-SMPEG = -lsmpeg ++MIXER = -lSDL_mixer -lgcc_r ++SMPEG = -lsmpeg -lgcc_r + #--EndConfig + + |