sthen 37b15ab3c4 update to postgresql-plv8 1.4.2 and add patches to fix with pgsql 9.4;
remove jeremy@ as maintainer per his request. ok jeremy@
2015-01-08 15:03:35 +00:00

42 lines
953 B
Makefile

# $OpenBSD: Makefile,v 1.5 2015/01/08 15:03:35 sthen Exp $
# v8 only works on these arches currently
ONLY_FOR_ARCHS = amd64 i386
COMMENT = PostgreSQL V8 javascript procedual language
VERSION = 1.4.2
DISTNAME = plv8-${VERSION}
PKGNAME = postgresql-${DISTNAME}
CATEGORIES = databases
HOMEPAGE = https://code.google.com/p/plv8js
# BSD
PERMIT_PACKAGE_CDROM = Yes
WANTLIB = c m stdc++ pthread v8
MASTER_SITES = http://api.pgxn.org/dist/plv8/${VERSION}/
EXTRACT_SUFX = .zip
BUILD_DEPENDS = ${RUN_DEPENDS}
LIB_DEPENDS = lang/libv8
RUN_DEPENDS = postgresql-server->=9.4,<9.5:databases/postgresql,-server
MAKE_FLAGS = V8DIR=${LOCALBASE}/lib \
CUSTOM_CC="${CXX}" \
OPTFLAGS="${CXXFLAGS}"
USE_GMAKE = Yes
# Need to start the PostgreSQL server first
TEST_IS_INTERACTIVE= Yes
TEST_DEPENDS = ${FULLPKGNAME}:${BUILD_PKGPATH}
do-test:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} PGUSER=postgres \
gmake installcheck
.include <bsd.port.mk>