]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
berkeleydb: add option for tools install
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 25 Apr 2012 04:30:33 +0000 (04:30 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Wed, 25 Apr 2012 14:45:24 +0000 (16:45 +0200)
Add an option to install (or not) the berkeleydb binary tools.
The default is no since most of the time/application just need the
library and it helps save some space in the target.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/berkeleydb/Config.in
package/berkeleydb/berkeleydb.mk

index 9568d4425f361d7558876574dd3aa86b84660c07..a597abbe8a724286468ed804c1fe71757e35a0cd 100644 (file)
@@ -5,3 +5,9 @@ config BR2_PACKAGE_BERKELEYDB
          applications.
 
          http://www.sleepycat.com/products/db.shtml
+
+config BR2_PACKAGE_BERKELEYDB_TOOLS
+       bool "install tools"
+       depends on BR2_PACKAGE_BERKELEYDB
+       help
+         Install berkeleydb tools, mostly useful for debugging purposes.
index b2b0a45c2048958974606fa7b4284f6eaa241045..d737896546f4e3b5f27eb3cf33e3f4fd3ad460eb 100644 (file)
@@ -8,6 +8,9 @@ BERKELEYDB_SITE = http://download.oracle.com/berkeley-db
 BERKELEYDB_SOURCE = db-$(BERKELEYDB_VERSION).NC.tar.gz
 BERKELEYDB_SUBDIR = build_unix
 BERKELEYDB_INSTALL_STAGING = YES
+BERKELEYDB_BINARIES = db_archive db_checkpoint db_deadlock db_dump \
+       db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate \
+       db_stat db_tuner db_upgrade db_verify
 
 # build directory can't be the directory where configure are there, so..
 define BERKELEYDB_CONFIGURE_CMDS
@@ -33,6 +36,16 @@ define BERKELEYDB_CONFIGURE_CMDS
        $(SED) 's/\.lo/.o/g' $(@D)/build_unix/Makefile
 endef
 
+ifneq ($(BR2_PACKAGE_BERKELEYDB_TOOLS),y)
+
+define BERKELEYDB_REMOVE_TOOLS
+       rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(BERKELEYDB_BINARIES))
+endef
+
+BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_TOOLS
+
+endif
+
 ifneq ($(BR2_HAVE_DOCUMENTATION),y)
 
 define BERKELEYDB_REMOVE_DOCS