foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
23 lines
642 B
Makefile
23 lines
642 B
Makefile
# $NetBSD: Makefile,v 1.6 2001/09/27 23:18:31 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= sftp-0.5
|
|
CATEGORIES= net security
|
|
MASTER_SITES= ftp://ftp.xbill.org/pub/sftp/
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
HOMEPAGE= http://www.xbill.org/sftp/
|
|
COMMENT= Ftp replacement that runs over an ssh tunnel
|
|
|
|
CONFLICTS= openssh-[0-9]*
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rsftp ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sftp ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sftpserv ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/sftp.1 ${PREFIX}/man/man1/sftp.1
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/README.sftp
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|