From owner-svn-ports-all@FreeBSD.ORG Thu Jun 12 05:38:04 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8F88829; Thu, 12 Jun 2014 05:38:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D66DA21C3; Thu, 12 Jun 2014 05:38:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5C5c4cV032059; Thu, 12 Jun 2014 05:38:04 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5C5c4NH032058; Thu, 12 Jun 2014 05:38:04 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201406120538.s5C5c4NH032058@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 12 Jun 2014 05:38:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357562 - head/editors/libreoffice X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2014 05:38:05 -0000 Author: bapt Date: Thu Jun 12 05:38:04 2014 New Revision: 357562 URL: http://svnweb.freebsd.org/changeset/ports/357562 QAT: https://qat.redports.org/buildarchive/r357562/ Log: Add a build dependency on textproc/flex (FreeBSD 9.1 and 8 requires it) Reported by: antoine Modified: head/editors/libreoffice/Makefile Modified: head/editors/libreoffice/Makefile ============================================================================== --- head/editors/libreoffice/Makefile Thu Jun 12 04:52:30 2014 (r357561) +++ head/editors/libreoffice/Makefile Thu Jun 12 05:38:04 2014 (r357562) @@ -13,6 +13,7 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:${PORTS ${LOCALBASE}/libdata/pkgconfig/cppunit.pc:${PORTSDIR}/devel/cppunit \ dmake:${PORTSDIR}/devel/dmake \ ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \ + ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \ mdds>=0.9.0:${PORTSDIR}/devel/mdds \ gpatch:${PORTSDIR}/devel/patch \ ucpp:${PORTSDIR}/devel/ucpp \ @@ -91,6 +92,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${LOVERSI CONFIGURE_ENV= DMAKE=${LOCALBASE}/bin/dmake \ GNUTAR=${TAR} \ GPERF=${LOCALBASE}/bin/gperf \ + FLEX=${LOCALBASE}/bin/flex PYTHON_CFLAGS="`${PYTHON_VERSION}-config --cflags`" \ PYTHON_LIBS="`${PYTHON_VERSION}-config --libs`" \ TMPDIR=${WRKDIR} \