diff options
author | hwr <hwr@pkgsrc.org> | 1998-11-01 14:55:37 +0000 |
---|---|---|
committer | hwr <hwr@pkgsrc.org> | 1998-11-01 14:55:37 +0000 |
commit | 76f0a4284ceecc4b4f48cc93613f3ad383418030 (patch) | |
tree | 57c38bbeb981a86fe83e4a23fb3999be36262b31 /editors/jed/scripts | |
parent | 4a655cff0a908c41fb11a76c08c3b227daa9feff (diff) | |
download | pkgsrc-76f0a4284ceecc4b4f48cc93613f3ad383418030.tar.gz |
Also populate /usr/pkg/share/{doc,info}. Don't make /usr/pkg/share/bin.
Diffstat (limited to 'editors/jed/scripts')
-rw-r--r-- | editors/jed/scripts/post-install | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/editors/jed/scripts/post-install b/editors/jed/scripts/post-install index 3686402ac0c..d3405d83fa8 100644 --- a/editors/jed/scripts/post-install +++ b/editors/jed/scripts/post-install @@ -1,5 +1,17 @@ #!/bin/sh -# $NetBSD: post-install,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $ -echo "Installing lib files now" +# $NetBSD: post-install,v 1.2 1998/11/01 14:55:37 hwr Exp $ +echo "Installing lib files" cd ${WRKSRC} tar cf - lib | (cd ${PREFIX}/share/jed ; tar xf - ) +echo "Installing info files" +tar cf - info | (cd ${PREFIX}/share/jed ; tar xf - ) +echo "Installing doc files" +tar cf - doc | (cd ${PREFIX}/share/jed ; tar xf - ) +if [ -f ${PREFIX}/share/jed/doc/jed.1 ] +then + rm ${PREFIX}/share/jed/doc/jed.1 +fi +if [ -f ${PREFIX}/share/jed/doc/rgrep.1 ] +then + rm ${PREFIX}/share/jed/doc/rgrep.1 +fi |