From owner-svn-ports-all@FreeBSD.ORG Sun Jun 15 13:38:37 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FD8891F; Sun, 15 Jun 2014 13:38:37 +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 6511F2B56; Sun, 15 Jun 2014 13:38:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5FDcbgF047634; Sun, 15 Jun 2014 13:38:37 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5FDcbVn047633; Sun, 15 Jun 2014 13:38:37 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201406151338.s5FDcbVn047633@svn.freebsd.org> From: John Marino Date: Sun, 15 Jun 2014 13:38:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357881 - head/graphics/geos 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: Sun, 15 Jun 2014 13:38:37 -0000 Author: marino Date: Sun Jun 15 13:38:36 2014 New Revision: 357881 URL: http://svnweb.freebsd.org/changeset/ports/357881 QAT: https://qat.redports.org/buildarchive/r357881/ Log: graphics/geos: Fix PHP option, reset mainatainer The PHP option was hardcoded to lang/php5, but it reportedly works on other versions of PHP. It also installs a PHP module, so it should have had a run depends on PHP as well as a build depends (hence the revump) Also: * Remove USE_LDCONFIG, I don't see why it's here * convert USE_BZIP2 * Reset maintainer due to history of timeouts and non-responsiveness to this PR * respect 80 columns PR: 178431 Submitted by: mcdouga9 (egr.msu.edu) Fixes by: marino Modified: head/graphics/geos/Makefile Modified: head/graphics/geos/Makefile ============================================================================== --- head/graphics/geos/Makefile Sun Jun 15 13:12:21 2014 (r357880) +++ head/graphics/geos/Makefile Sun Jun 15 13:38:36 2014 (r357881) @@ -3,22 +3,20 @@ PORTNAME= geos PORTVERSION= 3.4.2 +PORTREVISION= 1 CATEGORIES= graphics geography MASTER_SITES= http://download.osgeo.org/geos/ -MAINTAINER= konstantin@saurbier.net +MAINTAINER= ports@FreeBSD.org COMMENT= GEOS implements all the OpenGIS "Simple Features for SQL" LICENSE= LGPL21 USE_AUTOTOOLS= libtool -USE_BZIP2= yes -USE_LDCONFIG= yes -USES= gmake +USES= gmake tar:bzip2 GNU_CONFIGURE= yes OPTIONS_DEFINE= PHP PYTHON RUBY - OPTIONS_SUB= yes .include @@ -33,7 +31,8 @@ CONFIGURE_ARGS+= --enable-python .endif .if ${PORT_OPTIONS:MPHP} -BUILD_DEPENDS+= ${LOCALBASE}/bin/php-config:${PORTSDIR}/lang/php5 +USE_PHP= yes +USE_PHP_BUILD= yes CONFIGURE_ARGS+= --enable-php .endif @@ -44,6 +43,7 @@ CONFIGURE_ENV+= RUBY="${RUBY}" .endif post-install: - @${LN} -s ${PREFIX}/lib/libgeos-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libgeos.so.0 + @${LN} -s ${PREFIX}/lib/libgeos-${PORTVERSION}.so \ + ${STAGEDIR}${PREFIX}/lib/libgeos.so.0 .include