Index: Makefile =================================================================== RCS file: /cvs/ports/net/py-spreadmodule/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 24 May 2002 13:50:46 -0000 1.1 +++ Makefile 10 Sep 2002 13:13:35 -0000 @@ -6,7 +6,7 @@ # PORTNAME= spreadmodule -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= net python MASTER_SITES= http://www.python.org/other/spread/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,12 +15,13 @@ MAINTAINER= joshua@roughtrade.net -BUILD_DEPENDS= ${LOCALBASE}/lib/libsp.a:${PORTSDIR}/net/spread +LIB_DEPENDS= spread.1:${PORTSDIR}/net/spread +USE_REINPLACE= yes USE_PYTHON= yes USE_PYDISTUTILS=yes post-patch: - @${PERL} -pi -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/setup.py + @${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/setup.py .include Index: distinfo =================================================================== RCS file: /cvs/ports/net/py-spreadmodule/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 24 May 2002 13:50:46 -0000 1.1 +++ distinfo 10 Sep 2002 13:12:23 -0000 @@ -1 +1 @@ -MD5 (SpreadModule-1.2.tgz) = dec9b45f8e3891f9afc5939932be59ac +MD5 (SpreadModule-1.3.tgz) = c43e484f46cdd9aeac4942bdcf320c44 Index: files/patch-setup.py =================================================================== RCS file: files/patch-setup.py diff -N files/patch-setup.py --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-setup.py 5 Nov 2002 22:17:20 -0000 @@ -0,0 +1,11 @@ +--- setup.py 10 Sep 2002 13:13:11 -0000 1.1.1.1 ++++ setup.py 10 Sep 2002 13:14:03 -0000 1.2 +@@ -21,7 +21,7 @@ + ext = Extension('spread', ['spreadmodule.c'], + include_dirs = [SPREAD_DIR + "/include"], + library_dirs = [SPREAD_DIR + "/lib"], +- libraries = ['tsp'], ++ libraries = ['tspread'], + ) + + setup(name = "Spread API for Python",