aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2008-09-01 20:21:47 +0000
committerDoug Barton <dougb@FreeBSD.org>2008-09-01 20:21:47 +0000
commit2508679812973a6b7cf6424947603556f5c2866a (patch)
treea9df30731570f8fcec9a221c33babe5713b354d4 /editors
parent6a229f8356720acb1e70ba4668b43cdbf18f5655 (diff)
downloadports-2508679812973a6b7cf6424947603556f5c2866a.tar.gz
ports-2508679812973a6b7cf6424947603556f5c2866a.zip
Remove the port for Pine, and the slave port for Pico. UW has discontinued
development on the Pine branch, and is instead focusing its efforts on the successor, Alpine. http://www.washington.edu/alpine/ Alpine has more features, much better localization, better organized (and largely rewritten) code, is BSD licensed, and should be a drop-in replacement in terms of configuration files. Alpine version 1.00 was released on March 17, 2008 after over a year of development and community testing, and has since had 2 releases for bugfixes and new features, so it's safe to say that this is a mature replacement.
Notes
Notes: svn path=/head/; revision=219613
Diffstat (limited to 'editors')
-rw-r--r--editors/pico/Makefile54
-rw-r--r--editors/pico/distinfo3
-rw-r--r--editors/pico/files/patch-aa31
-rw-r--r--editors/pico/files/patch-an31
-rw-r--r--editors/pico/files/patch-ap20
-rw-r--r--editors/pico/files/patch-as57
-rw-r--r--editors/pico/files/patch-bd11
-rw-r--r--editors/pico/pkg-descr4
8 files changed, 0 insertions, 211 deletions
diff --git a/editors/pico/Makefile b/editors/pico/Makefile
deleted file mode 100644
index 16a9fc4eee70..000000000000
--- a/editors/pico/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-# New ports collection makefile for: pico
-# Date created: 16 December 2000
-# Whom: Jeremy Shaffner <jeremy@external.org>
-#
-# $FreeBSD$
-#
-# All patch files have been taken from mail/pine4
-
-PORTNAME= pico
-PORTVERSION= 4.64
-CATEGORIES= editors
-MASTER_SITES= ftp://ftp.cac.washington.edu/pine/ \
- http://mirror.sit.wisc.edu/pub/net/mail/pine/ \
- ftp://sunsite.icm.edu.pl/pub/unix/mail/pine/ \
- ftp://ftp.uni-magdeburg.de/pub/mirror/ftp.cac.washington.edu/pine/ \
- ftp://ftp.fu-berlin.de/unix/mail/pine/ \
- ftp://ftp.ut.ee/pub/unix/mail/pine/ \
- ftp://gd.tuwien.ac.at/infosys/mail/pine/ \
- http://dougbarton.us/Downloads/
-DISTNAME= pine${PORTVERSION}
-
-MAINTAINER= DougB@FreeBSD.org
-COMMENT= PIne's message COmposition editor
-
-OPTIONS= ISPELL "Use ispell as the spell checker" on \
- NO_SPELLER "Do not use a spell checker" off
-
-.include <bsd.port.pre.mk>
-
-.if !defined(WITH_NO_SPELLER)
-.if !defined(WITHOUT_ISPELL)
-RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell
-.endif
-.endif
-
-WRKSRC= ${WRKDIR}/pine${PORTVERSION}/pico
-PATCH_WRKSRC= ${WRKSRC}/..
-
-MAKEFILE= makefile.bsf
-ALL_TARGET= pico
-
-MAN1= pico.1
-PLIST_FILES= bin/pico
-
-post-patch:
- ${CP} ${WRKSRC}/osdep/os-bsf.h ${WRKSRC}/osdep/os-bsf.h.presed
- ${SED} -e "s:@@PREFIX@@:${PREFIX}:g" \
- ${WRKSRC}/osdep/os-bsf.h.presed > ${WRKSRC}/osdep/os-bsf.h
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/pico ${PREFIX}/bin/pico
- ${INSTALL_MAN} ${WRKSRC}/../doc/pico.1 ${PREFIX}/man/man1/pico.1
-
-.include <bsd.port.post.mk>
diff --git a/editors/pico/distinfo b/editors/pico/distinfo
deleted file mode 100644
index cdbdbb143c2a..000000000000
--- a/editors/pico/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (pine4.64.tar.gz) = 9cc68749675f1c35a2147a35d2c5b344
-SHA256 (pine4.64.tar.gz) = c200646bc2e7128370be3b6d28d26944984a0d4003982762f97ee4aa142d183d
-SIZE (pine4.64.tar.gz) = 4218629
diff --git a/editors/pico/files/patch-aa b/editors/pico/files/patch-aa
deleted file mode 100644
index b6de406f8fc8..000000000000
--- a/editors/pico/files/patch-aa
+++ /dev/null
@@ -1,31 +0,0 @@
---- pico/search.c.orig Thu Jun 21 10:50:05 2001
-+++ pico/search.c Fri Sep 28 00:08:23 2001
-@@ -98,12 +98,15 @@
- int bc;
- int pc;
- {
-+ bc = (unsigned char)bc;
-+ pc = (unsigned char)pc;
-+
- if ((curwp->w_bufp->b_mode & MDEXACT) == 0){
-- if (bc>='a' && bc<='z')
-- bc -= 0x20;
-+ if (islower(bc))
-+ bc = toupper(bc);
-
-- if (pc>='a' && pc<='z')
-- pc -= 0x20;
-+ if (islower(pc))
-+ pc = toupper(pc);
- }
-
- return(bc == pc);
-@@ -805,7 +808,7 @@
- int maxlength; /* maximum chars in destination */
-
- {
-- char c; /* current char to translate */
-+ unsigned char c; /* current char to translate */
-
- /* scan through the string */
- while ((c = *srcstr++) != 0) {
diff --git a/editors/pico/files/patch-an b/editors/pico/files/patch-an
deleted file mode 100644
index d458616a3b76..000000000000
--- a/editors/pico/files/patch-an
+++ /dev/null
@@ -1,31 +0,0 @@
-*** pico/osdep/os-bsf.h.orig Wed Feb 7 14:53:26 2001
---- pico/osdep/os-bsf.h Wed Mar 5 04:24:00 2003
-***************
-*** 153,165 ****
- /*
- * Place where mail gets delivered (for pico's new mail checking)
- */
-! #define MAILDIR "/usr/spool/mail"
-
- /*
- * What and where the tool that checks spelling is located. If this is
- * undefined, then the spelling checker is not compiled into pico.
- */
-! #define SPELLER "/usr/bin/spell"
-
- #ifdef MOUSE
- #define XTERM_MOUSE_ON "\033[?1000h" /* DECSET with parm 1000 */
---- 153,165 ----
- /*
- * Place where mail gets delivered (for pico's new mail checking)
- */
-! #define MAILDIR "/var/mail"
-
- /*
- * What and where the tool that checks spelling is located. If this is
- * undefined, then the spelling checker is not compiled into pico.
- */
-! #define SPELLER "@@PREFIX@@/bin/spell"
-
- #ifdef MOUSE
- #define XTERM_MOUSE_ON "\033[?1000h" /* DECSET with parm 1000 */
diff --git a/editors/pico/files/patch-ap b/editors/pico/files/patch-ap
deleted file mode 100644
index f41ce128e49e..000000000000
--- a/editors/pico/files/patch-ap
+++ /dev/null
@@ -1,20 +0,0 @@
-*** pico/osdep/term.cap.orig Thu Nov 14 09:27:17 2002
---- pico/osdep/term.cap Fri Sep 5 01:44:21 2003
-***************
-*** 288,294 ****
- _kppu = tgetstr("kP", &p);
- _kppd = tgetstr("kN", &p);
- _kphome = tgetstr("kh", &p);
-! _kpend = tgetstr("kH", &p);
- _kpdel = tgetstr("kD", &p);
- _kf1 = tgetstr("k1", &p);
- _kf2 = tgetstr("k2", &p);
---- 288,295 ----
- _kppu = tgetstr("kP", &p);
- _kppd = tgetstr("kN", &p);
- _kphome = tgetstr("kh", &p);
-! if((_kpend = tgetstr("@7", &p)) == NULL)
-! _kpend = tgetstr("kH",&p);
- _kpdel = tgetstr("kD", &p);
- _kf1 = tgetstr("k1", &p);
- _kf2 = tgetstr("k2", &p);
diff --git a/editors/pico/files/patch-as b/editors/pico/files/patch-as
deleted file mode 100644
index 0a5cc4d1d2e2..000000000000
--- a/editors/pico/files/patch-as
+++ /dev/null
@@ -1,57 +0,0 @@
-*** pico/edef.h.orig Thu Apr 23 02:53:44 1998
---- pico/edef.h Tue Feb 9 22:14:08 1999
-***************
-*** 59,65 ****
- int ComposerEditing = FALSE; /* TRUE if message line is open */
- int revexist = FALSE; /* does reverse video exist? */
- char modecode[] = "WCSEVO"; /* letters to represent modes */
-! long gmode = MDWRAP; /* global editor mode */
- int sgarbf = TRUE; /* TRUE if screen is garbage */
- int mpresf = FALSE; /* TRUE if message in last line */
- int clexec = FALSE; /* command line execution flag */
---- 59,65 ----
- int ComposerEditing = FALSE; /* TRUE if message line is open */
- int revexist = FALSE; /* does reverse video exist? */
- char modecode[] = "WCSEVO"; /* letters to represent modes */
-! long gmode = MDWRAP | MDTCAPWINS; /* global editor mode */
- int sgarbf = TRUE; /* TRUE if screen is garbage */
- int mpresf = FALSE; /* TRUE if message in last line */
- int clexec = FALSE; /* command line execution flag */
-*** pico/main.c.orig Tue Feb 9 21:46:54 1999
---- pico/main.c Tue Feb 9 22:14:08 1999
-***************
-*** 443,449 ****
- gmode ^= MDSSPD;
- break;
- case 'q': /* -q for termcap takes precedence */
-! gmode ^= MDTCAPWINS;
- break;
- case 'w': /* -w turn off word wrap */
- gmode ^= MDWRAP;
---- 443,449 ----
- gmode ^= MDSSPD;
- break;
- case 'q': /* -q for termcap takes precedence */
-! gmode |= MDTCAPWINS;
- break;
- case 'w': /* -w turn off word wrap */
- gmode ^= MDWRAP;
-*** pico/pilot.c.orig Mon Aug 24 20:37:39 1998
---- pico/pilot.c Tue Feb 9 22:14:09 1999
-***************
-*** 222,228 ****
- sup_keyhelp = !sup_keyhelp;
- break;
- case 'q': /* -q for termcap takes precedence */
-! gmode ^= MDTCAPWINS;
- break;
- case 'z': /* -z to suspend */
- gmode ^= MDSSPD;
---- 222,228 ----
- sup_keyhelp = !sup_keyhelp;
- break;
- case 'q': /* -q for termcap takes precedence */
-! gmode |= MDTCAPWINS;
- break;
- case 'z': /* -z to suspend */
- gmode ^= MDSSPD;
diff --git a/editors/pico/files/patch-bd b/editors/pico/files/patch-bd
deleted file mode 100644
index 9e760bc21447..000000000000
--- a/editors/pico/files/patch-bd
+++ /dev/null
@@ -1,11 +0,0 @@
---- pico/makefile.bsf.orig Sun Feb 11 20:15:44 2001
-+++ pico/makefile.bsf Sun Feb 11 20:15:18 2001
-@@ -37,7 +37,7 @@
- DEBUG= -DDEBUG # -g
-
- STDCFLAGS= -DBSDI -DBSDI2 -DPOSIX -DJOB_CONTROL -DMOUSE
--CFLAGS= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS)
-+CFLAGS+= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS)
-
- # switches for library building
- LIBCMD= ar
diff --git a/editors/pico/pkg-descr b/editors/pico/pkg-descr
deleted file mode 100644
index 1daa99f43458..000000000000
--- a/editors/pico/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-PICO is a very simple and easy-to-use text editor offering paragraph
-justification, cut/paste, and a spelling checker.
-
-WWW: http://www.washington.edu/pine/