076a151bf4
PR: 60007 Submitted by: Ports Fury
58 lines
1.4 KiB
Makefile
58 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.7
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.unixodbc.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ODBC library suite for Unix
|
|
|
|
LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv
|
|
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --enable-static --enable-shared \
|
|
--with-libiconv-prefix=${LOCALBASE}
|
|
INSTALLS_SHLIB= 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(WITH_PTHREAD) || defined(WITH_GUI)
|
|
CONFIGURE_ARGS+= --enable-threads=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-threads=no
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${TAR} -C ${WRKSRC}/doc --exclude '*Makefile*' -cf - . \
|
|
| ${TAR} -C ${DOCSDIR} --unlink -xf -
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|