[packages] Add missing libtool fixups
[packages.git] / net / siproxd / Makefile
1 #
2 # Copyright (C) 2006-2010 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:=siproxd
11 PKG_VERSION:=0.7.1
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/siproxd
16 PKG_MD5SUM:=45e5a44803181e2bf3361d562060c904
17
18 PKG_FIXUP:=libtool
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/siproxd
23   SECTION:=net
24   CATEGORY:=Network
25   DEPENDS:=+libltdl +libosip2 +libpthread
26   TITLE:=SIP (Session Initiation Protocol) proxy
27   URL:=http://siproxd.sourceforge.net/
28 endef
29
30 define Package/siproxd/conffiles
31 /etc/config/siproxd
32 endef
33
34 # uses GNU configure
35
36 define Build/Compile
37         $(MAKE) -C $(PKG_BUILD_DIR) \
38                 DESTDIR="$(PKG_INSTALL_DIR)" \
39                 SUBDIRS="src scripts contrib" \
40                 LIBLTDL="$(STAGING_DIR)/usr/lib/libltdl.la" \
41                 all install
42 endef
43
44 define Package/siproxd/install
45         $(INSTALL_DIR) $(1)/usr/sbin
46         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/siproxd $(1)/usr/sbin/
47         $(INSTALL_DIR) $(1)/usr/lib/siproxd
48         $(CP) $(PKG_INSTALL_DIR)/usr/lib/siproxd/plugin_*.so* $(1)/usr/lib/siproxd/
49         $(INSTALL_DIR) $(1)/etc/config
50         $(INSTALL_DATA) ./files/siproxd.config $(1)/etc/config/siproxd
51         $(INSTALL_DIR) $(1)/etc/init.d
52         $(INSTALL_BIN) ./files/siproxd.init $(1)/etc/init.d/siproxd
53 endef
54
55 $(eval $(call BuildPackage,siproxd))