From owner-svn-ports-head@freebsd.org Tue Nov 21 00:56:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2E71DB94A3; Tue, 21 Nov 2017 00:56:28 +0000 (UTC) (envelope-from osa@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 mx1.freebsd.org (Postfix) with ESMTPS id 7024B74BA5; Tue, 21 Nov 2017 00:56:28 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAL0uRa8063876; Tue, 21 Nov 2017 00:56:27 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAL0uRAl063875; Tue, 21 Nov 2017 00:56:27 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201711210056.vAL0uRAl063875@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Tue, 21 Nov 2017 00:56:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454584 - head/www/unit X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: head/www/unit X-SVN-Commit-Revision: 454584 X-SVN-Commit-Repository: ports 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.25 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: Tue, 21 Nov 2017 00:56:28 -0000 Author: osa Date: Tue Nov 21 00:56:27 2017 New Revision: 454584 URL: https://svnweb.freebsd.org/changeset/ports/454584 Log: Use LOCALBASE instead of PREFIX for installed dependences. Bump PORTREVISION. Modified: head/www/unit/Makefile Modified: head/www/unit/Makefile ============================================================================== --- head/www/unit/Makefile Mon Nov 20 23:33:36 2017 (r454583) +++ head/www/unit/Makefile Tue Nov 21 00:56:27 2017 (r454584) @@ -3,6 +3,7 @@ PORTNAME= unit PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://unit.nginx.org/download/ @@ -133,22 +134,23 @@ PLIST_FILES+= libexec/unit/python3.6.unit.so post-configure: .if ${PORT_OPTIONS:MGO} - @cd ${WRKSRC} && ./configure go --go=${PREFIX}/bin/go --go-path=${PREFIX}/go + @cd ${WRKSRC} && ./configure go --go=${LOCALBASE}/bin/go --go-path=${LOCALBASE}/go .endif .if ${PORT_OPTIONS:MPHP} - @cd ${WRKSRC} && ./configure php --config=${PREFIX}/bin/php-config --lib-path="${PREFIX}/lib" + @cd ${WRKSRC} && ./configure php --config=${LOCALBASE}/bin/php-config \ + --lib-path="${LOCALBASE}/lib" .endif .if ${PORT_OPTIONS:MPYTHON27} - @cd ${WRKSRC} && ./configure python --config=${PREFIX}/bin/python2.7-config + @cd ${WRKSRC} && ./configure python --config=${LOCALBASE}/bin/python2.7-config .endif .if ${PORT_OPTIONS:MPYTHON34} - @cd ${WRKSRC} && ./configure python --config=${PREFIX}/bin/python3.4-config + @cd ${WRKSRC} && ./configure python --config=${LOCALBASE}/bin/python3.4-config .endif .if ${PORT_OPTIONS:MPYTHON35} - @cd ${WRKSRC} && ./configure python --config=${PREFIX}/bin/python3.5-config + @cd ${WRKSRC} && ./configure python --config=${LOCALBASE}/bin/python3.5-config .endif .if ${PORT_OPTIONS:MPYTHON36} - @cd ${WRKSRC} && ./configure python --config=${PREFIX}/bin/python3.6-config + @cd ${WRKSRC} && ./configure python --config=${LOCALBASE}/bin/python3.6-config .endif post-install: