From 76af5a3859cf168fa8e6a2e49608ecbed13bb22a Mon Sep 17 00:00:00 2001 From: abs Date: Tue, 27 Jan 2004 18:55:30 +0000 Subject: Add USE_GCC_SHLIB to python2 packages: python20 to python20-2.0.1nb6 python21 to python21-2.1.3nb2 python21-pth to python21-2.1.3nb4 python22 to python22-2.2.3nb1 python22-pth to python22-2.2.3nb1 python23 to python23-2.3.3nb1 python23-pth to python23-2.3.3nb1 --- lang/python20/Makefile | 5 +++-- lang/python21-pth/Makefile | 4 ++-- lang/python21/Makefile | 4 ++-- lang/python21/Makefile.common | 3 ++- lang/python22-pth/Makefile | 3 ++- lang/python22/Makefile | 3 ++- lang/python22/Makefile.common | 3 ++- lang/python23-pth/Makefile | 3 ++- lang/python23/Makefile | 3 ++- lang/python23/Makefile.common | 3 ++- 10 files changed, 21 insertions(+), 13 deletions(-) (limited to 'lang') diff --git a/lang/python20/Makefile b/lang/python20/Makefile index 32c040ce0a5..cd651cc503f 100644 --- a/lang/python20/Makefile +++ b/lang/python20/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.14 2004/01/25 16:06:47 recht Exp $ +# $NetBSD: Makefile,v 1.15 2004/01/27 18:55:30 abs Exp $ # DISTNAME= Python-2.0.1 PKGNAME= python20-2.0.1 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= lang MASTER_SITES= ftp://ftp.python.org/pub/python/2.0.1/ EXTRACT_SUFX= .tgz @@ -19,6 +19,7 @@ PLIST_SRC= ${WRKDIR}/.PLIST_SRC WRKSRC= ${WRKDIR}/Python-2.0.1 DIST_SUBDIR= python +USE_GCC_SHLIB= yes USE_BUILDLINK3= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --without-threads diff --git a/lang/python21-pth/Makefile b/lang/python21-pth/Makefile index 40510c3829c..38f62a7575d 100644 --- a/lang/python21-pth/Makefile +++ b/lang/python21-pth/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.11 2004/01/25 16:06:47 recht Exp $ +# $NetBSD: Makefile,v 1.12 2004/01/27 18:55:30 abs Exp $ # PKGNAME= python21-pth-2.1.3 -PKGREVISION= 3 +PKGREVISION= 4 PTHREAD_OPTS= require .include "../../mk/pthread.buildlink3.mk" diff --git a/lang/python21/Makefile b/lang/python21/Makefile index aa0c9d432d1..042f09ce90a 100644 --- a/lang/python21/Makefile +++ b/lang/python21/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2004/01/24 07:09:15 grant Exp $ +# $NetBSD: Makefile,v 1.14 2004/01/27 18:55:30 abs Exp $ # PKGNAME= python21-2.1.3 -PKGREVISION= 1 +PKGREVISION= 2 CONFIGURE_ARGS+= --without-threads diff --git a/lang/python21/Makefile.common b/lang/python21/Makefile.common index ac2349fa4d2..6bfe729f3b8 100644 --- a/lang/python21/Makefile.common +++ b/lang/python21/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2004/01/25 16:06:47 recht Exp $ +# $NetBSD: Makefile.common,v 1.3 2004/01/27 18:55:30 abs Exp $ # DISTNAME= Python-2.1.3 @@ -10,6 +10,7 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.python.org/ COMMENT= Interpreted, interactive, object-oriented programming language +USE_GCC_SHLIB= YES USE_BUILDLINK3= YES GNU_CONFIGURE= YES diff --git a/lang/python22-pth/Makefile b/lang/python22-pth/Makefile index bdafa9bb28e..cfd90cf5bfa 100644 --- a/lang/python22-pth/Makefile +++ b/lang/python22-pth/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.11 2004/01/25 16:06:47 recht Exp $ +# $NetBSD: Makefile,v 1.12 2004/01/27 18:55:30 abs Exp $ # PKGNAME= python22-pth-2.2.3 +PKGREVISION= 1 PTHREAD_OPTS= require .include "../../mk/pthread.buildlink3.mk" diff --git a/lang/python22/Makefile b/lang/python22/Makefile index ca661d9739b..cd8fe39a1ba 100644 --- a/lang/python22/Makefile +++ b/lang/python22/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.20 2004/01/24 08:13:14 grant Exp $ +# $NetBSD: Makefile,v 1.21 2004/01/27 18:55:30 abs Exp $ # PKGNAME= python22-2.2.3 +PKGREVISION= 1 CONFIGURE_ARGS+= --without-threads diff --git a/lang/python22/Makefile.common b/lang/python22/Makefile.common index 8fa80b439fd..12e3adfb79c 100644 --- a/lang/python22/Makefile.common +++ b/lang/python22/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2004/01/25 16:06:47 recht Exp $ +# $NetBSD: Makefile.common,v 1.3 2004/01/27 18:55:30 abs Exp $ # DISTNAME= Python-2.2.3 @@ -10,6 +10,7 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.python.org/ COMMENT= Interpreted, interactive, object-oriented programming language +USE_GCC_SHLIB= YES USE_BUILDLINK3= YES GNU_CONFIGURE= YES diff --git a/lang/python23-pth/Makefile b/lang/python23-pth/Makefile index 7bda1cee009..03704cb9c27 100644 --- a/lang/python23-pth/Makefile +++ b/lang/python23-pth/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.17 2004/01/25 21:10:11 recht Exp $ +# $NetBSD: Makefile,v 1.18 2004/01/27 18:55:30 abs Exp $ # PKGNAME= python23-pth-2.3.3 +PKGREVISION= 1 PTHREAD_OPTS= require .include "../../mk/pthread.buildlink2.mk" diff --git a/lang/python23/Makefile b/lang/python23/Makefile index 823332bcb55..d05c886136f 100644 --- a/lang/python23/Makefile +++ b/lang/python23/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.15 2004/01/24 19:48:11 recht Exp $ +# $NetBSD: Makefile,v 1.16 2004/01/27 18:55:30 abs Exp $ # PKGNAME= python23-2.3.3 +PKGREVISION= 1 CONFIGURE_ARGS+= --without-threads diff --git a/lang/python23/Makefile.common b/lang/python23/Makefile.common index 5f8e8283f8d..afb22b994f4 100644 --- a/lang/python23/Makefile.common +++ b/lang/python23/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2004/01/26 12:10:24 grant Exp $ +# $NetBSD: Makefile.common,v 1.6 2004/01/27 18:55:30 abs Exp $ # DISTNAME= Python-2.3.3 @@ -10,6 +10,7 @@ MAINTAINER= recht@NetBSD.org HOMEPAGE= http://www.python.org/ COMMENT= Interpreted, interactive, object-oriented programming language +USE_GCC_SHLIB= yes USE_DB185= yes USE_BUILDLINK2= yes GNU_CONFIGURE= yes -- cgit v1.2.3