Date: Tue, 9 Mar 1999 03:17:25 -0800 (PST) From: mharo@area51.fremont.ca.us To: FreeBSD-gnats-submit@freebsd.org Subject: ports/10506: Update: net/netpipes Message-ID: <199903091117.DAA71820@patrol.area51.fremont.ca.us>
next in thread | raw e-mail | index | archive | help
>Number: 10506 >Category: ports >Synopsis: Update: net/netpipes >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Mar 9 03:20:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Michael Haro >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: Update of port. portlint fine. Compiles fine. No added or removed patch files. This port had some stuff in the makefile about SSL, but the export version of this port didn't include any SSL stuff. I'm not exactly sure what this port does, but I figured that if someone who uses it saw the update, they could help test it out and let us know if the changes work. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /host/trang.nuxi.com/FBSD/CVS-repository/ports/net/netpipes/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 1998/11/23 01:05:55 1.6 +++ Makefile 1999/03/09 11:12:53 @@ -6,14 +6,15 @@ # $Id: Makefile,v 1.6 1998/11/23 01:05:55 flathill Exp $ # -DISTNAME= netpipes4.0 -PKGNAME= netpipes-4.0 +DISTNAME= netpipes-4.2-export +PKGNAME= netpipes-4.2 CATEGORIES= net -MASTER_SITES= ftp://ftp.purplefrog.com/pub/netpipes/old/ +MASTER_SITES= ftp://ftp.purplefrog.com/pub/netpipes/ MAINTAINER= doconnor@gsoft.com.au +NO_WRKSUBDIR= yes MAN1= faucet.1 hose.1 sockdown.1 getpeername.1 encapsulate.1 \ - timelimit.1 + timelimit.1 netpipes.1 .include <bsd.port.mk> Index: files/md5 =================================================================== RCS file: /host/trang.nuxi.com/FBSD/CVS-repository/ports/net/netpipes/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1998/04/18 12:38:29 1.2 +++ md5 1999/03/09 10:56:28 @@ -1 +1 @@ -MD5 (netpipes4.0.tar.gz) = 522bcf3653c63c19d6a9ec53b98fe2cd +MD5 (netpipes-4.2-export.tar.gz) = 36f7b3120e00c9c74cb6619334de419f Index: patches/patch-aa =================================================================== RCS file: /host/trang.nuxi.com/FBSD/CVS-repository/ports/net/netpipes/patches/patch-aa,v retrieving revision 1.3 diff -u -r1.3 patch-aa --- patch-aa 1998/04/18 12:38:29 1.3 +++ patch-aa 1999/03/09 11:10:59 @@ -1,24 +1,24 @@ ---- Makefile.orig Wed Apr 15 11:49:24 1998 -+++ Makefile Wed Apr 15 11:50:42 1998 +--- Makefile.orig Wed Oct 28 12:30:03 1998 ++++ Makefile Tue Mar 9 03:10:00 1999 @@ -17,7 +17,7 @@ # You probably want to change this: #INSTROOT = ${HOME} --INSTROOT = /depot/collections0/netpipes4.0 +-INSTROOT = /depot/collections0/netpipes4.1 +INSTROOT = ${PREFIX} + #INSTROOT = /usr/local INSTBIN = ${INSTROOT}/bin INSTMAN = ${INSTROOT}/man +@@ -59,7 +59,7 @@ + #CFLAGS = -DPOSIX_SIG -DHAVE_INET_ATON $(CDEBUGFLAGS) -@@ -52,7 +52,7 @@ - #CFLAGS = -DUSE_IOCTL -DNO_MEMMOVE -DNO_STRERROR $(CDEBUGFLAGS) - - # Linux + # Linux (developed with RedHat 4.2, libc5) -CFLAGS = -DUSE_IOCTL -DPOSIX_SIG -DHAVE_INET_ATON $(CDEBUGFLAGS) +#CFLAGS = -DUSE_IOCTL -DPOSIX_SIG -DHAVE_INET_ATON $(CDEBUGFLAGS) # SGI #CFLAGS = -DSYSV $(CDEBUGFLAGS) -@@ -61,7 +61,7 @@ +@@ -71,7 +71,7 @@ #CFLAGS = -DPOSIX_SIG $(CDEBUGFLAGS) # FreeBSD @@ -27,21 +27,32 @@ # AIX 4.1.4 and 3.2.5 #CFLAGS = -DPOSIX_SIG -DAIX $(CDEBUGFLAGS) -@@ -103,14 +103,9 @@ - ${CC} ${CFLAGS} -o $@ ${EOBJS} ${LDLIBS} +@@ -104,8 +104,7 @@ + SSLLIB = -L../SSLeay-0.8.1 -lssl -lcrypto + + MANPAGES = netpipes.1 faucet.1 hose.1 \ +- sockdown.1 getpeername.1 timelimit.1 encapsulate.1 \ +- ssl-auth.1 ++ sockdown.1 getpeername.1 timelimit.1 encapsulate.1 + PROGRAMS = faucet hose sockdown getpeername timelimit encapsulate + + all : ${PROGRAMS} +@@ -138,15 +137,9 @@ + ${CC} ${CFLAGS} ${SSLINC} -c $< install : all -- [ -d ${INSTROOT} ] || mkdir ${INSTROOT} -- [ -d ${INSTBIN} ] || mkdir ${INSTBIN} +- test -d ${INSTROOT} || mkdir ${INSTROOT} +- test -d ${INSTBIN} || mkdir ${INSTBIN} - cp ${PROGRAMS} ${INSTBIN}/ - - rm -f ${INSTBIN}/getsockname - ln -s getpeername ${INSTBIN}/getsockname -- [ -d ${INSTMAN} ] || mkdir ${INSTMAN} -- [ -d ${INSTMAN}/man1 ] || mkdir ${INSTMAN}/man1 +- - [ -x ssl-auth ] && cp ssl-auth ${INSTBIN}/ +- test -d ${INSTMAN} || mkdir ${INSTMAN} +- test -d ${INSTMAN}/man1 || mkdir ${INSTMAN}/man1 - cp ${MANPAGES} ${INSTMAN}/man1/ + ${BSD_INSTALL_MAN} ${MANPAGES} ${INSTMAN}/man1/ + ${BSD_INSTALL_PROGRAM} ${PROGRAMS} ${INSTBIN}/ + ln -f -s ${INSTBIN}/getpeername ${INSTBIN}/getsockname + + # - clean : - rm -f ${FOBJS} ${HOBJS} ${SOBJS} ${GOBJS} ${TOBJS} ${EOBJS} Index: pkg/PLIST =================================================================== RCS file: /host/trang.nuxi.com/FBSD/CVS-repository/ports/net/netpipes/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- PLIST 1998/08/18 19:48:39 1.3 +++ PLIST 1999/03/09 11:08:37 @@ -1,6 +1,7 @@ +bin/encapsulate bin/faucet +bin/getpeername +bin/getsockname bin/hose bin/sockdown -bin/getpeername -bin/encapsulate bin/timelimit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199903091117.DAA71820>