svn commit: r303439 - head/www/py-django

Li-Wen Hsu lwhsu at FreeBSD.org
Fri Aug 31 17:56:07 UTC 2012


Author: lwhsu
Date: Fri Aug 31 17:56:06 2012
New Revision: 303439
URL: http://svn.freebsd.org/changeset/ports/303439

Log:
  - Convert to new options framework

Modified:
  head/www/py-django/Makefile

Modified: head/www/py-django/Makefile
==============================================================================
--- head/www/py-django/Makefile	Fri Aug 31 17:55:22 2012	(r303438)
+++ head/www/py-django/Makefile	Fri Aug 31 17:56:06 2012	(r303439)
@@ -28,11 +28,10 @@ CONFLICTS=	py2[0-9]-django-devel-[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 HTMLDOCS
+OPTIONS_DEFAULT=
+
+HTMLDOCS_DESC=	Build and install the HTML documentation (requires Sphinx)
 
 MAN1=		daily_cleanup.1 django-admin.1 gather_profile_stats.1
 
@@ -41,32 +40,32 @@ OPTIONSFILE=	${PORT_DBDIR}/py-${PORTNAME
 
 .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
 BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx
 PORTDOCS=	*
 .endif
 
 post-build:
-.if defined(WITH_DOCS)
-.	if defined(NOPORTDOCS)
-IGNORE=	you cannot build documentation while setting NOPORTDOCS
-.	endif
+.if ${PORT_OPTIONS:MHTMLDOCS}
 	cd ${WRKSRC}/docs && ${MAKE} html
 .endif
 
@@ -75,7 +74,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



More information about the svn-ports-all mailing list