Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/libsvg-cairo: new package
@ 2013-07-15 19:52 Carsten Schoenert
  2013-07-15 21:12 ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Carsten Schoenert @ 2013-07-15 19:52 UTC (permalink / raw)
  To: buildroot

From: Carsten Schoenert <c.schoenert@gmail.com>

Libsvg-cairo provides the ability to render SVG content from files or
buffers. All rendering is performed using the cairo rendering library.

Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com>
---
 package/Config.in                    |    1 +
 package/libsvg-cairo/Config.in       |   11 +++++++++++
 package/libsvg-cairo/libsvg-cairo.mk |   14 ++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 package/libsvg-cairo/Config.in
 create mode 100644 package/libsvg-cairo/libsvg-cairo.mk

diff --git a/package/Config.in b/package/Config.in
index 6d5ff01..aac31bf 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -465,6 +465,7 @@ source "package/libqrencode/Config.in"
 source "package/libraw/Config.in"
 source "package/librsvg/Config.in"
 source "package/libsvg/Config.in"
+source "package/libsvg-cairo/Config.in"
 source "package/libsvgtiny/Config.in"
 source "package/libungif/Config.in"
 source "package/opencv/Config.in"
diff --git a/package/libsvg-cairo/Config.in b/package/libsvg-cairo/Config.in
new file mode 100644
index 0000000..9577c69
--- /dev/null
+++ b/package/libsvg-cairo/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LIBSVG_CAIRO
+	bool "libsvg-cairo"
+	select BR2_PACKAGE_CAIRO
+	select BR2_PACKAGE_CAIRO_SVG
+	select BR2_PACKAGE_LIBSVG
+	help
+	  Libsvg-cairo provides the ability to render SVG content from
+	  files or buffers. All rendering is performed using the cairo
+	  rendering library.
+
+	  http://cairographics.org
diff --git a/package/libsvg-cairo/libsvg-cairo.mk b/package/libsvg-cairo/libsvg-cairo.mk
new file mode 100644
index 0000000..a41e859
--- /dev/null
+++ b/package/libsvg-cairo/libsvg-cairo.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# libsvg-cairo
+#
+################################################################################
+
+LIBSVG_CAIRO_VERSION         = 0.1.6
+LIBSVG_CAIRO_SITE            = http://cairographics.org/snapshots/
+LIBSVG_CAIRO_DEPENDENCIES    = cairo libsvg
+LIBSVG_CAIRO_INSTALL_STAGING = YES
+LIBSVG_CAIRO_LICENSE         = LGPLv2+
+LIBSVG_CAIRO_LICENSE_FILES   = COPYING
+
+$(eval $(autotools-package))
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/libsvg-cairo: new package
  2013-07-15 19:52 [Buildroot] [PATCH] package/libsvg-cairo: new package Carsten Schoenert
@ 2013-07-15 21:12 ` Peter Korsgaard
  2013-07-16  5:19   ` Carsten Schoenert
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2013-07-15 21:12 UTC (permalink / raw)
  To: buildroot

>>>>> "Carsten" == Carsten Schoenert <c.schoenert@gmail.com> writes:

 Carsten> From: Carsten Schoenert <c.schoenert@gmail.com>
 Carsten> Libsvg-cairo provides the ability to render SVG content from files or
 Carsten> buffers. All rendering is performed using the cairo rendering library.

 Carsten> Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com>
 Carsten> ---
 Carsten>  package/Config.in                    |    1 +
 Carsten>  package/libsvg-cairo/Config.in       |   11 +++++++++++
 Carsten>  package/libsvg-cairo/libsvg-cairo.mk |   14 ++++++++++++++
 Carsten>  3 files changed, 26 insertions(+)
 Carsten>  create mode 100644 package/libsvg-cairo/Config.in
 Carsten>  create mode 100644 package/libsvg-cairo/libsvg-cairo.mk

 Carsten> diff --git a/package/Config.in b/package/Config.in
 Carsten> index 6d5ff01..aac31bf 100644
 Carsten> --- a/package/Config.in
 Carsten> +++ b/package/Config.in
 Carsten> @@ -465,6 +465,7 @@ source "package/libqrencode/Config.in"
 Carsten>  source "package/libraw/Config.in"
 Carsten>  source "package/librsvg/Config.in"
 Carsten>  source "package/libsvg/Config.in"
 Carsten> +source "package/libsvg-cairo/Config.in"
 Carsten>  source "package/libsvgtiny/Config.in"
 Carsten>  source "package/libungif/Config.in"
 Carsten>  source "package/opencv/Config.in"
 Carsten> diff --git a/package/libsvg-cairo/Config.in b/package/libsvg-cairo/Config.in
 Carsten> new file mode 100644
 Carsten> index 0000000..9577c69
 Carsten> --- /dev/null
 Carsten> +++ b/package/libsvg-cairo/Config.in
 Carsten> @@ -0,0 +1,11 @@
 Carsten> +config BR2_PACKAGE_LIBSVG_CAIRO
 Carsten> +	bool "libsvg-cairo"
 Carsten> +	select BR2_PACKAGE_CAIRO
 Carsten> +	select BR2_PACKAGE_CAIRO_SVG
 Carsten> +	select BR2_PACKAGE_LIBSVG
 Carsten> +	help
 Carsten> +	  Libsvg-cairo provides the ability to render SVG content from
 Carsten> +	  files or buffers. All rendering is performed using the cairo
 Carsten> +	  rendering library.
 Carsten> +
 Carsten> +	  http://cairographics.org
 Carsten> diff --git a/package/libsvg-cairo/libsvg-cairo.mk b/package/libsvg-cairo/libsvg-cairo.mk
 Carsten> new file mode 100644
 Carsten> index 0000000..a41e859
 Carsten> --- /dev/null
 Carsten> +++ b/package/libsvg-cairo/libsvg-cairo.mk
 Carsten> @@ -0,0 +1,14 @@
 Carsten> +################################################################################
 Carsten> +#
 Carsten> +# libsvg-cairo
 Carsten> +#
 Carsten> +################################################################################
 Carsten> +
 Carsten> +LIBSVG_CAIRO_VERSION         = 0.1.6
 Carsten> +LIBSVG_CAIRO_SITE            = http://cairographics.org/snapshots/
 Carsten> +LIBSVG_CAIRO_DEPENDENCIES    = cairo libsvg
 Carsten> +LIBSVG_CAIRO_INSTALL_STAGING = YES
 Carsten> +LIBSVG_CAIRO_LICENSE         = LGPLv2+
 Carsten> +LIBSVG_CAIRO_LICENSE_FILES   = COPYING

The COPYING file is actually LGPL v2.1, so LICENSE should be LGPLv2.1+

Committed with that fixed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/libsvg-cairo: new package
  2013-07-15 21:12 ` Peter Korsgaard
@ 2013-07-16  5:19   ` Carsten Schoenert
  0 siblings, 0 replies; 3+ messages in thread
From: Carsten Schoenert @ 2013-07-16  5:19 UTC (permalink / raw)
  To: buildroot

Hello Peter,

On 07/15/13 23:12, Peter Korsgaard wrote:
> The COPYING file is actually LGPL v2.1, so LICENSE should be LGPLv2.1+
> 
> Committed with that fixed, thanks.

Thanks for this!

I will now take a look onces again into directfb and get the new
configure options in version 1.6.
Some of them need the libsvg and the libsvg-cairo packages.

Regards
Carsten

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-07-16  5:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-15 19:52 [Buildroot] [PATCH] package/libsvg-cairo: new package Carsten Schoenert
2013-07-15 21:12 ` Peter Korsgaard
2013-07-16  5:19   ` Carsten Schoenert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox