X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/db6b50eccfe7d7b6b92e4ebf95c1c4ab2278f767..0c3fc1dfb164c04c56b2c14df363021078b87a3f:/package/linux-atm/Makefile?ds=inline diff --git a/package/linux-atm/Makefile b/package/linux-atm/Makefile index fd92cc1ff..fe391b912 100644 --- a/package/linux-atm/Makefile +++ b/package/linux-atm/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,12 +9,14 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=linux-atm -PKG_VERSION:=2.5.1 -PKG_RELEASE:=1 +PKG_VERSION:=2.5.2 +PKG_RELEASE:=2 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/$(PKG_NAME) +PKG_MD5SUM:=d49499368c3cf15f73a05d9bce8824a8 -PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz -PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/ -PKG_MD5SUM:=9560b0e1f410a05b849dfdab465dd758 +PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk @@ -41,6 +43,30 @@ define Package/atm-tools/description This package contains the Linux ATM tools. endef +define Package/atm-diagnostics + SECTION:=net + CATEGORY:=Network + DEPENDS:=linux-atm + TITLE:=Linux ATM Diagnostics + URL:=http://linux-atm.sourceforge.net/ +endef + +define Package/atm-diagnostics/description + This package contains the Linux ATM diagnostics. +endef + +define Package/br2684ctl + SECTION:=net + CATEGORY:=Network + DEPENDS:=linux-atm + TITLE:=ATM Ethernet bridging configuration utility + URL:=http://linux-atm.sourceforge.net/ +endef + +define Package/br2684ctl/description + Support for AAL5 encapsulation (RFC-1483/RFC-2684) over ATM. +endef + define Build/Configure $(call Build/Configure/Default) # prevent autoheader invocation @@ -48,15 +74,14 @@ define Build/Configure endef TARGET_CFLAGS += -I$(LINUX_DIR)/include -I$(LINUX_DIR)/arch/$(LINUX_KARCH)/include +unexport PREFIX define Build/Compile # src/qgen is built with HOSTCC, which does not really like our LDFLAGS $(MAKE) -C $(PKG_BUILD_DIR)/src/qgen \ LDFLAGS="" \ all - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install + $(MAKE) -C $(PKG_BUILD_DIR) OBJCOPY=$(TARGET_CROSS)objcopy all endef define Build/InstallDev @@ -77,7 +102,6 @@ define Package/atm-tools/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/arpd/atmarp{,d} $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/lib/network $(INSTALL_BIN) ./files/ipoa.sh $(1)/lib/network/ - $(INSTALL_DIR) $(1)/usr/bin/ # #The following is disabled by default but still useful for some debugging @@ -109,5 +133,22 @@ define Package/atm-tools/install # $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ttcp_atm $(1)/usr/bin/ endef +define Package/atm-diagnostics/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/aread $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/awrite $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/atmdiag $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/atmdump $(1)/usr/bin/ +endef + +define Package/br2684ctl/install + $(INSTALL_DIR) $(1)/etc/init.d/ + $(INSTALL_BIN) ./files/br2684ctl $(1)/etc/init.d/ + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/ +endef + $(eval $(call BuildPackage,linux-atm)) $(eval $(call BuildPackage,atm-tools)) +$(eval $(call BuildPackage,atm-diagnostics)) +$(eval $(call BuildPackage,br2684ctl))