178a33f7d6
development and clean, pragmatic design. Developed and used over two years by a fast-moving online-news operation, Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly. From Darrin Chandler (MAINTAINER) Testing and help from Will Maier and myself ok steven@
35 lines
738 B
Makefile
35 lines
738 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/09/19 13:45:00 merdely Exp $
|
|
|
|
COMMENT= high-level Python web framework
|
|
|
|
V= 0.96
|
|
LNAME= django
|
|
DISTNAME= Django-${V}
|
|
PKGNAME= py-${LNAME}-${V}
|
|
CATEGORIES= www lang/python
|
|
|
|
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>
|