diff mbox

[1/1] webp: new package

Message ID 1359088553-11261-1-git-send-email-gilles.talis@gmail.com
State Accepted
Headers show

Commit Message

Gilles Talis Jan. 25, 2013, 4:35 a.m. UTC
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
---
 package/Config.in      |    1 +
 package/webp/Config.in |    7 +++++++
 package/webp/webp.mk   |   30 ++++++++++++++++++++++++++++++
 3 files changed, 38 insertions(+), 0 deletions(-)
 create mode 100644 package/webp/Config.in
 create mode 100644 package/webp/webp.mk

Comments

Gilles Talis Jan. 25, 2013, 4:37 a.m. UTC | #1
Peter,
This is a version where all paths are hardcoded. Let me know what you think.
Gilles.

2013/1/24 Gilles Talis <gilles.talis@gmail.com>

> Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
> ---
>  package/Config.in      |    1 +
>  package/webp/Config.in |    7 +++++++
>  package/webp/webp.mk   |   30 ++++++++++++++++++++++++++++++
>  3 files changed, 38 insertions(+), 0 deletions(-)
>  create mode 100644 package/webp/Config.in
>  create mode 100644 package/webp/webp.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index ebd9817..95d51fb 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -437,6 +437,7 @@ source "package/pango/Config.in"
>  source "package/pixman/Config.in"
>  source "package/tiff/Config.in"
>  source "package/webkit/Config.in"
> +source "package/webp/Config.in"
>  source "package/zxing/Config.in"
>  endmenu
>
> diff --git a/package/webp/Config.in b/package/webp/Config.in
> new file mode 100644
> index 0000000..dcee8aa
> --- /dev/null
> +++ b/package/webp/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_WEBP
> +       bool "webp"
> +       help
> +         WebP is a new image format that provides lossless and
> +         lossy compression for images on the web
> +
> +         https://developers.google.com/speed/webp/
> diff --git a/package/webp/webp.mk b/package/webp/webp.mk
> new file mode 100644
> index 0000000..d6d7509
> --- /dev/null
> +++ b/package/webp/webp.mk
> @@ -0,0 +1,30 @@
> +#####################################################################
> +#
> +# webp
> +#
> +#####################################################################
> +
> +WEBP_VERSION = 0.2.1
> +WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
> +WEBP_SITE = https://webp.googlecode.com/files
> +WEBP_LICENSE = BSD-3c
> +WEBP_LICENSE_FILES = COPYING
> +WEBP_INSTALL_STAGING = YES
> +
> +WEBP_CONF_OPT += \
> +       --with-jpegincludedir=$(STAGING_DIR)/usr/include \
> +       --with-jpeglibdir=$(STAGING_DIR)/usr/lib \
> +       --with-tiffincludedir=$(STAGING_DIR)/usr/include \
> +       --with-tifflibdir=$(STAGING_DIR)/usr/lib
> +
> +ifeq ($(BR2_PACKAGE_LIBPNG),y)
> +WEBP_DEPENDENCIES += libpng
> +WEBP_CONF_ENV +=
> ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
> +else
> +WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=/bin/false
> +endif
> +
> +WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_JPEG),jpeg)
> +WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_TIFF),tiff)
> +
> +$(eval $(autotools-package))
> --
> 1.7.4.1
>
>
Peter Korsgaard May 5, 2013, 8:42 p.m. UTC | #2
>>>>> "Gilles" == Gilles Talis <gilles.talis@gmail.com> writes:

 Gilles> Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
 Gilles> ---
 Gilles>  package/Config.in      |    1 +
 Gilles>  package/webp/Config.in |    7 +++++++
 Gilles>  package/webp/webp.mk   |   30 ++++++++++++++++++++++++++++++
 Gilles>  3 files changed, 38 insertions(+), 0 deletions(-)
 Gilles>  create mode 100644 package/webp/Config.in
 Gilles>  create mode 100644 package/webp/webp.mk

 Gilles> diff --git a/package/Config.in b/package/Config.in
 Gilles> index ebd9817..95d51fb 100644
 Gilles> --- a/package/Config.in
 Gilles> +++ b/package/Config.in
 Gilles> @@ -437,6 +437,7 @@ source "package/pango/Config.in"
 Gilles>  source "package/pixman/Config.in"
 Gilles>  source "package/tiff/Config.in"
 Gilles>  source "package/webkit/Config.in"
 Gilles> +source "package/webp/Config.in"
 Gilles>  source "package/zxing/Config.in"
 Gilles>  endmenu
 
 Gilles> diff --git a/package/webp/Config.in b/package/webp/Config.in
 Gilles> new file mode 100644
 Gilles> index 0000000..dcee8aa
 Gilles> --- /dev/null
 Gilles> +++ b/package/webp/Config.in
 Gilles> @@ -0,0 +1,7 @@
 Gilles> +config BR2_PACKAGE_WEBP
 Gilles> +       bool "webp"
 Gilles> +       help
 Gilles> +         WebP is a new image format that provides lossless and
 Gilles> +         lossy compression for images on the web
 Gilles> +
 Gilles> +         https://developers.google.com/speed/webp/

Config.in files should be indented with <tab> (and help lines with
<tab><space><space>).

Committed with that fixed, thanks.
diff mbox

Patch

diff --git a/package/Config.in b/package/Config.in
index ebd9817..95d51fb 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -437,6 +437,7 @@  source "package/pango/Config.in"
 source "package/pixman/Config.in"
 source "package/tiff/Config.in"
 source "package/webkit/Config.in"
+source "package/webp/Config.in"
 source "package/zxing/Config.in"
 endmenu
 
diff --git a/package/webp/Config.in b/package/webp/Config.in
new file mode 100644
index 0000000..dcee8aa
--- /dev/null
+++ b/package/webp/Config.in
@@ -0,0 +1,7 @@ 
+config BR2_PACKAGE_WEBP
+       bool "webp"
+       help
+         WebP is a new image format that provides lossless and
+         lossy compression for images on the web
+
+         https://developers.google.com/speed/webp/
diff --git a/package/webp/webp.mk b/package/webp/webp.mk
new file mode 100644
index 0000000..d6d7509
--- /dev/null
+++ b/package/webp/webp.mk
@@ -0,0 +1,30 @@ 
+#####################################################################
+#
+# webp
+#
+#####################################################################
+
+WEBP_VERSION = 0.2.1
+WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
+WEBP_SITE = https://webp.googlecode.com/files
+WEBP_LICENSE = BSD-3c
+WEBP_LICENSE_FILES = COPYING
+WEBP_INSTALL_STAGING = YES
+
+WEBP_CONF_OPT += \
+	--with-jpegincludedir=$(STAGING_DIR)/usr/include \
+	--with-jpeglibdir=$(STAGING_DIR)/usr/lib \
+	--with-tiffincludedir=$(STAGING_DIR)/usr/include \
+	--with-tifflibdir=$(STAGING_DIR)/usr/lib 
+
+ifeq ($(BR2_PACKAGE_LIBPNG),y)
+WEBP_DEPENDENCIES += libpng
+WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
+else
+WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=/bin/false
+endif
+
+WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_JPEG),jpeg)
+WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_TIFF),tiff)
+
+$(eval $(autotools-package))