pkgsrc/security/putty/Makefile
wiz 07d62ffe48 Update to 0.57:
PuTTY 0.57, released today, fixes two security holes which can
allow a malicious SFTP server to execute code of its choice on a
PSCP or PSFTP client connecting to it. We recommend everybody
upgrade to 0.57 as soon as possible.
2005-03-29 14:40:09 +00:00

40 lines
897 B
Makefile

# $NetBSD: Makefile,v 1.2 2005/03/29 14:40:09 wiz Exp $
#
DISTNAME= putty-0.57
CATEGORIES= security
MASTER_SITES= http://the.earth.li/~sgtatham/putty/latest/
MAINTAINER= xtraeme@NetBSD.org
HOMEPAGE= http://www.chiark.greenend.org.uk/~sgtatham/putty/
COMMENT= Free implementation of Telnet and SSH for Win32 and Unix platforms
USE_BUILDLINK3= yes
USE_GNU_TOOLS+= make
USE_X11= yes
WRKSRC= ${WRKDIR}/${DISTNAME}/unix
MAKEFILE= Makefile.gtk
.include "../../mk/bsd.prefs.mk"
.if empty(OPSYS:MLinux)
CFLAGS+= -DHAVE_NO_SETRESUID
.endif
.if !empty(USE_INET6:M[Yy][Ee][Ss])
CFLAGS+= -DIPV6
.endif
.if !empty(OPSYS:M*BSD)
CFLAGS+= -DOMIT_UTMP
.endif
# Unix98 ptys were added some weeks ago in NetBSD -current,
# so use it if we have the device, otherwise use the old style.
.if !exists(/dev/ptmx)
CFLAGS+= -DBSD_PTYS
.endif
.include "../../x11/gtk/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"