Commit 0c14b6c9 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

cppdb: new package

parent ec2c8323
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
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

package/cppdb/cppdb.mk

0 → 100644
+20 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))