[package] add dmalloc, patch from Raphael Huck
[openwrt/svn-archive/archive.git] / net / ethtool / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=ethtool
11 PKG_VERSION:=6
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/gkernel
16 PKG_MD5SUM:=3b721ec27f17ebf320ba8c505cf66d9c
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ethtool
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Display or change ethernet card settings
26 URL:=http://sourceforge.net/projects/gkernel/
27 endef
28
29 define Package/ethtool/description
30 ethtool is used for querying settings of an ethernet device and changing them.
31 endef
32
33 define Package/ethtool/install
34 $(INSTALL_DIR) $(1)/usr/sbin
35 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ethtool $(1)/usr/sbin/
36 endef
37
38 $(eval $(call BuildPackage,ethtool))