diff options
author | bapt <bapt@FreeBSD.org> | 2013-01-08 15:06:24 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-01-08 15:06:24 +0800 |
commit | 424941746fab63c1edfc32ba5e7c221f2cfa52e3 (patch) | |
tree | a7b4bed52842c2ad668f11ae7f5f5d4d02c1df8b /databases | |
parent | 2d7d02066042eb68dc50872da09cf7eb6bfb0b41 (diff) | |
download | freebsd-ports-graphics-424941746fab63c1edfc32ba5e7c221f2cfa52e3.tar.gz freebsd-ports-graphics-424941746fab63c1edfc32ba5e7c221f2cfa52e3.tar.zst freebsd-ports-graphics-424941746fab63c1edfc32ba5e7c221f2cfa52e3.zip |
Convert last python@ ports to new options framework
for both make options work as expected (previous version were missing include <bsd.port.options.mk>)
for databases/py-pyPgSQL reverse the logic for the option test so that it
actually works as expected
Approved by: python (crees)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-pyPgSQL/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/databases/py-pyPgSQL/Makefile b/databases/py-pyPgSQL/Makefile index 3c52ebd6178..98673a4bd3d 100644 --- a/databases/py-pyPgSQL/Makefile +++ b/databases/py-pyPgSQL/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-pypgsql -# Date created: 01 Nov 2001 -# Whom: Gerhard Haering <gerhard.haering@gmx.de> -# +# Created by: Gerhard Haering <gerhard.haering@gmx.de> # $FreeBSD$ -# PORTNAME= pyPgSQL PORTVERSION= 2.5.1 @@ -26,12 +22,16 @@ EXAMPLES= examples/*.py DATETIME_DEP= ${PYTHON_SITELIBDIR}/mx/DateTime/__init__.py -OPTIONS= BYTEA_CONN "Apply Bytea connection patch" On +OPTIONS_DEFINE= BYTEA_CONN EXAMPLES DOCS +OPTIONS_DEFAULT= BYTEA_CONN +BYTEA_CONN_DESC= Apply Bytea connection patch # bypass infrastructure bug OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options -.if !defined(WITH_BYTEA_CONN) +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MBYTEA_CONN} PATCH_SITES= http://sourceforge.net/tracker/download.php?group_id=16528&atid=316528&file_id=273956&aid=1939119/ PATCHFILES= pyPgSQL-patch_byteaconn .endif @@ -40,13 +40,13 @@ DOCSDIR= ${PREFIX}/share/doc/py-pyPgSQL EXAMPLESDIR= ${PREFIX}/share/examples/py-pyPgSQL post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} .endfor .endif -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} .for f in ${EXAMPLES} @${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR} |