From owner-svn-ports-head@freebsd.org Sun Dec 10 21:44:25 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 C565CE9E0F9; Sun, 10 Dec 2017 21:44:25 +0000 (UTC) (envelope-from gerald@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 9F3226480F; Sun, 10 Dec 2017 21:44:25 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBALiOqt049653; Sun, 10 Dec 2017 21:44:24 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBALiO3f049650; Sun, 10 Dec 2017 21:44:24 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201712102144.vBALiO3f049650@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 10 Dec 2017 21:44:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455914 - in head/misc/gnuit: . files X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: in head/misc/gnuit: . files X-SVN-Commit-Revision: 455914 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: Sun, 10 Dec 2017 21:44:25 -0000 Author: gerald Date: Sun Dec 10 21:44:24 2017 New Revision: 455914 URL: https://svnweb.freebsd.org/changeset/ports/455914 Log: Change man pages which are links (gitregrep.1.gz and gitrfgrep.1.gz) from absolute links to relative links. Bump PORTREVISION since this does affect the resulting package in a material manner. PR: 224230 Reported by: wosch Added: head/misc/gnuit/files/patch-doc-Makefile (contents, props changed) Modified: head/misc/gnuit/Makefile Modified: head/misc/gnuit/Makefile ============================================================================== --- head/misc/gnuit/Makefile Sun Dec 10 20:48:45 2017 (r455913) +++ head/misc/gnuit/Makefile Sun Dec 10 21:44:24 2017 (r455914) @@ -3,6 +3,7 @@ PORTNAME= gnuit PORTVERSION= 4.9.5 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= GNU Added: head/misc/gnuit/files/patch-doc-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/gnuit/files/patch-doc-Makefile Sun Dec 10 21:44:24 2017 (r455914) @@ -0,0 +1,42 @@ +2017-12-10 Gerald Pfeifer + + * Makefile.am: Only create relative symlinks for man pages. + * Makefile.in: Regenerate. + +--- UTC +--- doc/Makefile.am 2009-02-18 02:31:25.000000000 +0000 ++++ doc/Makefile.am 2017-12-10 21:27:14.321310000 +0000 +@@ -42,13 +42,13 @@ + for i in $(GIT_GREPS);\ + do\ + rm -f $(DESTDIR)$(mandir)/man1/$${i}.1;\ +- ln -s $(mandir)/man1/gitrgrep.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ ++ ln -s gitrgrep.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ + done + \ + for i in $(GIT_INTERNAL_MANS);\ + do\ + rm -f $(DESTDIR)$(mandir)/man1/$${i}.1;\ +- ln -s $(mandir)/man1/gitinternal.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ ++ ln -s gitinternal.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ + done + if [ "$(mandir)" != "$(prefix)/man" ]; then\ + for i in $(ORIG_MANS) $(GIT_INTERNAL_MANS); \ +--- doc/Makefile.in 2009-02-18 02:31:25.000000000 +0000 ++++ doc/Makefile.in 2017-12-10 21:27:32.723308000 +0000 +@@ -969,13 +969,13 @@ + for i in $(GIT_GREPS);\ + do\ + rm -f $(DESTDIR)$(mandir)/man1/$${i}.1;\ +- ln -s $(mandir)/man1/gitrgrep.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ ++ ln -s gitrgrep.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ + done + \ + for i in $(GIT_INTERNAL_MANS);\ + do\ + rm -f $(DESTDIR)$(mandir)/man1/$${i}.1;\ +- ln -s $(mandir)/man1/gitinternal.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ ++ ln -s gitinternal.1 $(DESTDIR)$(mandir)/man1/$${i}.1;\ + done + if [ "$(mandir)" != "$(prefix)/man" ]; then\ + for i in $(ORIG_MANS) $(GIT_INTERNAL_MANS); \