From patchwork Fri Jun 28 18:52:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carsten Schoenert X-Patchwork-Id: 255550 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 6A98D2C0090 for ; Sat, 29 Jun 2013 04:54:06 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 9644131EA3; Fri, 28 Jun 2013 18:54:04 +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 r6uP1LVifioI; Fri, 28 Jun 2013 18:54:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1CA5B31EA8; Fri, 28 Jun 2013 18:54:01 +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 BE9898F75E for ; Fri, 28 Jun 2013 18:53:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8AC1081D8A for ; Fri, 28 Jun 2013 18:53:51 +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 EudL91+GabGW for ; Fri, 28 Jun 2013 18:53:42 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f45.google.com (mail-ee0-f45.google.com [74.125.83.45]) by whitealder.osuosl.org (Postfix) with ESMTPS id 0C4CC85610 for ; Fri, 28 Jun 2013 18:53:35 +0000 (UTC) Received: by mail-ee0-f45.google.com with SMTP id c1so1200317eek.32 for ; Fri, 28 Jun 2013 11:53:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=UIYVzghWe5YtINbMY57bXU+rmuy58ljh04UEn+zZODU=; b=pa/opwFQDzQSKFlSA8eFx6DBGDdZQQIuSGuOt40tXC+4rzT9p0lxHcnM1iAjiXuJ5i xijR6BNfM8N66yMCJgiUGvKVGK7rdKJqomwYZemGe3Gu2cgpi2TQJOCGWguXzNSPQDwm 1M4cAF/m8eePmYJ/USEidFKS6gvCIE6MIlQkel5zz6byLxSdy72vvqpy+lyDeB2SVaQK EoC5dR420QdmU8hzGBZyAOqVCk6RtjuZtQB5zxzw4edH5SZmikf4tg+36240Nu00jrAU u/FGGF2O+lM628nVh0K0JJStRn9Cgj2DPz+/I0GJ71wfh7n3Gk/ECvf0PuSukzU7PfBP 1Tww== X-Received: by 10.14.122.201 with SMTP id t49mr15112157eeh.26.1372445614263; Fri, 28 Jun 2013 11:53:34 -0700 (PDT) Received: from localhost.localdomain (p5B37BF21.dip0.t-ipconnect.de. [91.55.191.33]) by mx.google.com with ESMTPSA id m1sm12193596eex.17.2013.06.28.11.53.32 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 28 Jun 2013 11:53:33 -0700 (PDT) From: Carsten Schoenert To: buildroot@busybox.net Date: Fri, 28 Jun 2013 20:52:35 +0200 Message-Id: <1372445557-15546-2-git-send-email-c.schoenert@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1372445557-15546-1-git-send-email-c.schoenert@gmail.com> References: <1372445557-15546-1-git-send-email-c.schoenert@gmail.com> Subject: [Buildroot] [PATCH 2/4] package/libsvg: 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 From: Carsten Schoenert Libsvg provides a library for parsing SVG content in files or buffers. Libsvg does not do any rendering, but instead provides a function-based interface that can be used by various rendering engines. Signed-off-by: Carsten Schoenert --- package/Config.in | 1 + package/libsvg/Config.in | 10 ++++++++++ package/libsvg/libsvg.mk | 15 +++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 package/libsvg/Config.in create mode 100644 package/libsvg/libsvg.mk diff --git a/package/Config.in b/package/Config.in index ebeabeb..7f5714d 100644 --- a/package/Config.in +++ b/package/Config.in @@ -461,6 +461,7 @@ source "package/libpng/Config.in" source "package/libqrencode/Config.in" source "package/libraw/Config.in" source "package/librsvg/Config.in" +source "package/libsvg/Config.in" source "package/libsvgtiny/Config.in" source "package/libungif/Config.in" source "package/opencv/Config.in" diff --git a/package/libsvg/Config.in b/package/libsvg/Config.in new file mode 100644 index 0000000..0e372fe --- /dev/null +++ b/package/libsvg/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LIBSVG + bool "libsvg" + select BR2_PACKAGE_LIBXML2 + help + Libsvg provides a parser for SVG content in files or buffers. + Libsvg does not do any rendering, but instead provides a + function-based interface that can be used by various rendering + engines. + + http://www.t2-project.org/packages/libsvg.html diff --git a/package/libsvg/libsvg.mk b/package/libsvg/libsvg.mk new file mode 100644 index 0000000..069314d --- /dev/null +++ b/package/libsvg/libsvg.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# libsvg +# +################################################################################ + +LIBSVG_VERSION = 0.1.4 +LIBSVG_SOURCE = libsvg-$(LIBSVG_VERSION).tar.gz +LIBSVG_SITE = http://cairographics.org/snapshots/ +LIBSVG_DEPENDENCIES = libxml2 +LIBSVG_INSTALL_STAGING = YES +LIBSVG_LICENSE = LGPLv2 +LIBSVG_LICENSE_FILES = COPYING + +$(eval $(autotools-package))