Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Dec 2013 20:44:21 +0000 (UTC)
From:      Wesley Shields <wxs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r338042 - head/net/tcpdump
Message-ID:  <201312292044.rBTKiLES008912@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wxs
Date: Sun Dec 29 20:44:20 2013
New Revision: 338042
URL: http://svnweb.freebsd.org/changeset/ports/338042

Log:
  Make stage aware and turn on pcap_setdirection.
  
  PR:		ports/184325
  Submitted by:	Rodrigo Osorio <rodrigo@bebik.net>

Modified:
  head/net/tcpdump/Makefile

Modified: head/net/tcpdump/Makefile
==============================================================================
--- head/net/tcpdump/Makefile	Sun Dec 29 20:37:27 2013	(r338041)
+++ head/net/tcpdump/Makefile	Sun Dec 29 20:44:20 2013	(r338042)
@@ -29,8 +29,10 @@ SMI_DESC=	Allow MIBs to be loaded on the
 USER_DESC=	Drop privileges to nobody
 CHROOT_DESC=	Chroot to /var/run/tcpdump (set CHROOTDIR to change)
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
+
+CONFIGURE_ARGS+=	--enable-pcap_setdirection --with-pcap_setdirection
+
 # The --without-crypto flag needs to be explicitly specified. The
 # configure script gets confused if you specify --with-crypto and
 # thinks this means you *don't* want crypto.
@@ -65,14 +67,14 @@ CONFIGURE_ARGS+=	--with-chroot=${CHROOTD
 
 .include <bsd.port.pre.mk>
 
-MAN1=		tcpdump.1
-PLIST_FILES=	sbin/tcpdump
+PLIST_FILES=	sbin/tcpdump \
+		man/man1/tcpdump.1.gz
 
 post-configure:
 	@${REINPLACE_CMD} -e "s,\./\.\./${LIBPCAP_FORCE_VER}/libpcap\.a,${LOCALBASE}/lib/libpcap.so.1," ${WRKSRC}/Makefile
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/tcpdump ${PREFIX}/sbin
-	${INSTALL_MAN} ${WRKSRC}/tcpdump.1 ${MAN1PREFIX}/man/man1
+	${INSTALL_PROGRAM} ${WRKSRC}/tcpdump ${STAGEDIR}/${PREFIX}/sbin
+	${INSTALL_MAN} ${WRKSRC}/tcpdump.1 ${STAGEDIR}/${MAN1PREFIX}/man/man1
 
 .include <bsd.port.post.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312292044.rBTKiLES008912>