b79b3f1ca2
On August 20, the Django team issued new security releases addressing multiple vulnerabilities [1]. Update all of our Django ports accordingly: - www/py-django: Update to 1.6.6 - www/py-django14: Update to 1.4.14 - www/py-django15: Update to 1.5.9 - www/py-django-devel: Update to 1.7 release candidate 3 While I'm here: - Switch to USES=python and USE_PYTHON=<features> - Deprecate OPTIONSFILE - Add CPE information - Add LICENSE_FILE - Tweak HTMLDOCS option description And for www/py-django-devel: - Switch to GITHUB for distribution files [1] https://www.djangoproject.com/weblog/2014/aug/20/security/ Approved by: lwhsu (maintainer) MFH: 2014Q3 Security: 3c5579f7-294a-11e4-99f6-00e0814cab4e
68 lines
1.9 KiB
Makefile
68 lines
1.9 KiB
Makefile
# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= django
|
|
PORTVERSION= 1.5.9
|
|
CATEGORIES= www python
|
|
MASTER_SITES= https://www.djangoproject.com/m/releases/${PORTVERSION:R}/ \
|
|
CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= 15
|
|
DISTNAME= Django-${PORTVERSION}
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= lwhsu@FreeBSD.org
|
|
COMMENT= High-level Python Web framework
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cpe python:2
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
CONFLICTS= py[23][0-9]-django-devel-[0-9]* py[23][0-9]-django-1.[0-46-9].*
|
|
CPE_VENDOR= djangoproject
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-django
|
|
|
|
OPTIONS_DEFINE= FASTCGI HTMLDOCS
|
|
OPTIONS_DEFAULT=SQLITE
|
|
OPTIONS_GROUP= DATABASE
|
|
OPTIONS_GROUP_DATABASE= PGSQL MYSQL SQLITE
|
|
HTMLDOCS_DESC= Install HTML documentation (requires Sphinx)
|
|
|
|
PLIST_FILES= man/man1/daily_cleanup.1.gz \
|
|
man/man1/django-admin.1.gz \
|
|
man/man1/gather_profile_stats.1.gz
|
|
|
|
PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:${PORTSDIR}/databases/py-psycopg2
|
|
MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:${PORTSDIR}/databases/py-MySQLdb
|
|
SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
|
|
FASTCGI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MHTMLDOCS}
|
|
. if ! ${PORT_OPTIONS:MDOCS}
|
|
IGNORE= you cannot build documentation with DOCS option disabled
|
|
. endif
|
|
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
post-build:
|
|
.if ${PORT_OPTIONS:MHTMLDOCS}
|
|
cd ${WRKSRC}/docs && ${MAKE} html
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/* ${STAGEDIR}/${MAN1PREFIX}/man/man1
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " * See http://docs.djangoproject.com/ for complete documentation"
|
|
@${ECHO_MSG} ""
|
|
.if ${PORT_OPTIONS:MHTMLDOCS}
|
|
${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/docs/_build/html ${STAGEDIR}/${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|