aboutsummaryrefslogtreecommitdiff
path: root/emulators/lib765
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2012-06-05 18:23:59 +0000
committerRene Ladan <rene@FreeBSD.org>2012-06-05 18:23:59 +0000
commitb6e6c5f10f07bd39185818a6cdbf7f0b2df6df5c (patch)
treea2507d10ee7ebf5f504a9b1d016aa8864e854c7e /emulators/lib765
parentb4865698d042f9b99c1a9e4e5be14b1f9ea54003 (diff)
downloadports-b6e6c5f10f07bd39185818a6cdbf7f0b2df6df5c.tar.gz
ports-b6e6c5f10f07bd39185818a6cdbf7f0b2df6df5c.zip
Notes
Diffstat (limited to 'emulators/lib765')
-rw-r--r--emulators/lib765/Makefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/emulators/lib765/Makefile b/emulators/lib765/Makefile
index 1e707804d094..b7c0567b36ed 100644
--- a/emulators/lib765/Makefile
+++ b/emulators/lib765/Makefile
@@ -18,21 +18,25 @@ LICENSE= LGPL20
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
-OPTIONS= LIBDSK "With LIBDSK support (recommended)" on
+OPTIONS_DEFINE= LIBDSK
-.include <bsd.port.pre.mk>
+LIBDSK_DESC= Include LibDSK support (recommended)
-.if defined(WITH_LIBDSK)
+OPTIONS_DEFAULT= LIBDSK
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MLIBDSK}
CONFIGURE_ARGS+= --with-libdsk --with-libdsk-path=${LOCALBASE}
-LIB_DEPENDS+= dsk.5:${PORTSDIR}/emulators/libdsk
+LIB_DEPENDS+= dsk:${PORTSDIR}/emulators/libdsk
.else
CONFIGURE_ARGS+= --without-libdsk
.endif
post-install:
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ChangeLog doc/765.txt ${DOCSDIR}
.endif
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>