svn commit: r384024 - head/databases/dbtool
Mikhail Teterin
mi at FreeBSD.org
Tue Apr 14 20:21:25 UTC 2015
Author: mi
Date: Tue Apr 14 20:21:24 2015
New Revision: 384024
URL: https://svnweb.freebsd.org/changeset/ports/384024
Log:
Upgrade from 1.7 to 1.8. While here, please portlint and unroll some
loops in Makefile.
Modified:
head/databases/dbtool/Makefile
head/databases/dbtool/distinfo
Modified: head/databases/dbtool/Makefile
==============================================================================
--- head/databases/dbtool/Makefile Tue Apr 14 19:28:12 2015 (r384023)
+++ head/databases/dbtool/Makefile Tue Apr 14 20:21:24 2015 (r384024)
@@ -2,22 +2,21 @@
# $FreeBSD$
PORTNAME= dbtool
-PORTVERSION= 1.7
-PORTREVISION= 5
+PORTVERSION= 1.8
CATEGORIES= databases
MASTER_SITES= http://www.daemon.de/idisk/Apps/dbtool/
MAINTAINER= ports at FreeBSD.org
COMMENT= Store and retrieve data in a key/value format in a hash database
+LICENSE= GPLv2
+
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
@@ -27,6 +26,7 @@ REINPLACE_ARGS= -i ""
SH2BASH= samples/account-db/accdb
UB2PFX= samples/locate/locate samples/locate/updatedb
+EXTRACT_AFTER_ARGS+= --no-same-permissions --no-same-owner --exclude '*~'
.include <bsd.port.options.mk>
@@ -41,23 +41,15 @@ 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
+ ${REINPLACE_CMD} -e "s,stdin,input,g" ${WRKSRC}/dbtool.cc ${WRKSRC}/engine.cc ${WRKSRC}/engine.h
.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
+ ${REINPLACE_CMD} -e "s|/bin/sh|${LOCALBASE}/bin/bash|" ${SH2BASH:S|^|${WRKSRC}/|}
+ ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${UB2PFX:S|^|${WRKSRC}/|}
+ ${RM} ${UB2PFX:C|.*|${WRKSRC}/&.orig|}
post-install:
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- ${CP} -Rp ${WRKSRC}/samples/* ${STAGEDIR}${EXAMPLESDIR}
+ #@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+ cd ${WRKSRC}/samples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
+.endif
.include <bsd.port.mk>
Modified: head/databases/dbtool/distinfo
==============================================================================
--- head/databases/dbtool/distinfo Tue Apr 14 19:28:12 2015 (r384023)
+++ head/databases/dbtool/distinfo Tue Apr 14 20:21:24 2015 (r384024)
@@ -1,2 +1,2 @@
-SHA256 (dbtool-1.7.tar.gz) = 90e813b57f4d5f3714c3c54c95982b3fc9c1f6b011cade19e101045eb3f1e7a9
-SIZE (dbtool-1.7.tar.gz) = 124794
+SHA256 (dbtool-1.8.tar.gz) = a66e1150cce006daecedd9a592efe75fa19c642addad97ec117f1a2219c4f079
+SIZE (dbtool-1.8.tar.gz) = 133262
More information about the svn-ports-head
mailing list