diff options
author | gjb <gjb@FreeBSD.org> | 2014-05-09 01:06:35 +0800 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2014-05-09 01:06:35 +0800 |
commit | c1c2fbaceac3b78f7dd626327f0e7eb2b390c090 (patch) | |
tree | 24f6e1e9120ad27791c56ceace6c02de5e7019e4 /databases | |
parent | fd9d9f43e7d64157d636444e8f2ee4d859b08f69 (diff) | |
download | freebsd-ports-gnome-c1c2fbaceac3b78f7dd626327f0e7eb2b390c090.tar.gz freebsd-ports-gnome-c1c2fbaceac3b78f7dd626327f0e7eb2b390c090.tar.zst freebsd-ports-gnome-c1c2fbaceac3b78f7dd626327f0e7eb2b390c090.zip |
Fix a few nits with databases/pgtune that cause runtime
problems:
- Add USES=shebangfix
- Replace USE_PYTHON=yes with USE_PYTHON=2+
- Fix shebang line to use python2.N
- Bump PORTREVISION
Reported by: pathiaki2@yahoo.com (via ports@)
Redports ID: https://redports.org/buildarchive/20140508164000-29103/
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'databases')
-rw-r--r-- | databases/pgtune/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/databases/pgtune/Makefile b/databases/pgtune/Makefile index 7de91cdaf89b..10f7b3ff7059 100644 --- a/databases/pgtune/Makefile +++ b/databases/pgtune/Makefile @@ -3,6 +3,7 @@ PORTNAME= pgtune PORTVERSION= 0.9.3 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pgfoundry.org/frs/download.php/2449/ \ https://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ @@ -10,9 +11,17 @@ MASTER_SITES= http://pgfoundry.org/frs/download.php/2449/ \ MAINTAINER= gjb@FreeBSD.org COMMENT= Postgresql.conf tuning tips based on hardware and load type -USE_PYTHON= yes +USES= shebangfix +USE_PYTHON= 2+ NO_BUILD= yes +SHEBANG_FILES= ${PORTNAME} +python_OLD_CMD= ${PREFIX}/bin/python + +pre-install: + @${REINPLACE_CMD} -e 's|${python_OLD_CMD}|${PYTHON_CMD}|' \ + ${WRKSRC}/${PORTNAME} + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/pgtune ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${PREFIX}/share/pgtune/settings |