summaryrefslogtreecommitdiff
path: root/misc/fep
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-03-06 15:05:43 +0000
committerRene Ladan <rene@FreeBSD.org>2013-03-06 15:05:43 +0000
commitba2885d840d3c067348f53c5f7568f0b42887cf9 (patch)
tree8ecee83305fb2df252aad7edc8ac22099a13d7e3 /misc/fep
parent- Update to 4.5.24 (diff)
Remove expired, unmaintained ports:
2013-03-01 sysutils/sge60: Ancient and unsupported release 2013-03-01 sysutils/sge61: Ancient and unsupported release 2013-03-05 x11-themes/sapphire-themes: Broken for more than 6 month 2013-03-05 misc/fep: Broken for more than 6 month 2013-03-05 devel/gauche-gaunit: Broken for more than 6 month 2013-03-05 games/tuxracer_golf: Broken for more than 6 month 2013-03-05 net/bfilter: Broken for more than 6 month 2013-03-05 graphics/fnlib: Broken for more than 6 month 2013-03-05 print/gfontview: Broken for more than 6 month 2013-03-05 print/hugelatex: Broken for more than 6 month 2013-03-05 misc/gtktalog: Broken for more than 6 month 2013-03-05 x11/wterm: Broken for more than 6 month 2013-03-05 databases/xapian-bindings10: Broken for more than 6 month 2013-03-05 databases/adstudio: Broken for more than 6 month 2013-03-05 misc/splitvt: Broken for more than 6 month 2013-03-05 sysutils/udesc_dump: Broken for more than 6 month 2013-03-05 textproc/gxditview: Broken for more than 6 month 2013-03-05 x11/powershell: Broken for more then 6 month
Notes
Notes: svn path=/head/; revision=313519
Diffstat (limited to 'misc/fep')
-rw-r--r--misc/fep/Makefile28
-rw-r--r--misc/fep/distinfo2
-rw-r--r--misc/fep/files/patch-aa30
-rw-r--r--misc/fep/files/patch-fep_edit.c11
-rw-r--r--misc/fep/files/patch-fep_main.c11
-rw-r--r--misc/fep/pkg-descr4
6 files changed, 0 insertions, 86 deletions
diff --git a/misc/fep/Makefile b/misc/fep/Makefile
deleted file mode 100644
index f9864c730d0a..000000000000
--- a/misc/fep/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# Created by: Nobuhiro Yasutomi <nobu@psrc.isac.co.jp>
-# $FreeBSD$
-
-PORTNAME= fep
-PORTVERSION= 1.0
-CATEGORIES= misc
-MASTER_SITES= ftp://ftp.sra.co.jp/pub/cmd/fep/
-DISTNAME= ${PORTNAME}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A general purpose front end for command line editing
-
-DEPRECATED= Broken for more than 6 month
-EXPIRATION_DATE= 2013-03-05
-
-MAN1= fep.1
-MANCOMPRESSED= yes
-PLIST_FILES= bin/fep
-
-NO_WRKSUBDIR= yes
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 800039
-BROKEN= Does not compile without sgtty
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/misc/fep/distinfo b/misc/fep/distinfo
deleted file mode 100644
index ec86694bf5de..000000000000
--- a/misc/fep/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (fep.tar.gz) = fa08bcdeaf4741aadc299aeeb414d3ebdbf1f8e048c7930680279538d15e76f1
-SIZE (fep.tar.gz) = 40137
diff --git a/misc/fep/files/patch-aa b/misc/fep/files/patch-aa
deleted file mode 100644
index b3afe291b31d..000000000000
--- a/misc/fep/files/patch-aa
+++ /dev/null
@@ -1,30 +0,0 @@
---- Makefile.orig Thu Jun 10 11:51:22 1993
-+++ Makefile Tue Feb 20 14:17:52 1996
-@@ -19,13 +19,13 @@
-
- #STAT = -DSTAT# Delete # for statistic info
- #KANJI = -DKANJI# Delete # for KANJI handling
--CONFIG = $(STAT) $(KANJI)
-+CONFIG = $(STAT) $(KANJI) -D_cnt=_r
-
- #DEBUG = -g
--DEBUG = -O
-+#DEBUG = -O
-
--CFLAGS = $(DEBUG) $(CONFIG)
-+CFLAGS += $(DEBUG) $(CONFIG)
--LDFLAGS = -ltermcap
-+LDFLAGS = -ltermcap -lcompat
-
- all: $(TARGET)
-
-@@ -37,7 +37,7 @@
-
- install: $(TARGET)
-- install -s $(TARGET) $(INSTDIR)
-+ $(BSD_INSTALL_PROGRAM) $(TARGET) $(PREFIX)/bin
-- install -c fep.1 /usr/man/manl/fep.l
-+ gzip -9n -c fep.1 > $(PREFIX)/man/man1/fep.1.gz
-
- fep.1: fep.jman
- sed -e '/^\.EG/d' -e '/^\.JP/,/^\.EJ/d' -e '/^\.\\"KS/,/^\.\\"KE/d' \
diff --git a/misc/fep/files/patch-fep_edit.c b/misc/fep/files/patch-fep_edit.c
deleted file mode 100644
index f07dcd08402e..000000000000
--- a/misc/fep/files/patch-fep_edit.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- fep_edit.c.orig Fri Jan 20 17:16:37 1995
-+++ fep_edit.c Thu Mar 6 09:42:13 2003
-@@ -426,7 +426,7 @@
-
- currentNull = strlen (CommandLine);
-
-- if (currentNull >= maxline) {
-+ if (currentNull + 1 >= maxline) {
- errorBell();
- return (0);
- }
diff --git a/misc/fep/files/patch-fep_main.c b/misc/fep/files/patch-fep_main.c
deleted file mode 100644
index fadf34ceae7c..000000000000
--- a/misc/fep/files/patch-fep_main.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- fep_main.c Tue Jun 4 22:01:30 2002
-+++ fep_main.c Tue Jun 4 22:01:53 2002
-@@ -638,7 +638,7 @@
-
- catchsig()
- {
-- union wait status;
-+ int status;
- struct rusage ru;
-
- if (wait3 (&status, WNOHANG | WUNTRACED, &ru) != child_pid)
diff --git a/misc/fep/pkg-descr b/misc/fep/pkg-descr
deleted file mode 100644
index 2ba9153ff919..000000000000
--- a/misc/fep/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Fep is a general purpose front end processor applicable to
-most UNIX commands that features vi(1)- or emacs(1)-like
-line editing and a command history mechanism like that of
-csh(1).