From patchwork Thu Oct 4 09:08:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Varnin X-Patchwork-Id: 189067 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id BF7EA2C0355 for ; Thu, 4 Oct 2012 19:08:21 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3F3E08E82A; Thu, 4 Oct 2012 09:08:17 +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 bhMT1uMReReY; Thu, 4 Oct 2012 09:08:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0C9A78DE15; Thu, 4 Oct 2012 09:08:14 +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 B4CAB8F74A for ; Thu, 4 Oct 2012 09:08:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5E6438D6A0 for ; Thu, 4 Oct 2012 09:08:13 +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 nrPI4F9N5upc for ; Thu, 4 Oct 2012 09:08:11 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from smtp8.mail.ru (smtp8.mail.ru [94.100.176.53]) by whitealder.osuosl.org (Postfix) with ESMTPS id 1BEBC8DE15 for ; Thu, 4 Oct 2012 09:08:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail; h=Message-Id:Date:Subject:Cc:To:From; bh=rZPr9px6hxJh/PaABuVseUzeB3Hma0Cnn253qGJgHn4=; b=kl2hGZRFn1HTfl432ifjB8GvDN6riyJjDR61vUkmxz6sJ/xsz8kXPrnR60lrA+L5gp9H4IWrxAMysq6iTQpxBtzufuMf+B47wcr/CfJdk5+Jd0ma/4gLocRPuP2Oz4jx; Received: from [46.28.89.34] (port=61719 helo=localhost) by smtp8.mail.ru with esmtpa (envelope-from ) id 1TJhPa-00081g-1q; Thu, 04 Oct 2012 13:08:06 +0400 From: Alexander Varnin To: buildroot@busybox.net Date: Thu, 4 Oct 2012 13:08:02 +0400 Message-Id: <1349341682-12387-1-git-send-email-fenixk19@mail.ru> X-Mailer: git-send-email 1.7.2.5 X-Spam: Not detected X-Mras: Ok Subject: [Buildroot] [PATCH] New package liblog4c-localtime 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 --- package/Config.in | 1 + package/liblog4c-localtime/Config.in | 9 +++++++++ package/liblog4c-localtime/liblog4c-localtime.mk | 11 +++++++++++ 3 files changed, 21 insertions(+), 0 deletions(-) create mode 100644 package/liblog4c-localtime/Config.in create mode 100644 package/liblog4c-localtime/liblog4c-localtime.mk diff --git a/package/Config.in b/package/Config.in index 8a7c9c4..25752e5 100644 --- a/package/Config.in +++ b/package/Config.in @@ -387,6 +387,7 @@ source "package/lttng-libust/Config.in" source "package/orc/Config.in" source "package/poco/Config.in" source "package/startup-notification/Config.in" +source "package/liblog4c-localtime/Config.in" endmenu menu "Text and terminal handling" diff --git a/package/liblog4c-localtime/Config.in b/package/liblog4c-localtime/Config.in new file mode 100644 index 0000000..58797be --- /dev/null +++ b/package/liblog4c-localtime/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_LIBLOG4C + bool "liblog4c-localtime" + help + Log4c is a library of C for flexible logging to files, syslog + and other destinations. + This version is with localtime patch, to make lib show times in + local timezone. + + https://github.com/rcmadruga/log4c-localtime diff --git a/package/liblog4c-localtime/liblog4c-localtime.mk b/package/liblog4c-localtime/liblog4c-localtime.mk new file mode 100644 index 0000000..f0599c3 --- /dev/null +++ b/package/liblog4c-localtime/liblog4c-localtime.mk @@ -0,0 +1,11 @@ + ############################################################# + # + # liblog4c + # + ############################################################# + LIBLOG4C_VERSION = 1.2.1 + LIBLOG4C_SITE = git://github.com/rcmadruga/log4c-localtime.git + LIBLOG4C_INSTALL_STAGING = YES + + $(eval $(call AUTOTARGETS)) +