1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

A full featured text editor written in assembler.

PR:		23312
Submitted by:	Joseph Scott <joseph@randomnetworks.com>
Reviewed by:	sobomax
This commit is contained in:
Dmitry Sivachenko 2000-12-18 20:38:32 +00:00
parent 0aafce6a70
commit ad8364e7b4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36072
7 changed files with 65 additions and 0 deletions

View File

@ -23,6 +23,7 @@
SUBDIR += custom-mule
SUBDIR += dedit
SUBDIR += dte
SUBDIR += e3
SUBDIR += e93
SUBDIR += elvis
SUBDIR += emacs

25
editors/e3/Makefile Normal file
View File

@ -0,0 +1,25 @@
# New ports collection makefile for: e3
# Date created: Tue 5 Dec 2000
# Whom: joseph@randomnetworks.com
#
# $FreeBSD$
#
PORTNAME= e3
PORTVERSION= 1.1
CATEGORIES= editors
MASTER_SITES= http://www.sax.de/~adlibit/
MAINTAINER= joseph@randomnetworks.com
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
WRKSRC= ${WRKDIR}/${DISTNAME}a
USE_GMAKE= yes
MAKE_ARGS= OS=FREEBSD
ONLY_FOR_ARCH= i386
MAN1= e3.1
.include <bsd.port.mk>

1
editors/e3/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (e3-1.1.tar.gz) = 51576bff69bfb0f35a9a517a5244f4fa

View File

@ -0,0 +1,26 @@
--- Makefile.orig Mon Dec 18 21:08:30 2000
+++ Makefile Mon Dec 18 21:10:02 2000
@@ -7,7 +7,7 @@
# 2. edit dest dir prefix if you want....
-PREFIX='/usr/local'
+PREFIX?='/usr/local'
#PREFIX=/boot/home
BINDIR='$(PREFIX)/bin'
@@ -38,12 +38,12 @@
install: e3
install -d $(PREFIX) $(BINDIR) $(MANDIR)
- install -m 755 e3 $(BINDIR)
+ ${BSD_INSTALL_PROGRAM} e3 $(BINDIR)
ln -sf $(BINDIR)/e3 $(BINDIR)/e3ws
ln -sf $(BINDIR)/e3 $(BINDIR)/e3em
ln -sf $(BINDIR)/e3 $(BINDIR)/e3pi
ln -sf $(BINDIR)/e3 $(BINDIR)/e3vi
- install -m 644 e3.man $(MANDIR)/e3.$(MANSEC)
+ ${BSD_INSTALL_MAN} e3.man $(MANDIR)/e3.$(MANSEC)
clean:
rm -f e3*.o e3*.lst e3 e3em e3pi e3vi e3ws

1
editors/e3/pkg-comment Normal file
View File

@ -0,0 +1 @@
A full featured text editor written in assembler

6
editors/e3/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
e3 is a full featured text editor written in NASM assembler. It is highly
optimized for size. For the command syntax you can choice between the
families of Wordstar(TM), EMACS, Pico or vi editors. The executable's size is
below 10000 byte, so you won't waste your disk space ;-)
WWW: http://www.sax.de/~adlibit/

5
editors/e3/pkg-plist Normal file
View File

@ -0,0 +1,5 @@
bin/e3
bin/e3em
bin/e3pi
bin/e3vi
bin/e3ws