Makefile 879 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= mtr
  5. PKG_VERSION:= 0.75
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 23baca52d0922c2ecba7eba05317868c
  8. PKG_DESCR:= ncurses traceroute/ping tool
  9. PKG_SECTION:= net
  10. PKG_DEPENDS:= libncurses
  11. PKG_URL:= http://www.bitwizard.nl/mtr
  12. PKG_SITES:= ftp://ftp.bitwizard.nl/mtr/
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,MTR,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE+= gnu
  16. CONFIGURE_ENV+= ac_cv_lib_resolv_res_mkquery=yes
  17. CONFIGURE_ARGS+= --without-gtk
  18. BUILD_STYLE:= auto
  19. INSTALL_STYLE:= auto
  20. post-install:
  21. ${INSTALL_DIR} ${IDIR_MTR}/usr/sbin
  22. ${INSTALL_BIN} ${WRKINST}/usr/sbin/mtr ${IDIR_MTR}/usr/sbin/
  23. include ${TOPDIR}/mk/pkg-bottom.mk