databases/cego: update 2.33.5 -> 2.33.6 lfcbase: - Small correction in OutStream, include required by FreeBSD ( for definition of WEXISTATUS ) - Added method getErrorCode to OutStream class - Cleanup of OutStream implementation ( removed some includes, removed ifdef for MINGW) cego: - Small improvements for utility scripts cgmkdb, logManager and backupManager Submitted by: Bjoern Lemke <lemke@lemke-it.com>
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cego
|
|
PORTVERSION= 2.33.6
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.lemke-it.com/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Relational and transactional database system
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= liblfcbase.so:devel/lfcbase \
|
|
liblfcxml.so:devel/lfcxml
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/sudo:security/sudo \
|
|
bash:shells/bash
|
|
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
USES= libtool localbase ncurses readline shebangfix
|
|
SHEBANG_FILES= tools/cgbackup tools/cgrecover tools/cgsimload
|
|
|
|
USERS= cego
|
|
GROUPS= cego
|
|
|
|
PLIST_SUB+= USER=${USERS}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,-O3,,g' \
|
|
${WRKSRC}/src/Makefile.in \
|
|
${WRKSRC}/samples/cgplustest/Makefile.in \
|
|
${WRKSRC}/samples/cgwraptest/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/rc/cego
|
|
${CP} ${WRKSRC}/samples/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>
|