From patchwork Wed Apr 25 14:30:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 154960 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 09BBBB6FBB for ; Thu, 26 Apr 2012 00:31:21 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 64DB68F6D0; Wed, 25 Apr 2012 14:31:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7btGa8ZxiQe0; Wed, 25 Apr 2012 14:31:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 404948F700; Wed, 25 Apr 2012 14:31:04 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id AE6E88F753 for ; Wed, 25 Apr 2012 14:30:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 845DE8F5B7 for ; Wed, 25 Apr 2012 14:30:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qw0RFB6JIrww for ; Wed, 25 Apr 2012 14:30:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id 74F058B1AF for ; Wed, 25 Apr 2012 14:30:45 +0000 (UTC) Received: from asgard (host21.200-117-174.telecom.net.ar [200.117.174.21]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q3PEUdqq004274 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 25 Apr 2012 11:30:42 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1335364243; bh=kcWu6hQRjj9tZqA0xGuXKLtVplnqDEy7IZ0o4y0njQo=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=qSwJdM0FWRIZC9rkebuZM9exWXnSWBtnIzItIwgl006P+cE+5j8jh9fRWbl91KcBl OMMWMs1a2pITguw80zZYfwe3Vs0jd2oEDYbT/EpMNnQrw/KJewusAEPtVo0zVgQoB/ BLjFMpq7Rwkfw4910QoNasG0+/ahrHh8NPBfkqGA= Received: by asgard (sSMTP sendmail emulation); Wed, 25 Apr 2012 11:30:38 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 25 Apr 2012 11:30:33 -0300 Message-Id: <1335364233-21057-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1335364233-21057-1-git-send-email-gustavo@zacarias.com.ar> References: <1335364233-21057-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] berkeleydb: add option for tools install X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net 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 --- package/berkeleydb/Config.in | 6 ++++++ package/berkeleydb/berkeleydb.mk | 13 +++++++++++++ 2 files changed, 19 insertions(+), 0 deletions(-) diff --git a/package/berkeleydb/Config.in b/package/berkeleydb/Config.in index 9568d44..a597abb 100644 --- a/package/berkeleydb/Config.in +++ b/package/berkeleydb/Config.in @@ -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. diff --git a/package/berkeleydb/berkeleydb.mk b/package/berkeleydb/berkeleydb.mk index b2b0a45..d737896 100644 --- a/package/berkeleydb/berkeleydb.mk +++ b/package/berkeleydb/berkeleydb.mk @@ -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