From owner-svn-ports-head@freebsd.org Tue Apr 17 19:17:12 2018 Return-Path: Delivered-To: svn-ports-head@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 29BF6F9379B; Tue, 17 Apr 2018 19:17:12 +0000 (UTC) (envelope-from sunpoet@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 C14C880535; Tue, 17 Apr 2018 19:17:08 +0000 (UTC) (envelope-from sunpoet@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 28E9010AB2; Tue, 17 Apr 2018 19:17:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3HJH82P019130; Tue, 17 Apr 2018 19:17:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3HJH7RW019129; Tue, 17 Apr 2018 19:17:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201804171917.w3HJH7RW019129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 17 Apr 2018 19:17:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467648 - head/www/py-rhodecode X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-rhodecode X-SVN-Commit-Revision: 467648 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, 17 Apr 2018 19:17:12 -0000 Author: sunpoet Date: Tue Apr 17 19:17:07 2018 New Revision: 467648 URL: https://svnweb.freebsd.org/changeset/ports/467648 Log: Convert to options dependency helper - Update RUN_DEPENDS: remove redundant LOCALBASE/bin Approved by: portmgr (blanket) Modified: head/www/py-rhodecode/Makefile Modified: head/www/py-rhodecode/Makefile ============================================================================== --- head/www/py-rhodecode/Makefile Tue Apr 17 19:17:03 2018 (r467647) +++ head/www/py-rhodecode/Makefile Tue Apr 17 19:17:07 2018 (r467648) @@ -49,14 +49,7 @@ OPTIONS_DEFAULT= GIT GIT_DESC= GIT support -.include - -.if ${PORT_OPTIONS:MLDAP} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ldap>=2.4.6:net/py-ldap@${FLAVOR} -.endif - -.if ${PORT_OPTIONS:MGIT} -RUN_DEPENDS+= ${LOCALBASE}/bin/git:devel/git -.endif +LDAP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap>=2.4.6:net/py-ldap@${FLAVOR} +GIT_RUN_DEPENDS= git:devel/git .include