mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
39 lines
947 B
Makefile
39 lines
947 B
Makefile
# Ports collection Makefile for: HTMLgen
|
|
# Date created: 03/20/1999
|
|
# Whom: nectar@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= py-HTMLgen
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://starship.skyport.net/crew/friedrich/ \
|
|
http://www.nectar.cc/distfiles/
|
|
DISTNAME= HTMLgen
|
|
|
|
MAINTAINER= nectar@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
|
|
RUN_DEPENDS= python:${PORTSDIR}/lang/python
|
|
|
|
WRKSRC= ${WRKDIR}/HTMLgen
|
|
PLIST= ${WRKDIR}/PLIST
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/HTMLgen
|
|
FIND?= find
|
|
|
|
pre-install:
|
|
@${CP} ${PKGDIR}/PLIST ${PLIST}
|
|
.if !defined(NOPORTDOCS)
|
|
@${CAT} ${PKGDIR}/PLIST.docs >> ${PLIST}
|
|
@${MKDIR} ${PREFIX}/share/doc/HTMLgen
|
|
@${TAR} -C ${WRKSRC} -cf - README html image | \
|
|
${TAR} -C ${DOCDIR} -xvf -
|
|
@${CHOWN} -R ${BINOWN}:${BINGRP} ${DOCDIR}
|
|
@${FIND} ${DOCDIR} -type d -exec ${CHMOD} 0555 {} \;
|
|
@${FIND} ${DOCDIR} -type f -exec ${CHMOD} 0444 {} \;
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|