From patchwork Wed Apr 24 15:11:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: nmenegale X-Patchwork-Id: 239229 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 529192C00F0 for ; Thu, 25 Apr 2013 01:12:30 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 8F6BD31A04; Wed, 24 Apr 2013 15:12:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YYcIDJDs51sB; Wed, 24 Apr 2013 15:12:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id BDD5231A11; Wed, 24 Apr 2013 15:12:09 +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 BDFFC8F753 for ; Wed, 24 Apr 2013 15:12:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B9BFB88286 for ; Wed, 24 Apr 2013 15:12:03 +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 fXO4OYzh7Usn for ; Wed, 24 Apr 2013 15:12:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from zimbra3.corp.accelance.fr (zimbra3.corp.accelance.fr [213.162.49.233]) by whitealder.osuosl.org (Postfix) with ESMTP id 50F3487094 for ; Wed, 24 Apr 2013 15:12:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by zimbra3.corp.accelance.fr (Postfix) with ESMTP id 9E5D2280AE for ; Wed, 24 Apr 2013 17:11:58 +0200 (CEST) X-Virus-Scanned: amavisd-new at zimbra3.corp.accelance.fr Received: from zimbra3.corp.accelance.fr ([127.0.0.1]) by localhost (zimbra3.corp.accelance.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q43LqTs2NE6d; Wed, 24 Apr 2013 17:11:57 +0200 (CEST) Received: from Nicolas-M-OWI.daviel.openwide.fr (unknown [193.56.60.160]) by zimbra3.corp.accelance.fr (Postfix) with ESMTPSA id 320F1280AA; Wed, 24 Apr 2013 17:11:57 +0200 (CEST) From: nmenegale To: buildroot@busybox.net Date: Wed, 24 Apr 2013 17:11:22 +0200 Message-Id: <1366816283-11363-1-git-send-email-nicolas.menegale@openwide.fr> X-Mailer: git-send-email 1.8.1.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/2] glibmm: new package 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Nicolas Ménégale --- v2: minor modifications: license, tar.xz instead of tar.bz2, version number split glibmm is also a dependency of libxml++ (the libxml2 c++ wrapper) Signed-off-by: nmenegale --- package/Config.in | 1 + package/glibmm/Config.in | 13 +++++++++++++ package/glibmm/glibmm.mk | 17 +++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 package/glibmm/Config.in create mode 100644 package/glibmm/glibmm.mk diff --git a/package/Config.in b/package/Config.in index ab514c7..ca947d9 100644 --- a/package/Config.in +++ b/package/Config.in @@ -561,6 +561,7 @@ source "package/fftw/Config.in" source "package/libargtable2/Config.in" source "package/argp-standalone/Config.in" source "package/boost/Config.in" +source "package/glibmm/Config.in" source "package/gmp/Config.in" source "package/gsl/Config.in" source "package/gtest/Config.in" diff --git a/package/glibmm/Config.in b/package/glibmm/Config.in new file mode 100644 index 0000000..012b681 --- /dev/null +++ b/package/glibmm/Config.in @@ -0,0 +1,13 @@ +config BR2_PACKAGE_GLIBMM + bool "glibmm" + select BR2_PACKAGE_LIBGLIB2 + select BR2_PACKAGE_LIBSIGC + depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_USE_WCHAR + help + The GLibmm package is a set of C++ bindings for GLib. + + http://www.gtkmm.org/ + +comment "glibmm requires a toolchain with C++ & WCHAR support enabled" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR diff --git a/package/glibmm/glibmm.mk b/package/glibmm/glibmm.mk new file mode 100644 index 0000000..abd8b6c --- /dev/null +++ b/package/glibmm/glibmm.mk @@ -0,0 +1,17 @@ +############################################################# +# +# Glibmm +# +############################################################# + +GLIBMM_VERSION_MAJOR = 2.30 +GLIBMM_VERSION_MINOR = 1 +GLIBMM_VERSION = $(GLIBMM_VERSION_MAJOR).$(GLIBMM_VERSION_MINOR) +GLIBMM_LICENSE = LGPLv2.1+ (library), GPLv2+ (tools) +GLIBMM_LICENSE_FILES = COPYING COPYING.tools +GLIBMM_SOURCE = glibmm-$(GLIBMM_VERSION).tar.xz +GLIBMM_SITE = http://ftp.gnome.org/pub/gnome/sources/glibmm/$(GLIBMM_VERSION_MAJOR) +GLIBMM_INSTALL_STAGING = YES +GLIBMM_DEPENDENCIES = libglib2 libsigc host-pkgconf + +$(eval $(autotools-package))