2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
14 PKG_SOURCE
:=$(PKG_NAME
)_
$(PKG_VERSION
).orig.
tar.gz
15 PKG_SOURCE_URL
:=http
://ftp.debian.org
/debian
/pool
/main
/l
/linux-atm
/
16 PKG_MD5SUM
:=84fef49cc39ff2605204246666f65864
20 include $(INCLUDE_DIR
)/package.mk
22 define Package
/linux-atm
25 TITLE
:=Linux ATM library
27 URL
:=http
://linux-atm.sourceforge.net
/
30 define Package
/linux-atm
/description
31 This package contains a library for accessing the Linux ATM subsystem.
34 define Package
/atm-tools
38 TITLE
:=Linux ATM tools
39 URL
:=http
://linux-atm.sourceforge.net
/
42 define Package
/atm-tools
/description
43 This package contains the Linux ATM tools.
47 $(call Build
/Prepare
/Default
)
48 $(INSTALL_BIN
) $(SCRIPT_DIR
)/config.sub
$(SCRIPT_DIR
)/config.guess
$(PKG_BUILD_DIR
)/
51 define Build
/Configure
52 $(call Build
/Configure
/Default
)
53 # prevent autoheader invocation
54 touch
$(PKG_BUILD_DIR
)/stamp-h.in
58 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
59 DESTDIR
="$(PKG_INSTALL_DIR)" \
63 ifneq ($(CONFIG_PACKAGE_linux-atm
),)
64 define Build
/InstallDev
65 mkdir
-p
$(1)/usr
/include
66 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/atm
{,d
,sap
}.h \
69 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libatm.
{a
,so
*} \
74 define Package
/linux-atm
/install
75 $(INSTALL_DIR
) $(1)/usr
/lib
76 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libatm.so.
* $(1)/usr
/lib
/
79 define Package
/atm-tools
/install
80 $(INSTALL_DIR
) $(1)/usr
/sbin
/
81 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/atmarp
{,d
} $(1)/usr
/sbin
/
82 $(INSTALL_DIR
) $(1)/lib
/network
83 $(INSTALL_BIN
) .
/files
/ipoa.sh
$(1)/lib
/network
/
86 $(eval
$(call BuildPackage
,linux-atm
))
87 $(eval
$(call BuildPackage
,atm-tools
))