diff options
author | bapt <bapt@FreeBSD.org> | 2012-10-04 18:00:38 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-10-04 18:00:38 +0800 |
commit | b1d9484175649c69fba62936588118d9cddb8a09 (patch) | |
tree | ad6ce86a39fc8a59b7fcf6f2b0eacd5d669174c2 /net/fsplib | |
parent | d09d4edb012b6ef9e5dd1dc907a66fb6248b13ec (diff) | |
download | freebsd-ports-gnome-b1d9484175649c69fba62936588118d9cddb8a09.tar.gz freebsd-ports-gnome-b1d9484175649c69fba62936588118d9cddb8a09.tar.zst freebsd-ports-gnome-b1d9484175649c69fba62936588118d9cddb8a09.zip |
Convert to new options framework
Diffstat (limited to 'net/fsplib')
-rw-r--r-- | net/fsplib/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/net/fsplib/Makefile b/net/fsplib/Makefile index 44a09cff2fb0..6216d823538c 100644 --- a/net/fsplib/Makefile +++ b/net/fsplib/Makefile @@ -1,7 +1,3 @@ -# New ports collection makefile for: fsplib -# Date created: 15 Jan 2005 -# Whom: X -# # $FreeBSD$ PORTNAME= fsplib @@ -19,11 +15,12 @@ SCONS_ARGS= prefix=${PREFIX} PLIST_FILES= include/fsplib.h lib/libfsplib.a -OPTIONS= SHARED "Install shared library (EXPERIMENTAL)" OFF +OPTIONS_DEFINE= SHARED +SHARED_DESC= Install shared library (EXPERIMENTAL) .include <bsd.port.options.mk> -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} SCONS_ARGS+= enable-shared=1 PLIST_FILES+= lib/libfsplib.so.0.0.0 .endif |