9794f1dd17
Approved by: portmgr (blanket)
36 lines
833 B
Makefile
36 lines
833 B
Makefile
# Created by: Nick Sayer <nsayer@FreeBSD.org>
|
|
|
|
PORTNAME= unixODBC
|
|
PORTVERSION= 2.3.9
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.unixodbc.org/ \
|
|
ftp://ftp.unixodbc.org/pub/unixODBC/
|
|
|
|
MAINTAINER= brnrd@FreeBSD.org
|
|
COMMENT= ODBC library suite for Unix
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_header_msql_h=no
|
|
CONFIGURE_ARGS= --enable-static --enable-shared \
|
|
${ICONV_CONFIGURE_ARG}
|
|
INSTALL_TARGET= install-strip
|
|
# :keepla because port uses lt_dlopen
|
|
USES= cpe iconv libtool:keepla
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|\.ini$$|.ini.sample|' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \
|
|
"-not -name 'Makefile*'"
|
|
|
|
.include <bsd.port.mk>
|