summaryrefslogtreecommitdiff
path: root/lang/fpc-units
diff options
context:
space:
mode:
authorJose Alonso Cardenas Marquez <acm@FreeBSD.org>2009-01-16 12:41:45 +0000
committerJose Alonso Cardenas Marquez <acm@FreeBSD.org>2009-01-16 12:41:45 +0000
commitd0994b8d5844d861bf90be3a7aba1718a9ab73d3 (patch)
treec95341355faf5904da47f0e7979bbd39916c1302 /lang/fpc-units
parent- Remove no longer needed patch (diff)
- Fix the logic with the options selected
- Bump PORTREVISION PR: 130613 Submitted by: bsam
Notes
Notes: svn path=/head/; revision=226252
Diffstat (limited to 'lang/fpc-units')
-rw-r--r--lang/fpc-units/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/fpc-units/Makefile b/lang/fpc-units/Makefile
index aa14e86eed44..b19a9b62816e 100644
--- a/lang/fpc-units/Makefile
+++ b/lang/fpc-units/Makefile
@@ -7,6 +7,7 @@
PORTNAME= units
PORTVERSION= 2.2.2
+PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= # none
PKGNAMEPREFIX= fpc-
@@ -85,7 +86,7 @@ ALL_OPTIONS= ASPELL BFD CAIRO CHM FCL-ASYNC FCL-BASE FCL-DB FCL-FPCUNIT FCL-IMAG
UNITS_SELECTED= #
.for OPT in ${ALL_OPTIONS}
-. if defined(WITH_${OPT}) && !defined(WITHOUT_${OPT})
+. if defined(WITH_${OPT}) || !defined(WITHOUT_${OPT})
UNITS_SELECTED+= ${OPT:L}
. endif
.endfor