diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-10-12 00:05:00 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-10-12 00:05:00 +0000 |
commit | 65e95c673877376e2a9bd28e7a725dfd88bf08d1 (patch) | |
tree | 09d5293590064c5fb90a54fa62b1e13f9880dfba /ports-mgmt | |
parent | df76266e49ab3c5ff2b56ba6b4c4e8eb0696e890 (diff) | |
download | ports-65e95c673877376e2a9bd28e7a725dfd88bf08d1.tar.gz ports-65e95c673877376e2a9bd28e7a725dfd88bf08d1.zip |
Notes
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/newportsversioncheck/Makefile | 35 | ||||
-rw-r--r-- | ports-mgmt/newportsversioncheck/distinfo | 2 | ||||
-rw-r--r-- | ports-mgmt/newportsversioncheck/files/pkg-message.in | 11 | ||||
-rw-r--r-- | ports-mgmt/newportsversioncheck/pkg-descr | 5 | ||||
-rw-r--r-- | ports-mgmt/newportsversioncheck/pkg-plist | 12 |
5 files changed, 65 insertions, 0 deletions
diff --git a/ports-mgmt/newportsversioncheck/Makefile b/ports-mgmt/newportsversioncheck/Makefile new file mode 100644 index 000000000000..763034c42fbb --- /dev/null +++ b/ports-mgmt/newportsversioncheck/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: newportsversioncheck +# Date created: 12 October 2005 +# Whom: Edwin Groothuis <edwin@mavetju.org> +# +# $FreeBSD$ +# + +PORTNAME= newportsversioncheck +PORTVERSION= 1.0 +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 + ${INSTALL_SCRIPT} ${WRKDIR}/newportsversioncheck/bin/${f} ${PREFIX}/newportsversioncheck/bin +.endfor + +post-install: + ${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/ports-mgmt/newportsversioncheck/distinfo b/ports-mgmt/newportsversioncheck/distinfo new file mode 100644 index 000000000000..90f8322d82ac --- /dev/null +++ b/ports-mgmt/newportsversioncheck/distinfo @@ -0,0 +1,2 @@ +MD5 (newportsversioncheck-1.0.tar.gz) = 461669154798682df61ac44c5941f1fe +SIZE (newportsversioncheck-1.0.tar.gz) = 8052 diff --git a/ports-mgmt/newportsversioncheck/files/pkg-message.in b/ports-mgmt/newportsversioncheck/files/pkg-message.in new file mode 100644 index 000000000000..b4481c17c3b4 --- /dev/null +++ b/ports-mgmt/newportsversioncheck/files/pkg-message.in @@ -0,0 +1,11 @@ +To continue the installation of sysutils/newportsversioncheck... + +$ mkdir %%PREFIX%%/newportsversioncheck/html +$ mkdir %%PREFIX%%/newportsversioncheck/db +$ cd %%PREFIX%%/newportsversioncheck +$ bin/init_db.sh db/newports.db + +And then edit bin/mail_maintainers.pl and set the variable $ME to +your name and email address. Don't forget the \ in front of the @. + +Then read the file bin/README with regarding to the "Running" section. diff --git a/ports-mgmt/newportsversioncheck/pkg-descr b/ports-mgmt/newportsversioncheck/pkg-descr new file mode 100644 index 000000000000..1a2b4f88edba --- /dev/null +++ b/ports-mgmt/newportsversioncheck/pkg-descr @@ -0,0 +1,5 @@ +New ports distfiles version checker + +Toolset to determine if new distfiles are available for a port. + +Author: edwin@mavetju.org diff --git a/ports-mgmt/newportsversioncheck/pkg-plist b/ports-mgmt/newportsversioncheck/pkg-plist new file mode 100644 index 000000000000..2a04994f353c --- /dev/null +++ b/ports-mgmt/newportsversioncheck/pkg-plist @@ -0,0 +1,12 @@ +newportsversioncheck/bin/README +newportsversioncheck/bin/apply_restrictions.pl +newportsversioncheck/bin/check_data.pl +newportsversioncheck/bin/delete_dupes.pl +newportsversioncheck/bin/find_new_versions.pl +newportsversioncheck/bin/find_new_versions.sh +newportsversioncheck/bin/init_db.sh +newportsversioncheck/bin/mail_maintainers.pl +newportsversioncheck/bin/make_html.pl +newportsversioncheck/bin/restart_database.pl +@dirrm newportsversioncheck/bin +@unexec rmdir %D/newportsversioncheck 2>/dev/null || true |