diff options
author | tg <tg@FreeBSD.org> | 1998-03-16 14:08:19 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1998-03-16 14:08:19 +0000 |
commit | 4d447d239ff74ff300253b5698bd7ba0d9172243 (patch) | |
tree | 80118e63ff28cad488fe990ac7bd490b6d50e154 /editors/le/Makefile | |
parent | 02ef3d22c97ac02fcef184c51ec9debd1561623f (diff) | |
download | FreeBSD-ports-4d447d239ff74ff300253b5698bd7ba0d9172243.zip FreeBSD-ports-4d447d239ff74ff300253b5698bd7ba0d9172243.tar.gz |
Import le port. le is a text editor with many block operations with
stream and rectangular blocks, can edit both unix and dos style files
(LF/CRLF), is binary clean, has hex mode, can edit large files and
mmap'pable devices in MAP_SHARED mode, has tunable syntax
highlighting, tunable color scheme (can use default colors), tunable
key map.
PR: 4777
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'editors/le/Makefile')
-rw-r--r-- | editors/le/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/editors/le/Makefile b/editors/le/Makefile new file mode 100644 index 0000000..e5383d4 --- /dev/null +++ b/editors/le/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: le +# Version required: 1.4.2 +# Date created: 16 October 1997 +# Whom: Andrey Zakhvatov +# +# $Id$ +# + +DISTNAME= le-1.4.2 +CATEGORIES= editors +MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/util/texteditors/ + +MAINTAINER= andy@icc.surw.chel.su + +GNU_CONFIGURE= yes +MAN1= le.1 + +post-install: +.for file in colors1 colors2 colors3 + @ ${INSTALL_DATA} ${WRKSRC}/misc/${file} ${PREFIX}/share/le +.endfor +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/le +.for file in FEATURES HISTORY NEWS README + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/le +.endfor +.endif + +.include <bsd.port.mk> |