diff options
author | jwise <jwise@pkgsrc.org> | 2001-04-06 21:59:59 +0000 |
---|---|---|
committer | jwise <jwise@pkgsrc.org> | 2001-04-06 21:59:59 +0000 |
commit | df0d820956e6fc0eccc5e38edf27e9a86ccfee31 (patch) | |
tree | d1c8df05228f73b8db77c75689cd272c2de76bac /databases/odbc-postgresql/Makefile | |
parent | f97b6f0be9611002b37cce90645901533c4aba6e (diff) | |
download | pkgsrc-df0d820956e6fc0eccc5e38edf27e9a86ccfee31.tar.gz |
Initial import of odbc-postgresql, the PostgreSQL 7 ODBC support.
Diffstat (limited to 'databases/odbc-postgresql/Makefile')
-rw-r--r-- | databases/odbc-postgresql/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/databases/odbc-postgresql/Makefile b/databases/odbc-postgresql/Makefile new file mode 100644 index 00000000000..504108e4e8b --- /dev/null +++ b/databases/odbc-postgresql/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/04/06 21:59:59 jwise Exp $ + +.include "../../databases/postgresql/Makefile.common" + +PKGNAME= odbc-${DISTNAME} + +COMMENT= ODBC interface to PostgreSQL + +DEPENDS+= postgresql-${PG_VERS}:../../databases/postgresql + +MAKE_ENV+= INSTALLED_LIBPQ=1 + +CONFIGURE_ARGS+= --without-perl --without-tcl +CONFIGURE_ARGS+= --with-odbc --with-odbcinst=/etc + +DIRS_TO_BUILD= interfaces/odbc + +do-build: +.for DIR in ${DIRS_TO_BUILD} + cd ${WRKSRC}/${DIR} && ${SETENV} ${MAKE_ENV} \ + ${MAKE_PROGRAM} ${MAKE_FLAGS} ${ALL_TARGET} +.endfor + +do-install: +.for DIR in ${DIRS_TO_BUILD} + cd ${WRKSRC}/${DIR} && ${SETENV} ${MAKE_ENV} \ + ${MAKE_PROGRAM} ${MAKE_FLAGS} ${INSTALL_TARGET} +.endfor + +.include "../../mk/bsd.pkg.mk" |