[packages] lftp: update to 4.1.1, use g++-uc, remove stdc++ hack, use tabs rather...
[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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libdaemon
11 PKG_VERSION:=0.14
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://0pointer.de/lennart/projects/libdaemon/
16 PKG_MD5SUM:=509dc27107c21bcd9fbf2f95f5669563
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libdaemon
24 SECTION:=libs
25 CATEGORY:=Libraries
26 TITLE:=A lightweight C library that eases the writing of UNIX daemons
27 URL:=http://0pointer.de/lennart/projects/libdaemon/
28 endef
29
30 define Package/libdaemon/description
31 libdaemon is a lightweight C library that eases the writing of UNIX daemons.
32 It consists of the following parts:
33 - A wrapper around fork() which does the correct daemonization procedure of a process
34 - A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR
35 - An API for writing PID files
36 - An API for serializing UNIX signals into a pipe for usage with select() or poll()
37 - An API for running subprocesses with STDOUT and STDERR redirected to syslog
38
39 APIs like these are used in most daemon software available. It is not that
40 simple to get it done right and code duplication is not a goal.
41 endef
42
43 define Build/Configure
44 $(call Build/Configure/Default, \
45 --enable-shared \
46 --enable-static \
47 --disable-lynx \
48 )
49 endef
50
51 TARGET_CFLAGS += $(FPIC)
52
53 define Build/InstallDev
54 $(INSTALL_DIR) $(1)/usr/include
55 $(CP) $(PKG_INSTALL_DIR)/usr/include/libdaemon $(1)/usr/include/
56 $(INSTALL_DIR) $(1)/usr/lib
57 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.a $(1)/usr/lib/
58 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so* $(1)/usr/lib/
59 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
60 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libdaemon.pc $(1)/usr/lib/pkgconfig/
61 endef
62
63 define Package/libdaemon/install
64 $(INSTALL_DIR) $(1)/usr/lib
65 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so.* $(1)/usr/lib/
66 endef
67
68 $(eval $(call BuildPackage,libdaemon))