diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2010-11-20 15:33:34 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2010-11-20 15:33:34 +0800 |
commit | e28664b8c3e8139d2a796a232616f24f8dbbed6d (patch) | |
tree | 2d41ef02859b53881b62fa6eeb84f81fd5840acb /lang/p5-Tcl/Makefile | |
parent | feeaceee984d720952d07ccc39097bbbb7879a32 (diff) | |
download | freebsd-ports-gnome-e28664b8c3e8139d2a796a232616f24f8dbbed6d.tar.gz freebsd-ports-gnome-e28664b8c3e8139d2a796a232616f24f8dbbed6d.tar.zst freebsd-ports-gnome-e28664b8c3e8139d2a796a232616f24f8dbbed6d.zip |
- Allow non-root users to build this port despite wrong permissions (ugo-rwx)
in the source tarball
- Use bsd.port.mk
- Add WWW
Diffstat (limited to 'lang/p5-Tcl/Makefile')
-rw-r--r-- | lang/p5-Tcl/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lang/p5-Tcl/Makefile b/lang/p5-Tcl/Makefile index 797acf1b60ed..c65166180ecb 100644 --- a/lang/p5-Tcl/Makefile +++ b/lang/p5-Tcl/Makefile @@ -14,13 +14,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= A Tcl extension module for Perl5 -USE_TCL= 84+ +CONFIGURE_ARGS= --tclsh ${TCLSH} PERL_CONFIGURE= yes +USE_TCL= 84+ MAN3= Tcl.3 -.include <bsd.port.pre.mk> - -CONFIGURE_ARGS= --tclsh ${TCLSH} +post-extract: + ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 0755 \{} \; + ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 0644 \{} \; -.include <bsd.port.post.mk> +.include <bsd.port.mk> |