Tue Apr 20 16:01:39 2010 UTC ()
avoid catpage regeneration


(tnn)
diff -r1.22 -r1.23 pkgsrc/sysutils/checkperms/Makefile

cvs diff -r1.22 -r1.23 pkgsrc/sysutils/checkperms/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/checkperms/Makefile 2009/12/14 21:25:14 1.22
+++ pkgsrc/sysutils/checkperms/Makefile 2010/04/20 16:01:38 1.23
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.22 2009/12/14 21:25:14 gdt Exp $ 1# $NetBSD: Makefile,v 1.23 2010/04/20 16:01:38 tnn Exp $
2# 2#
3 3
4DISTNAME= checkperms-1.11 4DISTNAME= checkperms-1.11
5CATEGORIES= sysutils 5CATEGORIES= sysutils
6MASTER_SITES= http://www.roland-illig.de/checkperms/ 6MASTER_SITES= http://www.roland-illig.de/checkperms/
7 7
8MAINTAINER= rillig@NetBSD.org 8MAINTAINER= rillig@NetBSD.org
9HOMEPAGE= http://www.roland-illig.de/checkperms/ 9HOMEPAGE= http://www.roland-illig.de/checkperms/
10COMMENT= Check and correct file permissions 10COMMENT= Check and correct file permissions
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14AUTO_MKDIRS= yes 14AUTO_MKDIRS= yes
@@ -16,14 +16,20 @@ AUTO_MKDIRS= yes @@ -16,14 +16,20 @@ AUTO_MKDIRS= yes
16USE_BSD_MAKEFILE= yes 16USE_BSD_MAKEFILE= yes
17 17
18.include "../../mk/bsd.prefs.mk" 18.include "../../mk/bsd.prefs.mk"
19 19
20# Avoid self-referential and circular dependencies. 20# Avoid self-referential and circular dependencies.
21CHECK_PERMS= no 21CHECK_PERMS= no
22IGNORE_CCACHE= yes 22IGNORE_CCACHE= yes
23IGNORE_DISTCC= yes 23IGNORE_DISTCC= yes
24 24
25.if ${OPSYS} == "Linux" 25.if ${OPSYS} == "Linux"
26MAKE_ENV+= NOGCCERROR=yes # see PR 35930 26MAKE_ENV+= NOGCCERROR=yes # see PR 35930
27.endif 27.endif
28 28
 29# Avoid catpage regeneration
 30post-extract:
 31 echo ".PHONY: checkperms.cat1" >> ${WRKSRC}/Makefile
 32 echo "checkperms.cat1:" >> ${WRKSRC}/Makefile
 33 echo "" >> ${WRKSRC}/Makefile
 34
29.include "../../mk/bsd.pkg.mk" 35.include "../../mk/bsd.pkg.mk"