diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2014-03-01 13:59:38 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2014-03-01 13:59:38 +0000 |
commit | 0cbb09ebc6d1fbd476d17f8fbce237cbf19f163a (patch) | |
tree | 2c89b886a1d09238d1d31f2f73836c8580a691f3 | |
parent | - Convert to new options framework (diff) |
devel/scons: Add LICENSE, Fix depends, pet portlint
- Add LICENSE (MIT)
Fix:
- FATAL: Makefile: [21]: contiguous blank lines (> 1 lines) found.
- Unecessary RUN_DEPENDS on python2 (has USE_PYTHON=2)
- Remove duplicate USE_PYTHON=yes (scons is for 2.x only)
Reviewed by: antoine
Approved by: portmgr (blanket)
-rw-r--r-- | devel/scons/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/devel/scons/Makefile b/devel/scons/Makefile index 88b13a835335..58c2639d0658 100644 --- a/devel/scons/Makefile +++ b/devel/scons/Makefile @@ -9,17 +9,14 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} MAINTAINER= gavin@16degrees.com.au COMMENT= Build tool alternative to make -RUN_DEPENDS+= python2:${PORTSDIR}/lang/python2 +LICENSE= MIT -USE_PYTHON= yes +USE_PYTHON= 2 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes PLIST_SUB+= SCONS_VER=${PORTVERSION} -USE_PYTHON= 2 - - post-patch: @${REINPLACE_CMD} \ -e 's,distutils\.command\.install$$,setuptools\.command\.install,' \ |