diff options
author | edwin <edwin@FreeBSD.org> | 2005-11-03 02:29:18 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-11-03 02:29:18 +0000 |
commit | a1a5720e522a62e07940e5ef10c7f3bcc4785c2a (patch) | |
tree | 78ccaed75dea02e5d5d81c790d08ca61cfddf151 /ports-mgmt | |
parent | 43a6067479a28ccf563521036b51b82732e43404 (diff) | |
download | FreeBSD-ports-a1a5720e522a62e07940e5ef10c7f3bcc4785c2a.zip FreeBSD-ports-a1a5720e522a62e07940e5ef10c7f3bcc4785c2a.tar.gz |
Fix install target.
Noticed by: YAPHR
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/newportsversioncheck/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ports-mgmt/newportsversioncheck/Makefile b/ports-mgmt/newportsversioncheck/Makefile index 6b32cf8..cc84799 100644 --- a/ports-mgmt/newportsversioncheck/Makefile +++ b/ports-mgmt/newportsversioncheck/Makefile @@ -7,6 +7,7 @@ PORTNAME= newportsversioncheck PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.mavetju.org/download/ @@ -25,10 +26,15 @@ 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 +.for f in apply_restrictions.pl check_data.pl check_find_new_versions.sh delete_dupes.pl filter_ports_alreadychecked.pl find_new_versions.pl find_new_versions.sh init_db.sh mail_maintainers.pl make_html.pl maketarball.sh manage_restriction.pl restart_database.pl README CHANGES ${INSTALL_SCRIPT} ${WRKDIR}/newportsversioncheck/bin/${f} ${PREFIX}/newportsversioncheck/bin .endfor + ${MKDIR} ${PREFIX}/newportsversioncheck/etc +.for f in email_footer.txt email_header.txt + ${INSTALL_DATA} ${WRKDIR}/newportsversioncheck/etc/${f} ${PREFIX}/newportsversioncheck/etc +.endfor + post-install: ${CAT} ${PKGMESSAGE} |