X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=package%2Flinux-atm%2FMakefile;h=1ac0a219a2900c662d56f73a651e69a9cf4d379b;hb=b860f4a0da49ef909e7c065ec553736496b30c60;hp=b88928df874d87e89c29c717d8d5c00ca9aa1f37;hpb=09604cf8557a037186b543c417ad844458ea786b;p=openwrt.git diff --git a/package/linux-atm/Makefile b/package/linux-atm/Makefile index b88928df87..1ac0a219a2 100644 --- a/package/linux-atm/Makefile +++ b/package/linux-atm/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=linux-atm PKG_VERSION:=2.5.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/$(PKG_NAME) @@ -43,6 +43,18 @@ 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 @@ -62,6 +74,7 @@ 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 @@ -87,9 +100,6 @@ endef define Package/atm-tools/install $(INSTALL_DIR) $(1)/usr/sbin/ $(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 @@ -121,6 +131,14 @@ 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/ @@ -130,4 +148,5 @@ endef $(eval $(call BuildPackage,linux-atm)) $(eval $(call BuildPackage,atm-tools)) +$(eval $(call BuildPackage,atm-diagnostics)) $(eval $(call BuildPackage,br2684ctl))