mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
d23a795680
Reordered vars where needed. Added MAINTAINERS where needed, many mkdir --> ${MKDIR}, install -> ${INSTALL_*}, etc.
35 lines
738 B
Makefile
35 lines
738 B
Makefile
# New ports collection makefile for: python
|
|
# Version required: 1.4
|
|
# Date created: 08 August 1995
|
|
# Whom: jkh
|
|
#
|
|
# $Id: Makefile,v 1.8 1996/11/02 19:04:22 jkh Exp $
|
|
#
|
|
|
|
DISTNAME= python1.4
|
|
PKGNAME= python-1.4
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
|
|
ftp://ftp.cwi.nl/pub/python/src/
|
|
|
|
MAINTAINER= jkh@FreeBSD.org
|
|
|
|
LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41
|
|
|
|
WRKSRC= ${WRKDIR}/Python-1.4
|
|
HAS_CONFIGURE= yes
|
|
|
|
MAKE_FLAGS+= 'OPT=${CFLAGS}'
|
|
INSTALL_TARGET= install
|
|
|
|
post-configure:
|
|
${CP} ${FILESDIR}/Setup ${WRKSRC}/Modules
|
|
|
|
post-install:
|
|
strip ${PREFIX}/bin/python
|
|
.if !defined(NOMANCOMPRESS)
|
|
gzip -9nf ${PREFIX}/man/man1/python.1
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|