# New ports collection makefile for: libiodbc # Date created: 24 Mar 2000 # Whom: erikhb@bgnett.no # # $FreeBSD$ # # Note: The location of ${INIDIR} and the installed name of the "odbctest" # binary were chosen such that this port does not conflict with # databases/unixODBC. PORTNAME= libiodbc PORTVERSION= 3.52.2 CATEGORIES= databases MASTER_SITES= http://www.iodbc.org/downloads/iODBC/ \ ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= iodbc MAINTAINER= ports@FreeBSD.org COMMENT= An ODBC 3.x driver manager, for universal data source access CONFLICTS= unixODBC-* USE_GNOME= gnometarget USE_REINPLACE= yes USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --with-iodbc-inidir=${INIDIR} INSTALLS_SHLIB= yes MAN1= iodbc-config.1 iodbctest.1 iodbctestw.1 CPPFLAGS= ${PTHREAD_CFLAGS} -D_BSD_WCHAR_T_DEFINED_ LDFLAGS= ${PTHREAD_LIBS} INIDIR= ${PREFIX}/etc/${PORTNAME} .if !defined(WITHOUT_GUI) && !defined(WITHOUT_X11) USE_GNOME+= gtk12 MAN1+= iodbcadm-gtk.1 PLIST_SUB+= GUI="" .else CONFIGURE_ARGS+= --disable-gui PLIST_SUB+= GUI="@comment " .endif post-patch: @${REINPLACE_CMD} -e \ 's|$$CFLAGS -pthread|$$CFLAGS|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ '/^SUBDIRS/s|samples||' ${WRKSRC}/Makefile.in post-install: @${MKDIR} ${INIDIR} ${INSTALL_DATA} ${WRKSRC}/etc/odbc*.ini.sample ${INIDIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for file in AUTHORS ChangeLog NEWS README ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor @${MKDIR} ${EXAMPLESDIR} .for file in Makefile iodbctest.c ${INSTALL_DATA} ${WRKSRC}/samples/${file} ${EXAMPLESDIR} .endfor .endif .include