2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-08-12 18:23:01 +00:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=linux-atm
|
|
|
|
PKG_VERSION:=2.4.1
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
2006-09-23 19:30:35 +00:00
|
|
|
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
|
|
|
|
PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
|
2005-08-12 18:23:01 +00:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
2006-09-24 20:49:31 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2005-08-19 15:49:41 +00:00
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
2005-08-12 18:23:01 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-08-12 18:23:01 +00:00
|
|
|
|
2006-09-23 19:30:35 +00:00
|
|
|
define Package/linux-atm/Default
|
|
|
|
URL:=http://linux-atm.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Package/linux-atm
|
2006-09-23 19:30:35 +00:00
|
|
|
$(call Package/linux-atm/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Linux ATM Library
|
|
|
|
DESCRIPTION:=\
|
|
|
|
This package contains a library for accessing the Linux ATM subsystem.
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/br2684ctl
|
2006-09-23 19:30:35 +00:00
|
|
|
$(call Package/linux-atm/Default)
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+linux-atm
|
|
|
|
TITLE:=RFC2684 bridging utility
|
|
|
|
DESCRIPTION:=\
|
|
|
|
This package contains an ATM RFC2684 bridging utility.
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-18 11:20:13 +00:00
|
|
|
define Build/Configure
|
2006-08-18 21:21:06 +00:00
|
|
|
$(call Build/Configure/Default)
|
2006-06-18 11:20:13 +00:00
|
|
|
# prevent autoheader invocation
|
|
|
|
touch $(PKG_BUILD_DIR)/stamp-h.in
|
|
|
|
endef
|
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Build/Compile
|
2006-09-23 19:30:35 +00:00
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install \
|
|
|
|
)
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
2005-08-23 12:29:00 +00:00
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Build/InstallDev
|
2005-08-19 15:49:41 +00:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/include
|
2006-06-18 18:26:00 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
|
|
|
|
$(STAGING_DIR)/usr/include/
|
2005-08-19 15:49:41 +00:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
2006-06-18 18:26:00 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
|
|
|
|
$(STAGING_DIR)/usr/lib/
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
2005-08-22 15:13:34 +00:00
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Build/UninstallDev
|
2006-06-18 18:26:00 +00:00
|
|
|
rm -rf $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
|
2006-05-30 19:50:48 +00:00
|
|
|
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
|
|
|
|
endef
|
2005-08-12 18:23:01 +00:00
|
|
|
|
2006-09-23 19:30:35 +00:00
|
|
|
define Package/linux-atm/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-09-23 19:30:35 +00:00
|
|
|
cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/br2684ctl/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2006-09-23 19:30:35 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/net
|
|
|
|
$(INSTALL_DATA) ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684
|
2006-09-23 19:30:35 +00:00
|
|
|
endef
|
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
$(eval $(call BuildPackage,linux-atm))
|
|
|
|
$(eval $(call BuildPackage,br2684ctl))
|
2006-11-04 16:35:53 +00:00
|
|
|
|
2006-11-12 18:43:54 +00:00
|
|
|
$(eval $(call RequireCommand,automake, \
|
|
|
|
$(PKG_NAME) requires automake. \
|
2006-11-04 16:35:53 +00:00
|
|
|
))
|