diff options
author | rillig <rillig> | 2006-09-27 06:48:56 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-09-27 06:48:56 +0000 |
commit | 44f429d36916553659fbdd64a64500ed2099b434 (patch) | |
tree | 7e237a3c2d87c4eace68a66ec79ff74a6b8a5942 /lang | |
parent | 8407dbcf2cc77fa680391e38b0cccd21a27c6613 (diff) | |
download | pkgsrc-44f429d36916553659fbdd64a64500ed2099b434.tar.gz |
Fixed the latest bulk build for NetBSD 3.0 by adding
CHECK_SHLIBS_SUPPORTED=no.
Made the installed files read-only for group members.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sun-jre13/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lang/sun-jre13/Makefile b/lang/sun-jre13/Makefile index dd891d79726..e7870fd2e73 100644 --- a/lang/sun-jre13/Makefile +++ b/lang/sun-jre13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2006/09/25 08:00:31 ghen Exp $ +# $NetBSD: Makefile,v 1.48 2006/09/27 06:48:56 rillig Exp $ DISTNAME= j2re-1_3_1_19-linux-i586 PKGNAME= sun-jre13-1.0.19 @@ -25,6 +25,13 @@ CONF_FILES= # empty CONF_FILES+= ${JAVA_HOME}/lib/${FILE}.default ${JAVA_HOME}/lib/${FILE} .endfor +# Some binary files cannot resolve their libraries. This doesn't matter +# since they will only be called through wrappers. +CHECK_SHLIBS_SUPPORTED= no + +post-extract: + chmod -R go-w ${WRKSRC} + do-configure: cd ${WRKSRC}/lib; for file in ${SFILES}; do \ ${MV} -f $$file $$file.default; \ |