1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-23 20:51:43 +00:00

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
This commit is contained in:
Andrey A. Chernov 1997-01-12 17:35:07 +00:00
parent 6e9a383862
commit 3b67f44ce3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=5326
6 changed files with 47 additions and 212 deletions

View File

@ -1,121 +1,37 @@
*** imap/ANSI/c-client/Makefile.orig Sat Jun 22 01:25:45 1996
--- imap/ANSI/c-client/Makefile Tue Dec 3 16:30:45 1996
--- imap/ANSI/c-client/Makefile Sun Jan 12 19:41:38 1997
***************
*** 32,43 ****
ARCHIVE=c-client.a
ARRC=ar rc
*** 36,43 ****
BINARIES=mail.o bezerk.o mtx.o tenex2.o mbox.o mh.o mmdf.o imap2.o pop3.o \
news.o nntpcunx.o phile.o dummy.o smtp.o nntp.o rfc822.o misc.o \
osdep.o sm_unix.o newsrc.o
CC=cc
! CC=cc
! CFLAGS=$(EXTRACFLAGS)
DEFAULTDRIVERS=imap nntp pop3 mh tenex mtx mmdf bezerk news phile dummy
LN=ln -s
MAKE=make
--- 32,45 ----
ARCHIVE=c-client.a
+ SHLIB=libc-client.so.1.3
ARRC=ar rc
--- 36,43 ----
BINARIES=mail.o bezerk.o mtx.o tenex2.o mbox.o mh.o mmdf.o imap2.o pop3.o \
news.o nntpcunx.o phile.o dummy.o smtp.o nntp.o rfc822.o misc.o \
osdep.o sm_unix.o newsrc.o
+ SOFILES= ${BINARIES:.o=.so}
CC=cc
! #CC=cc
! #CFLAGS=$(EXTRACFLAGS)
DEFAULTDRIVERS=imap nntp pop3 mh tenex mtx mmdf bezerk news phile dummy
LN=ln -s
MAKE=make
***************
*** 48,53 ****
--- 50,58 ----
RSHPATH=/usr/ucb/rsh
SHELL=/bin/sh
+ # Need this for the shared library rule to work correctly
+ .SUFFIXES: .o .so
+
missing:
@echo "You must specify what type of system"
@false
***************
*** 119,124 ****
--- 124,136 ----
*** 118,123 ****
--- 118,130 ----
STDPROTO=bezerkproto MAILSPOOL=/var/mail \
ACTIVEFILE=/usr/lib/news/active NEWSSPOOL=/usr/spool/news \
RSHPATH=/usr/bin/rsh CFLAGS="-g -O -pipe -DNFSKLUDGE $(EXTRACFLAGS)"
+
+ bsf: # FreeBSD
+ $(MAKE) mtest OS=bsi EXTRADRIVERS="$(EXTRADRIVERS)" \
+ $(MAKE) $(ARCHIVE) OS=bsi EXTRADRIVERS="$(EXTRADRIVERS)" \
+ STDPROTO=bezerkproto MAILSPOOL=/var/mail \
+ ACTIVEFILE=/usr/local/news/lib/active NEWSSPOOL=/var/news \
+ RSHPATH=/usr/bin/rsh CFLAGS="${CFLAGS} -DNFSKLUDGE $(EXTRACFLAGS)" \
+ LDFLAGS="-lcrypt"
+
cvx: # Convex
$(MAKE) mtest OS=$@ EXTRADRIVERS="$(EXTRADRIVERS)" \
STDPROTO=bezerkproto MAILSPOOL=/usr/spool/mail \
***************
*** 394,402 ****
# From here on down is OS-independent
clean:
! $(RM) *.o linkage.[ch] mtest $(ARCHIVE) osdep.* CCTYPE CFLAGS LDFLAGS
! mtest: $(ARCHIVE) mtest.o
$(CC) $(CFLAGS) -o mtest mtest.o $(ARCHIVE) $(LDFLAGS)
$(ARCHIVE): $(BINARIES)
--- 406,414 ----
# From here on down is OS-independent
clean:
! $(RM) *.o *.so linkage.[ch] mtest $(SHLIB) $(ARCHIVE) osdep.* CCTYPE CFLAGS LDFLAGS
! mtest: $(ARCHIVE) $(SHLIB) mtest.o
$(CC) $(CFLAGS) -o mtest mtest.o $(ARCHIVE) $(LDFLAGS)
$(ARCHIVE): $(BINARIES)
***************
*** 404,409 ****
--- 416,428 ----
$(ARRC) $(ARCHIVE) $(BINARIES)
$(RANLIB) $(ARCHIVE)
+ $(SHLIB): $(SOFILES)
+ ld -Bshareable -o $(SHLIB) $(SOFILES)
+ strip $(SHLIB)
+
+ .c.so: osdep.h
+ $(CC) -fpic -DPIC -c $(CFLAGS) ${@:.so=.c} -o $@
+
# Dependencies
bezerk.o: mail.h bezerk.h rfc822.h misc.h osdep.h
***************
*** 444,449 ****
--- 463,484 ----
-DRSH=\"$(RSH)\" -DRSHPATH=\"$(RSHPATH)\" \
$(EXTRAOSDEFS) -c os_$(OS).c
$(MV) os_$(OS).o osdep.o
+
+ osdep.so: mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \
+ osdep.h env_unix.h tcp_unix.h \
+ os_$(OS).c env_unix.c fs_unix.c ftl_unix.c nl_unix.c tcp_unix.c \
+ log_std.c log_sv4.c log_ssn.c log_ult.c \
+ gr_wait.c gr_wait4.c gr_waitp.c \
+ flock.c ingroups.c opendir.c scandir.c \
+ memmove.c memmove2.c memset.c \
+ write.c writev.c writevs.c \
+ tz_bsd.c tz_nul.c tz_sv4.c \
+ strerror.c strpbrk.c strstr.c strtok.c strtol.c strtoul.c
+ $(CC) -fpic -DPIC $(CFLAGS) -DSTDPROTO=$(STDPROTO) -DMAILSPOOL=\"$(MAILSPOOL)\" \
+ -DACTIVEFILE=\"$(ACTIVEFILE)\" -DNEWSSPOOL=\"$(NEWSSPOOL)\" \
+ -DRSH=\"$(RSH)\" -DRSHPATH=\"$(RSHPATH)\" \
+ $(EXTRAOSDEFS) -c os_$(OS).c -o os_$(OS).so
+ $(MV) os_$(OS).so osdep.so
osdep.h: os_$(OS).h linkage
$(RM) CCTYPE CFLAGS LDFLAGS osdep.h

View File

@ -1,41 +0,0 @@
*** imap/ANSI/ipopd/Makefile.orig Thu Mar 14 15:20:20 1996
--- imap/ANSI/ipopd/Makefile Fri Jun 14 00:13:07 1996
***************
*** 33,37 ****
C = ../c-client
! CCLIENTLIB = $C/c-client.a
SHELL = /bin/sh
--- 33,37 ----
C = ../c-client
! CCLIENTLIB = $C/libc-client.so.1.3
SHELL = /bin/sh
***************
*** 40,44 ****
CC = `cat $C/CCTYPE`
CFLAGS = -I$C `cat $C/CFLAGS`
! LDFLAGS = $(CCLIENTLIB) `cat $C/LDFLAGS`
ipopd: ipop2d ipop3d
--- 40,44 ----
CC = `cat $C/CCTYPE`
CFLAGS = -I$C `cat $C/CFLAGS`
! LDFLAGS = -L$C -lc-client `cat $C/LDFLAGS`
ipopd: ipop2d ipop3d
***************
*** 55,59 ****
$(CCLIENTLIB):
! cd $C;make
clean:
--- 55,59 ----
$(CCLIENTLIB):
! cd $C;make $(OS)
clean:

View File

@ -1,41 +0,0 @@
*** imap/ANSI/imapd/Makefile.orig Thu Mar 14 15:20:52 1996
--- imap/ANSI/imapd/Makefile Fri Jun 14 00:13:00 1996
***************
*** 33,37 ****
C = ../c-client
! CCLIENTLIB = $C/c-client.a
SHELL = /bin/sh
--- 33,37 ----
C = ../c-client
! CCLIENTLIB = $C/libc-client.so.1.3
SHELL = /bin/sh
***************
*** 40,44 ****
CC = `cat $C/CCTYPE`
CFLAGS = -I$C `cat $C/CFLAGS`
! LDFLAGS = $(CCLIENTLIB) `cat $C/LDFLAGS`
imapd: $(CCLIENTLIB) imapd.o
--- 40,44 ----
CC = `cat $C/CCTYPE`
CFLAGS = -I$C `cat $C/CFLAGS`
! LDFLAGS = -L$C -lc-client `cat $C/LDFLAGS`
imapd: $(CCLIENTLIB) imapd.o
***************
*** 48,52 ****
$(CCLIENTLIB):
! cd $C;make
clean:
--- 48,52 ----
$(CCLIENTLIB):
! cd $C;make $(OS)
clean:

View File

@ -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
;;

View File

@ -1,15 +0,0 @@
--- build.old Fri Aug 9 15:37:20 1996
+++ build Fri Aug 9 15:53:55 1996
@@ -195,10 +195,10 @@
make clean
echo "Cleaning Pine"
cd $PHOME/pine
- make -f makefile.ult clean
+ make -f makefile.bsf clean
echo "Cleaning pico"
cd $PHOME/pico
- make $makeargs -f makefile.ult clean
+ make $makeargs -f makefile.bsf clean
echo "Done"
cd $PHOME
;;

View File

@ -1,8 +1,6 @@
bin/mboxtest
bin/pico
bin/pilot
bin/pine
lib/libc-client.so.1.3
lib/libpico.so.1.3
@exec /sbin/ldconfig -m %B
bin/pgpencrypt