From owner-freebsd-ports Sun Jun 3 17:50:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B98037B405 for ; Sun, 3 Jun 2001 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f540o1i02011; Sun, 3 Jun 2001 17:50:01 -0700 (PDT) (envelope-from gnats) Received: from mail.noos.fr (verlaine.noos.net [212.198.2.73]) by hub.freebsd.org (Postfix) with ESMTP id D15A037B401 for ; Sun, 3 Jun 2001 17:48:49 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 43856737 invoked by uid 0); 4 Jun 2001 00:48:47 -0000 Received: from d081.dhcp212-198-228.noos.fr (HELO gits.dyndns.org) ([212.198.228.81]) (envelope-sender ) by verlaine.noos.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 4 Jun 2001 00:48:47 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.3/8.11.3) id f540mkF07131; Mon, 4 Jun 2001 02:48:46 +0200 (CEST) (envelope-from root) Message-Id: <200106040048.f540mkF07131@gits.dyndns.org> Date: Mon, 4 Jun 2001 02:48:46 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@redirect.to To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/27867: email address change Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 27867 >Category: ports >Synopsis: email address change >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 17:50:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.3-STABLE i386 >Organization: ACME >Environment: System: FreeBSD gits 4.3-STABLE FreeBSD 4.3-STABLE #25: Wed May 23 04:06:20 CEST 2001 root@gits:/disk2/4.x-stable/src/sys/compile/CUSTOM i386 >Description: netforward (poboxes.com) isn't free anymore and I can't pay them since they're payment system didn't work ! so, I've switched to another email redirector which is v3.com (redirect.to). the following patches updates the maintainer email address of ports I maintain. also, there are two pending patches to setiathome and elm+ME included. thanks to commit them. >How-To-Repeat: n/a >Fix: Index: astro/setiathome/Makefile =================================================================== RCS file: /home/ncvs/ports/astro/setiathome/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- astro/setiathome/Makefile 2001/02/15 17:01:03 1.26 +++ astro/setiathome/Makefile 2001/06/02 20:26:04 @@ -15,7 +15,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}.${PORT_HOST} EXTRACT_SUFX= .tar -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to .include Index: astro/setiathome/files/setiathome.sh =================================================================== RCS file: /home/ncvs/ports/astro/setiathome/files/setiathome.sh,v retrieving revision 1.4 diff -u -r1.4 setiathome.sh --- astro/setiathome/files/setiathome.sh 2001/01/28 08:53:51 1.4 +++ astro/setiathome/files/setiathome.sh 2001/04/09 02:00:37 @@ -1,5 +1,6 @@ #!/bin/sh - +# +# $FreeBSD$ # # Start or stop setiathome, or set up working directory and register # @@ -10,6 +11,7 @@ seti_command=setiathome # command name seti_std_args=-email # command arguments for standard mode seti_reg_args=-login # command arguments for register mode +seti_proxy_args= # proxy arguments seti_user=nobody # user id to run as seti_nice=1 # nice level to run at seti_maxprocs=`sysctl -n hw.ncpu` # max. number of processes to start @@ -50,7 +52,7 @@ su -fm ${seti_user} -c "\ (cd ${seti_wrkdir}/${i} && \ exec ${PREFIX}/${seti_bindir}/${seti_command} \ - ${seti_std_args} \ + ${seti_std_args} ${seti_proxy_args} \ ${seti_nice+-nice} ${seti_nice} >/dev/null &)" echo -n " SETI@home" done @@ -65,6 +67,7 @@ mkdir -p ${seti_wrkdir} chown ${seti_user} ${seti_wrkdir} chmod u=Xrw,g=Xr,o=Xr ${seti_wrkdir} + seti_dontlogin=no if [ -f ${seti_wrkdir}/user_info.sah ]; then echo " It seems you have already registered with SETI@home. Would you like" echo -n " to repeat the procedure? [Y/n] " @@ -78,7 +81,7 @@ su -fm ${seti_user} -c "\ cd ${seti_wrkdir} && \ exec ${PREFIX}/${seti_bindir}/${seti_command} \ - ${seti_reg_args}" + ${seti_reg_args} ${seti_proxy_args}" fi if [ ${seti_maxprocs} -gt 1 ]; then Index: lang/gforth/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/gforth/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- lang/gforth/Makefile 2001/03/23 03:05:35 1.4 +++ lang/gforth/Makefile 2001/06/02 20:26:11 @@ -11,7 +11,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= gforth -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to # # Global variables Index: mail/elm+ME/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/elm+ME/Makefile,v retrieving revision 1.68 diff -u -r1.68 Makefile --- mail/elm+ME/Makefile 2001/05/27 12:56:04 1.68 +++ mail/elm+ME/Makefile 2001/06/02 20:26:18 @@ -27,7 +27,12 @@ ftp://ftp.rge.com/pub/mail/elm/elm-2.4ME+/ \ ftp://ftp.uni-trier.de/pub/unix/network/mail/elm-me+/ -MAINTAINER= clefevre@poboxes.com +PATCHFILES= ${DISTNAME:S/+/+PL/}a.patch.gz \ + ${DISTNAME:S/+/+PL/}b.patch.gz +PATCH_SITES= ${MASTER_SITES} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= clefevre@redirect.to # not needed since config.sh is generated by scripts/pre-configure. # BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/ispell Index: mail/elm+ME/distinfo =================================================================== RCS file: /home/ncvs/ports/mail/elm+ME/distinfo,v retrieving revision 1.38 diff -u -r1.38 distinfo --- mail/elm+ME/distinfo 2001/05/27 12:56:04 1.38 +++ mail/elm+ME/distinfo 2001/05/28 22:21:20 @@ -1 +1,3 @@ -MD5 (elm-2.4ME+92.tar.gz) = fd3ebe8318a6f33cc3f42aeda39808d7 +MD5 (elm+ME/elm-2.4ME+92.tar.gz) = fd3ebe8318a6f33cc3f42aeda39808d7 +MD5 (elm+ME/elm-2.4ME+PL92a.patch.gz) = 48f5a4ab56b5b27cb08cd10801d86f92 +MD5 (elm+ME/elm-2.4ME+PL92b.patch.gz) = 41d5aea2af0242e9beda0f0085281495 Index: misc/findutils/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/findutils/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- misc/findutils/Makefile 2001/02/15 17:01:02 1.9 +++ misc/findutils/Makefile 2001/06/02 20:26:22 @@ -12,7 +12,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= findutils -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to GNU_CONFIGURE= yes Index: misc/sh-utils/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/sh-utils/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- misc/sh-utils/Makefile 2001/02/15 17:01:03 1.5 +++ misc/sh-utils/Makefile 2001/06/02 20:26:26 @@ -11,7 +11,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= sh-utils -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext Index: misc/upclient/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/upclient/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- misc/upclient/Makefile 2001/02/15 17:01:03 1.9 +++ misc/upclient/Makefile 2001/06/02 20:26:29 @@ -12,7 +12,7 @@ ftp://ftp.uptimes.net/pub/uptimes/ \ http://www.uptimes.net/download/ -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to ALL_TARGET= bsd BUILD_WRKSRC= ${WRKSRC}/src Index: net/isc-dhcp3/Makefile =================================================================== RCS file: /home/ncvs/ports/net/isc-dhcp3/Makefile,v retrieving revision 1.63 diff -u -r1.63 Makefile --- net/isc-dhcp3/Makefile 2001/05/21 19:30:29 1.63 +++ net/isc-dhcp3/Makefile 2001/06/02 20:26:34 @@ -24,7 +24,7 @@ PKGNAMESUFFIX= 3 DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to # # Global variables Index: security/op/Makefile =================================================================== RCS file: /home/ncvs/ports/security/op/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- security/op/Makefile 2001/04/10 10:52:20 1.2 +++ security/op/Makefile 2001/06/02 20:32:33 @@ -15,7 +15,7 @@ ftp://ftp.nask.pl/pub/mirror/coast.cs.purdue.edu/%SUBDIR%/ MASTER_SITE_SUBDIR= unix/sysutils/${PORTNAME} -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to # # Global variables Index: textproc/gsed/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/gsed/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- textproc/gsed/Makefile 2001/02/15 17:01:02 1.4 +++ textproc/gsed/Makefile 2001/06/02 20:26:44 @@ -12,7 +12,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME} PKGNAMEPREFIX= g -MAINTAINER= clefevre@poboxes.com +MAINTAINER= clefevre@redirect.to # # Global variables >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message