mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
741aa71483
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)
115 lines
3.4 KiB
Makefile
115 lines
3.4 KiB
Makefile
# New ports collection makefile for: sqlite3
|
|
# Date created: Feb 21, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sqlite34
|
|
PORTVERSION= 3.4.2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= mnag/${PORTNAME}
|
|
DISTNAME= sqlite-${PORTVERSION}
|
|
|
|
MAINTAINER= mnag@FreeBSD.org
|
|
COMMENT= An SQL database engine in a C library w/ Tcl wrapper
|
|
|
|
CONFLICTS= sqlite3-[0-9]*
|
|
|
|
USE_GMAKE= YES
|
|
USE_GNOME= pkgconfig
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_DOS2UNIX= *.pc.in
|
|
USE_LDCONFIG= YES
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --with-hints=freebsd.hints
|
|
|
|
OPTIONS= DEBUG "Enable debugging & verbose explain" off \
|
|
DOCS "Building docs (depends on TCL)" on \
|
|
FTS1 "Enable FTS1 (Full Text Search) module" off \
|
|
FTS2 "Enable FTS2 (Full Text Search) module" off \
|
|
TCLWRAPPER "TCL wrapper for SQLITE" off \
|
|
THREADS "Enable threads support" off
|
|
|
|
# Defaults, for building the docs:
|
|
TCL_V?= 8.4
|
|
MAKE_ARGS+= TCLSH=tclsh${TCL_V}
|
|
MAKE_ENV+= TCL_VER=${TCL_V}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
|
|
BUILD_DEPENDS+= tclsh${TCL_V}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
|
ALL_TARGET+= all doc
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
.if defined(WITH_FTS1) && defined(WITH_FTS2)
|
|
CFLAGS+= -DSQLITE_CORE -DSQLITE_ENABLE_FTS1 -DSQLITE_ENABLE_FTS2
|
|
EXTRA_PATCHES+= ${FILESDIR}/fts12_patch-Makefile.in
|
|
.elif defined(WITH_FTS1) && !defined(WITH_FTS2)
|
|
CFLAGS+= -DSQLITE_CORE -DSQLITE_ENABLE_FTS1
|
|
EXTRA_PATCHES+= ${FILESDIR}/fts1_patch-Makefile.in
|
|
.elif defined(WITH_FTS2) && !defined(WITH_FTS1)
|
|
CFLAGS+= -DSQLITE_CORE -DSQLITE_ENABLE_FTS2
|
|
EXTRA_PATCHES+= ${FILESDIR}/fts2_patch-Makefile.in
|
|
.endif
|
|
|
|
.if defined(WITH_TCLWRAPPER)
|
|
CATEGORIES+= lang tcl
|
|
LIB_DEPENDS+= tcl${TCL_V:S/.//}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
|
CONFIGURE_ARGS+= --with-tcl=${LOCALBASE}/lib/tcl${TCL_V}
|
|
PLIST_SUB+= WITH_TCLWRAPPER=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-tcl
|
|
PLIST_SUB+= WITH_TCLWRAPPER="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_THREADS)
|
|
CONFIGURE_ARGS+= --enable-threadsafe --enable-threads-override-locks
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e "s|^(TLIBS.*)|\1 -lm|g" \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e "s|tclsh \$$(TOP)|\$$(TCLSH) \$$(TOP)|g" \
|
|
-e "s|./libtool|${LIBTOOL}|g" \
|
|
-e "s|--mode=link|--mode=link --tag=CC|g" \
|
|
-e "s|\$${HAVE_TCL:1=tcl_install}||" \
|
|
${WRKSRC}/Makefile.in
|
|
@${ECHO} "config_TARGET_TCL_INC=\"-I${PREFIX}/include/tcl${TCL_V}\"" \
|
|
> ${WRKSRC}/freebsd.hints
|
|
@${ECHO} "config_TARGET_TCL_LIBS=\"-L${PREFIX}/lib -ltcl${TCL_V:S/.//}\"" \
|
|
>> ${WRKSRC}/freebsd.hints
|
|
|
|
pre-configure:
|
|
.if defined(WITH_THREADS)
|
|
@${REINPLACE_CMD} -e "s|-lpthread|${PTHREAD_LIBS}|g" \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -E -e "s|(Libs:.*)|\1 ${PTHREAD_LIBS}|" \
|
|
-e "s|(Cflags:.*)|\1 ${PTHREAD_CFLAGS}|" \
|
|
${WRKSRC}/sqlite.pc.in ${WRKSRC}/sqlite3.pc.in
|
|
.endif
|
|
|
|
post-install:
|
|
.if defined(WITH_TCLWRAPPER)
|
|
@${MKDIR} ${PREFIX}/lib/sqlite
|
|
@(cd ${WRKSRC} && ${LIBTOOL} --mode=install ${INSTALL_DATA} \
|
|
libtclsqlite3.la ${PREFIX}/lib/sqlite/)
|
|
@${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/sqlite/
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/.libs/tclsqlite3 ${PREFIX}/bin
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${FILESDIR}/example.tcl ${EXAMPLESDIR}
|
|
.endif
|
|
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|