summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2012-08-31 17:56:27 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2012-08-31 17:56:27 +0000
commit2f3f4fc6f968465ac6181de9175cf5850e5400e3 (patch)
treee46a5507ed4bf43ad285826e1c9f4a662d5eaf8d /www
parent- Convert to new options framework (diff)
- Convert to new options framework
Notes
Notes: svn path=/head/; revision=303440
Diffstat (limited to 'www')
-rw-r--r--www/py-django-devel/Makefile23
1 files changed, 11 insertions, 12 deletions
diff --git a/www/py-django-devel/Makefile b/www/py-django-devel/Makefile
index 966cb2b40aeb..9d6036feb453 100644
--- a/www/py-django-devel/Makefile
+++ b/www/py-django-devel/Makefile
@@ -35,11 +35,10 @@ CONFLICTS= py2[0-9]-django-[0-9]*
DOCSDIR= ${PREFIX}/share/doc/py-django
-OPTIONS= POSTGRESQL "PostgreSQL support" off \
- MYSQL "MySQL support" off \
- SQLITE "SQLite support" off \
- FASTCGI "FastCGI support" off \
- DOCS "Install HTML documentation (requires Sphinx)" off
+OPTIONS_DEFINE= PGSQL MYSQL SQLITE FASTCGI DOCS
+OPTIONS_DEFAULT=
+
+HTMLDOCS_DESC= Build and install the HTML documentation (requires Sphinx)
MAN1= daily_cleanup.1 django-admin.1 gather_profile_stats.1
@@ -48,23 +47,23 @@ OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}-devel/options
.include <bsd.port.pre.mk>
-.if defined(WITH_POSTGRESQL)
+.if ${PORT_OPTIONS:MPGSQL}
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopg2/_psycopg.so:${PORTSDIR}/databases/py-psycopg2
.endif
-.if defined(WITH_MYSQL)
+.if ${PORT_OPTIONS:MMYSQL}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:${PORTSDIR}/databases/py-MySQLdb
.endif
-.if defined(WITH_SQLITE)
+.if ${PORT_OPTIONS:MSQLITE}
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3
.endif
-.if defined(WITH_FASTCGI)
+.if ${PORT_OPTIONS:MFASTCGI}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup
.endif
-.if defined(WITH_DOCS)
+.if ${PORT_OPTIONS:MHTMLDOCS}
. if defined(NOPORTDOCS)
IGNORE= you cannot build documentation while setting NOPORTDOCS
. endif
@@ -73,7 +72,7 @@ PORTDOCS= *
.endif
post-build:
-.if defined(WITH_DOCS)
+.if ${PORT_OPTIONS:MHTMLDOCS}
cd ${WRKSRC}/docs && ${MAKE} html
.endif
@@ -82,7 +81,7 @@ post-install:
@${ECHO_MSG} ""
@${ECHO_MSG} " * See http://docs.djangoproject.com/ for complete documentation"
@${ECHO_MSG} ""
-.if defined(WITH_DOCS)
+.if ${PORT_OPTIONS:MHTMLDOCS}
${MKDIR} ${DOCSDIR}
${CP} -R ${WRKSRC}/docs/_build/html ${DOCSDIR}
.endif