c8e53a1102
- Shorten COMMENT and reformat port description while I'm here PR: 199330 Submitted by: Chris Hutchinson
31 lines
752 B
Makefile
31 lines
752 B
Makefile
# Created by: Xavier Beaudouin <kiwi@oav.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fmirror
|
|
PORTVERSION= 0.8.4
|
|
PORTREVISION= 4
|
|
CATEGORIES= ftp ipv6
|
|
MASTER_SITES= http://BSDforge.com/projects/source/ftp/fmirror/
|
|
|
|
MAINTAINER= kiwi@oav.net
|
|
COMMENT= Program for mirroring files and directories from FTP server
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_PROGRAM} fmirror ${STAGEDIR}${PREFIX}/bin && \
|
|
${INSTALL_MAN} ${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR} && \
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} ChangeLog README ${STAGEDIR}${DOCSDIR} && \
|
|
cd ${WRKSRC}/configs && \
|
|
${INSTALL_DATA} generic.conf redhat.conf sample.conf \
|
|
${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|