pkgsrc/databases/unixodbc/Makefile.common
xtraeme 843e6bde82 Update unixodbc-* packages to 2.2.11 (latest stable version).
See http://www.unixodbc.org/ for the list of changes... sorry but
this package was not updated in 5 years, the list might be very large!
2006-01-23 20:50:47 +00:00

63 lines
1.9 KiB
Makefile

# $NetBSD: Makefile.common,v 1.20 2006/01/23 20:50:47 xtraeme Exp $
DISTNAME= unixODBC-${ODBC_DIST_VERS}
CATEGORIES= databases
MASTER_SITES= http://www.unixodbc.org/
MAINTAINER?= tech-pkg@NetBSD.org
HOMEPAGE?= http://www.unixodbc.org/
# Version numbering scheme:
#
# ODBC_DIST_VERS version number on the php distfile
# ODBC_BASE_VERS pkgsrc-mangled version number (convert pl -> .)
#
ODBC_DIST_VERS= 2.2.11
ODBC_BASE_VERS= ${ODBC_DIST_VERS}
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
CONFIGURE_ARGS+= --enable-threads
PTHREAD_OPTS+= require
# Override the local definitions that point to the self-contained libtool
# convenience library. We want the one installed by pkgsrc. Also override
# the variable pointing to the (static) libfl.a, which won't link with a
# shared library. The sources define all the relevant symbols (yywrap), so
# libfl.a isn't needed.
#
MAKE_FLAGS+= LEXLIB=""
MAKE_ENV+= AM_MAKEFLAGS=${MAKE_FLAGS:Q}
UNIXODBC_DRIVERS_DIR= lib/unixodbc
post-patch: fix-ltdl-and-lexlib
fix-driver-installation:
cd ${WRKSRC}; \
files=`${FIND} ODBCConfig DRVConfig Drivers -name Makefile.in -print`;\
for file in $${files}; do \
${SED} -e "s|^\(libdir =\).*|\1 ${PREFIX}/${UNIXODBC_DRIVERS_DIR}|g" \
$${file} >> $${file}.fixed; \
${MV} -f $${file}.fixed $${file}; \
done
fix-ltdl-and-lexlib:
cd ${WRKSRC}; \
files=`${FIND} . -name Makefile.in -print`; \
for file in $${files}; do \
${SED} -e "/DEPENDENCIES/s|\$$(LIBLTDL)||g" \
-e "/LIBADD/s|@LEXLIB@|\$$(LEXLIB)|g" \
$${file} >> $${file}.fixed; \
${MV} -f $${file}.fixed $${file}; \
done
.include "../../devel/libltdl/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "pth")
CONFIGURE_ARGS+= --enable-gnuthreads
CONFIGURE_ARGS+= --with-pth=${PTHREADBASE:Q}
.endif