mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 19:20:36 -04:00
* Switch to CMake as it cleans up Makefile, builds faster and adds .cmake files to port * Modernize port Makefile * Remove ancient CONFLICTS entry PR: 281022 Approved by: pgsql (girgen)
27 lines
521 B
Makefile
27 lines
521 B
Makefile
PORTNAME= libpqxx
|
|
DISTVERSION= 7.9.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql-
|
|
DIST_SUBDIR= postgresql
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= New C++ interface for PostgreSQL
|
|
WWW= http://pqxx.org/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cmake compiler:c++17-lang pathfix pkgconfig pgsql
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jtv
|
|
|
|
PLIST_SUB= DISTVERSION=${DISTVERSION:R}
|
|
|
|
CMAKE_OFF= BUILD_TEST
|
|
CMAKE_ON= BUILD_SHARED_LIBS \
|
|
CMAKE_SKIP_RPATH
|
|
|
|
.include <bsd.port.mk>
|