| Submitter | Thomas Petazzoni |
|---|---|
| Date | Dec. 28, 2012, 7:42 p.m. |
| Message ID | <def1e95b3470173f129cd36c95f40260e9893594.1356723702.git.thomas.petazzoni@free-electrons.com> |
| Download | mbox | patch |
| Permalink | /patch/208545/ |
| State | Superseded |
| Headers | show |
Comments
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas> ---
Thomas> package/efl/Config.in | 1 +
Thomas> package/efl/libeio/Config.in | 15 +++++++++++++++
Thomas> package/efl/libeio/libeio.mk | 15 +++++++++++++++
Thomas> 3 files changed, 31 insertions(+)
Thomas> create mode 100644 package/efl/libeio/Config.in
Thomas> create mode 100644 package/efl/libeio/libeio.mk
Thomas> diff --git a/package/efl/Config.in b/package/efl/Config.in
Thomas> index c783d7f..a526d87 100644
Thomas> --- a/package/efl/Config.in
Thomas> +++ b/package/efl/Config.in
Thomas> @@ -13,6 +13,7 @@ source "package/efl/libeina/Config.in"
Thomas> source "package/efl/libecore/Config.in"
Thomas> source "package/efl/libeet/Config.in"
Thomas> source "package/efl/libefreet/Config.in"
Thomas> +source "package/efl/libeio/Config.in"
Thomas> source "package/efl/libevas/Config.in"
Thomas> source "package/efl/libembryo/Config.in"
Thomas> source "package/efl/libedje/Config.in"
Thomas> diff --git a/package/efl/libeio/Config.in b/package/efl/libeio/Config.in
Thomas> new file mode 100644
Thomas> index 0000000..889d079
Thomas> --- /dev/null
Thomas> +++ b/package/efl/libeio/Config.in
Thomas> @@ -0,0 +1,15 @@
Thomas> +config BR2_PACKAGE_LIBEIO
Thomas> + bool "libeio"
Thomas> + help
Thomas> + Eio integrates with EFL (Ecore, Eina) to provide efficient
Thomas> + filesystem Input/Output? (I/O). It use the best techniques
The question mark after Input/Output shouldn't be here.
No dependencies on ecore or eina?
Patch
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..889d079 --- /dev/null +++ b/package/efl/libeio/Config.in @@ -0,0 +1,15 @@ +config BR2_PACKAGE_LIBEIO + bool "libeio" + 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..c02fdc1 --- /dev/null +++ b/package/efl/libeio/libeio.mk @@ -0,0 +1,15 @@ +############################################################# +# +# 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 + +$(eval $(autotools-package))
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- package/efl/Config.in | 1 + package/efl/libeio/Config.in | 15 +++++++++++++++ package/efl/libeio/libeio.mk | 15 +++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 package/efl/libeio/Config.in create mode 100644 package/efl/libeio/libeio.mk