From owner-freebsd-gnome@FreeBSD.ORG Sun Jul 24 16:05:40 2005 Return-Path: X-Original-To: freebsd-gnome@freebsd.org Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8511E16A41F for ; Sun, 24 Jul 2005 16:05:40 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from 62-15-213-209.inversas.jazztel.es (62-15-213-209.inversas.jazztel.es [62.15.213.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 745B143D49 for ; Sun, 24 Jul 2005 16:05:38 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) by 62-15-213-209.inversas.jazztel.es (8.13.3/8.13.3) with ESMTP id j6OG5ak4003007; Sun, 24 Jul 2005 18:05:36 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j6OG5a50038207; Sun, 24 Jul 2005 18:05:36 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-gnome@freebsd.org Date: Sun, 24 Jul 2005 18:05:35 +0200 User-Agent: KMail/1.8.1 References: <1122220456.64964.4.camel@fbsd1.dyndns.org> In-Reply-To: <1122220456.64964.4.camel@fbsd1.dyndns.org> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_Qx74CzUuPITxZOZ" Message-Id: <200507241805.36036.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-7; AVE: 6.31.1.0; VDF: 6.31.1.0; host: antares.redesjm.local) Cc: "Scott T. Hildreth" Subject: Re: /usr/ports/math/py-numeric X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2005 16:05:40 -0000 --Boundary-00=_Qx74CzUuPITxZOZ Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline El Domingo, 24 de Julio de 2005 17:54, Scott T. Hildreth escribi=F3: > The patch failed, > > =3D=3D=3D> Patching for py24-numeric-23.8 > =3D=3D=3D> 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 =3D> Patch patch-Src_umathmodule.c failed to apply > cleanly. > *** Error code 1 > > ..so I temporary changed the work/Numeric-23.8 dir to lower case. > > After the patch, > > make fails > > fbsd1# make > =3D=3D=3D> py24-numeric-23.8 depends on file: /usr/local/bin/python - > found =3D=3D=3D> Configuring for py24-numeric-23.8 > cd: can't cd to /usr/ports/math/py-numeric/work/numeric-23.8 > *** Error code 2 > > > Where is this path being set? Numeric-23.8 is not lower case, well > the first letter. Is this in the Mk dir? > > Thanks, > STH I think there're enought PRs about this with a Fix, but I prefer the=20 attached one =2D- josemi --Boundary-00=_Qx74CzUuPITxZOZ Content-Type: text/x-diff; charset="iso-8859-13"; name="patch-py-numeric" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-py-numeric" Index: Makefile =================================================================== RCS file: /home/cvs/freebsd/ports/math/py-numeric/Makefile,v retrieving revision 1.45 diff -u -r1.45 Makefile --- Makefile 22 Jul 2005 12:52:37 -0000 1.45 +++ Makefile 24 Jul 2005 16:02:25 -0000 @@ -12,7 +12,8 @@ ${MASTER_SITE_SOURCEFORGE:S/$/:source/} MASTER_SITE_SUBDIR= numpy/:source PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTFILES= Numeric-${PORTVERSION}${EXTRACT_SUFX}:source \ +DISTNAME= Numeric-${PORTVERSION} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:source \ numpy.pdf:doc EXTRACT_ONLY= Numeric-${PORTVERSION}${EXTRACT_SUFX} @@ -35,7 +36,7 @@ .endif post-extract: - @${CP} ${DISTDIR}/numpy.pdf ${WRKSRC} + @${CP} ${DISTDIR}/numpy.pdf ${WRKDIR} post-install: @${MKDIR} ${EXAMPLESDIR} --Boundary-00=_Qx74CzUuPITxZOZ--