forked from Lainports/freebsd-ports
cegobridge is a tool to import/export database dumps into Cego, a Relational Database Management System (RDBMS). Currently it supports MySQL, other database systems to import/export can be added. Many more details are available at: WWW: http://www.lemke-it.com/ Submitted by: Björn Lemke <lemke@lemke-it.com>
22 lines
504 B
Makefile
22 lines
504 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cegobridge
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.lemke-it.com/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Imports non-cego database dump files into cego
|
|
|
|
LIB_DEPENDS= liblfcbase.so:${PORTSDIR}/devel/lfcbase \
|
|
liblfcxml.so:${PORTSDIR}/devel/lfcxml \
|
|
libcego.so:${PORTSDIR}/databases/cego
|
|
|
|
LICENSE= GPLv3
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
PLIST_FILES= bin/cegobridge
|
|
|
|
.include <bsd.port.mk>
|