5bd7678cd2
from gleydson soares
38 lines
870 B
Makefile
38 lines
870 B
Makefile
# $OpenBSD: Makefile,v 1.7 2011/03/19 09:18:37 jasper Exp $
|
|
|
|
COMMENT= ODBC driver for PostgreSQL
|
|
VERSION= 08.03.0400
|
|
PKGNAME= postgresql-odbc-${VERSION}
|
|
DISTNAME= psqlodbc-${VERSION}
|
|
CATEGORIES= databases
|
|
|
|
HOMEPAGE= http://pgfoundry.org/projects/psqlodbc/
|
|
|
|
MAINTAINER= Paul Irofti <pirofti@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp9.us.postgresql.org/pub/mirrors/postgresql/odbc/versions/src/
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
LIB_DEPENDS = databases/postgresql>=8.3 \
|
|
databases/iodbc
|
|
|
|
WANTLIB = pq iodbc iodbcinst pthread
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.60
|
|
CONFIGURE_ARGS+= --with-iodbc --without-unixodbc --enable-pthreads
|
|
COPTS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|