--- py-paint/Makefile Tue Apr 30 03:08:15 2002 +++ py-paint/Makefile Wed May 1 11:29:29 2002 @@ -6,7 +6,7 @@ # PORTNAME= paint -PORTVERSION= 0.1 +PORTVERSION= 0.2 CATEGORIES= graphics python MASTER_SITES= http://object-craft.com.au/projects/paint/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,27 +22,18 @@ USE_PYDISTUTILS= yes PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S,^${LOCALBASE}/,,g} \ SHARE_SUBDIR=${SHARE_SUBDIR} -WRKSRC= ${WRKDIR}/${PORTNAME} SHARE_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} INC_DIRS= ["${LOCALBASE}/include/freetype1","${LOCALBASE}/include","${X11BASE}/include","${LOCALBASE}/include/freetype1/freetype"] LIB_DIRS= ["${LOCALBASE}/lib","${X11BASE}/lib"] -REPATCH= cd ${WRKSRC} && ${SED} -REPATCHSUBST= -e 's@^\(.*libraries.*\)$$@\1include_dirs=${INC_DIRS},library_dirs=${LIB_DIRS},@g' -REPATCHFILES= setup.py TMPSUFFIX= .temp EXAMPLES= test_bar.py test_paint.py testpie.py .include post-patch: -.if ${PYTHON_REL} >= 160 - cd ${WRKSRC} && ${PATCH} -s <${PATCHDIR}/optpatch-aa -.endif -.for file in ${REPATCHFILES} - ${REPATCH} ${REPATCHSUBST} ${file} > ${file}${TMPSUFFIX} && \ - ${CAT} ${file}${TMPSUFFIX} > ${file} -.endfor + ${PERL} -pi -e 's@^\(.*libraries.*\)$$@\1include_dirs=${INC_DIRS},library_dirs=${LIB_DIRS},@g' \ + ${WRKSRC}/setup.py .if !defined(NOPORTDOCS) post-install: --- py-paint/distinfo Mon Jul 9 01:47:10 2001 +++ py-paint/distinfo Wed May 1 11:19:25 2002 @@ -1, +1, @@ -MD5 (paint-0.1.tar.gz) = 0021c2e7bbbe82ba2f31e44192b1abfb +MD5 (paint-0.2.tar.gz) = 26cde298ddad845e3fb2c474b43219ad --- py-paint/files/optpatch-aa Mon Jul 9 01:47:15 2001 +++ py-paint/files/optpatch-aa Thu Jan 1 09:00:00 1970 @@ -1,12 +0,0 @@ ---- paint.h.orig Thu May 10 10:12:07 2001 -+++ paint.h Mon Jul 9 00:01:22 2001 -@@ -39,6 +39,9 @@ - #include - - #include "Python.h" -+#define Py_Malloc(n) PyMem_Malloc(n) -+#define Py_Realloc(p, n) PyMem_Realloc((p), (n)) -+#define Py_Free(p) PyMem_Free(p) - - typedef struct { - PyObject_HEAD