cppdb: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2013-10-15 13:33:24 -03:00 committed by Peter Korsgaard
parent ec2c83234c
commit 0c14b6c9a6
3 changed files with 36 additions and 0 deletions

View file

@ -472,6 +472,7 @@ endmenu
menu "Database"
source "package/berkeleydb/Config.in"
source "package/cppdb/Config.in"
source "package/gdbm/Config.in"
source "package/mysql_client/Config.in"
source "package/redis/Config.in"

15
package/cppdb/Config.in Normal file
View file

@ -0,0 +1,15 @@
config BR2_PACKAGE_CPPDB
bool "cppdb"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
# Can be built without them but it's useless
depends on BR2_PACKAGE_MYSQL_CLIENT || BR2_PACKAGE_SQLITE
help
CppDB is an SQL connectivity library that is designed to provide
platform and Database independent connectivity API similarly
to what JDBC, ODBC and other connectivity libraries do.
http://cppcms.com/sql/cppdb/
comment "cppdb needs a toolchain w/ C++, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS

20
package/cppdb/cppdb.mk Normal file
View file

@ -0,0 +1,20 @@
################################################################################
#
# cppdb
#
################################################################################
CPPDB_VERSION = 0.3.1
CPPDB_SOURCE = cppdb-$(CPPDB_VERSION).tar.bz2
CPPDB_SITE = http://downloads.sourceforge.net/project/cppcms/cppdb/$(CPPDB_VERSION)
CPPDB_INSTALL_STAGING = YES
CPPDB_DEPENDENCIES = $(if $(BR2_PACKAGE_SQLITE),sqlite)
CPPDB_LICENSE = Boost-v1.0 or MIT
CPPDB_LICENSE_FILES = LICENSE_1_0.txt MIT.txt
ifeq ($(BR2_PACKAGE_MYSQL_CLIENT),y)
CPPDB_DEPENDENCIES += mysql_client
CPPDB_CONF_OPT += -DMYSQL_LIB=$(STAGING_DIR)/usr/lib/mysql
endif
$(eval $(cmake-package))