diff options
author | tron <tron> | 1998-02-25 02:35:35 +0000 |
---|---|---|
committer | tron <tron> | 1998-02-25 02:35:35 +0000 |
commit | 46becfe9e58349f88ba36327e0a2e3bb08eac1dc (patch) | |
tree | 9c19655a2a3cb7381868ea154e1fad9619df455c /graphics/Mesa | |
parent | e1709d21119d07d74d54da7cbb9265a8cb0252d8 (diff) | |
download | pkgsrc-46becfe9e58349f88ba36327e0a2e3bb08eac1dc.tar.gz |
"${PREFIX}/share/examples/Mesa" should be owned by "bin:bin" not by the
owner of "pkgsrc/graphics/Mesa". And all files should be world readable.
Diffstat (limited to 'graphics/Mesa')
-rw-r--r-- | graphics/Mesa/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/Mesa/Makefile b/graphics/Mesa/Makefile index 811b35a9188..c739fa72128 100644 --- a/graphics/Mesa/Makefile +++ b/graphics/Mesa/Makefile @@ -3,7 +3,7 @@ # Date created: Tue Feb 7 12:02:49 1995 # Whom: hsu # -# $NetBSD: Makefile,v 1.8 1998/02/02 08:59:14 hubertf Exp $ +# $NetBSD: Makefile,v 1.9 1998/02/25 02:35:35 tron Exp $ # FreeBSD Id: Makefile,v 1.19 1997/09/30 19:21:40 max Exp # @@ -23,6 +23,9 @@ USE_X11= yes LIBS= libMesaGL libMesaGLU libMesaaux libMesatk SHLIB_VERSION= 2.4 +post-extract: + chmod +r ${WRKSRC}/demos/* + do-install: .for file in ${LIBS} ${INSTALL_DATA} ${WRKSRC}/lib/${file}_pic.a ${PREFIX}/lib @@ -40,6 +43,7 @@ do-install: ${CP} -Rp ${WRKSRC}/demos ${PREFIX}/share/examples/Mesa ${CP} -Rp ${WRKSRC}/book ${PREFIX}/share/examples/Mesa ${CP} -Rp ${WRKSRC}/widgets-sgi ${PREFIX}/share/examples/Mesa + chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/Mesa ${LDCONFIG} || ${TRUE} .include <bsd.port.mk> |