From owner-svn-ports-all@freebsd.org Tue Dec 5 10:32:13 2017 Return-Path: Delivered-To: svn-ports-all@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 D9717E56C61; Tue, 5 Dec 2017 10:32:13 +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 mx1.freebsd.org (Postfix) with ESMTPS id A317B74B6F; Tue, 5 Dec 2017 10:32:13 +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 vB5AWC4B040268; Tue, 5 Dec 2017 10:32:12 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB5AWCl3040266; Tue, 5 Dec 2017 10:32:12 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201712051032.vB5AWCl3040266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Dec 2017 10:32:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455573 - head/devel/tig X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/devel/tig X-SVN-Commit-Revision: 455573 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, 05 Dec 2017 10:32:14 -0000 Author: mat Date: Tue Dec 5 10:32:12 2017 New Revision: 455573 URL: https://svnweb.freebsd.org/changeset/ports/455573 Log: Make the git dependency optional. PR: 203457 Submitted by: lightside gmx com Approved by: dharrigan gmail com Sponsored by: Absolight Added: head/devel/tig/pkg-message-git (contents, props changed) Modified: head/devel/tig/Makefile (contents, props changed) Modified: head/devel/tig/Makefile ============================================================================== --- head/devel/tig/Makefile Tue Dec 5 10:17:39 2017 (r455572) +++ head/devel/tig/Makefile Tue Dec 5 10:32:12 2017 (r455573) @@ -3,6 +3,7 @@ PORTNAME= tig PORTVERSION= 2.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://github.com/jonas/tig/releases/download/${DISTNAME}/ @@ -12,8 +13,6 @@ COMMENT= Text-mode interface for git LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= git:devel/git - USES= iconv gmake ncurses readline:port GNU_CONFIGURE= yes CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} @@ -24,8 +23,13 @@ INSTALL_TARGET= install PLIST_FILES= bin/tig etc/tigrc -OPTIONS_DEFINE= MANPAGES +OPTIONS_DEFINE= GIT MANPAGES OPTIONS_DEFAULT=MANPAGES + +GIT_DESC= Install devel/git as runtime dependency + +GIT_RUN_DEPENDS= git:devel/git +GIT_VARS_OFF= PKGMESSAGE="${.CURDIR}/pkg-message-git" MANPAGES_BUILD_DEPENDS= asciidoc:textproc/asciidoc \ xmlto:textproc/xmlto Added: head/devel/tig/pkg-message-git ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tig/pkg-message-git Tue Dec 5 10:32:12 2017 (r455573) @@ -0,0 +1 @@ +Required to (post-)install devel/git* port as runtime dependency.