structures by disabling a workaround for an ancient verifier bug. discussed with beck a while back
33 lines
715 B
Makefile
33 lines
715 B
Makefile
# $OpenBSD: Makefile,v 1.35 2022/01/13 09:57:47 tb Exp $
|
|
|
|
COMMENT = lightweight connection pooler for PostgreSQL
|
|
|
|
V = 1.16.1
|
|
DISTNAME = pgbouncer-${V}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = databases
|
|
|
|
HOMEPAGE = https://www.pgbouncer.org/
|
|
|
|
MAINTAINER = Pierre-Emmanuel Andre <pea@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = c event_core event_extra crypto ssl
|
|
|
|
MASTER_SITES = https://pgbouncer.github.io/downloads/files/${V}/
|
|
|
|
LIB_DEPENDS = devel/libevent2
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
#Disable the detection of asciidoc since docs are already included
|
|
CONFIGURE_ENV = ASCIIDOC=' '
|
|
CONFIGURE_ARGS = --with-libevent=${LOCALBASE} --without-cares
|
|
MAKE_FLAGS += V=1
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
.include <bsd.port.mk>
|