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
18 include $(INCLUDE_DIR
)/package.mk
20 define Package
/linux-atm
23 TITLE
:=Linux ATM library
24 URL
:=http
://linux-atm.sourceforge.net
/
27 define Package
/linux-atm
/description
28 This package contains a library for accessing the Linux ATM subsystem.
31 define Package
/atm-tools
35 TITLE
:=Linux ATM tools
36 URL
:=http
://linux-atm.sourceforge.net
/
39 define Package
/atm-tools
/description
40 This package contains the Linux ATM tools.
44 $(call Build
/Prepare
/Default
)
45 $(INSTALL_BIN
) $(SCRIPT_DIR
)/config.sub
$(SCRIPT_DIR
)/config.guess
$(PKG_BUILD_DIR
)/
48 define Build
/Configure
49 $(call Build
/Configure
/Default
)
50 # prevent autoheader invocation
51 touch
$(PKG_BUILD_DIR
)/stamp-h.in
55 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
56 DESTDIR
="$(PKG_INSTALL_DIR)" \
60 ifneq ($(CONFIG_PACKAGE_linux-atm
),)
61 define Build
/InstallDev
62 mkdir
-p
$(1)/usr
/include
63 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/atm
{,d
,sap
}.h \
66 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libatm.
{a
,so
*} \
71 define Package
/linux-atm
/install
72 $(INSTALL_DIR
) $(1)/usr
/lib
73 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libatm.so.
* $(1)/usr
/lib
/
76 define Package
/atm-tools
/install
77 $(INSTALL_DIR
) $(1)/usr
/sbin
/
78 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/atmarp
{,d
} $(1)/usr
/sbin
/
79 $(INSTALL_DIR
) $(1)/lib
/network
80 $(INSTALL_BIN
) .
/files
/ipoa.sh
$(1)/lib
/network
/
83 $(eval
$(call BuildPackage
,linux-atm
))
84 $(eval
$(call BuildPackage
,atm-tools
))