From owner-svn-ports-head@FreeBSD.ORG Wed Dec 12 00:32:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF09E9DE; Wed, 12 Dec 2012 00:32:41 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B995D8FC0C; Wed, 12 Dec 2012 00:32:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBC0WfSs025465; Wed, 12 Dec 2012 00:32:41 GMT (envelope-from maho@svn.freebsd.org) Received: (from maho@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBC0WfWm025464; Wed, 12 Dec 2012 00:32:41 GMT (envelope-from maho@svn.freebsd.org) Message-Id: <201212120032.qBC0WfWm025464@svn.freebsd.org> From: Maho Nakata Date: Wed, 12 Dec 2012 00:32:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308726 - head/editors/openoffice-3-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 00:32:42 -0000 Author: maho Date: Wed Dec 12 00:32:41 2012 New Revision: 308726 URL: http://svnweb.freebsd.org/changeset/ports/308726 Log: Use system luence. Submitted by: pfg Modified: head/editors/openoffice-3-devel/Makefile Modified: head/editors/openoffice-3-devel/Makefile ============================================================================== --- head/editors/openoffice-3-devel/Makefile Wed Dec 12 00:16:21 2012 (r308725) +++ head/editors/openoffice-3-devel/Makefile Wed Dec 12 00:32:41 2012 (r308726) @@ -27,6 +27,7 @@ USE_GSTREAMER= yes #USE_GCC= 4.6+ USE_GMAKE= yes USE_PYTHON= yes +#PYTHON_VERSION= 3.2 USE_PERL5_BUILD= yes USE_BZIP2= yes WITHOUT_CPU_CFLAGS= true @@ -136,6 +137,7 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archiver ${JAVALIBDIR}/junit.jar:${PORTSDIR}/java/junit \ ${JAVALIBDIR}/commons-httpclient.jar:${PORTSDIR}/java/jakarta-commons-httpclient \ ${JAVALIBDIR}/commons-lang.jar:${PORTSDIR}/java/jakarta-commons-lang \ + ${JAVALIBDIR}/lucene-core-3.6.1.jar:${PORTSDIR}/textproc/lucene \ ${JAVALIBDIR}/bsh.jar:${PORTSDIR}/lang/bsh \ ${JAVALIBDIR}/saxon9.jar:${PORTSDIR}/textproc/saxon-devel \ epm:${PORTSDIR}/devel/epm \ @@ -185,6 +187,9 @@ CONFIGURE_ARGS+= --enable-verbose \ --with-commons-lang-jar=${JAVALIBDIR}/commons-lang.jar \ --with-commons-httpclient-jar=${JAVALIBDIR}/commons-httpclient.jar \ --with-commons-logging-jar=${JAVALIBDIR}/commons-logging.jar \ + --with-system-lucene \ + --with-lucene-core-jar=${JAVALIBDIR}/lucene-core-3.6.1.jar \ + --with-lucene-analyzers-jar=${JAVALIBDIR}/lucene-analyzers-3.6.1.jar \ --with-junit=${LOCALBASE}/share/java/classes/junit.jar \ --with-package-format="archive" \ --enable-gstreamer \