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.
9 include $(TOPDIR
)/rules.mk
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
19 include $(INCLUDE_DIR
)/package.mk
21 define Package
/linux-atm
24 TITLE
:=Linux ATM library
25 URL
:=http
://linux-atm.sourceforge.net
/
28 define Package
/linux-atm
/description
29 This package contains a library for accessing the Linux ATM subsystem.
32 define Package
/atm-tools
36 TITLE
:=Linux ATM tools
37 URL
:=http
://linux-atm.sourceforge.net
/
40 define Package
/atm-tools
/description
41 This package contains the Linux ATM tools.
45 $(call Build
/Prepare
/Default
)
46 $(INSTALL_BIN
) $(SCRIPT_DIR
)/config.sub
$(SCRIPT_DIR
)/config.guess
$(PKG_BUILD_DIR
)/
49 define Build
/Configure
50 $(call Build
/Configure
/Default
)
51 # prevent autoheader invocation
52 touch
$(PKG_BUILD_DIR
)/stamp-h.in
56 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
57 DESTDIR
="$(PKG_INSTALL_DIR)" \
61 ifneq ($(CONFIG_PACKAGE_linux-atm
),)
62 define Build
/InstallDev
63 mkdir
-p
$(1)/usr
/include
64 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/atm
{,d
,sap
}.h \
67 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libatm.
{a
,so
*} \
72 define Package
/linux-atm
/install
73 $(INSTALL_DIR
) $(1)/usr
/lib
74 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libatm.so.
* $(1)/usr
/lib
/
77 define Package
/atm-tools
/install
78 $(INSTALL_DIR
) $(1)/usr
/sbin
/
79 $(INSTALL_BIN
) $(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
/
84 $(eval
$(call BuildPackage
,linux-atm
))
85 $(eval
$(call BuildPackage
,atm-tools
))