2008-09-12 22:14:07 +00:00
|
|
|
#
|
2010-02-12 15:13:20 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-07-23 13:08:32 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libol
|
2007-03-04 02:51:51 +00:00
|
|
|
PKG_VERSION:=0.3.18
|
2010-02-12 15:13:20 +00:00
|
|
|
PKG_RELEASE:=2
|
2006-07-23 13:08:32 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2008-12-04 07:56:34 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.balabit.com/downloads/files/libol/0.3
|
2007-03-04 02:51:51 +00:00
|
|
|
PKG_MD5SUM:=cbadf4b7ea276dfa85acc38a1cc5ff17
|
2010-02-12 15:13:20 +00:00
|
|
|
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-02-12 15:13:20 +00:00
|
|
|
PKG_INSTALL:=1
|
2006-07-23 13:08:32 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libol
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Support library for syslog-ng
|
|
|
|
URL:=http://www.balabit.com/products/syslog_ng/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-10-28 22:43:08 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
)
|
2006-07-23 13:08:32 +00:00
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2010-02-12 15:13:20 +00:00
|
|
|
# pass CFLAGS again to override -O2 set by configure
|
|
|
|
MAKE_ARGS += CFLAGS="$(TARGET_CFLAGS)"
|
2006-07-23 13:08:32 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
2008-09-12 22:14:07 +00:00
|
|
|
$(INSTALL_DIR) $(2)/bin
|
|
|
|
$(INSTALL_BIN) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/bin/libol-config \
|
|
|
|
$(2)/bin/
|
2008-10-08 16:40:43 +00:00
|
|
|
$(SED) \
|
|
|
|
's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
|
|
|
|
$(2)/bin/libol-config
|
2008-09-12 22:14:07 +00:00
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/libol
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/libol/*.h \
|
|
|
|
$(1)/usr/include/libol/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2008-12-04 07:56:34 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libol.{a,la,so*} \
|
2008-09-12 22:14:07 +00:00
|
|
|
$(1)/usr/lib/
|
2006-07-23 13:08:32 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/libol/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2008-12-04 07:56:34 +00:00
|
|
|
$(CP) \
|
2008-12-04 16:18:06 +00:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libol.so* \
|
2008-09-12 22:14:07 +00:00
|
|
|
$(1)/usr/lib/
|
2006-10-28 22:43:08 +00:00
|
|
|
endef
|
|
|
|
|
2006-07-23 13:08:32 +00:00
|
|
|
$(eval $(call BuildPackage,libol))
|