1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/www/py-cherrypy/Makefile
Erwin Lansing c65e375504 Update 2.2.1
PR:		96334
Submitted by:	Nicola Vitale <nivit@email.it> (maintainer)
2006-04-27 13:52:44 +00:00

43 lines
939 B
Makefile

# New ports collection makefile for: py-cherrypy
# Date created: 2006-01-11
# Whom: Nicola Vitale <nivit@email.it>
#
# $FreeBSD$
#
PORTNAME= cherrypy
PORTVERSION= 2.2.1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= CherryPy-${PORTVERSION:C/\.b$/beta/}
MAINTAINER= nivit@email.it
COMMENT= A pythonic, object-oriented web development framework
USE_PYTHON= 2.3+
USE_PYDISTUTILS= yes
LN_OPTS= -sf
RM_OPTS= -r
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
CPEXAMPLES= ${PYTHON_SITELIBDIR}/${PORTNAME}/tutorial
.if !defined(WITH_EXAMPLES)
PLIST_SUB= PORTEXAMPLES="@comment "
.else
PLIST_SUB= PORTEXAMPLES=""
.endif
post-install:
.if !defined(WITH_EXAMPLES)
@${RM} ${RM_OPTS} ${CPEXAMPLES}
.else
@${MV} ${CPEXAMPLES} ${EXAMPLESDIR} && \
${LN} ${LN_OPTS} ${EXAMPLESDIR} ${CPEXAMPLES}
.endif
.include <bsd.port.mk>