Always rely on unixODBC each time a port is looking for libodbc.so Remove odbc compat from libiodbc This allows to install both kde and gnome at the same time While here: - Convert libiodbc to USES=libtool - Convert a bunch of libiodbc dependencies to USES=libtool - Chase libiodbc.so shlib change - Stagify some ports - Convert some ports to USES=pgsql Discussed with: rakuco (kde) With hat: portmgr
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# Created by: erikhb@bgnett.no
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libiodbc
|
|
PORTVERSION= 3.52.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= SF/iodbc/iodbc/${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= ODBC 3.x driver manager, for universal data source access
|
|
|
|
LICENSE= BSD3CLAUSE LGPL20
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_BSD= ${WRKSRC}/LICENSE.BSD
|
|
LICENSE_FILE_LGPL20= ${WRKSRC}/LICENSE.LGPL
|
|
|
|
USES= libtool pathfix pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-iodbc-inidir=${ETCDIR} \
|
|
--includedir=${LOCALBASE}/include/libiodbc \
|
|
--disable-libodbc
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= GTK2 DOCS EXAMPLES
|
|
OPTIONS_SUB= yes
|
|
|
|
GTK2_USE= GNOME=gtk20
|
|
GTK2_CONFIGURE_ENABLE= gui
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/^SUBDIRS/s|samples||' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|-ldl||g' ${WRKSRC}/admin/libiodbc.pc.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}/${ETCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/etc/odbc*.ini.sample ${STAGEDIR}/${ETCDIR}
|
|
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
.for f in AUTHORS ChangeLog NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${DOCSDIR}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
|
|
.for f in Makefile.sample iodbctest.c
|
|
${INSTALL_DATA} ${WRKSRC}/samples/${f} ${STAGEDIR}/${EXAMPLESDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|