openbsd-ports/security/ssh/Makefile

124 lines
3.7 KiB
Makefile
Raw Normal View History

1999-09-02 14:59:31 -04:00
# $OpenBSD: Makefile,v 1.34 1999/09/02 18:59:31 brad Exp $
1997-11-17 00:58:40 -05:00
1999-05-14 14:35:25 -04:00
DISTNAME= ssh-1.2.27
1997-11-17 00:58:40 -05:00
CATEGORIES= security net
1999-05-14 01:27:30 -04:00
MASTER_SITES= ftp://ftp.funet.fi/pub/unix/security/login/ssh/ \
ftp://ftp.cs.hut.fi/pub/ssh/
1999-09-02 14:59:31 -04:00
PATCH_SITES= http://www.ssh.fi/sshprotocols2/patches/
PATCHFILES= patch-${DISTNAME}-bsd.tty.chown
PATCH_DIST_STRIP= -p1
1997-11-17 00:58:40 -05:00
1999-05-14 01:27:30 -04:00
MAINTAINER= todd@openbsd.org
1997-11-22 22:48:50 -05:00
1999-09-02 14:59:31 -04:00
NO_CDROM= "CRYPTO: Third party crypto not allowed."
RESTRICTED= "Crypto; export-controlled"
.if defined(NO_WARNINGS) || (defined(USA_RESIDENT) && ${USA_RESIDENT} == YES)
1997-11-17 00:58:40 -05:00
DISTFILES= ${DISTNAME}.tar.gz rsaref2.tar.gz
1999-05-14 01:27:30 -04:00
MASTER_SITES+= ftp://nic.funet.fi/pub/crypt/mirrors/ftp.dsi.unimi.it/applied-crypto/ \
ftp://idea.dsi.unimi.it/pub/security/crypt/math/
1997-11-17 00:58:40 -05:00
.endif
ETCDIR?= /etc
RSHPROG?= /usr/bin/rsh
1999-05-14 01:27:30 -04:00
IS_INTERACTIVE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--with-etcdir=${ETCDIR} \
--with-rsh=${RSHPROG} \
--with-libwrap
CONFIGURE_ENV= PERL=/usr/bin/perl
1997-11-17 00:58:40 -05:00
.if defined(X11) && ${X11} == NO
CONFIGURE_ARGS= --without-x
.endif
1997-11-17 00:58:40 -05:00
#Uncomment if all your users are in their own group and their homedir
#is writeable by that group. Beware the security implications!
#
1997-11-17 00:58:40 -05:00
#CONFIGURE_ARGS+= --enable-group-writeability
#Uncomment if you want to allow ssh to emulate an unencrypted rsh connection
#over a secure medium. This is normally dangerous since it can lead to the
#disclosure keys and passwords.
#
1997-11-17 00:58:40 -05:00
#CONFIGURE_ARGS+= --with-none
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
CONFIGURE_ARGS+= --with-rsaref
.endif
1999-05-14 01:27:30 -04:00
# Include SOCKS firewall support
.if defined(USE_SOCKS) && ${USE_SOCKS} == YES
CONFIGURE_ARGS+= --with-socks="-L${PREFIX}/lib -lsocks5" --with-socks5
.endif
1997-11-17 00:58:40 -05:00
# Include support for the SecureID card
# Warning: untested !
.if defined(USE_SECUREID) && ${USE_SECUREID} == YES
CONFIGURE_ARGS+= --with-secureid
.endif
# Don't use IDEA. IDEA can be freely used for non-commercial use. However,
# commercial use may require a licence in a number of countries
#
1997-11-17 00:58:40 -05:00
.if defined(DONT_USE_IDEA) && ${DONT_USE_IDEA} == YES
CONFIGURE_ARGS+= --without-idea
.endif
pre-patch:
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
1998-04-02 21:33:02 -05:00
@${CP} ${FILESDIR}/patch-rsaref2 ${PATCHDIR}
.endif
1997-11-17 00:58:40 -05:00
@${MV} -f ${WRKSRC}/make-ssh-known-hosts.pl \
${WRKSRC}/make-ssh-known-hosts.pl.in
post-patch:
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
1998-04-02 21:33:02 -05:00
@${RM} ${PATCHDIR}/patch-rsaref2
.endif
1997-11-17 00:58:40 -05:00
fetch-depends:
1999-05-14 14:35:25 -04:00
.if !defined(NO_WARNINGS)
1997-11-17 00:58:40 -05:00
.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO
@${ECHO}
@${ECHO} You must set variable USA_RESIDENT to YES if you are a USA
1998-04-02 21:33:02 -05:00
@${ECHO} resident or NO otherwise. USA residents must obtain the
@${ECHO} RSAREF2 library to generate this program. \(RSA Inc. holds
1998-08-28 19:00:43 -04:00
@${ECHO} a patent on RSA in the USA - using RSA implementations
@${ECHO} other than RSAREF in the USA will violate the US patent\).
1998-04-02 21:33:02 -05:00
@${ECHO} ""
@${ECHO} RSAREF2 will be automatically obtained and used to generate
@${ECHO} this program when given the command \"make USA_RESIDENT=YES\"
@${ECHO} ""
@${FALSE}
1997-11-17 00:58:40 -05:00
.endif
.endif
1997-11-17 00:58:40 -05:00
post-extract:
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
@${MV} ${WRKDIR}/rsaref2 ${WRKSRC}/rsaref2
1997-11-17 00:58:40 -05:00
.endif
# Put the config files someplace where they can be found to
# create a package.
#
1997-11-17 00:58:40 -05:00
post-install:
@${MKDIR} ${PREFIX}/lib/ssh
@cat ${WRKSRC}/server_config.sample | \
sed "s#_ETCDIR_#${ETCDIR}#g" >/tmp/ssh_inst.$$$$; \
${INSTALL_DATA} /tmp/ssh_inst.$$$$ \
${PREFIX}/lib/ssh/server_config.sample
@${INSTALL_DATA} ${WRKSRC}/host_config.sample ${PREFIX}/lib/ssh
1997-11-22 22:48:50 -05:00
@if [ ! -f ${ETCDIR}/ssh_host_key ]; then \
${ECHO} "Generating a secret host key..."; \
1997-11-22 22:48:50 -05:00
${PREFIX}/bin/ssh-keygen -f ${ETCDIR}/ssh_host_key -N ""; \
1997-11-17 00:58:40 -05:00
fi
${RM} -f ${PREFIX}/man/man1/slogin.1
${LN} -sf ssh.1 ${PREFIX}/man/man1/slogin.1
@${SH} ${PKGDIR}/INSTALL ${DISTNAME} POST-INSTALL
1997-11-17 00:58:40 -05:00
.include <bsd.port.mk>