ports/177480: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Fri Mar 29 20:20:01 UTC 2013


The following reply was made to PR ports/177480; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: ports/177480: commit references a PR
Date: Fri, 29 Mar 2013 20:12:25 +0000 (UTC)

 Author: kwm
 Date: Fri Mar 29 20:12:12 2013
 New Revision: 315569
 URL: http://svnweb.freebsd.org/changeset/ports/315569
 
 Log:
   Fix options evaluation that got mixed up in the OptionsNG converstion.
   
   PR:		ports/177480
   Submitted by:	scf@
   Pointyhat for:	kwm
 
 Modified:
   head/textproc/libxml2/Makefile
 
 Modified: head/textproc/libxml2/Makefile
 ==============================================================================
 --- head/textproc/libxml2/Makefile	Fri Mar 29 19:55:58 2013	(r315568)
 +++ head/textproc/libxml2/Makefile	Fri Mar 29 20:12:12 2013	(r315569)
 @@ -1,13 +1,10 @@
 -# New ports collection makefile for:	libxml2
 -# Date created:				28 September 1998
 -# Whom:					Yukihiro Nakai <Nakai at technologist.com>
 -#
 +# Created by: Yukihiro Nakai <Nakai at 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 (DE
  
  .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
  
 _______________________________________________
 svn-ports-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe at freebsd.org"
 


More information about the freebsd-gnome mailing list