Index: Mk/bsd.python.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.python.mk,v retrieving revision 1.84 diff -u -r1.84 Mk/bsd.python.mk --- Mk/bsd.python.mk 9 Oct 2006 14:27:26 -0000 1.84 +++ Mk/bsd.python.mk 10 Oct 2006 14:03:52 -0000 @@ -132,6 +132,14 @@ # - Arguments to install with distutils. # default: -c -O1 --prefix=${PREFIX} # +# PYDISTUTILS_PKGNAME +# - Internal name in the distutils for egg-info. +# default: ${PORTNAME} +# +# PYDISTUTILS_PKGVERSION +# - Internal version in the distutils for egg-info. +# default: ${PORTVERSION} +# # PYSETUP - Name of the setup script used by the distutils package. # default: setup.py # @@ -379,10 +387,17 @@ PYTHONPREFIX_LIBDIR= ${PYTHON_LIBDIR:S;${PYTHONBASE};${PREFIX};} PYTHONPREFIX_SITELIBDIR= ${PYTHON_SITELIBDIR:S;${PYTHONBASE};${PREFIX};} +# distutils/setuptools support PYSETUP?= setup.py PYDISTUTILS_CONFIGUREARGS?= PYDISTUTILS_BUILDARGS?= PYDISTUTILS_INSTALLARGS?= -c -O1 --prefix=${PREFIX} +PYDISTUTILS_PKGNAME?= ${PORTNAME} +PYDISTUTILS_PKGVERSION?=${PORTVERSION} + +.if !defined(PYDISTUTILS_NOEGGINFO) && defined(PYTHON_REL) && ${PYTHON_REL} >= 250 +PLIST_FILES+= ${PYTHON_SITELIBDIR:S;${PYTHONBASE}/;;}/${PYDISTUTILS_PKGNAME:S/-/_/g}-${PYDISTUTILS_PKGVERSION}-${PYTHON_VERSION:S/thon//}.egg-info +.endif # Zope-related variables .if defined(USE_ZOPE) Index: archivers/py-bzip2/Makefile =================================================================== RCS file: /home/pcvs/ports/archivers/py-bzip2/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- archivers/py-bzip2/Makefile 6 Feb 2004 13:10:42 -0000 1.6 +++ archivers/py-bzip2/Makefile 10 Oct 2006 13:54:33 -0000 @@ -20,5 +20,6 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-bz2 .include Index: archivers/py-lzma/Makefile =================================================================== RCS file: /home/pcvs/ports/archivers/py-lzma/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- archivers/py-lzma/Makefile 3 May 2006 05:14:03 -0000 1.3 +++ archivers/py-lzma/Makefile 10 Oct 2006 13:54:33 -0000 @@ -17,6 +17,8 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pylzma +PYDISTUTILS_PKGVERSION= 0.0.1 post-patch: ${FIND} ${WRKSRC} -name '*.cpp' -or -name '*.c' -or \ Index: astro/py-metar/Makefile =================================================================== RCS file: /home/pcvs/ports/astro/py-metar/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- astro/py-metar/Makefile 3 May 2006 05:14:06 -0000 1.11 +++ astro/py-metar/Makefile 10 Oct 2006 13:54:33 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pymetar .include Index: audio/mbox/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/mbox/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- audio/mbox/Makefile 12 Jan 2006 12:54:05 -0000 1.8 +++ audio/mbox/Makefile 10 Oct 2006 13:54:33 -0000 @@ -24,5 +24,6 @@ USE_PYDISTUTILS=yes USE_BZIP2= yes WRKSRC= ${WRKDIR}/mBox-${PORTVERSION} +PYDISTUTILS_PKGNAME= mBox .include Index: audio/py-ao/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-ao/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- audio/py-ao/Makefile 29 Sep 2006 22:01:19 -0000 1.13 +++ audio/py-ao/Makefile 10 Oct 2006 13:54:33 -0000 @@ -20,6 +20,7 @@ PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/aomodule.so USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyao do-configure: @cd ${WRKSRC} && ${PYTHON_CMD} config_unix.py --prefix "${LOCALBASE}" Index: audio/py-cddb/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-cddb/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- audio/py-cddb/Makefile 27 Sep 2003 15:23:47 -0000 1.3 +++ audio/py-cddb/Makefile 10 Oct 2006 13:54:33 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= CDDB .include Index: audio/py-eyed3/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-eyed3/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- audio/py-eyed3/Makefile 22 Apr 2006 04:22:47 -0000 1.8 +++ audio/py-eyed3/Makefile 10 Oct 2006 13:54:33 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= 2.4- USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= eyeD3 USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= PYTHON="${PYTHON_CMD}" Index: audio/py-flac/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-flac/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- audio/py-flac/Makefile 23 Sep 2006 20:41:35 -0000 1.4 +++ audio/py-flac/Makefile 10 Oct 2006 13:54:33 -0000 @@ -21,6 +21,7 @@ USE_GMAKE= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pyflac .include Index: audio/py-id3/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-id3/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- audio/py-id3/Makefile 25 Feb 2003 06:25:27 -0000 1.2 +++ audio/py-id3/Makefile 10 Oct 2006 13:54:33 -0000 @@ -19,5 +19,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= ID3 .include Index: audio/py-karaoke/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-karaoke/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- audio/py-karaoke/Makefile 7 Apr 2006 08:36:16 -0000 1.1 +++ audio/py-karaoke/Makefile 10 Oct 2006 13:54:33 -0000 @@ -25,5 +25,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pykaraoke .include Index: audio/py-libtunepimp/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-libtunepimp/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- audio/py-libtunepimp/Makefile 21 Sep 2006 04:50:10 -0000 1.6 +++ audio/py-libtunepimp/Makefile 10 Oct 2006 13:54:34 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= tunepimp BUILD_WRKSRC= ${WRKSRC}/python INSTALL_WRKSRC= ${BUILD_WRKSRC} Index: audio/py-mad/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-mad/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- audio/py-mad/Makefile 3 May 2006 05:14:26 -0000 1.12 +++ audio/py-mad/Makefile 10 Oct 2006 13:54:34 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pymad .include Index: audio/py-musicbrainz/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-musicbrainz/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- audio/py-musicbrainz/Makefile 28 Aug 2006 00:16:45 -0000 1.13 +++ audio/py-musicbrainz/Makefile 10 Oct 2006 13:54:34 -0000 @@ -28,6 +28,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-musicbrainz PYDISTUTILS_BUILDARGS= build_ext -I${LOCALBASE}/include -L${LOCALBASE}/lib DESCR= ${PORTSDIR}/audio/libmusicbrainz/pkg-descr Index: audio/py-musicbrainz2/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-musicbrainz2/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- audio/py-musicbrainz2/Makefile 13 Sep 2006 03:21:33 -0000 1.2 +++ audio/py-musicbrainz2/Makefile 10 Oct 2006 13:54:34 -0000 @@ -21,5 +21,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-musicbrainz2 .include Index: audio/py-mutagen/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-mutagen/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- audio/py-mutagen/Makefile 4 Oct 2006 06:00:32 -0000 1.6 +++ audio/py-mutagen/Makefile 10 Oct 2006 13:54:34 -0000 @@ -16,6 +16,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGVERSION= 1.8.-1 MAN1= mutagen-inspect.1 mutagen-pony.1 mid3v2.1 moggsplit.1 \ mid3iconv.1 Index: audio/py-ogg/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-ogg/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- audio/py-ogg/Makefile 29 Sep 2006 22:01:19 -0000 1.10 +++ audio/py-ogg/Makefile 10 Oct 2006 13:54:34 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyogg do-configure: @cd ${WRKSRC} && ${PYTHON_CMD} config_unix.py --prefix ${LOCALBASE} Index: audio/py-openal/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-openal/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- audio/py-openal/Makefile 21 Aug 2006 16:07:02 -0000 1.9 +++ audio/py-openal/Makefile 10 Oct 2006 13:54:34 -0000 @@ -22,6 +22,7 @@ DIST_SUBDIR= python USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyOpenAL WRKSRC= ${WRKDIR}/PyOpenAL-${PORTVERSION} EXAMPLESDIR= ${PREFIX}/share/examples/py-openal Index: audio/py-sdl_mixer/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-sdl_mixer/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- audio/py-sdl_mixer/Makefile 20 Sep 2006 11:20:35 -0000 1.7 +++ audio/py-sdl_mixer/Makefile 10 Oct 2006 13:54:34 -0000 @@ -23,6 +23,7 @@ USE_SDL= sdl mixer USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysdl_mixer WRKSRC= ${WRKDIR}/pysdl_mixer-${PORTVERSION} EXAMPLESDIR= ${PREFIX}/share/examples/py-sdl-mixer Index: audio/py-vorbis/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-vorbis/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- audio/py-vorbis/Makefile 29 Sep 2006 22:01:19 -0000 1.10 +++ audio/py-vorbis/Makefile 10 Oct 2006 13:54:34 -0000 @@ -22,6 +22,7 @@ PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/ogg/vorbis.so USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyvorbis USE_GCC= 3.4 do-configure: Index: audio/py-xmms/Makefile =================================================================== RCS file: /home/pcvs/ports/audio/py-xmms/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- audio/py-xmms/Makefile 7 Mar 2006 08:25:49 -0000 1.17 +++ audio/py-xmms/Makefile 10 Oct 2006 13:54:34 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyxmms USE_BZIP2= yes USE_GNOME= glib12 XMMS_CONFIG?= ${X11BASE}/bin/xmms-config Index: cad/pythoncad/Makefile =================================================================== RCS file: /home/pcvs/ports/cad/pythoncad/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- cad/pythoncad/Makefile 4 Jun 2006 15:41:11 -0000 1.12 +++ cad/pythoncad/Makefile 10 Oct 2006 13:54:34 -0000 @@ -19,6 +19,8 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PythonCAD +PYDISTUTILS_PKGVERSION= DS1-R${PORTVERSION} post-install: ${INSTALL_SCRIPT} ${WRKSRC}/gtkpycad.py ${PREFIX}/bin/gtkpycad Index: comms/py-bulksms/Makefile =================================================================== RCS file: /home/pcvs/ports/comms/py-bulksms/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- comms/py-bulksms/Makefile 20 Feb 2005 08:24:59 -0000 1.6 +++ comms/py-bulksms/Makefile 10 Oct 2006 13:54:34 -0000 @@ -16,6 +16,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= BulkSMS +PYDISTUTILS_PKGVERSION= 1.0 WRKSRC= ${WRKDIR}/bulksms Index: comms/py-lirc/Makefile =================================================================== RCS file: /home/pcvs/ports/comms/py-lirc/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- comms/py-lirc/Makefile 9 Apr 2005 23:09:58 -0000 1.4 +++ comms/py-lirc/Makefile 10 Oct 2006 13:54:34 -0000 @@ -27,5 +27,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pylirc .include Index: comms/py-serial/Makefile =================================================================== RCS file: /home/pcvs/ports/comms/py-serial/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- comms/py-serial/Makefile 10 Oct 2005 14:47:41 -0000 1.14 +++ comms/py-serial/Makefile 10 Oct 2006 13:54:34 -0000 @@ -21,5 +21,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pyserial .include Index: databases/pgworksheet/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/pgworksheet/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- databases/pgworksheet/Makefile 5 Sep 2006 04:43:13 -0000 1.6 +++ databases/pgworksheet/Makefile 10 Oct 2006 13:54:34 -0000 @@ -21,6 +21,7 @@ USE_GNOME= pygtk2 USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGVERSION=1.8 post-patch: ${REINPLACE_CMD} -e \ Index: databases/py-MySQLdb/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-MySQLdb/Makefile,v retrieving revision 1.33 diff -u -r1.33 Makefile --- databases/py-MySQLdb/Makefile 23 Apr 2006 00:28:58 -0000 1.33 +++ databases/py-MySQLdb/Makefile 10 Oct 2006 13:54:34 -0000 @@ -19,6 +19,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_MYSQL= yes +PYDISTUTILS_PKGNAME= MySQL-python +PYDISTUTILS_PKGVERSION= ${DISTVERSION} CONFLICTS= py*-MySQLdb-devel-[0-9]* Index: databases/py-MySQLdb-devel/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-MySQLdb-devel/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- databases/py-MySQLdb-devel/Makefile 21 Sep 2006 02:48:52 -0000 1.38 +++ databases/py-MySQLdb-devel/Makefile 10 Oct 2006 13:54:34 -0000 @@ -20,6 +20,8 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes USE_MYSQL= yes +PYDISTUTILS_PKGNAME= MySQL-python +PYDISTUTILS_PKGVERSION= ${DISTVERSION} CONFLICTS= py*-MySQLdb-[0-9]* Index: databases/py-PySQLite10/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-PySQLite10/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- databases/py-PySQLite10/Makefile 10 Jul 2006 03:07:29 -0000 1.13 +++ databases/py-PySQLite10/Makefile 10 Oct 2006 13:54:34 -0000 @@ -25,6 +25,7 @@ WRKSRC= ${WRKDIR}/pysqlite USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysqlite MAKE_ENV= LOCALBASE="${LOCALBASE}" PORTDOCS= * Index: databases/py-PySQLite11/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-PySQLite11/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- databases/py-PySQLite11/Makefile 10 Jul 2006 03:07:29 -0000 1.16 +++ databases/py-PySQLite11/Makefile 10 Oct 2006 13:54:34 -0000 @@ -24,6 +24,7 @@ WRKSRC= ${WRKDIR}/pysqlite USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pysqlite MAKE_ENV= LOCALBASE="${LOCALBASE}" PORTDOCS= * Index: databases/py-axiom/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-axiom/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- databases/py-axiom/Makefile 13 Sep 2006 03:21:35 -0000 1.2 +++ databases/py-axiom/Makefile 10 Oct 2006 13:54:34 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Axiom USE_TWISTED= yes NO_BUILD= yes Index: databases/py-bsddb/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-bsddb/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- databases/py-bsddb/Makefile 22 Apr 2006 04:39:05 -0000 1.9 +++ databases/py-bsddb/Makefile 10 Oct 2006 13:54:35 -0000 @@ -20,6 +20,7 @@ USE_BDB= yes USE_PYTHON= 2.3+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= _bsddb DIST_SUBDIR= python WRKSRC= ${PYTHON_WRKSRC}/Modules MD5_FILE= ${PORTSDIR}/lang/python/distinfo Index: databases/py-cdb/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-cdb/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- databases/py-cdb/Makefile 10 Oct 2003 13:42:36 -0000 1.6 +++ databases/py-cdb/Makefile 10 Oct 2006 13:54:35 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-cdb DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} Index: databases/py-dbutils/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-dbutils/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- databases/py-dbutils/Makefile 3 Jan 2006 22:12:27 -0000 1.1 +++ databases/py-dbutils/Makefile 10 Oct 2006 13:54:35 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= DBUtils .include Index: databases/py-forgetsql/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-forgetsql/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- databases/py-forgetsql/Makefile 20 Nov 2004 17:07:29 -0000 1.1 +++ databases/py-forgetsql/Makefile 10 Oct 2006 13:54:35 -0000 @@ -25,6 +25,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= forgetSQL DOCS= BUGS README TODO Index: databases/py-memcached/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-memcached/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- databases/py-memcached/Makefile 22 Sep 2006 02:20:26 -0000 1.7 +++ databases/py-memcached/Makefile 10 Oct 2006 13:54:35 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= python-memcached .include Index: databases/py-mssql/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-mssql/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- databases/py-mssql/Makefile 4 May 2006 21:40:05 -0000 1.8 +++ databases/py-mssql/Makefile 10 Oct 2006 13:54:35 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pymssql post-patch: ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \ Index: databases/py-sqlalchemy/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-sqlalchemy/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- databases/py-sqlalchemy/Makefile 9 Sep 2006 10:37:39 -0000 1.3 +++ databases/py-sqlalchemy/Makefile 10 Oct 2006 13:54:35 -0000 @@ -21,6 +21,7 @@ PYTHONVERSION=${_PYTHON_VERSION} \ EXAMPLEDIR=share/examples/${PORTNAME} USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SQLAlchemy BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools Index: databases/py-sqlite3/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-sqlite3/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- databases/py-sqlite3/Makefile 7 Aug 2006 02:23:05 -0000 1.2 +++ databases/py-sqlite3/Makefile 10 Oct 2006 13:54:35 -0000 @@ -23,6 +23,7 @@ DIST_SUBDIR= python USE_PYTHON= 2.5+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= _sqlite3 WRKSRC= ${PYTHON_WRKSRC}/Modules MD5_FILE= ${PORTSDIR}/lang/python/distinfo Index: databases/py-sqlobject/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/py-sqlobject/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- databases/py-sqlobject/Makefile 17 Nov 2005 17:48:26 -0000 1.7 +++ databases/py-sqlobject/Makefile 10 Oct 2006 13:54:35 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SQLObject DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: databases/zodb/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/zodb/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- databases/zodb/Makefile 20 Nov 2004 08:09:46 -0000 1.9 +++ databases/zodb/Makefile 10 Oct 2006 13:54:35 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= StandaloneZODB CONFLICTS= zodb*-3.* pre-install: Index: databases/zodb3/Makefile =================================================================== RCS file: /home/pcvs/ports/databases/zodb3/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- databases/zodb3/Makefile 17 Aug 2004 04:50:47 -0000 1.9 +++ databases/zodb3/Makefile 10 Oct 2006 13:54:35 -0000 @@ -18,5 +18,6 @@ CONFLICTS= zodb-1.* USE_PYTHON= 2.1+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= ZODB3 .include Index: deskutils/ljcharm/Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/ljcharm/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- deskutils/ljcharm/Makefile 26 Nov 2005 13:44:42 -0000 1.6 +++ deskutils/ljcharm/Makefile 10 Oct 2006 13:54:36 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 1.6.0 post-install: .if !defined(NOPORTDOCS) Index: deskutils/py-dosage/Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/py-dosage/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- deskutils/py-dosage/Makefile 20 Aug 2006 09:33:39 -0000 1.9 +++ deskutils/py-dosage/Makefile 10 Oct 2006 13:54:36 -0000 @@ -16,6 +16,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= Dosage MAN1= mainline.1 Index: deskutils/pybookreader/Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/pybookreader/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- deskutils/pybookreader/Makefile 5 Oct 2006 06:22:53 -0000 1.1 +++ deskutils/pybookreader/Makefile 10 Oct 2006 13:54:36 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes USE_GNOME= pygtk2 +PYDISTUTILS_PKGNAME= PyBookReader .include Index: deskutils/pypanel/Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/pypanel/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- deskutils/pypanel/Makefile 4 May 2006 21:40:17 -0000 1.2 +++ deskutils/pypanel/Makefile 10 Oct 2006 13:54:36 -0000 @@ -24,6 +24,7 @@ USE_X_PREFIX= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyPanel PORTDOCS= * Index: devel/bazaar-ng/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/bazaar-ng/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- devel/bazaar-ng/Makefile 2 Oct 2006 18:17:53 -0000 1.12 +++ devel/bazaar-ng/Makefile 10 Oct 2006 13:54:36 -0000 @@ -19,6 +19,8 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= bzr +PYDISTUTILS_PKGVERSION= 0.11.0 MAN1= bzr.1 Index: devel/bisongen/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/bisongen/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/bisongen/Makefile 9 Jun 2006 21:07:10 -0000 1.2 +++ devel/bisongen/Makefile 10 Oct 2006 13:54:36 -0000 @@ -17,6 +17,7 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= BisonGen post-install: ${MKDIR} ${EXAMPLESDIR} Index: devel/bzrtools/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/bzrtools/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/bzrtools/Makefile 2 Oct 2006 18:18:52 -0000 1.6 +++ devel/bzrtools/Makefile 10 Oct 2006 13:54:36 -0000 @@ -19,5 +19,7 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= BzrTools +PYDISTUTILS_PKGVERSION= 0.6.1 .include Index: devel/codeville/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/codeville/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/codeville/Makefile 15 Jul 2006 12:29:01 -0000 1.6 +++ devel/codeville/Makefile 10 Oct 2006 13:54:36 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Codeville PORTDOCS= \ LICENSE.txt Index: devel/drpython/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/drpython/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/drpython/Makefile 14 Apr 2006 18:14:52 -0000 1.4 +++ devel/drpython/Makefile 10 Oct 2006 13:54:36 -0000 @@ -21,6 +21,7 @@ USE_ZIP= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= DrPython post-install: @${ECHO} '#!/bin/sh' > ${WRKDIR}/drpython.sh Index: devel/newt/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/newt/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- devel/newt/Makefile 9 Oct 2006 12:11:00 -0000 1.28 +++ devel/newt/Makefile 10 Oct 2006 13:54:37 -0000 @@ -33,6 +33,7 @@ PYTHONSUFFIX= -${PYTHON_PKGNAMEPREFIX:S/-//} BUILD_DEPENDS+= ${PYDISTUTILS} USE_PYTHON= yes +PYDISTUTILS_PKGVERSION=0.50.33 MAKE_ENV+= WITH_PYTHON=yes PLIST_SUB+= PYTHONOPT="" .else Index: devel/nx/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/nx/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/nx/Makefile 5 Nov 2005 05:21:30 -0000 1.3 +++ devel/nx/Makefile 10 Oct 2006 13:54:37 -0000 @@ -27,6 +27,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= networkx DOCSDIR= ${PREFIX}/share/doc/networkx-${PORTVERSION} PORTDOCS= * Index: devel/py-asn1/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-asn1/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-asn1/Makefile 28 May 2006 06:40:18 -0000 1.2 +++ devel/py-asn1/Makefile 10 Oct 2006 13:54:37 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyasn1 DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: devel/py-bison/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-bison/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-bison/Makefile 21 Nov 2005 04:38:20 -0000 1.2 +++ devel/py-bison/Makefile 10 Oct 2006 13:54:37 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 0.1 .if !defined(NOPORTDOCS) DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} Index: devel/py-celementtree/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-celementtree/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-celementtree/Makefile 20 Feb 2006 02:08:42 -0000 1.2 +++ devel/py-celementtree/Makefile 10 Oct 2006 13:54:37 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 1.0.5-20051216 EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: devel/py-cheetah/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-cheetah/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/py-cheetah/Makefile 17 Dec 2005 03:28:36 -0000 1.3 +++ devel/py-cheetah/Makefile 10 Oct 2006 13:54:37 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= Cheetah .include Index: devel/py-clientcookie/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-clientcookie/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/py-clientcookie/Makefile 12 May 2005 04:07:58 -0000 1.3 +++ devel/py-clientcookie/Makefile 10 Oct 2006 13:54:37 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= 2.0+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= ClientCookie post-install: @${FIND} ${PYTHON_SITELIBDIR}/ClientCookie ! -type d | \ Index: devel/py-cxx/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-cxx/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/py-cxx/Makefile 16 Sep 2005 15:32:20 -0000 1.7 +++ devel/py-cxx/Makefile 10 Oct 2006 13:54:37 -0000 @@ -19,6 +19,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= CXX +PYDISTUTILS_PKGVERSION= 5.3 .if !defined(NOPORTDOCS) PORTDOCS= * Index: devel/py-dateutil/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-dateutil/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/py-dateutil/Makefile 20 Nov 2005 04:16:11 -0000 1.7 +++ devel/py-dateutil/Makefile 10 Oct 2006 13:54:37 -0000 @@ -19,6 +19,7 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-dateutil #FETCH_BEFORE_ARGS= -o ${DISTNAME}${EXTRACT_SUFX} Index: devel/py-dialog/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-dialog/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/py-dialog/Makefile 6 Dec 2005 15:33:30 -0000 1.9 +++ devel/py-dialog/Makefile 10 Oct 2006 13:54:37 -0000 @@ -23,6 +23,7 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pythondialog EXAMPLESDIR= ${PREFIX}/share/examples/py-dialog Index: devel/py-elementtree/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-elementtree/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-elementtree/Makefile 2 Mar 2005 16:20:25 -0000 1.1 +++ devel/py-elementtree/Makefile 10 Oct 2006 13:54:38 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 1.2-20040618 DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} Index: devel/py-epsilon/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-epsilon/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-epsilon/Makefile 13 Sep 2006 03:21:35 -0000 1.2 +++ devel/py-epsilon/Makefile 10 Oct 2006 13:54:38 -0000 @@ -20,5 +20,6 @@ USE_PYDISTUTILS= yes USE_TWISTED= yes NO_BUILD= yes +PYDISTUTILS_PKGNAME= Epsilon .include Index: devel/py-fam/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-fam/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/py-fam/Makefile 5 Nov 2005 05:20:06 -0000 1.6 +++ devel/py-fam/Makefile 10 Oct 2006 13:54:38 -0000 @@ -22,6 +22,7 @@ USE_FAM= yes pre-patch: - ${INSTALL_DATA} ${FILESDIR}/setup.py ${WRKSRC} + ${SED} -e 's,%%PORTVERSION%%,${PORTVERSION},g' ${FILESDIR}/setup.py \ + >${WRKSRC}/setup.py .include Index: devel/py-fam/files/setup.py =================================================================== RCS file: /home/pcvs/ports/devel/py-fam/files/setup.py,v retrieving revision 1.1 diff -u -r1.1 setup.py --- devel/py-fam/files/setup.py 8 Oct 2002 11:05:28 -0000 1.1 +++ devel/py-fam/files/setup.py 10 Oct 2006 13:54:38 -0000 @@ -2,7 +2,7 @@ from distutils.core import setup, Extension import os LOCALBASE = os.environ.get('LOCALBASE', '/usr/local') -setup(name = "fam", ext_modules = [ +setup(name = "fam", version = "%%PORTVERSION%%", ext_modules = [ Extension("_fam", ["_fam.c"], include_dirs=[LOCALBASE + '/include'], libraries=['fam'], library_dirs=[LOCALBASE + '/lib'], Index: devel/py-fileutils/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-fileutils/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/py-fileutils/Makefile 16 Aug 2006 15:31:32 -0000 1.7 +++ devel/py-fileutils/Makefile 10 Oct 2006 13:54:38 -0000 @@ -19,5 +19,6 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= FileUtils .include Index: devel/py-flakes/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-flakes/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-flakes/Makefile 13 Sep 2006 03:21:35 -0000 1.2 +++ devel/py-flakes/Makefile 10 Oct 2006 13:54:38 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyflakes NO_BUILD= yes .include Index: devel/py-fortran/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-fortran/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/py-fortran/Makefile 20 Feb 2003 17:07:03 -0000 1.4 +++ devel/py-fortran/Makefile 10 Oct 2006 13:54:38 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Pyfort WRKSRC= ${WRKDIR}/${DISTNAME:S/p/P/} .include Index: devel/py-freebsd/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-freebsd/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/py-freebsd/Makefile 9 Dec 2005 03:45:08 -0000 1.11 +++ devel/py-freebsd/Makefile 10 Oct 2006 13:54:38 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= py-freebsd PLIST_FILES= %%PYTHON_SITELIBDIR%%/freebsd.so \ %%PYTHON_SITELIBDIR%%/freebsd_compat02.py \ Index: devel/py-fusefs/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-fusefs/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-fusefs/Makefile 30 Jul 2006 22:45:58 -0000 1.2 +++ devel/py-fusefs/Makefile 10 Oct 2006 13:54:38 -0000 @@ -21,5 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes USE_GNOME= pkgconfig +PYDISTUTILS_PKGNAME= fuse-python +PYDISTUTILS_PKGVERSION= 0.2pre1 .include Index: devel/py-game/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-game/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- devel/py-game/Makefile 20 Sep 2006 11:20:40 -0000 1.31 +++ devel/py-game/Makefile 10 Oct 2006 13:54:39 -0000 @@ -24,6 +24,8 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes USE_XLIB= yes +PYDISTUTILS_PKGNAME= pygame +PYDISTUTILS_PKGVERSION= ${PORTVERSION}release do-configure: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} config.py Index: devel/py-generate/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-generate/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-generate/Makefile 29 Aug 2006 16:21:13 -0000 1.1 +++ devel/py-generate/Makefile 10 Oct 2006 13:54:39 -0000 @@ -21,5 +21,6 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/generate.so USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 2.2 .include Index: devel/py-grouch/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-grouch/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/py-grouch/Makefile 30 Aug 2006 21:39:45 -0000 1.6 +++ devel/py-grouch/Makefile 10 Oct 2006 13:54:39 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Grouch .include Index: devel/py-kjbuckets/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-kjbuckets/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- devel/py-kjbuckets/Makefile 7 Mar 2003 06:01:07 -0000 1.13 +++ devel/py-kjbuckets/Makefile 10 Oct 2006 13:54:39 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 2.2 WRKSRC= ${WRKDIR}/${DISTNAME}/kjbuckets post-install: Index: devel/py-levenshtein/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-levenshtein/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-levenshtein/Makefile 31 Aug 2006 18:06:42 -0000 1.1 +++ devel/py-levenshtein/Makefile 10 Oct 2006 13:54:39 -0000 @@ -20,5 +20,6 @@ USE_PYTHON= 2.2+ USE_PYTHON_PREFIX= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-Levenshtein .include Index: devel/py-logilab-common/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-logilab-common/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/py-logilab-common/Makefile 22 Apr 2006 04:54:43 -0000 1.5 +++ devel/py-logilab-common/Makefile 10 Oct 2006 13:54:39 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= 2.1+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= common post-extract: ${TOUCH} ${WRKSRC}/test/__init__.py Index: devel/py-mx-experimental/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-mx-experimental/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/py-mx-experimental/Makefile 4 May 2006 21:41:03 -0000 1.11 +++ devel/py-mx-experimental/Makefile 10 Oct 2006 13:54:39 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= egenix-mx-experimental post-patch: @${REINPLACE_CMD} -e "s|LIBGMPH|${PREFIX}/include|" ${WRKSRC}/mxEXPERIMENTAL.py Index: devel/py-ncurses/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-ncurses/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/py-ncurses/Makefile 4 May 2006 21:41:03 -0000 1.7 +++ devel/py-ncurses/Makefile 10 Oct 2006 13:54:39 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyncurses .include Index: devel/py-ocempgui/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-ocempgui/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/py-ocempgui/Makefile 13 Sep 2006 09:02:44 -0000 1.3 +++ devel/py-ocempgui/Makefile 10 Oct 2006 13:54:39 -0000 @@ -23,6 +23,7 @@ USE_GCC= 3.4+ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= OcempGUI post-patch: .if defined(NOPORTDOCS) Index: devel/py-parsing/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-parsing/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/py-parsing/Makefile 9 Oct 2006 11:46:41 -0000 1.7 +++ devel/py-parsing/Makefile 10 Oct 2006 13:54:39 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pyparsing DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: devel/py-pqueue/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-pqueue/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/py-pqueue/Makefile 19 Feb 2005 18:12:46 -0000 1.6 +++ devel/py-pqueue/Makefile 10 Oct 2006 13:54:39 -0000 @@ -23,6 +23,7 @@ WRKSRC= ${WRKDIR}/PQueue post-patch: - ${CP} ${FILESDIR}/setup.py ${WRKSRC} + ${SED} -e 's,%%PORTVERSION%%,${PORTVERSION},g' ${FILESDIR}/setup.py \ + >${WRKSRC}/setup.py .include Index: devel/py-pqueue/files/setup.py =================================================================== RCS file: /home/pcvs/ports/devel/py-pqueue/files/setup.py,v retrieving revision 1.1 diff -u -r1.1 setup.py --- devel/py-pqueue/files/setup.py 19 Feb 2005 18:12:47 -0000 1.1 +++ devel/py-pqueue/files/setup.py 10 Oct 2006 13:54:40 -0000 @@ -1,3 +1,4 @@ from distutils.core import setup, Extension setup(name = "pqueue", + version = "%%PORTVERSION%%", ext_modules = [Extension('pqueue', ['pqueuemodule.c'])]) Index: devel/py-protocols/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-protocols/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-protocols/Makefile 18 Jul 2005 21:08:05 -0000 1.1 +++ devel/py-protocols/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyProtocols .include Index: devel/py-pydasm/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-pydasm/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-pydasm/Makefile 4 Apr 2006 17:42:48 -0000 1.1 +++ devel/py-pydasm/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,6 +18,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGVERSION=1.2 .if !defined(WITHOUT_EXAMPLES) PLIST_SUB+= EXAMPLES="" Index: devel/py-repl/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-repl/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/py-repl/Makefile 31 May 2004 11:09:54 -0000 1.4 +++ devel/py-repl/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pyrepl .include Index: devel/py-resourcepackage/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-resourcepackage/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-resourcepackage/Makefile 17 Feb 2004 07:41:50 -0000 1.1 +++ devel/py-resourcepackage/Makefile 10 Oct 2006 13:54:40 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= ResourcePackage post-install: @${FIND} ${PYTHON_SITELIBDIR}/resourcepackage -type f | \ Index: devel/py-reverse/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-reverse/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- devel/py-reverse/Makefile 23 Jan 2006 07:04:09 -0000 1.14 +++ devel/py-reverse/Makefile 10 Oct 2006 13:54:40 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyreverse post-install: @${FIND} ${PYTHON_SITELIBDIR}/logilab/pyreverse ! -type d | \ Index: devel/py-ro/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-ro/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- devel/py-ro/Makefile 22 Apr 2006 05:09:06 -0000 1.13 +++ devel/py-ro/Makefile 10 Oct 2006 13:54:40 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Pyro DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} Index: devel/py-sendfile/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-sendfile/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/py-sendfile/Makefile 29 Jun 2005 03:31:58 -0000 1.4 +++ devel/py-sendfile/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,6 +18,8 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= py-sendfile +PYDISTUTILS_PKGVERSION= 1.0 PLIST_FILES= %%PYTHON_SITELIBDIR%%/sendfile.so Index: devel/py-simpleparse/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-simpleparse/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-simpleparse/Makefile 17 Apr 2006 18:02:18 -0000 1.2 +++ devel/py-simpleparse/Makefile 10 Oct 2006 13:54:40 -0000 @@ -21,5 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SimpleParse +PYDISTUTILS_PKGVERSION= 2.1.0a1 .include Index: devel/py-simpletal/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-simpletal/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-simpletal/Makefile 15 Jul 2006 08:27:54 -0000 1.1 +++ devel/py-simpletal/Makefile 10 Oct 2006 13:54:40 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= SimpleTAL .include Index: devel/py-simpy/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-simpy/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/py-simpy/Makefile 29 Sep 2006 22:01:21 -0000 1.6 +++ devel/py-simpy/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SimPy .if !defined(NOPORTDOCS) PORTDOCS= * Index: devel/py-statgrab/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-statgrab/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- devel/py-statgrab/Makefile 20 Mar 2006 10:18:18 -0000 1.10 +++ devel/py-statgrab/Makefile 10 Oct 2006 13:54:40 -0000 @@ -27,5 +27,6 @@ DIST_SUBDIR= i-scream USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pystatgrab .include Index: devel/py-twisted/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-twisted/Makefile,v retrieving revision 1.33 diff -u -r1.33 Makefile --- devel/py-twisted/Makefile 6 May 2006 22:39:07 -0000 1.33 +++ devel/py-twisted/Makefile 10 Oct 2006 13:54:40 -0000 @@ -29,6 +29,8 @@ USE_BZIP2= yes USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Twisted +PYDISTUTILS_PKGVERSION= 1.3.0rc1 PLIST_SUB+= S=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} Index: devel/py-twistedCore/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-twistedCore/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/py-twistedCore/Makefile 30 May 2006 15:44:29 -0000 1.9 +++ devel/py-twistedCore/Makefile 10 Oct 2006 13:54:40 -0000 @@ -30,6 +30,7 @@ USE_BZIP2= yes USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Twisted PLIST_SUB+= S=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} Index: devel/py-unit/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-unit/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/py-unit/Makefile 29 Jan 2005 17:37:56 -0000 1.5 +++ devel/py-unit/Makefile 10 Oct 2006 13:54:40 -0000 @@ -20,5 +20,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyUnit .include Index: devel/py-urwid/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-urwid/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- devel/py-urwid/Makefile 8 Oct 2006 15:06:42 -0000 1.10 +++ devel/py-urwid/Makefile 10 Oct 2006 13:54:40 -0000 @@ -15,6 +15,7 @@ USE_PYTHON= 2.1+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 0.9.7 post-patch: @# disable setuptools for now Index: devel/py-utils/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-utils/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-utils/Makefile 20 Mar 2006 19:22:13 -0000 1.1 +++ devel/py-utils/Makefile 10 Oct 2006 13:54:40 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pythonutils WRKSRC= ${WRKDIR}/pythonutils-${PORTVERSION} USE_ZIP= yes Index: devel/py-vmaps/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-vmaps/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/py-vmaps/Makefile 20 Feb 2003 17:07:04 -0000 1.5 +++ devel/py-vmaps/Makefile 10 Oct 2006 13:54:40 -0000 @@ -19,6 +19,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Vmaps +PYDISTUTILS_PKGVERSION= 1.0 .if !defined(NOPORTDOCS) post-install: Index: devel/py-wsgiutils/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-wsgiutils/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-wsgiutils/Makefile 15 Jul 2006 08:35:58 -0000 1.1 +++ devel/py-wsgiutils/Makefile 10 Oct 2006 13:54:40 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= WSGIUtils PLIST_SUB= PORTVERSION=${PORTVERSION} \ PYTHON_VERSION_NR=${_PYTHON_PORTBRANCH} Index: devel/py-xdg/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-xdg/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- devel/py-xdg/Makefile 4 May 2006 21:41:03 -0000 1.16 +++ devel/py-xdg/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pyxdg post-patch: @${REINPLACE_CMD} -e \ Index: devel/py-yaml/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-yaml/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/py-yaml/Makefile 4 Sep 2006 15:59:44 -0000 1.11 +++ devel/py-yaml/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyYAML .include Index: devel/py-zconfig/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-zconfig/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/py-zconfig/Makefile 11 Sep 2005 19:32:47 -0000 1.1 +++ devel/py-zconfig/Makefile 10 Oct 2006 13:54:40 -0000 @@ -18,5 +18,6 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= ZConfig .include Index: devel/py-zopeInterface/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-zopeInterface/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/py-zopeInterface/Makefile 15 Apr 2005 05:10:21 -0000 1.2 +++ devel/py-zopeInterface/Makefile 10 Oct 2006 13:54:40 -0000 @@ -19,6 +19,7 @@ WRKSRC= ${WRKDIR}/ZopeInterface-${PORTVERSION} USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= zope.interface PLIST_SUB+= S=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} Index: devel/pychecker/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/pychecker/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- devel/pychecker/Makefile 21 Sep 2006 19:36:47 -0000 1.19 +++ devel/pychecker/Makefile 10 Oct 2006 13:54:41 -0000 @@ -16,6 +16,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyChecker DOCS= CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS README TODO VERSION Index: devel/pyrex/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/pyrex/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- devel/pyrex/Makefile 4 May 2006 21:41:04 -0000 1.23 +++ devel/pyrex/Makefile 10 Oct 2006 13:54:41 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= Pyrex post-install: @# precompile lexicon pickle Index: devel/pyumlgraph/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/pyumlgraph/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/pyumlgraph/Makefile 28 Feb 2005 09:40:29 -0000 1.2 +++ devel/pyumlgraph/Makefile 10 Oct 2006 13:54:41 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyUMLGraph PLIST_FILES= bin/pyumlgraph PORTDOCS= * Index: devel/tpg/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/tpg/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- devel/tpg/Makefile 21 Sep 2006 09:04:50 -0000 1.14 +++ devel/tpg/Makefile 10 Oct 2006 13:54:41 -0000 @@ -16,6 +16,7 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= TPG NO_BUILD= yes Index: dns/py-adns/Makefile =================================================================== RCS file: /home/pcvs/ports/dns/py-adns/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- dns/py-adns/Makefile 24 Apr 2006 02:43:51 -0000 1.14 +++ dns/py-adns/Makefile 10 Oct 2006 13:54:41 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= adns-python PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g} post-patch: Index: dns/py-dns/Makefile =================================================================== RCS file: /home/pcvs/ports/dns/py-dns/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- dns/py-dns/Makefile 2 Nov 2004 22:05:12 -0000 1.4 +++ dns/py-dns/Makefile 10 Oct 2006 13:54:41 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pydns DOCS= README.txt README-guido.txt DOCSDIR= ${PREFIX}/share/doc/py-dns Index: emulators/xgngeo/Makefile =================================================================== RCS file: /home/pcvs/ports/emulators/xgngeo/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- emulators/xgngeo/Makefile 2 Oct 2006 03:14:36 -0000 1.4 +++ emulators/xgngeo/Makefile 10 Oct 2006 13:54:41 -0000 @@ -24,6 +24,7 @@ USE_PYTHON= yes USE_GETTEXT= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= XGngeo NO_BUILD= yes .include Index: finance/tinyerp-server/Makefile =================================================================== RCS file: /home/pcvs/ports/finance/tinyerp-server/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- finance/tinyerp-server/Makefile 24 Mar 2006 09:26:01 -0000 1.2 +++ finance/tinyerp-server/Makefile 10 Oct 2006 13:54:41 -0000 @@ -30,6 +30,7 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGVERSION=3.2.0 MAN1= tinyerp-server.1 Index: ftp/py-curl/Makefile =================================================================== RCS file: /home/pcvs/ports/ftp/py-curl/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- ftp/py-curl/Makefile 22 Apr 2006 05:20:19 -0000 1.24 +++ ftp/py-curl/Makefile 10 Oct 2006 13:54:41 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pycurl USE_OPENSSL= yes DOCSDIR= ${PREFIX}/share/doc/py-curl Index: games/balazar/Makefile =================================================================== RCS file: /home/pcvs/ports/games/balazar/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- games/balazar/Makefile 20 Sep 2006 11:20:53 -0000 1.7 +++ games/balazar/Makefile 10 Oct 2006 13:54:41 -0000 @@ -33,6 +33,7 @@ USE_GL= yes USE_SDL= sdl mixer USE_GETTEXT= yes +PYDISTUTILS_PKGNAME= Balazar post-patch: @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX},g" ${WRKSRC}/setup.cfg Index: games/balazarbrothers/Makefile =================================================================== RCS file: /home/pcvs/ports/games/balazarbrothers/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- games/balazarbrothers/Makefile 21 Aug 2006 16:02:29 -0000 1.4 +++ games/balazarbrothers/Makefile 10 Oct 2006 13:54:41 -0000 @@ -31,6 +31,7 @@ USE_GL= yes USE_GMAKE= yes +PYDISTUTILS_PKGNAME= BalazarBrothers DATADIR= share/balazar_brothers OPTIONS= OPENAL "Use openal sound system" on \ Index: games/gnomesudoku/Makefile =================================================================== RCS file: /home/pcvs/ports/games/gnomesudoku/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- games/gnomesudoku/Makefile 26 Jul 2006 20:15:28 -0000 1.8 +++ games/gnomesudoku/Makefile 10 Oct 2006 13:54:41 -0000 @@ -30,6 +30,7 @@ USE_X_PREFIX= yes USE_PYTHON= 2.4+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= gnome-sudoku USE_GNOME= gnomehack gnomeprefix pygnome2 pygnomedesktop .if !defined(DISPLAY) Index: games/slune/Makefile =================================================================== RCS file: /home/pcvs/ports/games/slune/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- games/slune/Makefile 20 Sep 2006 11:21:27 -0000 1.8 +++ games/slune/Makefile 10 Oct 2006 13:54:42 -0000 @@ -27,6 +27,7 @@ USE_GETTEXT= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Slune USE_GL= yes USE_SDL= sdl mixer Index: graphics/py-amanith/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-amanith/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- graphics/py-amanith/Makefile 26 Sep 2006 15:54:41 -0000 1.1 +++ graphics/py-amanith/Makefile 10 Oct 2006 13:54:42 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= PyAmanith post-patch: ${REINPLACE_CMD} -i "" -e 's|^swig-cpp.*|swig-opts = -c++|g' ${WRKSRC}/setup.cfg Index: graphics/py-cgkit/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-cgkit/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- graphics/py-cgkit/Makefile 10 May 2006 19:16:06 -0000 1.8 +++ graphics/py-cgkit/Makefile 10 Oct 2006 13:54:42 -0000 @@ -22,6 +22,7 @@ USE_XLIB= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 2.0.0alpha6 .if defined(INSTALL_CGKIT_LIGHT) PLIST_SUB+= CGKIT_LIGHT="@comment " Index: graphics/py-chart/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-chart/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- graphics/py-chart/Makefile 28 Jul 2006 06:36:04 -0000 1.11 +++ graphics/py-chart/Makefile 10 Oct 2006 13:54:42 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyChart pre-everything:: .if !defined(WITH_GHOSTSCRIPT_AFPL) || ${WITH_GHOSTSCRIPT_AFPL} != yes Index: graphics/py-editobj/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-editobj/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- graphics/py-editobj/Makefile 23 Jul 2006 02:45:21 -0000 1.5 +++ graphics/py-editobj/Makefile 10 Oct 2006 13:54:42 -0000 @@ -18,6 +18,7 @@ DIST_SUBDIR= python USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= EditObj WRKSRC= ${WRKDIR}/EditObj-${PORTVERSION} EXAMPLESDIR= ${PREFIX}/share/examples/py-editobj Index: graphics/py-freeimagepy/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-freeimagepy/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- graphics/py-freeimagepy/Makefile 18 Jun 2006 10:32:22 -0000 1.4 +++ graphics/py-freeimagepy/Makefile 10 Oct 2006 13:54:42 -0000 @@ -22,5 +22,7 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= FreeImagePy +PYDISTUTILS_PKGVERSION= 1.0.0 .include Index: graphics/py-gd/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-gd/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- graphics/py-gd/Makefile 7 May 2006 23:46:23 -0000 1.23 +++ graphics/py-gd/Makefile 10 Oct 2006 13:54:42 -0000 @@ -21,6 +21,7 @@ .endif USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= gdmodule USE_PYTHON_PREFIX= yes DISABLE_SIZE= yes PYSETUP= Setup.py Index: graphics/py-gdchart2/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-gdchart2/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- graphics/py-gdchart2/Makefile 7 May 2006 23:46:23 -0000 1.3 +++ graphics/py-gdchart2/Makefile 10 Oct 2006 13:54:42 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pygdchart post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/setup.py Index: graphics/py-graphviz/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-graphviz/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- graphics/py-graphviz/Makefile 29 Sep 2006 22:01:21 -0000 1.14 +++ graphics/py-graphviz/Makefile 10 Oct 2006 13:54:42 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pygraphviz PLIST_SUB= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S,^${LOCALBASE}/,,g} post-patch: Index: graphics/py-imaging/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-imaging/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- graphics/py-imaging/Makefile 5 May 2006 11:11:02 -0000 1.25 +++ graphics/py-imaging/Makefile 10 Oct 2006 13:54:42 -0000 @@ -25,6 +25,7 @@ DIST_SUBDIR= python USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= PIL PORTDOCS= * Index: graphics/py-ming/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-ming/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- graphics/py-ming/Makefile 18 Apr 2006 18:56:39 -0000 1.15 +++ graphics/py-ming/Makefile 10 Oct 2006 13:54:42 -0000 @@ -22,6 +22,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= mingc +PYDISTUTILS_PKGVERSION= 0.0.3a post-patch: @${REINPLACE_CMD} -e 's|/usr/local/|${LOCALBASE}/|g' ${WRKSRC}/setup.py Index: graphics/py-opengl/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-opengl/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- graphics/py-opengl/Makefile 1 Sep 2006 00:51:19 -0000 1.27 +++ graphics/py-opengl/Makefile 10 Oct 2006 13:54:42 -0000 @@ -30,6 +30,7 @@ USE_GL= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyOpenGL .include Index: graphics/py-soya3d/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/py-soya3d/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- graphics/py-soya3d/Makefile 20 Sep 2006 11:21:41 -0000 1.14 +++ graphics/py-soya3d/Makefile 10 Oct 2006 13:54:42 -0000 @@ -39,6 +39,7 @@ MAN1= soya_editor.1 INSTALL_DIR= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} SOYATUTVER= 0.12 +PYDISTUTILS_PKGNAME= Soya .if !defined(NOPORTDOCS) DISTFILES+= SoyaTutorial-${SOYATUTVER}${EXTRACT_SUFX} Index: irc/py-irclib/Makefile =================================================================== RCS file: /home/pcvs/ports/irc/py-irclib/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- irc/py-irclib/Makefile 22 Apr 2006 05:23:00 -0000 1.14 +++ irc/py-irclib/Makefile 10 Oct 2006 13:54:43 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= python-irclib EXAMPLEFILES= irccat irccat2 servermap testbot.py \ dccreceive dccsend Index: irc/py-supybot/Makefile =================================================================== RCS file: /home/pcvs/ports/irc/py-supybot/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- irc/py-supybot/Makefile 5 Aug 2006 15:27:18 -0000 1.6 +++ irc/py-supybot/Makefile 10 Oct 2006 13:54:43 -0000 @@ -19,6 +19,7 @@ USE_BZIP2= yes USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 0.83.1+darcs DOCS= ACKS ChangeLog INSTALL LICENSE README RELNOTES Index: japanese/kana-no-quiz/Makefile =================================================================== RCS file: /home/pcvs/ports/japanese/kana-no-quiz/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- japanese/kana-no-quiz/Makefile 6 Aug 2006 17:54:22 -0000 1.2 +++ japanese/kana-no-quiz/Makefile 10 Oct 2006 13:54:43 -0000 @@ -22,6 +22,7 @@ USE_GETTEXT= yes USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGVERSION=quiz post-extract: @${RM} -f ${WRKSRC}/GPL.txt Index: japanese/pycodec/Makefile =================================================================== RCS file: /home/pcvs/ports/japanese/pycodec/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- japanese/pycodec/Makefile 9 May 2006 00:18:01 -0000 1.18 +++ japanese/pycodec/Makefile 10 Oct 2006 13:54:43 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes DOCSDIR= ${PREFIX}/share/doc/ja-pycodec +PYDISTUTILS_PKGNAME= JapaneseCodecs post-patch: ${REINPLACE_CMD} -e 's,^static,static const,g' \ Index: japanese/trac/Makefile =================================================================== RCS file: /home/pcvs/ports/japanese/trac/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- japanese/trac/Makefile 4 Sep 2006 11:27:35 -0000 1.26 +++ japanese/trac/Makefile 10 Oct 2006 13:54:44 -0000 @@ -31,6 +31,7 @@ USE_ZIP= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= trac-ja MAN1= trac-admin.1 tracd.1 tracdb2env.1 Index: lang/f2py/Makefile =================================================================== RCS file: /home/pcvs/ports/lang/f2py/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- lang/f2py/Makefile 18 Feb 2005 11:19:02 -0000 1.9 +++ lang/f2py/Makefile 10 Oct 2006 13:54:44 -0000 @@ -19,6 +19,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= F2PY +PYDISTUTILS_PKGVERSION= 2.45.241_1926 PLIST_FILES= bin/f2py MAN1= f2py.1 Index: lang/py-mx-base/Makefile =================================================================== RCS file: /home/pcvs/ports/lang/py-mx-base/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- lang/py-mx-base/Makefile 15 Nov 2005 16:51:19 -0000 1.22 +++ lang/py-mx-base/Makefile 10 Oct 2006 13:54:44 -0000 @@ -22,6 +22,7 @@ .if defined(WITH_ZOPE) USE_ZOPE= yes .endif +PYDISTUTILS_PKGNAME= egenix-mx-base DOCDIR= ${PREFIX}/share/doc/py-mx MXHDRDIR= ${PYTHONPREFIX_SITELIBDIR}/mx/stdlib Index: mail/py-spf/Makefile =================================================================== RCS file: /home/pcvs/ports/mail/py-spf/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- mail/py-spf/Makefile 16 Sep 2005 17:58:30 -0000 1.3 +++ mail/py-spf/Makefile 10 Oct 2006 13:54:44 -0000 @@ -20,6 +20,7 @@ DIST_SUBDIR= python USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pyspf DOCSDIR?= ${PREFIX}/share/doc/py-${PORTNAME} Index: math/biggles/Makefile =================================================================== RCS file: /home/pcvs/ports/math/biggles/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- math/biggles/Makefile 16 Jun 2006 22:17:24 -0000 1.11 +++ math/biggles/Makefile 10 Oct 2006 13:54:45 -0000 @@ -21,5 +21,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python2-biggles .include Index: math/py-gnuplot/Makefile =================================================================== RCS file: /home/pcvs/ports/math/py-gnuplot/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- math/py-gnuplot/Makefile 4 Jan 2004 21:34:56 -0000 1.11 +++ math/py-gnuplot/Makefile 10 Oct 2006 13:54:45 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= gnuplot-py post-install: .if !defined(NOPORTDOCS) Index: math/py-gsl/Makefile =================================================================== RCS file: /home/pcvs/ports/math/py-gsl/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- math/py-gsl/Makefile 6 May 2006 01:28:21 -0000 1.15 +++ math/py-gsl/Makefile 10 Oct 2006 13:54:45 -0000 @@ -25,5 +25,6 @@ PLIST_SUB= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S,^${LOCALBASE}/,,g} USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pygsl .include Index: math/py-numeric/Makefile =================================================================== RCS file: /home/pcvs/ports/math/py-numeric/Makefile,v retrieving revision 1.48 diff -u -r1.48 Makefile --- math/py-numeric/Makefile 6 Feb 2006 11:57:02 -0000 1.48 +++ math/py-numeric/Makefile 10 Oct 2006 13:54:45 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= Numeric WRKSRC= ${WRKDIR}/Numeric-${PORTVERSION} Index: math/py-numeric17/Makefile =================================================================== RCS file: /home/pcvs/ports/math/py-numeric17/Makefile,v retrieving revision 1.36 diff -u -r1.36 Makefile --- math/py-numeric17/Makefile 7 Mar 2003 06:06:08 -0000 1.36 +++ math/py-numeric17/Makefile 10 Oct 2006 13:54:45 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes PYSETUP= setup_all.py +PYDISTUTILS_PKGNAME= Numeric NO_LATEST_LINK= yes DOCDIR= ${PREFIX}/share/doc/py-numeric Index: math/py-probstat/Makefile =================================================================== RCS file: /home/pcvs/ports/math/py-probstat/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- math/py-probstat/Makefile 5 Feb 2004 20:37:31 -0000 1.5 +++ math/py-probstat/Makefile 10 Oct 2006 13:54:45 -0000 @@ -22,5 +22,6 @@ PLIST_SUB= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S,^${LOCALBASE}/,,g} USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 0.9 .include Index: math/py-scientific/Makefile =================================================================== RCS file: /home/pcvs/ports/math/py-scientific/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- math/py-scientific/Makefile 15 Mar 2006 08:23:16 -0000 1.18 +++ math/py-scientific/Makefile 10 Oct 2006 13:54:45 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= ScientificPython DOCDIR= ${PREFIX}/share/doc/py-scientific EXAMPLEDIR= ${PREFIX}/share/examples/py-scientific Index: misc/py-osd/Makefile =================================================================== RCS file: /home/pcvs/ports/misc/py-osd/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- misc/py-osd/Makefile 10 May 2006 22:37:22 -0000 1.13 +++ misc/py-osd/Makefile 10 Oct 2006 13:54:45 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyosd PORTDOCS= AUTHORS ChangeLog ChangeLog.old README README.daemon pyosd.html DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} Index: multimedia/tovid/Makefile =================================================================== RCS file: /home/pcvs/ports/multimedia/tovid/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- multimedia/tovid/Makefile 30 Jul 2006 21:31:19 -0000 1.11 +++ multimedia/tovid/Makefile 10 Oct 2006 13:54:45 -0000 @@ -42,6 +42,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= libtovid GNU_CONFIGURE= yes MAN1= idvid.1 makedvd.1 makemenu.1 makeslides.1 makexml.1 postproc.1 \ Index: net-im/py-jabber/Makefile =================================================================== RCS file: /home/pcvs/ports/net-im/py-jabber/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- net-im/py-jabber/Makefile 9 Nov 2005 08:21:20 -0000 1.10 +++ net-im/py-jabber/Makefile 10 Oct 2006 13:54:45 -0000 @@ -21,6 +21,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= jabber.py +PYDISTUTILS_PKGVERSION= 0.3-1 post-install: @${ECHO} "jabber" > ${PYTHON_SITELIBDIR}/jabber.pth Index: net-im/py-msnp/Makefile =================================================================== RCS file: /home/pcvs/ports/net-im/py-msnp/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net-im/py-msnp/Makefile 9 Nov 2005 07:48:17 -0000 1.3 +++ net-im/py-msnp/Makefile 10 Oct 2006 13:54:45 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= msnp.py .if !defined(NOPORTDOCS) post-install: Index: net-mgmt/py-flowtools/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-flowtools/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net-mgmt/py-flowtools/Makefile 15 Nov 2005 12:11:03 -0000 1.6 +++ net-mgmt/py-flowtools/Makefile 10 Oct 2006 13:54:45 -0000 @@ -22,5 +22,6 @@ CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyflowtools .include Index: net-mgmt/py-ipy/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-ipy/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- net-mgmt/py-ipy/Makefile 14 Jun 2006 07:09:35 -0000 1.8 +++ net-mgmt/py-ipy/Makefile 10 Oct 2006 13:54:45 -0000 @@ -18,6 +18,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= IPy +PYDISTUTILS_PKGVERSION= 0.41 test: install ${PYTHON_CMD} ${WRKSRC}/test/test_IPy.py Index: net-mgmt/py-snmp/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-snmp/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- net-mgmt/py-snmp/Makefile 4 Sep 2006 20:19:45 -0000 1.20 +++ net-mgmt/py-snmp/Makefile 10 Oct 2006 13:54:45 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysnmp EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Index: net-mgmt/py-snmp2/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-snmp2/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net-mgmt/py-snmp2/Makefile 20 Aug 2006 09:31:23 -0000 1.1 +++ net-mgmt/py-snmp2/Makefile 10 Oct 2006 13:54:45 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysnmp EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} MYPORTDOCS= CHANGES LICENSE MANIFEST PKG-INFO README contribution/WARNING Index: net-mgmt/py-snmp4/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-snmp4/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- net-mgmt/py-snmp4/Makefile 29 Aug 2006 13:33:15 -0000 1.4 +++ net-mgmt/py-snmp4/Makefile 10 Oct 2006 13:54:45 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysnmp EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Index: net-mgmt/py-snmp4-apps/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-snmp4-apps/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net-mgmt/py-snmp4-apps/Makefile 29 May 2006 21:04:15 -0000 1.2 +++ net-mgmt/py-snmp4-apps/Makefile 10 Oct 2006 13:54:45 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysnmp-apps DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Index: net-mgmt/py-snmp4-mibs/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-snmp4-mibs/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net-mgmt/py-snmp4-mibs/Makefile 29 May 2006 20:57:51 -0000 1.2 +++ net-mgmt/py-snmp4-mibs/Makefile 10 Oct 2006 13:54:45 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pysnmp-mibs DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Index: net-mgmt/py-twistedSNMP/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/py-twistedSNMP/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net-mgmt/py-twistedSNMP/Makefile 15 May 2006 19:45:14 -0000 1.1 +++ net-mgmt/py-twistedSNMP/Makefile 10 Oct 2006 13:54:45 -0000 @@ -22,5 +22,6 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= TwistedSNMP .include Index: net-p2p/btqueue/Makefile =================================================================== RCS file: /home/pcvs/ports/net-p2p/btqueue/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- net-p2p/btqueue/Makefile 24 Jun 2006 14:40:00 -0000 1.14 +++ net-p2p/btqueue/Makefile 10 Oct 2006 13:54:45 -0000 @@ -20,6 +20,7 @@ CONFLICTS= py??-*[Bb]it[Tt]ornado* py??-*[Bb]it[Tt]orrent* USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= BTQueue DATADIR= ${PREFIX}/share/BTQueue DOCSDIR= ${PREFIX}/share/doc/BTQueue Index: net-p2p/py-fngrab/Makefile =================================================================== RCS file: /home/pcvs/ports/net-p2p/py-fngrab/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net-p2p/py-fngrab/Makefile 30 Jan 2006 21:36:25 -0000 1.6 +++ net-p2p/py-fngrab/Makefile 10 Oct 2006 13:54:46 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= FreenetGrab post-install: @${MV} ${PREFIX}/bin/fngrab.py ${PREFIX}/bin/fngrab Index: net-p2p/py-kenosis-bittorrent/Makefile =================================================================== RCS file: /home/pcvs/ports/net-p2p/py-kenosis-bittorrent/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- net-p2p/py-kenosis-bittorrent/Makefile 11 May 2006 22:49:50 -0000 1.28 +++ net-p2p/py-kenosis-bittorrent/Makefile 10 Oct 2006 13:54:46 -0000 @@ -23,6 +23,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= kenosis_BitTorrent +PYDISTUTILS_PKGVERSION= 3.4.2 WRKSRC= ${WRKDIR}/${DISTNAME}/bt Index: net-p2p/py-py2play/Makefile =================================================================== RCS file: /home/pcvs/ports/net-p2p/py-py2play/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net-p2p/py-py2play/Makefile 23 Jul 2006 02:45:21 -0000 1.6 +++ net-p2p/py-py2play/Makefile 10 Oct 2006 13:54:46 -0000 @@ -18,6 +18,7 @@ DIST_SUBDIR= python USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Py2Play EXAMPLESDIR= ${PREFIX}/share/examples/py-py2play post-install: Index: net-p2p/py-vertex/Makefile =================================================================== RCS file: /home/pcvs/ports/net-p2p/py-vertex/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net-p2p/py-vertex/Makefile 13 Sep 2006 03:21:37 -0000 1.2 +++ net-p2p/py-vertex/Makefile 10 Oct 2006 13:54:46 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Vertex USE_TWISTED= yes NO_BUILD= yes Index: net/py-GeoIP/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-GeoIP/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- net/py-GeoIP/Makefile 14 Aug 2006 22:26:36 -0000 1.7 +++ net/py-GeoIP/Makefile 10 Oct 2006 13:54:46 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= GeoIP-Python EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} EXAMPLE_FILES= README test.py test_city.py test_org.py test_region.py Index: net/py-google/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-google/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- net/py-google/Makefile 11 May 2006 22:49:22 -0000 1.9 +++ net/py-google/Makefile 10 Oct 2006 13:54:46 -0000 @@ -20,6 +20,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pygoogle +PYDISTUTILS_PKGVERSION= 0.5 .if !defined(NOPORTDOCS) PORTDOCS= * Index: net/py-ldap2/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-ldap2/Makefile,v retrieving revision 1.37 diff -u -r1.37 Makefile --- net/py-ldap2/Makefile 20 May 2006 07:41:57 -0000 1.37 +++ net/py-ldap2/Makefile 10 Oct 2006 13:54:46 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-ldap USE_OPENLDAP= yes REPLACE_ARGS= -e 's=/usr/local/openldap-REL_ENG_2_1/lib=${LOCALBASE}/lib=' \ Index: net/py-mantissa/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-mantissa/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net/py-mantissa/Makefile 13 Sep 2006 03:21:37 -0000 1.2 +++ net/py-mantissa/Makefile 10 Oct 2006 13:54:46 -0000 @@ -33,6 +33,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Mantissa USE_TWISTED= yes NO_BUILD= yes Index: net/py-pcap/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-pcap/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- net/py-pcap/Makefile 11 Oct 2005 12:08:08 -0000 1.16 +++ net/py-pcap/Makefile 10 Oct 2006 13:54:48 -0000 @@ -24,6 +24,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= pylibpcap WRKSRC= ${WRKDIR}/pylibpcap-${PORTVERSION} .include Index: net/py-rrdtool_lgpl/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-rrdtool_lgpl/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net/py-rrdtool_lgpl/Makefile 10 May 2005 06:10:21 -0000 1.6 +++ net/py-rrdtool_lgpl/Makefile 10 Oct 2006 13:54:48 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= py-rrdtool LIBDIR?= ${LOCALBASE}/lib # directory where librrd.so lives Index: net/py-samba/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-samba/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- net/py-samba/Makefile 4 Sep 2006 19:00:16 -0000 1.9 +++ net/py-samba/Makefile 10 Oct 2006 13:54:48 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= 2.1+ USE_PYDISTUTILS= yes PYSETUP= python/setup.py +PYDISTUTILS_PKGVERSION= Extensions CONFIGURE_ARGS+= --with-python Index: net/py-soappy/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-soappy/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- net/py-soappy/Makefile 16 Sep 2005 17:58:31 -0000 1.5 +++ net/py-soappy/Makefile 10 Oct 2006 13:54:48 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SOAPpy BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/fpconst.py:${PORTSDIR}/math/py-fpconst RUN_DEPENDS+= ${PYXML} \ Index: net/py-soappy-devel/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-soappy-devel/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- net/py-soappy-devel/Makefile 16 Sep 2005 17:58:31 -0000 1.5 +++ net/py-soappy-devel/Makefile 10 Oct 2006 13:54:48 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SOAPpy BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/fpconst.py:${PORTSDIR}/math/py-fpconst RUN_DEPENDS+= ${PYXML} \ Index: net/py-spreadmodule/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-spreadmodule/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- net/py-spreadmodule/Makefile 5 Sep 2006 05:03:52 -0000 1.7 +++ net/py-spreadmodule/Makefile 10 Oct 2006 13:54:48 -0000 @@ -22,6 +22,7 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/spread.so USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= SpreadModule post-patch: @${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/setup.py Index: net/py-tofu/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-tofu/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- net/py-tofu/Makefile 23 Jul 2006 02:45:22 -0000 1.7 +++ net/py-tofu/Makefile 10 Oct 2006 13:54:48 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_TWISTED= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Tofu WRKSRC= ${WRKDIR}/Tofu-${PORTVERSION} EXAMPLESDIR= ${PREFIX}/share/examples/py-tofu Index: net/py-xmlrpc/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-xmlrpc/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- net/py-xmlrpc/Makefile 22 Apr 2003 08:05:02 -0000 1.13 +++ net/py-xmlrpc/Makefile 10 Oct 2006 13:54:49 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= py-xmlrpc EXAMPLESDIR= ${PREFIX}/share/examples/py-xmlrpc .if !defined(NOPORTDOCS) Index: net/py-zsi/Makefile =================================================================== RCS file: /home/pcvs/ports/net/py-zsi/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- net/py-zsi/Makefile 8 Apr 2006 14:44:20 -0000 1.10 +++ net/py-zsi/Makefile 10 Oct 2006 13:54:49 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= 2.0+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= ZSI post-install: .if !defined(NOPORTDOCS) Index: net/pygopherd/Makefile =================================================================== RCS file: /home/pcvs/ports/net/pygopherd/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- net/pygopherd/Makefile 11 May 2006 22:49:23 -0000 1.9 +++ net/pygopherd/Makefile 10 Oct 2006 13:54:49 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 1.1.0 WRKSRC= ${WRKDIR}/${PORTNAME} MAN8= pygopherd.8 Index: net/splatd/Makefile =================================================================== RCS file: /home/pcvs/ports/net/splatd/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net/splatd/Makefile 23 Jun 2006 08:51:01 -0000 1.1 +++ net/splatd/Makefile 10 Oct 2006 13:54:50 -0000 @@ -22,6 +22,8 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= splat +PYDISTUTILS_PKGVERSION= 1.0beta5 USE_RC_SUBR= splatd.sh SUB_LIST= PYTHON_CMD=${PYTHON_CMD} MAN5= splat.conf.5 Index: net/tcpwatch/Makefile =================================================================== RCS file: /home/pcvs/ports/net/tcpwatch/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net/tcpwatch/Makefile 9 Aug 2004 14:02:33 -0000 1.2 +++ net/tcpwatch/Makefile 10 Oct 2006 13:54:50 -0000 @@ -20,5 +20,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGVERSION=1.2.1 .include Index: print/py-fonttools/Makefile =================================================================== RCS file: /home/pcvs/ports/print/py-fonttools/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- print/py-fonttools/Makefile 19 Feb 2003 09:25:27 -0000 1.5 +++ print/py-fonttools/Makefile 10 Oct 2006 13:54:50 -0000 @@ -26,6 +26,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= FontTools +PYDISTUTILS_PKGVERSION= 1.0 DOCDIR= ${PREFIX}/share/doc/py-fonttools Index: print/py-reportlab/Makefile =================================================================== RCS file: /home/pcvs/ports/print/py-reportlab/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- print/py-reportlab/Makefile 13 May 2006 01:03:15 -0000 1.24 +++ print/py-reportlab/Makefile 10 Oct 2006 13:54:50 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes +PYDISTUTILS_PKGNAME= Reportlab WRKSRC= ${WRKDIR}/reportlab_${PORTVERSION:S/./_/}/reportlab MAKE_ENV= PACKAGE_PATH="${REPORTLABDIR}" Index: print/py-rtf/Makefile =================================================================== RCS file: /home/pcvs/ports/print/py-rtf/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- print/py-rtf/Makefile 11 May 2005 11:27:28 -0000 1.1 +++ print/py-rtf/Makefile 10 Oct 2006 13:54:50 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyRTF EXAMPLESDIR= ${PREFIX}/share/examples/py-rtf Index: print/ttfquery/Makefile =================================================================== RCS file: /home/pcvs/ports/print/ttfquery/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- print/ttfquery/Makefile 5 Nov 2004 13:15:58 -0000 1.2 +++ print/ttfquery/Makefile 10 Oct 2006 13:54:50 -0000 @@ -21,5 +21,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= TTFQuery .include Index: science/mayavi/Makefile =================================================================== RCS file: /home/pcvs/ports/science/mayavi/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- science/mayavi/Makefile 23 Aug 2006 12:32:53 -0000 1.9 +++ science/mayavi/Makefile 10 Oct 2006 13:54:50 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= MayaVi CPIO_ARGS= --quiet -pdum -R post-install: Index: science/mmtk/Makefile =================================================================== RCS file: /home/pcvs/ports/science/mmtk/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- science/mmtk/Makefile 13 May 2006 04:14:56 -0000 1.5 +++ science/mmtk/Makefile 10 Oct 2006 13:54:50 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= MMTK .include Index: science/py-paida/Makefile =================================================================== RCS file: /home/pcvs/ports/science/py-paida/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- science/py-paida/Makefile 14 Apr 2006 18:14:57 -0000 1.3 +++ science/py-paida/Makefile 10 Oct 2006 13:54:50 -0000 @@ -22,5 +22,6 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 3.2.1_2.8 .include Index: science/py-scipy/Makefile =================================================================== RCS file: /home/pcvs/ports/science/py-scipy/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- science/py-scipy/Makefile 7 Oct 2006 23:56:10 -0000 1.9 +++ science/py-scipy/Makefile 10 Oct 2006 13:54:50 -0000 @@ -27,6 +27,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= SciPy_complete OPTIONS= ATLAS "Use optimized blas library" OFF post-patch: Index: security/denyhosts/Makefile =================================================================== RCS file: /home/pcvs/ports/security/denyhosts/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- security/denyhosts/Makefile 30 Jun 2006 17:13:22 -0000 1.5 +++ security/denyhosts/Makefile 10 Oct 2006 13:54:51 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= DenyHosts USE_RC_SUBR= denyhosts Index: security/py-cerealizer/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-cerealizer/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- security/py-cerealizer/Makefile 28 Jul 2006 20:28:58 -0000 1.5 +++ security/py-cerealizer/Makefile 10 Oct 2006 13:54:51 -0000 @@ -19,5 +19,6 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Cerealizer .include Index: security/py-clamav/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-clamav/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- security/py-clamav/Makefile 25 Apr 2006 21:16:24 -0000 1.6 +++ security/py-clamav/Makefile 10 Oct 2006 13:54:51 -0000 @@ -20,6 +20,7 @@ DIST_SUBDIR= python USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyclamav PYDISTUTILS_BUILDARGS= build_ext -I${LOCALBASE}/include -L${LOCALBASE}/lib Index: security/py-crack/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-crack/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- security/py-crack/Makefile 26 May 2006 20:44:44 -0000 1.4 +++ security/py-crack/Makefile 10 Oct 2006 13:54:51 -0000 @@ -33,6 +33,9 @@ MAKE_ENV= "CPPFLAGS=-I${LOCALBASE}/include -fPIC" \ "LDFLAGS=-L${LOCALBASE}/lib" +post-patch: + ${REINPLACE_CMD} -e 's/setup(/setup(name="${PORTNAME}",version="${PORTVERSION}",/' ${WRKSRC}/${PYSETUP} + post-install: ${INSTALL_DATA} ${WRKSRC}/crack.py ${PYTHONPREFIX_SITELIBDIR} Index: security/py-fchksum/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-fchksum/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- security/py-fchksum/Makefile 16 May 2004 15:00:44 -0000 1.10 +++ security/py-fchksum/Makefile 10 Oct 2006 13:54:51 -0000 @@ -19,5 +19,6 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/fchksum.so USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-fchksum .include Index: security/py-gnupg/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-gnupg/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- security/py-gnupg/Makefile 29 Jan 2005 17:37:56 -0000 1.9 +++ security/py-gnupg/Makefile 10 Oct 2006 13:54:51 -0000 @@ -19,5 +19,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= GnuPGInterface .include Index: security/py-m2crypto/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-m2crypto/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- security/py-m2crypto/Makefile 10 Jul 2006 16:01:24 -0000 1.15 +++ security/py-m2crypto/Makefile 10 Oct 2006 13:54:51 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS=yes USE_OPENSSL= yes +PYDISTUTILS_PKGNAME= M2Crypto post-patch: @${REINPLACE_CMD} "s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|g" ${WRKSRC}/SWIG/Makefile Index: security/py-mcrypt/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-mcrypt/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- security/py-mcrypt/Makefile 13 May 2006 04:15:14 -0000 1.8 +++ security/py-mcrypt/Makefile 10 Oct 2006 13:54:51 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes PYDISTUTILS_BUILDARGS= -L${LOCALBASE}/lib +PYDISTUTILS_PKGNAME= python-mcrypt CFLAGS+= -I${LOCALBASE}/include PLIST_FILES= %%PYTHON_SITELIBDIR%%/mcrypt.so Index: security/py-mhash/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-mhash/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- security/py-mhash/Makefile 18 Jul 2005 18:59:33 -0000 1.8 +++ security/py-mhash/Makefile 10 Oct 2006 13:54:51 -0000 @@ -22,6 +22,7 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/mhash.so USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= python-mhash CFLAGS+= -I${LOCALBASE}/include MAKE_ENV= "LDFLAGS=-L${LOCALBASE}/lib" Index: security/py-openssl/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-openssl/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- security/py-openssl/Makefile 15 Aug 2004 07:24:07 -0000 1.6 +++ security/py-openssl/Makefile 10 Oct 2006 13:54:51 -0000 @@ -21,5 +21,6 @@ USE_PYTHON_PREFIX= yes USE_PYDISTUTILS= yes USE_OPENSSL= yes +PYDISTUTILS_PKGNAME= pyOpenSSL .include Index: security/py-posix1e/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-posix1e/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- security/py-posix1e/Makefile 13 May 2006 04:15:14 -0000 1.3 +++ security/py-posix1e/Makefile 10 Oct 2006 13:54:51 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pylibacl .include Index: security/py-pow/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-pow/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- security/py-pow/Makefile 10 Sep 2006 23:44:28 -0000 1.8 +++ security/py-pow/Makefile 10 Oct 2006 13:54:51 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_OPENSSL= yes +PYDISTUTILS_PKGNAME= POW PORTDOCS= POW.pdf Index: security/py-twistedConch/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-twistedConch/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- security/py-twistedConch/Makefile 30 May 2006 15:56:27 -0000 1.4 +++ security/py-twistedConch/Makefile 10 Oct 2006 13:54:51 -0000 @@ -24,6 +24,7 @@ USE_BZIP2= yes USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Conch PLIST_SUB+= S=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} Index: security/py-xmlsec/Makefile =================================================================== RCS file: /home/pcvs/ports/security/py-xmlsec/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- security/py-xmlsec/Makefile 5 Sep 2006 16:49:44 -0000 1.6 +++ security/py-xmlsec/Makefile 10 Oct 2006 13:54:51 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= 2.2+ USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pyxmlsec DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: textproc/py-4suite/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-4suite/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- textproc/py-4suite/Makefile 4 Jul 2006 08:30:03 -0000 1.20 +++ textproc/py-4suite/Makefile 10 Oct 2006 13:54:51 -0000 @@ -22,6 +22,8 @@ REINPLACE_ARGS= -i "" -E USE_PYTHON= 2.2.1+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= 4Suite +PYDISTUTILS_PKGVERSION= 1.0b1 CONFLICTS= py*-4Suite-1* py*-xml-0.7* Index: textproc/py-4suite-xml/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-4suite-xml/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- textproc/py-4suite-xml/Makefile 13 May 2006 04:24:48 -0000 1.5 +++ textproc/py-4suite-xml/Makefile 10 Oct 2006 13:54:51 -0000 @@ -22,6 +22,8 @@ REINPLACE_ARGS= -i "" -E USE_PYTHON= 2.2.1+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= 4Suite +PYDISTUTILS_PKGVERSION= 1.0b3 WRKSRC= ${WRKDIR}/4Suite-1.0b3 CONFLICTS= py*-4suite-[01]* Index: textproc/py-dsv/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-dsv/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- textproc/py-dsv/Makefile 20 Jul 2005 14:47:49 -0000 1.7 +++ textproc/py-dsv/Makefile 10 Oct 2006 13:54:51 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= DSV DSV_BASEDIR= ${PYTHONPREFIX_SITELIBDIR}/DSV post-install: Index: textproc/py-empy/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-empy/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/py-empy/Makefile 13 Jul 2005 09:33:46 -0000 1.1 +++ textproc/py-empy/Makefile 10 Oct 2006 13:54:51 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= 1.5+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 3.1 .include Index: textproc/py-enchant/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-enchant/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/py-enchant/Makefile 6 Apr 2006 15:05:08 -0000 1.1 +++ textproc/py-enchant/Makefile 10 Oct 2006 13:54:51 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyenchant PYDISTUTILS_INSTALL_TARGET= install_lib PYDISTUTILS_INSTALLARGS= Index: textproc/py-excelerator/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-excelerator/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- textproc/py-excelerator/Makefile 26 Oct 2005 13:15:18 -0000 1.5 +++ textproc/py-excelerator/Makefile 10 Oct 2006 13:54:51 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS= yes USE_ZIP= yes +PYDISTUTILS_PKGNAME= pyExcelerator WRKSRC= ${WRKDIR}/pyExcelerator-${PORTVERSION} .if !defined(NOPORTDOCS) Index: textproc/py-expat/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-expat/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- textproc/py-expat/Makefile 30 Jan 2006 23:19:59 -0000 1.15 +++ textproc/py-expat/Makefile 10 Oct 2006 13:54:51 -0000 @@ -23,10 +23,12 @@ PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/pyexpat.so USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pyexpat WRKSRC= ${PYTHON_WRKSRC}/Modules MD5_FILE= ${PORTSDIR}/lang/python/distinfo post-extract: - @${CP} ${FILESDIR}/setup.py ${WRKSRC} + @${SED} -e 's,%%PORTVERSION%%,${PORTVERSION},' ${FILESDIR}/setup.py \ + >${WRKSRC}/${PYSETUP} .include Index: textproc/py-expat/files/setup.py =================================================================== RCS file: /home/pcvs/ports/textproc/py-expat/files/setup.py,v retrieving revision 1.1 diff -u -r1.1 setup.py --- textproc/py-expat/files/setup.py 1 Mar 2001 12:32:43 -0000 1.1 +++ textproc/py-expat/files/setup.py 10 Oct 2006 13:54:51 -0000 @@ -19,6 +19,7 @@ libs = ["expat"] setup(name = "pyexpat", + version = "%%PORTVERSION%%", description = "Interface to the Expat XML parser", ext_modules = [Extension("pyexpat", ["pyexpat.c"], Index: textproc/py-ltxml/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-ltxml/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- textproc/py-ltxml/Makefile 15 Aug 2006 01:04:54 -0000 1.11 +++ textproc/py-ltxml/Makefile 10 Oct 2006 13:54:51 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_LDCONFIG= yes +PYDISTUTILS_PKGNAME= PyLTXML DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: textproc/py-reverend/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-reverend/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/py-reverend/Makefile 1 May 2006 12:56:49 -0000 1.1 +++ textproc/py-reverend/Makefile 10 Oct 2006 13:54:51 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Reverend EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: textproc/py-rss2gen/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-rss2gen/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- textproc/py-rss2gen/Makefile 19 May 2006 23:48:21 -0000 1.3 +++ textproc/py-rss2gen/Makefile 10 Oct 2006 13:54:51 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= PyRSS2Gen .include Index: textproc/py-rxp/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-rxp/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- textproc/py-rxp/Makefile 19 Mar 2006 07:44:11 -0000 1.11 +++ textproc/py-rxp/Makefile 10 Oct 2006 13:54:51 -0000 @@ -19,6 +19,8 @@ NO_WRKSUBDIR= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pyRXP +PYDISTUTILS_PKGVERSION= 0.5 EXAMPLESDIR= ${PREFIX}/share/examples/py-rxp DOCSDIR= ${PREFIX}/share/doc/py-rxp Index: textproc/py-sgrep/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-sgrep/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- textproc/py-sgrep/Makefile 1 May 2006 16:47:56 -0000 1.6 +++ textproc/py-sgrep/Makefile 10 Oct 2006 13:54:51 -0000 @@ -23,6 +23,8 @@ GNU_CONFIGURE= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pysgrep +PYDISTUTILS_PKGVERSION= 1.0a post-extract: @${TAR} -zxf ${_DISTDIR}/pysgrep.tar.gz -C ${WRKSRC} Index: textproc/py-syck/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-syck/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- textproc/py-syck/Makefile 8 Aug 2006 11:35:24 -0000 1.5 +++ textproc/py-syck/Makefile 10 Oct 2006 13:54:52 -0000 @@ -24,6 +24,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Syck +PYDISTUTILS_PKGVERSION= 1.0 WRKSRC= ${WRKDIR}/${DISTNAME}/ext/python .include Index: textproc/py-tvgrab/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-tvgrab/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- textproc/py-tvgrab/Makefile 5 Aug 2005 12:23:31 -0000 1.4 +++ textproc/py-tvgrab/Makefile 10 Oct 2006 13:54:52 -0000 @@ -22,6 +22,7 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pytvgrab-lib PORTDOCS= README Index: textproc/py-wordnet/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-wordnet/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- textproc/py-wordnet/Makefile 19 Mar 2006 08:45:18 -0000 1.9 +++ textproc/py-wordnet/Makefile 10 Oct 2006 13:54:52 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pywordnet WRKSRC= ${WRKDIR}/py${PORTNAME}-${PORTVERSION} PLIST_SUB= WNDATA=${WORDNETDATA} Index: textproc/py-xlwriter/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-xlwriter/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/py-xlwriter/Makefile 14 May 2005 16:31:39 -0000 1.1 +++ textproc/py-xlwriter/Makefile 10 Oct 2006 13:54:52 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_ZIP= yes +PYDISTUTILS_PKGNAME= pyXLWriter post-install: ${MKDIR} ${EXAMPLESDIR} Index: textproc/py-xml/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-xml/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- textproc/py-xml/Makefile 17 Dec 2004 08:44:49 -0000 1.28 +++ textproc/py-xml/Makefile 10 Oct 2006 13:54:52 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= 2.1+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= PyXML .include Index: textproc/py-xmltv/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-xmltv/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- textproc/py-xmltv/Makefile 9 Dec 2005 02:27:12 -0000 1.2 +++ textproc/py-xmltv/Makefile 10 Oct 2006 13:54:52 -0000 @@ -20,6 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-xmltv .ifndef(NOPORTDOCS) PORTDOCS= README.txt Index: textproc/py-zpt/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/py-zpt/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/py-zpt/Makefile 11 Mar 2005 20:57:15 -0000 1.1 +++ textproc/py-zpt/Makefile 10 Oct 2006 13:54:52 -0000 @@ -20,5 +20,10 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes WRKSRC= ${WRKDIR}/ZopePageTemplates +PYDISTUTILS_PKGNAME= ZopePageTemplates + +post-patch: + ${REINPLACE_CMD} -e 's/maintainer/version="${PORTVERSION}",maintainer/g' \ + ${WRKSRC}/${PYSETUP} .include Index: textproc/silvercity/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/silvercity/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- textproc/silvercity/Makefile 23 Jan 2006 18:40:23 -0000 1.5 +++ textproc/silvercity/Makefile 10 Oct 2006 13:54:52 -0000 @@ -19,5 +19,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_DOS2UNIX= yes +PYDISTUTILS_PKGNAME= SilverCity .include Index: textproc/xxdiff-scripts/Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/xxdiff-scripts/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/xxdiff-scripts/Makefile 13 Aug 2006 19:09:58 -0000 1.1 +++ textproc/xxdiff-scripts/Makefile 10 Oct 2006 13:54:52 -0000 @@ -19,5 +19,6 @@ USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= xxdiff-scripts .include Index: www/feedjack/Makefile =================================================================== RCS file: /home/pcvs/ports/www/feedjack/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/feedjack/Makefile 5 Aug 2006 10:07:21 -0000 1.2 +++ www/feedjack/Makefile 10 Oct 2006 13:54:52 -0000 @@ -22,6 +22,7 @@ DIST_SUBDIR= python USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Feedjack PLIST_SUB= FEEDJACKVER=${PORTVERSION} \ PYTHONVER=${_PYTHON_VERSION} Index: www/google-sitemapgen/Makefile =================================================================== RCS file: /home/pcvs/ports/www/google-sitemapgen/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/google-sitemapgen/Makefile 17 Feb 2006 09:01:57 -0000 1.3 +++ www/google-sitemapgen/Makefile 10 Oct 2006 13:54:52 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= YES USE_PYDISTUTILS=YES +PYDISTUTILS_PKGNAME= sitemap_gen .include Index: www/moinmoin/Makefile =================================================================== RCS file: /home/pcvs/ports/www/moinmoin/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- www/moinmoin/Makefile 28 Sep 2006 17:20:59 -0000 1.31 +++ www/moinmoin/Makefile 10 Oct 2006 13:54:52 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= moin PLIST_SUB+= PYTHON_SITELIB=${PYTHON_SITELIBDIR:S|^${LOCALBASE}/||} SUB_FILES= pkg-install Index: www/py-beautifulsoup/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-beautifulsoup/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/py-beautifulsoup/Makefile 23 Jun 2006 08:59:29 -0000 1.3 +++ www/py-beautifulsoup/Makefile 10 Oct 2006 13:54:52 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= BeautifulSoup .include Index: www/py-cherrypy/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-cherrypy/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/py-cherrypy/Makefile 27 Apr 2006 13:52:44 -0000 1.4 +++ www/py-cherrypy/Makefile 10 Oct 2006 13:54:52 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= CherryPy LN_OPTS= -sf RM_OPTS= -r Index: www/py-clientform/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-clientform/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/py-clientform/Makefile 29 Apr 2005 06:50:06 -0000 1.2 +++ www/py-clientform/Makefile 10 Oct 2006 13:54:52 -0000 @@ -17,5 +17,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= ClientForm .include Index: www/py-django/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-django/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- www/py-django/Makefile 3 Aug 2006 19:37:48 -0000 1.8 +++ www/py-django/Makefile 10 Oct 2006 13:54:52 -0000 @@ -22,6 +22,7 @@ USE_PYTHON= 2.3+ USE_GETTEXT= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Django NO_BUILD= yes DOCSDIR= ${PREFIX}/share/doc/py-django DJANGOVER?= ${PORTVERSION} Index: www/py-forgethtml/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-forgethtml/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/py-forgethtml/Makefile 20 Nov 2004 17:12:15 -0000 1.1 +++ www/py-forgethtml/Makefile 10 Oct 2006 13:54:52 -0000 @@ -18,6 +18,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= forgetHTML +PYDISTUTILS_PKGVERSION= 0.8 WRKSRC= ${WRKDIR}/${PORTNAME} Index: www/py-formencode/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-formencode/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/py-formencode/Makefile 21 Nov 2005 23:44:55 -0000 1.2 +++ www/py-formencode/Makefile 10 Oct 2006 13:54:53 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= FormEncode DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESSDIR= ${PREFIX}/share/examples/py-${PORTNAME} Index: www/py-htmltestcase/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-htmltestcase/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/py-htmltestcase/Makefile 25 Jun 2004 08:58:59 -0000 1.1 +++ www/py-htmltestcase/Makefile 10 Oct 2006 13:54:53 -0000 @@ -20,5 +20,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= HtmlTestCase .include Index: www/py-imdbpy/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-imdbpy/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- www/py-imdbpy/Makefile 28 Sep 2006 01:28:19 -0000 1.12 +++ www/py-imdbpy/Makefile 10 Oct 2006 13:54:53 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= IMDbPY WRKSRC= ${WRKDIR}/IMDbPY-${PORTVERSION} .if !defined(NOPORTDOCS) Index: www/py-mechanize/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-mechanize/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/py-mechanize/Makefile 29 Apr 2005 07:06:01 -0000 1.1 +++ www/py-mechanize/Makefile 10 Oct 2006 13:54:53 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 0.0.9a post-install: @${FIND} ${PYTHON_SITELIBDIR}/mechanize ! -type d | \ Index: www/py-nevow/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-nevow/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/py-nevow/Makefile 13 Sep 2006 03:21:38 -0000 1.4 +++ www/py-nevow/Makefile 10 Oct 2006 13:54:53 -0000 @@ -18,6 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Nevow USE_TWISTED= yes USE_GETTEXT= yes NO_BUILD= yes Index: www/py-openssl-proxy/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-openssl-proxy/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/py-openssl-proxy/Makefile 30 Jul 2006 22:46:03 -0000 1.2 +++ www/py-openssl-proxy/Makefile 10 Oct 2006 13:54:53 -0000 @@ -19,5 +19,6 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= pyOpenSSLProxy .include Index: www/py-slimmer/Makefile =================================================================== RCS file: /home/pcvs/ports/www/py-slimmer/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/py-slimmer/Makefile 20 Jun 2006 17:14:33 -0000 1.1 +++ www/py-slimmer/Makefile 10 Oct 2006 13:54:53 -0000 @@ -19,6 +19,7 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGVERSION=0.1.19 PLIST_FILES= %%PYTHON_SITELIBDIR%%/slimmer.py \ %%PYTHON_SITELIBDIR%%/slimmer.pyc \ Index: www/quixote/Makefile =================================================================== RCS file: /home/pcvs/ports/www/quixote/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- www/quixote/Makefile 15 Mar 2006 18:21:26 -0000 1.29 +++ www/quixote/Makefile 10 Oct 2006 13:54:53 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= Quixote .include Index: www/session2/Makefile =================================================================== RCS file: /home/pcvs/ports/www/session2/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/session2/Makefile 15 Mar 2006 18:21:26 -0000 1.4 +++ www/session2/Makefile 10 Oct 2006 13:54:53 -0000 @@ -17,6 +17,7 @@ USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes +PYDISTUTILS_PKGVERSION= 0.6 OPTIONS= MYSQL "MySQLdb support" on OPTIONS+= POSTGRESQL "psycopg support" on Index: www/trac-accountmanager/Makefile =================================================================== RCS file: /home/pcvs/ports/www/trac-accountmanager/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/trac-accountmanager/Makefile 30 Aug 2006 12:49:47 -0000 1.3 +++ www/trac-accountmanager/Makefile 10 Oct 2006 13:54:53 -0000 @@ -23,6 +23,8 @@ USE_ZIP= yes USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= TracAccountManager +PYDISTUTILS_PKGVERSION= 0.1.2 WRKSRC= ${WRKDIR}/${PORTNAME}/${PORTVERSION} PLIST_SUB= VERSION=0.1.2 PYVER=${PYTHON_VERSION:S/python//} SED=${SED} Index: www/xist/Makefile =================================================================== RCS file: /home/pcvs/ports/www/xist/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- www/xist/Makefile 8 Aug 2006 11:50:28 -0000 1.14 +++ www/xist/Makefile 10 Oct 2006 13:54:53 -0000 @@ -23,6 +23,7 @@ USE_PYTHON= 2.4+ USE_PYDISTUTILS= yes USE_BZIP2= yes +PYDISTUTILS_PKGNAME= ll-xist post-install: .for file in doc2txt dtd2xsc tld2xsc Index: x11-toolkits/py-fltk/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-fltk/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- x11-toolkits/py-fltk/Makefile 13 May 2006 05:00:37 -0000 1.5 +++ x11-toolkits/py-fltk/Makefile 10 Oct 2006 13:54:54 -0000 @@ -21,6 +21,8 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_XLIB= yes +PYDISTUTILS_PKGNAME= pyFltk +PYDISTUTILS_PKGVERSION= 1.1b3 MAKE_ENV+= FLTK_HOME=${X11BASE}/include OPENGL_HOME=${X11BASE}/include DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Index: x11-toolkits/py-fox/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-fox/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- x11-toolkits/py-fox/Makefile 10 Jun 2006 15:51:15 -0000 1.3 +++ x11-toolkits/py-fox/Makefile 10 Oct 2006 13:54:54 -0000 @@ -21,6 +21,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes USE_XLIB= yes +PYDISTUTILS_PKGNAME= FXPy WRKSRC= ${WRKDIR}/FXPy-${PORTVERSION} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Index: x11-toolkits/py-gtkextra/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-gtkextra/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- x11-toolkits/py-gtkextra/Makefile 7 Mar 2006 08:28:02 -0000 1.3 +++ x11-toolkits/py-gtkextra/Makefile 10 Oct 2006 13:54:54 -0000 @@ -24,5 +24,6 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-gtkextra .include Index: x11-toolkits/py-gui/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-gui/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- x11-toolkits/py-gui/Makefile 13 Sep 2006 03:21:38 -0000 1.12 +++ x11-toolkits/py-gui/Makefile 10 Oct 2006 13:54:54 -0000 @@ -20,6 +20,7 @@ USE_PYDISTUTILS= yes USE_GNOME= pygtk2 +PYDISTUTILS_PKGNAME= PyGUI DOCSDIR= share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= share/examples/${PKGNAMEPREFIX}${PORTNAME} Index: x11-toolkits/py-tkinter/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-tkinter/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- x11-toolkits/py-tkinter/Makefile 6 Feb 2004 13:12:46 -0000 1.14 +++ x11-toolkits/py-tkinter/Makefile 10 Oct 2006 13:54:54 -0000 @@ -23,10 +23,12 @@ PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/_tkinter.so USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= Tkinter WRKSRC= ${PYTHON_WRKSRC}/Modules MD5_FILE= ${PORTSDIR}/lang/python/distinfo post-extract: - @${CP} ${FILESDIR}/setup.py ${WRKSRC} + @${SED} -e 's,%%PORTVERSION%%,${PORTVERSION},' ${FILESDIR}/setup.py \ + >${WRKSRC}/${PYSETUP} .include Index: x11-toolkits/py-tkinter/files/setup.py =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-tkinter/files/setup.py,v retrieving revision 1.2 diff -u -r1.2 setup.py --- x11-toolkits/py-tkinter/files/setup.py 3 Aug 2003 19:09:00 -0000 1.2 +++ x11-toolkits/py-tkinter/files/setup.py 10 Oct 2006 13:54:54 -0000 @@ -30,6 +30,7 @@ "X11"] setup(name = "Tkinter", + version = "%%PORTVERSION%%", description = "Tk Extension to Python", ext_modules = [Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'], Index: x11-toolkits/py-wmgeneral/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-wmgeneral/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- x11-toolkits/py-wmgeneral/Makefile 9 Jul 2005 02:35:55 -0000 1.2 +++ x11-toolkits/py-wmgeneral/Makefile 10 Oct 2006 13:54:54 -0000 @@ -19,5 +19,6 @@ USE_XLIB= yes USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= pywmgeneral .include Index: x11-toolkits/py-xlib/Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/py-xlib/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- x11-toolkits/py-xlib/Makefile 26 Sep 2006 12:41:18 -0000 1.12 +++ x11-toolkits/py-xlib/Makefile 10 Oct 2006 13:54:54 -0000 @@ -18,5 +18,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python-xlib +PYDISTUTILS_PKGVERSION= 0.12 .include