remove UninstallDev
[openwrt/svn-archive/archive.git] / libs / fcgi / Makefile
1 #
2 # Copyright (C) 2007 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:=fcgi
12 PKG_VERSION:=2.4.0
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.fastcgi.com/dist/
17 PKG_MD5SUM:=d15060a813b91383a9f3c66faf84867e
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/fcgi
22 SECTION:=libs
23 CATEGORY:=Libraries
24 TITLE:=Shared library of FastCGI
25 URL:=http://www.fastcgi.com/
26 endef
27
28 define Package/fcgi/description
29 FastCGI is a language independent, scalable, open extension to
30 CGI that provides high performance without the limitations of
31 server specific APIs.
32 endef
33
34 CONFIGURE_ARGS += \
35 --enable-shared \
36 --enable-static \
37
38 CONFIGURE_VARS += \
39 CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClic++" \
40 CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \
41 LIBS="-nodefaultlibs -luClibc++ -lm" \
42
43
44 define Build/Configure
45 $(call Build/Configure/Default)
46 $(call libtool_disable_rpath)
47 endef
48
49 define Build/Compile
50 $(MAKE) -C $(PKG_BUILD_DIR) all
51 $(call libtool_fixup_libdir,$(PKG_INSTALL_DIR))
52 $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all install
53 endef
54
55 define Build/InstallDev
56 $(INSTALL_DIR) $(1)/usr/include
57 $(CP) $(PKG_INSTALL_DIR)/usr/include/fastcgi.h $(1)/usr/include/
58 $(CP) $(PKG_INSTALL_DIR)/usr/include/fcgi{app,_config,misc,o,os,_stdio}.h $(1)/usr/include/
59 $(INSTALL_DIR) $(1)/usr/lib
60 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfcgi.{a,so*} $(1)/usr/lib/
61 endef
62
63 define Package/fcgi/install
64 $(INSTALL_DIR) $(1)/usr/bin
65 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/cgi-fcgi $(1)/usr/bin/
66 $(INSTALL_DIR) $(1)/usr/lib
67 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfcgi.so.* $(1)/usr/lib/
68 endef
69
70 $(eval $(call BuildPackage,fcgi))