Makefile cleanups, round 6 and last
[openwrt/svn-archive/archive.git] / net / mii-tool / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=mii-tool
12 PKG_VERSION:=1.9.1.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://freshmeat.net/redir/mii-tool/59072/url_bz2/
17 PKG_MD5SUM:=f65dbeb1c2392acffd4c94138b1f2e52
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/mii-tool
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=configure media type using MII commands
25 URL:=http://freshmeat.net/redir/mii-tool/
26 endef
27
28 define Package/mii-tool/description
29 The mii-tool command allows you to set or autodetect the media type
30 or mii chipset-based ethernet devices. It traditionally had been
31 distributed in the net-tools package. This is a single distribution
32 optimized for embedded systems and fully automated cross/-sysroot-builds
33 endef
34
35 MAKE_FLAGS += CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -I. -idirafter ./include/"
36
37 define Package/mii-tool/install
38 $(INSTALL_DIR) $(1)/usr/sbin
39 $(CP) $(PKG_BUILD_DIR)/mii-tool $(1)/usr/sbin/
40 endef
41
42 $(eval $(call BuildPackage,mii-tool))