The Pine package contains the Pine Mail User Agent and several server daemons for various mail protocols, in addition to some nice file and directory editing/browsing programs.
Download (HTTP): http://mirror.sit.wisc.edu/pub/net/mail/pine/pine4.64.tar.bz2
Download (FTP): ftp://ftp.cac.washington.edu/pine/pine4.64.tar.bz2
Download MD5 sum: 39ca07b3d305b4cd0d6aaf4585123275
Download size: 3.0 MB
Estimated disk space required: 64 MB
Estimated build time: 0.6 SBU
Recommended Patch: http://www.linuxfromscratch.org/patches/blfs/6.2.0/pine-4.64-utf8-1.patch
OpenLDAP-2.3.27 and MIT Kerberos V5-1.6
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/pine
Install Pine by running the following commands:
patch -Np1 -i ../pine-4.64-utf8-1.patch && sed -i "s@/usr/local/lib/pine@/etc/pine@g" \ $(grep -lr /usr/local/lib/pine *) && ./build DEBUG=-O MAILSPOOL=/var/mail \ SSLDIR=/usr SSLCERTS=/etc/ssl/certs slx
This package does not come with a test suite.
Now, as the root user:
install -v -m644 doc/*.1 /usr/share/man/man1 && install -v -p -m644 doc/tech-notes/*.html /usr/share/doc/pine4.64 && install -v -m755 \ bin/{pine,imapd,ipop2d,ipop3d,mailutil,mtest,pico,pilot,rpdump,rpload} \ /usr/bin
patch -Np1 -i ../pine-4.64-utf8-1.patch: This patch enables Pine UTF-8 and charset conversion.
sed -i "s@/usr/ ... /lib/pine *): This sed will make Pine use /etc for configuration files. It also alters the documentation to reflect that.
The build procedure for Pine is somewhat unusual, in that options usually passed as ./configure options or housed in $CFLAGS must all be passed on the command line to the ./build script.
./build slx: Pine offers quite a few target platforms, slx specifies Linux using -lcrypt to get the crypt function. See the doc/pine-ports file for more information and other authentication options.
DEBUG=-O: This flag compiles an optimized version of pine and pico that produces no debug files.
MAILSPOOL=/var/mail: Location of mail spool files, /var/mail.
SSLDIR=/usr SSLCERTS=/etc/ssl/certs: Location of OpenSSL files.
Last updated on 2006-06-21 11:26:07 -0500