diff options
Diffstat (limited to 'lang/python21/Makefile')
-rw-r--r-- | lang/python21/Makefile | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/lang/python21/Makefile b/lang/python21/Makefile index 5022350..2fe0727 100644 --- a/lang/python21/Makefile +++ b/lang/python21/Makefile @@ -3,26 +3,33 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.2 1995/08/09 01:30:00 asami Exp $ +# $Id: Makefile,v 1.3 1995/11/22 13:13:06 asami Exp $ # -DISTNAME= python1.2 -PKGNAME= python-1.2 +DISTNAME= python1.3 +PKGNAME= python-1.3 CATEGORIES+= lang -MASTER_SITES= ftp://www.python.org/pub/python/src/ +MASTER_SITES= ftp://www.python.org/pub/python/src/ \ + ftp://ftp.cwi.nl/pub/python/src/ MAINTAINER= jkh@FreeBSD.org -LIB_DEPENDS= tcl\\.7\\.:${PORTSDIR}/lang/tcl \ - tk\\.3\\.:${PORTSDIR}/x11/tk +LIB_DEPENDS= tcl74\\.1\\.:${PORTSDIR}/lang/tcl74 \ + tk40\\.1\\.:${PORTSDIR}/x11/tk4 + +WRKSRC= ${WRKDIR}/Python-1.3 +HAS_CONFIGURE= yes + +MAKE_FLAGS+= 'OPT=${CFLAGS}' +INSTALL_TARGET= install libinstall maninstall post-configure: cp ${FILESDIR}/Setup ${WRKSRC}/Modules -pre-install: - cd ${WRKSRC}; ${MAKE} libinstall - -WRKSRC= ${WRKDIR}/Python-1.2 -HAS_CONFIGURE= yes +post-install: + strip ${PREFIX}/bin/python +.if !defined(NOMANCOMPRESS) + gzip -9nf ${PREFIX}/man/man1/python.1 +.endif .include <bsd.port.mk> |