databases/cego: 2.29.1 -> 2.29.3 Changes to lfcbase: - Fix in Chain for truncleft, truncRight and cutTrailing. In case of single character strings, the methods might return wrong results. - Started with implementation of TextIndex class ( utility class for full text index creation ) Changes to cego: - Fixes for table and query cache handling - Fix in CegoDistManager::dropDistObject, table and query cache have been checked for cleanup, if a table is dropped - Fix in CegoQuery.cc, added table and query cache cleanup for alter and rename queries - Fix in CegoClient to parse multi line statements correctly. Further multi line merge token ( \ ) has been added to merge long string or clob values. Now the following statements are possible: insert into t1 values ( 1, 'this is\ a multi line \ message \ with four lines'); - Added include of string.h in CegoAction.c ( compile error occured on Suse Linux ) Submitted by: Bjoern Lemke <lemke@lemke-it.com>
23 lines
442 B
Makefile
23 lines
442 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= lfcbase
|
|
PORTVERSION= 1.8.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.lemke-it.com/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Collection of basic c++ classes, used for databases/cego
|
|
|
|
LICENSE= GPLv3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= autoreconf libtool
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|-O3||g' ${WRKSRC}/src/Makefile.in
|
|
|
|
post-stage:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblfcbase.so.2
|
|
|
|
.include <bsd.port.mk>
|