diff options
author | antoine <antoine@FreeBSD.org> | 2014-02-08 15:07:19 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-02-08 15:07:19 +0800 |
commit | e671d7becfd35465e3ff152f5c8e527afb2596b1 (patch) | |
tree | 8969034f875c37dc3a0f49240b18f6a8c6d10a0b /security | |
parent | e00866a26d3e6c4c7927d68b564946442e58c68f (diff) | |
download | freebsd-ports-gnome-e671d7becfd35465e3ff152f5c8e527afb2596b1.tar.gz freebsd-ports-gnome-e671d7becfd35465e3ff152f5c8e527afb2596b1.tar.zst freebsd-ports-gnome-e671d7becfd35465e3ff152f5c8e527afb2596b1.zip |
Last attempt to fix dsniff
Reported by: pkg-fallout (again)
Diffstat (limited to 'security')
-rw-r--r-- | security/dsniff/Makefile | 3 | ||||
-rw-r--r-- | security/dsniff/files/patch-Makefile.in | 23 |
2 files changed, 14 insertions, 12 deletions
diff --git a/security/dsniff/Makefile b/security/dsniff/Makefile index 32d7cebcb8d4..3589c09f51a1 100644 --- a/security/dsniff/Makefile +++ b/security/dsniff/Makefile @@ -36,6 +36,7 @@ LIBNET_INC= "`${LIBNET_CONFIG} --defines` `${LIBNET_CONFIG} --cflags`" LIBNET_LIB= "-L${LOCALBASE}/include/libnet${LIBNET_VERSION} \ ${LOCALBASE}/lib/libnet${LIBNET_VERSION}/libnet.a" +.include <bsd.port.pre.mk> # 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 <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/dsniff/files/patch-Makefile.in b/security/dsniff/files/patch-Makefile.in index 21d8750b08e6..1e57a7f917bf 100644 --- a/security/dsniff/files/patch-Makefile.in +++ b/security/dsniff/files/patch-Makefile.in @@ -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) |