mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
491be68d30
The original author's email address bounces, so this is fixed here. - Move patch from patch-aa to patch-fmirror.c Submitted by: Fred Cox <sailorfred@yahoo.com> Approved by: Xavier Beaudouin <kiwi@oav.net> (maintainer) PR: ports/81787
35 lines
821 B
Makefile
35 lines
821 B
Makefile
# New ports collection makefile for: fmirror
|
|
# Date created: 26 June 2002
|
|
# Whom: Xavier Beaudouin <kiwi@oav.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fmirror
|
|
PORTVERSION= 0.8.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= ftp://ftp.guardian.no/pub/free/ftp/fmirror/ \
|
|
ftp://ftp.oav.net/pkg_freebsd/distfiles/
|
|
|
|
MAINTAINER= kiwi@oav.net
|
|
COMMENT= Program for mirroring files and directories from a remote FTP server
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= fmirror.1
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_PROGRAM} fmirror ${PREFIX}/bin && \
|
|
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR} && \
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} ChangeLog README ${DOCSDIR} && \
|
|
cd ${WRKSRC}/configs && \
|
|
${INSTALL_DATA} generic.conf redhat.conf sample.conf ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|