pkgsrc/lang/python22/Makefile
darcy 1e3a6d03ba Remove comment about PR lib/20214 (libpthread assertion failure triggered
by py-bsddb3) since the PR has been closed.  Two other issues remain.
2003-04-17 08:09:03 +00:00

50 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.14 2003/04/17 08:09:03 darcy Exp $
#
DISTNAME= Python-2.2.2
PKGNAME= python22-2.2.2
CATEGORIES= lang
MASTER_SITES= ftp://ftp.python.org/pub/python/2.2.2/
EXTRACT_SUFX= .tgz
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.python.org/
COMMENT= Interpreted, interactive, object-oriented programming language
USE_BUILDLINK2= YES
GNU_CONFIGURE= YES
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS"
LOWER_OPSYS= sunos
.endif
.if ${OPSYS} == "Darwin" || ${OPSYS} == "IRIX"
PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS}
.else
PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS}${OS_VERSION:C/\..*//}
.endif
.if ${OPSYS} == "NetBSD"
# XXX We'll enable native threads (if available) as soon as it is
# stable enough. Remaining issues:
# -stack size too small in main thread
# -"test_gettext" in Python autotest hanging forever
CONFIGURE_ARGS+= --without-threads
.endif
INSTALL_TARGET= altinstall
post-extract:
${MV} ${WRKSRC}/Tools/scripts/pydoc ${WRKSRC}/Tools/scripts/pydoc2.2
.include "../../devel/zlib/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
# This comes after bsd.pkg.mk so that the LDFLAGS here overrides the one
# set earlier in the environment (last definition wins).
#
.if ${OBJECT_FMT} == "a.out"
MAKE_ENV+= LDFLAGS="${LDFLAGS:S/-Wl,//}"
.endif