2e43c8cea1
From MAINTAINER Darrin Chandler <dwchandler at stilyagin at com>. Use MODPY_EGG_VERSION while here. ok merdely@
36 lines
785 B
Makefile
36 lines
785 B
Makefile
# $OpenBSD: Makefile,v 1.5 2008/05/24 04:17:11 wcmaier Exp $
|
|
|
|
COMMENT= high-level Python web framework
|
|
|
|
MODPY_EGG_VERSION= 0.96.2
|
|
V= 0.96
|
|
LNAME= django
|
|
DISTNAME= Django-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${LNAME}-${MODPY_EGG_VERSION}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.djangoproject.com/
|
|
|
|
MAINTAINER= Darrin Chandler <dwchandler@stilyagin.com>
|
|
|
|
# BSD License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://media.djangoproject.com/releases/${V}/
|
|
|
|
MODULES= lang/python
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
SUBST_VARS+= V LNAME
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${LNAME}
|
|
cd ${WRKSRC}/docs && \
|
|
find . ! -type d -exec ${INSTALL_DATA} {} ${PREFIX}/share/doc/${LNAME}/{} \;
|
|
|
|
.include <bsd.port.mk>
|