Makefile 840 B

12345678910111213141516171819202122232425262728
  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_BUILDDEP:= ncurses
  12. PKG_URL:= http://www.bitwizard.nl/mtr/
  13. PKG_SITES:= ftp://ftp.bitwizard.nl/mtr/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,MTR,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ENV+= ac_cv_lib_resolv_res_mkquery=yes
  17. CONFIGURE_ARGS+= --without-gtk
  18. post-install:
  19. ${INSTALL_DIR} ${IDIR_MTR}/usr/sbin
  20. ${INSTALL_BIN} ${WRKINST}/usr/sbin/mtr ${IDIR_MTR}/usr/sbin/
  21. include ${TOPDIR}/mk/pkg-bottom.mk