fix natpmp compile
[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 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/libdaemon
25 SECTION:=libs
26 CATEGORY:=Libraries
27 TITLE:=A lightweight C library that eases the writing of UNIX daemons
28 URL:=http://0pointer.de/lennart/projects/libdaemon/
29 endef
30
31 define Package/libdaemon/description
32 libdaemon is a lightweight C library that eases the writing of UNIX daemons.
33 It consists of the following parts:
34 - A wrapper around fork() which does the correct daemonization procedure of a process
35 - A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR
36 - An API for writing PID files
37 - An API for serializing UNIX signals into a pipe for usage with select() or poll()
38 - An API for running subprocesses with STDOUT and STDERR redirected to syslog
39
40 APIs like these are used in most daemon software available. It is not that
41 simple to get it done right and code duplication is not a goal.
42 endef
43
44 define Build/Configure
45 $(call Build/Configure/Default, \
46 --enable-shared \
47 --enable-static \
48 --disable-lynx \
49 )
50 endef
51
52 define Build/Compile
53 $(MAKE) -C $(PKG_BUILD_DIR) \
54 DESTDIR="$(PKG_INSTALL_DIR)" \
55 all install
56 endef
57
58 define Build/InstallDev
59 mkdir -p $(1)/usr/include
60 $(CP) $(PKG_INSTALL_DIR)/usr/include/libdaemon $(1)/usr/include/
61 mkdir -p $(1)/usr/lib
62 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.a $(1)/usr/lib/
63 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so* $(1)/usr/lib/
64 mkdir -p $(1)/usr/lib/pkgconfig
65 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libdaemon.pc $(1)/usr/lib/pkgconfig/
66 endef
67
68 define Package/libdaemon/install
69 $(INSTALL_DIR) $(1)/usr/lib
70 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so.* $(1)/usr/lib/
71 endef
72
73 $(eval $(call BuildPackage,libdaemon))