Makefile 972 B

123456789101112131415161718192021222324252627282930313233
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= ptunnel
  7. PKG_VERSION:= 0.61
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= b45f73875f2af48f101816672f83a5fe
  10. PKG_DESCR:= Tunnel TCP connections over ICMP packets
  11. PKG_SECTION:= net
  12. PKG_DEPENDS:= libpcap libpthread
  13. PKG_URL:= http://www.cti.ecp.fr/~beauxir5/ptunnel/
  14. PKG_SITES:= http://www.cti.ecp.fr/~beauxir5/ptunnel/
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,PTUNNEL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_STYLE:= gnu
  18. CONFIGURE_ENV+= BUILD_CC="${TARGET_CC}" \
  19. ac_cv_linux_vers=2 \
  20. td_cv_buggygetaddrinfo="no"
  21. BUILD_STYLE:= auto
  22. INSTALL_STYLE:= auto
  23. post-install:
  24. ${INSTALL_DIR} ${IDIR_PTUNNEL}/usr/sbin
  25. ${INSTALL_BIN} ${WRKINST}/usr/sbin/ptunnel ${IDIR_PTUNNEL}/usr/sbin/
  26. include ${TOPDIR}/mk/pkg-bottom.mk