5f279beea7
fmirror is a program for mirroring files and directories from a remote FTP server. from Vladimir Kotal ok naddy@
35 lines
789 B
Makefile
35 lines
789 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/09/17 12:19:40 bernd Exp $
|
|
|
|
COMMENT= "mirror files and directories from a remote FTP server"
|
|
|
|
DISTNAME= fmirror-0.8.4
|
|
CATEGORIES= net
|
|
|
|
MASTER_SITES= ftp://ftp.oav.net/pkg_freebsd/distfiles/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
NO_REGRESS= Yes
|
|
WANTLIB= c
|
|
|
|
MAINTAINER= Vladimir Kotal <vlada@devnull.cz>
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
MAN1= fmirror.1
|
|
|
|
EXAMPLEDIR= ${PREFIX}/share/examples/fmirror
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fmirror ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${EXAMPLEDIR}
|
|
cd ${WRKSRC}/configs && ${INSTALL_DATA} generic.conf redhat.conf \
|
|
sample.conf ${EXAMPLEDIR}
|
|
|
|
.include <bsd.port.mk>
|