diff options
author | jmmv <jmmv> | 2003-09-25 12:56:34 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2003-09-25 12:56:34 +0000 |
commit | e55b630aff7bc4bdf960e670203983869956b118 (patch) | |
tree | 64efc5986acddcf045edb958cf5fffdec074636c /editors/vilearn | |
parent | b4322e69933c0d834788af6cb8e407d35c20c892 (diff) | |
download | pkgsrc-e55b630aff7bc4bdf960e670203983869956b118.tar.gz |
Fix install target under SunOS. From Jonathan Perkin in PR pkg/22932.
Diffstat (limited to 'editors/vilearn')
-rw-r--r-- | editors/vilearn/distinfo | 4 | ||||
-rw-r--r-- | editors/vilearn/patches/patch-aa | 24 |
2 files changed, 23 insertions, 5 deletions
diff --git a/editors/vilearn/distinfo b/editors/vilearn/distinfo index a02e1c9c997..674852c3b8b 100644 --- a/editors/vilearn/distinfo +++ b/editors/vilearn/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/04/19 11:01:06 agc Exp $ +$NetBSD: distinfo,v 1.3 2003/09/25 12:56:34 jmmv Exp $ SHA1 (vilearn-1.0.shar.Z) = 08aed424df46f30c93c604f3dc79d2affe1ec70e Size (vilearn-1.0.shar.Z) = 25787 bytes -SHA1 (patch-aa) = 50b90ae9c4902c14b4129e274f8bf7175a5679f4 +SHA1 (patch-aa) = 8410d97ecf7d764af139878476663a4e484a8352 diff --git a/editors/vilearn/patches/patch-aa b/editors/vilearn/patches/patch-aa index 066e0a2a7f7..df5322cd785 100644 --- a/editors/vilearn/patches/patch-aa +++ b/editors/vilearn/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.1 1999/10/29 11:55:15 abs Exp $ +$NetBSD: patch-aa,v 1.2 2003/09/25 12:56:34 jmmv Exp $ ---- Makefile.orig Fri Oct 29 12:13:10 1999 -+++ Makefile Fri Oct 29 12:13:27 1999 +--- Makefile.orig Wed Sep 24 16:22:05 2003 ++++ Makefile Wed Sep 24 16:26:08 2003 @@ -4,12 +4,12 @@ # BINDIR is where the vilearn shell script will live. It should be in the @@ -26,3 +26,21 @@ $NetBSD: patch-aa,v 1.1 1999/10/29 11:55:15 abs Exp $ # Shouldn't have to edit below here. +@@ -33,13 +33,12 @@ + sed -e s@:SEC:@${SEC}@ < vilearn.man > vilearn.${SEC} + + install : all +- -mkdir ${TUTORIALS} ++ ${BSD_INSTALL_DATA_DIR} ${TUTORIALS} + for i in ${TUTS} ; do \ +- rm -f ${TUTORIALS}/$$i; \ +- install -c -m 444 $$i ${TUTORIALS}/$$i ; \ ++ ${BSD_INSTALL_DATA} $$i ${TUTORIALS}/$$i ; \ + done +- install -m 755 vilearn ${BINDIR}/vilearn +- install -m 444 vilearn.${SEC} ${MANDIR}/man${SEC}/vilearn.${SEC} ++ ${BSD_INSTALL_SCRIPT} vilearn ${BINDIR}/vilearn ++ ${BSD_INSTALL_MAN} vilearn.${SEC} ${MANDIR}/man${SEC}/vilearn.${SEC} + + clean : + rm -f vilearn vilearn.${SEC} |