mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
1bf8aa3914
Apparently Tools/scripts/bump-revision.sh isn't too robust... PR: 192690
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dbtool
|
|
PORTVERSION= 1.7
|
|
PORTREVISION= 5
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.daemon.de/idisk/Apps/dbtool/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Store and retrieve data in a key/value format in a hash database
|
|
|
|
LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
|
|
|
|
OPTIONS_DEFINE= BDB EXAMPLES
|
|
|
|
EXAMPLES_RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= ${CXXFLAGS} -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
USES= gmake
|
|
REINPLACE_ARGS= -i ""
|
|
|
|
SH2BASH= samples/account-db/accdb
|
|
UB2PFX= samples/locate/locate samples/locate/updatedb
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MBDB}
|
|
USE_BDB= 48+
|
|
CPPFLAGS+= -I${BDB_INCLUDE_DIR}
|
|
LIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME}
|
|
CONFIGURE_ARGS+= --with-berkeley
|
|
.else
|
|
LIB_DEPENDS+= libgdbm.so:${PORTSDIR}/databases/gdbm
|
|
CONFIGURE_ARGS+= --without-berkeley
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,==,=,g' ${WRKSRC}/configure
|
|
.for file in dbtool.cc engine.cc engine.h
|
|
${REINPLACE_CMD} -e "s,stdin,input,g" ${WRKSRC}/${file}
|
|
.endfor
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
.for file in ${SH2BASH}
|
|
${REINPLACE_CMD} -e "s|/bin/sh|${LOCALBASE}/bin/bash|" ${WRKSRC}/${file}
|
|
.endfor
|
|
.for file in ${UB2PFX}
|
|
${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/${file}
|
|
@${RM} ${WRKSRC}/${file}.orig
|
|
@${RM} ${WRKSRC}/${file}~
|
|
.endfor
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${CP} -Rp ${WRKSRC}/samples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|