d86709bd2620afe2b77b4f310ff64d097d3e7b91
[openwrt/openwrt.git] / package / linux-atm / 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:=linux-atm
12 PKG_VERSION:=2.4.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
16 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
17 PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/linux-atm
22 SECTION:=libs
23 CATEGORY:=Libraries
24 TITLE:=Linux ATM library
25 URL:=http://linux-atm.sourceforge.net/
26 endef
27
28 define Package/linux-atm/description
29 This package contains a library for accessing the Linux ATM subsystem.
30 endef
31
32 define Package/atm-tools
33 SECTION:=net
34 CATEGORY:=Network
35 DEPENDS:=linux-atm
36 TITLE:=Linux ATM tools
37 URL:=http://linux-atm.sourceforge.net/
38 endef
39
40 define Package/atm-tools/description
41 This package contains the Linux ATM tools.
42 endef
43
44 define Build/Configure
45 $(call Build/Configure/Default)
46 # prevent autoheader invocation
47 touch $(PKG_BUILD_DIR)/stamp-h.in
48 endef
49
50 define Build/Compile
51 $(MAKE) -C $(PKG_BUILD_DIR) \
52 DESTDIR="$(PKG_INSTALL_DIR)" \
53 all install
54 endef
55
56 ifneq ($(CONFIG_PACKAGE_linux-atm),)
57 define Build/InstallDev
58 mkdir -p $(STAGING_DIR)/usr/include
59 $(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
60 $(STAGING_DIR)/usr/include/
61 mkdir -p $(STAGING_DIR)/usr/lib
62 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
63 $(STAGING_DIR)/usr/lib/
64 endef
65
66 define Build/UninstallDev
67 rm -rf $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
68 $(STAGING_DIR)/usr/lib/libatm.{a,so*}
69 endef
70 endif
71
72 define Package/linux-atm/install
73 $(INSTALL_DIR) $(1)/usr/lib
74 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.so.* $(1)/usr/lib/
75 endef
76
77 define Package/atm-tools/install
78 $(INSTALL_DIR) $(1)/usr/sbin/
79 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/atmarp{,d} $(1)/usr/sbin/
80 $(INSTALL_DIR) $(1)/lib/network
81 $(INSTALL_BIN) ./files/ipoa.sh $(1)/lib/network/
82 endef
83
84 $(eval $(call BuildPackage,linux-atm))
85 $(eval $(call BuildPackage,atm-tools))