d83bdd571b
This commit also tries to clean up the infrastructure a little bit. It compiled fine on 7.4, 8.2, 9.0 and 10 on redports: - Remove iodbc.org from the MASTER_SITES list, it doesn't seem to exist anymore. - Set LICENSE. - Remove USE_GMAKE, it seems to build fine with make(1). - Remove the pthreads-related hacks and seds, as they do not seem to be needed anymore, especially now that only pthreads exists. - Remove the -D_BSD_WCHAR_T_DEFINED and the patch in files/, as libiodbc itself has accounted for _BSD_WCHAR_T_DECLARED since 2003. - Act on the example code based on NOPORTEXAMPLES instead of NOPORTDOCS.
61 lines
1.4 KiB
Makefile
61 lines
1.4 KiB
Makefile
# New ports collection makefile for: libiodbc
|
|
# Date created: 24 Mar 2000
|
|
# Whom: erikhb@bgnett.no
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libiodbc
|
|
PORTVERSION= 3.52.8
|
|
CATEGORIES= databases
|
|
MASTER_SITES= SF/iodbc/iodbc/${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= An ODBC 3.x driver manager, for universal data source access
|
|
|
|
LICENSE= BSD LGPL20
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_BSD= ${WRKSRC}/LICENSE.BSD
|
|
LICENSE_FILE_LGPL20= ${WRKSRC}/LICENSE.LGPL
|
|
|
|
CONFLICTS= unixODBC-[0-9]*
|
|
|
|
USE_GNOME= gnomehack pkgconfig
|
|
USE_AUTOTOOLS= libtool
|
|
CONFIGURE_ARGS= --with-iodbc-inidir=${ETCDIR}
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= iodbc-config.1 iodbctest.1 iodbctestw.1
|
|
|
|
.if defined(WITH_GUI)
|
|
USE_GNOME+= gtk20
|
|
MAN1+= iodbcadm-gtk.1
|
|
PLIST_SUB+= GUI=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gui
|
|
PLIST_SUB+= GUI="@comment "
|
|
.endif
|
|
|
|
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} ${ETCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/etc/odbc*.ini.sample ${ETCDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in AUTHORS ChangeLog NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
.for f in Makefile.sample iodbctest.c
|
|
${INSTALL_DATA} ${WRKSRC}/samples/${f} ${EXAMPLESDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|