diff options
author | bapt <bapt@FreeBSD.org> | 2013-03-22 01:39:03 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-03-22 01:39:03 +0800 |
commit | 797c88102c9ba9648a5ee065b70feec9018d476e (patch) | |
tree | cf7e2bb2fe4cf190cc3da2f5ec6472007f6e4fda /comms | |
parent | 789da5ed23230bf984fb86dd8b73904dc65afe1b (diff) | |
download | freebsd-ports-gnome-797c88102c9ba9648a5ee065b70feec9018d476e.tar.gz freebsd-ports-gnome-797c88102c9ba9648a5ee065b70feec9018d476e.tar.zst freebsd-ports-gnome-797c88102c9ba9648a5ee065b70feec9018d476e.zip |
Convert to new options framework left unconverted ports in c* categories
Diffstat (limited to 'comms')
-rw-r--r-- | comms/fl_moxgen/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/comms/fl_moxgen/Makefile b/comms/fl_moxgen/Makefile index fcbe4347ede9..f7f06e04e427 100644 --- a/comms/fl_moxgen/Makefile +++ b/comms/fl_moxgen/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: fl_moxgen -# Date created: 2012-05-15 -# Whom: Stephen Hurd <shurd@sasktel.net> -# +# Created by: Stephen Hurd <shurd@sasktel.net> # $FreeBSD$ -# PORTNAME= fl_moxgen PORTVERSION= 0.05 @@ -23,11 +19,13 @@ LIB_DEPENDS= fltk:${PORTSDIR}/x11-toolkits/fltk DESKTOP_ENTRIES= "Fl_MoxGen" "${COMMENT}" "" "${PORTNAME}" \ "Network;HamRadio;" "false" -OPTIONS= PDF "Enable PDF Writing (requires libharu)" on +OPTIONS_DEFINE= PDF +OPTIONS_DEFAULT= PDF +PDF_DESC= Enable PDF Writing (requires libharu) .include <bsd.port.options.mk> -.ifdef WITH_PDF +.if ${PORT_OPTIONS:MPDF} LIB_DEPENDS+= hpdf:${PORTSDIR}/print/libharu ALL_TARGET= fl_moxgen .else |