From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 22 09:40:14 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 6CCAB16A420 for ; Sat, 22 Oct 2005 09:40:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED03F43D5A for ; Sat, 22 Oct 2005 09:40:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9M9eDed006274 for ; Sat, 22 Oct 2005 09:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9M9eDII006273; Sat, 22 Oct 2005 09:40:13 GMT (envelope-from gnats) Resent-Date: Sat, 22 Oct 2005 09:40:13 GMT Resent-Message-Id: <200510220940.j9M9eDII006273@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, Matthias Teege Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87C4B16A41F for ; Sat, 22 Oct 2005 09:35:08 +0000 (GMT) (envelope-from matthias@mteege.de) Received: from one.mteege.de (one.mteege.de [82.149.227.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC45743D49 for ; Sat, 22 Oct 2005 09:35:07 +0000 (GMT) (envelope-from matthias@mteege.de) Received: (qmail 25058 invoked by uid 66); 22 Oct 2005 09:35:28 -0000 Received: (qmail 21293 invoked by uid 1001); 22 Oct 2005 09:31:28 -0000 Message-Id: <20051022093128.21292.qmail@mteege.de> Date: 22 Oct 2005 09:31:28 -0000 From: Matthias Teege To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/87835: master_site of port net/ncp out of date, net/ncp update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Teege List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Oct 2005 09:40:14 -0000 >Number: 87835 >Category: ports >Synopsis: master_site of port net/ncp out of date, net/ncp update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 22 09:40:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Matthias Teege >Release: FreeBSD 4.11-STABLE i386 >Organization: >Environment: System: FreeBSD mut.mteege.de 4.11-STABLE FreeBSD 4.11-STABLE #0: Sat May 21 12:04:05 CEST 2005 root@mut.mteege.de:/usr/obj/usr/src/sys/MUT i386 >Description: fix problems with port net/ncp >How-To-Repeat: cd /usr/ports/net/ncp make install clean the MASTER_SITE is out of date >Fix: --- ncp.diff begins here --- diff -uNr ncp/Makefile ncp.new/Makefile --- ncp/Makefile Sat Apr 17 18:42:23 2004 +++ ncp.new/Makefile Sat Oct 22 11:18:48 2005 @@ -5,25 +5,32 @@ # $FreeBSD: ports/net/ncp/Makefile,v 1.2 2004/04/06 13:38:16 krion Exp $ PORTNAME= ncp -PORTVERSION= 1.2.3 +PORTVERSION= 1.2.4 CATEGORIES= net -MASTER_SITES= ftp://ftp.fu-berlin.de/unix/network/ncp/ +MASTER_SITES= http://dl.fefe.de/ http://dl.mteege.de/fefe/ MAINTAINER= matthias@mteege.de COMMENT= "A fast file copy tool for LANs." +BUILD_DEPENDS= ${LOCALBASE}/lib/libowfat.a:${PORTSDIR}/devel/libowfat + MAN1= ncp.1 npush.1 MANCOMPRESSED= no -WRKSRC= ${WRKDIR}/${PORTNAME} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_BZIP2= yes USE_REINPLACE= yes -post-patch: - @${REINPLACE_CMD} -e 's|gcc -O2|${CC} ${CFLAGS}|' \ - ${WRKSRC}/conf-cc - @${REINPLACE_CMD} -e 's|gcc|${CC} ${LDFLAGS}|' \ - ${WRKSRC}/conf-ld +CFLAGS+= -I${LOCALBASE}/include/libowfat -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +post-extract: + @${REINPLACE_CMD} -e 's|^CC=gcc|CC=${CC}|' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|^CFLAGS=.*|CFLAGS=${CFLAGS}|' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|^LDFLAGS=.*|LDFLAGS=${LDFLAGS}|' \ + ${WRKSRC}/Makefile do-install: cd ${WRKSRC}; ${INSTALL_PROGRAM} ncp ${PREFIX}/bin diff -uNr ncp/distinfo ncp.new/distinfo --- ncp/distinfo Sat Apr 17 18:42:23 2004 +++ ncp.new/distinfo Sat Oct 22 11:20:06 2005 @@ -1,2 +1,2 @@ -MD5 (ncp-1.2.3.tar.bz2) = 4486819b63f2493d788f4a516d660b74 -SIZE (ncp-1.2.3.tar.bz2) = 30864 +MD5 (ncp-1.2.4.tar.bz2) = 421c4855bd3148b7d0a4342942b4bf13 +SIZE (ncp-1.2.4.tar.bz2) = 6172 --- ncp.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: