diff options
author | wiz <wiz@pkgsrc.org> | 2014-06-09 13:15:13 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-06-09 13:15:13 +0000 |
commit | 475a078f4a95b159a2021e633ac23ae6cc568d83 (patch) | |
tree | d41568b6db924676c26b7ed23f1c7161755613d2 | |
parent | ce22e302d186f2b2c3860fa9881b8f7a33627d36 (diff) | |
download | pkgsrc-475a078f4a95b159a2021e633ac23ae6cc568d83.tar.gz |
Do not install empty man pages.
Bump PKGREVISION.
-rw-r--r-- | devel/scons/Makefile | 3 | ||||
-rw-r--r-- | devel/scons/PLIST | 5 | ||||
-rw-r--r-- | devel/scons/distinfo | 4 | ||||
-rw-r--r-- | devel/scons/patches/patch-aa | 18 |
4 files changed, 20 insertions, 10 deletions
diff --git a/devel/scons/Makefile b/devel/scons/Makefile index 4f5fd4229b5..c78bb6d96b0 100644 --- a/devel/scons/Makefile +++ b/devel/scons/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.24 2014/05/09 07:37:03 wiz Exp $ +# $NetBSD: Makefile,v 1.25 2014/06/09 13:15:13 wiz Exp $ DISTNAME= scons-2.3.1 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scons/} diff --git a/devel/scons/PLIST b/devel/scons/PLIST index 19e2eb7c311..c3f0c21a9e4 100644 --- a/devel/scons/PLIST +++ b/devel/scons/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2014/04/12 19:54:37 adam Exp $ +@comment $NetBSD: PLIST,v 1.12 2014/06/09 13:15:13 wiz Exp $ bin/scons bin/${PKGNAME} bin/scons-time @@ -588,6 +588,3 @@ lib/${PKGNAME}/SCons/dblite.pyo lib/${PKGNAME}/SCons/exitfuncs.py lib/${PKGNAME}/SCons/exitfuncs.pyc lib/${PKGNAME}/SCons/exitfuncs.pyo -man/man1/scons-time.1 -man/man1/scons.1 -man/man1/sconsign.1 diff --git a/devel/scons/distinfo b/devel/scons/distinfo index c3aa772ea59..f789d6b5df7 100644 --- a/devel/scons/distinfo +++ b/devel/scons/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.12 2014/04/12 19:54:37 adam Exp $ +$NetBSD: distinfo,v 1.13 2014/06/09 13:15:13 wiz Exp $ SHA1 (scons-2.3.1.tar.gz) = 775e715e49fe5fd8e1d29551a296fdc9267509e7 RMD160 (scons-2.3.1.tar.gz) = 7ec92fb98d818a0b02c906f29d30c7ce62f0ab2c Size (scons-2.3.1.tar.gz) = 499037 bytes -SHA1 (patch-aa) = 20fe8e5e31b7f0f0d5755a51beefffd7504a55ae +SHA1 (patch-aa) = d88233a885a142836f5985fa579fc454f68ef3ab SHA1 (patch-engine_SCons_Platform___init__.py) = 51ea2b6b3bc0ee11c863c924d60ec4b5cbde8416 diff --git a/devel/scons/patches/patch-aa b/devel/scons/patches/patch-aa index f28c2f33584..d3185594173 100644 --- a/devel/scons/patches/patch-aa +++ b/devel/scons/patches/patch-aa @@ -1,8 +1,20 @@ -$NetBSD: patch-aa,v 1.4 2012/02/02 11:49:55 obache Exp $ +$NetBSD: patch-aa,v 1.5 2014/06/09 13:15:13 wiz Exp $ ---- setup.py.orig 2010-07-25 23:15:11.000000000 +0000 +Don't install empty man pages (zero bytes as of 2.3.1) + +--- setup.py.orig 2014-03-02 19:19:50.000000000 +0000 +++ setup.py -@@ -353,7 +353,7 @@ class install_data(_install_data): +@@ -41,9 +41,6 @@ import sys + Version = "2.3.1" + + man_pages = [ +- 'scons.1', +- 'sconsign.1', +- 'scons-time.1', + ] + + # Exit with error if trying to install with Python >= 3.0 +@@ -365,7 +362,7 @@ class install_data(_install_data): if is_win32: dir = 'Doc' else: |