mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
1b3220e465
Update to Albatross v1.33. This is a minor fix for a possible security hole hence the Severity & Priority above. Submitted by: Bourne-again Superuser <gnb@itga.com.au> PR: ports/91289
30 lines
886 B
Makefile
30 lines
886 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.33
|
|
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 . | ${TAR} -xf - -C ${DOCSDIR}/html
|
|
@${TAR} -cf - -C ${WRKSRC}/samples . | ${TAR} -xf - -C ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|