From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 15 06:40:13 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 10B3137B401 for ; Sun, 15 Jun 2003 06:40:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3343643F75 for ; Sun, 15 Jun 2003 06:40:12 -0700 (PDT) (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 h5FDeBUp085622 for ; Sun, 15 Jun 2003 06:40:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5FDeBNC085621; Sun, 15 Jun 2003 06:40:11 -0700 (PDT) Resent-Date: Sun, 15 Jun 2003 06:40:11 -0700 (PDT) Resent-Message-Id: <200306151340.h5FDeBNC085621@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, Matthew West Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C43137B401 for ; Sun, 15 Jun 2003 06:34:39 -0700 (PDT) Received: from casper2.cs.uct.ac.za (casper2.cs.uct.ac.za [137.158.96.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id C88BD43F75 for ; Sun, 15 Jun 2003 06:34:37 -0700 (PDT) (envelope-from mwest@cs.uct.ac.za) Received: from casper.cs.uct.ac.za ([137.158.96.14] ident=root) by casper2.cs.uct.ac.za with esmtp (Exim 3.20 #1) id 19RXeT-000Pu2-00; Sun, 15 Jun 2003 15:34:33 +0200 Received: from casper.cs.uct.ac.za (mwest@localhost [127.0.0.1]) by casper.cs.uct.ac.za (8.12.6/8.12.6) with ESMTP id h5FDQVdj057839; Sun, 15 Jun 2003 15:26:31 +0200 (SAST) (envelope-from mwest@casper.cs.uct.ac.za) Received: (from mwest@localhost) by casper.cs.uct.ac.za (8.12.6/8.12.6/Submit) id h5FDQTUG057838; Sun, 15 Jun 2003 15:26:29 +0200 (SAST) Message-Id: <200306151326.h5FDQTUG057838@casper.cs.uct.ac.za> Date: Sun, 15 Jun 2003 15:26:29 +0200 (SAST) From: Matthew West To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: mjm@codito.de Subject: ports/53344: port update: net/icmpchat from 0.5.1 to 0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matthew West List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 13:40:13 -0000 >Number: 53344 >Category: ports >Synopsis: port update: net/icmpchat from 0.5.1 to 0.6 >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: Sun Jun 15 06:40:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Matthew West >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: University of Cape Town >Environment: >Description: updates ports/net/icmpchat from 0.5.1 to 0.6 complete rewrite, now uses Rijndael-256 for encryption project moved to sourceforge >How-To-Repeat: >Fix: diff -ruN icmpchat.orig/Makefile icmpchat/Makefile --- icmpchat.orig/Makefile Fri Feb 21 19:25:06 2003 +++ icmpchat/Makefile Sun Jun 15 15:24:59 2003 @@ -6,24 +6,29 @@ # PORTNAME= icmpchat -PORTVERSION= 0.5.1 +PORTVERSION= 0.6 CATEGORIES= net -MASTER_SITES= http://www.codito.de/prog/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= icmpchat MAINTAINER= mwest@uct.ac.za -COMMENT= Simple chat program based on the ICMP protocol +COMMENT= Simple console-based chat that uses the ICMP protocol USE_REINPLACE= yes pre-patch: - @${REINPLACE_CMD} -e 's|-O3 -Wall|${CFLAGS}|;s|= gcc|?= gcc|; \ - s|default|all|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|-O2 -Wall -pedantic|${CFLAGS}|;\ + s|= gcc|?= gcc|;s|default|all|' ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/icmpchat ${PREFIX}/bin .if !defined(NOPORTDOCS) @${INSTALL} -d -o ${DOCOWN} -g ${DOCGRP} -m 555 ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Changes ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/License ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Problems ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Readme ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Todo ${DOCSDIR} .endif .include diff -ruN icmpchat.orig/distinfo icmpchat/distinfo --- icmpchat.orig/distinfo Tue Oct 29 07:17:17 2002 +++ icmpchat/distinfo Fri Jun 13 18:07:17 2003 @@ -1 +1 @@ -MD5 (icmpchat-0.5.1.tar.gz) = 14ce68689957e975b5eca98705f4d8e3 +MD5 (icmpchat-0.6.tar.gz) = da80b62f42debd6f5f031b8d736bcca3 diff -ruN icmpchat.orig/pkg-descr icmpchat/pkg-descr --- icmpchat.orig/pkg-descr Tue Oct 29 07:17:17 2002 +++ icmpchat/pkg-descr Sun Jun 15 15:23:39 2003 @@ -1,7 +1,7 @@ -ICMP Chat is a simple chat. The difference to other chat programs is -the fact that this one is based on the ICMP protocol. +ICMP-Chat is a simple console-based chat that uses ICMP packets for +communication. The data is encrypted using the Rijndael-256 algorithm. -WWW: http://www.codito.de/ +WWW: http://icmpchat.sourceforge.net/ -- mwest@uct.ac.za diff -ruN icmpchat.orig/pkg-plist icmpchat/pkg-plist --- icmpchat.orig/pkg-plist Tue Oct 29 07:17:17 2002 +++ icmpchat/pkg-plist Sun Jun 15 15:12:17 2003 @@ -1,3 +1,7 @@ bin/icmpchat -%%PORTDOCS%%share/doc/icmpchat/README +%%PORTDOCS%%share/doc/icmpchat/Changes +%%PORTDOCS%%share/doc/icmpchat/License +%%PORTDOCS%%share/doc/icmpchat/Problems +%%PORTDOCS%%share/doc/icmpchat/Readme +%%PORTDOCS%%share/doc/icmpchat/Todo %%PORTDOCS%%@dirrm share/doc/icmpchat >Release-Note: >Audit-Trail: >Unformatted: