blob: 7c4b1cdba2144561b2639030f2ac21fbf488601b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libol
PKG_VERSION:=0.3.18
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.balabit.com/downloads/files/libol/0.3
PKG_MD5SUM:=cbadf4b7ea276dfa85acc38a1cc5ff17
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
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
$(call Build/Configure/Default, \
--enable-shared \
--enable-static \
)
endef
TARGET_CFLAGS += $(FPIC)
# pass CFLAGS again to override -O2 set by configure
MAKE_ARGS += CFLAGS="$(TARGET_CFLAGS)"
define Build/InstallDev
$(INSTALL_DIR) $(2)/bin
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/bin/libol-config \
$(2)/bin/
$(SED) \
's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
$(2)/bin/libol-config
$(INSTALL_DIR) $(1)/usr/include/libol
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/include/libol/*.h \
$(1)/usr/include/libol/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libol.{a,la,so*} \
$(1)/usr/lib/
endef
define Package/libol/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libol.so* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libol))
|