diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-01-10 23:40:08 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-01-10 23:40:08 +0000 |
commit | 295a710b0ec58c19bae918a4abcc033b471dadae (patch) | |
tree | 6fabe5319f0c1e6663d2595afd9a0d5c3d1a71d1 /devel/newt/files/setup.py | |
parent | * Update to 1.8.5 (diff) |
- Update to 0.5.11 [1]
- sort pkg-plist
- bump PORTREVISION for SHLIB bump
Submitted by: mi (via e-mail) [1] with minor changes
Notes
Notes:
svn path=/head/; revision=247548
Diffstat (limited to 'devel/newt/files/setup.py')
-rw-r--r-- | devel/newt/files/setup.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/devel/newt/files/setup.py b/devel/newt/files/setup.py deleted file mode 100644 index 6c5e3fe1f5b4..000000000000 --- a/devel/newt/files/setup.py +++ /dev/null @@ -1,18 +0,0 @@ -# $FreeBSD$ -import os -from distutils.core import setup, Extension - -LOCALBASE = os.environ['LOCALBASE'] -PREFIX = os.environ['PREFIX'] - -setup ( name = 'newt', - version = '0.50.33', - description = 'Python interface to Newt module', - py_modules = ['snack'], - ext_modules = [ Extension( - name='_snack', - sources=['snackmodule.c'], - include_dirs=['.', LOCALBASE+'/include', PREFIX+'/include'], - library_dirs=['.', LOCALBASE+'/lib', PREFIX+'/lib'], - libraries=['newt', 'popt', 'slang', 'ncurses'] - )]) |