30 lines
739 B
Makefile
30 lines
739 B
Makefile
# $NetBSD: Makefile,v 1.11 2000/08/27 02:46:05 jlam Exp $
|
|
# FreeBSD Id: Makefile,v 1.6 1996/12/01 01:22:54 obrien Exp
|
|
#
|
|
|
|
DISTNAME= mirror-2.9
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://src.doc.ic.ac.uk/computing/archiving/mirror/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
|
|
USE_PERL5= # defined
|
|
|
|
NO_WRKSUBDIR= # defined
|
|
MAKEFILE= makefile
|
|
SCRIPTS_ENV+= PERL5=${PERL5}
|
|
|
|
# If you are tempted to add a target that runs ${SED} (or other stuff)
|
|
# on the files, please look at scripts/configure first.
|
|
|
|
pre-install:
|
|
${MKDIR} ${PREFIX}/lib/mirror
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/lib/mirror/mirror.defaults ]; then \
|
|
${CP} -p \
|
|
${PREFIX}/lib/mirror/mirror.defaults.dist \
|
|
${PREFIX}/lib/mirror/mirror.defaults; \
|
|
fi
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|