Thu Sep 25 10:34:45 2014 UTC ()
Fix directory permissions manually rather than relying on find(1)
which may not be able to traverse if building as non-root.


(jperkin)
diff -r1.60 -r1.61 pkgsrc/graphics/xart/Makefile

cvs diff -r1.60 -r1.61 pkgsrc/graphics/xart/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/xart/Makefile 2013/02/16 11:22:34 1.60
+++ pkgsrc/graphics/xart/Makefile 2014/09/25 10:34:45 1.61
@@ -1,31 +1,31 @@ @@ -1,31 +1,31 @@
1# $NetBSD: Makefile,v 1.60 2013/02/16 11:22:34 wiz Exp $ 1# $NetBSD: Makefile,v 1.61 2014/09/25 10:34:45 jperkin Exp $
2# 2#
3 3
4DISTNAME= xart19980415 4DISTNAME= xart19980415
5PKGNAME= xart-19980415 5PKGNAME= xart-19980415
6PKGREVISION= 19 6PKGREVISION= 19
7CATEGORIES= graphics x11 7CATEGORIES= graphics x11
8MASTER_SITES= http://linux01.gwdg.de/~rhohen/linux/ 8MASTER_SITES= http://linux01.gwdg.de/~rhohen/linux/
9EXTRACT_SUFX= .tgz 9EXTRACT_SUFX= .tgz
10 10
11MAINTAINER= pkgsrc-users@NetBSD.org 11MAINTAINER= pkgsrc-users@NetBSD.org
12HOMEPAGE= http://linux01.gwdg.de/~rhohen/linux.html 12HOMEPAGE= http://linux01.gwdg.de/~rhohen/linux.html
13COMMENT= Paint program (enhanced xpaint) 13COMMENT= Paint program (enhanced xpaint)
14# quite like isc, but copyright needs to mention in documentation as well 14# quite like isc, but copyright needs to mention in documentation as well
15# see the bottom of the included "Help.txt" file 15# see the bottom of the included "Help.txt" file
16#LICENSE= isc 16#LICENSE= isc
17 17
18WRKSRC= ${WRKDIR}/19980415 18WRKSRC= ${WRKDIR}/19980415
19USE_IMAKE= YES 19USE_IMAKE= YES
20 20
21post-extract: 21post-extract:
22 ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \; 22 ${CHMOD} 755 ${WRKSRC} ${WRKSRC}/{Doc,bitmaps,rw}
23 ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \; 23 ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \;
24 24
25.include "../../mk/jpeg.buildlink3.mk" 25.include "../../mk/jpeg.buildlink3.mk"
26.include "../../graphics/tiff/buildlink3.mk" 26.include "../../graphics/tiff/buildlink3.mk"
27.include "../../graphics/png/buildlink3.mk" 27.include "../../graphics/png/buildlink3.mk"
28.include "../../x11/libXaw/buildlink3.mk" 28.include "../../x11/libXaw/buildlink3.mk"
29.include "../../x11/libXpm/buildlink3.mk" 29.include "../../x11/libXpm/buildlink3.mk"
30.include "../../x11/libXt/buildlink3.mk" 30.include "../../x11/libXt/buildlink3.mk"
31.include "../../mk/bsd.pkg.mk" 31.include "../../mk/bsd.pkg.mk"