mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
105 lines
4.3 KiB
Tcl
105 lines
4.3 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
|
|
name freetds
|
|
epoch 1
|
|
version 1.5.17
|
|
revision 0
|
|
checksums rmd160 32f10830c5462c20c7eb97a98457887474c2c8c6 \
|
|
sha256 6dee48026b7e3e2393d3ea3ce18f8f81a74d6a0f300e9951981ed7bf4de6bbc3 \
|
|
size 3915089
|
|
|
|
categories databases
|
|
maintainers {ryandesign @ryandesign} openmaintainer
|
|
# libs are LGPL, tdspool executable is GPL
|
|
license {GPL-2+ LGPL}
|
|
|
|
description A set of libraries for Unix and Linux that allows your programs to natively \
|
|
talk to Microsoft SQL Server and Sybase databases
|
|
|
|
long_description FreeTDS is an open source implementation of the TDS (Tabular DataStream) \
|
|
protocol used by these databases for their own clients. It supports many \
|
|
different flavors of the protocol and supports several APIs to access it. \
|
|
Additionally FreeTDS works with other software such as Perl and PHP, \
|
|
providing access from those languages as well. There is also a native (type 4) \
|
|
JDBC driver available for platform-independent Java clients (including Java \
|
|
Server Pages applications), with support for most of the JDBC 1 API and \
|
|
portions of the JDBC 2 API.
|
|
|
|
homepage https://www.freetds.org
|
|
master_sites ftp://ftp.freetds.org/pub/${name}/stable/
|
|
use_bzip2 yes
|
|
|
|
depends_build path:bin/pkg-config:pkgconfig
|
|
|
|
# Use gnutls to avoid openssl license conflict.
|
|
depends_lib path:lib/pkgconfig/gnutls.pc:gnutls \
|
|
port:kerberos5 \
|
|
port:libiconv \
|
|
port:ncurses \
|
|
port:readline
|
|
|
|
# error: use of unknown builtin '__builtin_bswap16' [-Wimplicit-function-declaration]
|
|
compiler.blacklist {clang < 500}
|
|
|
|
# Fix conflicting intptr_t definitions
|
|
# https://trac.macports.org/ticket/63394
|
|
compiler.c_standard 1999
|
|
configure.cflags-append -std=c99
|
|
|
|
# https://trac.macports.org/wiki/WimplicitFunctionDeclaration#strchr
|
|
configure.checks.implicit_function_declaration.whitelist-append strchr
|
|
|
|
configure.args --disable-odbc \
|
|
--disable-silent-rules \
|
|
--enable-krb5 \
|
|
--includedir=${prefix}/include/${name} \
|
|
--sysconfdir=${prefix}/etc/${name} \
|
|
--with-gnutls \
|
|
--with-libiconv-prefix=${prefix} \
|
|
ac_cv_prog_DOXYGEN=
|
|
|
|
use_parallel_build yes
|
|
|
|
# The test suite cannot be run without a configured database.
|
|
# https://github.com/FreeTDS/freetds/issues/542
|
|
# https://www.freetds.org/userguide/ConfirmInstall.html#Tests
|
|
test.run no
|
|
test.target check
|
|
|
|
post-destroot {
|
|
# rename the freetds conf files so we don't clobber any existing ones
|
|
foreach file [list "freetds.conf" "locales.conf" "pool.conf"] {
|
|
move ${destroot}${prefix}/etc/freetds/${file} ${destroot}${prefix}/etc/freetds/${file}.sample
|
|
}
|
|
}
|
|
|
|
post-activate {
|
|
# copy over freetds sample files if none exists
|
|
foreach file [list "freetds.conf" "locales.conf" "pool.conf"] {
|
|
if {![file exists ${prefix}/etc/freetds/${file}]} {
|
|
ui_msg "Configuration file ${file} does not exist and has been created using"
|
|
ui_msg " ${prefix}/etc/freetds/${file}.sample"
|
|
file copy ${prefix}/etc/freetds/${file}.sample ${prefix}/etc/freetds/${file}
|
|
} else {
|
|
ui_msg "Configuration file ${file} exists and has been retained."
|
|
ui_msg "(The distribution's version has been installed to ${prefix}/etc/freetds/${file}.sample)"
|
|
}
|
|
}
|
|
}
|
|
|
|
variant mssql description {Use MS style dblib} {
|
|
configure.args-append --enable-msdblib --with-tdsver=7.4
|
|
}
|
|
|
|
variant odbc conflicts iodbc description {Build ODBC driver against unixODBC} {
|
|
depends_lib-append port:unixODBC
|
|
configure.args-replace --disable-odbc --with-unixodbc=${prefix}
|
|
}
|
|
|
|
variant iodbc conflicts odbc description {Build ODBC driver against iODBC} {
|
|
depends_lib-append port:libiodbc
|
|
configure.args-replace --disable-odbc --with-iodbc=${prefix}
|
|
}
|