diff options
author | gdt <gdt@pkgsrc.org> | 2011-12-16 12:51:56 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2011-12-16 12:51:56 +0000 |
commit | 19285062d2f76a8a2882ff31779f228c124798f6 (patch) | |
tree | ed55784bc4028a9b3c3412d2d9e77646511d9d1a /filesystems/py-fuse-bindings | |
parent | e3c143155bbe9c48f3c3fc69ba69c870640ae710 (diff) | |
download | pkgsrc-19285062d2f76a8a2882ff31779f228c124798f6.tar.gz |
Use egg.mk, not distutils.mk.
This package can use either setuptools (egg.mk) or distutils
(distutils.mk), but it prefers setuptools and thus should be built
with our egg.mk support. Adjust PLIST for egg.mk (different)
variables and drop eggfile conditionalization, as eggs always have
egg-info directories.
Thanks to dholland@ and obache@ for noticing/suggesting.
Diffstat (limited to 'filesystems/py-fuse-bindings')
-rw-r--r-- | filesystems/py-fuse-bindings/Makefile | 4 | ||||
-rw-r--r-- | filesystems/py-fuse-bindings/PLIST | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/filesystems/py-fuse-bindings/Makefile b/filesystems/py-fuse-bindings/Makefile index 3d32977119a..e365cf2efbc 100644 --- a/filesystems/py-fuse-bindings/Makefile +++ b/filesystems/py-fuse-bindings/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2011/12/16 01:07:23 gdt Exp $ +# $NetBSD: Makefile,v 1.7 2011/12/16 12:51:56 gdt Exp $ # VERSION= 0.2.1 @@ -26,7 +26,7 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/example/xmp.py \ ${DESTDIR}${PREFIX}/share/examples/fuse-python/ -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/fuse.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/filesystems/py-fuse-bindings/PLIST b/filesystems/py-fuse-bindings/PLIST index 74af80021e4..acc12f1d3c2 100644 --- a/filesystems/py-fuse-bindings/PLIST +++ b/filesystems/py-fuse-bindings/PLIST @@ -1,11 +1,11 @@ -@comment $NetBSD: PLIST,v 1.6 2011/12/16 01:10:29 gdt Exp $ +@comment $NetBSD: PLIST,v 1.7 2011/12/16 12:51:56 gdt Exp $ ${PYSITELIB}/fuse.py ${PYSITELIB}/fuse.pyc ${PYSITELIB}/fuse.pyo -${PLIST.eggfile}${PYSITELIB}/${EGG_FILE}/PKG-INFO -${PLIST.eggfile}${PYSITELIB}/${EGG_FILE}/SOURCES.txt -${PLIST.eggfile}${PYSITELIB}/${EGG_FILE}/dependency_links.txt -${PLIST.eggfile}${PYSITELIB}/${EGG_FILE}/top_level.txt +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/fuseparts/__init__.py ${PYSITELIB}/fuseparts/__init__.pyc ${PYSITELIB}/fuseparts/__init__.pyo |