diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-01-12 17:35:07 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-01-12 17:35:07 +0000 |
commit | 3b67f44ce3a7626dd4013fbecb064cd04a695bce (patch) | |
tree | 0f44c5b893fd037e743370ed990271d750b7b547 /mail/pine4/files/patch-al | |
parent | Build/install/use c-client shared and normal libraries (diff) |
Don't build/install shared c-client library, because it is obsoleted
with imapd port and used only for pine
Don't build/install mtest, already done in imapd port now
Add missing -lcrypt for pine build
Notes
Notes:
svn path=/head/; revision=5326
Diffstat (limited to 'mail/pine4/files/patch-al')
-rw-r--r-- | mail/pine4/files/patch-al | 54 |
1 files changed, 36 insertions, 18 deletions
diff --git a/mail/pine4/files/patch-al b/mail/pine4/files/patch-al index 1ab82cfcedb3..2c6d35ba6a4d 100644 --- a/mail/pine4/files/patch-al +++ b/mail/pine4/files/patch-al @@ -1,28 +1,25 @@ -*** build.orig Tue May 14 14:22:47 1996 ---- build Fri Jun 14 00:09:03 1996 +*** build.orig Tue May 14 23:22:47 1996 +--- build Sun Jan 12 20:18:50 1997 *************** -*** 169,179 **** +*** 167,180 **** + cd $PHOME/bin + rm -f pine mtest imapd pico pilot if [ -s ../pine/pine ] ; then ln ../pine/pine pine ; fi - if [ -s ../c-client/mtest ] ; then ln ../c-client/mtest mtest ; fi - if [ -s ../imapd/imapd ] ; then ln ../imapd/imapd imapd ; fi +- if [ -s ../c-client/mtest ] ; then ln ../c-client/mtest mtest ; fi +- if [ -s ../imapd/imapd ] ; then ln ../imapd/imapd imapd ; fi if [ -s ../pico/pico ] ; then ln ../pico/pico pico ; fi if [ -s ../pico/pilot ] ; then ln ../pico/pilot pilot ; fi cd $PHOME echo '' echo "Links to executables are in bin directory:" -! size bin/pine bin/mtest bin/imapd bin/pico bin/pilot +- size bin/pine bin/mtest bin/imapd bin/pico bin/pilot echo "Done" ;; ---- 169,189 ---- + +--- 167,179 ---- + cd $PHOME/bin + rm -f pine mtest imapd pico pilot if [ -s ../pine/pine ] ; then ln ../pine/pine pine ; fi - if [ -s ../c-client/mtest ] ; then ln ../c-client/mtest mtest ; fi -+ if [ -s ../c-client/libc-client.so.1.3 ] ; -+ then ln ../c-client/libc-client.so.1.3 libc-client.so.1.3 ; fi - if [ -s ../imapd/imapd ] ; then ln ../imapd/imapd imapd ; fi -+ if [ -s ../imap/systype/ipopd/ipop2d ] ; -+ then ln ../imap/systype/ipopd/ipop2d ipop2d ; fi -+ if [ -s ../imap/systype/ipopd/ipop3d ] ; -+ then ln ../imap/systype/ipopd/ipop3d ipop3d ; fi if [ -s ../pico/pico ] ; then ln ../pico/pico pico ; fi if [ -s ../pico/pilot ] ; then ln ../pico/pilot pilot ; fi + if [ -s ../pico/libpico.so.1.3 ] ; @@ -30,8 +27,29 @@ cd $PHOME echo '' echo "Links to executables are in bin directory:" -! size bin/pine bin/mtest bin/imapd bin/pico bin/pilot \ -! bin/ipop2d bin/ipop3d \ -! bin/libc-client.so.1.3 bin/libpico.so.1.3 echo "Done" ;; + +*************** +*** 185,194 **** + make clean + echo "Cleaning Pine" + cd $PHOME/pine +! make -f makefile.ult clean + echo "Cleaning pico" + cd $PHOME/pico +! make $makeargs -f makefile.ult clean + echo "Done" + cd $PHOME + ;; +--- 184,193 ---- + make clean + echo "Cleaning Pine" + cd $PHOME/pine +! make -f makefile.bsf clean + echo "Cleaning pico" + cd $PHOME/pico +! make $makeargs -f makefile.bsf clean + echo "Done" + cd $PHOME + ;; |