diff options
author | miwi <miwi@FreeBSD.org> | 2014-02-13 22:54:31 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-02-13 22:54:31 +0800 |
commit | 437e5e343d6d8fba0fb2891262622e4dc95c4c2a (patch) | |
tree | 711b37db7707b7276ad8c782df3ffec32e8bb530 /net | |
parent | e6fcb0faa8aeb5905bad5c295f319917aafd21ff (diff) | |
download | freebsd-ports-gnome-437e5e343d6d8fba0fb2891262622e4dc95c4c2a.tar.gz freebsd-ports-gnome-437e5e343d6d8fba0fb2891262622e4dc95c4c2a.tar.zst freebsd-ports-gnome-437e5e343d6d8fba0fb2891262622e4dc95c4c2a.zip |
- Convert USE_SCONS to USES
Diffstat (limited to 'net')
-rw-r--r-- | net/xorp-devel/Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/net/xorp-devel/Makefile b/net/xorp-devel/Makefile index 8f1d763bb513..597ebee7e53d 100644 --- a/net/xorp-devel/Makefile +++ b/net/xorp-devel/Makefile @@ -24,7 +24,7 @@ NOMAN= defined USE_BZIP2= yes USE_GCC= 4.2+ USE_PYTHON_BUILD= 2 -USE_SCONS= yes +USES= scons NO_STAGE= yes #USE_OPENSSL= yes @@ -59,38 +59,38 @@ do-fetch: XORP_GROUP= xorp USE_RC_SUBR= xorp -SCONS_ARGS+= prefix=${PREFIX} +MAKE_ARGS+= prefix=${PREFIX} .if ${PORT_OPTIONS:MOPTIMIZE} -SCONS_ARGS+= optimize=yes +MAKE_ARGS+= optimize=yes .else -SCONS_ARGS+= optimize=no +MAKE_ARGS+= optimize=no .endif .if ${PORT_OPTIONS:MSHARED} -SCONS_ARGS+= shared=true +MAKE_ARGS+= shared=true PLIST_SUB+= XORP_SHLIB="" USE_LDCONFIG= ${PREFIX}/lib/xorp/lib . if ${PORT_OPTIONS:MORIGIN} -SCONS_ARGS+= origin=true +MAKE_ARGS+= origin=true . else -SCONS_ARGS+= origin=false +MAKE_ARGS+= origin=false . endif .else -SCONS_ARGS+= shared=false +MAKE_ARGS+= shared=false PLIST_SUB+= XORP_SHLIB="@comment " .endif .if ${PORT_OPTIONS:MSTRIP} -SCONS_ARGS+= strip=true +MAKE_ARGS+= strip=true .else -SCONS_ARGS+= strip=false +MAKE_ARGS+= strip=false .endif .if ${PORT_OPTIONS:MTCP_RPC} -SCONS_ARGS+= transport=tcp +MAKE_ARGS+= transport=tcp .else -SCONS_ARGS+= transport=local +MAKE_ARGS+= transport=local .endif .if ${ARCH} == "sparc64" |