4362dff163
- Re-assign to the Python team - Port is architecture neutral - devel/py-funcsigs is only needed when Python < 3.3
26 lines
546 B
Makefile
26 lines
546 B
Makefile
# Created by: Dryice Liu <dryice@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= beaker
|
|
PORTVERSION= 1.8.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Beaker-${PORTVERSION}
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= Session and Caching library with WSGI Middleware
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} <= 3200
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}funcsigs>=1.0.2:devel/py-funcsigs
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|