diff options
Diffstat (limited to 'lang/python21/Makefile')
-rw-r--r-- | lang/python21/Makefile | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/lang/python21/Makefile b/lang/python21/Makefile deleted file mode 100644 index 9fed142904f..00000000000 --- a/lang/python21/Makefile +++ /dev/null @@ -1,93 +0,0 @@ -# $NetBSD: Makefile,v 1.37 2008/07/14 14:42:51 joerg Exp $ -# - -DISTNAME= Python-2.1.3 -PKGNAME= python21-2.1.3 -PKGREVISION= 16 -CATEGORIES= lang python -MASTER_SITES= http://www.python.org/ftp/python/2.1.3/ -EXTRACT_SUFX= .tgz - -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://www.python.org/ -COMMENT= Interpreted, interactive, object-oriented programming language - -CONFLICTS+= python-[0-9]* - -USE_LANGUAGES= c c++ -GNU_CONFIGURE= YES - -REPLACE_INTERPRETER+= python -REPLACE.python.old= .*python -REPLACE.python.new= ${PREFIX}/bin/python${PY_VER_SUFFIX} -REPLACE_FILES.python= Lib/cgi.py Lib/test/test_largefile.py - -PTHREAD_OPTS+= require -.include "../../mk/pthread.buildlink3.mk" -.if ${PTHREAD_TYPE} == "pth" -CONFIGURE_ARGS+= --with-pth -.endif - -PY_VER_SUFFIX= 2.1 - -BUILD_TARGET= all ./Lib/plat-${PY_PLATNAME} -INSTALL_TARGET= altinstall - -.include "../../mk/bsd.prefs.mk" - -PLIST_VARS= bsddb socket termios - -PLIST_SRC= ${.CURDIR}/../../lang/python21/PLIST.common -.if exists(${.CURDIR}/../../lang/python21/PLIST.${OPSYS}) -PLIST_SRC+= ${.CURDIR}/../../lang/python21/PLIST.${OPSYS} -.endif -PLIST_SRC+= ${.CURDIR}/../../lang/python21/PLIST.common_end - -.if ${OPSYS} == "Darwin" -PY_PLATNAME= ${LOWER_OPSYS} -.elif ${OPSYS} == "IRIX" -PY_PLATNAME= ${LOWER_OPSYS:C/\..*//} -.elif ${OPSYS} == "SunOS" -PY_PLATNAME= sunos${OS_VERSION:C/\..*//} -.else -PY_PLATNAME= ${LOWER_OPSYS}${OS_VERSION:C/\..*//} -.endif -PLIST_SUBST+= PY_PLATNAME=${PY_PLATNAME:Q} - -.if !empty(MACHINE_PLATFORM:MNetBSD-[2-9].*) -. if exists(/usr/include/sys/socket.h) -PLIST.socket= yes -. endif -. if exists(/usr/include/termios.h) -PLIST.termios= yes -. endif -.endif - -# bsddb.so is not built on Solaris (or IRIX?) -.if ${OPSYS} != "SunOS" && ${OPSYS} != "IRIX" -. include "../../mk/bdb.buildlink3.mk" -PLIST.bsddb= yes -MAKE_ENV+= PY_BDB_TYPE=${BDB_TYPE:Q} -MAKE_ENV+= PY_BDB_INCDIRS=${BDBBASE}/${BUILDLINK_INCDIRS.${BDB_TYPE}} -MAKE_ENV+= PY_BDB_LIBDIRS=${BDBBASE}/lib -.endif - -PLIST_SUBST+= PY_VER_SUFFIX=${PY_VER_SUFFIX:Q} - -post-extract: - ${MV} ${WRKSRC}/Tools/scripts/pydoc ${WRKSRC}/Tools/scripts/pydoc${PY_VER_SUFFIX} - -USE_GNU_READLINE= # defined -BUILDLINK_DEPMETHOD.readline= build - -.include "../../devel/readline/buildlink3.mk" -.include "../../devel/zlib/buildlink3.mk" -.include "../../mk/dlopen.buildlink3.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 |