diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-06-12 02:35:37 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-06-12 02:35:37 +0000 |
commit | ec246d7f3fcd459076525f0b3161ad7ff529397b (patch) | |
tree | 7a3b1a3a395c1ec3e1a97f89bd9caebbc480e337 /editors/e93 | |
parent | 8d4fb0320957c18325a575b84e3edcb61678ee20 (diff) | |
download | ports-ec246d7f3fcd459076525f0b3161ad7ff529397b.tar.gz ports-ec246d7f3fcd459076525f0b3161ad7ff529397b.zip |
Notes
Diffstat (limited to 'editors/e93')
-rw-r--r-- | editors/e93/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/editors/e93/Makefile b/editors/e93/Makefile index 391a149fa813..846782f0f881 100644 --- a/editors/e93/Makefile +++ b/editors/e93/Makefile @@ -1,29 +1,33 @@ # New ports collection makefile for: e93 -# Version required: 1.2r5X +# Version required: 1.2r6X # Date created: 21 June 1995 # Whom: Satoshi Asami (asami) # # $Id: Makefile,v 1.4 1995/09/12 22:47:20 asami Exp $ # -DISTNAME= e93-1.2r5X -PKGNAME= e93-1.2.5 +DISTNAME= e93-1.2r6X +PKGNAME= e93-1.2.6 CATEGORIES+= editors MASTER_SITES= ftp://ftp.x.org/contrib/editors/ \ ftp://crl.dec.com/pub/X11/contrib/editors/ MAINTAINER= asami@FreeBSD.ORG +LIB_DEPENDS= tcl75\\.1\\.:${PORTSDIR}/lang/tcl75 + MAKEFILE= makefile USE_X11= yes -WRKSRC= ${WRKDIR}/e93 -RESTRICTED= "Restrictive license." +IS_INTERACTIVE= yes # asks "ok?" about license +pre-install: + @/usr/bin/env PKG_PREFIX=${PREFIX} /bin/sh ${PKGDIR}/REQ ${PKGNAME} INSTALL do-install: - if ! [ -d ${PREFIX}/lib/e93 ]; then mkdir ${PREFIX}/lib/e93; fi + mkdir -p ${PREFIX}/lib/e93 ${PREFIX}/share/doc/e93 (cd ${WRKSRC}; \ install -c -s e93 ${PREFIX}/bin; \ install -c .e93rc ${PREFIX}/lib/e93; \ + install -c LICENSE.TXT ${PREFIX}/share/doc/e93/LICENSE.TXT; \ ) .include <bsd.port.mk> |