Add support for IP over ATM
[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 TARGET_CFLAGS := -I$(PKG_BUILD_DIR)/src/include $(TARGET_CFLAGS)
51 define Build/Compile
52         $(MAKE) -C $(PKG_BUILD_DIR) \
53                 $(TARGET_CONFIGURE_OPTS) \
54                 DESTDIR="$(PKG_INSTALL_DIR)" \
55                 all install
56 endef
57
58 define Build/InstallDev
59         mkdir -p $(STAGING_DIR)/usr/include
60         $(CP)   $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
61                 $(STAGING_DIR)/usr/include/
62         mkdir -p $(STAGING_DIR)/usr/lib
63         $(CP)   $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
64                 $(STAGING_DIR)/usr/lib/
65 endef
66
67 define Build/UninstallDev
68         rm -rf  $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
69                 $(STAGING_DIR)/usr/lib/libatm.{a,so*}
70 endef
71
72 define Package/linux-atm/install
73         $(INSTALL_DIR) $(1)/usr/lib
74         cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(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))