diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-09 13:24:12 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-09 13:24:12 +0000 |
commit | 2a3a65e1e2c3e0b602842b1e0cdc3489f3625679 (patch) | |
tree | f199405a02ca8a63f3b80cd7b67aa9e7518ff595 /lang/python/extension.mk | |
parent | 1258066035170df9eb29a10e0d0dd6edfc12888f (diff) | |
download | pkgsrc-2a3a65e1e2c3e0b602842b1e0cdc3489f3625679.tar.gz |
Add some basic infrastructure to manage Python eggs in pkgsrc.
We use the flat installation mode (e.g. no multiple versions by
default) by default. That avoids having to run DEINSTALL/INSTALL
scripts and allows DESTDIR installation.
Diffstat (limited to 'lang/python/extension.mk')
-rw-r--r-- | lang/python/extension.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/extension.mk b/lang/python/extension.mk index f354b50556b..432dcfcaddf 100644 --- a/lang/python/extension.mk +++ b/lang/python/extension.mk @@ -1,4 +1,4 @@ -# $NetBSD: extension.mk,v 1.15 2006/10/09 12:50:38 joerg Exp $ +# $NetBSD: extension.mk,v 1.16 2007/08/09 13:24:12 joerg Exp $ # derive a python version from the package name if possible # optionally handled quoted package names @@ -21,7 +21,7 @@ PYSETUP?= setup.py PYSETUPBUILDARGS?= #empty PYSETUPINSTALLARGS?= #empty PYSETUPOPTARGS?= -c -O1 -_PYSETUPINSTALLARGS= ${PYSETUPINSTALLARGS} ${PYSETUPOPTARGS} +_PYSETUPINSTALLARGS= ${PYSETUPINSTALLARGS} ${PYSETUPOPTARGS} ${_PYSETUPTOOLSINSTALLARGS} .if ${_USE_DESTDIR} != "no" _PYSETUPINSTALLARGS+= --root=${DESTDIR:Q} .endif |