summaryrefslogtreecommitdiff
path: root/misc/fd
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>1998-08-31 20:58:04 +0000
committertron <tron@pkgsrc.org>1998-08-31 20:58:04 +0000
commitcd31ee61f08e00eab336bebdc4c994f13c0f3b9f (patch)
tree90b3b62ceb90b3e7e809bf51fde8f8da6168abb9 /misc/fd
parente92dec637b530204bc72a35c16898b27b21ac957 (diff)
downloadpkgsrc-cd31ee61f08e00eab336bebdc4c994f13c0f3b9f.tar.gz
Fix installation so that files get proper ownership.
Diffstat (limited to 'misc/fd')
-rw-r--r--misc/fd/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/misc/fd/Makefile b/misc/fd/Makefile
index 06dce096cb7..df10671f149 100644
--- a/misc/fd/Makefile
+++ b/misc/fd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 1998/06/22 12:52:31 agc Exp $
+# $NetBSD: Makefile,v 1.6 1998/08/31 20:58:04 tron Exp $
# FreeBSD Id: Makefile,v 1.5 1997/01/06 06:38:33 max Exp
#
@@ -23,8 +23,9 @@ INSTALL_TARGET= install
do-configure:
cd ${WRKSRC} ; make config
-post-install:
- @strip ${PREFIX}/bin/fd
- cd ${WRKSRC} ; [ -f .fdrc ] && ${CP} .fdrc ${PREFIX}/etc/fdrc
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/fd ${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/fd.1 ${PREFIX}/man/ja_JP.EUC/man1
+ ${INSTALL_DATA} ${WRKSRC}/.fdrc ${PREFIX}/etc/fdrc
.include "../../mk/bsd.pkg.mk"