New package liblog4c-localtime

[Peter: minor fixes]
Signed-off-by: Alexander Varnin <fenixk19@mail.ru>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Alexander Varnin 2012-10-10 23:34:26 +00:00 committed by Peter Korsgaard
parent 464e88c8bd
commit 6d4cdb0810
3 changed files with 30 additions and 0 deletions

View File

@ -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"

View File

@ -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/

View File

@ -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))