Makefile 884 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # $OpenBSD: Makefile,v 1.23 2017/06/01 19:18:56 schwarze Exp $
  2. COMMENT = lightweight connection pooler for PostgreSQL
  3. V = 1.6.1
  4. DISTNAME = pgbouncer-${V}
  5. REVISION = 0
  6. CATEGORIES = databases
  7. HOMEPAGE = http://wiki.postgresql.org/wiki/PgBouncer
  8. MAINTAINER = Pierre-Emmanuel Andre <pea@openbsd.org>
  9. # BSD
  10. PERMIT_PACKAGE_CDROM = Yes
  11. WANTLIB = c event
  12. MASTER_SITES = https://pgbouncer.github.io/downloads/files/${V}/
  13. BUILD_DEPENDS = devel/libeventextra
  14. CONFIGURE_STYLE = gnu
  15. #Disable the detection of asciidoc since docs are already included
  16. CONFIGURE_ENV = ASCIIDOC=' '
  17. CONFIGURE_ARGS = --with-libevent=${LOCALBASE} --without-cares
  18. MAKE_FLAGS+= V=1
  19. USE_GMAKE = Yes
  20. # The actual regress tests are (cd ${WRKSRC}/test; ./test.sh)
  21. # They want to create full postgres install and also play with
  22. # firewall (iptables)
  23. NO_TEST = Yes
  24. .include <bsd.port.mk>