From patchwork Sun Dec 23 21:39:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mikhail Boiko X-Patchwork-Id: 207993 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 2350D2C0085 for ; Mon, 24 Dec 2012 08:39:57 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 3AD30A0117; Sun, 23 Dec 2012 21:39:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dne15xGClfTj; Sun, 23 Dec 2012 21:39:53 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 1ACF1A00D3; Sun, 23 Dec 2012 21:39:53 +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 EC5038F753 for ; Sun, 23 Dec 2012 21:39:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4F47E816C4 for ; Sun, 23 Dec 2012 21:39: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 ia29bTKRZmfD for ; Sun, 23 Dec 2012 21:39:50 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ie0-f181.google.com (mail-ie0-f181.google.com [209.85.223.181]) by whitealder.osuosl.org (Postfix) with ESMTPS id 6DC69816BE for ; Sun, 23 Dec 2012 21:39:50 +0000 (UTC) Received: by mail-ie0-f181.google.com with SMTP id 16so8217248iea.40 for ; Sun, 23 Dec 2012 13:39:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=eb9yI7QgRgEH9ABQ7v0otT4CIZw2IVxu5EumY14o6Zo=; b=Ajphv50fdAaB9fn7sRV9ly9keBdl03QmoYfQ7fx395bzrWpZkxAveQEoPJzM8s4uhO E2y5/iyIjxV7vjazMwOFo02GS5vbyECdxA+C3Cz61theC6m0eMQSxXcvvsSaMCjxs+dc 61xDqjSLCazFiiU79Mg4gSooYHAV0fLhWL+CWndzeBkxigPpFs3JsHVQwKXdVY61tCXC e1/WOjPsz1lqOnrCqCVWXfMlK1CZgX6sPZzu8IpqYakayLCAszjML5y3zzqbC/w5N/fE PeX2VEmwsX8QbiuIY6nM93fe+l8QeUVqHtdMI3drKVlc6lYa7AR0j/U7AxG/zSgo6GDE 5Nww== MIME-Version: 1.0 Received: by 10.50.178.106 with SMTP id cx10mr19252767igc.24.1356298789769; Sun, 23 Dec 2012 13:39:49 -0800 (PST) Received: by 10.64.139.225 with HTTP; Sun, 23 Dec 2012 13:39:49 -0800 (PST) Date: Sun, 23 Dec 2012 23:39:49 +0200 Message-ID: From: Mikhail Boiko To: buildroot@busybox.net Subject: [Buildroot] [PATCH 2/2] liblinebreak: 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net --- package/Config.in | 1 + package/liblinebreak/Config.in | 10 ++++++++++ package/liblinebreak/liblinebreak.mk | 14 ++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 package/liblinebreak/Config.in create mode 100644 package/liblinebreak/liblinebreak.mk +$(eval $(autotools-package)) diff --git a/package/Config.in b/package/Config.in index 4d45577..6572edc 100644 --- a/package/Config.in +++ b/package/Config.in @@ -497,6 +497,7 @@ source "package/libevent/Config.in" source "package/libev/Config.in" source "package/libffi/Config.in" source "package/libfribidi/Config.in" +source "package/liblinebreak/Config.in" source "package/gsl/Config.in" source "package/libglib2/Config.in" source "package/libical/Config.in" diff --git a/package/liblinebreak/Config.in b/package/liblinebreak/Config.in new file mode 100644 index 0000000..2787fe3 --- /dev/null +++ b/package/liblinebreak/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LIBLINEBREAK + bool "liblinebreak" + help + + Liblinebreak is an implementation of the line breaking + algorithm as described in Unicode 6.0.0 Standard. It + breaks lines that contain Unicode characters. It is + designed to be used in a generic text renderer. + + http://vimgadgets.sourceforge.net/liblinebreak/ diff --git a/package/liblinebreak/liblinebreak.mk b/package/liblinebreak/ liblinebreak.mk new file mode 100644 index 0000000..aaa6e33 --- /dev/null +++ b/package/liblinebreak/liblinebreak.mk @@ -0,0 +1,14 @@ +############################################################# +# +# liblinebreak +# +############################################################# + +LIBLINEBREAK_VERSION = 2.1 +LIBLINEBREAK_SOURCE = liblinebreak-$(LIBLINEBREAK_VERSION).tar.gz +LIBLINEBREAK_SITE = http://downloads.sourceforge.net/project/vimgadgets/liblinebreak/$(LIBLINEBREAK_VERSION) +LIBLINEBREAK_INSTALL_STAGING = YES +LIBLINEBREAK_CONF_OPT = --disable-docs +LIBLINEBREAK_DEPENDENCIES = host-pkgconf +