From 9629249b189e86af37c9dcc44a6186ea4d1c6748 Mon Sep 17 00:00:00 2001 From: eadler Date: Sat, 6 Oct 2012 21:59:41 +0000 Subject: Convert to OptionsNG Approved by: zi (maintainer) --- ports-mgmt/pver/Makefile | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'ports-mgmt/pver') diff --git a/ports-mgmt/pver/Makefile b/ports-mgmt/pver/Makefile index 7c9b94789426..e2043d6a5259 100644 --- a/ports-mgmt/pver/Makefile +++ b/ports-mgmt/pver/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: pver -# Date created: 2008-11-07 -# Whom: Wei-Yu Chen -# +# Created by: Wei-Yu Chen # $FreeBSD$ -# PORTNAME= pver PORTVERSION= 0.16 @@ -15,8 +11,9 @@ MASTER_SITES= http://www.csie.nctu.edu.tw/~weiyu/software/ \ MAINTAINER= zi@FreeBSD.org COMMENT= Show packages which are different version from ports using INDEX-*.db -OPTIONS= SORT "Sort the result by the package names" Off \ - DB185 "Use BerkeleyDB 1.85/1.86" Off +OPTIONS_DEFINE= SORT DB185 +SORT_DESC= Sort the result by the package names +DB185_DESC= Use BerkeleyDB 1.85/1.86 WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ARGS+= PORTSDIR=${PORTSDIR} @@ -31,11 +28,11 @@ PLIST_DIRS= %%DATADIR%% .include -.if defined(WITH_SORT) +.if ${PORT_OPTIONS:MSORT} MAKE_ARGS+= -DSORT .endif -.if defined(WITH_DB185) +.if ${PORT_OPTIONS:MDB185} MAKE_ARGS+= -DBSD_DB .else USE_BDB= 41+ -- cgit