1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/databases/pxlib/Makefile
Rong-En Fan 741aa71483 Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
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)
2008-08-21 06:18:49 +00:00

62 lines
2.2 KiB
Makefile

# New ports collection makefile for: pxlib
# Date created: 10 December 2005
# Whom: Sergey Matveychuk <sem@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pxlib
PORTVERSION= 0.6.3
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= sem@FreeBSD.org
COMMENT= C library to read various Paradox files
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
USE_ICONV= yes
USE_GETTEXT= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib
USE_LDCONFIG= yes
LDCONFIG_DIRS= %%PREFIX%%/lib
OPTIONS= DOCS "Build and install documentation" off
.include <bsd.port.pre.mk>
.if defined(WITH_DOCS)
BUILD_DEPENDS+= docbook-to-man:${PORTSDIR}/textproc/docbook-to-man \
docbook2man:${PORTSDIR}/textproc/docbook-utils
MAN3= PX_add_primary_index.3 PX_close.3 PX_close_blob.3 PX_create_blob_file.3 \
PX_create_file.3 PX_create_fp.3 PX_date2string.3 PX_delete.3 \
PX_delete_record.3 PX_get_data_alpha.3 PX_get_data_bcd.3 \
PX_get_data_blob.3 PX_get_data_byte.3 PX_get_data_bytes.3 \
PX_get_data_double.3 PX_get_data_graphic.3 PX_get_data_long.3 \
PX_get_data_short.3 PX_get_field.3 PX_get_fields.3 PX_get_majorversion.3 \
PX_get_minorversion.3 PX_get_num_fields.3 PX_get_num_records.3 \
PX_get_opaque.3 PX_get_parameter.3 PX_get_record.3 PX_get_record2.3 \
PX_get_recordsize.3 PX_get_subminorversion.3 PX_get_value.3 \
PX_insert_record.3 PX_new.3 PX_new2.3 PX_new3.3 PX_new_blob.3 \
PX_open_blob_file.3 PX_open_blob_fp.3 PX_open_file.3 PX_open_fp.3 \
PX_open_gsf.3 PX_put_data_alpha.3 PX_put_data_bcd.3 PX_put_data_byte.3 \
PX_put_data_bytes.3 PX_put_data_double.3 PX_put_data_long.3 \
PX_put_data_short.3 PX_put_record.3 PX_put_recordn.3 PX_read_blobdata.3 \
PX_read_primary_index.3 PX_retrieve_record.3 PX_set_blob_file.3 \
PX_set_inputencoding.3 PX_set_parameter.3 PX_set_tablename.3 \
PX_set_targetencoding.3 PX_set_value.3 PX_strdup.3 PX_time2string.3 \
PX_timestamp2string.3 PX_update_record.3 PX_write_primary_index.3 pxlib.3
.else
pre-build:
${REINPLACE_CMD} -e 's/^DOCDIR =.*/DOCDIR =/' ${WRKSRC}/Makefile
.endif
.include <bsd.port.post.mk>