- fix in CegoSelect::nextJoinTuple in case of result ordering, the check for unknown order attribute has been removed. The attribute list returned with getAttrRefList may also contain attributes for nested ( or parent ) query attributes ( attr not found is returned in any case, if there is an invalid attribute reference ). check125 has been added to verify this case.
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
PORTNAME= cego
|
|
PORTVERSION= 2.53.4
|
|
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.lemke-it.com/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Relational and transactional database system
|
|
WWW= https://www.lemke-it.com/
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= liblfcbase.so:devel/lfcbase \
|
|
liblfcxml.so:devel/lfcxml
|
|
RUN_DEPENDS= bash:shells/bash
|
|
|
|
USES= libtool localbase ncurses readline shebangfix sudo
|
|
SHEBANG_FILES= tools/cgbackup tools/cgrecover tools/cgsimload \
|
|
tools/logManager tools/backupManager
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
|
|
USERS= cego
|
|
GROUPS= cego
|
|
|
|
PLIST_SUB+= USER=${USERS}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,-O3,,g' \
|
|
${WRKSRC}/src/Makefile.in \
|
|
${WRKSRC}/cgpluscheck/Makefile.in \
|
|
${WRKSRC}/cgwrapcheck/Makefile.in
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${CP} ${WRKSRC}/tools/* ${STAGEDIR}${DATADIR}
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/rc.d
|
|
${REINPLACE_CMD} -e 's/%%USER%%/${USERS}/g' ${WRKSRC}/samples/bsd-rc/cego
|
|
${CP} ${WRKSRC}/samples/bsd-rc/cego ${STAGEDIR}${PREFIX}/etc/rc.d/
|
|
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcego.so.2.0.0
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcgwrap.so.2.0.0
|
|
|
|
.include <bsd.port.mk>
|