[packages] add hiawatha web server (closes: #4356, thanks to Raphael Huck)
[openwrt/svn-archive/archive.git] / libs / libdaemon / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libdaemon
12 PKG_VERSION:=0.12
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://0pointer.de/lennart/projects/libdaemon/
17 PKG_MD5SUM:=76596823cc1a6d1cdf7779b782ff0ee6
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/libdaemon
22 SECTION:=libs
23 CATEGORY:=Libraries
24 TITLE:=A lightweight C library that eases the writing of UNIX daemons
25 URL:=http://0pointer.de/lennart/projects/libdaemon/
26 endef
27
28 define Package/libdaemon/description
29 libdaemon is a lightweight C library that eases the writing of UNIX daemons.
30 It consists of the following parts:
31 - A wrapper around fork() which does the correct daemonization procedure of a process
32 - A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR
33 - An API for writing PID files
34 - An API for serializing UNIX signals into a pipe for usage with select() or poll()
35 - An API for running subprocesses with STDOUT and STDERR redirected to syslog
36
37 APIs like these are used in most daemon software available. It is not that
38 simple to get it done right and code duplication is not a goal.
39 endef
40
41 define Build/Configure
42 $(call Build/Configure/Default, \
43 --enable-shared \
44 --enable-static \
45 --disable-lynx \
46 )
47 endef
48
49 TARGET_CFLAGS += $(FPIC)
50
51 define Build/Compile
52 $(MAKE) -C $(PKG_BUILD_DIR) \
53 DESTDIR="$(PKG_INSTALL_DIR)" \
54 all install
55 endef
56
57 define Build/InstallDev
58 mkdir -p $(1)/usr/include
59 $(CP) $(PKG_INSTALL_DIR)/usr/include/libdaemon $(1)/usr/include/
60 mkdir -p $(1)/usr/lib
61 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.a $(1)/usr/lib/
62 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so* $(1)/usr/lib/
63 mkdir -p $(1)/usr/lib/pkgconfig
64 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libdaemon.pc $(1)/usr/lib/pkgconfig/
65 endef
66
67 define Package/libdaemon/install
68 $(INSTALL_DIR) $(1)/usr/lib
69 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so.* $(1)/usr/lib/
70 endef
71
72 $(eval $(call BuildPackage,libdaemon))