diff options
author | minskim <minskim@pkgsrc.org> | 2005-01-02 20:13:49 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-01-02 20:13:49 +0000 |
commit | f17e1c704e9cc4f0710545b5f68e088a08ba431c (patch) | |
tree | 1a46d131b74caf44f5aad64f1e1500c112626b34 | |
parent | 97d4635778d14f77cd8f00123782e7349f3ebc93 (diff) | |
download | pkgsrc-f17e1c704e9cc4f0710545b5f68e088a08ba431c.tar.gz |
Use PKGDIRMODE and DOCMODE instead of 555 and 444, respectively.
Bump PKGREVISION because the default value of PKGDIRMODE is 755, which
is different from 555.
-rw-r--r-- | lang/tcl-tclX/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/tcl-tclX/Makefile b/lang/tcl-tclX/Makefile index 45c268cd0a4..00cccea9e5d 100644 --- a/lang/tcl-tclX/Makefile +++ b/lang/tcl-tclX/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.24 2004/11/26 18:09:04 minskim Exp $ +# $NetBSD: Makefile,v 1.25 2005/01/02 20:13:49 minskim Exp $ # DISTNAME= tclx8.3.5-src PKGNAME= tcl-tclX-8.3.5 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang tcl MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tclx/} @@ -49,8 +49,8 @@ post-build: cd ${WRKSRC}/../tcl/unix && ${MAKE_ENV} ${MAKE} buildhelp post-install: - ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type d -exec ${CHMOD} 555 '{}' \; - ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type f -exec ${CHMOD} 444 '{}' \; + ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type d -exec ${CHMOD} ${PKGDIRMODE} '{}' \; + ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type f -exec ${CHMOD} ${DOCMODE} '{}' \; @${RM} ${PREFIX}/man/man3/TkX_Main.3 @${RM} ${PREFIX}/man/man3/Tkx_Init.3 # the above links are installed based on the contents of the man page. |