summaryrefslogblamecommitdiff
path: root/ftp/sftp/Makefile
blob: aa36fb14ff9b4c212fa439770f6eb9e495b2d8aa (plain) (tree)
1
2
3
4
5
6
7
8
9
                                            





                                                                
                    
                     
                            
                                                 
 
                              
 


                          
                                                
      


                                                        
                   
 

                        
                                

           

                                                              
                                                                    
                                                                   
                                                      



                                                                                       

                                                                      


                                                                         
                                             
 
                           
# New ports collection makefile for:	sftp
# Date created:		30 December 1999
# Whom:			Cy Shubert <Cy.Shubert@uumail.gov.bc.ca>
#
# $FreeBSD$
#

PORTNAME=	sftp
PORTVERSION=	0.9.9
CATEGORIES=	ftp security
MASTER_SITES=	ftp://ftp.xbill.org/pub/sftp/old/

MAINTAINER=	cy@FreeBSD.org

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 400014
RUN_DEPENDS=	ssh:${PORTSDIR}/security/openssh
.endif

RESTRICTED=	"Calls external cryptographic routines."

GNU_CONFIGURE=	yes

MAN1=		secftp.1

PLIST=		${WRKDIR}/.PLIST

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/sftp ${PREFIX}/bin/secftp
	${LN} -s ${PREFIX}/bin/secftp ${PREFIX}/bin/rsftp
	${INSTALL_PROGRAM} ${WRKSRC}/sftpserv ${PREFIX}/bin/sftpserv
	${INSTALL_MAN} ${WRKSRC}/sftp.1 ${PREFIX}/man/man1/secftp.1
	${CP} ${PKGDIR}/pkg-plist.in ${PLIST}.unsorted
	@if [ ! -f ${PREFIX}/bin/sftp ]; then \
		${ECHO} "No other sftp found, linking sftp to secftp"; \
		${LN} -s ${PREFIX}/bin/secftp ${PREFIX}/bin/sftp; \
		${LN} -s ${PREFIX}/man/man1/secftp.1.gz ${PREFIX}/man/man1/sftp.1.gz; \
		${ECHO_CMD} bin/sftp >> ${PLIST}.unsorted; \
		${ECHO_CMD} man/man1/sftp.1.gz >> ${PLIST}.unsorted; \
	else \
		${ECHO} "Other sftp found, not linking sftp to secftp"; \
	fi
	@sort -u ${PLIST}.unsorted > ${PLIST}

.include <bsd.port.post.mk>