freebsd-ports/textproc/py-HyperText/Makefile
Mario Sergio Fujikawa Ferreira f0a1969d34 o Rollback PORTCOMMENT modifications while this feature's implementation
is better studied
o Turn PORTCOMMENT variable in Makefile back into pkg-comment files

Approved by:	kris (portmgr hat),
		portmgr, re (silence)
2002-11-10 16:48:51 +00:00

36 lines
948 B
Makefile

# Ports collection Makefile for: HyperText
# Date created: 10/03/2000
# Whom: nectar@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= HyperText
PORTVERSION= 1.0.1
CATEGORIES= textproc python
MASTER_SITES= http://dustman.net/andy/python/HyperText/1.0.1/
PKGNAMEPREFIX= py-
MAINTAINER= ports@FreeBSD.org
USE_PYTHON= yes
WRKSRC= ${WRKDIR}/HyperText
# get rid of pre-compiled stuff: it may not work for the installed
# version of Python
post-extract:
@cd ${WRKSRC} && ${RM} -f *.py[co]
do-build:
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
do-install:
${MKDIR} ${PYTHON_SITELIBDIR}/HyperText
${CHOWN} ${BINOWN}:${BINGRP} ${PYTHON_SITELIBDIR}/HyperText
${CHMOD} ${BINMODE} ${PYTHON_SITELIBDIR}/HyperText
@(set -e -x; cd ${WRKSRC}; for f in *.py *.py[co]; do \
${INSTALL_DATA} $$f ${PYTHON_SITELIBDIR}/HyperText/$$f; \
done)
.include <bsd.port.mk>