diff options
author | koobs <koobs@FreeBSD.org> | 2014-03-01 21:59:38 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2014-03-01 21:59:38 +0800 |
commit | e551a25eb94b1bdfad1161770b33888c098fbd31 (patch) | |
tree | 2c89b886a1d09238d1d31f2f73836c8580a691f3 /devel | |
parent | 365e00233a0733bc91db54c741b052e2ea50775a (diff) | |
download | freebsd-ports-gnome-e551a25eb94b1bdfad1161770b33888c098fbd31.tar.gz freebsd-ports-gnome-e551a25eb94b1bdfad1161770b33888c098fbd31.tar.zst freebsd-ports-gnome-e551a25eb94b1bdfad1161770b33888c098fbd31.zip |
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)
Diffstat (limited to 'devel')
-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,' \ |