From owner-freebsd-ports@FreeBSD.ORG Sat Jul 23 12:48:36 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63E8416A41F; Sat, 23 Jul 2005 12:48:36 +0000 (GMT) (envelope-from christopher.illies@molmed.ki.se) Received: from humle.it.ki.se (humle.it.ki.se [130.237.101.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1CA143D53; Sat, 23 Jul 2005 12:48:35 +0000 (GMT) (envelope-from christopher.illies@molmed.ki.se) Received: from Klabautermann.ks.se (gate2.ks.se [193.10.63.101]) by humle.it.ki.se (8.13.1/8.13.1) with ESMTP id j6NCmSvT017758; Sat, 23 Jul 2005 14:48:29 +0200 (MEST) Received: by Klabautermann.ks.se (Postfix, from userid 1001) id 67850C171; Sat, 23 Jul 2005 14:52:35 +0200 (CEST) Date: Sat, 23 Jul 2005 14:52:34 +0200 From: Christopher Illies To: freebsd-ports@freebsd.org Message-ID: <20050723125234.GA32271@Klabautermann.ks.se> Mail-Followup-To: Christopher Illies , freebsd-ports@freebsd.org, randy@psg.com, tg@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="bg08WKrSYDhXBjb5" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: randy@psg.com, tg@freebsd.org Subject: Re: py-numeric patch failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jul 2005 12:48:36 -0000 --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline > => Checksum OK for Numeric-23.8.tar.gz. > => Checksum OK for numpy.pdf. > ===> Patching for py24-numeric-23.8 > ===> Applying FreeBSD patches for py24-numeric-23.8 > patch: **** can't cd to /usr/ports/math/py-numeric/work/numeric-23.8: > Not a directory > => Patch patch-Src_umathmodule.c failed to apply cleanly. > *** Error code 1 > > Stop in /usr/ports/math/py-numeric. > > > extremely -current on thinkpad t41p > > randy I got the same error. The following patch fixed it for me. Maintainer Cc'ed. Christopher --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-Makefile --- Makefile.orig Sat Jul 23 14:31:21 2005 +++ Makefile Sat Jul 23 14:31:48 2005 @@ -15,6 +15,7 @@ DISTFILES= Numeric-${PORTVERSION}${EXTRACT_SUFX}:source \ numpy.pdf:doc EXTRACT_ONLY= Numeric-${PORTVERSION}${EXTRACT_SUFX} +WRKSRC= work/Numeric-23.8 MAINTAINER= tg@FreeBSD.org COMMENT= The Numeric Extension to Python @@ -35,7 +36,7 @@ .endif post-extract: - @${CP} ${DISTDIR}/numpy.pdf ${WRKSRC} + @${CP} ${DISTDIR}/numpy.pdf ${WRKDIR} post-install: @${MKDIR} ${EXAMPLESDIR} --bg08WKrSYDhXBjb5--