diff options
author | tron <tron@pkgsrc.org> | 1999-09-04 10:35:59 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-09-04 10:35:59 +0000 |
commit | 56f926fab963d454e64cd1f8f997d29e1851647a (patch) | |
tree | b518b206052db2582e70dafde775f8bb36a67d10 /net/vnc/Makefile | |
parent | 46263e8fe34bec763cfe156a24a83fb39d0ac1af (diff) | |
download | pkgsrc-56f926fab963d454e64cd1f8f997d29e1851647a.tar.gz |
- Install documentation with "install" instead of a complicated "tar" pipe
construct.
- Avoid installing RCS and editor backup files.
Diffstat (limited to 'net/vnc/Makefile')
-rw-r--r-- | net/vnc/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/vnc/Makefile b/net/vnc/Makefile index 74717d567ca..cc7d06129f3 100644 --- a/net/vnc/Makefile +++ b/net/vnc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 1999/09/02 21:29:31 tron Exp $ +# $NetBSD: Makefile,v 1.9 1999/09/04 10:35:59 tron Exp $ # FreeBSD Id: Makefile,v 1.2 1998/03/19 01:54:59 msmith Exp # @@ -35,10 +35,9 @@ post-install: < ${WRKSRC}/vncserver \ > ${WRKSRC}/vncserver.local ${INSTALL_SCRIPT} ${WRKSRC}/vncserver.local ${PREFIX}/bin/vncserver -# The documentation comes with bogus ownerships; this is a little leaky security-wise ${MKDIR} ${PREFIX}/share/doc/vnc - (cd ${WRKDIR}/vnc_docs ; tar --exclude '*~' --exclude .lastinstall \ - --exclude makefile -cf - . ) | tar -xf - -C ${PREFIX}/share/doc/vnc - chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/vnc + cd ${WRKDIR}/vnc_docs; \ + ${INSTALL_DATA} *.GIF *.css *.gif *.jpg *.htm *.html *.pdf *.xml \ + ${PREFIX}/share/doc/vnc .include "../../mk/bsd.pkg.mk" |