diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-19 13:29:59 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-19 13:29:59 +0000 |
commit | bb271f0bf7b513a23a31da4ec8819b113ebf4587 (patch) | |
tree | ac5a462edc3d85d5f0b20a594802ce4b12f0bf9f /audio/gbsplay | |
parent | 29879aded766da253313579a3503ff5e15026355 (diff) |
Convert ports to use the options helpers in categories [abc]*, and minor fixes.
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3412?
Notes
Notes:
svn path=/head/; revision=394778
Diffstat (limited to 'audio/gbsplay')
-rw-r--r-- | audio/gbsplay/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/audio/gbsplay/Makefile b/audio/gbsplay/Makefile index 74ed506f06dd..07861577ce7c 100644 --- a/audio/gbsplay/Makefile +++ b/audio/gbsplay/Makefile @@ -29,15 +29,10 @@ OPTIONS_DEFINE= NAS DOCS .endif -.include <bsd.port.options.mk> - .if ${PKGNAMEPREFIX} == "" -.if ${PORT_OPTIONS:MNAS} -LIB_DEPENDS+= libaudio.so:${PORTSDIR}/audio/nas -.else -CONFIGURE_ARGS+= --disable-nas -.endif +NAS_LIB_DEPENDS= libaudio.so:${PORTSDIR}/audio/nas +NAS_CONFIGURE_ENABLE= nas .endif |