123456789101112131415161718192021222324252627282930 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= mtr
- PKG_VERSION:= 0.75
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 23baca52d0922c2ecba7eba05317868c
- PKG_DESCR:= ncurses traceroute/ping tool
- PKG_SECTION:= net
- PKG_DEPENDS:= libncurses
- PKG_URL:= http://www.bitwizard.nl/mtr
- PKG_SITES:= ftp://ftp.bitwizard.nl/mtr/
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,MTR,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIGURE_STYLE+= gnu
- CONFIGURE_ENV+= ac_cv_lib_resolv_res_mkquery=yes
- CONFIGURE_ARGS+= --without-gtk
- BUILD_STYLE:= auto
- INSTALL_STYLE:= auto
- post-install:
- ${INSTALL_DIR} ${IDIR_MTR}/usr/sbin
- ${INSTALL_BIN} ${WRKINST}/usr/sbin/mtr ${IDIR_MTR}/usr/sbin/
- include ${TOPDIR}/mk/pkg-bottom.mk
|