head	1.5;
access;
symbols
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.4
	RELEASE_6_3_0:1.4
	PRE_XORG_7:1.4
	RELEASE_4_EOL:1.4
	RELEASE_6_2_0:1.4
	RELEASE_6_0_0:1.2
	RELEASE_5_4_0:1.2
	RELEASE_4_11_0:1.2
	RELEASE_5_3_0:1.2
	RELEASE_4_10_0:1.2
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1;
locks; strict;
comment	@# @;


1.5
date	2009.12.23.02.54.49;	author vanilla;	state dead;
branches;
next	1.4;

1.4
date	2006.03.20.21.58.01;	author pav;	state Exp;
branches;
next	1.3;

1.3
date	2006.01.14.21.15.46;	author pav;	state dead;
branches;
next	1.2;

1.2
date	2003.12.31.00.24.03;	author leeym;	state Exp;
branches;
next	1.1;

1.1
date	2003.10.22.23.46.06;	author kris;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Upgrade to 1.1.

PR:		ports/141902
Submitted by:	maintainer
@
text
@--- Makefile.orig	Wed Aug 25 14:27:23 1999
+++ Makefile	Thu Dec 18 01:29:56 2003
@@@@ -1,10 +1,11 @@@@
-CC = gcc
+CC ?= cc
 OBJ = edit.o term.o screen.o stuff.o io.o editor.o
 
 #----------------------------------------------------------
 # FreeBSD
 #----------------------------------------------------------
-CFLAGS = -DVEDITOR
+CFLAGS ?= -O -pipe
+CFLAGS += -DVEDITOR
 LIBS = -ltermcap -lcompat
 
 #----------------------------------------------------------
@@@@ -26,12 +27,12 @@@@
 	rm -f *.o ve entab
 
 install: all
-	mkdir -p /usr/local/share/ve
-	cp ve /usr/local/bin
-	cp 00readme.txt ve.hlp /usr/local/share/ve
+	mkdir -p $(PREFIX)/share/ve
+	$(BSD_INSTALL_PROGRAM) ve $(PREFIX)/bin
+	$(BSD_INSTALL_DATA) 00readme.txt ve.hlp $(PREFIX)/share/ve
 
 ve: $(OBJ)
-	gcc $(CFLAGS) -o ve $(OBJ) $(LIBS)
+	$(CC) $(CFLAGS) -o ve $(OBJ) $(LIBS)
 
 entab: entab.o
-	gcc -o entab entab.o
+	$(CC) -o entab entab.o
@


1.4
log
@NTHU-CS Maple BBS 2.36 BBS-like editor

ve is a tiny editor, about 60K. It's woju's favorite UNIX editor.
The most obvious weakness of ve is changing TABs into Spaces. So
please don't use ve to edit TAB-important files, such as Makefile,
sendmail.cf, syslog.conf... etc.

PR:		ports/92248
Submitted by:	chinsan <chinsan.tw@@gmail.com>
@
text
@@


1.3
log
@- Remove expired ports
@
text
@@


1.2
log
@add extrapatch and unbreak this port on -current.

PR:		60343
Submitted by:	leeym
Approved by:	maintainer timeout (2 weeks)
@
text
@@


1.1
log
@Respect CC and CFLAGS
@
text
@d1 2
a2 2
--- Makefile.orig	Wed Oct 22 16:44:56 2003
+++ Makefile	Wed Oct 22 16:45:37 2003
d17 10
a26 2
@@@@ -31,7 +32,7 @@@@
 	cp 00readme.txt ve.hlp /usr/local/share/ve
@

