Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Sep 2006 21:54:51 -0400 (EDT)
From:      Thomas Abthorpe <thomas@goodking.ca>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        clsung@FreeBSD.org, thomas@goodking.ca
Subject:   ports/103731: [PATCH] textproc/clucene: make --enable-ascii configuration optional.
Message-ID:  <200609280154.k8S1spYq063702@goodking.goodking.ca>
Resent-Message-ID: <200609280200.k8S20U0E061896@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         103731
>Category:       ports
>Synopsis:       [PATCH] textproc/clucene: make --enable-ascii configuration optional.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 28 02:00:29 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Thomas Abthorpe
>Release:        FreeBSD 6.2-PRERELEASE i386
>Organization:
GoodKing.Ca
>Environment:
System: FreeBSD goodking.goodking.ca 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #0: Thu Sep 14 15:10:37 EDT 2006
>Description:
-set variable WITH_ASCII_SUPPORT to configure ASCII support. Otherwise compile plain, out of the box.
- this configuration makes clucene play nicely with the upcoming update of misc/bibletime.

Port maintainer (clsung@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- clucene-0.9.15.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/textproc/clucene/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- Makefile	10 Aug 2006 01:45:03 -0000	1.1
+++ Makefile	28 Sep 2006 01:42:03 -0000
@@ -16,7 +16,6 @@
 COMMENT=	CLucene is a C++ port of Lucene
 
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS+=	--enable-ascii
 USE_BZIP2=	yes
 USE_LDCONFIG=	yes
 USE_GCC=	3.2+
@@ -24,6 +23,10 @@
 
 .include <bsd.port.pre.mk>
 
+.if defined(WITH_ASCII_SUPPORT)
+CONFIGURE_ARGS+=	--enable-ascii
+.endif
+
 .if ${OSVERSION} < 500016
 CONFIGURE_ENV+=	PTHREAD_CFLAGS=${PTHREAD_CFLAGS} PTHREAD_LIBS=${PTHREAD_LIBS}
 .endif
--- clucene-0.9.15.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200609280154.k8S1spYq063702>