9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
39 lines
901 B
Makefile
39 lines
901 B
Makefile
# $NetBSD: Makefile,v 1.11 2006/03/04 21:30:37 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= putty-0.58
|
|
PKGREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://the.earth.li/~sgtatham/putty/latest/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.chiark.greenend.org.uk/~sgtatham/putty/
|
|
COMMENT= Free implementation of Telnet and SSH for Win32 and Unix platforms
|
|
|
|
USE_TOOLS+= gmake
|
|
BUILD_DIRS= ${WRKSRC}/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) || ${OPSYS} == "DragonFly"
|
|
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"
|