blob: c61adcbe052ca1f431a7e82ead056cc4a9c3e46f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# New ports collection makefile for: py-cherrypy
# Date created: 2006-01-11
# Whom: Nicola Vitale <nivit@email.it>
#
# $FreeBSD$
#
PORTNAME= cherrypy
PORTVERSION= 2.2.0.b
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
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
CPEXAMPLES= ${PYTHON_SITELIBDIR}/${PORTNAME}/tutorial
post-install:
@${MV} ${CPEXAMPLES} ${EXAMPLESDIR} && \
${LN} ${LN_OPTS} ${EXAMPLESDIR} ${CPEXAMPLES}
.include <bsd.port.mk>
|