1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/devel/py-htmlkit/Makefile
Will Andrews bc238b49c0 Add py-htmlkit, a python package that assists with autogenerating HTML.
PR:		19155
Submitted by:	Kelly Yancey <kbyanc@posi.net>
2000-06-09 22:01:58 +00:00

36 lines
841 B
Makefile

# Ports collection Makefile for: py-HtmlKit
# Date created: 06/08/2000
# Whom: kbyanc@posi.net
#
# $FreeBSD$
#
PORTNAME= HtmlKit
PORTVERSION= 1.0
CATEGORIES= devel python www
MASTER_SITES= http://www.dekorte.com/Software/Python/HtmlKit/Download/
PKGNAMEPREFIX= py-
DISTNAME= HtmlKit
EXTRACT_SUFX= .tar
MAINTAINER= kbyanc@posi.net
RUN_DEPENDS= python:${PORTSDIR}/lang/python
NO_BUILD= yes
do-install:
@${MKDIR} ${PREFIX}/lib/python1.5/site-packages
@${MKDIR} ${PREFIX}/lib/python1.5/site-packages/HtmlKit/
@for i in ${WRKSRC}/*.py; do \
${INSTALL_DATA} $$i ${PREFIX}/lib/python1.5/site-packages/HtmlKit; \
done
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/HtmlKit
@for i in ${WRKSRC}/Documentation/*; do \
${INSTALL_DATA} $$i ${PREFIX}/share/doc/HtmlKit; \
done
.endif
.include <bsd.port.mk>