From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Nov 27 06:20:10 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 249C716A4CE for ; Thu, 27 Nov 2003 06:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D5F43FAF for ; Thu, 27 Nov 2003 06:20:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id hAREK6FY020496 for ; Thu, 27 Nov 2003 06:20:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id hAREK6NI020495; Thu, 27 Nov 2003 06:20:06 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 27 Nov 2003 06:20:06 -0800 (PST) Resent-Message-Id: <200311271420.hAREK6NI020495@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yann Berthier Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E749416A4CE for ; Thu, 27 Nov 2003 06:12:05 -0800 (PST) Received: from itesec.hsc.fr (itesec.hsc.fr [192.70.106.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30E2043FF3 for ; Thu, 27 Nov 2003 06:12:04 -0800 (PST) (envelope-from yb@hsc.fr) Received: from taz.hsc.fr (taz.hsc.fr [192.70.106.75]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "taz.hsc.fr", Issuer "HSC CA" (verified OK)) by itesec.hsc.fr (Postfix) with ESMTP id 621EC21036 for ; Thu, 27 Nov 2003 15:12:03 +0100 (CET) Received: by taz.hsc.fr (Postfix, from userid 1000) id BF9F46BE; Thu, 27 Nov 2003 15:11:49 +0100 (CET) Message-Id: <20031127141149.BF9F46BE@taz.hsc.fr> Date: Thu, 27 Nov 2003 15:11:49 +0100 (CET) From: Yann Berthier To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/59727: [MAINTAINER] net/honeyd: update to 0.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2003 14:20:10 -0000 >Number: 59727 >Category: ports >Synopsis: [MAINTAINER] net/honeyd: update to 0.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Nov 27 06:20:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Yann Berthier >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD taz.hsc.fr 5.1-CURRENT FreeBSD 5.1-CURRENT #73: Sat Nov 8 22:22:27 CET >Description: - Update to 0.7 - Install sample scripts in the DATADIR directory Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- honeyd-0.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/honeyd/Makefile /home/yb/tmp/ports/net/honeyd/Makefile --- /usr/ports/net/honeyd/Makefile Sat Sep 27 03:09:33 2003 +++ /home/yb/tmp/ports/net/honeyd/Makefile Mon Nov 24 15:03:41 2003 @@ -6,7 +6,7 @@ # PORTNAME= honeyd -PORTVERSION= 0.6a +PORTVERSION= 0.7 CATEGORIES= net MASTER_SITES= http://niels.xtdnet.nl/honeyd/ @@ -16,12 +16,31 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libdnet.a:${PORTSDIR}/net/libdnet \ ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent +USE_PYTHON= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-libdnet=${LOCALBASE} \ --with-libevent=${LOCALBASE} \ --with-pcap INSTALLS_SHLIB= yes +USE_REINPLACE= yes + +post-configure: + @${REINPLACE_CMD} -e 's|LIBS = |LIBS = ${PTHREAD_LIBS}|' \ + ${WRKSRC}/Makefile + +post-install: + @${MKDIR} ${DATADIR}/scripts/snmp +.for FILES in proxy.pl router-telnet.pl smtp.pl test.sh web.sh + @${INSTALL_SCRIPT} ${WRKSRC}/scripts/${FILES} \ + ${DATADIR}/scripts +.endfor +.for FILES in README buildSNMPConfig.pl default.snmp fake-snmp.pl \ +linux-2.4.snmp.tpl windows2000.snmp.tpl + @${INSTALL_DATA} ${WRKSRC}/scripts/snmp/${FILES} \ + ${DATADIR}/scripts/snmp +.endfor + MAN8= honeyd.8 .include diff -ruN --exclude=CVS /usr/ports/net/honeyd/distinfo /home/yb/tmp/ports/net/honeyd/distinfo --- /usr/ports/net/honeyd/distinfo Sat Sep 27 03:09:33 2003 +++ /home/yb/tmp/ports/net/honeyd/distinfo Sun Nov 23 13:14:42 2003 @@ -1 +1 @@ -MD5 (honeyd-0.6a.tar.gz) = d8743bde540db637a7cd7a19214a8265 +MD5 (honeyd-0.7.tar.gz) = d05e112d513d0a1ce7b39cded9b0aba5 diff -ruN --exclude=CVS /usr/ports/net/honeyd/pkg-plist /home/yb/tmp/ports/net/honeyd/pkg-plist --- /usr/ports/net/honeyd/pkg-plist Sat Sep 27 03:09:33 2003 +++ /home/yb/tmp/ports/net/honeyd/pkg-plist Mon Nov 24 14:12:51 2003 @@ -3,12 +3,26 @@ include/honeyd/plugins.h include/honeyd/plugins_config.h include/honeyd/debug.h -share/honeyd/README -share/honeyd/nmap.assoc -share/honeyd/nmap.prints -share/honeyd/xprobe2.conf -share/honeyd/config.sample -@dirrm share/honeyd +%%DATADIR%%/README +%%DATADIR%%/nmap.assoc +%%DATADIR%%/nmap.prints +%%DATADIR%%/xprobe2.conf +%%DATADIR%%/config.sample +%%DATADIR%%/pf.os +%%DATADIR%%/scripts/proxy.pl +%%DATADIR%%/scripts/router-telnet.pl +%%DATADIR%%/scripts/smtp.pl +%%DATADIR%%/scripts/test.sh +%%DATADIR%%/scripts/web.sh +%%DATADIR%%/scripts/snmp/README +%%DATADIR%%/scripts/snmp/buildSNMPConfig.pl +%%DATADIR%%/scripts/snmp/default.snmp +%%DATADIR%%/scripts/snmp/fake-snmp.pl +%%DATADIR%%/scripts/snmp/linux-2.4.snmp.tpl +%%DATADIR%%/scripts/snmp/windows2000.snmp.tpl +@dirrm %%DATADIR%%/scripts/snmp +@dirrm %%DATADIR%%/scripts +@dirrm %%DATADIR%% lib/honeyd/libhoneyd.so @dirrm lib/honeyd @dirrm include/honeyd --- honeyd-0.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: