65ac68bcfc
- bin/find_new_version.pl doesn't check URLs which are already found a previous run. - bin/mail_maintainers.pl mark a port as reported when you have send email to a maintainer.
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# New ports collection makefile for: newportsversioncheck
|
|
# Date created: 12 October 2005
|
|
# Whom: Edwin Groothuis <edwin@mavetju.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= newportsversioncheck
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.mavetju.org/download/
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= Ports new version checker
|
|
|
|
RUN_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3 \
|
|
${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite \
|
|
${SITE_PERL}/MIME/Lite.pm:${PORTSDIR}/mail/p5-MIME-Lite \
|
|
${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww
|
|
|
|
USE_PERL_RUN= yes
|
|
NO_BUILD= yes
|
|
SUB_FILES= pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/newportsversioncheck/bin
|
|
.for f in apply_restrictions.pl check_data.pl delete_dupes.pl find_new_versions.pl find_new_versions.sh init_db.sh mail_maintainers.pl make_html.pl restart_database.pl README CHANGES
|
|
${INSTALL_SCRIPT} ${WRKDIR}/newportsversioncheck/bin/${f} ${PREFIX}/newportsversioncheck/bin
|
|
.endfor
|
|
|
|
post-install:
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|