Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.
To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.
To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.
Changes to Mk/*:
- Add runtime detection magic in bsd.port.mk
- Remove CONFIGURE_TARGET hack in various bsd.*.mk
- USE_GNOME=gnometarget is now an no-op
Changes to individual ports, other than removing the CONFIGURE_TARGET hack:
= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
- comms/gnuradio
- science/abinit
- science/elmer-fem
- science/elmer-matc
- science/elmer-meshgen2d
- science/elmerfront
- science/elmerpost
= use x86_64 as ARCH
- devel/g-wrap
= other changes
- print/magicfilter
GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf
Total # of ports modified: 1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)
PR: 126524 (obsoletes 52917)
Submitted by: rafan
Tested on: two pointyhat 7-amd64 exp runs (by pav)
Approved by: portmgr (pav)
157 lines
4.4 KiB
Makefile
157 lines
4.4 KiB
Makefile
# New ports collection makefile for: hk_classes
|
|
# Date created: 25 July 2002
|
|
# Whom: arved
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hk_classes
|
|
PORTVERSION= 0.8.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= hk-classes
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ Library for rapid development of database applications
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone
|
|
LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig
|
|
|
|
USE_BZIP2= yes
|
|
USE_ICONV= yes
|
|
USE_PYTHON= yes
|
|
USE_GNOME= pkgconfig
|
|
USE_GETTEXT= yes
|
|
CXXFLAGS+= ${PTHREAD_CFLAGS}
|
|
LDFLAGS= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -largp -lintl
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ENV+= PYTHON_VERSION=${PYTHON_VERSION:S/python//} LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS+=--with-python-libdir=${PYTHON_LIBDIR} \
|
|
--with-python-incdir=${PYTHON_INCLUDEDIR} \
|
|
--with-fontconfig-incdir=${LOCALBASE}/include/fontconfig \
|
|
--with-fontconfig-libdir=${LOCALBASE}/lib
|
|
USE_LDCONFIG= ${PREFIX}/lib/hk_classes/
|
|
|
|
INSTALLS_EGGINFO= yes
|
|
PYDISTUTILS_PKGVERSION= 1.1
|
|
|
|
NOT_FOR_ARCHS= ia64
|
|
NOT_FOR_ARCHS_REASON_ia64= Does not build
|
|
|
|
OPTIONS= MYSQL "Build MySQL driver" on \
|
|
POSTGRESQL "Build PostrgreSQL driver" off \
|
|
ODBC "Build unixODBC driver" off \
|
|
FIREBIRD "Build Firebird driver" off \
|
|
PARADOX "Build Paradox driver" off \
|
|
SQLITE2 "Build with sqlite2 driver" off \
|
|
SQLITE3 "Build with sqlite3 driver" off
|
|
|
|
MAN1= hk_report.1man hk_actionquery.1man hk_exportxml.1man \
|
|
hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man \
|
|
hk_dbcopy.1man
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_MYSQL)
|
|
USE_MYSQL= yes
|
|
CONFIGURE_ARGS+= --with-mysql-dir=${LOCALBASE} \
|
|
--with-mysql-incdir=${LOCALBASE}/include/mysql \
|
|
--with-mysql-libdir=${LOCALBASE}/lib/mysql
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql"
|
|
PLIST_SUB+= MYSQL=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-mysql
|
|
PLIST_SUB+= MYSQL="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_POSTGRESQL)
|
|
USE_PGSQL= yes
|
|
CONFIGURE_ARGS+= --with-postgres-incdir=${LOCALBASE}/include/ \
|
|
--with-postgres-libdir=${LOCALBASE}/lib
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"
|
|
PLIST_SUB+= POSTGRESQL=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-postgres
|
|
PLIST_SUB+= POSTGRESQL="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_ODBC)
|
|
LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC
|
|
CONFIGURE_ARGS+= --with-odbc-incdir=${LOCALBASE}/include/\
|
|
--with-odbc-libdir=${LOCALBASE}/lib
|
|
PLIST_SUB+= ODBC=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-odbc
|
|
PLIST_SUB+= ODBC="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_FIREBIRD)
|
|
LIB_DEPENDS+= gds:${PORTSDIR}/databases/firebird-client
|
|
CONFIGURE_ARGS+= --with-firebird-incdir=${LOCALBASE}/include/\
|
|
--with-firebird-libdir=${LOCALBASE}/lib
|
|
PLIST_SUB+= FIREBIRD=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-firebird
|
|
PLIST_SUB+= FIREBIRD="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_PARADOX)
|
|
LIB_DEPENDS+= px:${PORTSDIR}/databases/pxlib
|
|
CONFIGURE_ARGS+= --with-paradox-incdir=${LOCALBASE}/include/\
|
|
--with-paradox-libdir=${LOCALBASE}/lib
|
|
PLIST_SUB+= PARADOX=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-paradox
|
|
PLIST_SUB+= PARADOX="@comment "
|
|
.endif
|
|
|
|
# XXX does not work yet
|
|
.if defined(WITH_MSACCESS)
|
|
LIB_DEPENDS+= mdb:${PORTSDIR}/databases/mdbtools
|
|
CONFIGURE_ARGS+= --with-mdb-incdir=${LOCALBASE}/include/\
|
|
--with-mdb-libdir=${LOCALBASE}/lib
|
|
PLIST_SUB+= MSACCESS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-mdb
|
|
PLIST_SUB+= MSACCESS="@comment "
|
|
.endif
|
|
|
|
# XXX does not work yet
|
|
.if defined(WITH_DBASE)
|
|
LIB_DEPENDS+= xbase:${PORTSDIR}/databases/xbase
|
|
CONFIGURE_ARGS+= --with-xbase-incdir=${LOCALBASE}/include/xbase \
|
|
--with-xbase-libdir=${LOCALBASE}/lib
|
|
PLIST_SUB+= DBASE=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-xbase
|
|
PLIST_SUB+= DBASE="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_SQLITE2)
|
|
LIB_DEPENDS+= sqlite.2:${PORTSDIR}/databases/sqlite2
|
|
CONFIGURE_ARGS+= --with-sqlite-incdir=${LOCALBASE}/include/\
|
|
--with-sqlite-libdir=${LOCALBASE}/lib
|
|
PLIST_SUB+= SQLITE2=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-sqlite
|
|
PLIST_SUB+= SQLITE2="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_SQLITE3)
|
|
LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3
|
|
CONFIGURE_ARGS+= --with-sqlite-incdir3=${LOCALBASE}/include/\
|
|
--with-sqlite-libdir3=${LOCALBASE}/lib
|
|
PLIST_SUB+= SQLITE3=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-sqlite3
|
|
PLIST_SUB+= SQLITE3="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
@${SED} -e 's#%%PREFIX%%#${PREFIX}#' ${FILESDIR}/hk_classes.sh > \
|
|
${PREFIX}/etc/rc.d/hk_classes.sh; \
|
|
${CHMOD} a+x ${PREFIX}/etc/rc.d/hk_classes.sh
|
|
|
|
.include <bsd.port.post.mk>
|