aboutsummaryrefslogtreecommitdiff
path: root/textproc/libxml2/Makefile
diff options
context:
space:
mode:
authorKoop Mast <kwm@FreeBSD.org>2013-03-29 20:12:12 +0000
committerKoop Mast <kwm@FreeBSD.org>2013-03-29 20:12:12 +0000
commit2e337aebfccb56a782543f10b981066e6ed12a29 (patch)
tree690b0570334299114c264b9171770cb96a2c35a1 /textproc/libxml2/Makefile
parent487fd80ecfae804802ccbe0e4e2cec2ad1769eab (diff)
downloadports-2e337aebfccb56a782543f10b981066e6ed12a29.tar.gz
ports-2e337aebfccb56a782543f10b981066e6ed12a29.zip
Fix options evaluation that got mixed up in the OptionsNG converstion.
PR: ports/177480 Submitted by: scf@ Pointyhat for: kwm
Notes
Notes: svn path=/head/; revision=315569
Diffstat (limited to 'textproc/libxml2/Makefile')
-rw-r--r--textproc/libxml2/Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile
index 5660c6150239..1580f86d3ca9 100644
--- a/textproc/libxml2/Makefile
+++ b/textproc/libxml2/Makefile
@@ -1,13 +1,10 @@
-# New ports collection makefile for: libxml2
-# Date created: 28 September 1998
-# Whom: Yukihiro Nakai <Nakai@technologist.com>
-#
+# Created by: Yukihiro Nakai <Nakai@technologist.com>
# $FreeBSD$
# $MCom: ports/textproc/libxml2/Makefile,v 1.15 2012/11/26 19:55:23 kwm Exp $
PORTNAME= libxml2
PORTVERSION= 2.8.0
-PORTREVISION?= 0
+PORTREVISION?= 1
CATEGORIES?= textproc gnome
MASTER_SITES= ftp://xmlsoft.org/libxml2/ \
ftp://gd.tuwien.ac.at/pub/libxml/
@@ -47,11 +44,11 @@ THREAD_ALLOC_DESC= Per-thread memory (DEVELOPERS ONLY!)
.include <bsd.port.options.mk>
-.if ${PORT_OPTIONS:MSCHEMA}
+.if ! ${PORT_OPTIONS:MSCHEMA}
CONFIGURE_ARGS+= --without-schemas
.endif
-.if ${PORT_OPTIONS:MTHREADS}
+.if ! ${PORT_OPTIONS:MTHREADS}
CONFIGURE_ARGS+= --without-threads
.endif