2012-10-20 02:08:19 +08:00
|
|
|
#
|
2015-02-06 18:30:04 +08:00
|
|
|
# Copyright (C) 2011-2015 OpenWrt.org
|
2012-10-20 02:08:19 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libevent2
|
2015-02-06 18:30:04 +08:00
|
|
|
PKG_VERSION:=2.0.22
|
2012-10-20 02:08:19 +08:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/libevent-$(PKG_VERSION)-stable
|
|
|
|
PKG_SOURCE:=libevent-$(PKG_VERSION)-stable.tar.gz
|
2015-02-11 02:55:44 +08:00
|
|
|
PKG_SOURCE_URL:=@SF/levent
|
2016-12-17 00:32:10 +08:00
|
|
|
PKG_HASH:=71c2c49f0adadacfdbe6332a372c38cf9c8b7895bb73dabeaa53cdcc1d4e1fa3
|
2016-06-07 17:42:32 +08:00
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
2014-11-02 20:20:54 +08:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
2012-10-20 02:08:19 +08:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libevent2/Default
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Event notification
|
|
|
|
URL:=http://www.monkey.org/~provos/libevent/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2/Default/description
|
|
|
|
The libevent API provides a mechanism to execute a callback function
|
|
|
|
when a specific event occurs on a file descriptor or after a timeout
|
|
|
|
has been reached. Furthermore, libevent also support callbacks due
|
|
|
|
to signals or regular timeouts.
|
|
|
|
|
|
|
|
libevent is meant to replace the event loop found in event driven
|
|
|
|
network servers. An application just needs to call event_dispatch()
|
|
|
|
and then add or remove events dynamically without having to change
|
|
|
|
the event loop.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2
|
|
|
|
$(call Package/libevent2/Default)
|
|
|
|
TITLE+= library (version 2.0)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2/description
|
|
|
|
$(call Package/libevent2/Default/description)
|
|
|
|
|
|
|
|
This package contains the libevent shared library historically
|
|
|
|
containing both the core & extra libraries.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-core
|
|
|
|
$(call Package/libevent2/Default)
|
|
|
|
TITLE+= core library (version 2.0)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-core/description
|
|
|
|
$(call Package/libevent2/Default/description)
|
|
|
|
|
|
|
|
This package contains the libevent core shared library for the event,
|
|
|
|
buffer & utility functions.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-extra
|
|
|
|
$(call Package/libevent2/Default)
|
|
|
|
TITLE+= extra library (version 2.0)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-extra/description
|
|
|
|
$(call Package/libevent2/Default/description)
|
|
|
|
|
|
|
|
This package contains the libevent extra shared library for specific
|
|
|
|
protocols including HTTP, DNS & RPC.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-openssl
|
|
|
|
$(call Package/libevent2/Default)
|
|
|
|
TITLE+= OpenSSL library (version 2.0)
|
|
|
|
DEPENDS+=+libopenssl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-openssl/description
|
|
|
|
$(call Package/libevent2/Default/description)
|
|
|
|
|
|
|
|
This package contains the libevent OpenSSL shared library for encrypted
|
|
|
|
bufferevents.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-pthreads
|
|
|
|
$(call Package/libevent2/Default)
|
|
|
|
TITLE+= Pthreads library (version 2.0)
|
|
|
|
DEPENDS+=+libpthread
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-pthreads/description
|
|
|
|
$(call Package/libevent2/Default/description)
|
|
|
|
|
|
|
|
This package contains the libevent Pthreads shared library for
|
|
|
|
threading & locking.
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
2013-12-10 02:26:58 +08:00
|
|
|
--enable-static \
|
|
|
|
--disable-debug-mode
|
2012-10-20 02:08:19 +08:00
|
|
|
|
|
|
|
MAKE_FLAGS += \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)"
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent*.{la,a,so} $(1)/usr/lib/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent*-2.0.so* $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libevent*.pc $(1)/usr/lib/pkgconfig/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent-2.0.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-core/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_core-2.0.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-extra/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_extra-2.0.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-openssl/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_openssl-2.0.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libevent2-pthreads/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_pthreads-2.0.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libevent2))
|
|
|
|
$(eval $(call BuildPackage,libevent2-core))
|
|
|
|
$(eval $(call BuildPackage,libevent2-extra))
|
|
|
|
$(eval $(call BuildPackage,libevent2-openssl))
|
|
|
|
$(eval $(call BuildPackage,libevent2-pthreads))
|