Update to 1.4.9.
This commit is contained in:
parent
d5a64b9ac3
commit
f1a239553c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=60185
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= py-game
|
||||
PORTVERSION= 1.4
|
||||
PORTVERSION= 1.4.9
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= http://pygame.seul.org/ftp/
|
||||
DISTNAME= ${PORTNAME:S/-//}-${PORTVERSION}
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pygame-1.4.tar.gz) = f418f24ba425fc92306a4f8c6904b430
|
||||
MD5 (pygame-1.4.9.tar.gz) = e3d8dd07a25f3d94a61d3f7627c38241
|
||||
|
@ -1,22 +1,24 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- config_unix.py.orig Sat Nov 3 19:27:56 2001
|
||||
+++ config_unix.py Wed Dec 19 14:49:24 2001
|
||||
@@ -43,7 +43,7 @@
|
||||
--- config_unix.py.orig Sat Mar 23 10:23:12 2002
|
||||
+++ config_unix.py Tue May 28 12:58:39 2002
|
||||
@@ -113,7 +113,7 @@
|
||||
|
||||
sdl_lib_name = 'SDL'
|
||||
if sys.platform.find('bsd') != -1:
|
||||
- sdl_lib_name = 'SDL-1.2'
|
||||
+ sdl_lib_name = 'SDL-1.1'
|
||||
|
||||
DEPS = [
|
||||
Dependency('SDL', 'SDL.h', 'lib'+sdl_lib_name+'.so', sdl_lib_name),
|
||||
@@ -74,7 +74,7 @@
|
||||
|
||||
print 'Hunting dependencies...'
|
||||
if localbase:
|
||||
def main():
|
||||
@@ -132,8 +132,8 @@
|
||||
raise SystemExit
|
||||
|
||||
|
||||
- if localbase: #unneeded?
|
||||
- incdirs = [localbase + '/include/SDL']
|
||||
+ if localbase: #unneeded? nah, needed on FreeBSD!
|
||||
+ incdirs = [localbase + '/include/SDL11', localbase + '/include/smpeg']
|
||||
libdirs = [localbase + '/lib']
|
||||
else:
|
||||
|
@ -1,23 +0,0 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/mixer.c 2002/05/09 21:53:08 1.1
|
||||
+++ src/mixer.c 2002/05/09 21:55:19
|
||||
@@ -926,7 +926,7 @@
|
||||
/*DOC*/ "Temporarily stops playback on all the mixer channels.\n"
|
||||
/*DOC*/ ;
|
||||
|
||||
-static PyObject* pause(PyObject* self, PyObject* args)
|
||||
+static PyObject* all_pause(PyObject* self, PyObject* args)
|
||||
{
|
||||
if(!PyArg_ParseTuple(args, ""))
|
||||
return NULL;
|
||||
@@ -1029,7 +1029,7 @@
|
||||
{ "find_channel", find_channel, 1, doc_find_channel },
|
||||
{ "fadeout", fadeout, 1, doc_fadeout },
|
||||
{ "stop", stop, 1, doc_stop },
|
||||
- { "pause", pause, 1, doc_pause },
|
||||
+ { "pause", all_pause, 1, doc_pause },
|
||||
{ "unpause", unpause, 1, doc_unpause },
|
||||
/* { "lookup_frequency", lookup_frequency, 1, doc_lookup_frequency },*/
|
||||
|
@ -1,23 +0,0 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/music.c 2002/05/09 21:56:01 1.1
|
||||
+++ src/music.c 2002/05/09 21:56:51
|
||||
@@ -148,7 +148,7 @@
|
||||
/*DOC*/ "Temporarily stops the current music.\n"
|
||||
/*DOC*/ ;
|
||||
|
||||
-static PyObject* pause(PyObject* self, PyObject* args)
|
||||
+static PyObject* music_pause(PyObject* self, PyObject* args)
|
||||
{
|
||||
if(!PyArg_ParseTuple(args, ""))
|
||||
return NULL;
|
||||
@@ -365,7 +365,7 @@
|
||||
{ "get_busy", get_busy, 1, doc_get_busy },
|
||||
{ "fadeout", fadeout, 1, doc_fadeout },
|
||||
{ "stop", stop, 1, doc_stop },
|
||||
- { "pause", pause, 1, doc_pause },
|
||||
+ { "pause", music_pause, 1, doc_pause },
|
||||
{ "unpause", unpause, 1, doc_unpause },
|
||||
{ "rewind", mus_rewind, 1, doc_rewind },
|
||||
{ "set_volume", set_volume, 1, doc_set_volume },
|
@ -35,6 +35,7 @@ lib/%%PYTHON_VERSION%%/site-packages/pygame/pygame_icon.icns
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/pygame_icon.tiff
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/rect.so
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/rwobject.so
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/sndarray.so
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/sprite.py
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/sprite.pyc
|
||||
lib/%%PYTHON_VERSION%%/site-packages/pygame/sprite.pyo
|
||||
@ -77,11 +78,11 @@ lib/%%PYTHON_VERSION%%/site-packages/pygame/version.pyo
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_mixer_music.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_mouse.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_movie.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_sndarray.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_sprite.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_surfarray.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_time.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_transform.html
|
||||
%%PORTDOCS%%share/doc/py-game/ref/pygame_version.html
|
||||
%%PORTDOCS%%share/doc/py-game/tut/ChimpLineByLine.html
|
||||
%%PORTDOCS%%share/doc/py-game/tut/DisplayModes.html
|
||||
%%PORTDOCS%%share/doc/py-game/tut/Executable.html
|
||||
|
Loading…
Reference in New Issue
Block a user