aboutsummaryrefslogtreecommitdiff
path: root/net/fsplib/Makefile
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2012-10-04 10:00:38 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2012-10-04 10:00:38 +0000
commit8da9eeea9bc847ec985612266eb2cbb0a5c9a0cc (patch)
treead6ce86a39fc8a59b7fcf6f2b0eacd5d669174c2 /net/fsplib/Makefile
parent80e4958419d897d412991114941c3745209f4c3f (diff)
downloadports-8da9eeea9bc847ec985612266eb2cbb0a5c9a0cc.tar.gz
ports-8da9eeea9bc847ec985612266eb2cbb0a5c9a0cc.zip
Convert to new options framework
Notes
Notes: svn path=/head/; revision=305247
Diffstat (limited to 'net/fsplib/Makefile')
-rw-r--r--net/fsplib/Makefile9
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