1233e51f94
ODBC driver. It is not in our pkg-plist and the build is broken. - Bump PORTREVISION.
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
# New ports collection makefile for: unixODBC
|
|
# Date created: May 11, 2000
|
|
# Whom: Nick Sayer <nsayer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unixODBC
|
|
PORTVERSION= 2.2.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.unixodbc.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ODBC library suite for Unix
|
|
|
|
CONFLICTS= libiodbc-*
|
|
|
|
USE_GNOME= gnomehack gnometarget
|
|
USE_ICONV= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ARGS= --enable-static --enable-shared \
|
|
--with-libiconv-prefix=${LOCALBASE}
|
|
USE_LDCONFIG= yes
|
|
|
|
.if defined(WITH_GUI)
|
|
USE_QT_VER= 3
|
|
QT_NONSTANDARD= yes
|
|
CONFIGURE_ENV= MOC="${MOC}" \
|
|
QTINC="${QT_PREFIX}/include" \
|
|
QTLIB="${QT_PREFIX}/lib" \
|
|
USER_INCLUDES="${QTCPPFLAGS}" \
|
|
USER_LDFLAGS="${QTCFGLIBS}"
|
|
CONFIGURE_ARGS+= --enable-gui
|
|
PLIST_SUB= GUI:=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gui
|
|
PLIST_SUB= GUI:="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_THREADS) || defined(WITH_GUI)
|
|
CONFIGURE_ARGS+= --enable-threads=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-threads=no
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,@MSQL_TRUE@lib_LTLIBRARIES,#@MSQL_TRUE@lib_LTLIBRARIES,' ${WRKSRC}/Drivers/MiniSQL/Makefile.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${TAR} -C ${WRKSRC}/doc --exclude '*Makefile*' -cf - . \
|
|
| ${TAR} -C ${DOCSDIR} --unlink -xf -
|
|
.if !defined(INSTALL_AS_USER)
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|