Edit

IABSD.fr/ports/databases/postgresql-jdbc/Makefile

Branch :

  • Show log

    Commit

  • Author : sthen
    Date : 2014-05-08 21:19:13
    Hash : da92c158
    Message : -docs PLIST changed, so bump REVISION-docs; noted by landry

  • databases/postgresql-jdbc/Makefile
  • # $OpenBSD: Makefile,v 1.22 2014/05/08 21:19:13 sthen Exp $
    
    COMMENT-main=		JDBC Driver for PostgreSQL
    COMMENT-docs=		API docs for PostgreSQL JDBC Driver
    
    V=			9.1-901
    DISTNAME=		postgresql-jdbc-$V
    PKGNAME-main=		postgresql-jdbc-${V:S/-/./}
    PKGNAME-docs=		postgresql-jdbc-docs-${V:S/-/./}
    PKG_ARCH-docs=		*
    CATEGORIES=		databases
    REVISION-docs=		0
    REVISION-main=		3
    
    MULTI_PACKAGES=		-main -docs
    
    HOMEPAGE=		http://jdbc.postgresql.org/
    
    MAINTAINER=		Matthias Kilian <kili@openbsd.org>
    
    # BSD
    PERMIT_PACKAGE_CDROM=	Yes
    
    MASTER_SITES=		${HOMEPAGE}/download/
    EXTRACT_SUFX=		.src.tar.gz
    
    MODULES=		java
    MODJAVA_VER?=		1.6+
    MODJAVA_JRERUN=		yes
    MODJAVA_BUILD=		ant
    MODJAVA_BUILD_TARGET_NAME =	all publicapi
    
    TEST_DEPENDS=	databases/postgresql \
    			java/junit
    RUN_DEPENDS-docs=
    
    JUNIT_JAR=		${LOCALBASE}/share/java/classes/junit/junit.jar
    
    WRKDIST=		${WRKDIR}/${DISTNAME}.src
    
    do-install:
    	${INSTALL_DATA_DIR} ${PREFIX}/share/postgresql/java
    	${INSTALL_DATA} ${WRKDIST}/jars/postgresql.jar \
    		${PREFIX}/share/postgresql/java
    	${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postgresql-jdbc
    	pax -rw -s@^${WRKDIST}/build/publicapi@@ \
    		${WRKDIST}/build/publicapi \
    		${PREFIX}/share/doc/postgresql-jdbc
    
    # Setup temporary path for regression tests.
    PG=			PGDATA=${WRKDIR}/pghome
    
    pre-test:
    	@if pgrep -f ${LOCALBASE}/bin/postgres > /dev/null; then	\
    		echo postgresql already running. Please shut it down;	\
    		echo before running the regression tests.;		\
    		false;							\
    	fi
    	@if [ $$(/sbin/sysctl -n kern.seminfo.semmni) -lt 256 -o	\
    	      $$(/sbin/sysctl -n kern.seminfo.semmns) -lt 2048 ]; then	\
    		echo For the regression tests, you need at least;	\
    		echo /sbin/sysctl kern.seminfo.semmni=256;		\
    		echo /sbin/sysctl kern.seminfo.semmns=2048;		\
    		false;							\
    	fi
    	${PG} ${LOCALBASE}/bin/initdb -A trust
    	${PG} ${LOCALBASE}/bin/pg_ctl -w start
    	${PG} ${LOCALBASE}/bin/createuser -SDRli test
    	${PG} ${LOCALBASE}/bin/createdb -O test test
    
    do-test:
    	cd ${WRKDIST} && \
    	${PG} JAVA_HOME=${JAVA_HOME} CLASSPATH="${JUNIT_JAR}" ant test
    
    post-test:
    	${PG} ${LOCALBASE}/bin/pg_ctl stop -m fast
    
    .include <bsd.port.mk>