pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang Fix PY_PLATNAME for IRIX.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ebe6583e5b78
branches:  trunk
changeset: 478964:ebe6583e5b78
user:      recht <recht%pkgsrc.org@localhost>
date:      Mon Aug 02 16:59:22 2004 +0000

description:
Fix PY_PLATNAME for IRIX.
Patch provided by Georg Schwarz in PR pkg/26507

Bump PKGREVISIONS (PLIST change)

diffstat:

 lang/python21-pth/Makefile    |  4 ++--
 lang/python21/Makefile        |  4 ++--
 lang/python21/Makefile.common |  6 ++++--
 3 files changed, 8 insertions(+), 6 deletions(-)

diffs (49 lines):

diff -r 3b40b466b48d -r ebe6583e5b78 lang/python21-pth/Makefile
--- a/lang/python21-pth/Makefile        Mon Aug 02 16:52:29 2004 +0000
+++ b/lang/python21-pth/Makefile        Mon Aug 02 16:59:22 2004 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2004/01/27 18:55:30 abs Exp $
+# $NetBSD: Makefile,v 1.13 2004/08/02 16:59:22 recht Exp $
 #
 
 PKGNAME=       python21-pth-2.1.3
-PKGREVISION=   4
+PKGREVISION=   5
 
 PTHREAD_OPTS=  require
 .include "../../mk/pthread.buildlink3.mk"
diff -r 3b40b466b48d -r ebe6583e5b78 lang/python21/Makefile
--- a/lang/python21/Makefile    Mon Aug 02 16:52:29 2004 +0000
+++ b/lang/python21/Makefile    Mon Aug 02 16:59:22 2004 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.14 2004/01/27 18:55:30 abs Exp $
+# $NetBSD: Makefile,v 1.15 2004/08/02 16:59:22 recht Exp $
 #
 
 PKGNAME=       python21-2.1.3
-PKGREVISION=   2
+PKGREVISION=   3
 
 CONFIGURE_ARGS+=       --without-threads
 
diff -r 3b40b466b48d -r ebe6583e5b78 lang/python21/Makefile.common
--- a/lang/python21/Makefile.common     Mon Aug 02 16:52:29 2004 +0000
+++ b/lang/python21/Makefile.common     Mon Aug 02 16:59:22 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2004/07/22 09:16:03 recht Exp $
+# $NetBSD: Makefile.common,v 1.5 2004/08/02 16:59:22 recht Exp $
 #
 
 DISTNAME=      Python-2.1.3
@@ -28,8 +28,10 @@
 LOWER_OPSYS=   sunos
 .endif
 
-.if ${OPSYS} == "Darwin" || ${OPSYS} == "IRIX"
+.if ${OPSYS} == "Darwin"
 PY_PLATNAME=   ${LOWER_OPSYS}
+.elif ${OPSYS} == "IRIX"
+PY_PLATNAME=   ${LOWER_OPSYS:C/\..*//}
 .else
 PY_PLATNAME=   ${LOWER_OPSYS}${OS_VERSION:C/\..*//}
 .endif



Home | Main Index | Thread Index | Old Index