diff options
author | recht <recht@pkgsrc.org> | 2004-08-02 16:59:22 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-08-02 16:59:22 +0000 |
commit | d3724c967cd8eb6ab822b3269688ffad549dda12 (patch) | |
tree | 046d060f28e119aa1815a1282a093bd2efac2506 /lang | |
parent | d74d026f2b28aa46203400a2dc716814b26a3f2f (diff) | |
download | pkgsrc-d3724c967cd8eb6ab822b3269688ffad549dda12.tar.gz |
Fix PY_PLATNAME for IRIX.
Patch provided by Georg Schwarz in PR pkg/26507
Bump PKGREVISIONS (PLIST change)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python21-pth/Makefile | 4 | ||||
-rw-r--r-- | lang/python21/Makefile | 4 | ||||
-rw-r--r-- | lang/python21/Makefile.common | 6 |
3 files changed, 8 insertions, 6 deletions
diff --git a/lang/python21-pth/Makefile b/lang/python21-pth/Makefile index 38f62a7575d..c147cc5140a 100644 --- a/lang/python21-pth/Makefile +++ b/lang/python21-pth/Makefile @@ -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 --git a/lang/python21/Makefile b/lang/python21/Makefile index 042f09ce90a..2e62fb9d35e 100644 --- a/lang/python21/Makefile +++ b/lang/python21/Makefile @@ -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 --git a/lang/python21/Makefile.common b/lang/python21/Makefile.common index e50438c2b65..f67b0ae2db7 100644 --- a/lang/python21/Makefile.common +++ b/lang/python21/Makefile.common @@ -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 @@ PLIST_SRC+= ${.CURDIR}/../../lang/python21/PLIST.common_end 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 |