add sscep, a Simple SCEP (Simple Certificate Enrollment Protocol) client
[openwrt/svn-archive/archive.git] / net / mtr / 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:=mtr
12 PKG_VERSION:=0.69
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.bitwizard.nl/mtr/
17 PKG_MD5SUM:=58904d6d8d70114195cdeb653d56914c
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/mtr
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libncurses
29 TITLE:=Full screen ncurses traceroute tool
30 DESCRIPTION:=\
31 mtr combines the functionality of the 'traceroute' and 'ping' programs \\\
32 in a single network diagnostic tool.\\\
33 As mtr starts, it investigates the network connection between the host \\\
34 mtr runs on and a user-specified destination host. After it \\\
35 determines the address of each network hop between the machines, \\\
36 it sends a sequence ICMP ECHO requests to each one to determine the \\\
37 quality of the link to each machine. As it does this, it prints \\\
38 running statistics about each machine.
39 URL:=http://www.bitwizard.nl/mtr/
40 endef
41
42 define Build/Configure
43 (cd $(PKG_BUILD_DIR); touch \
44 configure.in \
45 aclocal.m4 \
46 Makefile.in \
47 img/Makefile.in \
48 stamp-h.in \
49 config.h.in \
50 configure \
51 );
52 $(call Build/Configure/Default, \
53 --without-gtk \
54 , \
55 ac_cv_lib_resolv_res_mkquery=yes \
56 )
57 endef
58
59 define Build/Compile
60 $(MAKE) -C $(PKG_BUILD_DIR) \
61 DESTDIR="$(PKG_INSTALL_DIR)" \
62 all install
63 endef
64
65 define Package/mtr/install
66 $(INSTALL_DIR) $(1)/usr/sbin
67 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/mtr $(1)/usr/sbin/
68 endef
69
70 $(eval $(call BuildPackage,mtr))