diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-09-24 03:53:43 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-09-24 03:53:43 +0000 |
commit | fc99a14174d725690dfcbab08f1ae5a330ab4146 (patch) | |
tree | 37c88a8983ddcaf6829179ca7de813b2d542a491 /misc/sci/Makefile | |
parent | bb5a0a51155b9d975e10304c53ba81ce4b5ee528 (diff) | |
download | pkgsrc-fc99a14174d725690dfcbab08f1ae5a330ab4146.tar.gz |
* This pkg actually works better without ncurses than with(!)
(ncurses wasn't found, and if it was made to find it, the screen
attributes were not as good as with our in-tree curses)
* Install samples & docs
Diffstat (limited to 'misc/sci/Makefile')
-rw-r--r-- | misc/sci/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/misc/sci/Makefile b/misc/sci/Makefile index e55e3942db4..16859c6423a 100644 --- a/misc/sci/Makefile +++ b/misc/sci/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2000/03/16 13:50:13 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2000/09/24 03:53:43 hubertf Exp $ # DISTNAME= sci.0.3.8 @@ -9,8 +9,6 @@ MASTER_SITES= http://linuxparts.com/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://linuxparts.com/software.html -DEPENDS+= ncurses>=4.2:../../devel/ncurses - WRKSRC= ${WRKDIR}/sci pre-build: @@ -18,5 +16,13 @@ pre-build: pre-install: -@${GUNZIP_CMD} ${WRKSRC}/sci.1.gz +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sci + for i in app APP.README COPYING README allbut.awk edit.awk \ + maillist.awk template.sci template.sci.num sortd \ + whch scidata.out ; \ + do \ + ${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/doc/sci ; \ + done .include "../../mk/bsd.pkg.mk" |