summaryrefslogtreecommitdiff
path: root/databases/mysql-connector-odbc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mysql-connector-odbc/Makefile')
-rw-r--r--databases/mysql-connector-odbc/Makefile62
1 files changed, 0 insertions, 62 deletions
diff --git a/databases/mysql-connector-odbc/Makefile b/databases/mysql-connector-odbc/Makefile
deleted file mode 100644
index 6fb26da87cf7..000000000000
--- a/databases/mysql-connector-odbc/Makefile
+++ /dev/null
@@ -1,62 +0,0 @@
-# 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
-COMMENT= ODBC driver for MySQL
-
-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 \
- --with-unixODBC=${LOCALBASE}
-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
-
-# Allow a new value of ODBCVER to be set at build-time
-.if defined(ODBCVER)
-post-patch:
- cd ${WRKSRC}; \
- ${MV} myodbc.h myodbc.h.orig; \
- ${SED} -e "s/ODBCVER 0x0250/ODBCVER ${ODBCVER}/" < myodbc.h.orig > myodbc.h
-.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>