blob: 7abd062e08a28cfbaec0c4f52144cf6f905c36df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $NetBSD: Makefile,v 1.6 1998/06/22 12:44:31 agc Exp $
#
DISTNAME= pyth151
PKGNAME= python-1.5.1
CATEGORIES= lang
MASTER_SITES= ftp://ftp.python.org/pub/python/src/
EXTRACT_SUFX= .tgz
MAINTAINER= tsarna@endicor.com
WRKSRC= ${WRKDIR}/Python-1.5.1
GNU_CONFIGURE= yes
MAKE_FLAGS+= 'OPT=${CFLAGS}'
# Handle the module setup file:
# - disable some modules on 64 bit platforms
# - handle machines with no dynamic loader
.if ${MACHINE_ARCH} == "alpha"
NO64BIT=\#
.endif
.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "alpha"
NOSHARED=\#
.endif
post-configure:
${SED} -e 's/@NO64BIT@/${NO64BIT}/' -e 's/@NOSHARED@/${NOSHARED}/' \
${FILESDIR}/Setup >${WRKSRC}/Modules/Setup
post-install:
strip ${PREFIX}/bin/python
.include "../../mk/bsd.pkg.mk"
|