Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Dec 2017 21:44:24 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r455914 - in head/misc/gnuit: . files
Message-ID:  <201712102144.vBALiO3f049650@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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  <gerald@pfeifer.com>
+
+        * 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); \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712102144.vBALiO3f049650>