mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
add dbconnect
Use C++ object API to allow applications to connect to databases
This commit is contained in:
parent
214bb42676
commit
06827c4fb0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45385
6 changed files with 47 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
SUBDIR += cdb
|
||||
SUBDIR += db
|
||||
SUBDIR += db3
|
||||
SUBDIR += dbconnect
|
||||
SUBDIR += dbf2mysql
|
||||
SUBDIR += dbmetrix
|
||||
SUBDIR += dbtool
|
||||
|
|
28
databases/dbconnect/Makefile
Normal file
28
databases/dbconnect/Makefile
Normal file
|
@ -0,0 +1,28 @@
|
|||
# ex:ts=8
|
||||
# New ports collection makefile for: dbconnect
|
||||
# Date created: Jul 23, 2001
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= dbconnect
|
||||
PORTVERSION= 0.2.0
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.if defined(WITH_MYSQL)
|
||||
LIB_DEPENDS= mysqlclient:${PORTSDIR}/databases/mysql323-client
|
||||
CONFIGURE_ARGS+= --with-mysql=yes --with-mysqldir=${LOCALBASE}
|
||||
PLIST_SUB+= MYSQL=""
|
||||
.else
|
||||
PLIST_SUB+= MYSQL="@comment "
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
databases/dbconnect/distinfo
Normal file
1
databases/dbconnect/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (dbconnect-0.2.0.tar.gz) = c782a100ae10aeb7de16970986db66c8
|
1
databases/dbconnect/pkg-comment
Normal file
1
databases/dbconnect/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Use C++ object API to allow applications to connect to databases
|
8
databases/dbconnect/pkg-descr
Normal file
8
databases/dbconnect/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
DBConnect (Database Connect) API is an easy to use C++ object API to allow
|
||||
applications to connect to databases. Your DB applications can now become
|
||||
cross platform and cross databased.
|
||||
|
||||
The API currently implements MySQL, Oracle8 and PostGreSQL drivers in the
|
||||
Unix environments and MySQL, Oracle8 and ODBC in the Windows environment.
|
||||
|
||||
WWW: http://dbconnect.sourceforge.net/
|
8
databases/dbconnect/pkg-plist
Normal file
8
databases/dbconnect/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
include/dbconn.h
|
||||
include/dbconnect_basedriver.h
|
||||
lib/libdbconn.a
|
||||
lib/libdyndbconn.so
|
||||
%%MYSQL%%include/dbconnect_MYSQL.h
|
||||
%%MYSQL%%include/mysql.h
|
||||
%%MYSQL%%include/mysql_com.h
|
||||
%%MYSQL%%include/mysql_version.h
|
Loading…
Add table
Reference in a new issue