Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 09 Aug 95 20:57:12 -0700
From:      "Tom Samplonius" <tom@misery.sdf.com>
To:        ports@freebsd.org
Cc:        asami@freebsd.org
Subject:   Some "pine" fixes
Message-ID:  <Pine.BSF.3.91.950809204952.3966A-500000@misery.sdf.com>

next in thread | raw e-mail | index | archive | help
> THIS IS A MESSAGE IN 'MIME' FORMAT.  Your mail reader does not support MIME.
> You may not be able to read some parts of this message.

--0-879752694-808027032=:3966
Content-ID: <66_808029158_1>
Content-Type: TEXT/PLAIN; charset="US-ASCII"
Content-Transfer-Encoding: 7bit



  Enclosed are patches to the pine port.  They are meant to be applied 
from /usr/ports/mail/pine

  patch-aa.diff - Changes config file from /usr/local/lib/pine/pine.conf 
to /usr/local/etc/pine.conf

  Makefile.diff - Install ipop2d and ipop3d (previously they weren't 
installed at all!) into libexec.  Change location of imapd from bin to 
libexec

  PLIST.diff - Change location of imapd, and add ipop2d and ipop2d

  DESCR.diff - Mention that package includes POP2 and POP3 servers



Tom
--0-879752694-808027032=:3966
Content-ID: <Pine.BSF.3.91.950809205711.3966B@misery.sdf.com>
Content-Type: TEXT/PLAIN; charset="US-ASCII"
Content-Transfer-Encoding: 7bit

*** pkg/DESCR.orig	Wed Aug  9 19:47:27 1995
--- pkg/DESCR	Wed Aug  9 19:49:21 1995
***************
*** 3,9 ****
  computer users in mind, but can be tailored to accommodate the needs
  of "power users" as well.  Pine uses Internet message protocols (e.g.
  RFC-822, SMTP, MIME, IMAP, NNTP) and runs on Unix and PCs.  This
! package also includes the Pico editor and the IMAP daemon.
  
  If you want to use the spell checking feature of pine, set the
  environment variable SPELL to "/usr/local/bin/ispell -l".
--- 3,14 ----
  computer users in mind, but can be tailored to accommodate the needs
  of "power users" as well.  Pine uses Internet message protocols (e.g.
  RFC-822, SMTP, MIME, IMAP, NNTP) and runs on Unix and PCs.  This
! package also includes the Pico editor, the IMAP daemon, a POP2 server, 
! and a POP3 server.
  
  If you want to use the spell checking feature of pine, set the
  environment variable SPELL to "/usr/local/bin/ispell -l".
+ 
+ An optional configuration file "pine.conf" can be put into /usr/local/etc 
+ to set system wide defaults.  The format of this file is identical to the 
+ .pinerc file that is auto-generated by pine in your home directory.

--0-879752694-808027032=:3966
Content-ID: <Pine.BSF.3.91.950809205712.3966C@misery.sdf.com>
Content-Type: TEXT/PLAIN; charset="US-ASCII"
Content-Transfer-Encoding: 7bit

*** files/Makefile.orig	Wed Aug  9 19:41:43 1995
--- files/Makefile	Wed Aug  9 19:45:53 1995
***************
*** 3,9 ****
  all:
  	./build bsf
  install:
! 	install -c -s -o bin -g bin bin/imapd $(DESTDIR)/bin/imapd
  	install -c -s -o bin -g bin bin/mtest $(DESTDIR)/bin/mtest
  	install -c -s -o bin -g bin bin/pico $(DESTDIR)/bin/pico
  	install -c -s -o bin -g bin bin/pine $(DESTDIR)/bin/pine
--- 3,11 ----
  all:
  	./build bsf
  install:
! 	install -c -s -o bin -g bin bin/imapd $(DESTDIR)/libexec/imapd
! 	install -c -s -o bin -g bin imap/systype/ipopd/ipop2d ${DESTDIR}/libexec/ipop2d
! 	install -c -s -o bin -g bin imap/systype/ipopd/ipop3d ${DESTDIR}/libexec/ipop3d
  	install -c -s -o bin -g bin bin/mtest $(DESTDIR)/bin/mtest
  	install -c -s -o bin -g bin bin/pico $(DESTDIR)/bin/pico
  	install -c -s -o bin -g bin bin/pine $(DESTDIR)/bin/pine

--0-879752694-808027032=:3966
Content-ID: <Pine.BSF.3.91.950809205712.3966D@misery.sdf.com>
Content-Type: TEXT/PLAIN; charset="US-ASCII"
Content-Transfer-Encoding: 7bit

*** pkg/PLIST.orig	Wed Aug  9 19:46:22 1995
--- pkg/PLIST	Wed Aug  9 19:46:42 1995
***************
*** 1,4 ****
! bin/imapd
  bin/mtest
  bin/pico
  bin/pine
--- 1,6 ----
! libexec/imapd
! libexec/ipop2d
! libexec/ipop3d
  bin/mtest
  bin/pico
  bin/pine

--0-879752694-808027032=:3966
Content-ID: <Pine.BSF.3.91.950809205712.3966E@misery.sdf.com>
Content-Type: TEXT/PLAIN; charset="US-ASCII"
Content-Transfer-Encoding: 7bit

*** patches/patch-aa.orig	Mon Nov 28 04:40:52 1994
--- patches/patch-aa	Wed Aug  9 20:12:25 1995
***************
*** 1027,1034 ****
  + 
  + 
  + /*----- System-wide config file ----------------------------------------*/
! + #define SYSTEM_PINERC             "/usr/local/lib/pine/pine.conf"
! + #define SYSTEM_PINERC_FIXED       "/usr/local/lib/pine/pine.conf.fixed"
  + 
  + 
  + 
--- 1027,1034 ----
  + 
  + 
  + /*----- System-wide config file ----------------------------------------*/
! + #define SYSTEM_PINERC             "/usr/local/etc/pine.conf"
! + #define SYSTEM_PINERC_FIXED       "/usr/local/etc/pine.conf.fixed"
  + 
  + 
  + 
***************
*** 1418,1425 ****
    
    
    /*----- System-wide config file ----------------------------------------*/
! ! #define SYSTEM_PINERC             "/usr/local/lib/pine/pine.conf"
! ! #define SYSTEM_PINERC_FIXED       "/usr/local/lib/pine/pine.conf.fixed"
    
    
  ***************
--- 1418,1425 ----
    
    
    /*----- System-wide config file ----------------------------------------*/
! ! #define SYSTEM_PINERC             "/usr/local/etc/pine.conf"
! ! #define SYSTEM_PINERC_FIXED       "/usr/local/etc/pine.conf.fixed"
    
    
  ***************

--0-879752694-808027032=:3966--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.91.950809204952.3966A-500000>