mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
43 lines
894 B
Makefile
43 lines
894 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= speedtables
|
|
PORTVERSION= 1.8.3
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= High-performance memory-resident database
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS= libtclx8.4.so:${PORTSDIR}/lang/tclX
|
|
|
|
OPTIONS_DEFINE= DOCS PGSQL
|
|
PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE}
|
|
PGSQL_LIB_DEPENDS= libpgtcl2.0.0.so:${PORTSDIR}/databases/postgresql94-pgtcl
|
|
|
|
PORTDOCS= *
|
|
|
|
USES= tcl
|
|
|
|
USE_AUTOTOOLS= autoconf
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= flightaware
|
|
GH_TAGNAME= v${PORTVERSION}
|
|
GH_COMMIT= 09c623c
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--exec-prefix=${PREFIX} \
|
|
--with-tcl=${TCL_LIBDIR}
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC} && ${AUTORECONF}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/ctables/docs/manual && \
|
|
${COPYTREE_SHARE} \*.html ${STAGEDIR}${DOCSDIR} && \
|
|
${COPYTREE_SHARE} \*.css ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|