diff options
author | wiz <wiz@pkgsrc.org> | 2013-10-04 21:26:31 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-10-04 21:26:31 +0000 |
commit | 6847c262e7bda56f9ce5a2fe9df82be2ce23299a (patch) | |
tree | a8471806435c3e9a31263e69b8d8c7b6f8d5af23 /devel | |
parent | 68ccc18480d0d1c0a0424c675b85220ee310efdc (diff) | |
download | pkgsrc-6847c262e7bda56f9ce5a2fe9df82be2ce23299a.tar.gz |
Update to 5.9.1:
- 5.9.1 | 2013-10-04
- bugfixes
- specify ‘diff --binary’ consistently for non-POSIX systems
On non-POSIX systems, in some cases, ‘rcs frob’ used to omit
‘--binary’ from the command-line to the underlying diff(1).
Now, that is done in all cases.
- portability fixes
- avoid ‘grep -q’
GNU grep understands ‘grep -q’ but some others do not.
(info "(autoconf) Limitations of Usual Tools")
- avoid ‘$<’ in makefile
GNU make understands ‘$<’ but some others do not.
(info "(autoconf) $< in Ordinary Make Rules")
- avoid backslash in backticks
The /bin/sh scripts used in "make" and "make check" now avoid
using a backslash in backticks, which can cause problems for
Solaris 9 /bin/sh (and maybe other /bin/sh implementations).
- ‘PROGRAM --help’ shows home page / "gethelp" info
This is for compliance w/ the GNU coding standards.
(info "(standards) --help")
- maintenance tools updated
- automake (GNU automake) 1.13.4
- gnulib-tool (GNU gnulib 2013-10-03 04:59:38) 0.0.8036-28df8
Diffstat (limited to 'devel')
-rw-r--r-- | devel/rcs/Makefile | 7 | ||||
-rw-r--r-- | devel/rcs/distinfo | 9 | ||||
-rw-r--r-- | devel/rcs/patches/patch-man_Makefile.in | 19 |
3 files changed, 7 insertions, 28 deletions
diff --git a/devel/rcs/Makefile b/devel/rcs/Makefile index b2fa635a4f9..6a5b714468c 100644 --- a/devel/rcs/Makefile +++ b/devel/rcs/Makefile @@ -1,8 +1,6 @@ -# $NetBSD: Makefile,v 1.34 2013/09/03 14:26:51 joerg Exp $ -# +# $NetBSD: Makefile,v 1.35 2013/10/04 21:26:31 wiz Exp $ -DISTNAME= rcs-5.9.0 -PKGREVISION= 2 +DISTNAME= rcs-5.9.1 CATEGORIES= devel scm MASTER_SITES= ${MASTER_SITE_GNU:=rcs/} EXTRACT_SUFX= .tar.xz @@ -10,6 +8,7 @@ EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.cs.purdue.edu/homes/trinkle/RCS/ COMMENT= GNU Revision Control System - version control software +LICENSE= gnu-gpl-v3 USE_TOOLS+= gmake diff --git a/devel/rcs/distinfo b/devel/rcs/distinfo index 3983f75ab4a..3c13954f3c8 100644 --- a/devel/rcs/distinfo +++ b/devel/rcs/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.12 2013/06/01 14:03:33 ryoon Exp $ +$NetBSD: distinfo,v 1.13 2013/10/04 21:26:31 wiz Exp $ -SHA1 (rcs-5.9.0.tar.xz) = c7d7d5d91eeccbad405f5c617b34a2e99212f4bb -RMD160 (rcs-5.9.0.tar.xz) = e4b3f3edfd8d284eec706a5fb973f37ba633d521 -Size (rcs-5.9.0.tar.xz) = 789296 bytes -SHA1 (patch-man_Makefile.in) = c11741edca9bed68cf988889e603536b4f0d31e7 +SHA1 (rcs-5.9.1.tar.xz) = 2e1017c24cd79ed434fa80e384ba844738c2cbfe +RMD160 (rcs-5.9.1.tar.xz) = 94c226b96d6a4e686590b088d6c51750c260b062 +Size (rcs-5.9.1.tar.xz) = 793340 bytes diff --git a/devel/rcs/patches/patch-man_Makefile.in b/devel/rcs/patches/patch-man_Makefile.in deleted file mode 100644 index dc59f2cf114..00000000000 --- a/devel/rcs/patches/patch-man_Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-man_Makefile.in,v 1.1 2013/06/01 14:03:33 ryoon Exp $ - -* Use shipped man pages, to eliminate massive dependencies to groff. - ---- man/Makefile.in.orig 2013-05-06 07:28:45.000000000 +0000 -+++ man/Makefile.in -@@ -1549,12 +1549,6 @@ uninstall-man: uninstall-man1 uninstall- - $(dist_man_MANS) $(dist_noinst_MANS): REL $(bits) - - REL: $(top_srcdir)/configure -- @{ echo '.ds Rv $(PACKAGE_VERSION)' ; \ -- date -u +'.ds Dt %Y-%m-%d' -r $< ; } > $@t ; \ -- if [ -f $@ ] && cmp -s $@t $@ ; \ -- then rm -f $@t ; \ -- else mv $@t $@ ; echo Created $@ ; \ -- fi - - # Makefile.am ends here - |