bad8d8729e
o The code is now modularised. The distribution contains 'Mirmon.pm', an OO interface for mirmon objects. Program 'mirmon' still contains all the code ; it is split into 'Mirmon.pm' and 'mirmon.pl'. o The mirror list can now have rsync urls. o The algorithm to balance the probe load over the hourly mirmon runs is improved ; from completely skewed to balanced takes some 5 days.
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2013/07/21 10:44:03 shattered Exp $
|
|
#
|
|
|
|
DISTNAME= mirmon-2.8
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.staff.science.uu.nl/~penni101/mirmon/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.staff.science.uu.nl/~penni101/mirmon/
|
|
COMMENT= Monitor the state of mirror servers
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
REPLACE_PERL+= mirmon
|
|
USE_TOOLS+= perl:run pod2man
|
|
USE_LANGUAGES= # empty
|
|
|
|
EG_DIR= ${PREFIX}/share/examples/mirmon
|
|
MIRMONDIR= ${PREFIX}/share/mirmon
|
|
|
|
SUBST_CLASSES+= mirmon1
|
|
SUBST_STAGE.mirmon1= pre-configure
|
|
SUBST_FILES.mirmon1= mirmon
|
|
SUBST_SED.mirmon1+= -e s!/etc/!${PKG_SYSCONFDIR}/!g
|
|
SUBST_SED.mirmon1+= -e s!/sw/!${LOCALBASE}/!g
|
|
|
|
SUBST_CLASSES+= mirmon2
|
|
SUBST_STAGE.mirmon2= pre-configure
|
|
SUBST_FILES.mirmon2= ${WRKDIR}/mirmon.conf
|
|
SUBST_SED.mirmon2+= -e s!@@MIRMONDIR@@!${MIRMONDIR}!g
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/examples/mirmon \
|
|
share/mirmon/icons
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/mirmon.conf ${WRKDIR}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${POD2MAN} mirmon > ${WRKDIR}/mirmon.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/mirmon ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKDIR}/mirmon.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_DATA} ${WRKDIR}/mirmon.conf ${DESTDIR}${EG_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/countries.list ${DESTDIR}${MIRMONDIR}
|
|
cd ${WRKSRC}/icons && ${INSTALL_DATA} * ${DESTDIR}${MIRMONDIR}/icons
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|