X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=libs%2Flibevent%2FMakefile;h=1d66b8ad9375e0f5b9e89d99e883496d9af1378a;hp=eed3a401f1c634e95cd87f898df2a43eecc7c431;hb=2d66c340a743c32553c725a6dfd0456f39809ec8;hpb=73139559e2f0282fd57eb1f87a2446ea3527ccb3 diff --git a/libs/libevent/Makefile b/libs/libevent/Makefile index eed3a401f1..1d66b8ad93 100644 --- a/libs/libevent/Makefile +++ b/libs/libevent/Makefile @@ -1,21 +1,22 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk PKG_NAME:=libevent -PKG_VERSION:=1.4.4 +PKG_VERSION:=1.4.13 PKG_RELEASE:=1 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-stable PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-stable.tar.gz PKG_SOURCE_URL:=http://www.monkey.org/~provos/ -PKG_MD5SUM:=5d7591aa6301f06315b52bade472bf2f +PKG_MD5SUM:=0b3ea18c634072d12b3c1ee734263664 + +PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk @@ -27,33 +28,33 @@ define Package/libevent endef define Package/libevent/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 + 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 + + 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 TARGET_CFLAGS += $(FPIC) +Hooks/InstallDev/Post += libtool_fixup_libdir + CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ MAKE_FLAGS += \ CFLAGS="$(TARGET_CFLAGS)" \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install define Build/InstallDev - mkdir -p $(1)/usr/include + $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/ - mkdir -p $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent.{a,so} $(1)/usr/lib/ + $(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-1.4.so* $(1)/usr/lib/ endef