3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
55 lines
1.2 KiB
Makefile
55 lines
1.2 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.8
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.unixodbc.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ODBC library suite for Unix
|
|
|
|
CONFLICTS= libiodbc-*
|
|
|
|
USE_GNOME= gnomehack gnometarget lthack
|
|
USE_ICONV= yes
|
|
USE_LIBTOOL_VER= 13
|
|
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-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>
|