mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
8413e27507
PR: ports/186126 Submitted by: maintainer
41 lines
811 B
Makefile
41 lines
811 B
Makefile
# Created by: Kurt Jaeger <fbsd-ports@opsec.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cego
|
|
PORTVERSION= 2.20.1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.lemke-it.com/
|
|
|
|
MAINTAINER= fbsd-ports@opsec.eu
|
|
COMMENT= Relational and transactional database system
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= liblfcbase.so:${PORTSDIR}/devel/lfcbase \
|
|
liblfcxml.so:${PORTSDIR}/devel/lfcxml
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_RC_SUBR= cego
|
|
|
|
USES= ncurses readline
|
|
|
|
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}
|
|
|
|
.include <bsd.port.mk>
|