| 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.mkPKG_NAME:=		autosshPKG_VERSION:=		1.4bPKG_RELEASE:=		1PKG_MD5SUM:=		8f9aa006f6f69e912d3c2f504622d6f7PKG_DESCR:=		Automatically restart SSH sessions and tunnelsPKG_SECTION:=		netPKG_DEPENDS:=		openssh-clientPKG_URL:=		http://www.harding.motd.ca/autosshPKG_SITES:=		http://www.harding.motd.ca/autossh/DISTFILES:=		$(PKG_NAME)-$(PKG_VERSION).tgzinclude $(TOPDIR)/mk/package.mk$(eval $(call PKG_template,AUTOSSH,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_STYLE:=	gnuCONFIGURE_ARGS+=	ac_cv_lib_nsl_gethostbyname=noBUILD_STYLE:=		autodo-install:	$(INSTALL_DIR) $(IDIR_AUTOSSH)/usr/bin	$(INSTALL_BIN) $(WRKBUILD)/autossh $(IDIR_AUTOSSH)/usr/bin/include ${TOPDIR}/mk/pkg-bottom.mk
 |