From: Alexander Varnin Date: Wed, 10 Oct 2012 23:34:26 +0000 (+0000) Subject: New package liblog4c-localtime X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d4cdb081020bafa7062c6a8cf052b3d5000635c;p=buildroot.git New package liblog4c-localtime [Peter: minor fixes] Signed-off-by: Alexander Varnin Signed-off-by: Peter Korsgaard --- diff --git a/package/Config.in b/package/Config.in index b78d98071c..2ba68cf3d7 100644 --- a/package/Config.in +++ b/package/Config.in @@ -485,6 +485,7 @@ source "package/poco/Config.in" source "package/protobuf/Config.in" source "package/schifra/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 0000000000..a2b7a843f1 --- /dev/null +++ b/package/liblog4c-localtime/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_LIBLOG4C_LOCALTIME + bool "liblog4c-localtime" + select BR2_PACKAGE_EXPAT + 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 + http://log4c.sourceforge.net/ diff --git a/package/liblog4c-localtime/liblog4c-localtime.mk b/package/liblog4c-localtime/liblog4c-localtime.mk new file mode 100644 index 0000000000..3b1642cf1d --- /dev/null +++ b/package/liblog4c-localtime/liblog4c-localtime.mk @@ -0,0 +1,18 @@ + ############################################################# + # + # liblog4c + # + ############################################################# + LIBLOG4C_LOCALTIME_VERSION = 1.0 + LIBLOG4C_LOCALTIME_SITE = https://github.com/rcmadruga/log4c-localtime/tarball/v$(LIBLOG4C_LOCALTIME_VERSION) + LIBLOG4C_LOCALTIME_INSTALL_STAGING = YES + LIBLOG4C_LOCALTIME_CONF_OPT = --disable-expattest + LIBLOG4C_LOCALTIME_DEPENDENCIES = expat + +define LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS + chmod +x $(@D)/configure +endef + +LIBLOG4C_LOCALTIME_PRE_CONFIGURE_HOOKS += LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS + + $(eval $(autotools-package))