mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
Changelog: * Support for PostgreSQL 16 and EDB Postgres Advanced Server 16. * Added a few more default entries in mysql_fdw_pushdown.config file. * Fixes incorrect quoting in generating EXPLAIN query. * Remove support for v10. PR: 279191 Reported by: kbowling
24 lines
524 B
Makefile
24 lines
524 B
Makefile
PORTNAME= mysql_fdw
|
|
DISTVERSIONPREFIX= REL-
|
|
DISTVERSION= 2_9_1
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= PostgreSQL foreign data wrapper for MySQL
|
|
WWW= https://github.com/EnterpriseDB/mysql_fdw
|
|
|
|
LICENSE= PostgreSQL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake mysql pgsql:11+
|
|
WANT_PGSQL= server
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= EnterpriseDB
|
|
|
|
MAKE_ENV= USE_PGXS=1
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/mysql_fdw.so
|
|
|
|
.include <bsd.port.mk>
|