mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
31 lines
720 B
Makefile
31 lines
720 B
Makefile
# Created by: Jov amutu@amutu.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tds_fdw
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PostgreSQL foreign data wrapper to connect to TDS databases
|
|
|
|
LICENSE= PostgreSQL
|
|
|
|
LIB_DEPENDS= libsybdb.so:databases/freetds
|
|
|
|
USES= gmake pgsql:9.2+
|
|
LLD_UNSAFE= yes
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tds-fdw
|
|
|
|
PLIST_FILES= lib/postgresql/tds_fdw.so \
|
|
share/doc/postgresql/extension/README.tds_fdw.md \
|
|
share/postgresql/extension/tds_fdw--1.0.8.sql \
|
|
share/postgresql/extension/tds_fdw.control
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/tds_fdw.so
|
|
|
|
.include <bsd.port.mk>
|