Add libnfsidmap
[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.10
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:=6812a5e4063b5016f25e9a0cebbd3dd9
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libdaemon
26 SECTION:=libs
27 CATEGORY:=Libraries
28 TITLE:=A lightweight C library that eases the writing of UNIX daemons
29 DESCRIPTION:=\
30 libdaemon is a lightweight C library that eases the writing of UNIX daemons.\\\
31 It consists of the following parts:\\\
32 - A wrapper around fork() which does the correct daemonization procedure of a process\\\
33 - A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR\\\
34 - An API for writing PID files\\\
35 - An API for serializing UNIX signals into a pipe for usage with select() or poll()\\\
36 - An API for running subprocesses with STDOUT and STDERR redirected to syslog\\\
37 \\\
38 APIs like these are used in most daemon software available. It is not that \\\
39 simple to get it done right and code duplication is not a goal.
40 URL:=http://0pointer.de/lennart/projects/libdaemon/
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 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 $(STAGING_DIR)/usr/include
59 $(CP) $(PKG_INSTALL_DIR)/usr/include/libdaemon $(STAGING_DIR)/usr/include/
60 mkdir -p $(STAGING_DIR)/usr/lib
61 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.a $(STAGING_DIR)/usr/lib/
62 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so* $(STAGING_DIR)/usr/lib/
63 mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig
64 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libdaemon.pc $(STAGING_DIR)/usr/lib/pkgconfig/
65 $(SED) 's,-I$$$${includedir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/libdaemon.pc
66 $(SED) 's,-L$$$${libdir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/libdaemon.pc
67 endef
68
69 define Build/UninstallDev
70 rm -rf \
71 $(STAGING_DIR)/usr/include/libdaemon \
72 $(STAGING_DIR)/usr/lib/libdaemon.a \
73 $(STAGING_DIR)/usr/lib/libdaemon.so* \
74 $(STAGING_DIR)/usr/lib/pkgconfig/libdaemon.pc
75 endef
76
77 define Package/libdaemon/install
78 $(INSTALL_DIR) $(1)/usr/lib
79 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdaemon.so.* $(1)/usr/lib/
80 endef
81
82 $(eval $(call BuildPackage,libdaemon))