62cab77454
Fix all occurrences of this that are not part of REPLACE_CMD commands. PR: ports/117051 Submitted by: "Philip M. Gollucci" <pgollucci@p6m7g8.com>
29 lines
906 B
Makefile
29 lines
906 B
Makefile
# New ports collection makefile for: albatross
|
|
# Date created: 29 August 2002
|
|
# Whom: Gregory Bond <gnb@itga.com.au>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= albatross
|
|
PORTVERSION= 1.36
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://object-craft.com.au/projects/albatross/download/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}-html-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= gnb@itga.com.au
|
|
COMMENT= Python toolkit for developing highly stateful web applications
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR} ${EXAMPLESDIR} ${DOCSDIR}/html
|
|
@${TAR} -cf - -C ${WRKSRC}/doc . | ${TAR} -xf - -C ${DOCSDIR}
|
|
@${TAR} -cf - -C ${WRKDIR}/albatross-html-${PORTVERSION} . | ${TAR} -xf - -C ${DOCSDIR}/html
|
|
@${TAR} -cf - -C ${WRKSRC}/samples . | ${TAR} -xf - -C ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|