diff options
author | wiz <wiz@pkgsrc.org> | 2014-01-04 19:07:06 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-01-04 19:07:06 +0000 |
commit | 36d33827f0fff60ab203603cf49586d85ac1f992 (patch) | |
tree | c6dd694ef4279ac8a093388f69914e65133c5bfa /comms/py-serial/Makefile | |
parent | 599bffc84f823fad5888bb36dc8c8d5120a2aa71 (diff) | |
download | pkgsrc-36d33827f0fff60ab203603cf49586d85ac1f992.tar.gz |
Fix interpreter paths in installed files. Bump PKGREVISION.
Diffstat (limited to 'comms/py-serial/Makefile')
-rw-r--r-- | comms/py-serial/Makefile | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/comms/py-serial/Makefile b/comms/py-serial/Makefile index 2573191f9cb..2a92103e9a6 100644 --- a/comms/py-serial/Makefile +++ b/comms/py-serial/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2012/12/09 15:26:32 tsarna Exp $ -# +# $NetBSD: Makefile,v 1.2 2014/01/04 19:07:06 wiz Exp $ DISTNAME= pyserial-2.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= comms python MASTER_SITES= http://pypi.python.org/packages/source/p/pyserial/ @@ -11,7 +11,28 @@ HOMEPAGE= http://pyserial.sourceforge.net/ COMMENT= Python Serial Port Extension LICENSE= python-software-foundation -USE_LANGUAGES= #none +USE_LANGUAGES= # none +REPLACE_PYTHON+= serial/__init__.py +REPLACE_PYTHON+= serial/rfc2217.py +REPLACE_PYTHON+= serial/serialcli.py +REPLACE_PYTHON+= serial/serialjava.py +REPLACE_PYTHON+= serial/serialposix.py +REPLACE_PYTHON+= serial/serialutil.py +REPLACE_PYTHON+= serial/serialwin32.py +REPLACE_PYTHON+= serial/sermsdos.py +REPLACE_PYTHON+= serial/tools/__init__.py +REPLACE_PYTHON+= serial/tools/list_ports.py +REPLACE_PYTHON+= serial/tools/list_ports_posix.py +REPLACE_PYTHON+= serial/tools/list_ports_windows.py +REPLACE_PYTHON+= serial/tools/miniterm.py +REPLACE_PYTHON+= serial/urlhandler/__init__.py +REPLACE_PYTHON+= serial/urlhandler/protocol_hwgrep.py +REPLACE_PYTHON+= serial/urlhandler/protocol_loop.py +REPLACE_PYTHON+= serial/urlhandler/protocol_rfc2217.py +REPLACE_PYTHON+= serial/urlhandler/protocol_socket.py +REPLACE_PYTHON+= serial/win32.py + +.include "../../lang/python/application.mk" .include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" |