1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/databases/myodbc/Makefile
Johann Visagie 3d461ccf39 - Update to version 2.50.39
- Add more mirrors to MASTER_SITES
- Add a knob to control whether it gets compiled with support for iODBC or
  unixODBC
- Install some (optional) docs in DOCSDIR

Approved by:	No response from maintainer for 5 days.
2001-10-09 10:33:49 +00:00

53 lines
1.5 KiB
Makefile

# New ports collection makefile for: MyODBC
# Date created: 24 Oct 2000
# Whom: ebakke@trolltech.com
#
# $FreeBSD$
#
PORTNAME= myodbc
PORTVERSION= 2.50.39
CATEGORIES= databases
MASTER_SITES= http://www.mysql.com/Downloads/MyODBC/ \
ftp://sunsite.dk/mirrors/mysql/Downloads/MyODBC/ \
ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MyODBC/
DISTNAME= MyODBC-${PORTVERSION}
MAINTAINER= ebakke@trolltech.com
LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client
USE_GMAKE= yes
USE_LIBTOOL= yes
CONFIGURE_ARGS= --with-mysql-libs=${LOCALBASE}/lib/mysql \
--with-mysql-includes=${LOCALBASE}/include/mysql
# MyODBC needs an ODBC driver manager to be installed, and it supports both
# iODBC and unixODBC. The following variable may be set at built-time to
# either "iodbc" or "unixodbc", with the former being the default:
DRIVER_MANAGER?= iodbc
.if ${DRIVER_MANAGER} == "unixodbc"
CONFIGURE_ARGS+= --with-odbc-ini=${LOCALBASE}/etc/odbc.ini
LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC
.else # assume we're using iodbc
LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc
CONFIGURE_ARGS+= --with-odbc-ini=${LOCALBASE}/etc/libiodbc/odbc.ini
.endif
# XXX untested
.if defined(STATIC)
CONFIGURE_ARGS+= --enable-shared=no \
--enable-static=yes
.endif
post-install:
.if !defined(NOPORTDOCS)
@ ${MKDIR} ${DOCSDIR}
# Install the INSTALL file as well, since it describes how to set up odbc.ini
@ ${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR}
@ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>