From owner-svn-ports-all@freebsd.org Tue Jan 30 13:45:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27CC9ECB386; Tue, 30 Jan 2018 13:45:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C67B96D17C; Tue, 30 Jan 2018 13:45:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C118218031; Tue, 30 Jan 2018 13:45:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0UDjoeU083839; Tue, 30 Jan 2018 13:45:50 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0UDjoqQ083837; Tue, 30 Jan 2018 13:45:50 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201801301345.w0UDjoqQ083837@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 30 Jan 2018 13:45:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460386 - in head/databases: postgresql10-server postgresql92-server X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/databases: postgresql10-server postgresql92-server X-SVN-Commit-Revision: 460386 X-SVN-Commit-Repository: ports 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.25 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: Tue, 30 Jan 2018 13:45:51 -0000 Author: mat Date: Tue Jan 30 13:45:50 2018 New Revision: 460386 URL: https://svnweb.freebsd.org/changeset/ports/460386 Log: Fix ICU depend for postgresql10-server. PR: 225049 Submitted by: mat Approved by: maintainer timeout Sponsored by: Absolight Modified: head/databases/postgresql10-server/Makefile (contents, props changed) head/databases/postgresql92-server/Makefile (contents, props changed) Modified: head/databases/postgresql10-server/Makefile ============================================================================== --- head/databases/postgresql10-server/Makefile Tue Jan 30 13:44:44 2018 (r460385) +++ head/databases/postgresql10-server/Makefile Tue Jan 30 13:45:50 2018 (r460386) @@ -22,10 +22,4 @@ PG_USER?= postgres PG_GROUP?= postgres PG_UID?= 770 -.if defined(SERVER_ONLY) -CONFIGURE_ARGS+=--with-icu -LIB_DEPENDS+= libicudata.so:devel/icu -USES+= pkgconfig -.endif - .include "${.CURDIR}/../postgresql92-server/Makefile" Modified: head/databases/postgresql92-server/Makefile ============================================================================== --- head/databases/postgresql92-server/Makefile Tue Jan 30 13:44:44 2018 (r460385) +++ head/databases/postgresql92-server/Makefile Tue Jan 30 13:45:50 2018 (r460386) @@ -88,6 +88,10 @@ XML_DESC= Build with XML data type # See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info OPTIONS_DEFINE+= ICU ICU_DESC= Use ICU for unicode collation +.else +CONFIGURE_ARGS+=--with-icu +LIB_DEPENDS+= libicudata.so:devel/icu +USES+= pkgconfig .endif # See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info