From patchwork Sun Dec 30 06:31:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 208728 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 17E0C2C00B9 for ; Sun, 30 Dec 2012 17:33:53 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 76401101111; Sun, 30 Dec 2012 06:33:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23CXyPpmUUzc; Sun, 30 Dec 2012 06:33:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6126C101470; Sun, 30 Dec 2012 06:33:40 +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 2390A8F79B for ; Sun, 30 Dec 2012 06:33:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 32A47875BD for ; Sun, 30 Dec 2012 06:33:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pToitdvn3DJe for ; Sun, 30 Dec 2012 06:33:47 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.32.191]) by whitealder.osuosl.org (Postfix) with ESMTP id 6FCA98688D for ; Sun, 30 Dec 2012 06:33:47 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 07B19276; Sun, 30 Dec 2012 07:33:46 +0100 (CET) Received: from localhost (AAnnecy-652-1-494-147.w90-41.abo.wanadoo.fr [90.41.150.147]) by mail.free-electrons.com (Postfix) with ESMTPSA id 7C24BEC for ; Sun, 30 Dec 2012 07:33:45 +0100 (CET) From: Thomas Petazzoni To: buildroot@busybox.net Date: Sun, 30 Dec 2012 07:31:52 +0100 Message-Id: <20e90e4f0d2628322b0f376043b29668806cf3d3.1356849033.git.thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 14/19] efl/libeio: 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Thomas Petazzoni --- package/efl/Config.in | 1 + package/efl/libeio/Config.in | 18 ++++++++++++++++++ package/efl/libeio/libeio.mk | 16 ++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 package/efl/libeio/Config.in create mode 100644 package/efl/libeio/libeio.mk diff --git a/package/efl/Config.in b/package/efl/Config.in index c783d7f..a526d87 100644 --- a/package/efl/Config.in +++ b/package/efl/Config.in @@ -13,6 +13,7 @@ source "package/efl/libeina/Config.in" source "package/efl/libecore/Config.in" source "package/efl/libeet/Config.in" source "package/efl/libefreet/Config.in" +source "package/efl/libeio/Config.in" source "package/efl/libevas/Config.in" source "package/efl/libembryo/Config.in" source "package/efl/libedje/Config.in" diff --git a/package/efl/libeio/Config.in b/package/efl/libeio/Config.in new file mode 100644 index 0000000..0b2751c --- /dev/null +++ b/package/efl/libeio/Config.in @@ -0,0 +1,18 @@ +config BR2_PACKAGE_LIBEIO + bool "libeio" + select BR2_PACKAGE_LIBEET + select BR2_PACKAGE_LIBEINA + select BR2_PACKAGE_LIBECORE + help + Eio integrates with EFL (Ecore, Eina) to provide efficient + filesystem Input/Output (I/O). It use the best techniques to + achieve such purpose, like using at-variants, splice, + properly handling errors and doing it in an asynchronous + fashion by means of worker threads. It is also ported to + Windows, so multi-platform. + + Whenever you need to list a directory, copy, move or delete + files, Eio will do that task better than you'd achieve with + naive implementations, and it is easy to use. + + http://trac.enlightenment.org/e/wiki/Eio diff --git a/package/efl/libeio/libeio.mk b/package/efl/libeio/libeio.mk new file mode 100644 index 0000000..f5e08de --- /dev/null +++ b/package/efl/libeio/libeio.mk @@ -0,0 +1,16 @@ +############################################################# +# +# libeio +# +############################################################# + +LIBEIO_VERSION = 1.7.4 +LIBEIO_SOURCE = eio-$(LIBEIO_VERSION).tar.bz2 +LIBEIO_SITE = http://download.enlightenment.org/releases/ +LIBEIO_LICENSE = LGPLv2.1 +LIBEIO_LICENSE_FILES = COPYING + +LIBEIO_INSTALL_STAGING = YES +LIBEIO_DEPENDENCIES = libeina libeet libecore + +$(eval $(autotools-package))