From owner-svn-ports-head@FreeBSD.ORG Sat Feb 8 07:07:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89514ED1; Sat, 8 Feb 2014 07:07:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57AFD10B4; Sat, 8 Feb 2014 07:07:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1877Kgc047384; Sat, 8 Feb 2014 07:07:20 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1877JJI047382; Sat, 8 Feb 2014 07:07:19 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201402080707.s1877JJI047382@svn.freebsd.org> From: Antoine Brodin Date: Sat, 8 Feb 2014 07:07:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343308 - in head/security/dsniff: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Feb 2014 07:07:20 -0000 Author: antoine Date: Sat Feb 8 07:07:19 2014 New Revision: 343308 URL: http://svnweb.freebsd.org/changeset/ports/343308 QAT: https://qat.redports.org/buildarchive/r343308/ Log: Last attempt to fix dsniff Reported by: pkg-fallout (again) Modified: head/security/dsniff/Makefile head/security/dsniff/files/patch-Makefile.in Modified: head/security/dsniff/Makefile ============================================================================== --- head/security/dsniff/Makefile Sat Feb 8 05:18:19 2014 (r343307) +++ head/security/dsniff/Makefile Sat Feb 8 07:07:19 2014 (r343308) @@ -36,6 +36,7 @@ LIBNET_INC= "`${LIBNET_CONFIG} --defines LIBNET_LIB= "-L${LOCALBASE}/include/libnet${LIBNET_VERSION} \ ${LOCALBASE}/lib/libnet${LIBNET_VERSION}/libnet.a" +.include # If net/libnids has been compiled with the GLIB2 option then this port needs # the corresponding library and additional linker flags. LIBNIDS_GLIB2?= @@ -61,4 +62,4 @@ pre-configure: ${WRKSRC}/Makefile.in .endif -.include +.include Modified: head/security/dsniff/files/patch-Makefile.in ============================================================================== --- head/security/dsniff/files/patch-Makefile.in Sat Feb 8 05:18:19 2014 (r343307) +++ head/security/dsniff/files/patch-Makefile.in Sat Feb 8 07:07:19 2014 (r343308) @@ -1,5 +1,5 @@ --- ./Makefile.in.orig 2000-12-15 20:03:26.000000000 +0000 -+++ ./Makefile.in 2014-02-03 13:13:21.000000000 +0000 ++++ ./Makefile.in 2014-02-08 06:51:17.000000000 +0000 @@ -8,7 +8,6 @@ srcdir = @srcdir@ VPATH = @srcdir@ @@ -40,26 +40,27 @@ - rpcgen -h mount.x -o mount.h - rpcgen -c mount.x -o mount.c + rpcgen -c mount.x -o $@ -+ -+mount.h: mount.x -+ rpcgen -h mount.x -o $@ -+ -+decode_mountd.c: mount.h - nfs_prot.c: nfs_prot.x +-nfs_prot.c: nfs_prot.x - rpcgen -h nfs_prot.x -o nfs_prot.h - rpcgen -c nfs_prot.x -o nfs_prot.c -+ rpcgen -c nfs_prot.x -o $@ ++mount.h: mount.x ++ rpcgen -h mount.x -o $@ -$(LIBOBJS): - $(CC) $(CFLAGS) $(INCS) -c $(srcdir)/missing/$*.c -+nfs_prot.h: nfs_prot.x -+ rpcgen -h nfs_prot.x -o $@ ++decode_mountd.c: mount.h -libmissing.a: $(LIBOBJS) - ar -cr $@ $(LIBOBJS) - $(RANLIB) $@ -+filesnarf.c: nfs_prot.h nfs_prot.c ++nfs_prot.c: nfs_prot.x nfs_prot.h ++ rpcgen -c nfs_prot.x -o $@ ++ ++nfs_prot.h: nfs_prot.x ++ rpcgen -h nfs_prot.x -o $@ ++ ++filesnarf.c: nfs_prot.h dsniff: $(HDRS) $(SRCS) $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(NIDSLIB) $(PCAPLIB) $(LNETLIB) $(DBLIB) $(SSLLIB)