From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 00:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32B8D16A469 for ; Sun, 3 Jun 2007 00:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0DC8C13C447 for ; Sun, 3 Jun 2007 00:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l530A46b081230 for ; Sun, 3 Jun 2007 00:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l530A41P081229; Sun, 3 Jun 2007 00:10:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 00:10:04 GMT Resent-Message-Id: <200706030010.l530A41P081229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, NIIMI Satoshi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13BD616A47D for ; Sun, 3 Jun 2007 00:03:51 +0000 (UTC) (envelope-from sa2c@sa2c.net) Received: from sakura.and.or.jp (sakura.and.or.jp [59.106.20.85]) by mx1.freebsd.org (Postfix) with ESMTP id CBA7713C44C for ; Sun, 3 Jun 2007 00:01:05 +0000 (UTC) (envelope-from sa2c@sa2c.net) Received: from sakura.and.or.jp (localhost [127.0.0.1]) by sakura.and.or.jp (Postfix) with ESMTP id 0E85661C34 for ; Sun, 3 Jun 2007 09:01:04 +0900 (JST) Received: from berkeley.l.sa2c.net (berkeley.vpn.and.or.jp [10.46.49.3]) by sakura.and.or.jp (Postfix) with ESMTP id E398B61C2D for ; Sun, 3 Jun 2007 09:01:03 +0900 (JST) Received: by berkeley.l.sa2c.net (Postfix, from userid 3104) id DA2F640EA; Sun, 3 Jun 2007 09:01:03 +0900 (JST) Message-Id: <20070603000103.DA2F640EA@berkeley.l.sa2c.net> Date: Sun, 3 Jun 2007 09:01:03 +0900 (JST) From: NIIMI Satoshi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113270: mail/p5-Mail-SpamAssassin: periodic script to update rules X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: NIIMI Satoshi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 00:10:05 -0000 >Number: 113270 >Category: ports >Synopsis: mail/p5-Mail-SpamAssassin: periodic script to update rules >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 00:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: NIIMI Satoshi >Release: FreeBSD 6.2-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD berkeley.l.sa2c.net 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #1: Thu May 24 05:05:36 JST 2007 root@berkeley.l.sa2c.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: This PR adds a daily periodic script to run "sa-update" to fetch updated rules. (disabled by default) This PR also adds a reload command to rc script so that updated rules are reloaded gracefully. >How-To-Repeat: >Fix: Please note to run "cvs add files/350.sa-update.in" before commit. --- sa.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin/Makefile,v retrieving revision 1.106 diff -u -r1.106 Makefile --- Makefile 2 Jun 2007 07:09:46 -0000 1.106 +++ Makefile 2 Jun 2007 23:41:05 -0000 @@ -7,6 +7,7 @@ PORTNAME= Mail-SpamAssassin PORTVERSION= 3.2.0 +PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_APACHE:S/$/:apache/} ${MASTER_SITE_PERL_CPAN:S/$/:cpan/} MASTER_SITE_SUBDIR= spamassassin/source/:apache Mail/:cpan @@ -47,6 +48,8 @@ SPF_QUERY "Add SPF query support" off \ RELAY_COUNTRY "Relay country support" off +SUB_FILES= 350.sa-update + .include .if defined (WITH_SPAMC) @@ -237,6 +240,9 @@ @[ -f ${PREFIX}/etc/mail/spamassassin/v320.pre ] || \ ${CP} ${PREFIX}/etc/mail/spamassassin/v320.pre.sample \ ${PREFIX}/etc/mail/spamassassin/v320.pre + @${MKDIR} ${PREFIX}/etc/periodic/daily + @${INSTALL_SCRIPT} ${WRKDIR}/350.sa-update \ + ${PREFIX}/etc/periodic/daily/350.sa-update .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${DOCSDIR}/sql ${DOCSDIR}/ldap Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin/pkg-plist,v retrieving revision 1.38 diff -u -r1.38 pkg-plist --- pkg-plist 2 Jun 2007 07:09:46 -0000 1.38 +++ pkg-plist 2 Jun 2007 23:43:35 -0000 @@ -20,6 +20,7 @@ @unexec if cmp -s %B/v320.pre.sample %B/v320.pre; then rm -f %B/v320.pre; fi etc/mail/spamassassin/v320.pre.sample @exec [ -f %B/v320.pre ] || cp %B/%f %B/v320.pre +etc/periodic/daily/350.sa-update %%SITE_PERL%%/Mail/SpamAssassin.pm %%SITE_PERL%%/Mail/SpamAssassin/AICache.pm %%SITE_PERL%%/Mail/SpamAssassin/ArchiveIterator.pm @@ -181,6 +182,8 @@ @dirrm %%SITE_PERL%%/Mail/SpamAssassin/Bayes @dirrm %%SITE_PERL%%/Mail/SpamAssassin @dirrmtry %%SITE_PERL%%/Mail +@dirrmtry etc/periodic/daily +@dirrmtry etc/periodic @dirrmtry etc/mail/spamassassin @dirrmtry etc/mail @dirrmtry /var/run/spamd Index: files/350.sa-update.in =================================================================== RCS file: files/350.sa-update.in diff -N files/350.sa-update.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/350.sa-update.in 2 Jun 2007 23:12:14 -0000 @@ -0,0 +1,31 @@ +#! /bin/sh +# +# $FreeBSD$ +# +# Update SpamAssassin rules. + +# If there is a global system configuration file, suck it in. +# +if [ -r /etc/defaults/periodic.conf ] +then + . /etc/defaults/periodic.conf + source_periodic_confs +fi + +rc=0 +case "$daily_sa_update_enable" in + [Yy][Ee][Ss]) + if [ ! -x %%PREFIX%%/bin/sa-update ]; then + echo '$daily_sa_update_enable is set but sa-update does not exist' + rc=2 + else + echo '' + echo 'Updating SpamAssassin rules:' + if %%PREFIX%%/bin/sa-update; then + %%PREFIX%%/etc/rc.d/sa-spamd reload || rc=1 + fi + fi + ;; +esac + +exit $rc Index: files/sa-spamd.sh.in =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin/files/sa-spamd.sh.in,v retrieving revision 1.1 diff -u -r1.1 sa-spamd.sh.in --- files/sa-spamd.sh.in 20 Mar 2006 13:03:33 -0000 1.1 +++ files/sa-spamd.sh.in 2 Jun 2007 22:27:35 -0000 @@ -31,6 +31,7 @@ command=%%PREFIX%%/bin/spamd command_args="-d -r ${pidfile}" required_dirs=%%PREFIX%%/share/spamassassin +extra_commands="reload" stop_postcmd=stop_postcmd --- sa.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 00:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B943A16A400 for ; Sun, 3 Jun 2007 00:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9539013C44B for ; Sun, 3 Jun 2007 00:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l530A5iT081283 for ; Sun, 3 Jun 2007 00:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l530A5eI081282; Sun, 3 Jun 2007 00:10:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 00:10:05 GMT Resent-Message-Id: <200706030010.l530A5eI081282@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yuri Pankov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4BED316A4AC for ; Sun, 3 Jun 2007 00:03:51 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id D194913C46E for ; Sun, 3 Jun 2007 00:03:19 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: by ug-out-1314.google.com with SMTP id u2so541165uge for ; Sat, 02 Jun 2007 17:03:18 -0700 (PDT) Received: by 10.67.116.15 with SMTP id t15mr1875578ugm.1180827372938; Sat, 02 Jun 2007 16:36:12 -0700 (PDT) Received: from darklight.abyss ( [194.186.18.2]) by mx.google.com with ESMTP id 54sm1370602ugp.2007.06.02.16.36.10; Sat, 02 Jun 2007 16:36:12 -0700 (PDT) Received: from darklight.abyss (localhost [127.0.0.1]) by darklight.abyss (8.14.1/8.14.1) with ESMTP id l52Na1Aq029764; Sun, 3 Jun 2007 03:36:02 +0400 (MSD) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by darklight.abyss (8.14.1/8.14.1/Submit) id l52NZxWS029763; Sun, 3 Jun 2007 03:35:59 +0400 (MSD) (envelope-from yuri.pankov@gmail.com) Message-Id: <200706022335.l52NZxWS029763@darklight.abyss> Date: Sun, 3 Jun 2007 03:35:59 +0400 (MSD) From: Yuri Pankov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: philip@FreeBSD.org Subject: ports/113271: [PATCH] x11-themes/gtk-flat-theme2: fix objformat handling X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 00:10:05 -0000 >Number: 113271 >Category: ports >Synopsis: [PATCH] x11-themes/gtk-flat-theme2: fix objformat handling >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 00:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Yuri Pankov >Release: FreeBSD 7.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD darklight.abyss 7.0-CURRENT FreeBSD 7.0-CURRENT #1: Sat Jun 2 23:35:03 MSD >Description: Allow build on -CURRENT after objformat removal. Port maintainer (philip@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- gtk-flat-theme2-0.1_8.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-themes/gtk-flat-theme2.orig/Makefile /usr/ports/x11-themes/gtk-flat-theme2/Makefile --- /usr/ports/x11-themes/gtk-flat-theme2.orig/Makefile Sun Jun 3 03:16:16 2007 +++ /usr/ports/x11-themes/gtk-flat-theme2/Makefile Sun Jun 3 03:34:16 2007 @@ -7,7 +7,7 @@ PORTNAME= gtk-flat-theme2 PORTVERSION= 0.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= x11-themes MASTER_SITES= ${MASTER_SITE_THEMES} MASTER_SITE_SUBDIR= gtk2flat @@ -24,8 +24,7 @@ .include -.if ${OSVERSION} >= 700029 -BROKEN= Incorrect objformat handling -.endif +post-extract: + @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure .include --- gtk-flat-theme2-0.1_8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 00:10:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 794A616A469; Sun, 3 Jun 2007 00:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5258713C458; Sun, 3 Jun 2007 00:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l530ADqq081385; Sun, 3 Jun 2007 00:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l530ADof081380; Sun, 3 Jun 2007 00:10:13 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 00:10:13 GMT From: Edwin Groothuis Message-Id: <200706030010.l530ADof081380@freefall.freebsd.org> To: sa2c@sa2c.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113270: mail/p5-Mail-SpamAssassin: periodic script to update rules X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 00:10:13 -0000 Synopsis: mail/p5-Mail-SpamAssassin: periodic script to update rules State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Jun 3 00:10:12 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113270 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 00:10:30 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E561C16A400; Sun, 3 Jun 2007 00:10:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BF31F13C455; Sun, 3 Jun 2007 00:10:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l530AUTC081583; Sun, 3 Jun 2007 00:10:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l530AUpZ081579; Sun, 3 Jun 2007 00:10:30 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 00:10:30 GMT From: Edwin Groothuis Message-Id: <200706030010.l530AUpZ081579@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, philip@FreeBSD.org Cc: Subject: Re: ports/113271: [PATCH] x11-themes/gtk-flat-theme2: fix objformat handling X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 00:10:31 -0000 Synopsis: [PATCH] x11-themes/gtk-flat-theme2: fix objformat handling Responsible-Changed-From-To: freebsd-ports-bugs->philip Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jun 3 00:10:30 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113271 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 00:57:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BEAC16A421; Sun, 3 Jun 2007 00:57:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 026F613C448; Sun, 3 Jun 2007 00:57:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l530vJO7087912; Sun, 3 Jun 2007 00:57:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l530vJU4087908; Sun, 3 Jun 2007 00:57:19 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 00:57:19 GMT From: Edwin Groothuis Message-Id: <200706030057.l530vJU4087908@freefall.freebsd.org> To: ler@lerctr.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113123: [PATCH] sysutils/lsof: update to 4.79A X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 00:57:20 -0000 Synopsis: [PATCH] sysutils/lsof: update to 4.79A State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jun 3 00:57:18 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113123 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 00:59:41 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A97916A469; Sun, 3 Jun 2007 00:59:41 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1DCBF13C44B; Sun, 3 Jun 2007 00:59:41 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l530xead087963; Sun, 3 Jun 2007 00:59:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l530xeYr087959; Sun, 3 Jun 2007 00:59:40 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 00:59:40 GMT From: Edwin Groothuis Message-Id: <200706030059.l530xeYr087959@freefall.freebsd.org> To: bf2006a@yahoo.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Cc: Subject: Re: ports/113052: Move misc/gretl to math/gretl; add secondary category of finance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 00:59:41 -0000 Synopsis: Move misc/gretl to math/gretl; add secondary category of finance State-Changed-From-To: open->repocopy State-Changed-By: edwin State-Changed-When: Sun Jun 3 00:59:19 UTC 2007 State-Changed-Why: over to portmgr for repocopy Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jun 3 00:59:19 UTC 2007 Responsible-Changed-Why: over to portmgr for repocopy http://www.freebsd.org/cgi/query-pr.cgi?pr=113052 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:00:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A2FC16A400 for ; Sun, 3 Jun 2007 01:00:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EE20313C4B9 for ; Sun, 3 Jun 2007 01:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5310EcP088054 for ; Sun, 3 Jun 2007 01:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5310Eei088053; Sun, 3 Jun 2007 01:00:14 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 01:00:14 GMT Message-Id: <200706030100.l5310Eei088053@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113123: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:00:15 -0000 The following reply was made to PR ports/113123; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113123: commit references a PR Date: Sun, 3 Jun 2007 00:57:27 +0000 (UTC) edwin 2007-06-03 00:57:20 UTC FreeBSD ports repository Modified files: sysutils/lsof Makefile distinfo Log: [PATCH] sysutils/lsof: update to 4.79A Update to 4.79A This fixes the GCC 4.2 errors on -CURRENT. (Vic Abell pointed me to the new TarBall). PR: ports/113123 Submitted by: Larry Rosenman Revision Changes Path 1.151 +3 -3 ports/sysutils/lsof/Makefile 1.121 +3 -3 ports/sysutils/lsof/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:07:59 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6337616A475; Sun, 3 Jun 2007 01:07:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3C54713C489; Sun, 3 Jun 2007 01:07:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5317xiN088875; Sun, 3 Jun 2007 01:07:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5317wek088871; Sun, 3 Jun 2007 01:07:58 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 01:07:58 GMT From: Edwin Groothuis Message-Id: <200706030107.l5317wek088871@freefall.freebsd.org> To: mva@sysfault.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112987: [New port]: audio/linux-sdl_mixer - SDL Mixer for Linux X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:07:59 -0000 Synopsis: [New port]: audio/linux-sdl_mixer - SDL Mixer for Linux State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jun 3 01:07:23 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=112987 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:08:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E153A16A468; Sun, 3 Jun 2007 01:08:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B3E5413C4C3; Sun, 3 Jun 2007 01:08:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531869k088909; Sun, 3 Jun 2007 01:08:06 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53186a6088905; Sun, 3 Jun 2007 01:08:06 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 01:08:06 GMT From: Edwin Groothuis Message-Id: <200706030108.l53186a6088905@freefall.freebsd.org> To: mva@sysfault.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112986: [New port]: audio/linux-mikmod - MikMod library RPM for Linux X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:08:07 -0000 Synopsis: [New port]: audio/linux-mikmod - MikMod library RPM for Linux State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jun 3 01:07:23 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=112987 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jun 3 01:07:23 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=112986 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:10:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08B7616A41F for ; Sun, 3 Jun 2007 01:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ED4D813C46A for ; Sun, 3 Jun 2007 01:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531A8sx089054 for ; Sun, 3 Jun 2007 01:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531A8AC089052; Sun, 3 Jun 2007 01:10:08 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 01:10:08 GMT Message-Id: <200706030110.l531A8AC089052@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/112986: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:10:09 -0000 The following reply was made to PR ports/112986; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112986: commit references a PR Date: Sun, 3 Jun 2007 01:04:06 +0000 (UTC) edwin 2007-06-03 01:04:00 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/linux-mikmod Makefile distinfo.i386 Log: [New port]: audio/linux-mikmod - MikMod library RPM for Linux This is the MikMod Sound library for the Linux compatibility wrapper. PR: ports/112986 Submitted by: Marcus von Appen Revision Changes Path 1.860 +1 -0 ports/audio/Makefile 1.1 +25 -0 ports/audio/linux-mikmod/Makefile (new) 1.1 +3 -0 ports/audio/linux-mikmod/distinfo.i386 (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:10:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8088016A469 for ; Sun, 3 Jun 2007 01:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2CA8E13C480 for ; Sun, 3 Jun 2007 01:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531ADBP089100 for ; Sun, 3 Jun 2007 01:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531ADZM089099; Sun, 3 Jun 2007 01:10:13 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 01:10:13 GMT Message-Id: <200706030110.l531ADZM089099@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/112987: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:10:13 -0000 The following reply was made to PR ports/112987; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112987: commit references a PR Date: Sun, 3 Jun 2007 01:07:58 +0000 (UTC) edwin 2007-06-03 01:07:53 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/linux-sdl_mixer Makefile distinfo.i386 Log: [New port]: audio/linux-sdl_mixer - SDL Mixer for Linux This is the SDL Mixer library for the linux compatibility layer. PR: ports/112987 Submitted by: Marcus von Appen Revision Changes Path 1.861 +1 -0 ports/audio/Makefile 1.1 +28 -0 ports/audio/linux-sdl_mixer/Makefile (new) 1.1 +3 -0 ports/audio/linux-sdl_mixer/distinfo.i386 (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:13:49 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E08A316A421; Sun, 3 Jun 2007 01:13:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BA02C13C45E; Sun, 3 Jun 2007 01:13:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531Dn9u090001; Sun, 3 Jun 2007 01:13:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531Dlkh089997; Sun, 3 Jun 2007 01:13:47 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 01:13:47 GMT From: Edwin Groothuis Message-Id: <200706030113.l531Dlkh089997@freefall.freebsd.org> To: tundra@tundraware.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113236: Port Update: x11-fm/twander X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:13:50 -0000 Synopsis: Port Update: x11-fm/twander State-Changed-From-To: feedback->open State-Changed-By: edwin State-Changed-When: Sun Jun 3 01:13:34 UTC 2007 State-Changed-Why: maintainer approved http://www.freebsd.org/cgi/query-pr.cgi?pr=113236 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:18:39 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDB4B16A47A; Sun, 3 Jun 2007 01:18:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8C74D13C480; Sun, 3 Jun 2007 01:18:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531IdOg090215; Sun, 3 Jun 2007 01:18:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531IdAb090211; Sun, 3 Jun 2007 01:18:39 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 01:18:39 GMT From: Edwin Groothuis Message-Id: <200706030118.l531IdAb090211@freefall.freebsd.org> To: tundra@tundraware.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113236: Port Update: x11-fm/twander X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:18:39 -0000 Synopsis: Port Update: x11-fm/twander State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jun 3 01:18:36 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113236 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:20:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B39616A46C for ; Sun, 3 Jun 2007 01:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D4CB913C45D for ; Sun, 3 Jun 2007 01:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531K7g5090295 for ; Sun, 3 Jun 2007 01:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531K72h090293; Sun, 3 Jun 2007 01:20:07 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 01:20:07 GMT Message-Id: <200706030120.l531K72h090293@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113236: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:20:08 -0000 The following reply was made to PR ports/113236; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113236: commit references a PR Date: Sun, 3 Jun 2007 01:18:39 +0000 (UTC) edwin 2007-06-03 01:18:32 UTC FreeBSD ports repository Modified files: x11-fm/twander Makefile distinfo Log: Port Update: x11-fm/twander PR: ports/113236 Submitted by: Tim Daneliuk Revision Changes Path 1.10 +1 -2 ports/x11-fm/twander/Makefile 1.10 +3 -3 ports/x11-fm/twander/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:30:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0932416A421 for ; Sun, 3 Jun 2007 01:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DCD5713C465 for ; Sun, 3 Jun 2007 01:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531U2mh091102 for ; Sun, 3 Jun 2007 01:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531U2Oi091099; Sun, 3 Jun 2007 01:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 01:30:02 GMT Resent-Message-Id: <200706030130.l531U2Oi091099@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BE6816A421 for ; Sun, 3 Jun 2007 01:27:29 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id 72BA013C45E for ; Sun, 3 Jun 2007 01:27:29 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from ler by thebighonker.lerctr.org with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HuesS-000Egh-L9; Sat, 02 Jun 2007 20:27:28 -0500 Message-Id: Date: Sat, 02 Jun 2007 20:27:28 -0500 From: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mark_sf@kikg.ifmo.ru Subject: ports/113272: [PATCH] mail/dbmail: update to 2.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:30:03 -0000 >Number: 113272 >Category: ports >Synopsis: [PATCH] mail/dbmail: update to 2.2.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 01:30:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 6.2-STABLE amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD thebighonker.lerctr.org 6.2-STABLE FreeBSD 6.2-STABLE #15: Sun May 27 15:59:00 CDT 2007 >Description: - Update to 2.2.5 We proudly announce the availability of DBMail 2.2.5. This is mostly a maintenance release aimed at fixing the remaining problems in the IMAP code. After three release-candidates it is however also safe to say this will hopefully turn out to be most reliable release to date. Some noteworthy changes: * Much improved UTF8 handling in the message handling code * Several IMAP protocol errors were fixed * Some really serious memory leaks where removed * dbmail-export was enhanced to allow fine-grained message selection and post-export deletion Changelog since 2.2.4 * 0000583: [Documentation] Missing mention of new encoding options (paul) * 0000558: [IMAP daemon] Invalid UID range when folder is changed (paul) * 0000555: [General] Some errors on dbmail.err (paul) * 0000598: [IMAP daemon] Invalid message range specified (paul) * 0000591: [IMAP daemon] EXPUNGE and multiple sessions breaks IMAP protocol (paul) * 0000578: [IMAP daemon] Thunderbird gives error invalid message range specified (paul) * 0000532: [General] Error logs contains no timestamps (paul) * 0000546: [IMAP daemon] Memory corrupted in IMAP daemon (paul) * 0000550: [IMAP daemon] Messages that are viewed in squirrelmail and thunderbird and not outlook express (paul) * 0000381: [IMAP daemon] Outlook Express don't shows some messages due daemon caching (paul) * 0000603: [general delivery] Autoreply crach (aaron) * 0000602: [IMAP daemon] 2.2.5 rc3 IMAP breaks Treo / Versamail (paul) * 0000599: [IMAP daemon] User name in ACL response should be quoted if necessary (paul) * 0000462: [IMAP daemon] imap daemon appears to leak memory on FETCH command (aaron) * 0000564: [IMAP daemon] mem leak (aaron) * 0000584: [IMAP daemon] Severe memory leak (possibly related to bug#564) (aaron) * 0000592: [IMAP daemon] memory leak (aaron) * 0000581: [LMTP daemon] lmtp locking issue (aaron) * 0000493: [Sieve (delivery, dbmail-sievecmd, dbmail-timsieved)] records in dbmail_replycache are not reused or deleted (aaron) * 0000575: [IMAP daemon] Search using PINE returns incorrect results (paul) * 0000538: [general delivery] incorrect field cache values for messages containing 8-bit headers (paul) * 0000548: [IMAP daemon] WISH: Better parsing 8bit header characters (paul) * 0000380: [Command-Line programs (dbmail-users, dbmail-util)] Feature request: Extending dbmail-users to delete mail older than n days. (aaron) * 0000517: [POP3 daemon] pop3d or imapd sometimes exit unexpected (aaron) * 0000587: [General] Slow IO on the tmpfiles (aaron) * 0000590: [IMAP daemon] double frees in build_args_array_ext() (aaron) * 0000588: [IMAP daemon] Crashes always at startup (aaron) * 0000586: [IMAP daemon] exists / recent are always 0 in dbmail_imap_session_mailbox_status (aaron) * 0000576: [IMAP daemon] IMAP Daemon offers RECENT message after repeated NOOP (paul) * 0000585: [LMTP daemon] Misleading error message from dbmail-lmtpd when sending invalid commands (aaron) * 0000527: [Database layer] dbpgsql doesn't use the sqlsocket config variable (paul) * 0000566: [IMAP daemon] unable to check mail (aaron) * 0000568: [IMAP daemon] Sometimes imapd disconects the connection (aaron) * 0000508: [Sieve (delivery, dbmail-sievecmd, dbmail-timsieved)] vacation sieve script always sends reply instead of just once (aaron) * 0000570: [general delivery] errors from dbmail-smtp in syslog (aaron) * 0000559: [General] DBMail build error with ld -Wl,--as-needed (aaron) * 0000535: [IMAP daemon] EXPUNGE response is incorrect (paul) * 0000554: [installation scripts] "-lcrypt" not necessary on OpenBSD (aaron) * 0000556: [POP3 daemon] CAPA answer in wrong format (paul) * 0000552: [IMAP daemon] IMAP COPY says BAD too many arguments to COPY since 2481 (paul) * 0000557: [IMAP daemon] IMAP SORT returns some message ids more times (paul) * 0000551: [IMAP daemon] Leftmost and rightmost quotes are cut off (paul) * 0000543: [POP3 daemon] Logging does not say anything about the remote users ip (paul) * 0000544: [PIPE delivery (dbmail-smtp)] Segmet fault on empty message (paul) * 0000539: [IMAP daemon] Mailclient times out opening large mailboxes (paul) * 0000549: [general delivery] Short writes reported, possibly due to embedded \0 characters in messages (aaron) * 0000545: [IMAP daemon] Security hole (paul) * 0000502: [general delivery] changing Content-type on delivery (paul) * 0000537: [Command-Line programs (dbmail-users, dbmail-util)] Starting dbmail-timsieved: *** glibc detected *** /usr/sbin/dbmail-timsieved: double free or corruption (out): 0x00007fff267af10 (aaron) * 0000534: [IMAP daemon] 2.2.4 imapd *can not* APPEND message with 'Recent' flag set (aaron) * 0000530: [POP3 daemon] When in "UPDATE" state, the return value of db_update_pop(PopSession_t * session_ptr) is not checked (paul) Port maintainer (mark_sf@kikg.ifmo.ru) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- dbmail-2.2.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/dbmail/Makefile /usr/home/ler/ports/mail/dbmail/Makefile --- /usr/ports/mail/dbmail/Makefile Fri Mar 16 08:33:15 2007 +++ /usr/home/ler/ports/mail/dbmail/Makefile Sat Jun 2 20:24:31 2007 @@ -6,7 +6,7 @@ # PORTNAME= dbmail -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.5 CATEGORIES= mail MASTER_SITES= http://www.dbmail.org/download/2.2/ @@ -34,6 +34,7 @@ CFLAGS+= -fPIC -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" LOCALBASE=${LOCALBASE} +CONFIGURE_ARGS+= --with-pkglibdir=${LOCALBASE}/lib/dbmail MAKE_ARGS+= mandir=${PREFIX}/man PORTDOCS= AUTHORS BUGS COPYING INSTALL NEWS README \ diff -ruN --exclude=CVS /usr/ports/mail/dbmail/distinfo /usr/home/ler/ports/mail/dbmail/distinfo --- /usr/ports/mail/dbmail/distinfo Fri Mar 16 08:33:16 2007 +++ /usr/home/ler/ports/mail/dbmail/distinfo Sat Jun 2 20:08:20 2007 @@ -1,3 +1,3 @@ -MD5 (dbmail-2.2.4.tar.gz) = b7f56437df764e7046438f81f4b7df18 -SHA256 (dbmail-2.2.4.tar.gz) = 2fdf2f22e9d0437e8331d33a956f12ca85d7370651c943f09f8886e94a93f379 -SIZE (dbmail-2.2.4.tar.gz) = 873538 +MD5 (dbmail-2.2.5.tar.gz) = 1abce87992700ff84f6164a03eab0152 +SHA256 (dbmail-2.2.5.tar.gz) = e5dc9ae6bf70d5930cdb609cb72db98251163cc95b8a73fb06fc66f89f9460e0 +SIZE (dbmail-2.2.5.tar.gz) = 883843 --- dbmail-2.2.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:30:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E95F216A469; Sun, 3 Jun 2007 01:30:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C284C13C45A; Sun, 3 Jun 2007 01:30:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531U9Hq091370; Sun, 3 Jun 2007 01:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531U9v8091365; Sun, 3 Jun 2007 01:30:09 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 01:30:09 GMT From: Edwin Groothuis Message-Id: <200706030130.l531U9v8091365@freefall.freebsd.org> To: ler@lerctr.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113272: [PATCH] mail/dbmail: update to 2.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:30:10 -0000 Synopsis: [PATCH] mail/dbmail: update to 2.2.5 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Jun 3 01:30:09 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113272 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:53:46 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7830516A41F; Sun, 3 Jun 2007 01:53:46 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4FFD213C43E; Sun, 3 Jun 2007 01:53:46 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from freefall.freebsd.org (araujo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531rkCQ094783; Sun, 3 Jun 2007 01:53:46 GMT (envelope-from araujo@freefall.freebsd.org) Received: (from araujo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531rkPB094779; Sun, 3 Jun 2007 01:53:46 GMT (envelope-from araujo) Date: Sun, 3 Jun 2007 01:53:46 GMT From: Marcelo Araujo Message-Id: <200706030153.l531rkPB094779@freefall.freebsd.org> To: araujo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113240: Upgrade audio/audacity to 1.2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:53:46 -0000 Synopsis: Upgrade audio/audacity to 1.2.6 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: araujo Responsible-Changed-When: Sun Jun 3 01:53:45 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113240 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 01:54:41 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 505DC16A421; Sun, 3 Jun 2007 01:54:41 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 297C913C447; Sun, 3 Jun 2007 01:54:41 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from freefall.freebsd.org (araujo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l531sf2f094876; Sun, 3 Jun 2007 01:54:41 GMT (envelope-from araujo@freefall.freebsd.org) Received: (from araujo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l531sfmJ094872; Sun, 3 Jun 2007 01:54:41 GMT (envelope-from araujo) Date: Sun, 3 Jun 2007 01:54:41 GMT From: Marcelo Araujo Message-Id: <200706030154.l531sfmJ094872@freefall.freebsd.org> To: araujo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113231: Update port: security/webfwlog new upstream version 0.93 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 01:54:41 -0000 Synopsis: Update port: security/webfwlog new upstream version 0.93 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: araujo Responsible-Changed-When: Sun Jun 3 01:54:40 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113231 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 09:10:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EDEBF16A400 for ; Sun, 3 Jun 2007 09:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D004413C448 for ; Sun, 3 Jun 2007 09:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l539A339053305 for ; Sun, 3 Jun 2007 09:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l539A3Xe053304; Sun, 3 Jun 2007 09:10:03 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 09:10:03 GMT Resent-Message-Id: <200706030910.l539A3Xe053304@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kiyoshi Matsui Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF6F716A41F for ; Sun, 3 Jun 2007 09:04:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id C00F413C45E for ; Sun, 3 Jun 2007 09:04:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l53947h2040226 for ; Sun, 3 Jun 2007 09:04:07 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l53947Bl040225; Sun, 3 Jun 2007 09:04:07 GMT (envelope-from nobody) Message-Id: <200706030904.l53947Bl040225@www.freebsd.org> Date: Sun, 3 Jun 2007 09:04:07 GMT From: Kiyoshi Matsui To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113279: [maintainer update] devel/mcpp: adding a patch-file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 09:10:04 -0000 >Number: 113279 >Category: ports >Synopsis: [maintainer update] devel/mcpp: adding a patch-file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 09:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Kiyoshi Matsui >Release: FreeBSD 6.2-RELEASE on i386 only >Organization: none >Environment: none >Description: My port devel/mcpp (mcpp-2.6.4) was reported to fail to be built on amd64. This failure derives from the wrong definition of __UCHAR_MAX in _limits.h for amd64. Also _limits.h for alpha, ia64 and sparc64 have the same wrong definitions, while that for i386, arm and powerpc have right definitions. See: http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/113256 For the time being, until those bugs of system headers are fixed, mcpp source needs a patch on those architectures. >How-To-Repeat: >Fix: Place this text as ports/devel/mcpp/files/patch-src-system.H. I copy and paste the file here, since attaching file does not work somehow. TABs are lost in this. Please en-tab in the first two tag-lines. --- src/system.H.orig Wed May 2 21:37:29 2007 +++ src/system.H Sun Jun 3 16:51:33 2007 @@ -49,7 +49,16 @@ /* Some system has a wrong definition of UCHAR_MAX. See cpp-test.html#5.1.3 */ #if UCHARMAX < -255 +#if __FreeBSD__ +/* + * This is a temporary patch for FreeBSD on amd64, alpha, ia64 and sparc64. + * limits.h of these systems wrongly define UCHAR_MAX as 255U. + */ +#undef UCHARMAX +#define UCHARMAX 255 +#else #error "The definition of UCHARMAX (possibly UCHAR_MAX too) is wrong. Define it as signed int value as 255, not as unsigned value as 255U." +#endif #endif /* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 09:25:28 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 922BB16A41F; Sun, 3 Jun 2007 09:25:28 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 67BC713C465; Sun, 3 Jun 2007 09:25:28 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l539PSCf055012; Sun, 3 Jun 2007 09:25:28 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l539PSdR055008; Sun, 3 Jun 2007 09:25:28 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 09:25:28 GMT From: Martin Wilke Message-Id: <200706030925.l539PSdR055008@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113279: [maintainer update] devel/mcpp: adding a patch-file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 09:25:28 -0000 Synopsis: [maintainer update] devel/mcpp: adding a patch-file Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 09:25:27 UTC 2007 Responsible-Changed-Why: my fault. take http://www.freebsd.org/cgi/query-pr.cgi?pr=113279 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 10:03:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E84E16A46F; Sun, 3 Jun 2007 10:03:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DB14D13C468; Sun, 3 Jun 2007 10:03:20 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (clsung@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53A3KQE059433; Sun, 3 Jun 2007 10:03:20 GMT (envelope-from clsung@freefall.freebsd.org) Received: (from clsung@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53A3K0J059429; Sun, 3 Jun 2007 10:03:20 GMT (envelope-from clsung) Date: Sun, 3 Jun 2007 10:03:20 GMT From: Cheng-Lung Sung Message-Id: <200706031003.l53A3K0J059429@freefall.freebsd.org> To: scheidell@secnap.net, clsung@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113270: mail/p5-Mail-SpamAssassin: periodic script to update rules X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 10:03:21 -0000 Synopsis: mail/p5-Mail-SpamAssassin: periodic script to update rules Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: clsung Responsible-Changed-When: Sun Jun 3 10:03:20 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113270 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 10:10:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DE1316A469 for ; Sun, 3 Jun 2007 10:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6BF7A13C44B for ; Sun, 3 Jun 2007 10:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53AA45R059503 for ; Sun, 3 Jun 2007 10:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53AA4IS059502; Sun, 3 Jun 2007 10:10:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 10:10:04 GMT Resent-Message-Id: <200706031010.l53AA4IS059502@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Cheng-Lung Sung Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F3C516A41F for ; Sun, 3 Jun 2007 10:06:33 +0000 (UTC) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: from going04.iis.sinica.edu.tw (going04.iis.sinica.edu.tw [140.109.19.154]) by mx1.freebsd.org (Postfix) with ESMTP id 5387713C44B for ; Sun, 3 Jun 2007 10:06:33 +0000 (UTC) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: by going04.iis.sinica.edu.tw (Postfix, from userid 1002) id D1AD71150D; Sun, 3 Jun 2007 18:06:37 +0800 (CST) Message-Id: <20070603100637.D1AD71150D@going04.iis.sinica.edu.tw> Date: Sun, 3 Jun 2007 18:06:37 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: snowfly@yuntech.edu.tw Subject: ports/113280: [PATCH] www/p5-Net-Flickr-API: update to 1.65 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 10:10:08 -0000 >Number: 113280 >Category: ports >Synopsis: [PATCH] www/p5-Net-Flickr-API: update to 1.65 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 10:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 6.2-RELEASE-p2 amd64 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD going04.iis.sinica.edu.tw 6.2-RELEASE-p2 FreeBSD 6.2-RELEASE-p2 #1: Tue Mar 6 14:57:42 CST >Description: - Update to 1.65 Port maintainer (snowfly@yuntech.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Net-Flickr-API-1.65.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-Net-Flickr-API/Makefile,v retrieving revision 1.5 diff -u -u -r1.5 Makefile --- Makefile 24 Dec 2006 07:43:25 -0000 1.5 +++ Makefile 3 Jun 2007 10:06:17 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Net-Flickr-API -PORTVERSION= 1.63 +PORTVERSION= 1.65 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net @@ -26,10 +26,4 @@ MAN3= Net::Flickr::API.3 -.include - -.if ${PERL_LEVEL} < 500600 -IGNORE= requires at least Perl 5.6 due to dependencies. Please install lang/perl5.8 and try again -.endif - -.include +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/p5-Net-Flickr-API/distinfo,v retrieving revision 1.5 diff -u -u -r1.5 distinfo --- distinfo 24 Dec 2006 07:43:25 -0000 1.5 +++ distinfo 3 Jun 2007 10:06:17 -0000 @@ -1,3 +1,3 @@ -MD5 (Net-Flickr-API-1.63.tar.gz) = 1ba5bb9b39ce7ca9fd1d2dfd3aeaeba8 -SHA256 (Net-Flickr-API-1.63.tar.gz) = 6bc7b205149fd8dca18c8c7678fafc7a6cfd09cabee66c4de762a592db67f0cf -SIZE (Net-Flickr-API-1.63.tar.gz) = 6667 +MD5 (Net-Flickr-API-1.65.tar.gz) = fff95113bb35afc5e1562538c2c84de9 +SHA256 (Net-Flickr-API-1.65.tar.gz) = e4612f3b8d8c4340f53f59a955def69e2350b932330f8599b3ab9cdbd4b6948a +SIZE (Net-Flickr-API-1.65.tar.gz) = 6921 --- p5-Net-Flickr-API-1.65.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 10:10:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99AC116A46C for ; Sun, 3 Jun 2007 10:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CDD0613C455 for ; Sun, 3 Jun 2007 10:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53AA54V059556 for ; Sun, 3 Jun 2007 10:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53AA5KU059555; Sun, 3 Jun 2007 10:10:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 10:10:05 GMT Resent-Message-Id: <200706031010.l53AA5KU059555@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Cheng-Lung Sung Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BAD7316A421 for ; Sun, 3 Jun 2007 10:06:51 +0000 (UTC) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: from going04.iis.sinica.edu.tw (going04.iis.sinica.edu.tw [140.109.19.154]) by mx1.freebsd.org (Postfix) with ESMTP id 8F30713C45E for ; Sun, 3 Jun 2007 10:06:51 +0000 (UTC) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: by going04.iis.sinica.edu.tw (Postfix, from userid 1002) id 50F6F1150D; Sun, 3 Jun 2007 18:06:57 +0800 (CST) Message-Id: <20070603100657.50F6F1150D@going04.iis.sinica.edu.tw> Date: Sun, 3 Jun 2007 18:06:57 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: snowfly@yuntech.edu.tw Subject: ports/113281: [PATCH] www/p5-Net-Flickr-RDF: update to 2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 10:10:08 -0000 >Number: 113281 >Category: ports >Synopsis: [PATCH] www/p5-Net-Flickr-RDF: update to 2.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 10:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 6.2-RELEASE-p2 amd64 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD going04.iis.sinica.edu.tw 6.2-RELEASE-p2 FreeBSD 6.2-RELEASE-p2 #1: Tue Mar 6 14:57:42 CST >Description: - Update to 2.0 Port maintainer (snowfly@yuntech.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Net-Flickr-RDF-2.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-Net-Flickr-RDF/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 2 Jan 2007 08:46:00 -0000 1.4 +++ Makefile 3 Jun 2007 10:06:44 -0000 @@ -6,12 +6,11 @@ # PORTNAME= Net-Flickr-RDF -PORTVERSION= 1.9.6 +PORTVERSION= 2.0 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-1.96 MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Describe Flickr photos as RDF @@ -24,10 +23,4 @@ MAN3= Net::Flickr::RDF.3 -.include - -.if ${PERL_LEVEL} < 500600 -IGNORE= requires at least Perl 5.6 due to dependencies. Please install lang/perl5.8 and try again -.endif - -.include +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/p5-Net-Flickr-RDF/distinfo,v retrieving revision 1.4 diff -u -u -r1.4 distinfo --- distinfo 2 Jan 2007 08:46:00 -0000 1.4 +++ distinfo 3 Jun 2007 10:06:44 -0000 @@ -1,3 +1,3 @@ -MD5 (Net-Flickr-RDF-1.96.tar.gz) = fb6c3eae2b0f734289dcd5dd8c5a2083 -SHA256 (Net-Flickr-RDF-1.96.tar.gz) = 23a103f763832a38e5dd978b0f11c82a6d297119c0daf6375d00741be750adee -SIZE (Net-Flickr-RDF-1.96.tar.gz) = 23491 +MD5 (Net-Flickr-RDF-2.0.tar.gz) = 7f8f0fe7dc521fa0ee87fa924fd16d97 +SHA256 (Net-Flickr-RDF-2.0.tar.gz) = d330725557f41b5ee96e79b23825f4bd1340153d403056eb841178a2c45cebad +SIZE (Net-Flickr-RDF-2.0.tar.gz) = 24885 --- p5-Net-Flickr-RDF-2.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 10:10:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2FEB716A41F; Sun, 3 Jun 2007 10:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F416713C448; Sun, 3 Jun 2007 10:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53AAFtA059703; Sun, 3 Jun 2007 10:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53AAFQp059699; Sun, 3 Jun 2007 10:10:15 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 10:10:15 GMT From: Edwin Groothuis Message-Id: <200706031010.l53AAFQp059699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113280: [PATCH] www/p5-Net-Flickr-API: update to 1.65 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 10:10:16 -0000 Synopsis: [PATCH] www/p5-Net-Flickr-API: update to 1.65 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jun 3 10:10:15 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113280 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 10:10:37 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 965D716A400; Sun, 3 Jun 2007 10:10:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6FBCB13C455; Sun, 3 Jun 2007 10:10:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53AAbDm060006; Sun, 3 Jun 2007 10:10:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53AAbRB060001; Sun, 3 Jun 2007 10:10:37 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 10:10:37 GMT From: Edwin Groothuis Message-Id: <200706031010.l53AAbRB060001@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113281: [PATCH] www/p5-Net-Flickr-RDF: update to 2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 10:10:37 -0000 Synopsis: [PATCH] www/p5-Net-Flickr-RDF: update to 2.0 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jun 3 10:10:36 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113281 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 10:50:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DAEB16A400 for ; Sun, 3 Jun 2007 10:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5D47613C448 for ; Sun, 3 Jun 2007 10:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ao5f7064260 for ; Sun, 3 Jun 2007 10:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ao5d7064259; Sun, 3 Jun 2007 10:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 10:50:05 GMT Resent-Message-Id: <200706031050.l53Ao5d7064259@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bf Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1ECB16A400 for ; Sun, 3 Jun 2007 10:47:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id BC40E13C468 for ; Sun, 3 Jun 2007 10:47:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l53AlOlD061029 for ; Sun, 3 Jun 2007 10:47:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l53AlOTb061028; Sun, 3 Jun 2007 10:47:24 GMT (envelope-from nobody) Message-Id: <200706031047.l53AlOTb061028@www.freebsd.org> Date: Sun, 3 Jun 2007 10:47:24 GMT From: bf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113282: [PATCH] update palm/txt2pdbdoc to 1.4.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 10:50:05 -0000 >Number: 113282 >Category: ports >Synopsis: [PATCH] update palm/txt2pdbdoc to 1.4.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 10:50:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: bf >Release: 6.2-Stable i386 >Organization: - >Environment: >Description: diff -ruN txt2pdbdoc.orig/Makefile txt2pdbdoc/Makefile --- txt2pdbdoc.orig/Makefile Tue Nov 15 23:50:54 2005 +++ txt2pdbdoc/Makefile Fri Jun 1 07:37:34 2007 @@ -6,19 +6,18 @@ # PORTNAME= txt2pdbdoc -PORTVERSION= 1.3 -PORTREVISION= 1 +PORTVERSION= 1.4.4 CATEGORIES= palm converters -MASTER_SITES= http://www.larted.org.uk/~dom/misc/palm/files/ +MASTER_SITES= http://homepage.mac.com/pauljlucas/software/ MAINTAINER= ports@FreeBSD.org COMMENT= Converts plain text and HTML files to Palm Pilot Doc formats USE_GMAKE= yes -MAKE_ARGS= MAKE=gmake CC=${CC} CFLAGS="${CFLAGS}" I_ROOT=${PREFIX} +GNU_CONFIGURE= yes PLIST_FILES= bin/pdbtxt2html bin/html2pdbtxt bin/txt2pdbdoc MAN1= txt2pdbdoc.1 pdbtxt2html.1 html2pdbtxt.1 -MAN4= pdb.4 doc.4 +MAN4= doc.4 .include diff -ruN txt2pdbdoc.orig/distinfo txt2pdbdoc/distinfo --- txt2pdbdoc.orig/distinfo Fri Nov 25 12:09:21 2005 +++ txt2pdbdoc/distinfo Fri Jun 1 07:38:13 2007 @@ -1,3 +1,3 @@ -MD5 (txt2pdbdoc-1.3.tar.gz) = 490642acde87896bdd00a24b727c9bb2 -SHA256 (txt2pdbdoc-1.3.tar.gz) = 945828c6a2476ed5769d49e8807791e9baef16e24c46c267f43951a3c550bbc7 -SIZE (txt2pdbdoc-1.3.tar.gz) = 29657 +MD5 (txt2pdbdoc-1.4.4.tar.gz) = 66bc7890210af2125b0cabcdf581651a +SHA256 (txt2pdbdoc-1.4.4.tar.gz) = db9e58a073d722c59c7fd1ffd6ebe3fc1be2007e826d6be5f94de26ea5a0c895 +SIZE (txt2pdbdoc-1.4.4.tar.gz) = 77486 diff -ruN txt2pdbdoc.orig/pkg-descr txt2pdbdoc/pkg-descr --- txt2pdbdoc.orig/pkg-descr Mon Jan 8 14:04:06 2001 +++ txt2pdbdoc/pkg-descr Fri Jun 1 07:46:37 2007 @@ -1,2 +1,4 @@ -Converts plain text files to/from the Doc format used by PalmPilots; -also utilities to convert HTML files to Doc and vice versa; +Converts plain text and HTML files to the Doc format used by PalmPilots, +and vice versa. + +WWW: http://homepage.mac.com/pauljlucas/software/txt2pdbdoc >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 11:00:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B77216A421 for ; Sun, 3 Jun 2007 11:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D7E9413C447 for ; Sun, 3 Jun 2007 11:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53B09kl065167 for ; Sun, 3 Jun 2007 11:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53B09CK065166; Sun, 3 Jun 2007 11:00:09 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 11:00:09 GMT Resent-Message-Id: <200706031100.l53B09CK065166@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bf Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A06716A46B for ; Sun, 3 Jun 2007 10:53:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 1DFD913C45E for ; Sun, 3 Jun 2007 10:53:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l53ArfTP061445 for ; Sun, 3 Jun 2007 10:53:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l53ArflZ061444; Sun, 3 Jun 2007 10:53:41 GMT (envelope-from nobody) Message-Id: <200706031053.l53ArflZ061444@www.freebsd.org> Date: Sun, 3 Jun 2007 10:53:41 GMT From: bf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113283: [PATCH] two patches for net/socat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 11:00:10 -0000 >Number: 113283 >Category: ports >Synopsis: [PATCH] two patches for net/socat >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 11:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: bf >Release: 6.2-Stable i386 >Organization: - >Environment: >Description: Incorporate Sainsbury's service name resolution patch: http://www.dest-unreach.org/socat/contrib/socat-servicenames.html and Lucq's file descriptor patch: http://www.dest-unreach.org/socat/contrib/socat-maxfds.html into the port. diff -ruN socat.orig/Makefile socat/Makefile --- socat.orig/Makefile Sun Apr 8 21:17:59 2007 +++ socat/Makefile Sat Jun 2 23:17:11 2007 @@ -8,6 +8,7 @@ PORTNAME= socat PORTVERSION= 1.6.0.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.dest-unreach.org/socat/download/ diff -ruN socat.orig/files/patch-socat-maxfds socat/files/patch-socat-maxfds --- socat.orig/files/patch-socat-maxfds Wed Dec 31 19:00:00 1969 +++ socat/files/patch-socat-maxfds Sat Jun 2 23:13:01 2007 @@ -0,0 +1,442 @@ +diff -r -N -U 3 socat-1.6.0.0/procan.c socat-1.6.0.0+maxfds/procan.c +--- procan.c.orig 2006-12-28 08:25:01.000000000 +0100 ++++ procan.c 2007-04-05 12:41:26.000000000 +0200 +@@ -161,6 +161,10 @@ + #endif + } + ++ /* C defines */ ++ fprintf(outfile, "#define FD_SETSIZE %u\n", FD_SETSIZE); ++ fprintf(outfile, "#define FOPEN_MAX %u\n", FOPEN_MAX); ++ + /* file descriptors */ + + /* what was this for?? */ +diff -r -N -U 3 socat-1.6.0.0/socat.c socat-1.6.0.0+maxfds/socat.c +--- socat.c.orig 2007-03-06 22:03:28.000000000 +0100 ++++ socat.c 2007-03-31 22:24:37.000000000 +0200 +@@ -642,8 +642,8 @@ + returns >0 if child died and left data + */ + int childleftdata(xiofile_t *xfd) { +- fd_set in, out, expt; +- int retval; ++ fd_set *in = NULL, *out = NULL, *expt = NULL; ++ int max, retval; + /* have to check if a child process died before, but left read data */ + if (XIO_READABLE(xfd) && + (XIO_RDSTREAM(xfd)->howtoend == END_KILL || +@@ -652,25 +652,59 @@ + XIO_RDSTREAM(xfd)->para.exec.pid == 0) { + struct timeval time0 = { 0,0 }; + +- FD_ZERO(&in); FD_ZERO(&out); FD_ZERO(&expt); ++#ifndef howmany ++#define howmany(x, y) (((x) + ((y) - 1)) / (y)) ++#endif ++ ++#ifndef NFDBITS ++# ifndef HAVE_FDS_BITS ++# define NFDBITS (sizeof(__fd_mask) * 8) ++# else ++# define NFDBITS (sizeof(fd_mask) * 8) ++# endif ++#endif ++ ++#ifndef HAVE_FDS_BITS ++# define FD_MASK_SIZE (sizeof(__fd_mask)) ++#else ++# define FD_MASK_SIZE (sizeof(fd_mask)) ++#endif ++ ++ max = XIO_GETRDFD(xfd); ++ in = (fd_set *)Calloc(howmany(max+1, NFDBITS), FD_MASK_SIZE); ++ out = (fd_set *)Calloc(howmany(max+1, NFDBITS), FD_MASK_SIZE); ++ expt = (fd_set *)Calloc(howmany(max+1, NFDBITS), FD_MASK_SIZE); ++ if (in == NULL || out == NULL || expt == NULL) { ++ Error2("select(%d): %s", max+1, strerror(errno)); ++ if (in != NULL) ++ free(in); ++ if (out != NULL) ++ free(out); ++ if (expt != NULL) ++ free(expt); ++ return -1; ++ } + if (XIO_READABLE(xfd) && !(XIO_RDSTREAM(xfd)->eof >= 2 && !XIO_RDSTREAM(xfd)->ignoreeof)) { +- FD_SET(XIO_GETRDFD(xfd), &in); ++ FD_SET(XIO_GETRDFD(xfd), in); + /*0 FD_SET(XIO_GETRDFD(xfd), &expt);*/ + } + do { +- retval = Select(FOPEN_MAX, &in, &out, &expt, &time0); ++ retval = Select(max+1, in, out, expt, &time0); + } while (retval < 0 && errno == EINTR); + + if (retval < 0) { + #if HAVE_FDS_BITS + Error5("select(%d, &0x%lx, &0x%lx, &0x%lx, {0}): %s", +- FOPEN_MAX, in.fds_bits[0], out.fds_bits[0], +- expt.fds_bits[0], strerror(errno)); ++ max+1, in->fds_bits[0], out->fds_bits[0], ++ expt->fds_bits[0], strerror(errno)); + #else + Error5("select(%d, &0x%lx, &0x%lx, &0x%lx, {0}): %s", +- FOPEN_MAX, in.__fds_bits[0], out.__fds_bits[0], +- expt.__fds_bits[0], strerror(errno)); ++ max+1, in->__fds_bits[0], out->__fds_bits[0], ++ expt->__fds_bits[0], strerror(errno)); + #endif ++ free(in); ++ free(out); ++ free(expt); + return -1; + } else if (retval == 0) { + Info("terminated child did not leave data for us"); +@@ -679,6 +713,9 @@ + closing = MAX(closing, 1); + } + } ++ free(in); ++ free(out); ++ free(expt); + return 0; + } + +@@ -694,14 +731,34 @@ + and their options are set/applied + returns -1 on error or 0 on success */ + int _socat(void) { +- fd_set in, out, expt; +- int retval; ++ fd_set *in, *out, *expt; ++ int max, retval; + unsigned char *buff; + ssize_t bytes1, bytes2; + int polling = 0; /* handling ignoreeof */ + int wasaction = 1; /* last select was active, do NOT sleep before next */ + struct timeval total_timeout; /* the actual total timeout timer */ + ++#ifndef MAX ++# define MAX(x, y) (((y) > (x)) ? (y) : (x)) ++#endif ++ ++ max = MAX( ++ MAX(XIO_GETRDFD(sock1), XIO_GETWRFD(sock1)), ++ MAX(XIO_GETRDFD(sock2), XIO_GETWRFD(sock2))); ++ in = (fd_set *)Calloc(howmany(max+1, NFDBITS), FD_MASK_SIZE); ++ out = (fd_set *)Calloc(howmany(max+1, NFDBITS), FD_MASK_SIZE); ++ expt = (fd_set *)Calloc(howmany(max+1, NFDBITS), FD_MASK_SIZE); ++ if (in == NULL || out == NULL || expt == NULL) { ++ Error2("select(%d): %s", max+1, strerror(errno)); ++ if (in != NULL) ++ free(in); ++ if (out != NULL) ++ free(out); ++ if (expt != NULL) ++ free(expt); ++ return -1; ++ } + #if WITH_FILAN + if (socat_opts.debug) { + int fdi, fdo; +@@ -733,7 +790,7 @@ + + /* when converting nl to crnl, size might double */ + buff = Malloc(2*socat_opts.bufsiz+1); +- if (buff == NULL) return -1; ++ if (buff == NULL) { free(in); free(out); free(expt); return -1; } + + if (socat_opts.logopt == 'm' && xioinqopt('l', NULL, 0) == 'm') { + Info("switching to syslog"); +@@ -772,6 +829,9 @@ + if (total_timeout.tv_sec < 0 || + total_timeout.tv_sec == 0 && total_timeout.tv_usec < 0) { + Notice("inactivity timeout triggered"); ++ free(in); ++ free(out); ++ free(expt); + return 0; + } + } +@@ -803,7 +863,9 @@ + + do { + int _errno; +- FD_ZERO(&in); FD_ZERO(&out); FD_ZERO(&expt); ++ memset(in, 0, howmany(max+1, NFDBITS) * FD_MASK_SIZE); ++ memset(out, 0, howmany(max+1, NFDBITS) * FD_MASK_SIZE); ++ memset(expt, 0, howmany(max+1, NFDBITS) * FD_MASK_SIZE); + + childleftdata(sock1); + childleftdata(sock2); +@@ -819,23 +881,23 @@ + !(XIO_RDSTREAM(sock1)->eof > 1 && !XIO_RDSTREAM(sock1)->ignoreeof) && + !socat_opts.righttoleft) { + if (!mayrd1) { +- FD_SET(XIO_GETRDFD(sock1), &in); ++ FD_SET(XIO_GETRDFD(sock1), in); + } + if (!maywr2) { +- FD_SET(XIO_GETWRFD(sock2), &out); ++ FD_SET(XIO_GETWRFD(sock2), out); + } + } + if (XIO_READABLE(sock2) && + !(XIO_RDSTREAM(sock2)->eof > 1 && !XIO_RDSTREAM(sock2)->ignoreeof) && + !socat_opts.lefttoright) { + if (!mayrd2) { +- FD_SET(XIO_GETRDFD(sock2), &in); ++ FD_SET(XIO_GETRDFD(sock2), in); + } + if (!maywr1) { +- FD_SET(XIO_GETWRFD(sock1), &out); ++ FD_SET(XIO_GETWRFD(sock1), out); + } + } +- retval = Select(FOPEN_MAX, &in, &out, &expt, to); ++ retval = Select(max+1, in, out, expt, to); + _errno = errno; + if (retval < 0 && errno == EINTR) { + Info1("select(): %s", strerror(errno)); +@@ -851,15 +913,18 @@ + if (retval < 0) { + #if HAVE_FDS_BITS + Error7("select(%d, &0x%lx, &0x%lx, &0x%lx, %s%lu): %s", +- FOPEN_MAX, in.fds_bits[0], out.fds_bits[0], +- expt.fds_bits[0], to?"&":"NULL/", to?to->tv_sec:0, ++ max+1, in->fds_bits[0], out->fds_bits[0], ++ expt->fds_bits[0], to?"&":"NULL/", to?to->tv_sec:0, + strerror(errno)); + #else + Error7("select(%d, &0x%lx, &0x%lx, &0x%lx, %s%lu): %s", +- FOPEN_MAX, in.__fds_bits[0], out.__fds_bits[0], +- expt.__fds_bits[0], to?"&":"NULL/", to?to->tv_sec:0, ++ max+1, in->__fds_bits[0], out->__fds_bits[0], ++ expt->__fds_bits[0], to?"&":"NULL/", to?to->tv_sec:0, + strerror(errno)); + #endif ++ free(in); ++ free(out); ++ free(expt); + return -1; + } else if (retval == 0) { + Info2("select timed out (no data within %ld.%06ld seconds)", +@@ -872,6 +937,9 @@ + socat_opts.total_timeout.tv_usec != 0) { + /* there was a total inactivity timeout */ + Notice("inactivity timeout triggered"); ++ free(in); ++ free(out); ++ free(expt); + return 0; + } + +@@ -884,17 +952,17 @@ + } + + if (XIO_READABLE(sock1) && XIO_GETRDFD(sock1) >= 0 && +- FD_ISSET(XIO_GETRDFD(sock1), &in)) { ++ FD_ISSET(XIO_GETRDFD(sock1), in)) { + mayrd1 = true; + } + if (XIO_READABLE(sock2) && XIO_GETRDFD(sock2) >= 0 && +- FD_ISSET(XIO_GETRDFD(sock2), &in)) { ++ FD_ISSET(XIO_GETRDFD(sock2), in)) { + mayrd2 = true; + } +- if (XIO_GETWRFD(sock1) >= 0 && FD_ISSET(XIO_GETWRFD(sock1), &out)) { ++ if (XIO_GETWRFD(sock1) >= 0 && FD_ISSET(XIO_GETWRFD(sock1), out)) { + maywr1 = true; + } +- if (XIO_GETWRFD(sock2) >= 0 && FD_ISSET(XIO_GETWRFD(sock2), &out)) { ++ if (XIO_GETWRFD(sock2) >= 0 && FD_ISSET(XIO_GETWRFD(sock2), out)) { + maywr2 = true; + } + +@@ -989,6 +1057,10 @@ + xioclose(sock1); + xioclose(sock2); + ++ free(in); ++ free(out); ++ free(expt); ++ + return 0; + } + +diff -r -N -U 3 socat-1.6.0.0/test.sh socat-1.6.0.0+maxfds/test.sh +--- test.sh.orig 2007-03-06 22:06:20.000000000 +0100 ++++ test.sh 2007-04-06 10:16:30.000000000 +0200 +@@ -1425,7 +1425,8 @@ + local arg1="$3"; [ -z "$arg1" ] && arg1="-" + local arg2="$4"; [ -z "$arg2" ] && arg2="echo" + local opts="$5" +- local T="$6"; [ -z "$T" ] && T=0 ++ local redir="$6" ++ local T="$7"; [ -z "$T" ] && T=0 + local tf="$td/test$N.stdout" + local te="$td/test$N.stderr" + local tdiff="$td/test$N.diff" +@@ -1435,14 +1436,16 @@ + $PRINTF "test $F_n %s... " $num "$title" + #echo "$da" |$cmd >"$tf" 2>"$te" + #set -vx +- (echo "$da"; sleep $T) |$SOCAT $opts "$arg1" "$arg2" >"$tf" 2>"$te" & ++# (echo "$da"; sleep $T) |($SOCAT $opts "$arg1" "$arg2" >"$tf" 2>"$te"; echo $? >"$td/test$N.rc") & ++# echo eval $SOCAT $opts "$arg1" "$arg2" >"$tf" 2>"$te" $redir ++ (echo "$da"; sleep $T) |(eval $SOCAT $opts "$arg1" "$arg2" >"$tf" 2>"$te" $redir; echo $? >"$td/test$N.rc") & + export rc1=$! + #sleep 5 && kill $rc1 2>/dev/null & + # rc2=$! + wait $rc1 + # kill $rc2 2>/dev/null +-#set +vx +- if [ "$?" != 0 ]; then ++set +vx ++ if [ "$(cat "$td/test$N.rc")" != 0 ]; then + $PRINTF "$FAILED: $SOCAT:\n" + echo "$SOCAT $opts $arg1 $arg2" + cat "$te" +@@ -4129,7 +4132,7 @@ + case "$TESTS" in + *%functions%*|*%$NAME%*) + TEST="$NAME: inheritance of stdout to single exec with socketpair" +-testecho "$N" "$TEST" "-!!exec:cat" "" "$opts" 1 ++testecho "$N" "$TEST" "-!!exec:cat" "" "$opts" "" 1 + esac + N=$((N+1)) + +@@ -4137,7 +4140,7 @@ + case "$TESTS" in + *%functions%*|*%$NAME%*) + TEST="$NAME: inheritance of stdout to single exec with pipe" +-testecho "$N" "$TEST" "-!!exec:cat,pipes" "" "$opts" 1 ++testecho "$N" "$TEST" "-!!exec:cat,pipes" "" "$opts" "" 1 + esac + N=$((N+1)) + +@@ -4149,7 +4152,7 @@ + $PRINTF "test $F_n $TEST... ${YELLOW}PTY not available${NORMAL}\n" $N + numCANT=$((numCANT+1)) + else +-testecho "$N" "$TEST" "-!!exec:cat,pty,raw" "" "$opts" 1 ++testecho "$N" "$TEST" "-!!exec:cat,pty,raw" "" "$opts" "" 1 + fi + esac + N=$((N+1)) +@@ -4178,7 +4181,7 @@ + $PRINTF "test $F_n $TEST... ${YELLOW}PTY not available${NORMAL}\n" $N + numCANT=$((numCANT+1)) + else +-testecho "$N" "$TEST" "exec:cat,pty,raw!!-" "" "$opts" $MISCDELAY ++testecho "$N" "$TEST" "exec:cat,pty,raw!!-" "" "$opts" "" $MISCDELAY + fi + esac + N=$((N+1)) +@@ -5662,7 +5665,7 @@ + case "$TESTS" in + *%parse%*|*%functions%*|*%$NAME%*) + TEST="$NAME: does lexical analysis work sensibly (exec)" +-testecho "$N" "$TEST" "" "exec:'$SOCAT - exec:$CAT,pipes'" "$opts" 1 ++testecho "$N" "$TEST" "" "exec:'$SOCAT - exec:$CAT,pipes'" "$opts" "" 1 + esac + N=$((N+1)) + +@@ -5670,7 +5673,7 @@ + case "$TESTS" in + *%parse%*|*%functions%*|*%$NAME%*) + TEST="$NAME: does lexical analysis work sensibly (system)" +-testecho "$N" "$TEST" "" "system:\"$SOCAT - exec:$CAT,pipes\"" "$opts" 1 ++testecho "$N" "$TEST" "" "system:\"$SOCAT - exec:$CAT,pipes\"" "$opts" "" 1 + esac + N=$((N+1)) + +@@ -7737,6 +7740,81 @@ + esac + N=$((N+1)) + ++ ++# test: up to socat 1.6.0.0, the highest file descriptor supported in socats ++# transfer engine was FOPEN_MAX-1; this usually worked fine but would fail when ++# socat was invoked with many file descriptors already opened. socat would ++# just hang in the select() call. Daniel Lucq found this problem and provided a ++# patch that replaced the FOPEN_MAX limit: this patch not only allows FDs to be ++# up to NFDBITS-1, but should work even when the processes maximum number of ++# open files is increased with ulimit -n. ++# FOPEN_MAX on different OS's: ++# OS FOPEN_ ulimit ulimit FD_ ++# MAX -H -n -S -n SETSIZE ++# Linux 2.6: 16 1024 1024 1024 ++# HP-UX 11.11: 60 2048 2048 2048 ++# FreeBSD: 20 11095 11095 1024 ++# Cygwin: 20 unlimit 256 64 ++# AIX: 32767 65534 65534 ++NAME=EXCEED_FOPEN_MAX ++case "$TESTS" in ++*%functions%*|*%maxfds%*|*%$NAME%*) ++TEST="$NAME: more than FOPEN_MAX FDs in use" ++# this test opens a number of FDs before socat is invoked. socat will have to ++# allocate higher FD numbers and thus hang if it cannot handle them. ++REDIR= ++FOPEN_MAX=$($PROCAN |grep '^#define FOPEN_MAX' |awk '{print($3);}') ++OPEN_FILES=$FOPEN_MAX # more than the highest FOPEN_MAX ++i=3; while [ "$i" -lt "$OPEN_FILES" ]; do ++ REDIR="$REDIR $i>&2" ++ i=$((i+1)) ++done ++#echo $REDIR ++#testecho "$N" "$TEST" "" "pipe" "$opts -T 3" "" 1 ++#set -vx ++testecho "$N" "$TEST" "" "pipe" "$opts -T 1" "$REDIR" 1 ++#set +vx ++esac ++N=$((N+1)) ++ ++OPEN_FILES="$(ulimit -n)" ++NAME=EXCEED_FD_SETSIZE ++case "$TESTS" in ++*%functions%*|*%maxfds%*|*%root%*|*%$NAME%*) ++TEST="$NAME: more than FD_SETSIZE FDs in use" ++# this test opens a number of FDs before socat is invoked. This number exceeds ++# the size of the fd_set type proposed for use with select(). socat will have ++# to allocate space for a larger record and will hang or crash if it cannot ++# handle this. ++# ulimit -n must be above FD_SETSIZE which might require root ++REDIR= ++FD_SETSIZE=$($PROCAN |grep '^#define FD_SETSIZE' |awk '{print($3);}') ++OPEN_FILES=$(($FD_SETSIZE+2)) # more than the highest FD_SETSIZE ++while true; do # just go once; so we can break inside ++ if [ $(ulimit -S -n) -lt $OPEN_FILES ]; then ++ # if it increases, -H must be first ++ if [ $(ulimit -H -n) -lt $OPEN_FILES ]; then ++ if ! ulimit -H -n $((OPEN_FILES)); then ++ $PRINTF "test $F_n $TEST... ${YELLOW}must be root${NORMAL}\n" $N ++ numCANT=$((numCANT+1)) ++ break; ++ fi ++ fi ++ ulimit -S -n $((OPEN_FILES)) ++ fi ++ i=3; while [ "$i" -lt "$FD_SETSIZE" ]; do ++ REDIR="$REDIR $i>&2" ++ i=$((i+1)) ++ done ++ testecho "$N" "$TEST" "" "pipe" "$opts -T 1" "$REDIR" 1 ++ set +vx ++break ++done ++;; ++esac ++N=$((N+1)) ++ ++ + echo "summary: $((N-1)) tests; $numOK ok, $numFAIL failed, $numCANT could not be performed" + + if [ "$numFAIL" -gt 0 ]; then +diff -r -N -U 3 socat-1.6.0.0/VERSION socat-1.6.0.0+maxfds/VERSION +--- VERSION.orig 2007-03-06 21:58:44.000000000 +0100 ++++ VERSION 2007-04-06 23:20:11.000000000 +0200 +@@ -1 +1 @@ +-"1.6.0.0" ++"1.6.0.0_1" diff -ruN socat.orig/files/patch-socat-servicenames socat/files/patch-socat-servicenames --- socat.orig/files/patch-socat-servicenames Wed Dec 31 19:00:00 1969 +++ socat/files/patch-socat-servicenames Sat Jun 2 23:13:59 2007 @@ -0,0 +1,31 @@ +--- xio-ip.c.orig Wed Mar 7 08:08:02 2007 ++++ xio-ip.c Fri Apr 27 17:10:02 2007 +@@ -144,7 +144,7 @@ + with NIS), so we handle this specially */ + if (service && isdigit(service[0]&0xff)) { + char *extra; +- port = strtoul(service, &extra, 0); ++ port = htons(strtoul(service, &extra, 0)); + if (*extra != '\0') { + Warn2("xiogetaddrinfo(, \"%s\", ...): extra trailing data \"%s\"", + service, extra); +@@ -396,15 +396,16 @@ + + #if WITH_TCP || WITH_UDP + if (service) { +- port = parseport(service, family); ++ port = parseport(service, protocol); ++ + } + if (port >= 0) { + switch (family) { + #if WITH_IP4 +- case PF_INET: sau->ip4.sin_port = htons(port); break; ++ case PF_INET: sau->ip4.sin_port = port; break; + #endif /* WITH_IP4 */ + #if WITH_IP6 +- case PF_INET6: sau->ip6.sin6_port = htons(port); break; ++ case PF_INET6: sau->ip6.sin6_port = port; break; + #endif /* WITH_IP6 */ + } + } >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 11:00:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C87B816A468; Sun, 3 Jun 2007 11:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A1B8113C457; Sun, 3 Jun 2007 11:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53B0HMh065331; Sun, 3 Jun 2007 11:00:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53B0HgE065327; Sun, 3 Jun 2007 11:00:17 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 11:00:17 GMT From: Edwin Groothuis Message-Id: <200706031100.l53B0HgE065327@freefall.freebsd.org> To: bf2006a@yahoo.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113283: [PATCH] two patches for net/socat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 11:00:17 -0000 Synopsis: [PATCH] two patches for net/socat State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Jun 3 11:00:16 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113283 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 11:40:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68BB916A46D for ; Sun, 3 Jun 2007 11:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4507213C48A for ; Sun, 3 Jun 2007 11:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Be4uN069630 for ; Sun, 3 Jun 2007 11:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Be4jR069629; Sun, 3 Jun 2007 11:40:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 11:40:04 GMT Resent-Message-Id: <200706031140.l53Be4jR069629@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, TAKATSU Tomonari Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E889116A400 for ; Sun, 3 Jun 2007 11:38:11 +0000 (UTC) (envelope-from tts7500@webmta1.inetd.co.jp) Received: from bmail.inetd.co.jp (bmail.inetd.co.jp [211.13.206.141]) by mx1.freebsd.org (Postfix) with ESMTP id 485BB13C448 for ; Sun, 3 Jun 2007 11:38:11 +0000 (UTC) (envelope-from tts7500@webmta1.inetd.co.jp) Received: from www2.inetd.co.jp (www2.inetd.co.jp [211.13.206.150]) by bmail.inetd.co.jp (Postfix) with ESMTP id 338102B3DA7 for ; Sun, 3 Jun 2007 20:38:10 +0900 (JST) Received: from www2.inetd.co.jp (4012@localhost [127.0.0.1]) by www2.inetd.co.jp (8.13.8/8.13.1) with ESMTP id l53BcAG3013350 for ; Sun, 3 Jun 2007 20:38:10 +0900 (JST) (envelope-from tts7500@www2.inetd.co.jp) Message-Id: <200706031138.l53BcAOt013347@www2.inetd.co.jp> Date: Sun, 3 Jun 2007 20:38:10 +0900 (JST) From: TAKATSU Tomonari To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113284: [MAINTAINER] www/rubygem-scrubyt: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 11:40:04 -0000 >Number: 113284 >Category: ports >Synopsis: [MAINTAINER] www/rubygem-scrubyt: update to 0.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 11:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: TAKATSU Tomonari >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD photon.rtfm.jp 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri May 25 06:41:28 JST 2007 >Description: - update to 0.3.0 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: diff -urN rubygem-scrubyt.orig/Makefile rubygem-scrubyt/Makefile --- rubygem-scrubyt.orig/Makefile Mon May 21 20:10:16 2007 +++ rubygem-scrubyt/Makefile Sun Jun 3 20:18:46 2007 @@ -6,7 +6,7 @@ # PORTNAME= scrubyt -PORTVERSION= 0.2.8 +PORTVERSION= 0.3.0 CATEGORIES= www rubygems MASTER_SITES= ${MASTER_SITE_RUBYFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -urN rubygem-scrubyt.orig/distinfo rubygem-scrubyt/distinfo --- rubygem-scrubyt.orig/distinfo Mon May 21 20:10:16 2007 +++ rubygem-scrubyt/distinfo Sun Jun 3 20:19:45 2007 @@ -1,3 +1,3 @@ -MD5 (rubygem/scrubyt-0.2.8.gem) = 223929f0457017195156d26f646246af -SHA256 (rubygem/scrubyt-0.2.8.gem) = 8239da3efda2b18e60a441ca240177b3622d681b11c835c40326166e2b1ef2ea -SIZE (rubygem/scrubyt-0.2.8.gem) = 47616 +MD5 (rubygem/scrubyt-0.3.0.gem) = b781acb0e60a7acac6c761c7cfa7f563 +SHA256 (rubygem/scrubyt-0.3.0.gem) = e46e3bbe4889719c3ab0a797747f79e07f96624a17f6e612aeee07ce84d28fae +SIZE (rubygem/scrubyt-0.3.0.gem) = 46080 diff -urN rubygem-scrubyt.orig/pkg-plist rubygem-scrubyt/pkg-plist --- rubygem-scrubyt.orig/pkg-plist Mon May 21 20:10:16 2007 +++ rubygem-scrubyt/pkg-plist Sun Jun 3 20:20:36 2007 @@ -1,10 +1,13 @@ %%GEM_CACHE%% %%GEM_DOC_DIR%%/rdoc/rdoc-style.css %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt_rb.html +%%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/logging_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output/result_dumper_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output/result_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output/export_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output/post_processor_rb.html +%%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output/result_node_rb.html +%%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output/scrubyt_result_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/utils/compound_example_lookup_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/utils/simple_example_lookup_rb.html %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/utils/ruby_extensions_rb.html @@ -44,29 +47,29 @@ %%GEM_DOC_DIR%%/rdoc/classes/Module.src/M000014.html %%GEM_DOC_DIR%%/rdoc/classes/TrueClass.src/M000015.html %%GEM_DOC_DIR%%/rdoc/classes/String.src/M000016.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HTMLSubTreeFilter.src/M000017.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.src/M000018.html +%%GEM_DOC_DIR%%/rdoc/classes/String.src/M000017.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt.src/M000018.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.src/M000019.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.src/M000020.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.src/M000021.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src/M000022.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.src/M000022.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src/M000023.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src/M000024.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src/M000025.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src/M000026.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src/M000027.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/RegexpFilter.src/M000027.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/RegexpFilter.src/M000028.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/RegexpFilter.src/M000029.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000029.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000030.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000031.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000032.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000033.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000034.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultDumper.src/M000035.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/AttributeFilter.src/M000035.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/AttributeFilter.src/M000036.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/AttributeFilter.src/M000037.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultIndexer.src/M000037.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultIndexer.src/M000038.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultIndexer.src/M000039.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000039.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000040.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000041.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000042.html @@ -75,78 +78,78 @@ %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000045.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000046.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src/M000047.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExampleLookup.src/M000048.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000049.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000050.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000051.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000052.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000053.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000054.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000055.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000056.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000048.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000049.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000050.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000051.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000052.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000053.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000054.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src/M000055.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExampleLookup.src/M000056.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000057.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000058.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000059.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/URIBuilder.src/M000060.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/URIBuilder.src/M000061.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DownloadFilter.src/M000062.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DownloadFilter.src/M000063.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000064.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000065.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000066.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000067.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000068.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000069.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PreFilterDocument.src/M000070.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000071.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000072.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000073.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000074.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000075.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000076.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000077.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000078.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000079.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000080.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000060.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000061.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000062.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000063.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000064.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000065.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000066.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src/M000067.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/URIBuilder.src/M000068.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/URIBuilder.src/M000069.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DownloadFilter.src/M000070.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DownloadFilter.src/M000071.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HtmlSubtreeFilter.src/M000072.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HtmlSubtreeFilter.src/M000073.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000074.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000075.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000076.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000077.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000078.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src/M000079.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PreFilterDocument.src/M000080.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000081.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000082.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000083.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000084.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000085.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000086.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000087.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000088.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000089.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000090.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DetailPageFilter.src/M000091.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000092.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000093.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000094.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000095.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000096.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000097.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000098.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SimpleExampleLookup.src/M000099.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src/M000100.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src/M000101.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src/M000102.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000103.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000104.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000105.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000106.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExample.src/M000107.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExample.src/M000108.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000109.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000110.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000111.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000112.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000113.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000114.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000115.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000116.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000117.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000118.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000119.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000086.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000087.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000088.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000089.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000090.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000091.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src/M000092.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000093.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000094.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000095.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000096.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src/M000097.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000099.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000100.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000101.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000102.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000103.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000104.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src/M000105.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DetailPageFilter.src/M000098.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SimpleExampleLookup.src/M000106.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ScrubytResult.src/M000107.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ScrubytResult.src/M000108.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ScrubytResult.src/M000109.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ScrubytResult.src/M000110.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src/M000111.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src/M000112.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src/M000113.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000114.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000115.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000116.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src/M000117.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExample.src/M000118.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExample.src/M000119.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000120.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000121.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000122.html @@ -154,24 +157,36 @@ %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000124.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000125.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000126.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000127.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000128.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000129.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000130.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000131.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000132.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000133.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000134.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000135.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000136.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000137.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Export.src/M000138.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000139.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000140.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000141.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000142.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000143.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HTMLSubTreeFilter.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000127.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000128.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000129.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000130.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000131.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000132.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000133.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000134.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000135.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000136.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.src/M000137.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000138.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000139.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000140.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000141.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000142.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000143.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000144.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000145.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000146.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000147.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000148.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000149.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.src/M000150.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Export.src/M000151.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000152.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000153.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000154.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000155.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src/M000156.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/RegexpFilter.html @@ -179,10 +194,13 @@ %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/AttributeFilter.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultIndexer.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExampleLookup.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/URIBuilder.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DownloadFilter.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HtmlSubtreeFilter.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PreFilterDocument.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.html @@ -190,15 +208,17 @@ %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DetailPageFilter.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SimpleExampleLookup.html -%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.html +%%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ScrubytResult.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExample.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/FetchAction.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/NavigationActions.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Export.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.html -%%GEM_DOC_DIR%%/rdoc/classes/Math.src/M000144.html -%%GEM_DOC_DIR%%/rdoc/classes/Math.src/M000145.html +%%GEM_DOC_DIR%%/rdoc/classes/Gem.src/M000157.html +%%GEM_DOC_DIR%%/rdoc/classes/Kernel.src/M000158.html +%%GEM_DOC_DIR%%/rdoc/classes/Math.src/M000159.html +%%GEM_DOC_DIR%%/rdoc/classes/Math.src/M000160.html %%GEM_DOC_DIR%%/rdoc/classes/Range.html %%GEM_DOC_DIR%%/rdoc/classes/Symbol.html %%GEM_DOC_DIR%%/rdoc/classes/FalseClass.html @@ -208,7 +228,9 @@ %%GEM_DOC_DIR%%/rdoc/classes/Module.html %%GEM_DOC_DIR%%/rdoc/classes/TrueClass.html %%GEM_DOC_DIR%%/rdoc/classes/String.html +%%GEM_DOC_DIR%%/rdoc/classes/Gem.html %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt.html +%%GEM_DOC_DIR%%/rdoc/classes/Kernel.html %%GEM_DOC_DIR%%/rdoc/classes/Math.html %%GEM_DOC_DIR%%/rdoc/fr_file_index.html %%GEM_DOC_DIR%%/rdoc/fr_class_index.html @@ -220,10 +242,13 @@ %%GEM_LIB_DIR%%/CHANGELOG %%GEM_LIB_DIR%%/Rakefile %%GEM_LIB_DIR%%/lib/scrubyt.rb +%%GEM_LIB_DIR%%/lib/scrubyt/logging.rb %%GEM_LIB_DIR%%/lib/scrubyt/output/result_dumper.rb %%GEM_LIB_DIR%%/lib/scrubyt/output/result.rb %%GEM_LIB_DIR%%/lib/scrubyt/output/export.rb %%GEM_LIB_DIR%%/lib/scrubyt/output/post_processor.rb +%%GEM_LIB_DIR%%/lib/scrubyt/output/result_node.rb +%%GEM_LIB_DIR%%/lib/scrubyt/output/scrubyt_result.rb %%GEM_LIB_DIR%%/lib/scrubyt/utils/compound_example_lookup.rb %%GEM_LIB_DIR%%/lib/scrubyt/utils/simple_example_lookup.rb %%GEM_LIB_DIR%%/lib/scrubyt/utils/ruby_extensions.rb @@ -247,14 +272,6 @@ %%GEM_LIB_DIR%%/lib/scrubyt/core/shared/u_r_i_builder.rb %%GEM_LIB_DIR%%/lib/scrubyt/core/shared/extractor.rb %%GEM_LIB_DIR%%/lib/scrubyt/core/shared/evaluation_context.rb -%%GEM_LIB_DIR%%/test/unittests/constraint_test.rb -%%GEM_LIB_DIR%%/test/unittests/filter_test.rb -%%GEM_LIB_DIR%%/test/unittests/xpathutils_test.rb -%%GEM_LIB_DIR%%/test/unittests/extractor_test.rb -%%GEM_LIB_DIR%%/test/unittests/pattern_test.rb -%%GEM_LIB_DIR%%/test/unittests/simple_example_lookup_test.rb -%%GEM_LIB_DIR%%/test/unittests/input/test.html -%%GEM_LIB_DIR%%/test/unittests/input/constraint_test.html %%GEM_SPEC%% @dirrm %%GEM_LIB_DIR%%/lib/scrubyt/output @dirrm %%GEM_LIB_DIR%%/lib/scrubyt/utils @@ -265,9 +282,6 @@ @dirrm %%GEM_LIB_DIR%%/lib/scrubyt/core @dirrm %%GEM_LIB_DIR%%/lib/scrubyt @dirrm %%GEM_LIB_DIR%%/lib -@dirrm %%GEM_LIB_DIR%%/test/unittests/input -@dirrm %%GEM_LIB_DIR%%/test/unittests -@dirrm %%GEM_LIB_DIR%%/test @dirrm %%GEM_LIB_DIR%% @dirrm %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/output @dirrm %%GEM_DOC_DIR%%/rdoc/files/lib/scrubyt/utils @@ -288,7 +302,7 @@ @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Module.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/TrueClass.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/String.src -@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HTMLSubTreeFilter.src +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PostProcessor.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/EvaluationContext.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/RegexpFilter.src @@ -296,17 +310,20 @@ @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/AttributeFilter.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultIndexer.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/XPathUtils.src +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ResultNode.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExampleLookup.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Extractor.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/URIBuilder.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DownloadFilter.src +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/HtmlSubtreeFilter.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/TreeFilter.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/PreFilterDocument.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Pattern.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SharedUtils.src -@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DetailPageFilter.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Constraint.src +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/DetailPageFilter.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/SimpleExampleLookup.src +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ScrubytResult.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Result.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/BaseFilter.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/CompoundExample.src @@ -315,6 +332,8 @@ @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/Export.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt/ConstraintAdder.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Scrubyt +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Gem.src +@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Kernel.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes/Math.src @dirrm %%GEM_DOC_DIR%%/rdoc/classes @dirrm %%GEM_DOC_DIR%%/rdoc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 11:51:57 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 188E716A421; Sun, 3 Jun 2007 11:51:57 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from fl.us.spammertrap.net (fl.us.spammertrap.net [204.89.241.173]) by mx1.freebsd.org (Postfix) with ESMTP id DB45013C46C; Sun, 3 Jun 2007 11:51:56 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from localhost (localhost [127.0.0.1]) by fl.us.spammertrap.net (Postfix) with ESMTP id 2A178170F9; Sun, 3 Jun 2007 07:51:56 -0400 (EDT) X-Quarantine-ID: X-Virus-Scanned: SpammerTrap(tm) SME-150 1.68 at spammertrap.net X-Spam-Flag: NO X-Spam-Score: -7.551 X-Spam-Level: X-Spam-Status: No, score=-7.551 tagged_above=-999 required=9 tests=[AWL=0.047, BAYES_00=-2.599, DKIM_POLICY_SIGNSOME=0.001, DK_POLICY_SIGNSOME=0.001, LOCAL_RCVD=-5, SPF_PASS=-0.001] X-Amavis-Modified: Mail body modified (using disclaimer) by fl.us.spammertrap.net Received: from secnap2.secnap.com (secnap2.secnap.com [204.89.241.128]) by fl.us.spammertrap.net (Postfix) with ESMTP id 16280170F7; Sun, 3 Jun 2007 07:51:54 -0400 (EDT) Received: from [10.80.0.4] ([10.80.0.4]) by secnap2.secnap.com with Microsoft SMTPSVC(5.0.2195.6713); Sun, 3 Jun 2007 07:51:53 -0400 Message-ID: <4662AB57.4080503@secnap.net> Date: Sun, 03 Jun 2007 07:51:51 -0400 From: Michael Scheidell User-Agent: Thunderbird 1.5.0.12 (Macintosh/20070509) MIME-Version: 1.0 To: Cheng-Lung Sung References: <200706031003.l53A3K0J059429@freefall.freebsd.org> In-Reply-To: <200706031003.l53A3K0J059429@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 03 Jun 2007 11:51:53.0898 (UTC) FILETIME=[945B58A0:01C7A5D5] Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/113270: mail/p5-Mail-SpamAssassin: periodic script to update rules X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 11:51:57 -0000 Cheng-Lung Sung wrote: > Synopsis: mail/p5-Mail-SpamAssassin: periodic script to update rules > > Responsible-Changed-From-To: freebsd-ports-bugs->clsung > Responsible-Changed-By: clsung > Responsible-Changed-When: Sun Jun 3 10:03:20 UTC 2007 > Responsible-Changed-Why: > I'll take it. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=113270 > > Please don't add this patch. It requires a lot of work to support possible sa-compile (which has to run after successful sa-update), does not handle errors, and since this is a totally, 100% standalone enhancement, which will not be affected by any subsequent ports updates, I do not recommend at this time that it be considered for inclusion in ports. User can add this and maintain this himself. In fact, user can create a sa-update port and maintain the script if he wishes. _________________________________________________________________________ This email has been scanned and certified safe by SpammerTrap(tm). For Information please see http://www.spammertrap.com _________________________________________________________________________ From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 12:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A38516A400 for ; Sun, 3 Jun 2007 12:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EDA9A13C458 for ; Sun, 3 Jun 2007 12:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ce4fq076593 for ; Sun, 3 Jun 2007 12:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ce4sg076592; Sun, 3 Jun 2007 12:40:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 12:40:04 GMT Resent-Message-Id: <200706031240.l53Ce4sg076592@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Beat Gätzi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 275C616A400 for ; Sun, 3 Jun 2007 12:36:56 +0000 (UTC) (envelope-from beat@chruetertee.ch) Received: from mail19.bluewin.ch (mail19.bluewin.ch [195.186.18.65]) by mx1.freebsd.org (Postfix) with ESMTP id C2BB413C458 for ; Sun, 3 Jun 2007 12:36:55 +0000 (UTC) (envelope-from beat@chruetertee.ch) Received: from [83.79.52.140] (83.79.52.140) by mail19.bluewin.ch (Bluewin 7.3.121) id 4651A6AA0033D79C for FreeBSD-gnats-submit@freebsd.org; Sun, 3 Jun 2007 12:36:54 +0000 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sun, 3 Jun 2007 14:37:01 +0200 Message-Id: <4651A6AA0033D79C@mail19.bluewin.ch> (added by postmaster@bluewin.ch) Date: Sun, 3 Jun 2007 14:37:01 +0200 From: "Beat Gaetzi" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113288: [MAINTAINER] www/fluxcms: update to latest 1.6.0 snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Beat Gätzi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 12:40:05 -0000 >Number: 113288 >Category: ports >Synopsis: [MAINTAINER] www/fluxcms: update to latest 1.6.0 snapshot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 12:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Beat Gätzi >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD daedalus.network.local 6.2-RELEASE-p3 FreeBSD 6.2-RELEASE-p3 #0: Sun Mar 18 12:42:52 CET 2007 root@daedalus.network.local:/usr/obj/usr/src/sys/BEASTIE i386 >Description: FluxCMS 1.6.0 isn't officially released yet. This patch update the port to the latest snapshot which includes a lot of bugfixes and adds some new features. >How-To-Repeat: >Fix: --- fluxcms.patch begins here --- diff -Naur fluxcms.ori/Makefile fluxcms/Makefile --- fluxcms.ori/Makefile Sun Jun 3 13:45:07 2007 +++ fluxcms/Makefile Sun Jun 3 14:01:33 2007 @@ -7,11 +7,11 @@ PORTNAME= fluxcms PORTVERSION= 1.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://bitflux.org/download/ \ http://www.chruetertee.ch/files/download/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-snapshot-20070122 +DISTNAME= ${PORTNAME}-${PORTVERSION}-snapshot-20070603 EXTRACT_SUFX= .tgz MAINTAINER= beat@chruetertee.ch diff -Naur fluxcms.ori/distinfo fluxcms/distinfo --- fluxcms.ori/distinfo Sun Jun 3 13:45:07 2007 +++ fluxcms/distinfo Sun Jun 3 13:59:35 2007 @@ -1,3 +1,3 @@ -MD5 (fluxcms-1.6.0-snapshot-20070122.tgz) = d188d91528fd480cbe48486d1545a9aa -SHA256 (fluxcms-1.6.0-snapshot-20070122.tgz) = 9a8907c9e177322f3374c84e7537ac56f10595285f271361923078c92930785d -SIZE (fluxcms-1.6.0-snapshot-20070122.tgz) = 4258908 +MD5 (fluxcms-1.6.0-snapshot-20070603.tgz) = c85186a11df0108ca2aa3dc818c8dd39 +SHA256 (fluxcms-1.6.0-snapshot-20070603.tgz) = 46bee882e31e282d4432e25b1be84bbf5c4e81bb1e5b95abd51a8c46f7f1cd7b +SIZE (fluxcms-1.6.0-snapshot-20070603.tgz) = 4294187 diff -Naur fluxcms.ori/pkg-plist fluxcms/pkg-plist --- fluxcms.ori/pkg-plist Sun Jun 3 13:45:07 2007 +++ fluxcms/pkg-plist Sun Jun 3 14:01:18 2007 @@ -81,6 +81,7 @@ %%INSTALLDIR%%/admin/data/admin/images/.configxml %%INSTALLDIR%%/admin/data/admin/listview/.configxml %%INSTALLDIR%%/admin/data/admin/navi/.configxml +%%INSTALLDIR%%/admin/data/admin/openid/.configxml %%INSTALLDIR%%/admin/data/admin/overview/.configxml %%INSTALLDIR%%/admin/data/admin/properties/.configxml %%INSTALLDIR%%/admin/data/admin/siteoptions/.configxml @@ -350,10 +351,12 @@ %%INSTALLDIR%%/bin/switch-to-1_4_0-tag.sh %%INSTALLDIR%%/bin/switch-to-1_5-branch.sh %%INSTALLDIR%%/bin/switch-to-trunk.sh +%%INSTALLDIR%%/dbforms2/bilder.xml %%INSTALLDIR%%/dbforms2/blogcategories.xml %%INSTALLDIR%%/dbforms2/blogcomments.xml %%INSTALLDIR%%/dbforms2/bloglinks.xml %%INSTALLDIR%%/dbforms2/bloglinkscategories.xml +%%INSTALLDIR%%/dbforms2/blogpodcasts.xml %%INSTALLDIR%%/dbforms2/blogposts.xml %%INSTALLDIR%%/dbforms2/blogposts2.xml %%INSTALLDIR%%/dbforms2/events.xml @@ -363,6 +366,11 @@ %%INSTALLDIR%%/dbforms2/newsletter_mailservers.xml %%INSTALLDIR%%/dbforms2/newsletter_users.xml %%INSTALLDIR%%/dbforms2/perm_groups.xml +%%INSTALLDIR%%/dbforms2/projekte.xml +%%INSTALLDIR%%/dbforms2/staticpages +%%INSTALLDIR%%/dbforms2/staticpages.xml +%%INSTALLDIR%%/dbforms2/subprojekte.xml +%%INSTALLDIR%%/dbforms2/test.xml %%INSTALLDIR%%/dbforms2/users.xml %%INSTALLDIR%%/div/db/bxcms.sql %%INSTALLDIR%%/div/db/dbexport.sh @@ -399,9 +407,16 @@ %%INSTALLDIR%%/inc/.registry/xml_rpc.reg %%INSTALLDIR%%/inc/Archive/Tar.php %%INSTALLDIR%%/inc/Auth.php +%%INSTALLDIR%%/inc/Auth/Anonymous.php %%INSTALLDIR%%/inc/Auth/Auth.php %%INSTALLDIR%%/inc/Auth/Container.php +%%INSTALLDIR%%/inc/Auth/Container/File.php +%%INSTALLDIR%%/inc/Auth/Container/LDAP.php %%INSTALLDIR%%/inc/Auth/Container/MDB2.php +%%INSTALLDIR%%/inc/Auth/Container/PEAR.php +%%INSTALLDIR%%/inc/Auth/Controller.php +%%INSTALLDIR%%/inc/Auth/Frontend/Html.php +%%INSTALLDIR%%/inc/Auth/Frontend/md5.js %%INSTALLDIR%%/inc/Auth/HTTP.php %%INSTALLDIR%%/inc/Auth/OpenID.php %%INSTALLDIR%%/inc/Auth/OpenID/Association.php @@ -411,6 +426,7 @@ %%INSTALLDIR%%/inc/Auth/OpenID/CryptUtil.php %%INSTALLDIR%%/inc/Auth/OpenID/DatabaseConnection.php %%INSTALLDIR%%/inc/Auth/OpenID/DiffieHellman.php +%%INSTALLDIR%%/inc/Auth/OpenID/Discover.php %%INSTALLDIR%%/inc/Auth/OpenID/DumbStore.php %%INSTALLDIR%%/inc/Auth/OpenID/FileStore.php %%INSTALLDIR%%/inc/Auth/OpenID/HMACSHA1.php @@ -427,6 +443,7 @@ %%INSTALLDIR%%/inc/Auth/OpenID/Server.php %%INSTALLDIR%%/inc/Auth/OpenID/ServerRequest.php %%INSTALLDIR%%/inc/Auth/OpenID/TrustRoot.php +%%INSTALLDIR%%/inc/Auth/OpenID/URINorm.php %%INSTALLDIR%%/inc/Cache.php %%INSTALLDIR%%/inc/Cache/Container.php %%INSTALLDIR%%/inc/Cache/Container/db.php @@ -545,6 +562,17 @@ %%INSTALLDIR%%/inc/PHPUnit2/Util/CodeCoverage/Renderer/HTML.php %%INSTALLDIR%%/inc/PHPUnit2/Util/CodeCoverage/Renderer/Text.php %%INSTALLDIR%%/inc/SQL/Tree.php +%%INSTALLDIR%%/inc/Services/Yadis/HTTPFetcher.php +%%INSTALLDIR%%/inc/Services/Yadis/Manager.php +%%INSTALLDIR%%/inc/Services/Yadis/Misc.php +%%INSTALLDIR%%/inc/Services/Yadis/ParanoidHTTPFetcher.php +%%INSTALLDIR%%/inc/Services/Yadis/ParseHTML.php +%%INSTALLDIR%%/inc/Services/Yadis/PlainHTTPFetcher.php +%%INSTALLDIR%%/inc/Services/Yadis/XML.php +%%INSTALLDIR%%/inc/Services/Yadis/XRDS.php +%%INSTALLDIR%%/inc/Services/Yadis/XRI.php +%%INSTALLDIR%%/inc/Services/Yadis/XRIRes.php +%%INSTALLDIR%%/inc/Services/Yadis/Yadis.php %%INSTALLDIR%%/inc/Services/flickr.php %%INSTALLDIR%%/inc/System.php %%INSTALLDIR%%/inc/Text/CAPTCHA.php @@ -594,6 +622,7 @@ %%INSTALLDIR%%/inc/bx/dbforms2/config.php %%INSTALLDIR%%/inc/bx/dbforms2/data.php %%INSTALLDIR%%/inc/bx/dbforms2/datasource/foreign.php +%%INSTALLDIR%%/inc/bx/dbforms2/datasource/pagetree.php %%INSTALLDIR%%/inc/bx/dbforms2/datasource/sql.php %%INSTALLDIR%%/inc/bx/dbforms2/field.php %%INSTALLDIR%%/inc/bx/dbforms2/fields/checkbox.php @@ -630,6 +659,7 @@ %%INSTALLDIR%%/inc/bx/dbforms2/groups/xml.php %%INSTALLDIR%%/inc/bx/dbforms2/helpers.php %%INSTALLDIR%%/inc/bx/dbforms2/liveselect.php +%%INSTALLDIR%%/inc/bx/dbforms2/liveselect/pagetree.php %%INSTALLDIR%%/inc/bx/dbforms2/nofield.php %%INSTALLDIR%%/inc/bx/dbforms2/nofield/text.php %%INSTALLDIR%%/inc/bx/dbforms2/sql.php @@ -842,6 +872,7 @@ %%INSTALLDIR%%/inc/bx/metadata.php %%INSTALLDIR%%/inc/bx/metadatas/text/datetimefield.php %%INSTALLDIR%%/inc/bx/metadatas/text/readonly.php +%%INSTALLDIR%%/inc/bx/metadatas/text/select.php %%INSTALLDIR%%/inc/bx/metadatas/text/tags.php %%INSTALLDIR%%/inc/bx/metadatas/text/textarea.php %%INSTALLDIR%%/inc/bx/metadatas/text/textfield.php @@ -851,8 +882,10 @@ %%INSTALLDIR%%/inc/bx/notifications/mail.php %%INSTALLDIR%%/inc/bx/permm.php %%INSTALLDIR%%/inc/bx/permm/auth/common.php +%%INSTALLDIR%%/inc/bx/permm/auth/confluence.php %%INSTALLDIR%%/inc/bx/permm/auth/http.php %%INSTALLDIR%%/inc/bx/permm/auth/pearauth.php +%%INSTALLDIR%%/inc/bx/permm/auth/pearcontainer/confluence.php %%INSTALLDIR%%/inc/bx/permm/perm/common.php %%INSTALLDIR%%/inc/bx/permm/perm/matrix.php %%INSTALLDIR%%/inc/bx/permm/perm/simple.php @@ -869,6 +902,7 @@ %%INSTALLDIR%%/inc/bx/php/openid/finish_auth.php %%INSTALLDIR%%/inc/bx/php/openid/start_auth.php %%INSTALLDIR%%/inc/bx/php/preview.php +%%INSTALLDIR%%/inc/bx/php/rating.php %%INSTALLDIR%%/inc/bx/php/setthemecookie.php %%INSTALLDIR%%/inc/bx/plugin.php %%INSTALLDIR%%/inc/bx/plugins/address.php @@ -884,6 +918,7 @@ %%INSTALLDIR%%/inc/bx/plugins/admin/editpopup.php %%INSTALLDIR%%/inc/bx/plugins/admin/listview.php %%INSTALLDIR%%/inc/bx/plugins/admin/navi.php +%%INSTALLDIR%%/inc/bx/plugins/admin/openid.php %%INSTALLDIR%%/inc/bx/plugins/admin/overview.php %%INSTALLDIR%%/inc/bx/plugins/admin/properties.php %%INSTALLDIR%%/inc/bx/plugins/admin/siteoptions.php @@ -894,6 +929,8 @@ %%INSTALLDIR%%/inc/bx/plugins/basket.php %%INSTALLDIR%%/inc/bx/plugins/blog.php %%INSTALLDIR%%/inc/bx/plugins/blog/akismet.php +%%INSTALLDIR%%/inc/bx/plugins/blog/akismet2.php +%%INSTALLDIR%%/inc/bx/plugins/blog/allposts.php %%INSTALLDIR%%/inc/bx/plugins/blog/authorarchive.php %%INSTALLDIR%%/inc/bx/plugins/blog/categories.php %%INSTALLDIR%%/inc/bx/plugins/blog/comments.php @@ -909,9 +946,11 @@ %%INSTALLDIR%%/inc/bx/plugins/blog/preview.xml %%INSTALLDIR%%/inc/bx/plugins/blog/preview.xsl %%INSTALLDIR%%/inc/bx/plugins/blog/prevnext.php +%%INSTALLDIR%%/inc/bx/plugins/blog/rating.php %%INSTALLDIR%%/inc/bx/plugins/blog/spam.php %%INSTALLDIR%%/inc/bx/plugins/blog/tagarchive.php %%INSTALLDIR%%/inc/bx/plugins/blog/trackback.php +%%INSTALLDIR%%/inc/bx/plugins/blogauthors.php %%INSTALLDIR%%/inc/bx/plugins/collection.php %%INSTALLDIR%%/inc/bx/plugins/comments.php %%INSTALLDIR%%/inc/bx/plugins/db2xml.php @@ -944,6 +983,7 @@ %%INSTALLDIR%%/inc/bx/plugins/sql2xml.php %%INSTALLDIR%%/inc/bx/plugins/structure2xml.php %%INSTALLDIR%%/inc/bx/plugins/subcontent.php +%%INSTALLDIR%%/inc/bx/plugins/tagcloud.php %%INSTALLDIR%%/inc/bx/plugins/tree.php %%INSTALLDIR%%/inc/bx/plugins/uparamsmenu.php %%INSTALLDIR%%/inc/bx/plugins/vote.php @@ -1094,6 +1134,7 @@ %%INSTALLDIR%%/inc/patForms/Rule.php %%INSTALLDIR%%/inc/patForms/Rule/ConditionalEnum.php %%INSTALLDIR%%/inc/patForms/Rule/ConditionalRequired.php +%%INSTALLDIR%%/inc/patForms/Rule/ConditionalRequiredPreg.php %%INSTALLDIR%%/inc/patForms/Rule/Email.php %%INSTALLDIR%%/inc/patForms/Rule/EmailEN.php %%INSTALLDIR%%/inc/patForms/Rule/Enum.php @@ -1658,9 +1699,16 @@ %%INSTALLDIR%%/install/unlock.sh %%INSTALLDIR%%/robots.txt %%INSTALLDIR%%/structure/bloglinks.xml +%%INSTALLDIR%%/structure/blogpodcast.xml %%INSTALLDIR%%/structure/news.xml +%%INSTALLDIR%%/structure/projekte.xml +%%INSTALLDIR%%/structure/projekte.xml~ %%INSTALLDIR%%/structure/quicklinks.php +%%INSTALLDIR%%/structure/quicklinks.php~ +%%INSTALLDIR%%/structure/staticpages.xml +%%INSTALLDIR%%/structure/staticpages.xml~ %%INSTALLDIR%%/themes/2-cols/aggregator.xsl +%%INSTALLDIR%%/themes/2-cols/allposts.xsl %%INSTALLDIR%%/themes/2-cols/blog.xsl %%INSTALLDIR%%/themes/2-cols/blogmicrosummary.xsl %%INSTALLDIR%%/themes/2-cols/buttons/bxcms.png @@ -1697,6 +1745,7 @@ %%INSTALLDIR%%/themes/2-cols/templates/default.xhtml %%INSTALLDIR%%/themes/2-cols/vote.xsl %%INSTALLDIR%%/themes/3-cols/aggregator.xsl +%%INSTALLDIR%%/themes/3-cols/allposts.xsl %%INSTALLDIR%%/themes/3-cols/blog.xsl %%INSTALLDIR%%/themes/3-cols/blogmicrosummary.xsl %%INSTALLDIR%%/themes/3-cols/buttons/bxcms.png @@ -1777,12 +1826,14 @@ %%INSTALLDIR%%/themes/standard/admin/listview.xsl %%INSTALLDIR%%/themes/standard/admin/login.html %%INSTALLDIR%%/themes/standard/admin/navi.xsl +%%INSTALLDIR%%/themes/standard/admin/openid.xsl %%INSTALLDIR%%/themes/standard/admin/overview.xsl %%INSTALLDIR%%/themes/standard/admin/plugins/dbforms2.xsl %%INSTALLDIR%%/themes/standard/admin/plugins/properties.xsl %%INSTALLDIR%%/themes/standard/admin/properties.xsl %%INSTALLDIR%%/themes/standard/admin/themes.xsl %%INSTALLDIR%%/themes/standard/admin/users.xsl +%%INSTALLDIR%%/themes/standard/admin/xrds.xsl %%INSTALLDIR%%/themes/standard/common.xsl %%INSTALLDIR%%/themes/standard/copy.xsl %%INSTALLDIR%%/themes/standard/mastercommon.xsl @@ -2208,6 +2259,7 @@ %%INSTALLDIR%%/webinc/js/openId.js %%INSTALLDIR%%/webinc/js/prototype.js %%INSTALLDIR%%/webinc/js/prototype.lite.js +%%INSTALLDIR%%/webinc/js/rating.js %%INSTALLDIR%%/webinc/js/sarissa.js %%INSTALLDIR%%/webinc/js/sarissa_dbform.js %%INSTALLDIR%%/webinc/js/scriptaculous/builder.js @@ -2648,6 +2700,7 @@ @dirrm %%INSTALLDIR%%/inc/bx/php/openid @dirrm %%INSTALLDIR%%/inc/bx/php @dirrm %%INSTALLDIR%%/inc/bx/permm/perm +@dirrm %%INSTALLDIR%%/inc/bx/permm/auth/pearcontainer @dirrm %%INSTALLDIR%%/inc/bx/permm/auth @dirrm %%INSTALLDIR%%/inc/bx/permm @dirrm %%INSTALLDIR%%/inc/bx/notifications @@ -2705,6 +2758,7 @@ @dirrm %%INSTALLDIR%%/inc/bx/dbreports @dirrm %%INSTALLDIR%%/inc/bx/dbforms2/xsl @dirrm %%INSTALLDIR%%/inc/bx/dbforms2/nofield +@dirrm %%INSTALLDIR%%/inc/bx/dbforms2/liveselect @dirrm %%INSTALLDIR%%/inc/bx/dbforms2/groups @dirrm %%INSTALLDIR%%/inc/bx/dbforms2/fields/text/area @dirrm %%INSTALLDIR%%/inc/bx/dbforms2/fields/text @@ -2735,6 +2789,7 @@ @dirrm %%INSTALLDIR%%/inc/Text/CAPTCHA/Driver @dirrm %%INSTALLDIR%%/inc/Text/CAPTCHA @dirrm %%INSTALLDIR%%/inc/Text +@dirrm %%INSTALLDIR%%/inc/Services/Yadis @dirrm %%INSTALLDIR%%/inc/Services @dirrm %%INSTALLDIR%%/inc/SQL @dirrm %%INSTALLDIR%%/inc/PHPUnit2/Util/CodeCoverage/Renderer @@ -2772,6 +2827,7 @@ @dirrm %%INSTALLDIR%%/inc/Cache/Container @dirrm %%INSTALLDIR%%/inc/Cache @dirrm %%INSTALLDIR%%/inc/Auth/OpenID +@dirrm %%INSTALLDIR%%/inc/Auth/Frontend @dirrm %%INSTALLDIR%%/inc/Auth/Container @dirrm %%INSTALLDIR%%/inc/Auth @dirrm %%INSTALLDIR%%/inc/Archive @@ -2844,6 +2900,7 @@ @dirrm %%INSTALLDIR%%/admin/data/admin/siteoptions @dirrm %%INSTALLDIR%%/admin/data/admin/properties @dirrm %%INSTALLDIR%%/admin/data/admin/overview +@dirrm %%INSTALLDIR%%/admin/data/admin/openid @dirrm %%INSTALLDIR%%/admin/data/admin/navi/tree @dirrm %%INSTALLDIR%%/admin/data/admin/navi @dirrm %%INSTALLDIR%%/admin/data/admin/listview --- fluxcms.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 13:20:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7967216A46D for ; Sun, 3 Jun 2007 13:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5DF6F13C44B for ; Sun, 3 Jun 2007 13:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53DK5PY080059 for ; Sun, 3 Jun 2007 13:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53DK5r0080056; Sun, 3 Jun 2007 13:20:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 13:20:05 GMT Resent-Message-Id: <200706031320.l53DK5r0080056@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nils Vogels Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E408B16A41F for ; Sun, 3 Jun 2007 13:10:13 +0000 (UTC) (envelope-from root@imhotep.yuckfou.org) Received: from ssdd.xs4all.nl (ssdd.xs4all.nl [195.64.89.117]) by mx1.freebsd.org (Postfix) with ESMTP id EC5EA13C45B for ; Sun, 3 Jun 2007 13:10:12 +0000 (UTC) (envelope-from root@imhotep.yuckfou.org) Received: by imhotep.yuckfou.org (Postfix, from userid 0) id 99673187; Sun, 3 Jun 2007 15:10:25 +0200 (CEST) Message-Id: <20070603131025.99673187@imhotep.yuckfou.org> Date: Sun, 3 Jun 2007 15:10:25 +0200 (CEST) From: Nils Vogels To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: peter.thoenen@yahoo.com Subject: ports/113289: [PATCH] security/tor: update to 0.1.2.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 13:20:05 -0000 >Number: 113289 >Category: ports >Synopsis: [PATCH] security/tor: update to 0.1.2.14 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 13:20:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Nils Vogels >Release: FreeBSD 5.4-RELEASE-p6 i386 >Organization: IS-Root >Environment: System: FreeBSD imhotep.yuckfou.org 5.4-RELEASE-p6 FreeBSD 5.4-RELEASE-p6 #0: Fri Aug 5 19:36:46 CEST >Description: - Update to 0.1.2.14 Added file(s): - files/patch-src-or-config.c Port maintainer (peter.thoenen@yahoo.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- tor-0.1.2.14.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/tor/Makefile /disk/3/home/nivo/ports/tor/Makefile --- /usr/ports/security/tor/Makefile Fri Apr 6 20:28:46 2007 +++ /disk/3/home/nivo/ports/tor/Makefile Sun Jun 3 15:09:43 2007 @@ -6,8 +6,7 @@ # PORTNAME= tor -PORTVERSION= 0.1.1.26 -PORTREVISION= 1 +PORTVERSION= 0.1.2.14 CATEGORIES= security net MASTER_SITES= http://tor.eff.org/dist/ \ http://mirror.onionland.org/dist/ diff -ruN --exclude=CVS /usr/ports/security/tor/distinfo /disk/3/home/nivo/ports/tor/distinfo --- /usr/ports/security/tor/distinfo Sat Dec 16 11:27:29 2006 +++ /disk/3/home/nivo/ports/tor/distinfo Sun Jun 3 15:05:13 2007 @@ -1,3 +1,3 @@ -MD5 (tor-0.1.1.26.tar.gz) = 0667df7a1f670bee5163b607aea172ba -SHA256 (tor-0.1.1.26.tar.gz) = 3be8c89be5b927e73b77a82ca3d83f0f162fceea2d6a14ce1c0cf5333b36cd1c -SIZE (tor-0.1.1.26.tar.gz) = 893367 +MD5 (tor-0.1.2.14.tar.gz) = dc93a52f9c12ec7fe73b3905a28f09ec +SHA256 (tor-0.1.2.14.tar.gz) = bc23e6f826f1f736e9d5e56ba79195099882aef2029a63dd667915bc1eb836a6 +SIZE (tor-0.1.2.14.tar.gz) = 1225040 diff -ruN --exclude=CVS /usr/ports/security/tor/files/patch-src-or-config.c /disk/3/home/nivo/ports/tor/files/patch-src-or-config.c --- /usr/ports/security/tor/files/patch-src-or-config.c Thu Jan 1 01:00:00 1970 +++ /disk/3/home/nivo/ports/tor/files/patch-src-or-config.c Sun Jun 3 15:03:35 2007 @@ -0,0 +1,11 @@ +--- src/or/config.c.orig Sun Jun 3 14:15:13 2007 ++++ src/or/config.c Sun Jun 3 14:15:17 2007 +@@ -3901,7 +3901,7 @@ + #if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) + if (server && version < LE_13B) { + thread_unsafe = 1; +- sad_os = "BSD variants" ++ sad_os = "BSD variants"; + } + #elif defined(__APPLE__) || defined(__darwin__) + if (server && version < LE_13B) { --- tor-0.1.2.14.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 13:20:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68B6216A469; Sun, 3 Jun 2007 13:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 40AF113C483; Sun, 3 Jun 2007 13:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53DKCV2080167; Sun, 3 Jun 2007 13:20:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53DKChH080163; Sun, 3 Jun 2007 13:20:12 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 13:20:12 GMT From: Edwin Groothuis Message-Id: <200706031320.l53DKChH080163@freefall.freebsd.org> To: nivo+kw+ports.bfa274@is-root.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113289: [PATCH] security/tor: update to 0.1.2.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 13:20:12 -0000 Synopsis: [PATCH] security/tor: update to 0.1.2.14 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Jun 3 13:20:11 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113289 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 13:25:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24A2416A46B; Sun, 3 Jun 2007 13:25:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F20EA13C457; Sun, 3 Jun 2007 13:25:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53DPIdM081039; Sun, 3 Jun 2007 13:25:18 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53DPIOa081035; Sun, 3 Jun 2007 13:25:18 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 13:25:18 GMT From: Martin Wilke Message-Id: <200706031325.l53DPIOa081035@freefall.freebsd.org> To: peter.thoenen@yahoo.com, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113289: [PATCH] security/tor: update to 0.1.2.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 13:25:19 -0000 Synopsis: [PATCH] security/tor: update to 0.1.2.14 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 13:25:18 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113289 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 14:40:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05F6216A46E for ; Sun, 3 Jun 2007 14:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A720713C448 for ; Sun, 3 Jun 2007 14:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ee78k088994 for ; Sun, 3 Jun 2007 14:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ee7OM088993; Sun, 3 Jun 2007 14:40:07 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 14:40:07 GMT Message-Id: <200706031440.l53Ee7OM088993@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Nils Vogels Cc: Subject: Re: ports/113283: [PATCH] two patches for net/socat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nils Vogels List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 14:40:08 -0000 The following reply was made to PR ports/113283; it has been noted by GNATS. From: Nils Vogels To: bug-followup@FreeBSD.org, bf2006a@yahoo.com Cc: Subject: Re: ports/113283: [PATCH] two patches for net/socat Date: Sun, 03 Jun 2007 16:06:15 +0200 Hi "bf", Bughunting is always good, patch seems to apply cleanly with me. Thanks for bringing it to my attention! Approved, Gr, Nils From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 16:00:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60A2216A468 for ; Sun, 3 Jun 2007 16:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3E27C13C448 for ; Sun, 3 Jun 2007 16:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53G0EbB096791 for ; Sun, 3 Jun 2007 16:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53G0EhO096787; Sun, 3 Jun 2007 16:00:14 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 16:00:14 GMT Resent-Message-Id: <200706031600.l53G0EhO096787@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Samorukov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E50B916A400 for ; Sun, 3 Jun 2007 15:58:44 +0000 (UTC) (envelope-from root@deepvision.tsua.net) Received: from deepvision.tsua.net (deepvision.tsua.net [212.40.43.22]) by mx1.freebsd.org (Postfix) with ESMTP id 5AAC113C487 for ; Sun, 3 Jun 2007 15:58:39 +0000 (UTC) (envelope-from root@deepvision.tsua.net) Received: from root by deepvision.tsua.net with local (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HusTd-000CD6-EB; Sun, 03 Jun 2007 18:58:45 +0300 Message-Id: Date: Sun, 03 Jun 2007 18:58:45 +0300 From: Alex Samorukov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: samm@os2.kiev.ua Subject: ports/113293: [MAINTAINER] mail/spamd: update to 4.1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 16:00:14 -0000 >Number: 113293 >Category: ports >Synopsis: [MAINTAINER] mail/spamd: update to 4.1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 16:00:13 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alex Samorukov >Release: FreeBSD 5.4-RELEASE-p22 i386 >Organization: Shevchenko Didkovskiy and Partners >Environment: System: FreeBSD deepvision.tsua.net 5.4-RELEASE-p22 FreeBSD 5.4-RELEASE-p22 #6: Thu Feb 1 14:16:07 EET >Description: - Update to 4.1.1 - New IPFW support - Many project home Added file(s): - files/obspamd.in - files/obspamlogd.in - files/pkg-deinstall.in - files/pkg-install.in - files/pkg-message.in Removed file(s): - files/patch-greyc - files/patch-greyh - files/patch-spamd - files/patch-spamd-setup - files/patch-spamdm - files/pfspamd.sh.in - pkg-install - pkg-message - pkg-plist - work/.build_done.spamd._usr_local - work/.configure_done.spamd._usr_local - work/.extract_done.spamd._usr_local - work/.patch_done.spamd._usr_local - work/spamd_3.7/Makefile - work/spamd_3.7/doc/spamd.conf - work/spamd_3.7/doc/spamd.conf.5 - work/spamd_3.7/spamd/Makefile - work/spamd_3.7/spamd/grey.c - work/spamd_3.7/spamd/grey.c.orig - work/spamd_3.7/spamd/grey.h - work/spamd_3.7/spamd/grey.h.orig - work/spamd_3.7/spamd/grey.o - work/spamd_3.7/spamd/sdl.c - work/spamd_3.7/spamd/sdl.h - work/spamd_3.7/spamd/sdl.o - work/spamd_3.7/spamd/spamd - work/spamd_3.7/spamd/spamd.8 - work/spamd_3.7/spamd/spamd.8.bak - work/spamd_3.7/spamd/spamd.8.gz - work/spamd_3.7/spamd/spamd.8.orig - work/spamd_3.7/spamd/spamd.c - work/spamd_3.7/spamd/spamd.c.orig - work/spamd_3.7/spamd/spamd.o - work/spamd_3.7/spamd-setup/Makefile - work/spamd_3.7/spamd-setup/spamd-setup - work/spamd_3.7/spamd-setup/spamd-setup.8 - work/spamd_3.7/spamd-setup/spamd-setup.8.bak - work/spamd_3.7/spamd-setup/spamd-setup.8.gz - work/spamd_3.7/spamd-setup/spamd-setup.c - work/spamd_3.7/spamd-setup/spamd-setup.c.bak - work/spamd_3.7/spamd-setup/spamd-setup.c.orig - work/spamd_3.7/spamd-setup/spamd-setup.o - work/spamd_3.7/spamdb/Makefile - work/spamd_3.7/spamdb/spamdb - work/spamd_3.7/spamdb/spamdb.8 - work/spamd_3.7/spamdb/spamdb.8.gz - work/spamd_3.7/spamdb/spamdb.c - work/spamd_3.7/spamdb/spamdb.o - work/spamd_3.7/spamlogd/Makefile - work/spamd_3.7/spamlogd/spamlogd - work/spamd_3.7/spamlogd/spamlogd.8 - work/spamd_3.7/spamlogd/spamlogd.8.gz - work/spamd_3.7/spamlogd/spamlogd.c - work/spamd_3.7/spamlogd/spamlogd.o Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- spamd-4.1.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/spamd/Makefile /usr/home/samm/spamd/Makefile --- /usr/ports/mail/spamd/Makefile Thu Apr 26 08:42:02 2007 +++ /usr/home/samm/spamd/Makefile Sun Jun 3 18:57:26 2007 @@ -1,75 +1,90 @@ -# New ports collection makefile for: spamd -# Date created: 23 June 2003 +# New ports collection makefile for: spamd +# Date created: 04 April 2007 # Whom: Max Laier # -# $FreeBSD: ports/mail/spamd/Makefile,v 1.12 2007/03/20 15:16:44 delphij Exp $ +# $FreeBSD$ # PORTNAME= spamd -PORTVERSION= 3.7 -PORTREVISION= 3 +PORTVERSION= 4.1.1 CATEGORIES= mail -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= delphij -DISTNAME= ${PORTNAME}_${PORTVERSION} +MASTER_SITES= BERLIOS +MASTER_SITE_SUBDIR=freebsdspamd +DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= samm@os2.kiev.ua COMMENT= Traps spammers with a very slow smtp-login and return 4xx error -USE_BZIP2= yes - .include -.if defined(WITH_IPFW) -CFLAGS+= -DIPFW -.if ${OSVERSION} < 490000 -BROKEN= IPFW with Tables is required for this port to function properly -.endif -.else .if ${OSVERSION} < 502117 BROKEN= OpenBSD 3.5 pf/pfctl is necessary for this port to function properly. .else LOCAL_PFCTL= /sbin/pfctl .endif -.endif -USE_RC_SUBR= pfspamd.sh +USE_RC_SUBR?= obspamd obspamlogd -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) -IS_INTERACTIVE= yes -.endif +SPAMDUSER?= _spamd +SPAMDGROUP?= _spamd +SPAMDDIR?= /var/empty + +SPAMDUID= 132 +SPAMDGID= ${SPAMDUID} MAN5= spamd.conf.5 MAN8= spamd.8 spamd-setup.8 spamdb.8 spamlogd.8 +PORTDOCS= ipfw-spamd.txt -SAMPLE_SPAMD_CONF= ${PREFIX}/etc/spamd.conf.sample +PLIST_DIRS= etc/spamd +PLIST_FILES= libexec/spamd libexec/spamlogd \ + sbin/spamd-setup sbin/spamdb \ + etc/spamd/spamd.conf.sample + +CONFIG_DIR= ${PREFIX}/etc/spamd +SAMPLE_SPAMD_CONF= ${CONFIG_DIR}/spamd.conf.sample + +PLIST_SUB= SPAMDDIR=${SPAMDDIR} \ + SPAMDUSER=${SPAMDUSER} \ + SPAMDGROUP=${SPAMDGROUP} \ + SPAMDUID=${SPAMDUID} \ + SPAMDGID=${SPAMDGID} + +SUB_FILES= pkg-install \ + pkg-deinstall \ + pkg-message -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCAL_PFCTL%%|${LOCAL_PFCTL}|; \ - s|%%LOCAL_SPAMD_CONF%%|${PREFIX}/etc/spamd.conf|' \ - ${WRKSRC}/spamd-setup/spamd-setup.c - @${REINPLACE_CMD} -e 's|/etc/spamd.conf|${PREFIX}/etc/spamd.conf|' \ - ${WRKSRC}/spamd/spamd.8 ${WRKSRC}/spamd-setup/spamd-setup.8 - -pre-su-install: -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL -.endif +SUB_LIST= PREFIX=${PREFIX} \ + ${PLIST_SUB} + +pre-install: + @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL + +post-install: + @${CAT} ${PKGMESSAGE} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/spamd/spamd ${PREFIX}/libexec ${INSTALL_PROGRAM} ${WRKSRC}/spamlogd/spamlogd ${PREFIX}/libexec ${INSTALL_PROGRAM} ${WRKSRC}/spamd-setup/spamd-setup ${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/spamdb/spamdb ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/doc/spamd.conf.5 ${PREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/etc/spamd.conf.5 ${PREFIX}/man/man5 ${INSTALL_MAN} ${WRKSRC}/spamd/spamd.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/spamd-setup/spamd-setup.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/spamdb/spamdb.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/spamlogd/spamlogd.8 ${PREFIX}/man/man8 - @if [ ! -f ${SAMPLE_SPAMD_CONF} ]; then \ + @if [ ! -d ${CONFIG_DIR} ]; then \ + ${MKDIR} ${CONFIG_DIR}; \ + fi + @if [ ! -f ${SAMPLE_SPAMD_CONF} ]; then \ ${ECHO_MSG} "Installing ${SAMPLE_SPAMD_CONF} file."; \ - ${INSTALL_DATA} ${WRKSRC}/doc/spamd.conf \ - ${SAMPLE_SPAMD_CONF}; \ + ${ECHO_MSG} "${INSTALL_DATA} -v -p ${WRKSRC}/etc/spamd.conf ${SAMPLE_SPAMD_CONF}"; \ + ${INSTALL_DATA} -v -p ${WRKSRC}/etc/spamd.conf \ + ${SAMPLE_SPAMD_CONF}; \ fi +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/doc/ipfw-spamd.txt ${DOCSDIR}/ +.endif .include diff -ruN --exclude=CVS /usr/ports/mail/spamd/distinfo /usr/home/samm/spamd/distinfo --- /usr/ports/mail/spamd/distinfo Thu Jan 26 21:27:27 2006 +++ /usr/home/samm/spamd/distinfo Sun Jun 3 18:49:28 2007 @@ -1,3 +1,3 @@ -MD5 (spamd_3.7.tar.bz2) = e1d96b9d7b1d4189dca510ff0000383f -SHA256 (spamd_3.7.tar.bz2) = a06ad07ead38240f13ea01c5d0315179e7089ed8fb8fe6544b1860bd8cfdc355 -SIZE (spamd_3.7.tar.bz2) = 28066 +MD5 (spamd-4.1.1.tar.gz) = 6cf6a92b709e1907162fd1c59af7943a +SHA256 (spamd-4.1.1.tar.gz) = b6e8b00ec0b3ff5ff3e73de2fab3f3bbbd3d95807ef1a946a6302666d17c503a +SIZE (spamd-4.1.1.tar.gz) = 50179 diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/obspamd.in /usr/home/samm/spamd/files/obspamd.in --- /usr/ports/mail/spamd/files/obspamd.in Thu Jan 1 03:00:00 1970 +++ /usr/home/samm/spamd/files/obspamd.in Mon Apr 23 18:33:35 2007 @@ -0,0 +1,70 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: obspamd +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: shutdown + +# +# Define these spamd_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# +# obspamd_enable="YES" # Run the spamd(8) daemon (YES/NO). +# obspamd_flags="" # Extra flags for spamd(8) (if enabled). +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +obspamd_enable=${obspamd_enable:-"NO"} +obspamd_flags=${obspamd_flags:-""} + +. %%RC_SUBR%% + +name="obspamd" +rcvar=`set_rcvar` + +command="%%PREFIX%%/libexec/spamd" +start_precmd="obspamd_precmd" +start_postcmd="obspamd_postcmd" +restart_postcmd="obspamd_postcmd" +stop_postcmd="obspamd_cleanup" +pidfile="/var/run/spamd.pid" + +obspamd_precmd() +{ + _rc=0 + echo "${obspamd_flags}" | grep "\-b" 2>&1 > /dev/null + if [ $? -eq 1 ]; then + /sbin/mount -p | grep 'fdescfs.*/dev/fd.*fdescfs.*rw' 2>&1 > /dev/null + _rc=${?} + if [ ${_rc} -ne 0 ]; then + echo "Unable to start spamd in greylisting mode" + echo "" + echo "Please mount fdescfs with the following line in /etc/fstab" + echo "" + echo " fdescfs /dev/fd fdescfs rw 0 0" + echo "" + fi + return ${_rc} + fi +} + +obspamd_postcmd() +{ + if [ -x %%PREFIX%%/sbin/spamd-setup ]; then + if [ -r %%PREFIX%%/etc/spamd/spamd.conf ]; then + %%PREFIX%%/sbin/spamd-setup & + fi + fi +} + +obspamd_cleanup() +{ + /bin/rm -f ${pidfile} +} + +load_rc_config $name +run_rc_command "$1" diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/obspamlogd.in /usr/home/samm/spamd/files/obspamlogd.in --- /usr/ports/mail/spamd/files/obspamlogd.in Thu Jan 1 03:00:00 1970 +++ /usr/home/samm/spamd/files/obspamlogd.in Mon Apr 23 18:33:35 2007 @@ -0,0 +1,56 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: obspamlogd +# REQUIRE: NETWORKING SERVERS obspamd +# BEFORE: DAEMON +# KEYWORD: shutdown + +# +# Define these obspamlogd_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# +# obspamlogd_enable="YES" # Run the spamlogd(8) daemon (YES/NO). +# obspamlogd_flags="" # Extra flags for spamlogd(8) (if enabled). +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +obspamlogd_enable=${obspamlogd_enable:-"NO"} +obspamlogd_flags=${obspamlogd_flags:-""} + +. %%RC_SUBR%% + +name="obspamlogd" +rcvar=`set_rcvar` + +command="%%PREFIX%%/libexec/spamlogd" +start_precmd="obspamlogd_precmd" +stop_postcmd="obspamlogd_cleanup" +pidfile="/var/run/spamlogd.pid" + +obspamlogd_precmd() +{ + _rc=0 + /sbin/mount -p | grep 'fdescfs.*/dev/fd.*fdescfs.*rw' 2>&1 > /dev/null + _rc=${?} + if [ ${_rc} -ne 0 ]; then + echo "Unable to start ${name}" + echo "" + echo "Please mount fdescfs with the following line in /etc/fstab" + echo "" + echo " fdescfs /dev/fd fdescfs rw 0 0" + echo "" + fi + return ${_rc} +} + +obspamlogd_cleanup() +{ + /bin/rm -f ${pidfile} +} + +load_rc_config $name +run_rc_command "$1" diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/patch-greyc /usr/home/samm/spamd/files/patch-greyc --- /usr/ports/mail/spamd/files/patch-greyc Tue May 2 11:54:50 2006 +++ /usr/home/samm/spamd/files/patch-greyc Thu Jan 1 03:00:00 1970 @@ -1,131 +0,0 @@ ---- spamd/grey.c Wed Apr 13 03:22:17 2005 -+++ spamd/grey.c Mon Mar 20 15:26:18 2006 -@@ -39,6 +39,10 @@ - #include - #include - -+#ifdef IPFW -+#include -+#endif -+ - #include "grey.h" - - extern time_t passtime, greyexp, whiteexp, trapexp; -@@ -65,13 +69,17 @@ - char *traplist_msg = "\"Your address %A has mailed to spamtraps here\\n\""; - - pid_t db_pid = -1; --int pfdev; - int spamdconf; - -+#ifdef IPFW -+extern int tabno; -+#else -+int pfdev; - static char *pargv[11]= { - "pfctl", "-p", "/dev/pf", "-q", "-t", - "spamd-white", "-T", "replace", "-f" "-", NULL - }; -+#endif - - /* If the parent gets a signal, kill off the children and exit */ - /* ARGSUSED */ -@@ -104,6 +112,7 @@ - return(0); - } - -+#ifndef IPFW - int - configure_pf(char **addrs, int count) - { -@@ -166,11 +175,54 @@ - for (i = 0; i < count; i++) - if (addrs[i] != NULL) - fprintf(pf, "%s/32\n", addrs[i]); -+ - fclose(pf); - waitpid(pid, NULL, 0); - sigaction(SIGCHLD, &sa, NULL); - return(0); - } -+#else -+int -+configure_pf(char **addrs, int count) -+{ -+ static int s = -1; -+ ipfw_table_entry ent; -+ int i; -+ -+ if (s == -1) -+ s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); -+ if (s < 0) -+ { -+ syslog_r(LOG_INFO, &sdata, "IPFW socket unavailable (%m)"); -+ return(-1); -+ } -+ -+ /* flush the table */ -+ ent.tbl = tabno; -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) -+ { -+ syslog_r(LOG_INFO, &sdata, "IPFW setsockopt(IP_FW_TABLE_FLUSH) (%m)"); -+ return(-1); -+ } -+ -+ for (i = 0; i < count; i++) -+ if (addrs[i] != NULL) -+ { -+ /* add addrs[i] to tabno */ -+ ent.tbl = tabno; -+ ent.masklen = 32; -+ ent.value = 0; -+ inet_aton(addrs[i], (struct in_addr *)&ent.addr); -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) -+ { -+ syslog_r(LOG_INFO, &sdata, "IPFW setsockopt(IP_FW_TABLE_ADD) (%m)"); -+ return(-1); -+ } -+ } -+ -+ return(0); -+} -+#endif - - void - freeaddrlists(void) -@@ -590,11 +642,13 @@ - int i; - struct sigaction sa; - -+#ifndef IPFW - pfdev = open("/dev/pf", O_RDWR); - if (pfdev == -1) { - syslog_r(LOG_ERR, &sdata, "open of /dev/pf failed (%m)"); - exit(1); - } -+#endif - - /* check to see if /var/db/spamd exists, if not, create it */ - if ((i = open(PATH_SPAMD_DB, O_RDWR, 0)) == -1 && errno == ENOENT) { -@@ -636,7 +690,9 @@ - * child, talks to jailed spamd over greypipe, - * updates db. has no access to pf. - */ -+#ifndef IPFW - close(pfdev); -+#endif - setproctitle("(%s update)", PATH_SPAMD_DB); - greyreader(); - /* NOTREACHED */ -@@ -655,7 +711,11 @@ - sigaction(SIGCHLD, &sa, NULL); - sigaction(SIGINT, &sa, NULL); - -+#ifndef IPFW - setproctitle("(pf update)"); -+#else -+ setproctitle("(ipfw white table update)"); -+#endif - greyscanner(); - /* NOTREACHED */ - exit(1); diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/patch-greyh /usr/home/samm/spamd/files/patch-greyh --- /usr/ports/mail/spamd/files/patch-greyh Tue May 2 11:54:50 2006 +++ /usr/home/samm/spamd/files/patch-greyh Thu Jan 1 03:00:00 1970 @@ -1,10 +0,0 @@ ---- spamd/grey.h Thu Mar 16 19:55:33 2006 -+++ spamd/grey.h Thu Mar 16 19:55:56 2006 -@@ -22,6 +22,7 @@ - #define WHITEEXP (60 * 60 * 24 * 36) /* remove white entries after 36 days */ - #define TRAPEXP (60 * 60 * 24) /* hitting a spamtrap blacklists for a day */ - #define PATH_PFCTL "/sbin/pfctl" -+#define PATH_IPFW "/sbin/ipfw" - #define DB_SCAN_INTERVAL 60 - #define PATH_SPAMD_DB "/var/db/spamd" - diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/patch-spamd /usr/home/samm/spamd/files/patch-spamd --- /usr/ports/mail/spamd/files/patch-spamd Tue May 2 11:54:50 2006 +++ /usr/home/samm/spamd/files/patch-spamd Thu Jan 1 03:00:00 1970 @@ -1,48 +0,0 @@ ---- spamd/spamd.c Thu Mar 16 20:56:45 2006 -+++ spamd/spamd.c Thu Mar 16 21:07:11 2006 -@@ -123,6 +123,10 @@ - pid_t jail_pid = -1; - u_short cfg_port; - -+#ifdef IPFW -+int tabno=1; -+#endif -+ - extern struct sdlist *blacklists; - - int conffd = -1; -@@ -153,6 +157,10 @@ - " [-G mins:hours:hours] [-n name] [-p port]\n"); - fprintf(stderr, - " [-r reply] [-s secs] [-w window]\n"); -+#ifdef IPFW -+ fprintf(stderr, -+ " [-t table_no]\n"); -+#endif - exit(1); - } - -@@ -958,7 +966,11 @@ - if (gethostname(hostname, sizeof hostname) == -1) - err(1, "gethostname"); - -+#ifdef IPFW -+ while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:t:")) != -1) { -+#else - while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:")) != -1) { -+#endif - switch (ch) { - case '4': - nreply = "450"; -@@ -1015,6 +1027,11 @@ - case 'v': - verbose = 1; - break; -+#ifdef IPFW -+ case 't': -+ tabno = atoi(optarg); -+ break; -+#endif - case 'w': - window = atoi(optarg); - if (window <= 0) diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/patch-spamd-setup /usr/home/samm/spamd/files/patch-spamd-setup --- /usr/ports/mail/spamd/files/patch-spamd-setup Thu Apr 26 08:42:02 2007 +++ /usr/home/samm/spamd/files/patch-spamd-setup Thu Jan 1 03:00:00 1970 @@ -1,110 +0,0 @@ ---- spamd-setup/spamd-setup.c.orig Wed Apr 13 01:18:59 2005 -+++ spamd-setup/spamd-setup.c Wed May 10 01:55:13 2006 -@@ -41,6 +41,11 @@ - #include - #include - -+#ifdef IPFW -+#include -+#include -+#endif -+ - #define PATH_FTP "/usr/bin/ftp" - #define PATH_PFCTL "%%LOCAL_PFCTL%%" - #define PATH_SPAMD_CONF "%%LOCAL_SPAMD_CONF%%" -@@ -93,6 +98,11 @@ - int debug; - int dryrun; - -+#ifdef IPFW -+int tabno=2; -+#endif -+ -+ - u_int32_t - imask(u_int8_t b) - { -@@ -630,6 +640,7 @@ - } - - -+#ifndef IPFW - int - configure_pf(struct cidr **blacklists) - { -@@ -676,6 +687,51 @@ - } - return(0); - } -+#else -+int -+configure_pf(struct cidr **blacklists) -+{ -+ static int s = -1; -+ ipfw_table_entry ent; -+ -+ if (s == -1) -+ s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); -+ if (s < 0) -+ { -+ err(1, "IPFW socket unavailable"); -+ return(-1); -+ } -+ -+ /* flush the table */ -+ ent.tbl = tabno; -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) -+ { -+ err(1, "IPFW setsockopt(IP_FW_TABLE_FLUSH)"); -+ return(-1); -+ } -+ -+ while (*blacklists != NULL) { -+ struct cidr *b = *blacklists; -+ -+ while (b->addr != 0) { -+ /* add b to tabno */ -+ ent.tbl = tabno; -+ ent.masklen = b->bits; -+ ent.value = 0; -+ inet_aton(atop(b->addr), (struct in_addr *)&ent.addr); -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) -+ { -+ err(1, "IPFW setsockopt(IP_FW_TABLE_ADD)"); -+ return(-1); -+ } -+ b++; -+ } -+ blacklists++; -+ } -+ -+ return(0); -+} -+#endif - - int - getlist(char ** db_array, char *name, struct blacklist *blist, -@@ -773,7 +829,11 @@ - struct servent *ent; - int i, ch; - -+#ifndef IPFW - while ((ch = getopt(argc, argv, "nd")) != -1) { -+#else -+ while ((ch = getopt(argc, argv, "ndt:")) != -1) { -+#endif - switch (ch) { - case 'n': - dryrun = 1; -@@ -781,6 +841,11 @@ - case 'd': - debug = 1; - break; -+#ifdef IPFW -+ case 't': -+ tabno = atoi(optarg); -+ break; -+#endif - default: - break; - } diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/patch-spamdm /usr/home/samm/spamd/files/patch-spamdm --- /usr/ports/mail/spamd/files/patch-spamdm Tue May 2 11:54:50 2006 +++ /usr/home/samm/spamd/files/patch-spamdm Thu Jan 1 03:00:00 1970 @@ -1,89 +0,0 @@ ---- spamd/spamd.8 Wed Apr 13 03:21:48 2005 -+++ spamd/spamd.8 Mon Mar 20 15:12:10 2006 -@@ -49,6 +49,8 @@ - daemon which rejects false mail. - If the - .Xr pf 4 -+or -+.Xr ipfw 4 - packet filter is configured to redirect port 25 (SMTP) to this daemon, - it will attempt to waste the time and resources of the spam sender. - .Pp -@@ -151,11 +153,15 @@ - which processes a list of spammers' addresses, and applies appropriate - .Xr pfctl 8 - .Em rdr -+or -+.Xr ipfw 8 -+.Em fwd - rules. - .Xr spamd-setup 8 - is run from - .Xr cron 8 . - .Sh REDIRECTING SMTP CONNECTIONS -+.Ss "When using PF" - With - .Xr pf 4 , - connections to port 25 (SMTP) can be redirected to another host or port, -@@ -189,6 +195,8 @@ - can also be used to load addresses into the - .Em - table. -+ -+ - .Xr spamd-setup 8 - also has the added benefit of being able to remove addresses from - blacklists, and will connect to -@@ -203,6 +211,52 @@ - This is important as it allows legitimate mail - senders to pressure spam sources into behaving properly so that they - may be removed from the relevant blacklists. -+ -+.Ss "If compiled with IPFW" -+With -+.Xr ipfw 4 , -+the syntax for redirection of TCP sessions is quite different -+from that of -+.Xr pf 4 . -+The -+.Em fwd -+rule used for this purpose are described in -+.Xr ipfw 8 . -+The rules should be added to the ruleset called by /etc/rc.firewall -+to be present at boot time. -+.Bd -literal -offset 4n -+fwd 127.0.0.1,8025 tcp from table(2) to me 25 in -+allow tcp from table(1) to me 25 in -+fwd 127.0.0.1,8025 tcp from any to me 25 in -+.Ed -+.Pp -+Any addresses in the blacklist table -+.Em 2 -+and not in the whitelist table -+.Em 1 -+are then redirected to -+.Nm -+running on port 8025. -+Addresses can be loaded into the blacklist -+.Em table , -+like: -+.Bd -literal -offset 4n -+# ipfw table 1 add a.b.c.d/x -+.Ed -+.Pp -+.Xr spamd-setup 8 -+can also be used to load addresses into the blacklist table -+.Em 2 . -+.Pp -+The -+.Op Fl t Ar table_no -+option to -+.Em spamd -+and -+.Em spamd-setup -+can be used to change the default table -+numbers. -+ - .Sh CONFIGURATION CONNECTIONS - .Nm - listens for configuration connections on the port identified by the diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/pfspamd.sh.in /usr/home/samm/spamd/files/pfspamd.sh.in --- /usr/ports/mail/spamd/files/pfspamd.sh.in Thu Apr 26 08:42:02 2007 +++ /usr/home/samm/spamd/files/pfspamd.sh.in Thu Jan 1 03:00:00 1970 @@ -1,49 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: ports/mail/spamd/files/pfspamd.sh.in,v 1.2 2007/03/20 15:16:44 delphij Exp $ -# - -# PROVIDE: pfspamd -# REQUIRE: NETWORKING -# BEFORE: mail -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable spamd: -# pfspamd_enable (bool): Set to "NO" by default. -# Set it to "YES" to enable spamd -# pfspamd_flags (str): Set to "" by default. -# Extra flags passed to start command. -# pfspamd_setup_flags (str): Set to "" by default. -# Extra flags passed to spamd-setup command. - -. %%RC_SUBR%% - -name="pfspamd" -rcvar=`set_rcvar` - -command="%%PREFIX%%/libexec/spamd" -start_postcmd="pfspamd_postcmd" -restart_postcmd="pfspamd_postcmd" - -[ -z "$pfspamd_enable" ] && pfspamd_enable="NO" -[ -z "$pfspamd_flags" ] && pfspamd_flags="" -[ -z "$pfspamd_setup_flags" ] && pfspamd_setup_flags="" - -load_rc_config $name - -# we override check_process to avoid conflict with the spamd from sa-spamd -check_process() -{ - ps ax -o pid,command | grep "libexec/spamd" | grep -v grep | awk '{print $1}' -} - - -pfspamd_postcmd() -{ - if [ -x %%PREFIX%%/sbin/spamd-setup ]; then - %%PREFIX%%/sbin/spamd-setup $pfspamd_setup_flags - fi -} - -run_rc_command "$1" diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/pkg-deinstall.in /usr/home/samm/spamd/files/pkg-deinstall.in --- /usr/ports/mail/spamd/files/pkg-deinstall.in Thu Jan 1 03:00:00 1970 +++ /usr/home/samm/spamd/files/pkg-deinstall.in Tue Apr 10 18:49:02 2007 @@ -0,0 +1,21 @@ +#!/bin/sh +# +# + +SPAMDDIR=%%SPAMDDIR%% +SPAMDUSER=%%SPAMDUSER%% +SPAMDGROUP=%%SPAMDGROUP%% + +if [ "$2" = "POST-DEINSTALL" ]; then + if /usr/sbin/pw group show "${SPAMDGROUP}" 2>&1 >/dev/null; then + echo "You should manually remove the \"${SPAMDGROUP}\" group." + fi + + if /usr/sbin/pw user show "${SPAMDUSER}" 2>&1 >/dev/null; then + echo "You should manually remove the \"${SPAMDUSER}\" user." + fi + + if [ -e "${SPAMDDIR}" ]; then + echo "You should manually remove the \"${SPAMDDIR}\" directory." + fi +fi diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/pkg-install.in /usr/home/samm/spamd/files/pkg-install.in --- /usr/ports/mail/spamd/files/pkg-install.in Thu Jan 1 03:00:00 1970 +++ /usr/home/samm/spamd/files/pkg-install.in Wed Apr 18 15:58:31 2007 @@ -0,0 +1,148 @@ +#!/bin/sh +# +# + +SPAMDDIR=%%SPAMDDIR%% +SPAMDUSER=%%SPAMDUSER%% +SPAMDGROUP=%%SPAMDGROUP%% +SPAMDUID=%%SPAMDUID%% +SPAMDGID=%%SPAMDGID%% + +ask() { + local question default answer + + question=$1 + default=$2 + if [ -z "${PACKAGE_BUILDING}" ]; then + read -p "${question} [${default}]? " answer + fi + if [ "x${answer}" = "x" ]; then + answer=${default} + fi + echo ${answer} +} + +yesno() { + local default question answer + + question=$1 + default=$2 + while :; do + answer=$(ask "${question}" "${default}") + case "${answer}" in + [Yy][Ee][Ss]|[Yy]) + return 0 + ;; + [Nn][Oo]|[Nn]) + return 1 + ;; + esac + echo "Please answer yes or no." + done +} + +check_db() { + DB=/var/db/spamd + if [ -f ${DB} ]; then + OWN=`ls -l ${DB} | awk '{print $3}'` + GRP=`ls -l ${DB} | awk '{print $4}'` + fi + if [ "x${OWN}" != "x${SPAMDUSER}" ]; then + echo "change ${BD} owner to ${SPAMDUSER}:" + /usr/sbin/chown ${SPAMDUSER} ${DB} + fi + if [ "x${GRP}" != "x${SPAMDGROUP}" ]; then + echo "change ${BD} owner to :${SPAMDUSER}" + /usr/sbin/chown :${SPAMDGROUP} ${DB} + fi +} + +check_service() { + local name number type comment + + name=$1 + number=$2 + type=$3 + comment=$4 + + FILE="/etc/services" + # check + OK=no + HAS_SERVICE=no + COUNT=1 + for i in `grep $name $FILE `; do + if [ $COUNT = 1 ] && [ X"$i" = X"$name" ]; then + HAS_SERVICE=yes + elif [ $COUNT = 2 ] && [ $HAS_SERVICE = yes ] && \ + [ X"$i" = X"$number/$type" ]; then + OK=yes + break + fi + COUNT=`expr ${COUNT} + 1` + done + # add an entry for SERVICE to /etc/services + if [ $OK = no ]; then + echo "This system has no entry for $name in ${FILE}" + if yesno "Would you like to add it automatically?" y; then + mv ${FILE} ${FILE}.bak + (grep -v $name ${FILE}.bak ; \ + echo "$name $number/$type # $comment") \ + >> ${FILE} + rm ${FILE}.bak + else + echo "Please add '$name $number/$type' into ${FILE}, and try again." + return 1 + fi + fi + return 0 +} + + +if [ "$2" = "PRE-INSTALL" ]; then + check_dbown=0 + if /usr/sbin/pw group show "${SPAMDGROUP}" 2>&1 >/dev/null; then + echo "You already have a \"${SPAMDGROUP}\" group, so I will use it." + else + echo "You need a \"${SPAMDGROUP}\" group." + if yesno "Would you like me to create it" "YES"; then + /usr/sbin/pw groupadd "${SPAMDGROUP}" -g "${SPAMDGID}" -h - || \ + /usr/sbin/pw groupadd "${SPAMDGROUP}" -h - || exit + echo "Done." + check_dbown=1 + else + echo "Please create the \"${SPAMDGROUP}\" group manually and try again." + exit 1 + fi + fi + + if /usr/sbin/pw user show "${SPAMDUSER}" 2>&1 >/dev/null; then + echo "You already have a \"${SPAMDUSER}\" user, so I will use it." + else + echo "You need a \"${SPAMDUSER}\" user." + if yesno "Would you like me to create it" "YES"; then + /usr/sbin/pw useradd "${SPAMDUSER}" -u "${SPAMDUID}" -g "${SPAMDGROUP}" -h - -d "${SPAMDDIR}" \ + -s /sbin/nologin -c "spamd pseudo-user" || \ + /usr/sbin/pw useradd "${SPAMDUSER}" -g "${SPAMDGROUP}" -h - -d "${SPAMDDIR}" \ + -s /sbin/nologin -c "spamd pseudo-user" || exit + check_dbown=1 + else + echo "Please create the \"${SPAMDUSER}\" user manually and try again." + exit 1 + fi + fi + + if [ ${check_dbown} -eq 1 ]; then + check_db + fi + + if ! check_service spamd 8025 tcp "spamd(8)"; then + exit 1 + fi + if ! check_service spamd-cfg 8026 tcp "spamd(8) configuration"; then + exit 1 + fi + if ! check_service spamd-sync 8025 udp "spamd(8) synchronisation"; then + exit 1 + fi + +fi diff -ruN --exclude=CVS /usr/ports/mail/spamd/files/pkg-message.in /usr/home/samm/spamd/files/pkg-message.in --- /usr/ports/mail/spamd/files/pkg-message.in Thu Jan 1 03:00:00 1970 +++ /usr/home/samm/spamd/files/pkg-message.in Sun Jun 3 18:49:28 2007 @@ -0,0 +1,42 @@ +********************************************************************** +To enable spamd you need: + +1) Enable spamd in /etc/rc.conf with the following line: + obspamd_enable="YES" + obspamlogd_enable="YES" + +2) Configuration template is available in %%PREFIX%%/etc/spamd as + spamd.conf.sample file. Copy then to spamd.conf file and + edit to suit your needs. + +3) mount fdescfs to /dev/fd with the following line in /etc/fstab + fdescfs /dev/fd fdescfs rw 0 0 + +4) Add following lines to the pf.conf(5) + + table persist + no rdr inet proto tcp from to any \ + port smtp + rdr pass inet proto tcp from any to any \ + port smtp -> 127.0.0.1 port spamd + + !!!!!!!!!!!! -- I M P O T A N T - N O T E S -- !!!!!!!!!!!!!!!!! + ! + ! changes in Ver. 4.1.x: + ! - UID/GID is reserved to: _spamd:_spamd + ! check the owner of /var/db/spamd + ! - greylisting is now the default + ! - paramer: -b is now blacklist (Ver. < 4.1.x it is bind address) + ! - paramer: -l is now listen address + ! - spamdb: format is now HASH, helo/ehlo is also stored in db + ! convert will be done at the first start of spamd + ! if you have scripts that use spamdb review this scripts + ! - config files: new location is %%PREFIX%%/etc/spamd + ! - spamtrapp addresses: remove the surrounding '< >' signs + ! - pfspamd.sh was renamed to the obspamd + ! - IPFW support (beta) added to the sources. + ! See %%PREFIX%%/%%DOCSDIR%%/spamd-ipfw.txt for usage manual. + ! + !!!!!!!!!!!! -- I M P O T A N T - N O T E S -- !!!!!!!!!!!!!!!!! + +********************************************************************** diff -ruN --exclude=CVS /usr/ports/mail/spamd/pkg-descr /usr/home/samm/spamd/pkg-descr --- /usr/ports/mail/spamd/pkg-descr Wed Nov 8 22:37:58 2006 +++ /usr/home/samm/spamd/pkg-descr Tue Apr 10 11:41:43 2007 @@ -1,17 +1,21 @@ -Tarpits like spamd are fake SMTP servers, which accept connections but don't -deliver mail. Instead, they keep the connections open and reply very slowly. -If the peer is patient enough to actually complete the SMTP dialogue (which -will take ten minutes or more), the tarpit returns a 'temporary error' code -(4xx), which indicates that the mail could not be delivered successfully and -that the sender should keep the mail in his queue and retry again later. If -he does, the same procedure repeats. Until, after several attempts, wasting -both his queue space and socket handles for several days, he gives up. The -resources I have to waste to do this are minimal. +Spamd is a fake sendmail(8)-like daemon which rejects false mail. It is +designed to be very efficient so that it does not slow down the receiving +machine. -If the sender is badly configured, an uncooperative recipient might actually -delay his entire queue handling for several minutes each time he connects to -the tarpit. And many spammers use badly configured open relays +spamd considers sending hosts to be of three types: -WWW: http://www.OpenBSD.org/spamd/ + blacklisted hosts are redirected to spamd and tarpitted i.e. they are + communicated with very slowly to consume the sender's resources. Mail is + rejected with either a 450 or 550 error message. A blacklisted host will not + be allowed to talk to a real mail server. + + whitelisted hosts do not talk to spamd. Their connections are instead sent to + a real mail server, such as sendmail(8). + + greylisted hosts are redirected to spamd, but spamd has not yet decided if + they are likely spammers. They are given a temporary failure message by spamd + when they try to deliver mail. + +WWW: http://freebsdspamd.berlios.de/ -Max diff -ruN --exclude=CVS /usr/ports/mail/spamd/pkg-install /usr/home/samm/spamd/pkg-install --- /usr/ports/mail/spamd/pkg-install Tue Sep 30 02:01:21 2003 +++ /usr/home/samm/spamd/pkg-install Thu Jan 1 03:00:00 1970 @@ -1,84 +0,0 @@ -#!/bin/sh -# an installation script for spamd copied from pf_freebsd - -ask() { - local question default answer - - question=$1 - default=$2 - if [ -z "${PACKAGE_BUILDING}" ]; then - read -p "${question} (y/n) [${default}]? " answer - fi - if [ x${answer} = x ]; then - answer=${default} - fi - echo ${answer} -} - -yesno() { - local dflt question answer - - question=$1 - dflt=$2 - while :; do - answer=$(ask "${question}" "${dflt}") - case "${answer}" in - [Yy]*) return 0;; - [Nn]*) return 1;; - esac - echo "Please answer yes or no." - done -} - -check_service() { - local name number type comment - - name=$1 - number=$2 - type=$3 - comment=$4 - - FILE="/etc/services" - # check - OK=no - HAS_SERVICE=no - COUNT=1 - for i in `grep $name $FILE `; do - if [ $COUNT = 1 ] && [ X"$i" = X"$name" ]; then - HAS_SERVICE=yes - elif [ $COUNT = 2 ] && [ $HAS_SERVICE = yes ] && \ - [ X"$i" = X"$number/$type" ]; then - OK=yes - break - fi - COUNT=`expr ${COUNT} + 1` - done - # add an entry for SERVICE to /etc/services - if [ $OK = no ]; then - echo "This system has no entry for $name in ${FILE}" - if yesno "Would you like to add it automatically?" y; then - mv ${FILE} ${FILE}.bak - (grep -v $name ${FILE}.bak ; \ - echo "$name $number/$type # $comment") \ - >> ${FILE} - rm ${FILE}.bak - else - echo "Please add '$name $number/$type' into ${FILE}, and try again." - return 1 - fi - fi - return 0 -} - -case $2 in -PRE-INSTALL) - - if ! check_service spamd 8025 tcp "# spamd(8)"; then - exit 1 - fi - if ! check_service spamd-cfg 8026 tcp "# spamd(8) configuration"; then - exit 1 - fi - ;; - -esac diff -ruN --exclude=CVS /usr/ports/mail/spamd/pkg-message /usr/home/samm/spamd/pkg-message --- /usr/ports/mail/spamd/pkg-message Thu Jan 13 04:54:46 2005 +++ /usr/home/samm/spamd/pkg-message Thu Jan 1 03:00:00 1970 @@ -1,9 +0,0 @@ -++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -In order to use spamd greylisting feature you have to have a mounted fdescfs(5) -at /dev/fd. This is done by adding: - - fdescfs /dev/fd fdescfs rw 0 0 - -to /etc/fstab. You may need either a customised kernel, or kldload the fdescfs -kernel module. -++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ diff -ruN --exclude=CVS /usr/ports/mail/spamd/pkg-plist /usr/home/samm/spamd/pkg-plist --- /usr/ports/mail/spamd/pkg-plist Tue May 23 14:17:08 2006 +++ /usr/home/samm/spamd/pkg-plist Thu Jan 1 03:00:00 1970 @@ -1,5 +0,0 @@ -libexec/spamd -libexec/spamlogd -sbin/spamd-setup -sbin/spamdb -etc/spamd.conf.sample diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/Makefile /usr/home/samm/spamd/work/spamd_3.7/Makefile --- /usr/ports/mail/spamd/work/spamd_3.7/Makefile Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/Makefile Thu Jan 1 03:00:00 1970 @@ -1,7 +0,0 @@ -# -# Makefile for OpenBSD spamd -# - -SUBDIR+= spamd spamd-setup spamdb spamlogd - -.include diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/doc/spamd.conf /usr/home/samm/spamd/work/spamd_3.7/doc/spamd.conf --- /usr/ports/mail/spamd/work/spamd_3.7/doc/spamd.conf Sun Jan 16 19:16:44 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/doc/spamd.conf Thu Jan 1 03:00:00 1970 @@ -1,86 +0,0 @@ -# $OpenBSD: spamd.conf,v 1.12 2005/01/16 17:16:44 deraadt Exp $ -# -# spamd config file, read by spamd-setup(8) for spamd(8) -# -# See spamd.conf(5) -# -# Configures whitelists and blacklists for spamd -# -# Strings follow getcap(3) convention escapes, other than you -# can have a bare colon (:) inside a quoted string and it -# will deal with it. See spamd-setup(8) for more details. -# -# "all" must be here, and defines the order in which lists are applied -# whitelists apply to the previous blacklist. more than one whitelist -# may be applied to each blacklist -# -# As of November 2004, a place to search for black lists is -# http://spamlinks.net/filter-bl.htm -# -# Some of the URLs below point to www.openbsd.org locations. Those -# files are likely to be mirrored to other OpenBSD www mirrors located -# around the world. Hence, it is possible to edit this file and rewrite -# www.openbsd.org with, for instance, to www.de.openbsd.org - -all:\ - :spamhaus:china:korea: - -# Mirrored from http://spfilter.openrbl.org/data/sbl/SBL.cidr.bz2 -spamhaus:\ - :black:\ - :msg="SPAM. Your address %A is in the Spamhaus Block List\n\ - See http://www.spamhaus.org/sbl and\ - http://www.abuse.net/sbl.phtml?IP=%A for more details":\ - :method=http:\ - :file=www.openbsd.org/spamd/SBL.cidr.gz: - -# Mirrored from http://www.spews.org/spews_list_level1.txt -spews1:\ - :black:\ - :msg="SPAM. Your address %A is in the spews level 1 database\n\ - See http://www.spews.org/ask.cgi?x=%A for more details":\ - :method=http:\ - :file=www.openbsd.org/spamd/spews_list_level1.txt.gz: - -# Mirrored from http://www.spews.org/spews_list_level2.txt -spews2:\ - :black:\ - :msg="SPAM. Your address %A is in the spews level 2 database\n\ - See http://www.spews.org/ask.cgi?x=%A for more details":\ - :method=http:\ - :file=www.openbsd.org/spamd/spews_list_level2.txt.gz: - -# Mirrored from http://www.okean.com/chinacidr.txt -china:\ - :black:\ - :msg="SPAM. Your address %A appears to be from China\n\ - See http://www.okean.com/asianspamblocks.html for more details":\ - :method=http:\ - :file=www.openbsd.org/spamd/chinacidr.txt.gz: - -# Mirrored from http://www.okean.com/koreacidr.txt -korea:\ - :black:\ - :msg="SPAM. Your address %A appears to be from Korea\n\ - See http://www.okean.com/asianspamblocks.html for more details":\ - :method=http:\ - :file=www.openbsd.org/spamd/koreacidr.txt.gz: - - -# Whitelists are done like this, and must be added to "all" after each -# blacklist from which you want the addresses in the whitelist removed. -# -#whitelist:\ -# :white:\ -# :file=/var/mail/whitelist.txt: - -relaydb-black:\ - :black:\ - :msg="SPAM. Your address %A is in my relaydb list.":\ - :method=exec:\ - :file=relaydb -4lb: - -relaydb-white:\ - :white:\ - :method=exec:\ - :file=relaydb -4lw: diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/doc/spamd.conf.5 /usr/home/samm/spamd/work/spamd_3.7/doc/spamd.conf.5 --- /usr/ports/mail/spamd/work/spamd_3.7/doc/spamd.conf.5 Thu Jan 29 19:44:29 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/doc/spamd.conf.5 Thu Jan 1 03:00:00 1970 @@ -1,190 +0,0 @@ -.\" $OpenBSD: spamd.conf.5,v 1.12 2004/01/29 17:44:29 jmc Exp $ -.\" -.\" Copyright (c) 2003 Jason L. Wright (jason@thought.net) -.\" Copyright (c) 2003 Bob Beck -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -.\" POSSIBILITY OF SUCH DAMAGE. -.\" -.Dd March 8, 2003 -.Dt SPAMD.CONF 5 -.Os -.Sh NAME -.Nm spamd.conf -.Nd configuration file read by -.Xr spamd-setup 8 -for -.Xr spamd 8 -.Sh SYNOPSIS -.Nm spamd.conf -.Sh DESCRIPTION -The -.Nm -file is read by -.Xr spamd-setup 8 -to configure blacklists and whitelists with corresponding -.Xr pf 4 -table entries for -.Xr spamd 8 . -.Nm -follows the syntax of configuration databases as documented in -.Xr getcap 3 . -Example: -.Bd -literal -offset indent -all:\e - :spews1:white:myblack: - -spews1:\e - :black:\e - :msg="SPAM. Your address \&%A is in the spews\e - level 1 database\ensee http://www.spews.org/ask.cgi?x=\&%A\en":\e - :method=http:\e - :file=www.spews.org/spews_list_level1.txt: - -white:\e - :white:\e - :method=file:\e - :file=/var/mail/mywhite.txt: - -myblack:\e - :black:\e - :msg=/var/mail/myblackmsg.txt:\e - :method=file:\e - :file=/var/mail/myblack.txt: -.Ed -.Pp -The default configuration file must include the entry -.Ar all -which specifies the order in which named blacklists and whitelists -are to be applied. -The addresses in a whitelist are removed from the preceding blacklist. -In the above example, if the address was present in all three lists, blacklists -.Ar spews1 -and -.Ar myblack , -as well as whitelist -.Ar white , -the address would be removed from blacklist -.Ar spews1 -by the subsequent -.Ar white -whitelist. -However, the address would not be removed from the -.Ar myblack -blacklist. -To remove all the addresses in -.Ar white -from -.Ar myblack , -the configuration -.Bd -literal -offset indent -all:\e - :spews1:white:myblack:white: -.Ed -.Pp -would be used instead. -.Pp -Blacklists and whitelists are then constructed by name; -blacklists are identified by the capability -.Ar black , -and whitelists by the capability -.Ar white . -.Pp -The source of the addresses for blacklists and whitelists is -specified using the -.Ar method -and -.Ar file -capability entries. -.Pp -.Ar method -specifies the method by which to retrieve a file containing a list of -addresses that consist of the blacklist or whitelist, and may be -.Ar http , -.Ar ftp , -.Ar file -or -.Ar exec . -The methods -.Ar http , -.Ar ftp -and -.Ar file -capabilities will make -.Nm -retrieve a list of addresses specified in the location in the -.Ar file -capability for the list. -The -.Ar exec -capability will make -.Nm -spawn the program with arguments indicated in the -.Ar file -capability for the list, and reads a list of addresses -from the output of the program. -.Pp -The format of the list of addresses is expected to consist of one -network block or address per line (optionally followed by a space and -text that is ignored). -Comment lines beginning with -.Ar # -are ignored. -Network blocks may be specified in any of the formats as in -the following example: -.Bd -literal -offset indent -# CIDR format -192.168.20.0/24 -# A start - end range -192.168.21.0 - 192.168.21.255 -# As a single IP address -192.168.23.1 -.Ed -.Pp -Each blacklist must include a message, specified in the -.Ar msg -capability as a string. -If the -.Ar msg -string is enclosed in double quotes, the characters in the quoted string -are escaped as specified in -.Xr getcap 3 -with the exception that a colon (:) is allowed in the quoted string. -The resulting string is used as the message. -Alternatively, if the -.Ar msg -string is not specified in quotes, it is assumed to be a local filename -from which the message text may be read. -.Pp -The message is configured in -.Xr spamd 8 -to be displayed in the SMTP dialogue to any connections that match -addresses in the blacklist. -The sequence \e" in the message will produce a double quote in the output. -The sequence %% will produce a single % in the output, -and the sequence \&%A will be expanded in the message by -.Xr spamd 8 -to display the connecting IP address in the output. -.Sh SEE ALSO -.Xr ftp 1 , -.Xr pf 4 , -.Xr spamd 8 , -.Xr spamd-setup 8 diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/Makefile /usr/home/samm/spamd/work/spamd_3.7/spamd/Makefile --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/Makefile Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/Makefile Thu Jan 1 03:00:00 1970 @@ -1,9 +0,0 @@ -# $OpenBSD: Makefile,v 1.7 2004/02/26 07:28:55 beck Exp $ - -PROG= spamd -SRCS= spamd.c sdl.c grey.c -MAN= spamd.8 - -CFLAGS+= -Wall -Wstrict-prototypes -ansi - -.include diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.c /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.c --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.c Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.c Thu Jan 1 03:00:00 1970 @@ -1,722 +0,0 @@ -/* $OpenBSD: grey.c,v 1.21 2005/03/12 00:02:07 beck Exp $ */ - -/* - * Copyright (c) 2004,2005 Bob Beck. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef IPFW -#include -#endif - -#include "grey.h" - -extern time_t passtime, greyexp, whiteexp, trapexp; -#ifdef __OpenBSD__ -extern struct syslog_data sdata; -#else -#define syslog_r(l, s, args...) syslog(l,args) -#define openlog_r(i, l, f, s) openlog(i, l, f) -extern int sdata; /* dummy */ -#endif -extern struct passwd *pw; -extern u_short cfg_port; -extern pid_t jail_pid; -extern FILE * trapcfg; -extern FILE * grey; -extern int debug; - -size_t whitecount, whitealloc; -size_t trapcount, trapalloc; -char **whitelist; -char **traplist; - -char *traplist_name = "spamd-greytrap"; -char *traplist_msg = "\"Your address %A has mailed to spamtraps here\\n\""; - -pid_t db_pid = -1; -int spamdconf; - -#ifdef IPFW -extern int tabno; -#else -int pfdev; -static char *pargv[11]= { - "pfctl", "-p", "/dev/pf", "-q", "-t", - "spamd-white", "-T", "replace", "-f" "-", NULL -}; -#endif - -/* If the parent gets a signal, kill off the children and exit */ -/* ARGSUSED */ -static void -sig_term_chld(int sig) -{ - if (db_pid != -1) - kill(db_pid, SIGTERM); - if (jail_pid != -1) - kill(jail_pid, SIGTERM); - _exit(1); -} - -/* - * Greatly simplified version from spamd_setup.c - only - * sends one blacklist to an already open stream. Has no need - * to collapse cidr ranges since these are only ever single - * host hits. - */ -int -configure_spamd(char **addrs, int count, FILE *sdc) -{ - int i; - - fprintf(sdc, "%s;%s;", traplist_name, traplist_msg); - for (i = 0; i < count; i++) - fprintf(sdc, "%s/32;", addrs[i]); - fprintf(sdc, "\n"); - fflush(sdc); - return(0); -} - -#ifndef IPFW -int -configure_pf(char **addrs, int count) -{ - FILE *pf = NULL; - int i, pdes[2]; - pid_t pid; - char *fdpath; - struct sigaction sa; - - sigfillset(&sa.sa_mask); - sa.sa_flags = SA_RESTART; - sa.sa_handler = sig_term_chld; - - if (debug) - fprintf(stderr, "configure_pf - device on fd %d\n", pfdev); - if (pfdev < 1 || pfdev > 63) - return(-1); - if (asprintf(&fdpath, "/dev/fd/%d", pfdev) == -1) - return(-1); - pargv[2] = fdpath; - if (pipe(pdes) != 0) { - syslog_r(LOG_INFO, &sdata, "pipe failed (%m)"); - free(fdpath); - fdpath = NULL; - return(-1); - } - signal(SIGCHLD, SIG_DFL); - switch (pid = fork()) { - case -1: - syslog_r(LOG_INFO, &sdata, "fork failed (%m)"); - free(fdpath); - fdpath = NULL; - close(pdes[0]); - close(pdes[1]); - sigaction(SIGCHLD, &sa, NULL); - return(-1); - case 0: - /* child */ - close(pdes[1]); - if (pdes[0] != STDIN_FILENO) { - dup2(pdes[0], STDIN_FILENO); - close(pdes[0]); - } - execvp(PATH_PFCTL, pargv); - syslog_r(LOG_ERR, &sdata, "can't exec %s:%m", PATH_PFCTL); - _exit(1); - } - - /* parent */ - free(fdpath); - fdpath = NULL; - close(pdes[0]); - pf = fdopen(pdes[1], "w"); - if (pf == NULL) { - syslog_r(LOG_INFO, &sdata, "fdopen failed (%m)"); - close(pdes[1]); - sigaction(SIGCHLD, &sa, NULL); - return(-1); - } - for (i = 0; i < count; i++) - if (addrs[i] != NULL) - fprintf(pf, "%s/32\n", addrs[i]); - - fclose(pf); - waitpid(pid, NULL, 0); - sigaction(SIGCHLD, &sa, NULL); - return(0); -} -#else -int -configure_pf(char **addrs, int count) -{ - static int s = -1; - ipfw_table_entry ent; - int i; - - if (s == -1) - s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); - if (s < 0) - { - syslog_r(LOG_INFO, &sdata, "IPFW socket unavailable (%m)"); - return(-1); - } - - /* flush the table */ - ent.tbl = tabno; - if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) - { - syslog_r(LOG_INFO, &sdata, "IPFW setsockopt(IP_FW_TABLE_FLUSH) (%m)"); - return(-1); - } - - for (i = 0; i < count; i++) - if (addrs[i] != NULL) - { - /* add addrs[i] to tabno */ - ent.tbl = tabno; - ent.masklen = 32; - ent.value = 0; - inet_aton(addrs[i], (struct in_addr *)&ent.addr); - if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) - { - syslog_r(LOG_INFO, &sdata, "IPFW setsockopt(IP_FW_TABLE_ADD) (%m)"); - return(-1); - } - } - - return(0); -} -#endif - -void -freeaddrlists(void) -{ - int i; - - if (whitelist != NULL) - for (i = 0; i < whitecount; i++) { - free(whitelist[i]); - whitelist[i] = NULL; - } - whitecount = 0; - if (traplist != NULL) { - for (i = 0; i < trapcount; i++) { - free(traplist[i]); - traplist[i] = NULL; - } - } - trapcount = 0; -} - -/* validate, then add to list of addrs to whitelist */ -int -addwhiteaddr(char *addr) -{ - struct addrinfo hints, *res; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; /*for now*/ - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_protocol = IPPROTO_UDP; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - - if (getaddrinfo(addr, NULL, &hints, &res) == 0) { - if (whitecount == whitealloc) { - char **tmp; - - tmp = realloc(whitelist, - (whitealloc + 1024) * sizeof(char *)); - if (tmp == NULL) { - freeaddrinfo(res); - return(-1); - } - whitelist = tmp; - whitealloc += 1024; - } - whitelist[whitecount] = strdup(addr); - if (whitelist[whitecount] == NULL) { - freeaddrinfo(res); - return(-1); - } - whitecount++; - freeaddrinfo(res); - } else - return(-1); - return(0); -} - -/* validate, then add to list of addrs to traplist */ -int -addtrapaddr(char *addr) -{ - struct addrinfo hints, *res; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; /*for now*/ - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_protocol = IPPROTO_UDP; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - - if (getaddrinfo(addr, NULL, &hints, &res) == 0) { - if (trapcount == trapalloc) { - char **tmp; - - tmp = realloc(traplist, - (trapalloc + 1024) * sizeof(char *)); - if (tmp == NULL) { - freeaddrinfo(res); - return(-1); - } - traplist = tmp; - trapalloc += 1024; - } - traplist[trapcount] = strdup(addr); - if (traplist[trapcount] == NULL) { - freeaddrinfo(res); - return(-1); - } - trapcount++; - freeaddrinfo(res); - } else - return(-1); - return(0); -} - - -int -greyscan(char *dbname) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - struct gdata gd; - int r; - char *a = NULL; - size_t asiz = 0; - time_t now = time(NULL); - - /* walk db, expire, and whitelist */ - - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDWR, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) { - syslog_r(LOG_INFO, &sdata, "dbopen failed (%m)"); - return(-1); - } - memset(&dbk, 0, sizeof(dbk)); - memset(&dbd, 0, sizeof(dbd)); - for (r = db->seq(db, &dbk, &dbd, R_FIRST); !r; - r = db->seq(db, &dbk, &dbd, R_NEXT)) { - if ((dbk.size < 1) || dbd.size != sizeof(struct gdata)) { - goto bad; - } - if (asiz < dbk.size + 1) { - char *tmp; - - tmp = realloc(a, dbk.size * 2); - if (tmp == NULL) - goto bad; - a = tmp; - asiz = dbk.size * 2; - } - memset(a, 0, asiz); - memcpy(a, dbk.data, dbk.size); - memcpy(&gd, dbd.data, sizeof(gd)); - if (gd.expire <= now && gd.pcount != -2) { - /* get rid of entry */ - if (debug) - fprintf(stderr, "deleting %s\n", a); - if (db->del(db, &dbk, 0)) { - goto bad; - } - db->sync(db, 0); - } else if (gd.pcount == -1) { - /* this is a greytrap hit */ - if ((addtrapaddr(a) == -1) && - db->del(db, &dbk, 0)) { - db->sync(db, 0); - goto bad; - } - if (debug) - fprintf(stderr, "trapped %s\n", a); - } else if (gd.pcount >= 0 && gd.pass <= now) { - int tuple = 0; - char *cp; - - /* - * remove this tuple-keyed entry from db - * add address to whitelist - * add an address-keyed entry to db - */ - cp = strchr(a, '\n'); - if (cp != NULL) { - tuple = 1; - *cp = '\0'; - } - if ((addwhiteaddr(a) == -1) && db->del(db, &dbk, 0)) { - db->sync(db, 0); - goto bad; - } - if (tuple) { - if (db->del(db, &dbk, 0)) { - db->sync(db, 0); - goto bad; - } - /* re-add entry, keyed only by ip */ - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(a); - dbk.data = a; - memset(&dbd, 0, sizeof(dbd)); - gd.expire = now + whiteexp; - dbd.size = sizeof(gd); - dbd.data = &gd; - if (db->put(db, &dbk, &dbd, 0)) { - db->sync(db, 0); - goto bad; - } - db->sync(db, 0); - syslog_r(LOG_DEBUG, &sdata, - "whitelisting %s in %s", a, dbname); - - } - if (debug) - fprintf(stderr, "whitelisted %s\n", a); - } - } - configure_pf(whitelist, whitecount); - if (configure_spamd(traplist, trapcount, trapcfg) == -1) - syslog_r(LOG_DEBUG, &sdata, "configure_spamd failed"); - - db->close(db); - db = NULL; - freeaddrlists(); - free(a); - a = NULL; - asiz = 0; - return(0); - bad: - db->close(db); - db = NULL; - freeaddrlists(); - free(a); - a = NULL; - asiz = 0; - return(-1); -} - -int -greyupdate(char *dbname, char *ip, char *from, char *to) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - char *key = NULL; - char *trap = NULL; - char *lookup; - struct gdata gd; - time_t now, expire; - int i, r, spamtrap; - - now = time(NULL); - - /* open with lock, find record, update, close, unlock */ - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDWR, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) - return(-1); - if (asprintf(&key, "%s\n%s\n%s", ip, from, to) == -1) - goto bad; - if ((trap = strdup(to)) == NULL) - goto bad; - for (i = 0; trap[i] != '\0'; i++) - if (isupper(trap[i])) - trap[i] = tolower(trap[i]); - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(trap); - dbk.data = trap; - memset(&dbd, 0, sizeof(dbd)); - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) - goto bad; - if (r) { - /* didn't exist - so this doesn't match a known spamtrap */ - spamtrap = 0; - lookup = key; - expire = greyexp; - } else { - /* To: address is a spamtrap, so add as a greytrap entry */ - spamtrap = 1; - lookup = ip; - expire = trapexp; - } - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(lookup); - dbk.data = lookup; - memset(&dbd, 0, sizeof(dbd)); - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) - goto bad; - if (r) { - /* new entry */ - memset(&gd, 0, sizeof(gd)); - gd.first = now; - gd.bcount = 1; - gd.pcount = spamtrap ? -1 : 0; - gd.pass = now + expire; - gd.expire = now + expire; - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(lookup); - dbk.data = lookup; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - db->sync(db, 0); - if (r) - goto bad; - if (debug) - fprintf(stderr, "added %s %s\n", - spamtrap ? "greytrap entry for" : "", lookup); - } else { - /* existing entry */ - if (dbd.size != sizeof(gd)) { - /* whatever this is, it doesn't belong */ - db->del(db, &dbk, 0); - db->sync(db, 0); - goto bad; - } - memcpy(&gd, dbd.data, sizeof(gd)); - gd.bcount++; - gd.pcount = spamtrap ? -1 : 0; - if (gd.first + passtime < now) - gd.pass = now; - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(lookup); - dbk.data = lookup; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - db->sync(db, 0); - if (r) - goto bad; - if (debug) - fprintf(stderr, "updated %s\n", lookup); - } - free(key); - key = NULL; - free(trap); - trap = NULL; - db->close(db); - db = NULL; - return(0); - bad: - free(key); - key = NULL; - free(trap); - trap = NULL; - db->close(db); - db = NULL; - return(-1); -} - -int -greyreader(void) -{ - char ip[32], from[MAX_MAIL], to[MAX_MAIL], *buf; - size_t len; - int state; - struct addrinfo hints, *res; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; /*for now*/ - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_protocol = IPPROTO_UDP; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - - state = 0; - if (grey == NULL) { - syslog_r(LOG_ERR, &sdata, "No greylist pipe stream!\n"); - exit(1); - } - while ((buf = fgetln(grey, &len))) { - if (buf[len - 1] == '\n') - buf[len - 1] = '\0'; - else - /* all valid lines end in \n */ - continue; - if (strlen(buf) < 4) - continue; - - switch (state) { - case 0: - if (strncmp(buf, "IP:", 3) != 0) - break; - strlcpy(ip, buf+3, sizeof(ip)); - if (getaddrinfo(ip, NULL, &hints, &res) == 0) { - freeaddrinfo(res); - state = 1; - } else - state = 0; - break; - case 1: - if (strncmp(buf, "FR:", 3) != 0) { - state = 0; - break; - } - strlcpy(from, buf+3, sizeof(from)); - state = 2; - break; - case 2: - if (strncmp(buf, "TO:", 3) != 0) { - state = 0; - break; - } - strlcpy(to, buf+3, sizeof(to)); - if (debug) - fprintf(stderr, - "Got Grey IP %s from %s to %s\n", - ip, from, to); - greyupdate(PATH_SPAMD_DB, ip, from, to); - state = 0; - break; - } - } - return (0); -} - -void -greyscanner(void) -{ - int i; - - for (;;) { - sleep(DB_SCAN_INTERVAL); - i = greyscan(PATH_SPAMD_DB); - if (i == -1) - syslog_r(LOG_NOTICE, &sdata, "scan of %s failed", - PATH_SPAMD_DB); - } - /* NOTREACHED */ -} - -int -greywatcher(void) -{ - int i; - struct sigaction sa; - -#ifndef IPFW - pfdev = open("/dev/pf", O_RDWR); - if (pfdev == -1) { - syslog_r(LOG_ERR, &sdata, "open of /dev/pf failed (%m)"); - exit(1); - } -#endif - - /* check to see if /var/db/spamd exists, if not, create it */ - if ((i = open(PATH_SPAMD_DB, O_RDWR, 0)) == -1 && errno == ENOENT) { - i = open(PATH_SPAMD_DB, O_RDWR|O_CREAT, 0644); - if (i == -1) { - syslog_r(LOG_ERR, &sdata, "create %s failed (%m)", - PATH_SPAMD_DB); - exit(1); - } - /* if we are dropping privs, chown to that user */ - if (pw && (fchown(i, pw->pw_uid, pw->pw_gid) == -1)) { - syslog_r(LOG_ERR, &sdata, "chown %s failed (%m)", - PATH_SPAMD_DB); - exit(1); - } - } - if (i != -1) - close(i); - - /* - * lose root, continue as non-root user - * XXX Should not be _spamd - as it currently is. - */ - if (pw) { - setgroups(1, &pw->pw_gid); - setegid(pw->pw_gid); - setgid(pw->pw_gid); - seteuid(pw->pw_uid); - setuid(pw->pw_uid); - } - - db_pid = fork(); - switch(db_pid) { - case -1: - syslog_r(LOG_ERR, &sdata, "fork failed (%m)"); - exit(1); - case 0: - /* - * child, talks to jailed spamd over greypipe, - * updates db. has no access to pf. - */ -#ifndef IPFW - close(pfdev); -#endif - setproctitle("(%s update)", PATH_SPAMD_DB); - greyreader(); - /* NOTREACHED */ - _exit(1); - } - /* - * parent, scans db periodically for changes and updates - * pf whitelist table accordingly. - */ - fclose(grey); - sigfillset(&sa.sa_mask); - sa.sa_flags = SA_RESTART; - sa.sa_handler = sig_term_chld; - sigaction(SIGTERM, &sa, NULL); - sigaction(SIGHUP, &sa, NULL); - sigaction(SIGCHLD, &sa, NULL); - sigaction(SIGINT, &sa, NULL); - -#ifndef IPFW - setproctitle("(pf update)"); -#else - setproctitle("(ipfw white table update)"); -#endif - greyscanner(); - /* NOTREACHED */ - exit(1); -} diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.c.orig /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.c.orig --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.c.orig Tue Apr 12 20:22:17 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.c.orig Thu Jan 1 03:00:00 1970 @@ -1,662 +0,0 @@ -/* $OpenBSD: grey.c,v 1.21 2005/03/12 00:02:07 beck Exp $ */ - -/* - * Copyright (c) 2004,2005 Bob Beck. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "grey.h" - -extern time_t passtime, greyexp, whiteexp, trapexp; -#ifdef __OpenBSD__ -extern struct syslog_data sdata; -#else -#define syslog_r(l, s, args...) syslog(l,args) -#define openlog_r(i, l, f, s) openlog(i, l, f) -extern int sdata; /* dummy */ -#endif -extern struct passwd *pw; -extern u_short cfg_port; -extern pid_t jail_pid; -extern FILE * trapcfg; -extern FILE * grey; -extern int debug; - -size_t whitecount, whitealloc; -size_t trapcount, trapalloc; -char **whitelist; -char **traplist; - -char *traplist_name = "spamd-greytrap"; -char *traplist_msg = "\"Your address %A has mailed to spamtraps here\\n\""; - -pid_t db_pid = -1; -int pfdev; -int spamdconf; - -static char *pargv[11]= { - "pfctl", "-p", "/dev/pf", "-q", "-t", - "spamd-white", "-T", "replace", "-f" "-", NULL -}; - -/* If the parent gets a signal, kill off the children and exit */ -/* ARGSUSED */ -static void -sig_term_chld(int sig) -{ - if (db_pid != -1) - kill(db_pid, SIGTERM); - if (jail_pid != -1) - kill(jail_pid, SIGTERM); - _exit(1); -} - -/* - * Greatly simplified version from spamd_setup.c - only - * sends one blacklist to an already open stream. Has no need - * to collapse cidr ranges since these are only ever single - * host hits. - */ -int -configure_spamd(char **addrs, int count, FILE *sdc) -{ - int i; - - fprintf(sdc, "%s;%s;", traplist_name, traplist_msg); - for (i = 0; i < count; i++) - fprintf(sdc, "%s/32;", addrs[i]); - fprintf(sdc, "\n"); - fflush(sdc); - return(0); -} - -int -configure_pf(char **addrs, int count) -{ - FILE *pf = NULL; - int i, pdes[2]; - pid_t pid; - char *fdpath; - struct sigaction sa; - - sigfillset(&sa.sa_mask); - sa.sa_flags = SA_RESTART; - sa.sa_handler = sig_term_chld; - - if (debug) - fprintf(stderr, "configure_pf - device on fd %d\n", pfdev); - if (pfdev < 1 || pfdev > 63) - return(-1); - if (asprintf(&fdpath, "/dev/fd/%d", pfdev) == -1) - return(-1); - pargv[2] = fdpath; - if (pipe(pdes) != 0) { - syslog_r(LOG_INFO, &sdata, "pipe failed (%m)"); - free(fdpath); - fdpath = NULL; - return(-1); - } - signal(SIGCHLD, SIG_DFL); - switch (pid = fork()) { - case -1: - syslog_r(LOG_INFO, &sdata, "fork failed (%m)"); - free(fdpath); - fdpath = NULL; - close(pdes[0]); - close(pdes[1]); - sigaction(SIGCHLD, &sa, NULL); - return(-1); - case 0: - /* child */ - close(pdes[1]); - if (pdes[0] != STDIN_FILENO) { - dup2(pdes[0], STDIN_FILENO); - close(pdes[0]); - } - execvp(PATH_PFCTL, pargv); - syslog_r(LOG_ERR, &sdata, "can't exec %s:%m", PATH_PFCTL); - _exit(1); - } - - /* parent */ - free(fdpath); - fdpath = NULL; - close(pdes[0]); - pf = fdopen(pdes[1], "w"); - if (pf == NULL) { - syslog_r(LOG_INFO, &sdata, "fdopen failed (%m)"); - close(pdes[1]); - sigaction(SIGCHLD, &sa, NULL); - return(-1); - } - for (i = 0; i < count; i++) - if (addrs[i] != NULL) - fprintf(pf, "%s/32\n", addrs[i]); - fclose(pf); - waitpid(pid, NULL, 0); - sigaction(SIGCHLD, &sa, NULL); - return(0); -} - -void -freeaddrlists(void) -{ - int i; - - if (whitelist != NULL) - for (i = 0; i < whitecount; i++) { - free(whitelist[i]); - whitelist[i] = NULL; - } - whitecount = 0; - if (traplist != NULL) { - for (i = 0; i < trapcount; i++) { - free(traplist[i]); - traplist[i] = NULL; - } - } - trapcount = 0; -} - -/* validate, then add to list of addrs to whitelist */ -int -addwhiteaddr(char *addr) -{ - struct addrinfo hints, *res; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; /*for now*/ - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_protocol = IPPROTO_UDP; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - - if (getaddrinfo(addr, NULL, &hints, &res) == 0) { - if (whitecount == whitealloc) { - char **tmp; - - tmp = realloc(whitelist, - (whitealloc + 1024) * sizeof(char *)); - if (tmp == NULL) { - freeaddrinfo(res); - return(-1); - } - whitelist = tmp; - whitealloc += 1024; - } - whitelist[whitecount] = strdup(addr); - if (whitelist[whitecount] == NULL) { - freeaddrinfo(res); - return(-1); - } - whitecount++; - freeaddrinfo(res); - } else - return(-1); - return(0); -} - -/* validate, then add to list of addrs to traplist */ -int -addtrapaddr(char *addr) -{ - struct addrinfo hints, *res; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; /*for now*/ - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_protocol = IPPROTO_UDP; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - - if (getaddrinfo(addr, NULL, &hints, &res) == 0) { - if (trapcount == trapalloc) { - char **tmp; - - tmp = realloc(traplist, - (trapalloc + 1024) * sizeof(char *)); - if (tmp == NULL) { - freeaddrinfo(res); - return(-1); - } - traplist = tmp; - trapalloc += 1024; - } - traplist[trapcount] = strdup(addr); - if (traplist[trapcount] == NULL) { - freeaddrinfo(res); - return(-1); - } - trapcount++; - freeaddrinfo(res); - } else - return(-1); - return(0); -} - - -int -greyscan(char *dbname) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - struct gdata gd; - int r; - char *a = NULL; - size_t asiz = 0; - time_t now = time(NULL); - - /* walk db, expire, and whitelist */ - - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDWR, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) { - syslog_r(LOG_INFO, &sdata, "dbopen failed (%m)"); - return(-1); - } - memset(&dbk, 0, sizeof(dbk)); - memset(&dbd, 0, sizeof(dbd)); - for (r = db->seq(db, &dbk, &dbd, R_FIRST); !r; - r = db->seq(db, &dbk, &dbd, R_NEXT)) { - if ((dbk.size < 1) || dbd.size != sizeof(struct gdata)) { - goto bad; - } - if (asiz < dbk.size + 1) { - char *tmp; - - tmp = realloc(a, dbk.size * 2); - if (tmp == NULL) - goto bad; - a = tmp; - asiz = dbk.size * 2; - } - memset(a, 0, asiz); - memcpy(a, dbk.data, dbk.size); - memcpy(&gd, dbd.data, sizeof(gd)); - if (gd.expire <= now && gd.pcount != -2) { - /* get rid of entry */ - if (debug) - fprintf(stderr, "deleting %s\n", a); - if (db->del(db, &dbk, 0)) { - goto bad; - } - db->sync(db, 0); - } else if (gd.pcount == -1) { - /* this is a greytrap hit */ - if ((addtrapaddr(a) == -1) && - db->del(db, &dbk, 0)) { - db->sync(db, 0); - goto bad; - } - if (debug) - fprintf(stderr, "trapped %s\n", a); - } else if (gd.pcount >= 0 && gd.pass <= now) { - int tuple = 0; - char *cp; - - /* - * remove this tuple-keyed entry from db - * add address to whitelist - * add an address-keyed entry to db - */ - cp = strchr(a, '\n'); - if (cp != NULL) { - tuple = 1; - *cp = '\0'; - } - if ((addwhiteaddr(a) == -1) && db->del(db, &dbk, 0)) { - db->sync(db, 0); - goto bad; - } - if (tuple) { - if (db->del(db, &dbk, 0)) { - db->sync(db, 0); - goto bad; - } - /* re-add entry, keyed only by ip */ - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(a); - dbk.data = a; - memset(&dbd, 0, sizeof(dbd)); - gd.expire = now + whiteexp; - dbd.size = sizeof(gd); - dbd.data = &gd; - if (db->put(db, &dbk, &dbd, 0)) { - db->sync(db, 0); - goto bad; - } - db->sync(db, 0); - syslog_r(LOG_DEBUG, &sdata, - "whitelisting %s in %s", a, dbname); - - } - if (debug) - fprintf(stderr, "whitelisted %s\n", a); - } - } - configure_pf(whitelist, whitecount); - if (configure_spamd(traplist, trapcount, trapcfg) == -1) - syslog_r(LOG_DEBUG, &sdata, "configure_spamd failed"); - - db->close(db); - db = NULL; - freeaddrlists(); - free(a); - a = NULL; - asiz = 0; - return(0); - bad: - db->close(db); - db = NULL; - freeaddrlists(); - free(a); - a = NULL; - asiz = 0; - return(-1); -} - -int -greyupdate(char *dbname, char *ip, char *from, char *to) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - char *key = NULL; - char *trap = NULL; - char *lookup; - struct gdata gd; - time_t now, expire; - int i, r, spamtrap; - - now = time(NULL); - - /* open with lock, find record, update, close, unlock */ - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDWR, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) - return(-1); - if (asprintf(&key, "%s\n%s\n%s", ip, from, to) == -1) - goto bad; - if ((trap = strdup(to)) == NULL) - goto bad; - for (i = 0; trap[i] != '\0'; i++) - if (isupper(trap[i])) - trap[i] = tolower(trap[i]); - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(trap); - dbk.data = trap; - memset(&dbd, 0, sizeof(dbd)); - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) - goto bad; - if (r) { - /* didn't exist - so this doesn't match a known spamtrap */ - spamtrap = 0; - lookup = key; - expire = greyexp; - } else { - /* To: address is a spamtrap, so add as a greytrap entry */ - spamtrap = 1; - lookup = ip; - expire = trapexp; - } - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(lookup); - dbk.data = lookup; - memset(&dbd, 0, sizeof(dbd)); - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) - goto bad; - if (r) { - /* new entry */ - memset(&gd, 0, sizeof(gd)); - gd.first = now; - gd.bcount = 1; - gd.pcount = spamtrap ? -1 : 0; - gd.pass = now + expire; - gd.expire = now + expire; - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(lookup); - dbk.data = lookup; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - db->sync(db, 0); - if (r) - goto bad; - if (debug) - fprintf(stderr, "added %s %s\n", - spamtrap ? "greytrap entry for" : "", lookup); - } else { - /* existing entry */ - if (dbd.size != sizeof(gd)) { - /* whatever this is, it doesn't belong */ - db->del(db, &dbk, 0); - db->sync(db, 0); - goto bad; - } - memcpy(&gd, dbd.data, sizeof(gd)); - gd.bcount++; - gd.pcount = spamtrap ? -1 : 0; - if (gd.first + passtime < now) - gd.pass = now; - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(lookup); - dbk.data = lookup; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - db->sync(db, 0); - if (r) - goto bad; - if (debug) - fprintf(stderr, "updated %s\n", lookup); - } - free(key); - key = NULL; - free(trap); - trap = NULL; - db->close(db); - db = NULL; - return(0); - bad: - free(key); - key = NULL; - free(trap); - trap = NULL; - db->close(db); - db = NULL; - return(-1); -} - -int -greyreader(void) -{ - char ip[32], from[MAX_MAIL], to[MAX_MAIL], *buf; - size_t len; - int state; - struct addrinfo hints, *res; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_INET; /*for now*/ - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_protocol = IPPROTO_UDP; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - - state = 0; - if (grey == NULL) { - syslog_r(LOG_ERR, &sdata, "No greylist pipe stream!\n"); - exit(1); - } - while ((buf = fgetln(grey, &len))) { - if (buf[len - 1] == '\n') - buf[len - 1] = '\0'; - else - /* all valid lines end in \n */ - continue; - if (strlen(buf) < 4) - continue; - - switch (state) { - case 0: - if (strncmp(buf, "IP:", 3) != 0) - break; - strlcpy(ip, buf+3, sizeof(ip)); - if (getaddrinfo(ip, NULL, &hints, &res) == 0) { - freeaddrinfo(res); - state = 1; - } else - state = 0; - break; - case 1: - if (strncmp(buf, "FR:", 3) != 0) { - state = 0; - break; - } - strlcpy(from, buf+3, sizeof(from)); - state = 2; - break; - case 2: - if (strncmp(buf, "TO:", 3) != 0) { - state = 0; - break; - } - strlcpy(to, buf+3, sizeof(to)); - if (debug) - fprintf(stderr, - "Got Grey IP %s from %s to %s\n", - ip, from, to); - greyupdate(PATH_SPAMD_DB, ip, from, to); - state = 0; - break; - } - } - return (0); -} - -void -greyscanner(void) -{ - int i; - - for (;;) { - sleep(DB_SCAN_INTERVAL); - i = greyscan(PATH_SPAMD_DB); - if (i == -1) - syslog_r(LOG_NOTICE, &sdata, "scan of %s failed", - PATH_SPAMD_DB); - } - /* NOTREACHED */ -} - -int -greywatcher(void) -{ - int i; - struct sigaction sa; - - pfdev = open("/dev/pf", O_RDWR); - if (pfdev == -1) { - syslog_r(LOG_ERR, &sdata, "open of /dev/pf failed (%m)"); - exit(1); - } - - /* check to see if /var/db/spamd exists, if not, create it */ - if ((i = open(PATH_SPAMD_DB, O_RDWR, 0)) == -1 && errno == ENOENT) { - i = open(PATH_SPAMD_DB, O_RDWR|O_CREAT, 0644); - if (i == -1) { - syslog_r(LOG_ERR, &sdata, "create %s failed (%m)", - PATH_SPAMD_DB); - exit(1); - } - /* if we are dropping privs, chown to that user */ - if (pw && (fchown(i, pw->pw_uid, pw->pw_gid) == -1)) { - syslog_r(LOG_ERR, &sdata, "chown %s failed (%m)", - PATH_SPAMD_DB); - exit(1); - } - } - if (i != -1) - close(i); - - /* - * lose root, continue as non-root user - * XXX Should not be _spamd - as it currently is. - */ - if (pw) { - setgroups(1, &pw->pw_gid); - setegid(pw->pw_gid); - setgid(pw->pw_gid); - seteuid(pw->pw_uid); - setuid(pw->pw_uid); - } - - db_pid = fork(); - switch(db_pid) { - case -1: - syslog_r(LOG_ERR, &sdata, "fork failed (%m)"); - exit(1); - case 0: - /* - * child, talks to jailed spamd over greypipe, - * updates db. has no access to pf. - */ - close(pfdev); - setproctitle("(%s update)", PATH_SPAMD_DB); - greyreader(); - /* NOTREACHED */ - _exit(1); - } - /* - * parent, scans db periodically for changes and updates - * pf whitelist table accordingly. - */ - fclose(grey); - sigfillset(&sa.sa_mask); - sa.sa_flags = SA_RESTART; - sa.sa_handler = sig_term_chld; - sigaction(SIGTERM, &sa, NULL); - sigaction(SIGHUP, &sa, NULL); - sigaction(SIGCHLD, &sa, NULL); - sigaction(SIGINT, &sa, NULL); - - setproctitle("(pf update)"); - greyscanner(); - /* NOTREACHED */ - exit(1); -} diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.h /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.h --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.h Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.h Thu Jan 1 03:00:00 1970 @@ -1,37 +0,0 @@ -/* $OpenBSD: grey.h,v 1.5 2005/03/11 23:09:53 beck Exp $ */ - -/* - * Copyright (c) 2004 Bob Beck. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#define MAX_MAIL 1024 /* how big an email address will we consider */ -#define PASSTIME (60 * 25) /* pass after first retry seen after 25 mins */ -#define GREYEXP (60 * 60 * 4) /* remove grey entries after 4 hours */ -#define WHITEEXP (60 * 60 * 24 * 36) /* remove white entries after 36 days */ -#define TRAPEXP (60 * 60 * 24) /* hitting a spamtrap blacklists for a day */ -#define PATH_PFCTL "/sbin/pfctl" -#define PATH_IPFW "/sbin/ipfw" -#define DB_SCAN_INTERVAL 60 -#define PATH_SPAMD_DB "/var/db/spamd" - -struct gdata { - time_t first; /* when did we see it first */ - time_t pass; /* when was it whitelisted */ - time_t expire; /* when will we get rid of this entry */ - int bcount; /* how many times have we blocked it */ - int pcount; /* how many times passed, or -1 for spamtrap */ -}; - -extern int greywatcher(void); diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.h.orig /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.h.orig --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.h.orig Tue Apr 12 20:21:48 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.h.orig Thu Jan 1 03:00:00 1970 @@ -1,36 +0,0 @@ -/* $OpenBSD: grey.h,v 1.5 2005/03/11 23:09:53 beck Exp $ */ - -/* - * Copyright (c) 2004 Bob Beck. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#define MAX_MAIL 1024 /* how big an email address will we consider */ -#define PASSTIME (60 * 25) /* pass after first retry seen after 25 mins */ -#define GREYEXP (60 * 60 * 4) /* remove grey entries after 4 hours */ -#define WHITEEXP (60 * 60 * 24 * 36) /* remove white entries after 36 days */ -#define TRAPEXP (60 * 60 * 24) /* hitting a spamtrap blacklists for a day */ -#define PATH_PFCTL "/sbin/pfctl" -#define DB_SCAN_INTERVAL 60 -#define PATH_SPAMD_DB "/var/db/spamd" - -struct gdata { - time_t first; /* when did we see it first */ - time_t pass; /* when was it whitelisted */ - time_t expire; /* when will we get rid of this entry */ - int bcount; /* how many times have we blocked it */ - int pcount; /* how many times passed, or -1 for spamtrap */ -}; - -extern int greywatcher(void); Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd/grey.o and /usr/home/samm/spamd/work/spamd_3.7/spamd/grey.o differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/sdl.c /usr/home/samm/spamd/work/spamd_3.7/spamd/sdl.c --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/sdl.c Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/sdl.c Thu Jan 1 03:00:00 1970 @@ -1,271 +0,0 @@ -/* $OpenBSD: sdl.c,v 1.12 2004/02/26 08:18:56 deraadt Exp $ */ - -/* - * Copyright (c) 2003 Bob Beck. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * sdl.c - Implement spamd source lists - * - * This consists of everything we need to do to determine which lists - * someone is on. Spamd gets the connecting address, and looks it up - * against all lists to determine what deferral messages to feed back - * to the connecting machine. - The redirection to spamd will happen - * from pf in the kernel, first macth will rdr to us. Spamd (along with - * setup) must keep track of *all* matches, so as to tell someone all the - * lists that they are on. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "sdl.h" - -static void sdl_free(struct sdlist *); -static void sdl_clear(struct sdlist *); -int match_addr(struct sdaddr *a, struct sdaddr *m, struct sdaddr *b, - sa_family_t af); - -extern int debug; -struct sdlist *blacklists = NULL; -int blc = 0, blu = 0; - -int -sdl_add(char *sdname, char *sdstring, char ** addrs, int addrc) -{ - int i, index = -1; - char astring[40]; - unsigned int maskbits; - struct sdaddr *m, *n; - - /* - * if a blacklist of same tag name is already there, replace it, - * otherwise append. - */ - for (i = 0; i < blu; i++) { - if (strcmp(blacklists[i].tag, sdname) == 0) { - index = i; - break; - } - } - if (index != -1) { - if (debug > 0) - printf("replacing list %s\n", blacklists[index].tag); - sdl_free(&blacklists[index]); - } else { - if (debug > 0) - printf("adding list %s\n", sdname); - index = blu; - } - if (index == blu && blu == blc) { - struct sdlist *tmp; - - tmp = realloc(blacklists, (blc + 128) * - sizeof(struct sdlist)); - if (tmp == NULL) - return (-1); - blacklists = tmp; - blc += 128; - sdl_clear(&blacklists[index]); - } - - if ((blacklists[index].tag = strdup(sdname)) == NULL) - goto misc_error; - if ((blacklists[index].string = strdup(sdstring)) == NULL) - goto misc_error; - - blacklists[index].naddrs = addrc; - - /* - * Cycle through addrs, converting. We assume they are correctly - * formatted v4 and v6 addrs, if they don't all convert correctly, the - * add fails. Each address should be address/maskbits - */ - blacklists[index].addrs = malloc(addrc * sizeof(struct sdentry)); - if (blacklists[index].addrs == NULL) - goto misc_error; - - for(i = 0; i < addrc; i++) { - int j, k, af; - - n = &blacklists[index].addrs[i].sda; - m = &blacklists[index].addrs[i].sdm; - - j = sscanf(addrs[i], "%39[^/]/%u", astring, &maskbits); - if (j != 2) - goto parse_error; - if (maskbits > 128) - goto parse_error; - /* - * sanity check! we don't allow a 0 mask - - * don't blacklist the entire net. - */ - if (maskbits == 0) - goto parse_error; - if (strchr(astring, ':') != NULL) - af = AF_INET6; - else - af = AF_INET; - if (af == AF_INET && maskbits > 32) - goto parse_error; - j = inet_pton(af, astring, n); - if (j != 1) - goto parse_error; - if (debug > 0) - printf("added %s/%u\n", astring, maskbits); - - /* set mask, borrowed from pf */ - k = 0; - for (j = 0; j < 4; j++) - m->addr32[j] = 0; - while (maskbits >= 32) { - m->addr32[k++] = 0xffffffff; - maskbits -= 32; - } - for (j = 31; j > 31 - maskbits; --j) - m->addr32[k] |= (1 << j); - if (maskbits) - m->addr32[k] = htonl(m->addr32[k]); - - /* mask off address bits that won't ever be used */ - for (j = 0; j < 4; j++) - n->addr32[j] = n->addr32[j] & m->addr32[j]; - } - if (index == blu) { - blu++; - blacklists[blu].tag = NULL; - } - return (0); - parse_error: - if (debug > 0) - printf("sdl_add: parse error, \"%s\"\n", addrs[i]); - misc_error: - sdl_free(&blacklists[index]); - return (-1); -} - - -/* - * Return 1 if the addresses a (with mask m) matches address b - * otherwise return 0. It is assumed that address a has been - * pre-masked out, we only need to mask b. - */ -int -match_addr(struct sdaddr *a, struct sdaddr *m, struct sdaddr *b, - sa_family_t af) -{ - int match = 0; - - switch (af) { - case AF_INET: - if ((a->addr32[0]) == - (b->addr32[0] & m->addr32[0])) - match++; - break; - case AF_INET6: - if (((a->addr32[0]) == - (b->addr32[0] & m->addr32[0])) && - ((a->addr32[1]) == - (b->addr32[1] & m->addr32[1])) && - ((a->addr32[2]) == - (b->addr32[2] & m->addr32[2])) && - ((a->addr32[3]) == - (b->addr32[3] & m->addr32[3]))) - match++; - break; - } - return (match); -} - - -/* - * Given an address and address family - * return list of pointers to matching nodes. or NULL if none. - */ -struct sdlist ** -sdl_lookup(struct sdlist *head, int af, void * src) -{ - int i, matches = 0; - struct sdlist *sdl; - struct sdentry *sda; - struct sdaddr *source = (struct sdaddr *) src; - int sdnewlen = 0; - struct sdlist **sdnew = NULL; - - if (head == NULL) - return (NULL); - else - sdl = head; - while (sdl->tag != NULL) { - for (i = 0; i < sdl->naddrs; i++) { - sda = sdl->addrs + i; - if (match_addr(&sda->sda, &sda->sdm, source, af)) { - if (matches == sdnewlen) { - struct sdlist **tmp; - - tmp = realloc(sdnew, - (sdnewlen + 128) * - sizeof(struct sdlist *)); - if (tmp == NULL) - /* - * XXX out of memory - - * return what we have - */ - return (sdnew); - sdnew = tmp; - sdnewlen += 128; - } - sdnew[matches]= sdl; - matches++; - sdnew[matches]=NULL; - break; - } - } - sdl++; - } - return (sdnew); -} - -static void -sdl_free(struct sdlist *sdl) -{ - free(sdl->tag); - free(sdl->string); - free(sdl->addrs); - sdl_clear(sdl); -} - -static void -sdl_clear(struct sdlist *sdl) -{ - sdl->tag = NULL; - sdl->string = NULL; - sdl->addrs = NULL; - sdl->naddrs = 0; -} - diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/sdl.h /usr/home/samm/spamd/work/spamd_3.7/spamd/sdl.h --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/sdl.h Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/sdl.h Thu Jan 1 03:00:00 1970 @@ -1,71 +0,0 @@ -/* $OpenBSD: sdl.h,v 1.2 2004/02/26 08:18:56 deraadt Exp $ */ - -/* - * Copyright (c) 2003 Bob Beck, Kjell Wooding. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef _SDL_H_ -#define _SDL_H_ - -#include -#include -#ifdef __OpenBSD__ -#include -#endif - -/* spamd source list */ -struct sdlist { - char *tag; /* sdlist source name */ - char *string; /* Format (451) string with no smtp code or \r\n */ - struct sdentry *addrs; - size_t naddrs; -}; - -/* yeah. Stolen from pf */ -struct sdaddr { - union { - struct in_addr v4; - struct in6_addr v6; - u_int8_t addr8[16]; - u_int16_t addr16[8]; - u_int32_t addr32[4]; - } _sda; /* 128-bit address */ -#define v4 _sda.v4 -#define v6 _sda.v6 -#define addr8 _sda.addr8 -#define addr16 _sda.addr16 -#define addr32 _sda.addr32 -}; - -/* spamd netblock (black) list */ -struct sdentry { - struct sdaddr sda; - struct sdaddr sdm; -}; - - -extern int sdl_add(char *, char *, char **, int); -extern struct sdlist **sdl_lookup(struct sdlist *head, - int af, void * src); - -#endif /* _SDL_H_ */ Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd/sdl.o and /usr/home/samm/spamd/work/spamd_3.7/spamd/sdl.o differ Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd and /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8 /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8 --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8 Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8 Thu Jan 1 03:00:00 1970 @@ -1,473 +0,0 @@ -.\" $OpenBSD: spamd.8,v 1.53 2005/03/11 23:09:53 beck Exp $ -.\" -.\" Copyright (c) 2002 Theo de Raadt. All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.\" -.Dd December 18, 2002 -.Dt SPAMD 8 -.Os -.Sh NAME -.Nm spamd -.Nd spam deferral daemon -.Sh SYNOPSIS -.Nm spamd -.Bk -words -.Op Fl 45dgv -.Op Fl B Ar maxblack -.Op Fl b Ar address -.Op Fl c Ar maxcon -.Op Fl G Ar passtime:greyexp:whiteexp -.Op Fl n Ar name -.Op Fl p Ar port -.Op Fl r Ar reply -.Op Fl s Ar secs -.Op Fl w Ar window -.Ek -.Sh DESCRIPTION -.Nm -is a fake -.Xr sendmail 8 Ns -like -daemon which rejects false mail. -If the -.Xr pf 4 -or -.Xr ipfw 4 -packet filter is configured to redirect port 25 (SMTP) to this daemon, -it will attempt to waste the time and resources of the spam sender. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl 4 -For black listed entries, return error code 450 to the spammer (default). -.It Fl 5 -For black-listed entries, return error code 550 to the spammer. -.It Fl B Ar maxblack -The maximum number of concurrent blacklisted connections to allow in -greylisting mode. -This value may not be greater than maxcon (see below). -The default is maxcon \- 100 -.It Fl b Ar address -Specify the local address to which -.Nm -is to -.Xr bind 2 . -By default -.Nm -listens on all local addresses. -.It Fl c Ar maxcon -The maximum number of concurrent connections to allow. -The default is 800. -.It Fl d -Debug mode. -.Nm -does not -.Xr fork 2 -into the background. -.It Fl G Ar passtime:greyexp:whiteexp -Adjust the three time parameters for greylisting; see -.Sx GREYLISTING -below. -.Ar passtime -defaults to 25 (minutes), -.Ar greyexp -to 4 (hours), -and -.Ar whiteexp -to 864 (hours, approximately 36 days). -.It Fl g -Greylisting mode; see -.Sx GREYLISTING -below. -.It Fl n Ar name -The SMTP version banner that is reported upon initial connection. -.It Fl p Ar port -Specify a different port number from the default port that -.Nm -should listen for redirected SMTP connections on. -The default port is found by looking for the named service -.Em spamd -using -.Xr getservbyname 3 . -.It Fl r Ar reply -The SMTP error to return to the spammer, i.e. 450, 451, 550. -This defaults to 450. -.It Fl s Ar secs -Delay each character sent to the client by the specified -amount of seconds. -Defaults to 1. -.It Fl v -Enable verbose logging. -By default -.Nm -logs connections, disconnections and blacklist matches to -.Xr syslogd 8 -at -.Dv LOG_INFO -level. -With verbose logging enabled, message detail -including subject and recipient information is logged at -.Dv LOG_INFO , -along with the message body and SMTP dialogue being logged at -.Dv LOG_DEBUG -level. -.It Fl w Ar window -Set the socket receive buffer to this many bytes, adjusting the window size. -.El -.Pp -.Nm -is designed to be very efficient so that it does not slow down the -receiving machine. -Spam is never accepted, but always rejected with either a 450 or 550 -error message. -The normal way that spam has been dealt with in the past is to either -accept and drop, or outright block. -When configured to use 450 responses, -.Nm -takes neither of these actions: it rejects the mail back to the senders' -queue. -.Pp -.Nm -is best started from -.Xr rc 8 -in conjunction with the -.Xr spamd-setup 8 -which processes a list of spammers' addresses, and applies appropriate -.Xr pfctl 8 -.Em rdr -or -.Xr ipfw 8 -.Em fwd -rules. -.Xr spamd-setup 8 -is run from -.Xr cron 8 . -.Sh REDIRECTING SMTP CONNECTIONS -.Ss "When using PF" -With -.Xr pf 4 , -connections to port 25 (SMTP) can be redirected to another host or port, -based on the source address of the sender. -The -.Em rdr -rules used for this purpose are described in -.Xr pf.conf 5 . -The rules can be loaded into a -.Em table -to simplify handling. -.Bd -literal -offset 4n -table persist -rdr pass inet proto tcp from to any \e - port smtp -> 127.0.0.1 port 8025 -.Ed -.Pp -Any addresses in table -.Em -are then redirected to -.Nm -running on port 8025. -Addresses can be loaded into the -.Em table , -like: -.Bd -literal -offset 4n -# pfctl -q -t spamd -T replace -f /usr/local/share/spammers -.Ed -.Pp -.Xr spamd-setup 8 -can also be used to load addresses into the -.Em -table. - - -.Xr spamd-setup 8 -also has the added benefit of being able to remove addresses from -blacklists, and will connect to -.Nm -over a localhost socket, giving -.Nm -information about each source of blacklist addresses, as well as custom -rejection messages for each blacklist source -that can be used to let any real person whose mail -is deferred by spamd know why their address has been listed -from sending mail. -This is important as it allows legitimate mail -senders to pressure spam sources into behaving properly so that they -may be removed from the relevant blacklists. - -.Ss "If compiled with IPFW" -With -.Xr ipfw 4 , -the syntax for redirection of TCP sessions is quite different -from that of -.Xr pf 4 . -The -.Em fwd -rule used for this purpose are described in -.Xr ipfw 8 . -The rules should be added to the ruleset called by /etc/rc.firewall -to be present at boot time. -.Bd -literal -offset 4n -fwd 127.0.0.1,8025 tcp from table(2) to me 25 in -allow tcp from table(1) to me 25 in -fwd 127.0.0.1,8025 tcp from any to me 25 in -.Ed -.Pp -Any addresses in the blacklist table -.Em 2 -and not in the whitelist table -.Em 1 -are then redirected to -.Nm -running on port 8025. -Addresses can be loaded into the blacklist -.Em table , -like: -.Bd -literal -offset 4n -# ipfw table 1 add a.b.c.d/x -.Ed -.Pp -.Xr spamd-setup 8 -can also be used to load addresses into the blacklist table -.Em 2 . -.Pp -The -.Op Fl t Ar table_no -option to -.Em spamd -and -.Em spamd-setup -can be used to change the default table -numbers. - -.Sh CONFIGURATION CONNECTIONS -.Nm -listens for configuration connections on the port identified by the -named service -.Em spamd-cfg -(see -.Xr services 5 ) . -The configuration socket listens only on the INADDR_LOOPBACK -address. -Configuration of spamd is done by connecting to the configuration -socket, and sending blacklist information, one blacklist per line. -Each blacklist consists of a name, a message to reject mail -with, and addresses in CIDR format, all separated by semicolons (;): -.Bd -literal -offset indent -tag;"rejection message";aaa.bbb.ccc.ddd/mm;aaa.bbb.ccc.ddd/mm -.Ed -.Pp -The rejection message must be inside double quotes. -A \e" will produce a double quote in the output. -\en will produce a newline. -%A will expand to the connecting IP address in dotted quad format. -%% may be used to produce a single % in the output. -\e\e will produce a single \e. -.Nm -will reject mail by displaying all the messages from all blacklists in which -a connecting address is matched. -.Xr spamd-setup 8 -is normally used to configure this information. -.Sh GREYLISTING -When run in greylisting mode, -.Nm -will run in the normal mode for any addresses blacklisted by -.Xr spamd-setup 8 . -Connections from addresses not blacklisted by -.Xr spamd-setup 8 -will be considered for greylisting. -Such connections will not be stuttered at or delayed, -and will receive the pleasantly innocuous temporary failure of: -.Bd -literal -offset 4n -451 Temporary failure, please try again later. -.Ed -.Pp -in the SMTP dialogue immediately after the recipient is specified. -.Nm -will use the db file in -.Pa /var/db/spamd -to track these non-blacklisted connections to -.Nm -by connecting IP address, envelope-from, and envelope-to, or "tuple" for -short. -.Pp -A previously unseen tuple is added to the -.Pa /var/db/spamd -database, recording the time an initial connection attempt was seen. -After -.Em passtime -minutes if -.Nm -sees a retried attempt to deliver mail for the same tuple, -.Nm -will whitelist the connecting address by adding it as a -whitelist entry to -.Pa /var/db/spamd . -.Pp -.Nm -regularly scans the -.Pa /var/db/spamd -database and configures all whitelist addresses as the -.Em spamd-white -.Xr pf 4 -table. -The -.Em spamd-white -table must be used to allow connections to pass to the -real MTA as in the following -.Xr pf.conf 5 -example: -.Bd -literal -offset 4n -table persist -table persist -rdr pass inet proto tcp from to any \e - port smtp -> 127.0.0.1 port 8025 -rdr pass inet proto tcp from ! to any port smtp \e - -> 127.0.0.1 port 8025 -.Ed -.Pp -With this configuration, -.Xr spamd-setup 8 -should be used to configure blacklists in -.Nm -and add them to the -.Em spamd -.Xr pf 4 -table. -These connections will be stuttered at by -.Nm . -All other connections not in the -.Em spamd-white -table are redirected to -.Nm -but will not be stuttered at. -Such connections will be -considered for greylisting and eventual whitelisting (by addition -to the -.Em spamd-white -table so they are not redirected) if they retry mail delivery. -.Pp -.Nm -removes tuple entries from the -.Pa /var/db/spamd -database if delivery has not been retried within -.Em greyexp -hours from the initial time a connection is seen. -The default is 4 hours as this is the most common setting after which -MTA's will give up attempting to retry delivery of a message. -.Pp -.Nm -removes whitelist entries from the -.Pa /var/db/spamd -database if no mail delivery activity has been seen from the -whitelisted address by -.Xr spamlogd 8 -within -.Em whiteexp -hours from the initial time an address -is whitelisted. -The default is 36 days to allow for the delivery of -monthly mailing list digests without greylist delays every time. -.Xr spamlogd 8 -should be used to update the whitelist entries in -.Pa /var/db/spamd -when connections are seen to pass to the real MTA on the -.Em smtp -port. -.Sh GREYTRAPPING -When greylisting with -.Nm -it may be useful to define -.Em spamtrap -destination addresses to catch spammers as they send mail from greylisted -hosts. -Such -.Em spamtrap -addresses affect only greylisted connections to -.Nm -and are used to temporarily blacklist a host that is obviously sending spam. -Unused email addresses or email addresses on spammers' lists are very -useful for this. -When a host that is currently greylisted attempts to send mail to a -.Em spamtrap -address, it is blacklisted for 24 hours by adding the host to the -.Nm -blacklist -.Em spamd-greytrap . -Spamtrap addresses are added to the -.Pa /var/db/spamd -database with the following -.Xr spamdb 8 -command: -.Pp -.Dl spamdb -T -a \&"\&" -.Pp -It should be entered exactly as the address will be used in the SMTP dialogue. -See -.Xr spamdb 8 -for further details. -.Sh LOGGING -.Nm -sends log messages to -.Xr syslogd 8 -using -.Em facility -daemon and, with increasing verbosity, -.Em level -err, warn, info and debug. -The following -.Xr syslog.conf 5 -section can be used to log connection details to a dedicated file: -.Bd -literal -offset indent -!spamd -daemon.err;daemon.warn;daemon.info /var/log/spamd -.Ed -.Sh FILES -/usr/local/etc/spamd.conf -.Sh SEE ALSO -.Xr pf.conf 5 , -.Xr services 5 , -.Xr spamd.conf 5 , -.Xr syslog.conf 5 , -.Xr pfctl 8 , -.Xr spamd-setup 8 , -.Xr spamdb 8 , -.Xr spamlogd 8 , -.Xr syslogd 8 -.Sh HISTORY -The -.Nm -command -appeared in -.Ox 3.3 . -.Sh BUGS -.Nm -currently uses the user -.Dq _spamd -outside a chroot jail when running in greylisting mode, and requires -the greylisting database in -.Pa /var/db/spamd -to be owned by the -.Dq _spamd -user. -This is wrong and should change to a distinct user from the -one used by the chrooted -.Nm -process. diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8.bak /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8.bak --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8.bak Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8.bak Thu Jan 1 03:00:00 1970 @@ -1,473 +0,0 @@ -.\" $OpenBSD: spamd.8,v 1.53 2005/03/11 23:09:53 beck Exp $ -.\" -.\" Copyright (c) 2002 Theo de Raadt. All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.\" -.Dd December 18, 2002 -.Dt SPAMD 8 -.Os -.Sh NAME -.Nm spamd -.Nd spam deferral daemon -.Sh SYNOPSIS -.Nm spamd -.Bk -words -.Op Fl 45dgv -.Op Fl B Ar maxblack -.Op Fl b Ar address -.Op Fl c Ar maxcon -.Op Fl G Ar passtime:greyexp:whiteexp -.Op Fl n Ar name -.Op Fl p Ar port -.Op Fl r Ar reply -.Op Fl s Ar secs -.Op Fl w Ar window -.Ek -.Sh DESCRIPTION -.Nm -is a fake -.Xr sendmail 8 Ns -like -daemon which rejects false mail. -If the -.Xr pf 4 -or -.Xr ipfw 4 -packet filter is configured to redirect port 25 (SMTP) to this daemon, -it will attempt to waste the time and resources of the spam sender. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl 4 -For black listed entries, return error code 450 to the spammer (default). -.It Fl 5 -For black-listed entries, return error code 550 to the spammer. -.It Fl B Ar maxblack -The maximum number of concurrent blacklisted connections to allow in -greylisting mode. -This value may not be greater than maxcon (see below). -The default is maxcon \- 100 -.It Fl b Ar address -Specify the local address to which -.Nm -is to -.Xr bind 2 . -By default -.Nm -listens on all local addresses. -.It Fl c Ar maxcon -The maximum number of concurrent connections to allow. -The default is 800. -.It Fl d -Debug mode. -.Nm -does not -.Xr fork 2 -into the background. -.It Fl G Ar passtime:greyexp:whiteexp -Adjust the three time parameters for greylisting; see -.Sx GREYLISTING -below. -.Ar passtime -defaults to 25 (minutes), -.Ar greyexp -to 4 (hours), -and -.Ar whiteexp -to 864 (hours, approximately 36 days). -.It Fl g -Greylisting mode; see -.Sx GREYLISTING -below. -.It Fl n Ar name -The SMTP version banner that is reported upon initial connection. -.It Fl p Ar port -Specify a different port number from the default port that -.Nm -should listen for redirected SMTP connections on. -The default port is found by looking for the named service -.Em spamd -using -.Xr getservbyname 3 . -.It Fl r Ar reply -The SMTP error to return to the spammer, i.e. 450, 451, 550. -This defaults to 450. -.It Fl s Ar secs -Delay each character sent to the client by the specified -amount of seconds. -Defaults to 1. -.It Fl v -Enable verbose logging. -By default -.Nm -logs connections, disconnections and blacklist matches to -.Xr syslogd 8 -at -.Dv LOG_INFO -level. -With verbose logging enabled, message detail -including subject and recipient information is logged at -.Dv LOG_INFO , -along with the message body and SMTP dialogue being logged at -.Dv LOG_DEBUG -level. -.It Fl w Ar window -Set the socket receive buffer to this many bytes, adjusting the window size. -.El -.Pp -.Nm -is designed to be very efficient so that it does not slow down the -receiving machine. -Spam is never accepted, but always rejected with either a 450 or 550 -error message. -The normal way that spam has been dealt with in the past is to either -accept and drop, or outright block. -When configured to use 450 responses, -.Nm -takes neither of these actions: it rejects the mail back to the senders' -queue. -.Pp -.Nm -is best started from -.Xr rc 8 -in conjunction with the -.Xr spamd-setup 8 -which processes a list of spammers' addresses, and applies appropriate -.Xr pfctl 8 -.Em rdr -or -.Xr ipfw 8 -.Em fwd -rules. -.Xr spamd-setup 8 -is run from -.Xr cron 8 . -.Sh REDIRECTING SMTP CONNECTIONS -.Ss "When using PF" -With -.Xr pf 4 , -connections to port 25 (SMTP) can be redirected to another host or port, -based on the source address of the sender. -The -.Em rdr -rules used for this purpose are described in -.Xr pf.conf 5 . -The rules can be loaded into a -.Em table -to simplify handling. -.Bd -literal -offset 4n -table persist -rdr pass inet proto tcp from to any \e - port smtp -> 127.0.0.1 port 8025 -.Ed -.Pp -Any addresses in table -.Em -are then redirected to -.Nm -running on port 8025. -Addresses can be loaded into the -.Em table , -like: -.Bd -literal -offset 4n -# pfctl -q -t spamd -T replace -f /usr/local/share/spammers -.Ed -.Pp -.Xr spamd-setup 8 -can also be used to load addresses into the -.Em -table. - - -.Xr spamd-setup 8 -also has the added benefit of being able to remove addresses from -blacklists, and will connect to -.Nm -over a localhost socket, giving -.Nm -information about each source of blacklist addresses, as well as custom -rejection messages for each blacklist source -that can be used to let any real person whose mail -is deferred by spamd know why their address has been listed -from sending mail. -This is important as it allows legitimate mail -senders to pressure spam sources into behaving properly so that they -may be removed from the relevant blacklists. - -.Ss "If compiled with IPFW" -With -.Xr ipfw 4 , -the syntax for redirection of TCP sessions is quite different -from that of -.Xr pf 4 . -The -.Em fwd -rule used for this purpose are described in -.Xr ipfw 8 . -The rules should be added to the ruleset called by /etc/rc.firewall -to be present at boot time. -.Bd -literal -offset 4n -fwd 127.0.0.1,8025 tcp from table(2) to me 25 in -allow tcp from table(1) to me 25 in -fwd 127.0.0.1,8025 tcp from any to me 25 in -.Ed -.Pp -Any addresses in the blacklist table -.Em 2 -and not in the whitelist table -.Em 1 -are then redirected to -.Nm -running on port 8025. -Addresses can be loaded into the blacklist -.Em table , -like: -.Bd -literal -offset 4n -# ipfw table 1 add a.b.c.d/x -.Ed -.Pp -.Xr spamd-setup 8 -can also be used to load addresses into the blacklist table -.Em 2 . -.Pp -The -.Op Fl t Ar table_no -option to -.Em spamd -and -.Em spamd-setup -can be used to change the default table -numbers. - -.Sh CONFIGURATION CONNECTIONS -.Nm -listens for configuration connections on the port identified by the -named service -.Em spamd-cfg -(see -.Xr services 5 ) . -The configuration socket listens only on the INADDR_LOOPBACK -address. -Configuration of spamd is done by connecting to the configuration -socket, and sending blacklist information, one blacklist per line. -Each blacklist consists of a name, a message to reject mail -with, and addresses in CIDR format, all separated by semicolons (;): -.Bd -literal -offset indent -tag;"rejection message";aaa.bbb.ccc.ddd/mm;aaa.bbb.ccc.ddd/mm -.Ed -.Pp -The rejection message must be inside double quotes. -A \e" will produce a double quote in the output. -\en will produce a newline. -%A will expand to the connecting IP address in dotted quad format. -%% may be used to produce a single % in the output. -\e\e will produce a single \e. -.Nm -will reject mail by displaying all the messages from all blacklists in which -a connecting address is matched. -.Xr spamd-setup 8 -is normally used to configure this information. -.Sh GREYLISTING -When run in greylisting mode, -.Nm -will run in the normal mode for any addresses blacklisted by -.Xr spamd-setup 8 . -Connections from addresses not blacklisted by -.Xr spamd-setup 8 -will be considered for greylisting. -Such connections will not be stuttered at or delayed, -and will receive the pleasantly innocuous temporary failure of: -.Bd -literal -offset 4n -451 Temporary failure, please try again later. -.Ed -.Pp -in the SMTP dialogue immediately after the recipient is specified. -.Nm -will use the db file in -.Pa /var/db/spamd -to track these non-blacklisted connections to -.Nm -by connecting IP address, envelope-from, and envelope-to, or "tuple" for -short. -.Pp -A previously unseen tuple is added to the -.Pa /var/db/spamd -database, recording the time an initial connection attempt was seen. -After -.Em passtime -minutes if -.Nm -sees a retried attempt to deliver mail for the same tuple, -.Nm -will whitelist the connecting address by adding it as a -whitelist entry to -.Pa /var/db/spamd . -.Pp -.Nm -regularly scans the -.Pa /var/db/spamd -database and configures all whitelist addresses as the -.Em spamd-white -.Xr pf 4 -table. -The -.Em spamd-white -table must be used to allow connections to pass to the -real MTA as in the following -.Xr pf.conf 5 -example: -.Bd -literal -offset 4n -table persist -table persist -rdr pass inet proto tcp from to any \e - port smtp -> 127.0.0.1 port 8025 -rdr pass inet proto tcp from ! to any port smtp \e - -> 127.0.0.1 port 8025 -.Ed -.Pp -With this configuration, -.Xr spamd-setup 8 -should be used to configure blacklists in -.Nm -and add them to the -.Em spamd -.Xr pf 4 -table. -These connections will be stuttered at by -.Nm . -All other connections not in the -.Em spamd-white -table are redirected to -.Nm -but will not be stuttered at. -Such connections will be -considered for greylisting and eventual whitelisting (by addition -to the -.Em spamd-white -table so they are not redirected) if they retry mail delivery. -.Pp -.Nm -removes tuple entries from the -.Pa /var/db/spamd -database if delivery has not been retried within -.Em greyexp -hours from the initial time a connection is seen. -The default is 4 hours as this is the most common setting after which -MTA's will give up attempting to retry delivery of a message. -.Pp -.Nm -removes whitelist entries from the -.Pa /var/db/spamd -database if no mail delivery activity has been seen from the -whitelisted address by -.Xr spamlogd 8 -within -.Em whiteexp -hours from the initial time an address -is whitelisted. -The default is 36 days to allow for the delivery of -monthly mailing list digests without greylist delays every time. -.Xr spamlogd 8 -should be used to update the whitelist entries in -.Pa /var/db/spamd -when connections are seen to pass to the real MTA on the -.Em smtp -port. -.Sh GREYTRAPPING -When greylisting with -.Nm -it may be useful to define -.Em spamtrap -destination addresses to catch spammers as they send mail from greylisted -hosts. -Such -.Em spamtrap -addresses affect only greylisted connections to -.Nm -and are used to temporarily blacklist a host that is obviously sending spam. -Unused email addresses or email addresses on spammers' lists are very -useful for this. -When a host that is currently greylisted attempts to send mail to a -.Em spamtrap -address, it is blacklisted for 24 hours by adding the host to the -.Nm -blacklist -.Em spamd-greytrap . -Spamtrap addresses are added to the -.Pa /var/db/spamd -database with the following -.Xr spamdb 8 -command: -.Pp -.Dl spamdb -T -a \&"\&" -.Pp -It should be entered exactly as the address will be used in the SMTP dialogue. -See -.Xr spamdb 8 -for further details. -.Sh LOGGING -.Nm -sends log messages to -.Xr syslogd 8 -using -.Em facility -daemon and, with increasing verbosity, -.Em level -err, warn, info and debug. -The following -.Xr syslog.conf 5 -section can be used to log connection details to a dedicated file: -.Bd -literal -offset indent -!spamd -daemon.err;daemon.warn;daemon.info /var/log/spamd -.Ed -.Sh FILES -/etc/spamd.conf -.Sh SEE ALSO -.Xr pf.conf 5 , -.Xr services 5 , -.Xr spamd.conf 5 , -.Xr syslog.conf 5 , -.Xr pfctl 8 , -.Xr spamd-setup 8 , -.Xr spamdb 8 , -.Xr spamlogd 8 , -.Xr syslogd 8 -.Sh HISTORY -The -.Nm -command -appeared in -.Ox 3.3 . -.Sh BUGS -.Nm -currently uses the user -.Dq _spamd -outside a chroot jail when running in greylisting mode, and requires -the greylisting database in -.Pa /var/db/spamd -to be owned by the -.Dq _spamd -user. -This is wrong and should change to a distinct user from the -one used by the chrooted -.Nm -process. Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8.gz and /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8.gz differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8.orig /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8.orig --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.8.orig Tue Apr 12 20:21:48 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.8.orig Thu Jan 1 03:00:00 1970 @@ -1,419 +0,0 @@ -.\" $OpenBSD: spamd.8,v 1.53 2005/03/11 23:09:53 beck Exp $ -.\" -.\" Copyright (c) 2002 Theo de Raadt. All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.\" -.Dd December 18, 2002 -.Dt SPAMD 8 -.Os -.Sh NAME -.Nm spamd -.Nd spam deferral daemon -.Sh SYNOPSIS -.Nm spamd -.Bk -words -.Op Fl 45dgv -.Op Fl B Ar maxblack -.Op Fl b Ar address -.Op Fl c Ar maxcon -.Op Fl G Ar passtime:greyexp:whiteexp -.Op Fl n Ar name -.Op Fl p Ar port -.Op Fl r Ar reply -.Op Fl s Ar secs -.Op Fl w Ar window -.Ek -.Sh DESCRIPTION -.Nm -is a fake -.Xr sendmail 8 Ns -like -daemon which rejects false mail. -If the -.Xr pf 4 -packet filter is configured to redirect port 25 (SMTP) to this daemon, -it will attempt to waste the time and resources of the spam sender. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl 4 -For black listed entries, return error code 450 to the spammer (default). -.It Fl 5 -For black-listed entries, return error code 550 to the spammer. -.It Fl B Ar maxblack -The maximum number of concurrent blacklisted connections to allow in -greylisting mode. -This value may not be greater than maxcon (see below). -The default is maxcon \- 100 -.It Fl b Ar address -Specify the local address to which -.Nm -is to -.Xr bind 2 . -By default -.Nm -listens on all local addresses. -.It Fl c Ar maxcon -The maximum number of concurrent connections to allow. -The default is 800. -.It Fl d -Debug mode. -.Nm -does not -.Xr fork 2 -into the background. -.It Fl G Ar passtime:greyexp:whiteexp -Adjust the three time parameters for greylisting; see -.Sx GREYLISTING -below. -.Ar passtime -defaults to 25 (minutes), -.Ar greyexp -to 4 (hours), -and -.Ar whiteexp -to 864 (hours, approximately 36 days). -.It Fl g -Greylisting mode; see -.Sx GREYLISTING -below. -.It Fl n Ar name -The SMTP version banner that is reported upon initial connection. -.It Fl p Ar port -Specify a different port number from the default port that -.Nm -should listen for redirected SMTP connections on. -The default port is found by looking for the named service -.Em spamd -using -.Xr getservbyname 3 . -.It Fl r Ar reply -The SMTP error to return to the spammer, i.e. 450, 451, 550. -This defaults to 450. -.It Fl s Ar secs -Delay each character sent to the client by the specified -amount of seconds. -Defaults to 1. -.It Fl v -Enable verbose logging. -By default -.Nm -logs connections, disconnections and blacklist matches to -.Xr syslogd 8 -at -.Dv LOG_INFO -level. -With verbose logging enabled, message detail -including subject and recipient information is logged at -.Dv LOG_INFO , -along with the message body and SMTP dialogue being logged at -.Dv LOG_DEBUG -level. -.It Fl w Ar window -Set the socket receive buffer to this many bytes, adjusting the window size. -.El -.Pp -.Nm -is designed to be very efficient so that it does not slow down the -receiving machine. -Spam is never accepted, but always rejected with either a 450 or 550 -error message. -The normal way that spam has been dealt with in the past is to either -accept and drop, or outright block. -When configured to use 450 responses, -.Nm -takes neither of these actions: it rejects the mail back to the senders' -queue. -.Pp -.Nm -is best started from -.Xr rc 8 -in conjunction with the -.Xr spamd-setup 8 -which processes a list of spammers' addresses, and applies appropriate -.Xr pfctl 8 -.Em rdr -rules. -.Xr spamd-setup 8 -is run from -.Xr cron 8 . -.Sh REDIRECTING SMTP CONNECTIONS -With -.Xr pf 4 , -connections to port 25 (SMTP) can be redirected to another host or port, -based on the source address of the sender. -The -.Em rdr -rules used for this purpose are described in -.Xr pf.conf 5 . -The rules can be loaded into a -.Em table -to simplify handling. -.Bd -literal -offset 4n -table persist -rdr pass inet proto tcp from to any \e - port smtp -> 127.0.0.1 port 8025 -.Ed -.Pp -Any addresses in table -.Em -are then redirected to -.Nm -running on port 8025. -Addresses can be loaded into the -.Em table , -like: -.Bd -literal -offset 4n -# pfctl -q -t spamd -T replace -f /usr/local/share/spammers -.Ed -.Pp -.Xr spamd-setup 8 -can also be used to load addresses into the -.Em -table. -.Xr spamd-setup 8 -also has the added benefit of being able to remove addresses from -blacklists, and will connect to -.Nm -over a localhost socket, giving -.Nm -information about each source of blacklist addresses, as well as custom -rejection messages for each blacklist source -that can be used to let any real person whose mail -is deferred by spamd know why their address has been listed -from sending mail. -This is important as it allows legitimate mail -senders to pressure spam sources into behaving properly so that they -may be removed from the relevant blacklists. -.Sh CONFIGURATION CONNECTIONS -.Nm -listens for configuration connections on the port identified by the -named service -.Em spamd-cfg -(see -.Xr services 5 ) . -The configuration socket listens only on the INADDR_LOOPBACK -address. -Configuration of spamd is done by connecting to the configuration -socket, and sending blacklist information, one blacklist per line. -Each blacklist consists of a name, a message to reject mail -with, and addresses in CIDR format, all separated by semicolons (;): -.Bd -literal -offset indent -tag;"rejection message";aaa.bbb.ccc.ddd/mm;aaa.bbb.ccc.ddd/mm -.Ed -.Pp -The rejection message must be inside double quotes. -A \e" will produce a double quote in the output. -\en will produce a newline. -%A will expand to the connecting IP address in dotted quad format. -%% may be used to produce a single % in the output. -\e\e will produce a single \e. -.Nm -will reject mail by displaying all the messages from all blacklists in which -a connecting address is matched. -.Xr spamd-setup 8 -is normally used to configure this information. -.Sh GREYLISTING -When run in greylisting mode, -.Nm -will run in the normal mode for any addresses blacklisted by -.Xr spamd-setup 8 . -Connections from addresses not blacklisted by -.Xr spamd-setup 8 -will be considered for greylisting. -Such connections will not be stuttered at or delayed, -and will receive the pleasantly innocuous temporary failure of: -.Bd -literal -offset 4n -451 Temporary failure, please try again later. -.Ed -.Pp -in the SMTP dialogue immediately after the recipient is specified. -.Nm -will use the db file in -.Pa /var/db/spamd -to track these non-blacklisted connections to -.Nm -by connecting IP address, envelope-from, and envelope-to, or "tuple" for -short. -.Pp -A previously unseen tuple is added to the -.Pa /var/db/spamd -database, recording the time an initial connection attempt was seen. -After -.Em passtime -minutes if -.Nm -sees a retried attempt to deliver mail for the same tuple, -.Nm -will whitelist the connecting address by adding it as a -whitelist entry to -.Pa /var/db/spamd . -.Pp -.Nm -regularly scans the -.Pa /var/db/spamd -database and configures all whitelist addresses as the -.Em spamd-white -.Xr pf 4 -table. -The -.Em spamd-white -table must be used to allow connections to pass to the -real MTA as in the following -.Xr pf.conf 5 -example: -.Bd -literal -offset 4n -table persist -table persist -rdr pass inet proto tcp from to any \e - port smtp -> 127.0.0.1 port 8025 -rdr pass inet proto tcp from ! to any port smtp \e - -> 127.0.0.1 port 8025 -.Ed -.Pp -With this configuration, -.Xr spamd-setup 8 -should be used to configure blacklists in -.Nm -and add them to the -.Em spamd -.Xr pf 4 -table. -These connections will be stuttered at by -.Nm . -All other connections not in the -.Em spamd-white -table are redirected to -.Nm -but will not be stuttered at. -Such connections will be -considered for greylisting and eventual whitelisting (by addition -to the -.Em spamd-white -table so they are not redirected) if they retry mail delivery. -.Pp -.Nm -removes tuple entries from the -.Pa /var/db/spamd -database if delivery has not been retried within -.Em greyexp -hours from the initial time a connection is seen. -The default is 4 hours as this is the most common setting after which -MTA's will give up attempting to retry delivery of a message. -.Pp -.Nm -removes whitelist entries from the -.Pa /var/db/spamd -database if no mail delivery activity has been seen from the -whitelisted address by -.Xr spamlogd 8 -within -.Em whiteexp -hours from the initial time an address -is whitelisted. -The default is 36 days to allow for the delivery of -monthly mailing list digests without greylist delays every time. -.Xr spamlogd 8 -should be used to update the whitelist entries in -.Pa /var/db/spamd -when connections are seen to pass to the real MTA on the -.Em smtp -port. -.Sh GREYTRAPPING -When greylisting with -.Nm -it may be useful to define -.Em spamtrap -destination addresses to catch spammers as they send mail from greylisted -hosts. -Such -.Em spamtrap -addresses affect only greylisted connections to -.Nm -and are used to temporarily blacklist a host that is obviously sending spam. -Unused email addresses or email addresses on spammers' lists are very -useful for this. -When a host that is currently greylisted attempts to send mail to a -.Em spamtrap -address, it is blacklisted for 24 hours by adding the host to the -.Nm -blacklist -.Em spamd-greytrap . -Spamtrap addresses are added to the -.Pa /var/db/spamd -database with the following -.Xr spamdb 8 -command: -.Pp -.Dl spamdb -T -a \&"\&" -.Pp -It should be entered exactly as the address will be used in the SMTP dialogue. -See -.Xr spamdb 8 -for further details. -.Sh LOGGING -.Nm -sends log messages to -.Xr syslogd 8 -using -.Em facility -daemon and, with increasing verbosity, -.Em level -err, warn, info and debug. -The following -.Xr syslog.conf 5 -section can be used to log connection details to a dedicated file: -.Bd -literal -offset indent -!spamd -daemon.err;daemon.warn;daemon.info /var/log/spamd -.Ed -.Sh FILES -/etc/spamd.conf -.Sh SEE ALSO -.Xr pf.conf 5 , -.Xr services 5 , -.Xr spamd.conf 5 , -.Xr syslog.conf 5 , -.Xr pfctl 8 , -.Xr spamd-setup 8 , -.Xr spamdb 8 , -.Xr spamlogd 8 , -.Xr syslogd 8 -.Sh HISTORY -The -.Nm -command -appeared in -.Ox 3.3 . -.Sh BUGS -.Nm -currently uses the user -.Dq _spamd -outside a chroot jail when running in greylisting mode, and requires -the greylisting database in -.Pa /var/db/spamd -to be owned by the -.Dq _spamd -user. -This is wrong and should change to a distinct user from the -one used by the chrooted -.Nm -process. diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.c /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.c --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.c Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.c Thu Jan 1 03:00:00 1970 @@ -1,1322 +0,0 @@ -/* $OpenBSD: spamd.c,v 1.75 2005/03/11 23:09:53 beck Exp $ */ - -/* - * Copyright (c) 2002 Theo de Raadt. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include "sdl.h" -#include "grey.h" - -struct con { - int fd; - int state; - int laststate; - int af; - struct sockaddr_storage ss; - void *ia; - char addr[32]; - char mail[MAX_MAIL], rcpt[MAX_MAIL]; - struct sdlist **blacklists; - - /* - * we will do stuttering by changing these to time_t's of - * now + n, and only advancing when the time is in the past/now - */ - time_t r; - time_t w; - time_t s; - - char ibuf[8192]; - char *ip; - int il; - char rend[5]; /* any chars in here causes input termination */ - - char *obuf; - char *lists; - size_t osize; - char *op; - int ol; - int data_lines; - int data_body; - int stutter; - int sr; -} *con; - -void usage(void); -char *grow_obuf(struct con *, int); -int parse_configline(char *); -void parse_configs(void); -void do_config(void); -int append_error_string (struct con *, size_t, char *, int, void *); -void build_reply(struct con *); -void doreply(struct con *); -void setlog(char *, size_t, char *); -void initcon(struct con *, int, struct sockaddr *); -void closecon(struct con *); -int match(const char *, const char *); -void nextstate(struct con *); -void handler(struct con *); -void handlew(struct con *, int one); - -char hostname[MAXHOSTNAMELEN]; -#ifdef __OpenBSD__ -struct syslog_data sdata = SYSLOG_DATA_INIT; -#else -#define syslog_r(l, s, args...) syslog(l,args) -#define openlog_r(i, l, f, s) openlog(i, l, f) -int sdata = 0; /* dummy */ -#endif -char *reply = NULL; -char *nreply = "450"; -char *spamd = "spamd IP-based SPAM blocker"; -int greypipe[2]; -int trappipe[2]; -FILE *grey; -FILE *trapcfg; -time_t passtime = PASSTIME; -time_t greyexp = GREYEXP; -time_t whiteexp = WHITEEXP; -time_t trapexp = TRAPEXP; -struct passwd *pw; -pid_t jail_pid = -1; -u_short cfg_port; - -#ifdef IPFW -int tabno=1; -#endif - -extern struct sdlist *blacklists; - -int conffd = -1; -int trapfd = -1; -char *cb; -size_t cbs, cbu; - -time_t t; - -#define MAXCON 800 -int maxcon = MAXCON; -int maxblack = MAXCON; -int blackcount; -int clients; -int debug; -int greylist; -int verbose; -int stutter = 1; -int window; -#define MAXTIME 400 - -void -usage(void) -{ - fprintf(stderr, - "usage: spamd [-45dgv] [-B maxblack] [-b address] [-c maxcon]\n"); - fprintf(stderr, - " [-G mins:hours:hours] [-n name] [-p port]\n"); - fprintf(stderr, - " [-r reply] [-s secs] [-w window]\n"); -#ifdef IPFW - fprintf(stderr, - " [-t table_no]\n"); -#endif - exit(1); -} - -char * -grow_obuf(struct con *cp, int off) -{ - char *tmp; - - tmp = realloc(cp->obuf, cp->osize + 8192); - if (tmp == NULL) { - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - return (NULL); - } else { - cp->osize += 8192; - cp->obuf = tmp; - return (cp->obuf + off); - } -} - -int -parse_configline(char *line) -{ - char *cp, prev, *name, *msg; - static char **av = NULL; - static size_t ac = 0; - size_t au = 0; - int mdone = 0; - - name = line; - - for (cp = name; *cp && *cp != ';'; cp++) - ; - if (*cp != ';') - goto parse_error; - *cp++ = '\0'; - msg = cp; - if (*cp++ != '"') - goto parse_error; - prev = '\0'; - for (; !mdone; cp++) { - switch (*cp) { - case '\\': - if (!prev) - prev = *cp; - else - prev = '\0'; - break; - case '"': - if (prev != '\\') { - cp++; - if (*cp == ';') { - mdone = 1; - *cp = '\0'; - } else - goto parse_error; - } - break; - case '\0': - goto parse_error; - default: - prev = '\0'; - break; - } - } - - do { - if (ac == au) { - char **tmp; - - tmp = realloc(av, (ac + 2048) * sizeof(char *)); - if (tmp == NULL) { - free(av); - av = NULL; - ac = 0; - return (-1); - } - av = tmp; - ac += 2048; - } - } while ((av[au++] = strsep(&cp, ";")) != NULL); - - /* toss empty last entry to allow for trailing ; */ - if (av[au - 1][0] == '\0'); - au--; - - if (au < 1) - goto parse_error; - else - sdl_add(name, msg, av, au - 1); - return (0); - -parse_error: - if (debug > 0) - printf("bogus config line - need 'tag;message;a/m;a/m;a/m...'\n"); - return (-1); -} - -void -parse_configs(void) -{ - char *start, *end; - int i; - - if (cbu == cbs) { - char *tmp; - - tmp = realloc(cb, cbs + 8192); - if (tmp == NULL) { - if (debug > 0) - perror("malloc()"); - free(cb); - cb = NULL; - cbs = cbu = 0; - return; - } - cbs += 8192; - cb = tmp; - } - cb[cbu++] = '\0'; - - start = cb; - end = start; - for (i = 0; i < cbu; i++) { - if (*end == '\n') { - *end = '\0'; - if (end > start + 1) - parse_configline(start); - start = ++end; - } else - ++end; - } - if (end > start + 1) - parse_configline(start); -} - -void -do_config(void) -{ - int n; - - if (debug > 0) - printf("got configuration connection\n"); - - if (cbu == cbs) { - char *tmp; - - tmp = realloc(cb, cbs + 8192); - if (tmp == NULL) { - if (debug > 0) - perror("malloc()"); - free(cb); - cb = NULL; - cbs = 0; - goto configdone; - } - cbs += 8192; - cb = tmp; - } - - n = read(conffd, cb + cbu, cbs - cbu); - if (debug > 0) - printf("read %d config bytes\n", n); - if (n == 0) { - parse_configs(); - goto configdone; - } else if (n == -1) { - if (debug > 0) - perror("read()"); - goto configdone; - } else - cbu += n; - return; - -configdone: - cbu = 0; - close(conffd); - conffd = -1; -} - - -int -read_configline(FILE *config) -{ - char *buf; - size_t len; - - if ((buf = fgetln(config, &len))) { - if (buf[len - 1] == '\n') - buf[len - 1] = '\0'; - else - return(-1); /* all valid lines end in \n */ - parse_configline(buf); - } else { - syslog_r(LOG_DEBUG, &sdata, "read_configline: fgetln (%m)"); - return(-1); - } - return(0); -} - -int -append_error_string(struct con *cp, size_t off, char *fmt, int af, void *ia) -{ - char sav = '\0'; - static int lastcont = 0; - char *c = cp->obuf + off; - char *s = fmt; - size_t len = cp->osize - off; - int i = 0; - - if (off == 0) - lastcont = 0; - - if (lastcont != 0) - cp->obuf[lastcont] = '-'; - snprintf(c, len, "%s ", nreply); - i += strlen(c); - lastcont = off + i - 1; - if (*s == '"') - s++; - while (*s) { - /* - * Make sure we at minimum, have room to add a - * format code (4 bytes), and a v6 address(39 bytes) - * and a byte saved in sav. - */ - if (i >= len - 46) { - c = grow_obuf(cp, off); - if (c == NULL) - return (-1); - len = cp->osize - (off + i); - } - - if (c[i-1] == '\n') { - if (lastcont != 0) - cp->obuf[lastcont] = '-'; - snprintf(c + i, len, "%s ", nreply); - i += strlen(c); - lastcont = off + i - 1; - } - - switch (*s) { - case '\\': - case '%': - if (!sav) - sav = *s; - else { - c[i++] = sav; - sav = '\0'; - c[i] = '\0'; - } - break; - case '"': - case 'A': - case 'n': - if (*(s+1) == '\0') { - break; - } - if (sav == '\\' && *s == 'n') { - c[i++] = '\n'; - sav = '\0'; - c[i] = '\0'; - break; - } else if (sav == '\\' && *s == '"') { - c[i++] = '"'; - sav = '\0'; - c[i] = '\0'; - break; - } else if (sav == '%' && *s == 'A') { - inet_ntop(af, ia, c + i, (len - i)); - i += strlen(c + i); - sav = '\0'; - break; - } - /* fallthrough */ - default: - if (sav) - c[i++] = sav; - c[i++] = *s; - sav = '\0'; - c[i] = '\0'; - break; - } - s++; - } - return (i); -} - -char * -loglists(struct con *cp) -{ - static char matchlists[80]; - struct sdlist **matches; - int s = sizeof(matchlists) - 4; - - matchlists[0] = '\0'; - matches = cp->blacklists; - if (matches == NULL) - return(NULL); - for (; *matches; matches++) { - - /* don't report an insane amount of lists in the logs. - * just truncate and indicate with ... - */ - if (strlen(matchlists) + strlen(matches[0]->tag) + 1 - >= s) - strlcat(matchlists, " ...", sizeof(matchlists)); - else { - strlcat(matchlists, " ", s); - strlcat(matchlists, matches[0]->tag, s); - } - } - return matchlists; -} - -void -build_reply(struct con *cp) -{ - struct sdlist **matches; - int off = 0; - - matches = cp->blacklists; - if (matches == NULL) - goto nomatch; - for (; *matches; matches++) { - int used = 0; - char *c = cp->obuf + off; - int left = cp->osize - off; - - used = append_error_string(cp, off, matches[0]->string, - cp->af, cp->ia); - if (used == -1) - goto bad; - off += used; - left -= used; - if (cp->obuf[off - 1] != '\n') { - if (left < 1) { - c = grow_obuf(cp, off); - if (c == NULL) - goto bad; - } - cp->obuf[off++] = '\n'; - cp->obuf[off] = '\0'; - } - } - return; -nomatch: - /* No match. give generic reply */ - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - if (cp->blacklists != NULL) - asprintf(&cp->obuf, - "%s-Sorry %s\n" - "%s-You are trying to send mail from an address " - "listed by one\n" - "%s or more IP-based registries as being a SPAM source.\n", - nreply, cp->addr, nreply, nreply); - else - asprintf(&cp->obuf, - "451 Temporary failure, please try again later.\r\n"); - if (cp->obuf != NULL) - cp->osize = strlen(cp->obuf) + 1; - else - cp->osize = 0; - return; -bad: - if (cp->obuf != NULL) { - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - } -} - -void -doreply(struct con *cp) -{ - if (reply) - snprintf(cp->obuf, cp->osize, "%s %s\n", nreply, reply); - build_reply(cp); -} - -void -setlog(char *p, size_t len, char *f) -{ - char *s; - - s = strsep(&f, ":"); - if (!f) - return; - while (*f == ' ' || *f == '\t') - f++; - s = strsep(&f, " \t"); - if (s == NULL) - return; - strlcpy(p, s, len); - s = strsep(&p, " \t\n\r"); - if (s == NULL) - return; - s = strsep(&p, " \t\n\r"); - if (s) - *s = '\0'; -} - -void -initcon(struct con *cp, int fd, struct sockaddr *sa) -{ - time_t t; - char *tmp; - int error; - - time(&t); - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - free(cp->blacklists); - cp->blacklists = NULL; - free(cp->lists); - cp->lists = NULL; - bzero(cp, sizeof(struct con)); - if (grow_obuf(cp, 0) == NULL) - err(1, "malloc"); - cp->fd = fd; - if (sa->sa_len > sizeof(cp->ss)) - errx(1, "sockaddr size"); - if (sa->sa_family != AF_INET) - errx(1, "not supported yet"); - memcpy(&cp->ss, sa, sa->sa_len); - cp->af = sa->sa_family; - cp->ia = &((struct sockaddr_in *)sa)->sin_addr; - cp->blacklists = sdl_lookup(blacklists, cp->af, cp->ia); - cp->stutter = (greylist && cp->blacklists == NULL) ? 0 : stutter; - error = getnameinfo(sa, sa->sa_len, cp->addr, sizeof(cp->addr), NULL, 0, - NI_NUMERICHOST); - if (error) - errx(1, "%s", gai_strerror(error)); - tmp = strdup(ctime(&t)); - if (tmp == NULL) - err(1, "malloc"); - tmp[strlen(tmp) - 1] = '\0'; /* nuke newline */ - snprintf(cp->obuf, cp->osize, - "220 %s ESMTP %s; %s\r\n", - hostname, spamd, tmp); - free(tmp); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->s = t; - strlcpy(cp->rend, "\n", sizeof cp->rend); - clients++; - if (cp->blacklists != NULL) { - blackcount++; - if (greylist && blackcount > maxblack) { - closecon(cp); /* close and free */ - return; - } - cp->lists = strdup(loglists(cp)); - } - else - cp->lists = NULL; -} - -void -closecon(struct con *cp) -{ - time_t t; - - time(&t); - syslog_r(LOG_INFO, &sdata, "%s: disconnected after %ld seconds.%s%s", - cp->addr, (long)(t - cp->s), - ((cp->lists == NULL) ? "" : " lists:"), - ((cp->lists == NULL) ? "": cp->lists)); - if (debug > 0) - printf("%s connected for %ld seconds.\n", cp->addr, - (long)(t - cp->s)); - if (cp->lists != NULL) { - free(cp->lists); - cp->lists = NULL; - } - if (cp->blacklists != NULL) { - blackcount--; - free(cp->blacklists); - cp->blacklists = NULL; - } - if (cp->obuf != NULL) { - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - } - close(cp->fd); - clients--; - cp->fd = -1; -} - -int -match(const char *s1, const char *s2) -{ - return (strncasecmp(s1, s2, strlen(s2)) == 0); -} - -void -nextstate(struct con *cp) -{ - if (match(cp->ibuf, "QUIT") && cp->state < 99) { - snprintf(cp->obuf, cp->osize, "221 %s\r\n", hostname); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->laststate = cp->state; - cp->state = 99; - return; - } - - if (match(cp->ibuf, "RSET") && cp->state > 2 && cp->state < 50) { - snprintf(cp->obuf, cp->osize, - "250 Ok to start over.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->laststate = cp->state; - cp->state = 2; - return; - } - switch (cp->state) { - case 0: - /* banner sent; wait for input */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 1; - cp->r = t; - break; - case 1: - /* received input: parse, and select next state */ - if (match(cp->ibuf, "HELO") || - match(cp->ibuf, "EHLO")) { - snprintf(cp->obuf, cp->osize, - "250 Hello, spam sender. " - "Pleased to be wasting your time.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->laststate = cp->state; - cp->state = 2; - cp->w = t + cp->stutter; - break; - } - goto mail; - case 2: - /* sent 250 Hello, wait for input */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 3; - cp->r = t; - break; - mail: - case 3: - if (match(cp->ibuf, "MAIL")) { - setlog(cp->mail, sizeof cp->mail, cp->ibuf); - snprintf(cp->obuf, cp->osize, - "250 You are about to try to deliver spam. " - "Your time will be spent, for nothing.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->laststate = cp->state; - cp->state = 4; - cp->w = t + cp->stutter; - break; - } - goto rcpt; - case 4: - /* sent 250 Sender ok */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 5; - cp->r = t; - break; - rcpt: - case 5: - if (match(cp->ibuf, "RCPT")) { - setlog(cp->rcpt, sizeof(cp->rcpt), cp->ibuf); - snprintf(cp->obuf, cp->osize, - "250 This is hurting you more than it is " - "hurting me.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->laststate = cp->state; - cp->state = 6; - cp->w = t + cp->stutter; - if (cp->mail[0] && cp->rcpt[0]) { - if (verbose) - syslog_r(LOG_INFO, &sdata, - "(%s) %s: %s -> %s", - cp->blacklists ? "BLACK" : "GREY", - cp->addr, cp->mail, - cp->rcpt); - if (debug) - fprintf(stderr, "(%s) %s: %s -> %s\n", - cp->blacklists ? "BLACK" : "GREY", - cp->addr, cp->mail, cp->rcpt); - if (greylist && cp->blacklists == NULL) { - /* send this info to the greylister */ - fprintf(grey, "IP:%s\nFR:%s\nTO:%s\n", - cp->addr, cp->mail, cp->rcpt); - fflush(grey); - cp->laststate = cp->state; - cp->state = 98; - goto done; - } - } - break; - } - goto spam; - case 6: - /* sent 250 blah */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 5; - cp->r = t; - break; - - spam: - case 50: - if (match(cp->ibuf, "DATA")) { - snprintf(cp->obuf, cp->osize, - "354 Enter spam, end with \".\" on a line by " - "itself\r\n"); - cp->state = 60; - if (window && setsockopt(cp->fd, SOL_SOCKET, SO_RCVBUF, - &window, sizeof(window)) == -1) { - syslog_r(LOG_DEBUG, &sdata,"setsockopt: %m"); - /* don't fail if this doesn't work. */ - } - } else { - snprintf(cp->obuf, cp->osize, - "500 5.5.1 Command unrecognized\r\n"); - cp->state = cp->laststate; - } - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - break; - case 60: - /* sent 354 blah */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 70; - cp->r = t; - break; - case 70: { - char *p, *q; - - for (p = q = cp->ibuf; q <= cp->ip; ++q) - if (*q == '\n' || q == cp->ip) { - *q = 0; - if (q > p && q[-1] == '\r') - q[-1] = 0; - if (!strcmp(p, ".") || - (cp->data_body && ++cp->data_lines >= 10)) { - cp->laststate = cp->state; - cp->state = 98; - goto done; - } - if (!cp->data_body && !*p) - cp->data_body = 1; - if (verbose && cp->data_body && *p) - syslog_r(LOG_DEBUG, &sdata, "%s: " - "Body: %s", cp->addr, p); - else if (verbose && (match(p, "FROM:") || - match(p, "TO:") || match(p, "SUBJECT:"))) - syslog_r(LOG_INFO, &sdata, "%s: %s", - cp->addr, p); - p = ++q; - } - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->r = t; - break; - } - done: - case 98: - doreply(cp); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->laststate = cp->state; - cp->state = 99; - break; - case 99: - closecon(cp); - break; - default: - errx(1, "illegal state %d", cp->state); - break; - } -} - -void -handler(struct con *cp) -{ - int end = 0; - int n; - - if (cp->r) { - n = read(cp->fd, cp->ip, cp->il); - if (n == 0) - closecon(cp); - else if (n == -1) { - if (debug > 0) - perror("read()"); - closecon(cp); - } else { - cp->ip[n] = '\0'; - if (cp->rend[0]) - if (strpbrk(cp->ip, cp->rend)) - end = 1; - cp->ip += n; - cp->il -= n; - } - } - if (end || cp->il == 0) { - while (cp->ip > cp->ibuf && - (cp->ip[-1] == '\r' || cp->ip[-1] == '\n')) - cp->ip--; - *cp->ip = '\0'; - cp->r = 0; - nextstate(cp); - } -} - -void -handlew(struct con *cp, int one) -{ - int n; - - if (cp->w) { - if (*cp->op == '\n' && !cp->sr) { - /* insert \r before \n */ - n = write(cp->fd, "\r", 1); - if (n == 0) { - closecon(cp); - goto handled; - } else if (n == -1) { - if (debug > 0 && errno != EPIPE) - perror("write()"); - closecon(cp); - goto handled; - } - } - if (*cp->op == '\r') - cp->sr = 1; - else - cp->sr = 0; - n = write(cp->fd, cp->op, (one && cp->stutter) ? 1 : cp->ol); - if (n == 0) - closecon(cp); - else if (n == -1) { - if (debug > 0 && errno != EPIPE) - perror("write()"); - closecon(cp); - } else { - cp->op += n; - cp->ol -= n; - } - } -handled: - cp->w = t + cp->stutter; - if (cp->ol == 0) { - cp->w = 0; - nextstate(cp); - } -} - -int -main(int argc, char *argv[]) -{ - fd_set *fdsr = NULL, *fdsw = NULL; - struct sockaddr_in sin; - struct sockaddr_in lin; - int ch, s, s2, conflisten = 0, i, omax = 0, one = 1; - socklen_t sinlen; - u_short port; - struct servent *ent; - struct rlimit rlp; - char *bind_address = NULL; - - tzset(); - openlog_r("spamd", LOG_PID | LOG_NDELAY, LOG_DAEMON, &sdata); - - if ((ent = getservbyname("spamd", "tcp")) == NULL) - errx(1, "Can't find service \"spamd\" in /etc/services"); - port = ntohs(ent->s_port); - if ((ent = getservbyname("spamd-cfg", "tcp")) == NULL) - errx(1, "Can't find service \"spamd-cfg\" in /etc/services"); - cfg_port = ntohs(ent->s_port); - - if (gethostname(hostname, sizeof hostname) == -1) - err(1, "gethostname"); - -#ifdef IPFW - while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:t:")) != -1) { -#else - while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:")) != -1) { -#endif - switch (ch) { - case '4': - nreply = "450"; - break; - case '5': - nreply = "550"; - break; - case 'b': - bind_address = optarg; - break; - case 'B': - i = atoi(optarg); - maxblack = i; - break; - case 'c': - i = atoi(optarg); - if (i > MAXCON) - usage(); - maxcon = i; - break; - case 'p': - i = atoi(optarg); - port = i; - break; - case 'd': - debug = 1; - break; - case 'g': - greylist = 1; - break; - case 'G': - if (sscanf(optarg, "%d:%d:%d", &passtime, &greyexp, - &whiteexp) != 3) - usage(); - /* convert to seconds from minutes */ - passtime *= 60; - /* convert to seconds from hours */ - whiteexp *= (60 * 60); - /* convert to seconds from hours */ - greyexp *= (60 * 60); - break; - case 'r': - reply = optarg; - break; - case 's': - i = atoi(optarg); - if (i < 0 || i > 10) - usage(); - stutter = i; - break; - case 'n': - spamd = optarg; - break; - case 'v': - verbose = 1; - break; -#ifdef IPFW - case 't': - tabno = atoi(optarg); - break; -#endif - case 'w': - window = atoi(optarg); - if (window <= 0) - usage(); - break; - default: - usage(); - break; - } - } - - if (!greylist) - maxblack = maxcon; - else if (maxblack > maxcon) - usage(); - - rlp.rlim_cur = rlp.rlim_max = maxcon + 15; - if (setrlimit(RLIMIT_NOFILE, &rlp) == -1) - err(1, "setrlimit"); - - con = calloc(maxcon, sizeof(*con)); - if (con == NULL) - err(1, "calloc"); - - con->obuf = malloc(8192); - - if (con->obuf == NULL) - err(1, "malloc"); - con->osize = 8192; - - for (i = 0; i < maxcon; i++) - con[i].fd = -1; - - signal(SIGPIPE, SIG_IGN); - - s = socket(AF_INET, SOCK_STREAM, 0); - if (s == -1) - err(1, "socket"); - - if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, - sizeof(one)) == -1) - return (-1); - - conflisten = socket(AF_INET, SOCK_STREAM, 0); - if (conflisten == -1) - err(1, "socket"); - - if (setsockopt(conflisten, SOL_SOCKET, SO_REUSEADDR, &one, - sizeof(one)) == -1) - return (-1); - - memset(&sin, 0, sizeof sin); - sin.sin_len = sizeof(sin); - if (bind_address) { - if (inet_pton(AF_INET, bind_address, &sin.sin_addr) != 1) - err(1, "inet_pton"); - } else - sin.sin_addr.s_addr = htonl(INADDR_ANY); - sin.sin_family = AF_INET; - sin.sin_port = htons(port); - - if (bind(s, (struct sockaddr *)&sin, sizeof sin) == -1) - err(1, "bind"); - - memset(&lin, 0, sizeof sin); - lin.sin_len = sizeof(sin); - lin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - lin.sin_family = AF_INET; - lin.sin_port = htons(cfg_port); - - if (bind(conflisten, (struct sockaddr *)&lin, sizeof lin) == -1) - err(1, "bind local"); - - pw = getpwnam("_spamd"); - if (!pw) - pw = getpwnam("nobody"); - - if (debug == 0) { - if (daemon(1, 1) == -1) - err(1, "daemon"); - } - - if (greylist) { - maxblack = (maxblack >= maxcon) ? maxcon - 100 : maxblack; - if (maxblack < 0) - maxblack = 0; - - /* open pipe to talk to greylister */ - if (pipe(greypipe) == -1) { - syslog(LOG_ERR, "pipe (%m)"); - exit(1); - } - /* open pipe to recieve spamtrap configs */ - if (pipe(trappipe) == -1) { - syslog(LOG_ERR, "pipe (%m)"); - exit(1); - } - jail_pid = fork(); - switch(jail_pid) { - case -1: - syslog(LOG_ERR, "fork (%m)"); - exit(1); - case 0: - /* child - continue */ - grey = fdopen(greypipe[1], "w"); - if (grey == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - _exit(1); - } - close(greypipe[0]); - trapfd = trappipe[0]; - trapcfg = fdopen(trappipe[0], "r"); - if (trapcfg == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - _exit(1); - } - close(trappipe[1]); - goto jail; - } - /* parent - run greylister */ - grey = fdopen(greypipe[0], "r"); - if (grey == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - exit(1); - } - close(greypipe[1]); - trapcfg = fdopen(trappipe[1], "w"); - if (trapcfg == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - exit(1); - } - close(trappipe[0]); - return(greywatcher()); - /* NOTREACHED */ - } - -jail: - if (chroot("/var/empty") == -1 || chdir("/") == -1) { - syslog(LOG_ERR, "cannot chdir to /var/empty."); - exit(1); - } - - if (pw) { - setgroups(1, &pw->pw_gid); - setegid(pw->pw_gid); - setgid(pw->pw_gid); - seteuid(pw->pw_uid); - setuid(pw->pw_uid); - } - - if (listen(s, 10) == -1) - err(1, "listen"); - - if (listen(conflisten, 10) == -1) - err(1, "listen"); - - if (debug != 0) - printf("listening for incoming connections.\n"); - syslog_r(LOG_WARNING, &sdata, "listening for incoming connections."); - - while (1) { - struct timeval tv, *tvp; - int max, i, n; - int writers; - - max = MAX(s, conflisten); - max = MAX(max, conffd); - max = MAX(max, trapfd); - - time(&t); - for (i = 0; i < maxcon; i++) - if (con[i].fd != -1) - max = MAX(max, con[i].fd); - - if (max > omax) { - free(fdsr); - fdsr = NULL; - free(fdsw); - fdsw = NULL; - fdsr = (fd_set *)calloc(howmany(max+1, NFDBITS), - sizeof(fd_mask)); - if (fdsr == NULL) - err(1, "calloc"); - fdsw = (fd_set *)calloc(howmany(max+1, NFDBITS), - sizeof(fd_mask)); - if (fdsw == NULL) - err(1, "calloc"); - omax = max; - } else { - memset(fdsr, 0, howmany(max+1, NFDBITS) * - sizeof(fd_mask)); - memset(fdsw, 0, howmany(max+1, NFDBITS) * - sizeof(fd_mask)); - } - - writers = 0; - for (i = 0; i < maxcon; i++) { - if (con[i].fd != -1 && con[i].r) { - if (con[i].r + MAXTIME <= t) { - closecon(&con[i]); - continue; - } - FD_SET(con[i].fd, fdsr); - } - if (con[i].fd != -1 && con[i].w) { - if (con[i].w + MAXTIME <= t) { - closecon(&con[i]); - continue; - } - if (con[i].w <= t) - FD_SET(con[i].fd, fdsw); - writers = 1; - } - } - FD_SET(s, fdsr); - - /* only one active config conn at a time */ - if (conffd == -1) - FD_SET(conflisten, fdsr); - else - FD_SET(conffd, fdsr); - if (trapfd != -1) - FD_SET(trapfd, fdsr); - - if (writers == 0) { - tvp = NULL; - } else { - tv.tv_sec = 1; - tv.tv_usec = 0; - tvp = &tv; - } - - n = select(max+1, fdsr, fdsw, NULL, tvp); - if (n == -1) { - if (errno != EINTR) - err(1, "select"); - continue; - } - if (n == 0) - continue; - - for (i = 0; i < maxcon; i++) { - if (con[i].fd != -1 && FD_ISSET(con[i].fd, fdsr)) - handler(&con[i]); - if (con[i].fd != -1 && FD_ISSET(con[i].fd, fdsw)) - handlew(&con[i], clients + 5 < maxcon); - } - if (FD_ISSET(s, fdsr)) { - sinlen = sizeof(sin); - s2 = accept(s, (struct sockaddr *)&sin, &sinlen); - if (s2 == -1) - /* accept failed, they may try again */ - continue; - for (i = 0; i < maxcon; i++) - if (con[i].fd == -1) - break; - if (i == maxcon) - close(s2); - else { - initcon(&con[i], s2, (struct sockaddr *)&sin); - syslog_r(LOG_INFO, &sdata, - "%s: connected (%d/%d)%s%s", - con[i].addr, clients, blackcount, - ((con[i].lists == NULL) ? "" : - ", lists:"), - ((con[i].lists == NULL) ? "": - con[i].lists)); - } - } - if (FD_ISSET(conflisten, fdsr)) { - sinlen = sizeof(lin); - conffd = accept(conflisten, (struct sockaddr *)&lin, - &sinlen); - if (conffd == -1) - /* accept failed, they may try again */ - continue; - else if (ntohs(lin.sin_port) >= IPPORT_RESERVED) { - close(conffd); - conffd = -1; - } - } - if (conffd != -1 && FD_ISSET(conffd, fdsr)) - do_config(); - if (trapfd != -1 && FD_ISSET(trapfd, fdsr)) - read_configline(trapcfg); - } - exit(1); -} diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.c.orig /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.c.orig --- /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.c.orig Tue Apr 12 20:21:48 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.c.orig Thu Jan 1 03:00:00 1970 @@ -1,1305 +0,0 @@ -/* $OpenBSD: spamd.c,v 1.75 2005/03/11 23:09:53 beck Exp $ */ - -/* - * Copyright (c) 2002 Theo de Raadt. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include "sdl.h" -#include "grey.h" - -struct con { - int fd; - int state; - int laststate; - int af; - struct sockaddr_storage ss; - void *ia; - char addr[32]; - char mail[MAX_MAIL], rcpt[MAX_MAIL]; - struct sdlist **blacklists; - - /* - * we will do stuttering by changing these to time_t's of - * now + n, and only advancing when the time is in the past/now - */ - time_t r; - time_t w; - time_t s; - - char ibuf[8192]; - char *ip; - int il; - char rend[5]; /* any chars in here causes input termination */ - - char *obuf; - char *lists; - size_t osize; - char *op; - int ol; - int data_lines; - int data_body; - int stutter; - int sr; -} *con; - -void usage(void); -char *grow_obuf(struct con *, int); -int parse_configline(char *); -void parse_configs(void); -void do_config(void); -int append_error_string (struct con *, size_t, char *, int, void *); -void build_reply(struct con *); -void doreply(struct con *); -void setlog(char *, size_t, char *); -void initcon(struct con *, int, struct sockaddr *); -void closecon(struct con *); -int match(const char *, const char *); -void nextstate(struct con *); -void handler(struct con *); -void handlew(struct con *, int one); - -char hostname[MAXHOSTNAMELEN]; -#ifdef __OpenBSD__ -struct syslog_data sdata = SYSLOG_DATA_INIT; -#else -#define syslog_r(l, s, args...) syslog(l,args) -#define openlog_r(i, l, f, s) openlog(i, l, f) -int sdata = 0; /* dummy */ -#endif -char *reply = NULL; -char *nreply = "450"; -char *spamd = "spamd IP-based SPAM blocker"; -int greypipe[2]; -int trappipe[2]; -FILE *grey; -FILE *trapcfg; -time_t passtime = PASSTIME; -time_t greyexp = GREYEXP; -time_t whiteexp = WHITEEXP; -time_t trapexp = TRAPEXP; -struct passwd *pw; -pid_t jail_pid = -1; -u_short cfg_port; - -extern struct sdlist *blacklists; - -int conffd = -1; -int trapfd = -1; -char *cb; -size_t cbs, cbu; - -time_t t; - -#define MAXCON 800 -int maxcon = MAXCON; -int maxblack = MAXCON; -int blackcount; -int clients; -int debug; -int greylist; -int verbose; -int stutter = 1; -int window; -#define MAXTIME 400 - -void -usage(void) -{ - fprintf(stderr, - "usage: spamd [-45dgv] [-B maxblack] [-b address] [-c maxcon]\n"); - fprintf(stderr, - " [-G mins:hours:hours] [-n name] [-p port]\n"); - fprintf(stderr, - " [-r reply] [-s secs] [-w window]\n"); - exit(1); -} - -char * -grow_obuf(struct con *cp, int off) -{ - char *tmp; - - tmp = realloc(cp->obuf, cp->osize + 8192); - if (tmp == NULL) { - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - return (NULL); - } else { - cp->osize += 8192; - cp->obuf = tmp; - return (cp->obuf + off); - } -} - -int -parse_configline(char *line) -{ - char *cp, prev, *name, *msg; - static char **av = NULL; - static size_t ac = 0; - size_t au = 0; - int mdone = 0; - - name = line; - - for (cp = name; *cp && *cp != ';'; cp++) - ; - if (*cp != ';') - goto parse_error; - *cp++ = '\0'; - msg = cp; - if (*cp++ != '"') - goto parse_error; - prev = '\0'; - for (; !mdone; cp++) { - switch (*cp) { - case '\\': - if (!prev) - prev = *cp; - else - prev = '\0'; - break; - case '"': - if (prev != '\\') { - cp++; - if (*cp == ';') { - mdone = 1; - *cp = '\0'; - } else - goto parse_error; - } - break; - case '\0': - goto parse_error; - default: - prev = '\0'; - break; - } - } - - do { - if (ac == au) { - char **tmp; - - tmp = realloc(av, (ac + 2048) * sizeof(char *)); - if (tmp == NULL) { - free(av); - av = NULL; - ac = 0; - return (-1); - } - av = tmp; - ac += 2048; - } - } while ((av[au++] = strsep(&cp, ";")) != NULL); - - /* toss empty last entry to allow for trailing ; */ - if (av[au - 1][0] == '\0'); - au--; - - if (au < 1) - goto parse_error; - else - sdl_add(name, msg, av, au - 1); - return (0); - -parse_error: - if (debug > 0) - printf("bogus config line - need 'tag;message;a/m;a/m;a/m...'\n"); - return (-1); -} - -void -parse_configs(void) -{ - char *start, *end; - int i; - - if (cbu == cbs) { - char *tmp; - - tmp = realloc(cb, cbs + 8192); - if (tmp == NULL) { - if (debug > 0) - perror("malloc()"); - free(cb); - cb = NULL; - cbs = cbu = 0; - return; - } - cbs += 8192; - cb = tmp; - } - cb[cbu++] = '\0'; - - start = cb; - end = start; - for (i = 0; i < cbu; i++) { - if (*end == '\n') { - *end = '\0'; - if (end > start + 1) - parse_configline(start); - start = ++end; - } else - ++end; - } - if (end > start + 1) - parse_configline(start); -} - -void -do_config(void) -{ - int n; - - if (debug > 0) - printf("got configuration connection\n"); - - if (cbu == cbs) { - char *tmp; - - tmp = realloc(cb, cbs + 8192); - if (tmp == NULL) { - if (debug > 0) - perror("malloc()"); - free(cb); - cb = NULL; - cbs = 0; - goto configdone; - } - cbs += 8192; - cb = tmp; - } - - n = read(conffd, cb + cbu, cbs - cbu); - if (debug > 0) - printf("read %d config bytes\n", n); - if (n == 0) { - parse_configs(); - goto configdone; - } else if (n == -1) { - if (debug > 0) - perror("read()"); - goto configdone; - } else - cbu += n; - return; - -configdone: - cbu = 0; - close(conffd); - conffd = -1; -} - - -int -read_configline(FILE *config) -{ - char *buf; - size_t len; - - if ((buf = fgetln(config, &len))) { - if (buf[len - 1] == '\n') - buf[len - 1] = '\0'; - else - return(-1); /* all valid lines end in \n */ - parse_configline(buf); - } else { - syslog_r(LOG_DEBUG, &sdata, "read_configline: fgetln (%m)"); - return(-1); - } - return(0); -} - -int -append_error_string(struct con *cp, size_t off, char *fmt, int af, void *ia) -{ - char sav = '\0'; - static int lastcont = 0; - char *c = cp->obuf + off; - char *s = fmt; - size_t len = cp->osize - off; - int i = 0; - - if (off == 0) - lastcont = 0; - - if (lastcont != 0) - cp->obuf[lastcont] = '-'; - snprintf(c, len, "%s ", nreply); - i += strlen(c); - lastcont = off + i - 1; - if (*s == '"') - s++; - while (*s) { - /* - * Make sure we at minimum, have room to add a - * format code (4 bytes), and a v6 address(39 bytes) - * and a byte saved in sav. - */ - if (i >= len - 46) { - c = grow_obuf(cp, off); - if (c == NULL) - return (-1); - len = cp->osize - (off + i); - } - - if (c[i-1] == '\n') { - if (lastcont != 0) - cp->obuf[lastcont] = '-'; - snprintf(c + i, len, "%s ", nreply); - i += strlen(c); - lastcont = off + i - 1; - } - - switch (*s) { - case '\\': - case '%': - if (!sav) - sav = *s; - else { - c[i++] = sav; - sav = '\0'; - c[i] = '\0'; - } - break; - case '"': - case 'A': - case 'n': - if (*(s+1) == '\0') { - break; - } - if (sav == '\\' && *s == 'n') { - c[i++] = '\n'; - sav = '\0'; - c[i] = '\0'; - break; - } else if (sav == '\\' && *s == '"') { - c[i++] = '"'; - sav = '\0'; - c[i] = '\0'; - break; - } else if (sav == '%' && *s == 'A') { - inet_ntop(af, ia, c + i, (len - i)); - i += strlen(c + i); - sav = '\0'; - break; - } - /* fallthrough */ - default: - if (sav) - c[i++] = sav; - c[i++] = *s; - sav = '\0'; - c[i] = '\0'; - break; - } - s++; - } - return (i); -} - -char * -loglists(struct con *cp) -{ - static char matchlists[80]; - struct sdlist **matches; - int s = sizeof(matchlists) - 4; - - matchlists[0] = '\0'; - matches = cp->blacklists; - if (matches == NULL) - return(NULL); - for (; *matches; matches++) { - - /* don't report an insane amount of lists in the logs. - * just truncate and indicate with ... - */ - if (strlen(matchlists) + strlen(matches[0]->tag) + 1 - >= s) - strlcat(matchlists, " ...", sizeof(matchlists)); - else { - strlcat(matchlists, " ", s); - strlcat(matchlists, matches[0]->tag, s); - } - } - return matchlists; -} - -void -build_reply(struct con *cp) -{ - struct sdlist **matches; - int off = 0; - - matches = cp->blacklists; - if (matches == NULL) - goto nomatch; - for (; *matches; matches++) { - int used = 0; - char *c = cp->obuf + off; - int left = cp->osize - off; - - used = append_error_string(cp, off, matches[0]->string, - cp->af, cp->ia); - if (used == -1) - goto bad; - off += used; - left -= used; - if (cp->obuf[off - 1] != '\n') { - if (left < 1) { - c = grow_obuf(cp, off); - if (c == NULL) - goto bad; - } - cp->obuf[off++] = '\n'; - cp->obuf[off] = '\0'; - } - } - return; -nomatch: - /* No match. give generic reply */ - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - if (cp->blacklists != NULL) - asprintf(&cp->obuf, - "%s-Sorry %s\n" - "%s-You are trying to send mail from an address " - "listed by one\n" - "%s or more IP-based registries as being a SPAM source.\n", - nreply, cp->addr, nreply, nreply); - else - asprintf(&cp->obuf, - "451 Temporary failure, please try again later.\r\n"); - if (cp->obuf != NULL) - cp->osize = strlen(cp->obuf) + 1; - else - cp->osize = 0; - return; -bad: - if (cp->obuf != NULL) { - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - } -} - -void -doreply(struct con *cp) -{ - if (reply) - snprintf(cp->obuf, cp->osize, "%s %s\n", nreply, reply); - build_reply(cp); -} - -void -setlog(char *p, size_t len, char *f) -{ - char *s; - - s = strsep(&f, ":"); - if (!f) - return; - while (*f == ' ' || *f == '\t') - f++; - s = strsep(&f, " \t"); - if (s == NULL) - return; - strlcpy(p, s, len); - s = strsep(&p, " \t\n\r"); - if (s == NULL) - return; - s = strsep(&p, " \t\n\r"); - if (s) - *s = '\0'; -} - -void -initcon(struct con *cp, int fd, struct sockaddr *sa) -{ - time_t t; - char *tmp; - int error; - - time(&t); - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - free(cp->blacklists); - cp->blacklists = NULL; - free(cp->lists); - cp->lists = NULL; - bzero(cp, sizeof(struct con)); - if (grow_obuf(cp, 0) == NULL) - err(1, "malloc"); - cp->fd = fd; - if (sa->sa_len > sizeof(cp->ss)) - errx(1, "sockaddr size"); - if (sa->sa_family != AF_INET) - errx(1, "not supported yet"); - memcpy(&cp->ss, sa, sa->sa_len); - cp->af = sa->sa_family; - cp->ia = &((struct sockaddr_in *)sa)->sin_addr; - cp->blacklists = sdl_lookup(blacklists, cp->af, cp->ia); - cp->stutter = (greylist && cp->blacklists == NULL) ? 0 : stutter; - error = getnameinfo(sa, sa->sa_len, cp->addr, sizeof(cp->addr), NULL, 0, - NI_NUMERICHOST); - if (error) - errx(1, "%s", gai_strerror(error)); - tmp = strdup(ctime(&t)); - if (tmp == NULL) - err(1, "malloc"); - tmp[strlen(tmp) - 1] = '\0'; /* nuke newline */ - snprintf(cp->obuf, cp->osize, - "220 %s ESMTP %s; %s\r\n", - hostname, spamd, tmp); - free(tmp); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->s = t; - strlcpy(cp->rend, "\n", sizeof cp->rend); - clients++; - if (cp->blacklists != NULL) { - blackcount++; - if (greylist && blackcount > maxblack) { - closecon(cp); /* close and free */ - return; - } - cp->lists = strdup(loglists(cp)); - } - else - cp->lists = NULL; -} - -void -closecon(struct con *cp) -{ - time_t t; - - time(&t); - syslog_r(LOG_INFO, &sdata, "%s: disconnected after %ld seconds.%s%s", - cp->addr, (long)(t - cp->s), - ((cp->lists == NULL) ? "" : " lists:"), - ((cp->lists == NULL) ? "": cp->lists)); - if (debug > 0) - printf("%s connected for %ld seconds.\n", cp->addr, - (long)(t - cp->s)); - if (cp->lists != NULL) { - free(cp->lists); - cp->lists = NULL; - } - if (cp->blacklists != NULL) { - blackcount--; - free(cp->blacklists); - cp->blacklists = NULL; - } - if (cp->obuf != NULL) { - free(cp->obuf); - cp->obuf = NULL; - cp->osize = 0; - } - close(cp->fd); - clients--; - cp->fd = -1; -} - -int -match(const char *s1, const char *s2) -{ - return (strncasecmp(s1, s2, strlen(s2)) == 0); -} - -void -nextstate(struct con *cp) -{ - if (match(cp->ibuf, "QUIT") && cp->state < 99) { - snprintf(cp->obuf, cp->osize, "221 %s\r\n", hostname); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->laststate = cp->state; - cp->state = 99; - return; - } - - if (match(cp->ibuf, "RSET") && cp->state > 2 && cp->state < 50) { - snprintf(cp->obuf, cp->osize, - "250 Ok to start over.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->laststate = cp->state; - cp->state = 2; - return; - } - switch (cp->state) { - case 0: - /* banner sent; wait for input */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 1; - cp->r = t; - break; - case 1: - /* received input: parse, and select next state */ - if (match(cp->ibuf, "HELO") || - match(cp->ibuf, "EHLO")) { - snprintf(cp->obuf, cp->osize, - "250 Hello, spam sender. " - "Pleased to be wasting your time.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->laststate = cp->state; - cp->state = 2; - cp->w = t + cp->stutter; - break; - } - goto mail; - case 2: - /* sent 250 Hello, wait for input */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 3; - cp->r = t; - break; - mail: - case 3: - if (match(cp->ibuf, "MAIL")) { - setlog(cp->mail, sizeof cp->mail, cp->ibuf); - snprintf(cp->obuf, cp->osize, - "250 You are about to try to deliver spam. " - "Your time will be spent, for nothing.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->laststate = cp->state; - cp->state = 4; - cp->w = t + cp->stutter; - break; - } - goto rcpt; - case 4: - /* sent 250 Sender ok */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 5; - cp->r = t; - break; - rcpt: - case 5: - if (match(cp->ibuf, "RCPT")) { - setlog(cp->rcpt, sizeof(cp->rcpt), cp->ibuf); - snprintf(cp->obuf, cp->osize, - "250 This is hurting you more than it is " - "hurting me.\r\n"); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->laststate = cp->state; - cp->state = 6; - cp->w = t + cp->stutter; - if (cp->mail[0] && cp->rcpt[0]) { - if (verbose) - syslog_r(LOG_INFO, &sdata, - "(%s) %s: %s -> %s", - cp->blacklists ? "BLACK" : "GREY", - cp->addr, cp->mail, - cp->rcpt); - if (debug) - fprintf(stderr, "(%s) %s: %s -> %s\n", - cp->blacklists ? "BLACK" : "GREY", - cp->addr, cp->mail, cp->rcpt); - if (greylist && cp->blacklists == NULL) { - /* send this info to the greylister */ - fprintf(grey, "IP:%s\nFR:%s\nTO:%s\n", - cp->addr, cp->mail, cp->rcpt); - fflush(grey); - cp->laststate = cp->state; - cp->state = 98; - goto done; - } - } - break; - } - goto spam; - case 6: - /* sent 250 blah */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 5; - cp->r = t; - break; - - spam: - case 50: - if (match(cp->ibuf, "DATA")) { - snprintf(cp->obuf, cp->osize, - "354 Enter spam, end with \".\" on a line by " - "itself\r\n"); - cp->state = 60; - if (window && setsockopt(cp->fd, SOL_SOCKET, SO_RCVBUF, - &window, sizeof(window)) == -1) { - syslog_r(LOG_DEBUG, &sdata,"setsockopt: %m"); - /* don't fail if this doesn't work. */ - } - } else { - snprintf(cp->obuf, cp->osize, - "500 5.5.1 Command unrecognized\r\n"); - cp->state = cp->laststate; - } - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - break; - case 60: - /* sent 354 blah */ - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->laststate = cp->state; - cp->state = 70; - cp->r = t; - break; - case 70: { - char *p, *q; - - for (p = q = cp->ibuf; q <= cp->ip; ++q) - if (*q == '\n' || q == cp->ip) { - *q = 0; - if (q > p && q[-1] == '\r') - q[-1] = 0; - if (!strcmp(p, ".") || - (cp->data_body && ++cp->data_lines >= 10)) { - cp->laststate = cp->state; - cp->state = 98; - goto done; - } - if (!cp->data_body && !*p) - cp->data_body = 1; - if (verbose && cp->data_body && *p) - syslog_r(LOG_DEBUG, &sdata, "%s: " - "Body: %s", cp->addr, p); - else if (verbose && (match(p, "FROM:") || - match(p, "TO:") || match(p, "SUBJECT:"))) - syslog_r(LOG_INFO, &sdata, "%s: %s", - cp->addr, p); - p = ++q; - } - cp->ip = cp->ibuf; - cp->il = sizeof(cp->ibuf) - 1; - cp->r = t; - break; - } - done: - case 98: - doreply(cp); - cp->op = cp->obuf; - cp->ol = strlen(cp->op); - cp->w = t + cp->stutter; - cp->laststate = cp->state; - cp->state = 99; - break; - case 99: - closecon(cp); - break; - default: - errx(1, "illegal state %d", cp->state); - break; - } -} - -void -handler(struct con *cp) -{ - int end = 0; - int n; - - if (cp->r) { - n = read(cp->fd, cp->ip, cp->il); - if (n == 0) - closecon(cp); - else if (n == -1) { - if (debug > 0) - perror("read()"); - closecon(cp); - } else { - cp->ip[n] = '\0'; - if (cp->rend[0]) - if (strpbrk(cp->ip, cp->rend)) - end = 1; - cp->ip += n; - cp->il -= n; - } - } - if (end || cp->il == 0) { - while (cp->ip > cp->ibuf && - (cp->ip[-1] == '\r' || cp->ip[-1] == '\n')) - cp->ip--; - *cp->ip = '\0'; - cp->r = 0; - nextstate(cp); - } -} - -void -handlew(struct con *cp, int one) -{ - int n; - - if (cp->w) { - if (*cp->op == '\n' && !cp->sr) { - /* insert \r before \n */ - n = write(cp->fd, "\r", 1); - if (n == 0) { - closecon(cp); - goto handled; - } else if (n == -1) { - if (debug > 0 && errno != EPIPE) - perror("write()"); - closecon(cp); - goto handled; - } - } - if (*cp->op == '\r') - cp->sr = 1; - else - cp->sr = 0; - n = write(cp->fd, cp->op, (one && cp->stutter) ? 1 : cp->ol); - if (n == 0) - closecon(cp); - else if (n == -1) { - if (debug > 0 && errno != EPIPE) - perror("write()"); - closecon(cp); - } else { - cp->op += n; - cp->ol -= n; - } - } -handled: - cp->w = t + cp->stutter; - if (cp->ol == 0) { - cp->w = 0; - nextstate(cp); - } -} - -int -main(int argc, char *argv[]) -{ - fd_set *fdsr = NULL, *fdsw = NULL; - struct sockaddr_in sin; - struct sockaddr_in lin; - int ch, s, s2, conflisten = 0, i, omax = 0, one = 1; - socklen_t sinlen; - u_short port; - struct servent *ent; - struct rlimit rlp; - char *bind_address = NULL; - - tzset(); - openlog_r("spamd", LOG_PID | LOG_NDELAY, LOG_DAEMON, &sdata); - - if ((ent = getservbyname("spamd", "tcp")) == NULL) - errx(1, "Can't find service \"spamd\" in /etc/services"); - port = ntohs(ent->s_port); - if ((ent = getservbyname("spamd-cfg", "tcp")) == NULL) - errx(1, "Can't find service \"spamd-cfg\" in /etc/services"); - cfg_port = ntohs(ent->s_port); - - if (gethostname(hostname, sizeof hostname) == -1) - err(1, "gethostname"); - - while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:")) != -1) { - switch (ch) { - case '4': - nreply = "450"; - break; - case '5': - nreply = "550"; - break; - case 'b': - bind_address = optarg; - break; - case 'B': - i = atoi(optarg); - maxblack = i; - break; - case 'c': - i = atoi(optarg); - if (i > MAXCON) - usage(); - maxcon = i; - break; - case 'p': - i = atoi(optarg); - port = i; - break; - case 'd': - debug = 1; - break; - case 'g': - greylist = 1; - break; - case 'G': - if (sscanf(optarg, "%d:%d:%d", &passtime, &greyexp, - &whiteexp) != 3) - usage(); - /* convert to seconds from minutes */ - passtime *= 60; - /* convert to seconds from hours */ - whiteexp *= (60 * 60); - /* convert to seconds from hours */ - greyexp *= (60 * 60); - break; - case 'r': - reply = optarg; - break; - case 's': - i = atoi(optarg); - if (i < 0 || i > 10) - usage(); - stutter = i; - break; - case 'n': - spamd = optarg; - break; - case 'v': - verbose = 1; - break; - case 'w': - window = atoi(optarg); - if (window <= 0) - usage(); - break; - default: - usage(); - break; - } - } - - if (!greylist) - maxblack = maxcon; - else if (maxblack > maxcon) - usage(); - - rlp.rlim_cur = rlp.rlim_max = maxcon + 15; - if (setrlimit(RLIMIT_NOFILE, &rlp) == -1) - err(1, "setrlimit"); - - con = calloc(maxcon, sizeof(*con)); - if (con == NULL) - err(1, "calloc"); - - con->obuf = malloc(8192); - - if (con->obuf == NULL) - err(1, "malloc"); - con->osize = 8192; - - for (i = 0; i < maxcon; i++) - con[i].fd = -1; - - signal(SIGPIPE, SIG_IGN); - - s = socket(AF_INET, SOCK_STREAM, 0); - if (s == -1) - err(1, "socket"); - - if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, - sizeof(one)) == -1) - return (-1); - - conflisten = socket(AF_INET, SOCK_STREAM, 0); - if (conflisten == -1) - err(1, "socket"); - - if (setsockopt(conflisten, SOL_SOCKET, SO_REUSEADDR, &one, - sizeof(one)) == -1) - return (-1); - - memset(&sin, 0, sizeof sin); - sin.sin_len = sizeof(sin); - if (bind_address) { - if (inet_pton(AF_INET, bind_address, &sin.sin_addr) != 1) - err(1, "inet_pton"); - } else - sin.sin_addr.s_addr = htonl(INADDR_ANY); - sin.sin_family = AF_INET; - sin.sin_port = htons(port); - - if (bind(s, (struct sockaddr *)&sin, sizeof sin) == -1) - err(1, "bind"); - - memset(&lin, 0, sizeof sin); - lin.sin_len = sizeof(sin); - lin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - lin.sin_family = AF_INET; - lin.sin_port = htons(cfg_port); - - if (bind(conflisten, (struct sockaddr *)&lin, sizeof lin) == -1) - err(1, "bind local"); - - pw = getpwnam("_spamd"); - if (!pw) - pw = getpwnam("nobody"); - - if (debug == 0) { - if (daemon(1, 1) == -1) - err(1, "daemon"); - } - - if (greylist) { - maxblack = (maxblack >= maxcon) ? maxcon - 100 : maxblack; - if (maxblack < 0) - maxblack = 0; - - /* open pipe to talk to greylister */ - if (pipe(greypipe) == -1) { - syslog(LOG_ERR, "pipe (%m)"); - exit(1); - } - /* open pipe to recieve spamtrap configs */ - if (pipe(trappipe) == -1) { - syslog(LOG_ERR, "pipe (%m)"); - exit(1); - } - jail_pid = fork(); - switch(jail_pid) { - case -1: - syslog(LOG_ERR, "fork (%m)"); - exit(1); - case 0: - /* child - continue */ - grey = fdopen(greypipe[1], "w"); - if (grey == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - _exit(1); - } - close(greypipe[0]); - trapfd = trappipe[0]; - trapcfg = fdopen(trappipe[0], "r"); - if (trapcfg == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - _exit(1); - } - close(trappipe[1]); - goto jail; - } - /* parent - run greylister */ - grey = fdopen(greypipe[0], "r"); - if (grey == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - exit(1); - } - close(greypipe[1]); - trapcfg = fdopen(trappipe[1], "w"); - if (trapcfg == NULL) { - syslog(LOG_ERR, "fdopen (%m)"); - exit(1); - } - close(trappipe[0]); - return(greywatcher()); - /* NOTREACHED */ - } - -jail: - if (chroot("/var/empty") == -1 || chdir("/") == -1) { - syslog(LOG_ERR, "cannot chdir to /var/empty."); - exit(1); - } - - if (pw) { - setgroups(1, &pw->pw_gid); - setegid(pw->pw_gid); - setgid(pw->pw_gid); - seteuid(pw->pw_uid); - setuid(pw->pw_uid); - } - - if (listen(s, 10) == -1) - err(1, "listen"); - - if (listen(conflisten, 10) == -1) - err(1, "listen"); - - if (debug != 0) - printf("listening for incoming connections.\n"); - syslog_r(LOG_WARNING, &sdata, "listening for incoming connections."); - - while (1) { - struct timeval tv, *tvp; - int max, i, n; - int writers; - - max = MAX(s, conflisten); - max = MAX(max, conffd); - max = MAX(max, trapfd); - - time(&t); - for (i = 0; i < maxcon; i++) - if (con[i].fd != -1) - max = MAX(max, con[i].fd); - - if (max > omax) { - free(fdsr); - fdsr = NULL; - free(fdsw); - fdsw = NULL; - fdsr = (fd_set *)calloc(howmany(max+1, NFDBITS), - sizeof(fd_mask)); - if (fdsr == NULL) - err(1, "calloc"); - fdsw = (fd_set *)calloc(howmany(max+1, NFDBITS), - sizeof(fd_mask)); - if (fdsw == NULL) - err(1, "calloc"); - omax = max; - } else { - memset(fdsr, 0, howmany(max+1, NFDBITS) * - sizeof(fd_mask)); - memset(fdsw, 0, howmany(max+1, NFDBITS) * - sizeof(fd_mask)); - } - - writers = 0; - for (i = 0; i < maxcon; i++) { - if (con[i].fd != -1 && con[i].r) { - if (con[i].r + MAXTIME <= t) { - closecon(&con[i]); - continue; - } - FD_SET(con[i].fd, fdsr); - } - if (con[i].fd != -1 && con[i].w) { - if (con[i].w + MAXTIME <= t) { - closecon(&con[i]); - continue; - } - if (con[i].w <= t) - FD_SET(con[i].fd, fdsw); - writers = 1; - } - } - FD_SET(s, fdsr); - - /* only one active config conn at a time */ - if (conffd == -1) - FD_SET(conflisten, fdsr); - else - FD_SET(conffd, fdsr); - if (trapfd != -1) - FD_SET(trapfd, fdsr); - - if (writers == 0) { - tvp = NULL; - } else { - tv.tv_sec = 1; - tv.tv_usec = 0; - tvp = &tv; - } - - n = select(max+1, fdsr, fdsw, NULL, tvp); - if (n == -1) { - if (errno != EINTR) - err(1, "select"); - continue; - } - if (n == 0) - continue; - - for (i = 0; i < maxcon; i++) { - if (con[i].fd != -1 && FD_ISSET(con[i].fd, fdsr)) - handler(&con[i]); - if (con[i].fd != -1 && FD_ISSET(con[i].fd, fdsw)) - handlew(&con[i], clients + 5 < maxcon); - } - if (FD_ISSET(s, fdsr)) { - sinlen = sizeof(sin); - s2 = accept(s, (struct sockaddr *)&sin, &sinlen); - if (s2 == -1) - /* accept failed, they may try again */ - continue; - for (i = 0; i < maxcon; i++) - if (con[i].fd == -1) - break; - if (i == maxcon) - close(s2); - else { - initcon(&con[i], s2, (struct sockaddr *)&sin); - syslog_r(LOG_INFO, &sdata, - "%s: connected (%d/%d)%s%s", - con[i].addr, clients, blackcount, - ((con[i].lists == NULL) ? "" : - ", lists:"), - ((con[i].lists == NULL) ? "": - con[i].lists)); - } - } - if (FD_ISSET(conflisten, fdsr)) { - sinlen = sizeof(lin); - conffd = accept(conflisten, (struct sockaddr *)&lin, - &sinlen); - if (conffd == -1) - /* accept failed, they may try again */ - continue; - else if (ntohs(lin.sin_port) >= IPPORT_RESERVED) { - close(conffd); - conffd = -1; - } - } - if (conffd != -1 && FD_ISSET(conffd, fdsr)) - do_config(); - if (trapfd != -1 && FD_ISSET(trapfd, fdsr)) - read_configline(trapcfg); - } - exit(1); -} Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd/spamd.o and /usr/home/samm/spamd/work/spamd_3.7/spamd/spamd.o differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/Makefile /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/Makefile --- /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/Makefile Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/Makefile Thu Jan 1 03:00:00 1970 @@ -1,12 +0,0 @@ -# $OpenBSD: Makefile,v 1.3 2004/01/21 08:07:41 deraadt Exp $ - -PROG= spamd-setup -SRCS= spamd-setup.c -MAN= spamd-setup.8 - -LDADD= -lz -DPADD= ${LIBZ} - -CFLAGS+= -Wall -Wstrict-prototypes -ansi -D_NO_NAMESPACE_POLLUTION - -.include Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup and /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8 /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8 --- /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8 Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8 Thu Jan 1 03:00:00 1970 @@ -1,95 +0,0 @@ -.\" $OpenBSD: spamd-setup.8,v 1.9 2004/01/29 17:41:00 jmc Exp $ -.\" -.\" Copyright (c) 2003 Jason L. Wright (jason@thought.net) -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -.\" POSSIBILITY OF SUCH DAMAGE. -.\" -.Dd February 14, 2003 -.Dt SPAMD-SETUP 8 -.Os -.Sh NAME -.Nm spamd-setup -.Nd parse and load file of spammer addresses -.Sh SYNOPSIS -.Nm spamd-setup -.Op Fl dn -.Sh DESCRIPTION -The -.Nm -utility adds blacklists by adding addresses to the -.Xr pf 4 -table -.Em , -as well as configuring mail rejection messages for -the added list of addresses in -.Xr spamd 8 . -The -.Em spamd -table is used in conjunction with a -.Xr pf 4 -redirection rule to selectively redirect mail connections -to the -.Xr spamd 8 -daemon. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl d -Debug mode reports a few pieces of information. -.It Fl n -Dry-run mode. -No data is shipped to -.Xr pf 4 . -.El -.Pp -Blacklists and whitelists are specified in the configuration file -.Pa /usr/local/etc/spamd.conf -and are processed in the order specified in the -.Ar all -tag. -Output is concatenated to build up a table for -.Xr pf 4 . -Then the blacklist addresses are sent to a running -.Xr spamd 8 -along with the message spamd will give on mail rejection when a -matching client connects. -The configuration port for -.Xr spamd 8 -is found from -.Xr services 5 , -by looking for the named service -.Em spamd-cfg . -.Pp -.Nm -reads all configuration information from a -.Xr spamd.conf 5 -file. -.Sh FILES -.Bd -literal -/usr/local/etc/spamd.conf -.Ed -.Sh SEE ALSO -.Xr ftp 1 , -.Xr pf 4 , -.Xr services 5 , -.Xr spamd.conf 5 , -.Xr spamd 8 diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8.bak /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8.bak --- /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8.bak Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8.bak Thu Jan 1 03:00:00 1970 @@ -1,95 +0,0 @@ -.\" $OpenBSD: spamd-setup.8,v 1.9 2004/01/29 17:41:00 jmc Exp $ -.\" -.\" Copyright (c) 2003 Jason L. Wright (jason@thought.net) -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -.\" POSSIBILITY OF SUCH DAMAGE. -.\" -.Dd February 14, 2003 -.Dt SPAMD-SETUP 8 -.Os -.Sh NAME -.Nm spamd-setup -.Nd parse and load file of spammer addresses -.Sh SYNOPSIS -.Nm spamd-setup -.Op Fl dn -.Sh DESCRIPTION -The -.Nm -utility adds blacklists by adding addresses to the -.Xr pf 4 -table -.Em , -as well as configuring mail rejection messages for -the added list of addresses in -.Xr spamd 8 . -The -.Em spamd -table is used in conjunction with a -.Xr pf 4 -redirection rule to selectively redirect mail connections -to the -.Xr spamd 8 -daemon. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl d -Debug mode reports a few pieces of information. -.It Fl n -Dry-run mode. -No data is shipped to -.Xr pf 4 . -.El -.Pp -Blacklists and whitelists are specified in the configuration file -.Pa /etc/spamd.conf -and are processed in the order specified in the -.Ar all -tag. -Output is concatenated to build up a table for -.Xr pf 4 . -Then the blacklist addresses are sent to a running -.Xr spamd 8 -along with the message spamd will give on mail rejection when a -matching client connects. -The configuration port for -.Xr spamd 8 -is found from -.Xr services 5 , -by looking for the named service -.Em spamd-cfg . -.Pp -.Nm -reads all configuration information from a -.Xr spamd.conf 5 -file. -.Sh FILES -.Bd -literal -/etc/spamd.conf -.Ed -.Sh SEE ALSO -.Xr ftp 1 , -.Xr pf 4 , -.Xr services 5 , -.Xr spamd.conf 5 , -.Xr spamd 8 Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8.gz and /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.8.gz differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c --- /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c Thu Jan 1 03:00:00 1970 @@ -1,924 +0,0 @@ -/* $OpenBSD: spamd-setup.c,v 1.21 2005/03/02 16:45:30 dhartmei Exp $ */ - -/* - * Copyright (c) 2003 Bob Beck. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef __OpenBSD__ -#include -#endif -#include -#include - -#ifdef IPFW -#include -#include -#endif - -#define PATH_FTP "/usr/bin/ftp" -#define PATH_PFCTL "" -#define PATH_SPAMD_CONF "/usr/local/etc/spamd.conf" -#define SPAMD_ARG_MAX 256 /* max # of args to an exec */ - -struct cidr { - u_int32_t addr; - u_int8_t bits; -}; - -struct bl { - u_int32_t addr; - int8_t b; - int8_t w; -}; - -struct blacklist { - char *name; - char *message; - struct bl *bl; - size_t blc, bls; - u_int8_t black; - int count; -}; - -u_int32_t imask(u_int8_t b); -u_int8_t maxblock(u_int32_t addr, u_int8_t bits); -u_int8_t maxdiff(u_int32_t a, u_int32_t b); -struct cidr *range2cidrlist(u_int32_t start, u_int32_t end); -void cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end); -char *atop(u_int32_t addr); -u_int32_t ptoa(char *cp); -int parse_netblock(char *buf, struct bl *start, struct bl *end, - int white); -int open_child(char *file, char **argv); -int fileget(char *url); -int open_file(char *method, char *file); -char *fix_quoted_colons(char *buf); -void do_message(FILE *sdc, char *msg); -struct bl *add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, - int white); -int cmpbl(const void *a, const void *b); -struct cidr **collapse_blacklist(struct bl *bl, int blc); -int configure_spamd(u_short dport, char *name, char *message, - struct cidr **blacklists); -int configure_pf(struct cidr **blacklists); -int getlist(char ** db_array, char *name, struct blacklist *blist, - struct blacklist *blistnew); - -int debug; -int dryrun; - -#ifdef IPFW -int tabno=2; -#endif - - -u_int32_t -imask(u_int8_t b) -{ - u_int32_t j = 0; - int i; - - for (i = 31; i > 31 - b; --i) - j |= (1 << i); - return(j); -} - -u_int8_t -maxblock(u_int32_t addr, u_int8_t bits) -{ - while (bits > 0) { - u_int32_t m = imask(bits - 1); - - if ((addr & m) != addr) - return (bits); - bits--; - } - return(bits); -} - -u_int8_t -maxdiff(u_int32_t a, u_int32_t b) -{ - u_int8_t bits = 0; - - b++; - while (bits < 32) { - u_int32_t m = imask(bits); - - if ((a & m) != (b & m)) - return (bits); - bits++; - } - return(bits); -} - -struct cidr * -range2cidrlist(u_int32_t start, u_int32_t end) -{ - struct cidr *list = NULL; - size_t cs = 0, cu = 0; - - while (end >= start) { - u_int8_t maxsize = maxblock(start, 32); - u_int8_t diff = maxdiff(start, end); - - maxsize = MAX(maxsize, diff); - if (cs == cu) { - struct cidr *tmp; - - tmp = realloc(list, (cs + 32) * sizeof(struct cidr)); - if (tmp == NULL) - errx(1, "malloc failed"); - list = tmp; - cs += 32; - } - list[cu].addr = start; - list[cu].bits = maxsize; - cu++; - list[cu].addr = 0; - list[cu].bits = 0; - start = start + (1 << (32 - maxsize)); - } - return(list); -} - -void -cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end) -{ - *start = cidr.addr; - *end = cidr.addr + (1 << (32 - cidr.bits)) - 1; -} - -char * -atop(u_int32_t addr) -{ - struct in_addr in; - - memset(&in, 0, sizeof(in)); - in.s_addr = htonl(addr); - return(inet_ntoa(in)); -} - -int -parse_netblock(char *buf, struct bl *start, struct bl *end, int white) -{ - char astring[16], astring2[16]; - unsigned maskbits; - - /* skip leading spaces */ - while (*buf == ' ') - buf++; - /* bail if it's a comment */ - if (*buf == '#') - return(0); - /* otherwise, look for a netblock of some sort */ - if (sscanf(buf, "%15[^/]/%u", astring, &maskbits) == 2) { - /* looks like a cidr */ - struct cidr c; - - memset(&c.addr, 0, sizeof(c.addr)); - if (inet_net_pton(AF_INET, astring, &c.addr, sizeof(c.addr)) - == -1) - return(0); - c.addr = ntohl(c.addr); - if (maskbits > 32) - return(0); - c.bits = maskbits; - cidr2range(c, &start->addr, &end->addr); - end->addr += 1; - } else if (sscanf(buf, "%15[0123456789.]%*[ -]%15[0123456789.]", - astring, astring2) == 2) { - /* looks like start - end */ - memset(&start->addr, 0, sizeof(start->addr)); - memset(&end->addr, 0, sizeof(end->addr)); - if (inet_net_pton(AF_INET, astring, &start->addr, - sizeof(start->addr)) == -1) - return(0); - start->addr = ntohl(start->addr); - if (inet_net_pton(AF_INET, astring2, &end->addr, - sizeof(end->addr)) == -1) - return(0); - end->addr = ntohl(end->addr) + 1; - if (start > end) - return(0); - } else if (sscanf(buf, "%15[0123456789.]", astring) == 1) { - /* just a single address */ - memset(&start->addr, 0, sizeof(start->addr)); - if (inet_net_pton(AF_INET, astring, &start->addr, - sizeof(start->addr)) == -1) - return(0); - start->addr = ntohl(start->addr); - end->addr = start->addr + 1; - } else - return(0); - - if (white) { - start->b = 0; - start->w = 1; - end->b = 0; - end->w = -1; - } else { - start->b = 1; - start->w = 0; - end->b = -1; - end->w = 0; - } - return(1); -} - -int -open_child(char *file, char **argv) -{ - int pdes[2]; - - if (pipe(pdes) != 0) - return(-1); - switch (fork()) { - case -1: - close(pdes[0]); - close(pdes[1]); - return(-1); - case 0: - /* child */ - close(pdes[0]); - if (pdes[1] != STDOUT_FILENO) { - dup2(pdes[1], STDOUT_FILENO); - close(pdes[1]); - } - execvp(file, argv); - _exit(1); - } - - /* parent */ - close(pdes[1]); - return(pdes[0]); -} - -int -fileget(char *url) -{ - char *argv[6]; - - argv[0] = "ftp"; - argv[1] = "-V"; - argv[2] = "-o"; - argv[3] = "-"; - argv[4] = url; - argv[5] = NULL; - - if (debug) - fprintf(stderr, "Getting %s\n", url); - - return open_child(PATH_FTP, argv); -} - -int -open_file(char *method, char *file) -{ - char *url; - - if ((method == NULL) || (strcmp(method, "file") == 0)) - return(open(file, O_RDONLY)); - if ((strcmp(method, "http") == 0) || - strcmp(method, "ftp") == 0) { - int i; - - asprintf(&url, "%s://%s", method, file); - if (url == NULL) - return(-1); - i = fileget(url); - free(url); - return(i); - } else if (strcmp(method, "exec") == 0) { - char **ap, **argv; - int len, i, oerrno; - - len = strlen(file); - argv = malloc(len * sizeof(char *)); - if (argv == NULL) - errx(1, "malloc failed"); - for (ap = argv; ap < &argv[len - 1] && - (*ap = strsep(&file, " \t")) != NULL;) { - if (**ap != '\0') - ap++; - } - *ap = NULL; - i = open_child(argv[0], argv); - oerrno = errno; - free(argv); - errno = oerrno; - return(i); - } - errx(1, "Unknown method %s", method); - return(-1); /* NOTREACHED */ -} - -/* - * fix_quoted_colons walks through a buffer returned by cgetent. We - * look for quoted strings, to escape colons (:) in quoted strings for - * getcap by replacing them with \C so cgetstr() deals with it correctly - * without having to see the \C bletchery in a configuration file that - * needs to have urls in it. Frees the buffer passed to it, passes back - * another larger one, with can be used with cgetxxx(), like the original - * buffer, it must be freed by the caller. - * This should really be a temporary fix until there is a sanctioned - * way to make getcap(3) handle quoted strings like this in a nicer - * way. - */ -char * -fix_quoted_colons(char *buf) -{ - int nbs = 0, i = 0, j = 0, in = 0; - char *newbuf, last; - - nbs = strlen(buf) + 128; - newbuf = malloc(nbs); - if (newbuf == NULL) - return NULL; - last = '\0'; - for (i = 0; i < strlen(buf); i++) { - switch (buf[i]) { - case ':': - if (in) { - newbuf[j++] = '\\'; - newbuf[j++] = 'C'; - } else - newbuf[j++] = buf[i]; - break; - case '"': - if (last != '\\') - in = !in; - newbuf[j++] = buf[i]; - break; - default: - newbuf[j++] = buf[i]; - } - if (j == nbs) { - char *tmp; - - nbs += 128; - tmp = realloc(newbuf, nbs); - if (tmp == NULL) - errx(1, "malloc failed"); - newbuf = tmp; - } - } - free(buf); - newbuf[j] = '\0'; - return(newbuf); -} - -void -do_message(FILE *sdc, char *msg) -{ - int i, n, bu = 0, bs = 0, len; - char *buf = NULL, last; - - len = strlen(msg); - if (msg[0] == '"' && msg[len - 1] == '"') { - /* quoted msg, escape newlines and send it out */ - msg[len - 1] = '\0'; - buf = msg+1; - bu = len - 2; - goto sendit; - } else { - int fd; - - /* - * message isn't quoted - try to open a local - * file and read the message from it. - */ - fd = open(msg, O_RDONLY); - if (fd == -1) - err(1, "Can't open message from %s", msg); - for (;;) { - if (bu == bs) { - char *tmp; - - tmp = realloc(buf, bs + 8192); - if (tmp == NULL) - errx(1, "malloc failed"); - bs += 8192; - buf = tmp; - } - - n = read(fd, buf + bu, bs - bu); - if (n == 0) { - goto sendit; - } else if (n == -1) { - err(1, "Can't read from %s", msg); - } else - bu += n; - } - buf[bu]='\0'; - } - sendit: - fprintf(sdc, ";\""); - last = '\0'; - for (i = 0; i < bu; i++) { - /* handle escaping the things spamd wants */ - switch (buf[i]) { - case 'n': - if (last == '\\') - fprintf(sdc, "\\\\n"); - else - fputc('n', sdc); - last = '\0'; - break; - case '\n': - fprintf(sdc, "\\n"); - last = '\0'; - break; - case '"': - fputc('\\', sdc); - /* fall through */ - default: - fputc(buf[i], sdc); - last = '\0'; - } - } - fputc('"', sdc); - if (bs != 0) - free(buf); -} - -/* retrieve a list from fd. add to blacklist bl */ -struct bl * -add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, int white) -{ - int i, n, start, bu = 0, bs = 0, serrno = 0; - char *buf = NULL; - - for (;;) { - /* read in gzf, then parse */ - if (bu == bs) { - char *tmp; - - tmp = realloc(buf, bs + 8192 + 1); - if (tmp == NULL) { - free(buf); - buf = NULL; - bs = 0; - serrno = errno; - goto bldone; - } - bs += 8192; - buf = tmp; - } - - n = gzread(gzf, buf + bu, bs - bu); - if (n == 0) - goto parse; - else if (n == -1) { - serrno = errno; - goto bldone; - } else - bu += n; - } - parse: - start = 0; - for (i = 0; i <= bu; i++) { - if (*blc == *bls) { - struct bl *tmp; - - *bls += 1024; - tmp = realloc(bl, *bls * sizeof(struct bl)); - if (tmp == NULL) { - *bls -= 1024; - serrno = errno; - goto bldone; - } - bl = tmp; - } - if (i == bu || buf[i] == '\n') { - buf[i] = '\0'; - if (parse_netblock(buf + start, - bl + *blc, bl + *blc + 1, white)) - *blc+=2; - start = i+1; - } - } - if (bu == 0) - errno = EIO; - bldone: - if (buf) - free(buf); - if (serrno) - errno = serrno; - return (bl); -} - -int -cmpbl(const void *a, const void *b) -{ - if (((struct bl *)a)->addr > ((struct bl *) b)->addr) - return(1); - if (((struct bl *)a)->addr < ((struct bl *) b)->addr) - return(-1); - return(0); -} - -/* - * collapse_blacklist takes blacklist/whitelist entries sorts, removes - * overlaps and whitelist portions, and returns netblocks to blacklist - * as lists of nonoverlapping cidr blocks suitable for feeding in - * printable form to pfctl or spamd. - */ -struct cidr ** -collapse_blacklist(struct bl *bl, int blc) -{ - int bs = 0, ws = 0, state=0, cli, i; - u_int32_t bstart = 0; - struct cidr **cl; - - if (blc == 0) - return(NULL); - cl = malloc((blc / 2) * sizeof(struct cidr)); - if (cl == NULL) { - return (NULL); - } - qsort(bl, blc, sizeof(struct bl), cmpbl); - cli = 0; - cl[cli] = NULL; - for (i = 0; i < blc;) { - int laststate = state; - u_int32_t addr = bl[i].addr; - - do { - bs += bl[i].b; - ws += bl[i].w; - i++; - } while (bl[i].addr == addr); - if (state == 1 && bs == 0) - state = 0; - else if (state == 0 && bs > 0) - state = 1; - if (ws > 0) - state = 0; - if (laststate == 0 && state == 1) { - /* start blacklist */ - bstart = addr; - } - if (laststate == 1 && state == 0) { - /* end blacklist */ - cl[cli++] = range2cidrlist(bstart, addr - 1); - cl[cli] = NULL; - } - laststate = state; - } - return (cl); -} - -int -configure_spamd(u_short dport, char *name, char *message, - struct cidr **blacklists) -{ - int lport = IPPORT_RESERVED - 1, s; - struct sockaddr_in sin; - FILE* sdc; - - s = rresvport(&lport); - if (s == -1) - return(-1); - memset(&sin, 0, sizeof sin); - sin.sin_len = sizeof(sin); - sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - sin.sin_family = AF_INET; - sin.sin_port = htons(dport); - if (connect(s, (struct sockaddr *)&sin, sizeof sin) == -1) - return(-1); - sdc = fdopen(s, "w"); - if (sdc == NULL) { - close(s); - return(-1); - } - fprintf(sdc, "%s", name); - do_message(sdc, message); - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - while (b->addr != 0) { - fprintf(sdc, ";%s/%u", atop(b->addr), (b->bits)); - b++; - } - blacklists++; - } - fputc('\n', sdc); - fclose(sdc); - close(s); - return(0); -} - - -#ifndef IPFW -int -configure_pf(struct cidr **blacklists) -{ - char *argv[9]= {"pfctl", "-q", "-t", "spamd", "-T", "replace", - "-f" "-", NULL}; - static FILE *pf = NULL; - int pdes[2]; - - if (pf == NULL) { - if (pipe(pdes) != 0) - return(-1); - switch (fork()) { - case -1: - close(pdes[0]); - close(pdes[1]); - return(-1); - case 0: - /* child */ - close(pdes[1]); - if (pdes[0] != STDIN_FILENO) { - dup2(pdes[0], STDIN_FILENO); - close(pdes[0]); - } - execvp(PATH_PFCTL, argv); - _exit(1); - } - - /* parent */ - close(pdes[0]); - pf = fdopen(pdes[1], "w"); - if (pf == NULL) { - close(pdes[1]); - return(-1); - } - } - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - - while (b->addr != 0) { - fprintf(pf, "%s/%u\n", atop(b->addr), (b->bits)); - b++; - } - blacklists++; - } - return(0); -} -#else -int -configure_pf(struct cidr **blacklists) -{ - static int s = -1; - ipfw_table_entry ent; - - if (s == -1) - s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); - if (s < 0) - { - err(1, "IPFW socket unavailable"); - return(-1); - } - - /* flush the table */ - ent.tbl = tabno; - if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) - { - err(1, "IPFW setsockopt(IP_FW_TABLE_FLUSH)"); - return(-1); - } - - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - - while (b->addr != 0) { - /* add b to tabno */ - ent.tbl = tabno; - ent.masklen = b->bits; - ent.value = 0; - inet_aton(atop(b->addr), (struct in_addr *)&ent.addr); - if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) - { - err(1, "IPFW setsockopt(IP_FW_TABLE_ADD)"); - return(-1); - } - b++; - } - blacklists++; - } - - return(0); -} -#endif - -int -getlist(char ** db_array, char *name, struct blacklist *blist, - struct blacklist *blistnew) -{ - char *buf, *method, *file, *message; - int blc, bls, fd, black = 0; - struct bl *bl = NULL; - gzFile gzf; - - if (cgetent(&buf, db_array, name) != 0) - err(1, "Can't find \"%s\" in spamd config", name); - buf = fix_quoted_colons(buf); - if (cgetcap(buf, "black", ':') != NULL) { - /* use new list */ - black = 1; - blc = blistnew->blc; - bls = blistnew->bls; - bl = blistnew->bl; - } else if (cgetcap(buf, "white", ':') != NULL) { - /* apply to most recent blacklist */ - black = 0; - blc = blist->blc; - bls = blist->bls; - bl = blist->bl; - } else - errx(1, "Must have \"black\" or \"white\" in %s", name); - - switch (cgetstr(buf, "msg", &message)) { - case -1: - if (black) - errx(1, "No msg for blacklist \"%s\"", name); - break; - case -2: - errx(1, "malloc failed"); - } - - switch (cgetstr(buf, "method", &method)) { - case -1: - method = NULL; - break; - case -2: - errx(1, "malloc failed"); - } - - switch (cgetstr(buf, "file", &file)) { - case -1: - errx(1, "No file given for %slist %s", - black ? "black" : "white", name); - case -2: - errx(1, "malloc failed"); - default: - fd = open_file(method, file); - if (fd == -1) - err(1, "Can't open %s by %s method", - file, method ? method : "file"); - free(method); - free(file); - gzf = gzdopen(fd, "r"); - if (gzf == NULL) - errx(1, "gzdopen"); - } - bl = add_blacklist(bl, &blc, &bls, gzf, !black); - gzclose(gzf); - if (bl == NULL) { - warn("Could not add %slist %s", black ? "black" : "white", - name); - return(0); - } - if (black) { - blistnew->message = message; - blistnew->name = name; - blistnew->black = black; - blistnew->bl = bl; - blistnew->blc = blc; - blistnew->bls = bls; - } else { - /* whitelist applied to last active blacklist */ - blist->bl = bl; - blist->blc = blc; - blist->bls = bls; - } - if (debug) - fprintf(stderr, "%slist %s %d entries\n", - black ? "black" : "white", name, blc / 2); - return(black); -} - -int -main(int argc, char *argv[]) -{ - size_t dbs, dbc, blc, bls, black, white; - char **db_array, *buf, *name; - struct blacklist *blists; - struct servent *ent; - int i, ch; - -#ifndef IPFW - while ((ch = getopt(argc, argv, "nd")) != -1) { -#else - while ((ch = getopt(argc, argv, "ndt:")) != -1) { -#endif - switch (ch) { - case 'n': - dryrun = 1; - break; - case 'd': - debug = 1; - break; -#ifdef IPFW - case 't': - tabno = atoi(optarg); - break; -#endif - default: - break; - } - } - - if ((ent = getservbyname("spamd-cfg", "tcp")) == NULL) - errx(1, "cannot find service \"spamd-cfg\" in /etc/services"); - ent->s_port = ntohs(ent->s_port); - - dbs = argc + 2; - dbc = 0; - db_array = calloc(dbs, sizeof(char *)); - if (db_array == NULL) - errx(1, "malloc failed"); - - db_array[dbc]= PATH_SPAMD_CONF; - dbc++; - for (i = 1; i < argc; i++) - db_array[dbc++] = argv[i]; - - blists = NULL; - blc = bls = 0; - if (cgetent(&buf, db_array, "all") != 0) - err(1, "Can't find \"all\" in spamd config"); - name = strsep(&buf, ": \t"); /* skip "all" at start */ - blc = 0; - while ((name = strsep(&buf, ": \t")) != NULL) { - if (*name) { - /* extract config in order specified in "all" tag */ - if (blc == bls) { - struct blacklist *tmp; - - bls += 1024; - tmp = realloc(blists, - bls * sizeof(struct blacklist)); - if (tmp == NULL) - errx(1, "malloc failed"); - blists = tmp; - } - if (blc == 0) - black = white = 0; - else { - white = blc - 1; - black = blc; - } - memset(&blists[black], 0, sizeof(struct blacklist)); - blc += getlist(db_array, name, &blists[white], - &blists[black]); - } - } - for (i = 0; i < blc; i++) { - struct cidr **cidrs, **tmp; - - if (blists[i].blc > 0) { - cidrs = collapse_blacklist(blists[i].bl, - blists[i].blc); - if (cidrs == NULL) - errx(1, "malloc failed"); - if (dryrun) - continue; - - if (configure_spamd(ent->s_port, blists[i].name, - blists[i].message, cidrs) == -1) - err(1, "Can't connect to spamd on port %d", - ent->s_port); - if (configure_pf(cidrs) == -1) - err(1, "pfctl failed"); - tmp = cidrs; - while (*tmp != NULL) - free(*tmp++); - free(cidrs); - free(blists[i].bl); - } - } - return (0); -} diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.bak /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.bak --- /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.bak Fri Feb 2 10:40:32 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.bak Thu Jan 1 03:00:00 1970 @@ -1,924 +0,0 @@ -/* $OpenBSD: spamd-setup.c,v 1.21 2005/03/02 16:45:30 dhartmei Exp $ */ - -/* - * Copyright (c) 2003 Bob Beck. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef __OpenBSD__ -#include -#endif -#include -#include - -#ifdef IPFW -#include -#include -#endif - -#define PATH_FTP "/usr/bin/ftp" -#define PATH_PFCTL "%%LOCAL_PFCTL%%" -#define PATH_SPAMD_CONF "%%LOCAL_SPAMD_CONF%%" -#define SPAMD_ARG_MAX 256 /* max # of args to an exec */ - -struct cidr { - u_int32_t addr; - u_int8_t bits; -}; - -struct bl { - u_int32_t addr; - int8_t b; - int8_t w; -}; - -struct blacklist { - char *name; - char *message; - struct bl *bl; - size_t blc, bls; - u_int8_t black; - int count; -}; - -u_int32_t imask(u_int8_t b); -u_int8_t maxblock(u_int32_t addr, u_int8_t bits); -u_int8_t maxdiff(u_int32_t a, u_int32_t b); -struct cidr *range2cidrlist(u_int32_t start, u_int32_t end); -void cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end); -char *atop(u_int32_t addr); -u_int32_t ptoa(char *cp); -int parse_netblock(char *buf, struct bl *start, struct bl *end, - int white); -int open_child(char *file, char **argv); -int fileget(char *url); -int open_file(char *method, char *file); -char *fix_quoted_colons(char *buf); -void do_message(FILE *sdc, char *msg); -struct bl *add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, - int white); -int cmpbl(const void *a, const void *b); -struct cidr **collapse_blacklist(struct bl *bl, int blc); -int configure_spamd(u_short dport, char *name, char *message, - struct cidr **blacklists); -int configure_pf(struct cidr **blacklists); -int getlist(char ** db_array, char *name, struct blacklist *blist, - struct blacklist *blistnew); - -int debug; -int dryrun; - -#ifdef IPFW -int tabno=2; -#endif - - -u_int32_t -imask(u_int8_t b) -{ - u_int32_t j = 0; - int i; - - for (i = 31; i > 31 - b; --i) - j |= (1 << i); - return(j); -} - -u_int8_t -maxblock(u_int32_t addr, u_int8_t bits) -{ - while (bits > 0) { - u_int32_t m = imask(bits - 1); - - if ((addr & m) != addr) - return (bits); - bits--; - } - return(bits); -} - -u_int8_t -maxdiff(u_int32_t a, u_int32_t b) -{ - u_int8_t bits = 0; - - b++; - while (bits < 32) { - u_int32_t m = imask(bits); - - if ((a & m) != (b & m)) - return (bits); - bits++; - } - return(bits); -} - -struct cidr * -range2cidrlist(u_int32_t start, u_int32_t end) -{ - struct cidr *list = NULL; - size_t cs = 0, cu = 0; - - while (end >= start) { - u_int8_t maxsize = maxblock(start, 32); - u_int8_t diff = maxdiff(start, end); - - maxsize = MAX(maxsize, diff); - if (cs == cu) { - struct cidr *tmp; - - tmp = realloc(list, (cs + 32) * sizeof(struct cidr)); - if (tmp == NULL) - errx(1, "malloc failed"); - list = tmp; - cs += 32; - } - list[cu].addr = start; - list[cu].bits = maxsize; - cu++; - list[cu].addr = 0; - list[cu].bits = 0; - start = start + (1 << (32 - maxsize)); - } - return(list); -} - -void -cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end) -{ - *start = cidr.addr; - *end = cidr.addr + (1 << (32 - cidr.bits)) - 1; -} - -char * -atop(u_int32_t addr) -{ - struct in_addr in; - - memset(&in, 0, sizeof(in)); - in.s_addr = htonl(addr); - return(inet_ntoa(in)); -} - -int -parse_netblock(char *buf, struct bl *start, struct bl *end, int white) -{ - char astring[16], astring2[16]; - unsigned maskbits; - - /* skip leading spaces */ - while (*buf == ' ') - buf++; - /* bail if it's a comment */ - if (*buf == '#') - return(0); - /* otherwise, look for a netblock of some sort */ - if (sscanf(buf, "%15[^/]/%u", astring, &maskbits) == 2) { - /* looks like a cidr */ - struct cidr c; - - memset(&c.addr, 0, sizeof(c.addr)); - if (inet_net_pton(AF_INET, astring, &c.addr, sizeof(c.addr)) - == -1) - return(0); - c.addr = ntohl(c.addr); - if (maskbits > 32) - return(0); - c.bits = maskbits; - cidr2range(c, &start->addr, &end->addr); - end->addr += 1; - } else if (sscanf(buf, "%15[0123456789.]%*[ -]%15[0123456789.]", - astring, astring2) == 2) { - /* looks like start - end */ - memset(&start->addr, 0, sizeof(start->addr)); - memset(&end->addr, 0, sizeof(end->addr)); - if (inet_net_pton(AF_INET, astring, &start->addr, - sizeof(start->addr)) == -1) - return(0); - start->addr = ntohl(start->addr); - if (inet_net_pton(AF_INET, astring2, &end->addr, - sizeof(end->addr)) == -1) - return(0); - end->addr = ntohl(end->addr) + 1; - if (start > end) - return(0); - } else if (sscanf(buf, "%15[0123456789.]", astring) == 1) { - /* just a single address */ - memset(&start->addr, 0, sizeof(start->addr)); - if (inet_net_pton(AF_INET, astring, &start->addr, - sizeof(start->addr)) == -1) - return(0); - start->addr = ntohl(start->addr); - end->addr = start->addr + 1; - } else - return(0); - - if (white) { - start->b = 0; - start->w = 1; - end->b = 0; - end->w = -1; - } else { - start->b = 1; - start->w = 0; - end->b = -1; - end->w = 0; - } - return(1); -} - -int -open_child(char *file, char **argv) -{ - int pdes[2]; - - if (pipe(pdes) != 0) - return(-1); - switch (fork()) { - case -1: - close(pdes[0]); - close(pdes[1]); - return(-1); - case 0: - /* child */ - close(pdes[0]); - if (pdes[1] != STDOUT_FILENO) { - dup2(pdes[1], STDOUT_FILENO); - close(pdes[1]); - } - execvp(file, argv); - _exit(1); - } - - /* parent */ - close(pdes[1]); - return(pdes[0]); -} - -int -fileget(char *url) -{ - char *argv[6]; - - argv[0] = "ftp"; - argv[1] = "-V"; - argv[2] = "-o"; - argv[3] = "-"; - argv[4] = url; - argv[5] = NULL; - - if (debug) - fprintf(stderr, "Getting %s\n", url); - - return open_child(PATH_FTP, argv); -} - -int -open_file(char *method, char *file) -{ - char *url; - - if ((method == NULL) || (strcmp(method, "file") == 0)) - return(open(file, O_RDONLY)); - if ((strcmp(method, "http") == 0) || - strcmp(method, "ftp") == 0) { - int i; - - asprintf(&url, "%s://%s", method, file); - if (url == NULL) - return(-1); - i = fileget(url); - free(url); - return(i); - } else if (strcmp(method, "exec") == 0) { - char **ap, **argv; - int len, i, oerrno; - - len = strlen(file); - argv = malloc(len * sizeof(char *)); - if (argv == NULL) - errx(1, "malloc failed"); - for (ap = argv; ap < &argv[len - 1] && - (*ap = strsep(&file, " \t")) != NULL;) { - if (**ap != '\0') - ap++; - } - *ap = NULL; - i = open_child(argv[0], argv); - oerrno = errno; - free(argv); - errno = oerrno; - return(i); - } - errx(1, "Unknown method %s", method); - return(-1); /* NOTREACHED */ -} - -/* - * fix_quoted_colons walks through a buffer returned by cgetent. We - * look for quoted strings, to escape colons (:) in quoted strings for - * getcap by replacing them with \C so cgetstr() deals with it correctly - * without having to see the \C bletchery in a configuration file that - * needs to have urls in it. Frees the buffer passed to it, passes back - * another larger one, with can be used with cgetxxx(), like the original - * buffer, it must be freed by the caller. - * This should really be a temporary fix until there is a sanctioned - * way to make getcap(3) handle quoted strings like this in a nicer - * way. - */ -char * -fix_quoted_colons(char *buf) -{ - int nbs = 0, i = 0, j = 0, in = 0; - char *newbuf, last; - - nbs = strlen(buf) + 128; - newbuf = malloc(nbs); - if (newbuf == NULL) - return NULL; - last = '\0'; - for (i = 0; i < strlen(buf); i++) { - switch (buf[i]) { - case ':': - if (in) { - newbuf[j++] = '\\'; - newbuf[j++] = 'C'; - } else - newbuf[j++] = buf[i]; - break; - case '"': - if (last != '\\') - in = !in; - newbuf[j++] = buf[i]; - break; - default: - newbuf[j++] = buf[i]; - } - if (j == nbs) { - char *tmp; - - nbs += 128; - tmp = realloc(newbuf, nbs); - if (tmp == NULL) - errx(1, "malloc failed"); - newbuf = tmp; - } - } - free(buf); - newbuf[j] = '\0'; - return(newbuf); -} - -void -do_message(FILE *sdc, char *msg) -{ - int i, n, bu = 0, bs = 0, len; - char *buf = NULL, last; - - len = strlen(msg); - if (msg[0] == '"' && msg[len - 1] == '"') { - /* quoted msg, escape newlines and send it out */ - msg[len - 1] = '\0'; - buf = msg+1; - bu = len - 2; - goto sendit; - } else { - int fd; - - /* - * message isn't quoted - try to open a local - * file and read the message from it. - */ - fd = open(msg, O_RDONLY); - if (fd == -1) - err(1, "Can't open message from %s", msg); - for (;;) { - if (bu == bs) { - char *tmp; - - tmp = realloc(buf, bs + 8192); - if (tmp == NULL) - errx(1, "malloc failed"); - bs += 8192; - buf = tmp; - } - - n = read(fd, buf + bu, bs - bu); - if (n == 0) { - goto sendit; - } else if (n == -1) { - err(1, "Can't read from %s", msg); - } else - bu += n; - } - buf[bu]='\0'; - } - sendit: - fprintf(sdc, ";\""); - last = '\0'; - for (i = 0; i < bu; i++) { - /* handle escaping the things spamd wants */ - switch (buf[i]) { - case 'n': - if (last == '\\') - fprintf(sdc, "\\\\n"); - else - fputc('n', sdc); - last = '\0'; - break; - case '\n': - fprintf(sdc, "\\n"); - last = '\0'; - break; - case '"': - fputc('\\', sdc); - /* fall through */ - default: - fputc(buf[i], sdc); - last = '\0'; - } - } - fputc('"', sdc); - if (bs != 0) - free(buf); -} - -/* retrieve a list from fd. add to blacklist bl */ -struct bl * -add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, int white) -{ - int i, n, start, bu = 0, bs = 0, serrno = 0; - char *buf = NULL; - - for (;;) { - /* read in gzf, then parse */ - if (bu == bs) { - char *tmp; - - tmp = realloc(buf, bs + 8192 + 1); - if (tmp == NULL) { - free(buf); - buf = NULL; - bs = 0; - serrno = errno; - goto bldone; - } - bs += 8192; - buf = tmp; - } - - n = gzread(gzf, buf + bu, bs - bu); - if (n == 0) - goto parse; - else if (n == -1) { - serrno = errno; - goto bldone; - } else - bu += n; - } - parse: - start = 0; - for (i = 0; i <= bu; i++) { - if (*blc == *bls) { - struct bl *tmp; - - *bls += 1024; - tmp = realloc(bl, *bls * sizeof(struct bl)); - if (tmp == NULL) { - *bls -= 1024; - serrno = errno; - goto bldone; - } - bl = tmp; - } - if (i == bu || buf[i] == '\n') { - buf[i] = '\0'; - if (parse_netblock(buf + start, - bl + *blc, bl + *blc + 1, white)) - *blc+=2; - start = i+1; - } - } - if (bu == 0) - errno = EIO; - bldone: - if (buf) - free(buf); - if (serrno) - errno = serrno; - return (bl); -} - -int -cmpbl(const void *a, const void *b) -{ - if (((struct bl *)a)->addr > ((struct bl *) b)->addr) - return(1); - if (((struct bl *)a)->addr < ((struct bl *) b)->addr) - return(-1); - return(0); -} - -/* - * collapse_blacklist takes blacklist/whitelist entries sorts, removes - * overlaps and whitelist portions, and returns netblocks to blacklist - * as lists of nonoverlapping cidr blocks suitable for feeding in - * printable form to pfctl or spamd. - */ -struct cidr ** -collapse_blacklist(struct bl *bl, int blc) -{ - int bs = 0, ws = 0, state=0, cli, i; - u_int32_t bstart = 0; - struct cidr **cl; - - if (blc == 0) - return(NULL); - cl = malloc((blc / 2) * sizeof(struct cidr)); - if (cl == NULL) { - return (NULL); - } - qsort(bl, blc, sizeof(struct bl), cmpbl); - cli = 0; - cl[cli] = NULL; - for (i = 0; i < blc;) { - int laststate = state; - u_int32_t addr = bl[i].addr; - - do { - bs += bl[i].b; - ws += bl[i].w; - i++; - } while (bl[i].addr == addr); - if (state == 1 && bs == 0) - state = 0; - else if (state == 0 && bs > 0) - state = 1; - if (ws > 0) - state = 0; - if (laststate == 0 && state == 1) { - /* start blacklist */ - bstart = addr; - } - if (laststate == 1 && state == 0) { - /* end blacklist */ - cl[cli++] = range2cidrlist(bstart, addr - 1); - cl[cli] = NULL; - } - laststate = state; - } - return (cl); -} - -int -configure_spamd(u_short dport, char *name, char *message, - struct cidr **blacklists) -{ - int lport = IPPORT_RESERVED - 1, s; - struct sockaddr_in sin; - FILE* sdc; - - s = rresvport(&lport); - if (s == -1) - return(-1); - memset(&sin, 0, sizeof sin); - sin.sin_len = sizeof(sin); - sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - sin.sin_family = AF_INET; - sin.sin_port = htons(dport); - if (connect(s, (struct sockaddr *)&sin, sizeof sin) == -1) - return(-1); - sdc = fdopen(s, "w"); - if (sdc == NULL) { - close(s); - return(-1); - } - fprintf(sdc, "%s", name); - do_message(sdc, message); - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - while (b->addr != 0) { - fprintf(sdc, ";%s/%u", atop(b->addr), (b->bits)); - b++; - } - blacklists++; - } - fputc('\n', sdc); - fclose(sdc); - close(s); - return(0); -} - - -#ifndef IPFW -int -configure_pf(struct cidr **blacklists) -{ - char *argv[9]= {"pfctl", "-q", "-t", "spamd", "-T", "replace", - "-f" "-", NULL}; - static FILE *pf = NULL; - int pdes[2]; - - if (pf == NULL) { - if (pipe(pdes) != 0) - return(-1); - switch (fork()) { - case -1: - close(pdes[0]); - close(pdes[1]); - return(-1); - case 0: - /* child */ - close(pdes[1]); - if (pdes[0] != STDIN_FILENO) { - dup2(pdes[0], STDIN_FILENO); - close(pdes[0]); - } - execvp(PATH_PFCTL, argv); - _exit(1); - } - - /* parent */ - close(pdes[0]); - pf = fdopen(pdes[1], "w"); - if (pf == NULL) { - close(pdes[1]); - return(-1); - } - } - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - - while (b->addr != 0) { - fprintf(pf, "%s/%u\n", atop(b->addr), (b->bits)); - b++; - } - blacklists++; - } - return(0); -} -#else -int -configure_pf(struct cidr **blacklists) -{ - static int s = -1; - ipfw_table_entry ent; - - if (s == -1) - s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); - if (s < 0) - { - err(1, "IPFW socket unavailable"); - return(-1); - } - - /* flush the table */ - ent.tbl = tabno; - if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) - { - err(1, "IPFW setsockopt(IP_FW_TABLE_FLUSH)"); - return(-1); - } - - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - - while (b->addr != 0) { - /* add b to tabno */ - ent.tbl = tabno; - ent.masklen = b->bits; - ent.value = 0; - inet_aton(atop(b->addr), (struct in_addr *)&ent.addr); - if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) - { - err(1, "IPFW setsockopt(IP_FW_TABLE_ADD)"); - return(-1); - } - b++; - } - blacklists++; - } - - return(0); -} -#endif - -int -getlist(char ** db_array, char *name, struct blacklist *blist, - struct blacklist *blistnew) -{ - char *buf, *method, *file, *message; - int blc, bls, fd, black = 0; - struct bl *bl = NULL; - gzFile gzf; - - if (cgetent(&buf, db_array, name) != 0) - err(1, "Can't find \"%s\" in spamd config", name); - buf = fix_quoted_colons(buf); - if (cgetcap(buf, "black", ':') != NULL) { - /* use new list */ - black = 1; - blc = blistnew->blc; - bls = blistnew->bls; - bl = blistnew->bl; - } else if (cgetcap(buf, "white", ':') != NULL) { - /* apply to most recent blacklist */ - black = 0; - blc = blist->blc; - bls = blist->bls; - bl = blist->bl; - } else - errx(1, "Must have \"black\" or \"white\" in %s", name); - - switch (cgetstr(buf, "msg", &message)) { - case -1: - if (black) - errx(1, "No msg for blacklist \"%s\"", name); - break; - case -2: - errx(1, "malloc failed"); - } - - switch (cgetstr(buf, "method", &method)) { - case -1: - method = NULL; - break; - case -2: - errx(1, "malloc failed"); - } - - switch (cgetstr(buf, "file", &file)) { - case -1: - errx(1, "No file given for %slist %s", - black ? "black" : "white", name); - case -2: - errx(1, "malloc failed"); - default: - fd = open_file(method, file); - if (fd == -1) - err(1, "Can't open %s by %s method", - file, method ? method : "file"); - free(method); - free(file); - gzf = gzdopen(fd, "r"); - if (gzf == NULL) - errx(1, "gzdopen"); - } - bl = add_blacklist(bl, &blc, &bls, gzf, !black); - gzclose(gzf); - if (bl == NULL) { - warn("Could not add %slist %s", black ? "black" : "white", - name); - return(0); - } - if (black) { - blistnew->message = message; - blistnew->name = name; - blistnew->black = black; - blistnew->bl = bl; - blistnew->blc = blc; - blistnew->bls = bls; - } else { - /* whitelist applied to last active blacklist */ - blist->bl = bl; - blist->blc = blc; - blist->bls = bls; - } - if (debug) - fprintf(stderr, "%slist %s %d entries\n", - black ? "black" : "white", name, blc / 2); - return(black); -} - -int -main(int argc, char *argv[]) -{ - size_t dbs, dbc, blc, bls, black, white; - char **db_array, *buf, *name; - struct blacklist *blists; - struct servent *ent; - int i, ch; - -#ifndef IPFW - while ((ch = getopt(argc, argv, "nd")) != -1) { -#else - while ((ch = getopt(argc, argv, "ndt:")) != -1) { -#endif - switch (ch) { - case 'n': - dryrun = 1; - break; - case 'd': - debug = 1; - break; -#ifdef IPFW - case 't': - tabno = atoi(optarg); - break; -#endif - default: - break; - } - } - - if ((ent = getservbyname("spamd-cfg", "tcp")) == NULL) - errx(1, "cannot find service \"spamd-cfg\" in /etc/services"); - ent->s_port = ntohs(ent->s_port); - - dbs = argc + 2; - dbc = 0; - db_array = calloc(dbs, sizeof(char *)); - if (db_array == NULL) - errx(1, "malloc failed"); - - db_array[dbc]= PATH_SPAMD_CONF; - dbc++; - for (i = 1; i < argc; i++) - db_array[dbc++] = argv[i]; - - blists = NULL; - blc = bls = 0; - if (cgetent(&buf, db_array, "all") != 0) - err(1, "Can't find \"all\" in spamd config"); - name = strsep(&buf, ": \t"); /* skip "all" at start */ - blc = 0; - while ((name = strsep(&buf, ": \t")) != NULL) { - if (*name) { - /* extract config in order specified in "all" tag */ - if (blc == bls) { - struct blacklist *tmp; - - bls += 1024; - tmp = realloc(blists, - bls * sizeof(struct blacklist)); - if (tmp == NULL) - errx(1, "malloc failed"); - blists = tmp; - } - if (blc == 0) - black = white = 0; - else { - white = blc - 1; - black = blc; - } - memset(&blists[black], 0, sizeof(struct blacklist)); - blc += getlist(db_array, name, &blists[white], - &blists[black]); - } - } - for (i = 0; i < blc; i++) { - struct cidr **cidrs, **tmp; - - if (blists[i].blc > 0) { - cidrs = collapse_blacklist(blists[i].bl, - blists[i].blc); - if (cidrs == NULL) - errx(1, "malloc failed"); - if (dryrun) - continue; - - if (configure_spamd(ent->s_port, blists[i].name, - blists[i].message, cidrs) == -1) - err(1, "Can't connect to spamd on port %d", - ent->s_port); - if (configure_pf(cidrs) == -1) - err(1, "pfctl failed"); - tmp = cidrs; - while (*tmp != NULL) - free(*tmp++); - free(cidrs); - free(blists[i].bl); - } - } - return (0); -} diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.orig /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.orig --- /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.orig Tue Apr 12 20:18:59 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.c.orig Thu Jan 1 03:00:00 1970 @@ -1,859 +0,0 @@ -/* $OpenBSD: spamd-setup.c,v 1.21 2005/03/02 16:45:30 dhartmei Exp $ */ - -/* - * Copyright (c) 2003 Bob Beck. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef __OpenBSD__ -#include -#endif -#include -#include - -#define PATH_FTP "/usr/bin/ftp" -#define PATH_PFCTL "%%LOCAL_PFCTL%%" -#define PATH_SPAMD_CONF "%%LOCAL_SPAMD_CONF%%" -#define SPAMD_ARG_MAX 256 /* max # of args to an exec */ - -struct cidr { - u_int32_t addr; - u_int8_t bits; -}; - -struct bl { - u_int32_t addr; - int8_t b; - int8_t w; -}; - -struct blacklist { - char *name; - char *message; - struct bl *bl; - size_t blc, bls; - u_int8_t black; - int count; -}; - -u_int32_t imask(u_int8_t b); -u_int8_t maxblock(u_int32_t addr, u_int8_t bits); -u_int8_t maxdiff(u_int32_t a, u_int32_t b); -struct cidr *range2cidrlist(u_int32_t start, u_int32_t end); -void cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end); -char *atop(u_int32_t addr); -u_int32_t ptoa(char *cp); -int parse_netblock(char *buf, struct bl *start, struct bl *end, - int white); -int open_child(char *file, char **argv); -int fileget(char *url); -int open_file(char *method, char *file); -char *fix_quoted_colons(char *buf); -void do_message(FILE *sdc, char *msg); -struct bl *add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, - int white); -int cmpbl(const void *a, const void *b); -struct cidr **collapse_blacklist(struct bl *bl, int blc); -int configure_spamd(u_short dport, char *name, char *message, - struct cidr **blacklists); -int configure_pf(struct cidr **blacklists); -int getlist(char ** db_array, char *name, struct blacklist *blist, - struct blacklist *blistnew); - -int debug; -int dryrun; - -u_int32_t -imask(u_int8_t b) -{ - u_int32_t j = 0; - int i; - - for (i = 31; i > 31 - b; --i) - j |= (1 << i); - return(j); -} - -u_int8_t -maxblock(u_int32_t addr, u_int8_t bits) -{ - while (bits > 0) { - u_int32_t m = imask(bits - 1); - - if ((addr & m) != addr) - return (bits); - bits--; - } - return(bits); -} - -u_int8_t -maxdiff(u_int32_t a, u_int32_t b) -{ - u_int8_t bits = 0; - - b++; - while (bits < 32) { - u_int32_t m = imask(bits); - - if ((a & m) != (b & m)) - return (bits); - bits++; - } - return(bits); -} - -struct cidr * -range2cidrlist(u_int32_t start, u_int32_t end) -{ - struct cidr *list = NULL; - size_t cs = 0, cu = 0; - - while (end >= start) { - u_int8_t maxsize = maxblock(start, 32); - u_int8_t diff = maxdiff(start, end); - - maxsize = MAX(maxsize, diff); - if (cs == cu) { - struct cidr *tmp; - - tmp = realloc(list, (cs + 32) * sizeof(struct cidr)); - if (tmp == NULL) - errx(1, "malloc failed"); - list = tmp; - cs += 32; - } - list[cu].addr = start; - list[cu].bits = maxsize; - cu++; - list[cu].addr = 0; - list[cu].bits = 0; - start = start + (1 << (32 - maxsize)); - } - return(list); -} - -void -cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end) -{ - *start = cidr.addr; - *end = cidr.addr + (1 << (32 - cidr.bits)) - 1; -} - -char * -atop(u_int32_t addr) -{ - struct in_addr in; - - memset(&in, 0, sizeof(in)); - in.s_addr = htonl(addr); - return(inet_ntoa(in)); -} - -int -parse_netblock(char *buf, struct bl *start, struct bl *end, int white) -{ - char astring[16], astring2[16]; - unsigned maskbits; - - /* skip leading spaces */ - while (*buf == ' ') - buf++; - /* bail if it's a comment */ - if (*buf == '#') - return(0); - /* otherwise, look for a netblock of some sort */ - if (sscanf(buf, "%15[^/]/%u", astring, &maskbits) == 2) { - /* looks like a cidr */ - struct cidr c; - - memset(&c.addr, 0, sizeof(c.addr)); - if (inet_net_pton(AF_INET, astring, &c.addr, sizeof(c.addr)) - == -1) - return(0); - c.addr = ntohl(c.addr); - if (maskbits > 32) - return(0); - c.bits = maskbits; - cidr2range(c, &start->addr, &end->addr); - end->addr += 1; - } else if (sscanf(buf, "%15[0123456789.]%*[ -]%15[0123456789.]", - astring, astring2) == 2) { - /* looks like start - end */ - memset(&start->addr, 0, sizeof(start->addr)); - memset(&end->addr, 0, sizeof(end->addr)); - if (inet_net_pton(AF_INET, astring, &start->addr, - sizeof(start->addr)) == -1) - return(0); - start->addr = ntohl(start->addr); - if (inet_net_pton(AF_INET, astring2, &end->addr, - sizeof(end->addr)) == -1) - return(0); - end->addr = ntohl(end->addr) + 1; - if (start > end) - return(0); - } else if (sscanf(buf, "%15[0123456789.]", astring) == 1) { - /* just a single address */ - memset(&start->addr, 0, sizeof(start->addr)); - if (inet_net_pton(AF_INET, astring, &start->addr, - sizeof(start->addr)) == -1) - return(0); - start->addr = ntohl(start->addr); - end->addr = start->addr + 1; - } else - return(0); - - if (white) { - start->b = 0; - start->w = 1; - end->b = 0; - end->w = -1; - } else { - start->b = 1; - start->w = 0; - end->b = -1; - end->w = 0; - } - return(1); -} - -int -open_child(char *file, char **argv) -{ - int pdes[2]; - - if (pipe(pdes) != 0) - return(-1); - switch (fork()) { - case -1: - close(pdes[0]); - close(pdes[1]); - return(-1); - case 0: - /* child */ - close(pdes[0]); - if (pdes[1] != STDOUT_FILENO) { - dup2(pdes[1], STDOUT_FILENO); - close(pdes[1]); - } - execvp(file, argv); - _exit(1); - } - - /* parent */ - close(pdes[1]); - return(pdes[0]); -} - -int -fileget(char *url) -{ - char *argv[6]; - - argv[0] = "ftp"; - argv[1] = "-V"; - argv[2] = "-o"; - argv[3] = "-"; - argv[4] = url; - argv[5] = NULL; - - if (debug) - fprintf(stderr, "Getting %s\n", url); - - return open_child(PATH_FTP, argv); -} - -int -open_file(char *method, char *file) -{ - char *url; - - if ((method == NULL) || (strcmp(method, "file") == 0)) - return(open(file, O_RDONLY)); - if ((strcmp(method, "http") == 0) || - strcmp(method, "ftp") == 0) { - int i; - - asprintf(&url, "%s://%s", method, file); - if (url == NULL) - return(-1); - i = fileget(url); - free(url); - return(i); - } else if (strcmp(method, "exec") == 0) { - char **ap, **argv; - int len, i, oerrno; - - len = strlen(file); - argv = malloc(len * sizeof(char *)); - if (argv == NULL) - errx(1, "malloc failed"); - for (ap = argv; ap < &argv[len - 1] && - (*ap = strsep(&file, " \t")) != NULL;) { - if (**ap != '\0') - ap++; - } - *ap = NULL; - i = open_child(argv[0], argv); - oerrno = errno; - free(argv); - errno = oerrno; - return(i); - } - errx(1, "Unknown method %s", method); - return(-1); /* NOTREACHED */ -} - -/* - * fix_quoted_colons walks through a buffer returned by cgetent. We - * look for quoted strings, to escape colons (:) in quoted strings for - * getcap by replacing them with \C so cgetstr() deals with it correctly - * without having to see the \C bletchery in a configuration file that - * needs to have urls in it. Frees the buffer passed to it, passes back - * another larger one, with can be used with cgetxxx(), like the original - * buffer, it must be freed by the caller. - * This should really be a temporary fix until there is a sanctioned - * way to make getcap(3) handle quoted strings like this in a nicer - * way. - */ -char * -fix_quoted_colons(char *buf) -{ - int nbs = 0, i = 0, j = 0, in = 0; - char *newbuf, last; - - nbs = strlen(buf) + 128; - newbuf = malloc(nbs); - if (newbuf == NULL) - return NULL; - last = '\0'; - for (i = 0; i < strlen(buf); i++) { - switch (buf[i]) { - case ':': - if (in) { - newbuf[j++] = '\\'; - newbuf[j++] = 'C'; - } else - newbuf[j++] = buf[i]; - break; - case '"': - if (last != '\\') - in = !in; - newbuf[j++] = buf[i]; - break; - default: - newbuf[j++] = buf[i]; - } - if (j == nbs) { - char *tmp; - - nbs += 128; - tmp = realloc(newbuf, nbs); - if (tmp == NULL) - errx(1, "malloc failed"); - newbuf = tmp; - } - } - free(buf); - newbuf[j] = '\0'; - return(newbuf); -} - -void -do_message(FILE *sdc, char *msg) -{ - int i, n, bu = 0, bs = 0, len; - char *buf = NULL, last; - - len = strlen(msg); - if (msg[0] == '"' && msg[len - 1] == '"') { - /* quoted msg, escape newlines and send it out */ - msg[len - 1] = '\0'; - buf = msg+1; - bu = len - 2; - goto sendit; - } else { - int fd; - - /* - * message isn't quoted - try to open a local - * file and read the message from it. - */ - fd = open(msg, O_RDONLY); - if (fd == -1) - err(1, "Can't open message from %s", msg); - for (;;) { - if (bu == bs) { - char *tmp; - - tmp = realloc(buf, bs + 8192); - if (tmp == NULL) - errx(1, "malloc failed"); - bs += 8192; - buf = tmp; - } - - n = read(fd, buf + bu, bs - bu); - if (n == 0) { - goto sendit; - } else if (n == -1) { - err(1, "Can't read from %s", msg); - } else - bu += n; - } - buf[bu]='\0'; - } - sendit: - fprintf(sdc, ";\""); - last = '\0'; - for (i = 0; i < bu; i++) { - /* handle escaping the things spamd wants */ - switch (buf[i]) { - case 'n': - if (last == '\\') - fprintf(sdc, "\\\\n"); - else - fputc('n', sdc); - last = '\0'; - break; - case '\n': - fprintf(sdc, "\\n"); - last = '\0'; - break; - case '"': - fputc('\\', sdc); - /* fall through */ - default: - fputc(buf[i], sdc); - last = '\0'; - } - } - fputc('"', sdc); - if (bs != 0) - free(buf); -} - -/* retrieve a list from fd. add to blacklist bl */ -struct bl * -add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, int white) -{ - int i, n, start, bu = 0, bs = 0, serrno = 0; - char *buf = NULL; - - for (;;) { - /* read in gzf, then parse */ - if (bu == bs) { - char *tmp; - - tmp = realloc(buf, bs + 8192 + 1); - if (tmp == NULL) { - free(buf); - buf = NULL; - bs = 0; - serrno = errno; - goto bldone; - } - bs += 8192; - buf = tmp; - } - - n = gzread(gzf, buf + bu, bs - bu); - if (n == 0) - goto parse; - else if (n == -1) { - serrno = errno; - goto bldone; - } else - bu += n; - } - parse: - start = 0; - for (i = 0; i <= bu; i++) { - if (*blc == *bls) { - struct bl *tmp; - - *bls += 1024; - tmp = realloc(bl, *bls * sizeof(struct bl)); - if (tmp == NULL) { - *bls -= 1024; - serrno = errno; - goto bldone; - } - bl = tmp; - } - if (i == bu || buf[i] == '\n') { - buf[i] = '\0'; - if (parse_netblock(buf + start, - bl + *blc, bl + *blc + 1, white)) - *blc+=2; - start = i+1; - } - } - if (bu == 0) - errno = EIO; - bldone: - if (buf) - free(buf); - if (serrno) - errno = serrno; - return (bl); -} - -int -cmpbl(const void *a, const void *b) -{ - if (((struct bl *)a)->addr > ((struct bl *) b)->addr) - return(1); - if (((struct bl *)a)->addr < ((struct bl *) b)->addr) - return(-1); - return(0); -} - -/* - * collapse_blacklist takes blacklist/whitelist entries sorts, removes - * overlaps and whitelist portions, and returns netblocks to blacklist - * as lists of nonoverlapping cidr blocks suitable for feeding in - * printable form to pfctl or spamd. - */ -struct cidr ** -collapse_blacklist(struct bl *bl, int blc) -{ - int bs = 0, ws = 0, state=0, cli, i; - u_int32_t bstart = 0; - struct cidr **cl; - - if (blc == 0) - return(NULL); - cl = malloc((blc / 2) * sizeof(struct cidr)); - if (cl == NULL) { - return (NULL); - } - qsort(bl, blc, sizeof(struct bl), cmpbl); - cli = 0; - cl[cli] = NULL; - for (i = 0; i < blc;) { - int laststate = state; - u_int32_t addr = bl[i].addr; - - do { - bs += bl[i].b; - ws += bl[i].w; - i++; - } while (bl[i].addr == addr); - if (state == 1 && bs == 0) - state = 0; - else if (state == 0 && bs > 0) - state = 1; - if (ws > 0) - state = 0; - if (laststate == 0 && state == 1) { - /* start blacklist */ - bstart = addr; - } - if (laststate == 1 && state == 0) { - /* end blacklist */ - cl[cli++] = range2cidrlist(bstart, addr - 1); - cl[cli] = NULL; - } - laststate = state; - } - return (cl); -} - -int -configure_spamd(u_short dport, char *name, char *message, - struct cidr **blacklists) -{ - int lport = IPPORT_RESERVED - 1, s; - struct sockaddr_in sin; - FILE* sdc; - - s = rresvport(&lport); - if (s == -1) - return(-1); - memset(&sin, 0, sizeof sin); - sin.sin_len = sizeof(sin); - sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - sin.sin_family = AF_INET; - sin.sin_port = htons(dport); - if (connect(s, (struct sockaddr *)&sin, sizeof sin) == -1) - return(-1); - sdc = fdopen(s, "w"); - if (sdc == NULL) { - close(s); - return(-1); - } - fprintf(sdc, "%s", name); - do_message(sdc, message); - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - while (b->addr != 0) { - fprintf(sdc, ";%s/%u", atop(b->addr), (b->bits)); - b++; - } - blacklists++; - } - fputc('\n', sdc); - fclose(sdc); - close(s); - return(0); -} - - -int -configure_pf(struct cidr **blacklists) -{ - char *argv[9]= {"pfctl", "-q", "-t", "spamd", "-T", "replace", - "-f" "-", NULL}; - static FILE *pf = NULL; - int pdes[2]; - - if (pf == NULL) { - if (pipe(pdes) != 0) - return(-1); - switch (fork()) { - case -1: - close(pdes[0]); - close(pdes[1]); - return(-1); - case 0: - /* child */ - close(pdes[1]); - if (pdes[0] != STDIN_FILENO) { - dup2(pdes[0], STDIN_FILENO); - close(pdes[0]); - } - execvp(PATH_PFCTL, argv); - _exit(1); - } - - /* parent */ - close(pdes[0]); - pf = fdopen(pdes[1], "w"); - if (pf == NULL) { - close(pdes[1]); - return(-1); - } - } - while (*blacklists != NULL) { - struct cidr *b = *blacklists; - - while (b->addr != 0) { - fprintf(pf, "%s/%u\n", atop(b->addr), (b->bits)); - b++; - } - blacklists++; - } - return(0); -} - -int -getlist(char ** db_array, char *name, struct blacklist *blist, - struct blacklist *blistnew) -{ - char *buf, *method, *file, *message; - int blc, bls, fd, black = 0; - struct bl *bl = NULL; - gzFile gzf; - - if (cgetent(&buf, db_array, name) != 0) - err(1, "Can't find \"%s\" in spamd config", name); - buf = fix_quoted_colons(buf); - if (cgetcap(buf, "black", ':') != NULL) { - /* use new list */ - black = 1; - blc = blistnew->blc; - bls = blistnew->bls; - bl = blistnew->bl; - } else if (cgetcap(buf, "white", ':') != NULL) { - /* apply to most recent blacklist */ - black = 0; - blc = blist->blc; - bls = blist->bls; - bl = blist->bl; - } else - errx(1, "Must have \"black\" or \"white\" in %s", name); - - switch (cgetstr(buf, "msg", &message)) { - case -1: - if (black) - errx(1, "No msg for blacklist \"%s\"", name); - break; - case -2: - errx(1, "malloc failed"); - } - - switch (cgetstr(buf, "method", &method)) { - case -1: - method = NULL; - break; - case -2: - errx(1, "malloc failed"); - } - - switch (cgetstr(buf, "file", &file)) { - case -1: - errx(1, "No file given for %slist %s", - black ? "black" : "white", name); - case -2: - errx(1, "malloc failed"); - default: - fd = open_file(method, file); - if (fd == -1) - err(1, "Can't open %s by %s method", - file, method ? method : "file"); - free(method); - free(file); - gzf = gzdopen(fd, "r"); - if (gzf == NULL) - errx(1, "gzdopen"); - } - bl = add_blacklist(bl, &blc, &bls, gzf, !black); - gzclose(gzf); - if (bl == NULL) { - warn("Could not add %slist %s", black ? "black" : "white", - name); - return(0); - } - if (black) { - blistnew->message = message; - blistnew->name = name; - blistnew->black = black; - blistnew->bl = bl; - blistnew->blc = blc; - blistnew->bls = bls; - } else { - /* whitelist applied to last active blacklist */ - blist->bl = bl; - blist->blc = blc; - blist->bls = bls; - } - if (debug) - fprintf(stderr, "%slist %s %d entries\n", - black ? "black" : "white", name, blc / 2); - return(black); -} - -int -main(int argc, char *argv[]) -{ - size_t dbs, dbc, blc, bls, black, white; - char **db_array, *buf, *name; - struct blacklist *blists; - struct servent *ent; - int i, ch; - - while ((ch = getopt(argc, argv, "nd")) != -1) { - switch (ch) { - case 'n': - dryrun = 1; - break; - case 'd': - debug = 1; - break; - default: - break; - } - } - - if ((ent = getservbyname("spamd-cfg", "tcp")) == NULL) - errx(1, "cannot find service \"spamd-cfg\" in /etc/services"); - ent->s_port = ntohs(ent->s_port); - - dbs = argc + 2; - dbc = 0; - db_array = calloc(dbs, sizeof(char *)); - if (db_array == NULL) - errx(1, "malloc failed"); - - db_array[dbc]= PATH_SPAMD_CONF; - dbc++; - for (i = 1; i < argc; i++) - db_array[dbc++] = argv[i]; - - blists = NULL; - blc = bls = 0; - if (cgetent(&buf, db_array, "all") != 0) - err(1, "Can't find \"all\" in spamd config"); - name = strsep(&buf, ": \t"); /* skip "all" at start */ - blc = 0; - while ((name = strsep(&buf, ": \t")) != NULL) { - if (*name) { - /* extract config in order specified in "all" tag */ - if (blc == bls) { - struct blacklist *tmp; - - bls += 1024; - tmp = realloc(blists, - bls * sizeof(struct blacklist)); - if (tmp == NULL) - errx(1, "malloc failed"); - blists = tmp; - } - if (blc == 0) - black = white = 0; - else { - white = blc - 1; - black = blc; - } - memset(&blists[black], 0, sizeof(struct blacklist)); - blc += getlist(db_array, name, &blists[white], - &blists[black]); - } - } - for (i = 0; i < blc; i++) { - struct cidr **cidrs, **tmp; - - if (blists[i].blc > 0) { - cidrs = collapse_blacklist(blists[i].bl, - blists[i].blc); - if (cidrs == NULL) - errx(1, "malloc failed"); - if (dryrun) - continue; - - if (configure_spamd(ent->s_port, blists[i].name, - blists[i].message, cidrs) == -1) - err(1, "Can't connect to spamd on port %d", - ent->s_port); - if (configure_pf(cidrs) == -1) - err(1, "pfctl failed"); - tmp = cidrs; - while (*tmp != NULL) - free(*tmp++); - free(cidrs); - free(blists[i].bl); - } - } - return (0); -} Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamd-setup/spamd-setup.o and /usr/home/samm/spamd/work/spamd_3.7/spamd-setup/spamd-setup.o differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamdb/Makefile /usr/home/samm/spamd/work/spamd_3.7/spamdb/Makefile --- /usr/ports/mail/spamd/work/spamd_3.7/spamdb/Makefile Sun Oct 3 16:09:15 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamdb/Makefile Thu Jan 1 03:00:00 1970 @@ -1,9 +0,0 @@ -# $OpenBSD: Makefile,v 1.2 2004/02/27 19:41:39 david Exp $ - -PROG= spamdb -SRCS= spamdb.c -MAN= spamdb.8 - -CFLAGS+= -Wall -Wstrict-prototypes -ansi -I${.CURDIR}/../spamd - -.include Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb and /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb.8 /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb.8 --- /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb.8 Tue Apr 12 20:19:22 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb.8 Thu Jan 1 03:00:00 1970 @@ -1,132 +0,0 @@ -.\" $OpenBSD: spamdb.8,v 1.6 2005/03/12 23:31:04 jmc Exp $ -.\" -.\" Copyright (c) 2004 Bob Beck. All rights reserved. -.\" -.\" Permission to use, copy, modify, and distribute this software for any -.\" purpose with or without fee is hereby granted, provided that the above -.\" copyright notice and this permission notice appear in all copies. -.\" -.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -.\" -.Dd February 16, 2004 -.Dt SPAMDB 8 -.Os -.Sh NAME -.Nm spamdb -.Nd spamd database tool -.Sh SYNOPSIS -.Nm spamdb -.Op Fl Tt -.Op Fl a Ar key -.Op Fl d Ar key -.Sh DESCRIPTION -.Nm -manipulates the spamd database in -.Pa /var/db/spamd -used for -.Xr spamd 8 -greylisting. -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl a Ar key -Add or update an entry for "key". -Updates time last seen to now. -.It Fl d Ar key -Delete an entry for "key". -.It Fl T -Add or delete the key as a SPAMTRAP entry. -.It Fl t -Add or delete the key as a TRAPPED entry. -.El -.Ss DATABASE OUTPUT FORMAT -If invoked without any arguments, -.Nm -lists the contents of the database in a text format. -For SPAMTRAP entries the format is: -.Pp -.Dl type|mailaddress -.Pp -where -.Em type -will be SPAMTRAP and -.Em mailaddress -will be the email address for which any connections received by -.Xr spamd 8 -will be blacklisted if mail is sent to this address. -For TRAPPED entries the format is: -.Pp -.Dl type|ip|expire -.Pp -where -.Em type -will be TRAPPED, -.Em ip -will be the IP address blacklisted due to hitting a spamtrap, and -.Em expire -will be when the IP is due to be removed from the blacklist. -For GREY or WHITE entries, the format is: -.Pp -.Dl type|source ip|from|to|first|pass|expire|block|pass -.Pp -The fields are as follows: -.Pp -.Bl -tag -width "source ip" -offset indent -compact -.It type -.Em WHITE -if whitelisted or -.Em GREY -if greylisted -.It source ip -IP address the connection originated from -.It from -envelope-from address for -.Em GREY -(empty for -.Em WHITE -entries) -.It to -envelope-to address for -.Em GREY -(empty for -.Em WHITE -entries) -.It first -time the entry was first seen -.It pass -time the entry passed from being -.Em GREY -to being -.Em WHITE -.It expire -time the entry will expire and be removed from the database -.It block -number of times a corresponding connection received a temporary -failure from -.Xr spamd 8 -.It pass -number of times a corresponding connection has been seen to pass -to the real MTA by -.Xr spamlogd 8 -.El -.Pp -Note that times are in seconds since the Epoch, in the manner returned by -.Xr time 3 . -.Sh FILES -/var/db/spamd -.Sh SEE ALSO -.Xr spamd.conf 5 , -.Xr spamd 8 , -.Xr spamd-setup 8 -.Sh HISTORY -The -.Nm -command -appeared in -.Ox 3.5 . Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb.8.gz and /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb.8.gz differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb.c /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb.c --- /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb.c Tue Apr 12 20:20:44 2005 +++ /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb.c Thu Jan 1 03:00:00 1970 @@ -1,304 +0,0 @@ -/* $OpenBSD: spamdb.c,v 1.14 2005/03/11 23:45:45 beck Exp $ */ - -/* - * Copyright (c) 2004 Bob Beck. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "grey.h" - -/* things we may add/delete from the db */ -#define WHITE 0 -#define TRAPHIT 1 -#define SPAMTRAP 2 - -int -dbupdate(char *dbname, char *ip, int add, int type) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - struct gdata gd; - time_t now; - int r; - struct addrinfo hints, *res; - - now = time(NULL); - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDWR, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) - err(1, "cannot open %s for writing", dbname); - memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; - hints.ai_socktype = SOCK_DGRAM; /*dummy*/ - hints.ai_flags = AI_NUMERICHOST; - if (type == TRAPHIT || type == WHITE) { - if (getaddrinfo(ip, NULL, &hints, &res) != 0) { - warnx("invalid ip address %s", ip); - goto bad; - } - freeaddrinfo(res); - } - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(ip); - dbk.data = ip; - memset(&dbd, 0, sizeof(dbd)); - if (!add) { - /* remove entry */ - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) { - warn("db->get failed"); - goto bad; - } - if (r) { - warnx("no entry for %s", ip); - goto bad; - } else if (db->del(db, &dbk, 0)) { - warn("db->del failed"); - goto bad; - } - } else { - /* add or update entry */ - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) { - warn("db->get failed"); - goto bad; - } - if (r) { - int i; - - /* new entry */ - memset(&gd, 0, sizeof(gd)); - gd.first = now; - gd.bcount = 1; - switch (type) { - case WHITE: - gd.pass = now; - gd.expire = now + WHITEEXP; - break; - case TRAPHIT: - gd.expire = now + TRAPEXP; - gd.pcount = -1; - break; - case SPAMTRAP: - gd.expire = 0; - gd.pcount = -2; - /* ensure address is lower case*/ - for (i = 0; ip[i] != '\0'; i++) - if (isupper(ip[i])) - ip[i] = tolower(ip[i]); - break; - default: - errx(-1, "unknown type %d", type); - } - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(ip); - dbk.data = ip; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - if (r) { - warn("db->put failed"); - goto bad; - } - } else { - if (dbd.size != sizeof(gd)) { - /* whatever this is, it doesn't belong */ - db->del(db, &dbk, 0); - goto bad; - } - memcpy(&gd, dbd.data, sizeof(gd)); - gd.pcount++; - switch (type) { - case WHITE: - gd.pass = now; - gd.expire = now + WHITEEXP; - break; - case TRAPHIT: - gd.expire = now + TRAPEXP; - gd.pcount = -1; - break; - case SPAMTRAP: - gd.expire = 0; /* XXX */ - gd.pcount = -2; - break; - default: - errx(-1, "unknown type %d", type); - } - - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(ip); - dbk.data = ip; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - if (r) { - warn("db->put failed"); - goto bad; - } - } - } - db->close(db); - db = NULL; - return (0); - bad: - db->close(db); - db = NULL; - return (1); -} - -int -dblist(char *dbname) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - struct gdata gd; - int r; - - /* walk db, list in text format */ - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDONLY, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) - err(1, "cannot open %s for reading", dbname); - memset(&dbk, 0, sizeof(dbk)); - memset(&dbd, 0, sizeof(dbd)); - for (r = db->seq(db, &dbk, &dbd, R_FIRST); !r; - r = db->seq(db, &dbk, &dbd, R_NEXT)) { - char *a, *cp; - - if ((dbk.size < 1) || dbd.size != sizeof(struct gdata)) { - db->close(db); - errx(1, "bogus size db entry - bad db file?"); - } - memcpy(&gd, dbd.data, sizeof(gd)); - a = malloc(dbk.size + 1); - if (a == NULL) - err(1, "malloc"); - memcpy(a, dbk.data, dbk.size); - a[dbk.size]='\0'; - cp = strchr(a, '\n'); - if (cp == NULL) { - /* this is a non-greylist entry */ - switch (gd.pcount) { - case -1: /* spamtrap hit, with expiry time */ - printf("TRAPPED|%s|%d\n", a, gd.expire); - break; - case -2: /* spamtrap address */ - printf("SPAMTRAP|%s\n", a); - break; - default: /* whitelist */ - printf("WHITE|%s|||%d|%d|%d|%d|%d\n", a, - gd.first, gd.pass, gd.expire, gd.bcount, - gd.pcount); - break; - } - } else { - char *from, *to; - - /* greylist entry */ - *cp = '\0'; - from = cp + 1; - to = strchr(from, '\n'); - if (to == NULL) { - warnx("No from part in grey key %s", a); - free(a); - goto bad; - } - *to = '\0'; - to++; - printf("GREY|%s|%s|%s|%d|%d|%d|%d|%d\n", - a, from, to, gd.first, gd.pass, gd.expire, - gd.bcount, gd.pcount); - } - free(a); - } - db->close(db); - db = NULL; - return (0); - bad: - db->close(db); - db = NULL; - errx(1, "incorrect db format entry"); - /* NOTREACHED */ - return (1); -} - -extern char *__progname; - -static int -usage(void) -{ - fprintf(stderr, "usage: %s [-Tt] [-a key] [-d key]\n", __progname); - exit(1); -} - -int -main(int argc, char **argv) -{ - int ch, action = 0, type = WHITE; - char *ip = NULL; - - while ((ch = getopt(argc, argv, "a:d:tT")) != -1) { - switch (ch) { - case 'a': - action = 1; - ip = optarg; - break; - case 'd': - action = 2; - ip = optarg; - break; - case 't': - type = TRAPHIT; - break; - case 'T': - type = SPAMTRAP; - break; - default: - usage(); - break; - } - } - - switch (action) { - case 0: - return dblist(PATH_SPAMD_DB); - case 1: - return dbupdate(PATH_SPAMD_DB, ip, 1, type); - case 2: - return dbupdate(PATH_SPAMD_DB, ip, 0, type); - default: - errx(-1, "bad action"); - } - /* NOT REACHED */ - return (0); -} Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamdb/spamdb.o and /usr/home/samm/spamd/work/spamd_3.7/spamdb/spamdb.o differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/Makefile /usr/home/samm/spamd/work/spamd_3.7/spamlogd/Makefile --- /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/Makefile Fri Feb 2 10:53:08 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamlogd/Makefile Thu Jan 1 03:00:00 1970 @@ -1,9 +0,0 @@ -# $OpenBSD: Makefile,v 1.2 2004/02/27 19:41:39 david Exp $ - -PROG= spamlogd -SRCS= spamlogd.c -MAN= spamlogd.8 - -CFLAGS+= -g -Wall -Wstrict-prototypes -ansi -I${.CURDIR}/../spamd - -.include Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd and /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd.8 /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd.8 --- /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd.8 Sun Oct 3 16:10:56 2004 +++ /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd.8 Thu Jan 1 03:00:00 1970 @@ -1,114 +0,0 @@ -.\" $OpenBSD: spamlogd.8,v 1.4 2004/07/14 21:38:09 jmc Exp $ -.\" -.\" Copyright (c) 2004 Bob Beck. All rights reserved. -.\" -.\" Permission to use, copy, modify, and distribute this software for any -.\" purpose with or without fee is hereby granted, provided that the above -.\" copyright notice and this permission notice appear in all copies. -.\" -.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -.\" -.Dd February 16, 2004 -.Dt SPAMLOGD 8 -.Os -.Sh NAME -.Nm spamlogd -.Nd spamd whitelist updating daemon -.Sh SYNOPSIS -.Nm spamlogd -.Op Fl I -.Op Fl i Ar interface -.Sh DESCRIPTION -.Nm -manipulates the -.Xr spamd 8 -database in -.Pa /var/db/spamd -used for -.Xr spamd 8 -greylisting. -.Nm -updates the -.Pa /var/db/spamd -whitelist entries whenever a connection -to port 25 is logged to the -.Xr pflog 4 -interface. -The source addresses of inbound connections are whitelisted -when seen by -.Nm -to ensure that their entries in -.Pa /var/db/spamd -do not expire if the connecting host continues to send legitimate mail. -The destination addresses of outbound connections are whitelisted -when seen by -.Nm -so that replies to outbound mail may be received without initial -greylisting delays -(see -.Sx GREYLISTING -in -.Xr spamd 8 ) . -.Pp -The options are as follows: -.Bl -tag -width Ds -.It Fl I -Specify that -.Nm -is only to whitelist inbound SMTP connections. -By default -.Nm -will whitelist the source of inbound SMTP connections, and the -target of outbound SMTP connections. -.It Fl i Ar interface -Specify a network interface on which packets must arrive. -The default is to watch for connections logged from any interfaces. -.El -.Pp -It is important to be sure to log any connections to and from your real -MTA in order for -.Nm -to update the whitelist entries. -An example -.Xr pf.conf 5 -configuration for logging such connections is as follows: -.Bd -literal -offset indent -EXT_IF = "fxp0" -MAILHOSTS = "{129.128.11.10, 129.128.11.43}" -pass in log on $EXT_IF inet proto tcp to $MAILHOSTS \e - port smtp keep state -pass out log on $EXT_IF inet proto tcp from $MAILHOSTS \e - to any port smtp keep state -.Ed -.Pp -.Nm -sends log messages to -.Xr syslogd 8 -using facility -.Em daemon . -.Nm -will log each connection it sees at level -.Dv LOG_DEBUG . -.Sh FILES -/var/db/spamd -.Sh SEE ALSO -.Xr syslog 3 , -.Xr pflog 4 , -.Xr spamd.conf 5 , -.Xr pflogd 8 , -.Xr spamd 8 , -.Xr spamd-setup 8 , -.Xr spamdb 8 , -.Xr syslogd 8 , -.Xr tcpdump 8 -.Sh HISTORY -The -.Nm -command first appeared in -.Ox 3.5 . Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd.8.gz and /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd.8.gz differ diff -ruN --exclude=CVS /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd.c /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd.c --- /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd.c Fri Feb 2 10:58:10 2007 +++ /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd.c Thu Jan 1 03:00:00 1970 @@ -1,272 +0,0 @@ -/* $OpenBSD: spamlogd.c,v 1.11 2004/09/18 07:33:03 beck Exp $ */ - -/* - * Copyright (c) 2004 Bob Beck. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -/* watch pf log for mail connections, update whitelist entries. */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "grey.h" -#define PATH_TCPDUMP "/usr/sbin/tcpdump" - -#ifdef __OpenBSD__ -struct syslog_data sdata = SYSLOG_DATA_INIT; -#else -#define syslog_r(l, s, args...) syslog(l,args) -#define openlog_r(i, l, f, s) openlog(i, l, f) -int sdata = 0; /* dummy */ -#endif -int inbound; /* do we only whitelist inbound smtp? */ - -extern char *__progname; - -int -dbupdate(char *dbname, char *ip) -{ - BTREEINFO btreeinfo; - DBT dbk, dbd; - DB *db; - struct gdata gd; - time_t now; - int r; - struct in_addr ia; - - now = time(NULL); - memset(&btreeinfo, 0, sizeof(btreeinfo)); - db = dbopen(dbname, O_EXLOCK|O_RDWR, 0600, DB_BTREE, &btreeinfo); - if (db == NULL) - return(-1); - if (inet_pton(AF_INET, ip, &ia) != 1) { - syslog_r(LOG_NOTICE, &sdata, "invalid ip address %s", ip); - goto bad; - } - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(ip); - dbk.data = ip; - memset(&dbd, 0, sizeof(dbd)); - /* add or update whitelist entry */ - r = db->get(db, &dbk, &dbd, 0); - if (r == -1) { - syslog_r(LOG_NOTICE, &sdata, "db->get failed (%m)"); - goto bad; - } - if (r) { - /* new entry */ - memset(&gd, 0, sizeof(gd)); - gd.first = now; - gd.bcount = 1; - gd.pass = now; - gd.expire = now + WHITEEXP; - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(ip); - dbk.data = ip; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - if (r) { - syslog_r(LOG_NOTICE, &sdata, "db->put failed (%m)"); - goto bad; - } - } else { - if (dbd.size != sizeof(gd)) { - /* whatever this is, it doesn't belong */ - db->del(db, &dbk, 0); - goto bad; - } - memcpy(&gd, dbd.data, sizeof(gd)); - gd.pcount++; - gd.expire = now + WHITEEXP; - memset(&dbk, 0, sizeof(dbk)); - dbk.size = strlen(ip); - dbk.data = ip; - memset(&dbd, 0, sizeof(dbd)); - dbd.size = sizeof(gd); - dbd.data = &gd; - r = db->put(db, &dbk, &dbd, 0); - if (r) { - syslog_r(LOG_NOTICE, &sdata, "db->put failed (%m)"); - goto bad; - } - } - db->close(db); - db = NULL; - return (0); - bad: - db->close(db); - db = NULL; - return (-1); -} - -static void -usage(void) -{ - fprintf(stderr, "usage: %s [-I] [-i interface]\n", __progname); - exit(1); -} - -char *targv[19] = { - "tcpdump", "-l", "-n", "-e", "-i", "pflog0", "-q", - "-t", "port", "25", "and", "action", "pass", - "and", "tcp[13]&0x12=0x2", - NULL, NULL, NULL, NULL -}; - -int -main(int argc, char **argv) -{ - int ch, p[2]; - char *buf, *lbuf; - size_t len; - FILE *f; - - - while ((ch = getopt(argc, argv, "i:I")) != -1) { - switch (ch) { - case 'i': - if (targv[17]) /* may only set once */ - usage(); - targv[15] = "and"; - targv[16] = "on"; - targv[17] = optarg; - break; - case 'I': - inbound = 1; - break; - default: - usage(); - break; - } - } -int ii; -for(ii=0;ii<=17;ii++) -{ - fprintf(stderr,"test:%d:%s\n",ii,targv[ii]); -} - -/* if (daemon(1, 1) == -1) - err(1, "daemon"); */ - if (pipe(p) == -1) - err(1, "pipe"); - switch (fork()) { - case -1: - err(1, "fork"); - case 0: - /* child */ - close(p[0]); - close(STDERR_FILENO); - if (dup2(p[1], STDOUT_FILENO) == -1) { - warn("dup2"); - _exit(1); - } - close(p[1]); - execvp(PATH_TCPDUMP, targv); - warn("exec of %s failed", PATH_TCPDUMP); - _exit(1); - } - fprintf(stderr,"test2\n"); - /* parent */ - close(p[1]); - f = fdopen(p[0], "r"); - if (f == NULL) - err(1, "fdopen"); - tzset(); - fprintf(stderr,"test3\n"); - openlog_r("spamlogd", LOG_PID | LOG_NDELAY, LOG_DAEMON, &sdata); - fprintf(stderr,"test4\n"); - lbuf = NULL; - while ((buf = fgetln(f, &len))) { - char *cp = NULL; - char *buf2; - - if ((buf2 = malloc(len + 1)) == NULL) { - syslog_r(LOG_ERR, &sdata, "malloc failed"); - fprintf(stderr,"test5.1\n"); - exit(1); - } - fprintf(stderr,"test5\n"); - if (buf[len - 1] == '\n') - buf[len - 1] = '\0'; - else { - if ((lbuf = (char *)malloc(len + 1)) == NULL) { - syslog_r(LOG_ERR, &sdata, "malloc failed"); - exit(1); - } - memcpy(lbuf, buf, len); - lbuf[len] = '\0'; - buf = lbuf; - } - if (strstr(buf, "pass out") != NULL) { - /* - * this is outbound traffic - we whitelist - * the destination address, because we assume - * that a reply may come to this outgoing mail - * we are sending. - */ - if (!inbound && (cp = (strchr(buf, '>'))) != NULL) { - if (sscanf(cp, "> %s", buf2) == 1) { - cp = strrchr(buf2, '.'); - if (cp != NULL) { - *cp = '\0'; - cp = buf2; - syslog_r(LOG_DEBUG, &sdata, - "outbound %s\n", cp); - } - } else - cp = NULL; - } - - } else { - /* - * this is inbound traffic - we whitelist - * the source address, because this is - * traffic presumably to our real MTA - */ - if ((cp = (strchr(buf, '>'))) != NULL) { - while (*cp != '.' && cp >= buf) { - *cp = '\0'; - cp--; - } - *cp ='\0'; - while (*cp != ' ' && cp >= buf) - cp--; - cp++; - syslog_r(LOG_DEBUG, &sdata, - "inbound %s\n", cp); - } - } - if (cp != NULL) - dbupdate(PATH_SPAMD_DB, cp); - - free(lbuf); - lbuf = NULL; - free(buf2); - } - exit(0); -} Binary files /usr/ports/mail/spamd/work/spamd_3.7/spamlogd/spamlogd.o and /usr/home/samm/spamd/work/spamd_3.7/spamlogd/spamlogd.o differ --- spamd-4.1.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 16:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6483E16A400 for ; Sun, 3 Jun 2007 16:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2FAE313C44C for ; Sun, 3 Jun 2007 16:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ge5Ep002179 for ; Sun, 3 Jun 2007 16:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ge4WP002178; Sun, 3 Jun 2007 16:40:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 16:40:04 GMT Resent-Message-Id: <200706031640.l53Ge4WP002178@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, hideo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA98C16A41F for ; Sun, 3 Jun 2007 16:40:01 +0000 (UTC) (envelope-from hideo@lastamericanempire.com) Received: from darwin.lastamericanempire.com (lastamericanempire.com [66.134.56.226]) by mx1.freebsd.org (Postfix) with ESMTP id 8CB8813C447 for ; Sun, 3 Jun 2007 16:40:01 +0000 (UTC) (envelope-from hideo@lastamericanempire.com) Received: by darwin.lastamericanempire.com (Postfix, from userid 1001) id 308EA45028; Sun, 3 Jun 2007 10:40:01 -0600 (MDT) Message-Id: <20070603164001.308EA45028@darwin.lastamericanempire.com> Date: Sun, 3 Jun 2007 10:40:01 -0600 (MDT) From: hideo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113294: [maintainer update] Update devel/p5-Rose-Object to 0.840 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: hideo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 16:40:05 -0000 >Number: 113294 >Category: ports >Synopsis: [maintainer update] Update devel/p5-Rose-Object to 0.840 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 16:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: hideo >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD darwin.lastamericanempire.com 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jun 2 15:53:19 MDT 2007 hideo@darwin.lastamericanempire.com:/usr/obj/usr/src/sys/darwin i386 >Description: Update devel/p5-Rose-Object from version 0.83 to 0.84 >How-To-Repeat: >Fix: --- p5-ro-0.840 begins here --- diff -ruN /usr/ports/devel/p5-Rose-Object/Makefile p5-Rose-Object/Makefile --- /usr/ports/devel/p5-Rose-Object/Makefile Mon May 28 02:56:42 2007 +++ p5-Rose-Object/Makefile Sun Jun 3 10:35:20 2007 @@ -6,7 +6,7 @@ # PORTNAME= Rose-Object -PORTVERSION= 0.830 +PORTVERSION= 0.840 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Rose diff -ruN /usr/ports/devel/p5-Rose-Object/distinfo p5-Rose-Object/distinfo --- /usr/ports/devel/p5-Rose-Object/distinfo Mon May 28 02:56:42 2007 +++ p5-Rose-Object/distinfo Sun Jun 3 10:32:30 2007 @@ -1,3 +1,3 @@ -MD5 (Rose-Object-0.83.tar.gz) = b09b26eadc5d6964613ccc0b908d43b7 -SHA256 (Rose-Object-0.83.tar.gz) = 597b949e9371d9f4b4fabbaf42a9c50d99517ecd64bb67672b640b665cc7373a -SIZE (Rose-Object-0.83.tar.gz) = 28695 +MD5 (Rose-Object-0.84.tar.gz) = cb5a79f9a6962f2218e0012eb8719a5d +SHA256 (Rose-Object-0.84.tar.gz) = 20d294d3800d9b4f026c00387a528f353565d797d2a32c3c9f858b822de0c9bb +SIZE (Rose-Object-0.84.tar.gz) = 28736 --- p5-ro-0.840 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 16:50:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7AA7216A473 for ; Sun, 3 Jun 2007 16:50:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 44B3413C4BD for ; Sun, 3 Jun 2007 16:50:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53GoGi6003091 for ; Sun, 3 Jun 2007 16:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53GoGav003090; Sun, 3 Jun 2007 16:50:16 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 16:50:16 GMT Resent-Message-Id: <200706031650.l53GoGav003090@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joao Rocha Braga Filho Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E28516A469 for ; Sun, 3 Jun 2007 16:44:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 2759313C45D for ; Sun, 3 Jun 2007 16:44:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l53GiVTd012337 for ; Sun, 3 Jun 2007 16:44:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l53GiUaI012336; Sun, 3 Jun 2007 16:44:30 GMT (envelope-from nobody) Message-Id: <200706031644.l53GiUaI012336@www.freebsd.org> Date: Sun, 3 Jun 2007 16:44:30 GMT From: Joao Rocha Braga Filho To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113295: make config, im ports, to choose kopete plugins to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 16:50:16 -0000 >Number: 113295 >Category: ports >Synopsis: make config, im ports, to choose kopete plugins to install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 16:50:15 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Joao Rocha Braga Filho >Release: FreeBSD 6.2 i386 >Organization: >Environment: FreeBSD piccola.paratyinfo.com.br 6.2-STABLE FreeBSD 6.2-STABLE #4: Sun Jun 3 00:47:36 BRT 2007 goffredo@piccola.paratyinfo.com.br:/usr/src/sys/i386/compile/PICCOLA i386 >Description: Kopete has several plug-ins. It would be nice if everybody can choose then during the install. A make config menu in its port is perfect to the job. Thanks in advance, João Rocha. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 17:00:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E082F16A4D1 for ; Sun, 3 Jun 2007 17:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D0E3C13C4B7 for ; Sun, 3 Jun 2007 17:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53H0EJw003941 for ; Sun, 3 Jun 2007 17:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53H0E6W003940; Sun, 3 Jun 2007 17:00:14 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 17:00:14 GMT Message-Id: <200706031700.l53H0E6W003940@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alex Samorukov Cc: Subject: Re: ports/105277: [UPDATE] mail/spamd - improvements and clean up X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Samorukov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 17:00:15 -0000 The following reply was made to PR ports/105277; it has been noted by GNATS. From: Alex Samorukov To: Yarema Cc: Janos Mohacsi , bug-followup@FreeBSD.org, delhij@freebsd.org Subject: Re: ports/105277: [UPDATE] mail/spamd - improvements and clean up Date: Sun, 03 Jun 2007 19:28:05 +0300 Yarema wrote: > --On Friday, June 01, 2007 8:53 AM +0200 Janos Mohacsi > wrote: > >> I don't see the greylisting support added in the latest >> mail/spamd-3.7_3. >> Can you revise the port or should I send a separate patch? >> Regards, >> Janos Mohacsi > > Seems to me this PR was closed without applying the patch I submitted > way back when. In any case OpenBSD 4.1 is out with official > greylisting support rather than Bob Beck's preview variant I > submitted. Perhaps it's time to revisit updating this port to 4.1 > rather than 4.0 as the last PR did. I've made some improvements to > the port since so I'll see about rolling another update. Please look into http://www.freebsd.org/cgi/query-pr.cgi?pr=113293 I hope this one will be submitted soon, so please make all your PR`s based on it. Also, there is a home of the project on the berlios web site, http://freebsdspamd.berlios.de Feel free to use bugreport system or svn to make a patches. -- Best regards, Alex Samorukov, SAMM1-RIPE Zend Certified PHP Engineer From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 17:00:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C7FE316A421 for ; Sun, 3 Jun 2007 17:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7D6A813C458 for ; Sun, 3 Jun 2007 17:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53H0JE1003999 for ; Sun, 3 Jun 2007 17:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53H0J2q003997; Sun, 3 Jun 2007 17:00:19 GMT (envelope-from gnats) Date: Sun, 3 Jun 2007 17:00:19 GMT Message-Id: <200706031700.l53H0J2q003997@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alex Samorukov Cc: Subject: Re: ports/113293: [MAINTAINER] mail/spamd: update to 4.1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Samorukov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 17:00:19 -0000 The following reply was made to PR ports/113293; it has been noted by GNATS. From: Alex Samorukov To: bug-followup@FreeBSD.org, samm@os2.kiev.ua Cc: Subject: Re: ports/113293: [MAINTAINER] mail/spamd: update to 4.1.1 Date: Sun, 03 Jun 2007 19:24:55 +0300 This is a multi-part message in MIME format. --------------000201060000070301060405 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit updated diff, withot "work" directory trash -- Best regards, Alex Samorukov, SAMM1-RIPE Zend Certified PHP Engineer --------------000201060000070301060405 Content-Type: text/plain; name="diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff" diff -urN /usr/ports/mail/spamd/Makefile /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/Makefile --- /usr/ports/mail/spamd/Makefile Tue Mar 20 17:16:44 2007 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/Makefile Sun Jun 3 18:49:28 2007 @@ -1,75 +1,90 @@ -# New ports collection makefile for: spamd -# Date created: 23 June 2003 +# New ports collection makefile for: spamd +# Date created: 04 April 2007 # Whom: Max Laier # -# $FreeBSD: ports/mail/spamd/Makefile,v 1.12 2007/03/20 15:16:44 delphij Exp $ +# $FreeBSD$ # PORTNAME= spamd -PORTVERSION= 3.7 -PORTREVISION= 3 +PORTVERSION= 4.1.1 CATEGORIES= mail -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= delphij -DISTNAME= ${PORTNAME}_${PORTVERSION} +MASTER_SITES= BERLIOS +MASTER_SITE_SUBDIR=freebsdspamd +DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= samm@os2.kiev.ua COMMENT= Traps spammers with a very slow smtp-login and return 4xx error -USE_BZIP2= yes - .include -.if defined(WITH_IPFW) -CFLAGS+= -DIPFW -.if ${OSVERSION} < 490000 -BROKEN= IPFW with Tables is required for this port to function properly -.endif -.else .if ${OSVERSION} < 502117 BROKEN= OpenBSD 3.5 pf/pfctl is necessary for this port to function properly. .else LOCAL_PFCTL= /sbin/pfctl .endif -.endif -USE_RC_SUBR= pfspamd.sh +USE_RC_SUBR?= obspamd obspamlogd -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) -IS_INTERACTIVE= yes -.endif +SPAMDUSER?= _spamd +SPAMDGROUP?= _spamd +SPAMDDIR?= /var/empty + +SPAMDUID= 132 +SPAMDGID= ${SPAMDUID} MAN5= spamd.conf.5 MAN8= spamd.8 spamd-setup.8 spamdb.8 spamlogd.8 +PORTDOCS= ipfw-spamd.txt -SAMPLE_SPAMD_CONF= ${PREFIX}/etc/spamd.conf.sample +PLIST_DIRS= etc/spamd +PLIST_FILES= libexec/spamd libexec/spamlogd \ + sbin/spamd-setup sbin/spamdb \ + etc/spamd/spamd.conf.sample + +CONFIG_DIR= ${PREFIX}/etc/spamd +SAMPLE_SPAMD_CONF= ${CONFIG_DIR}/spamd.conf.sample + +PLIST_SUB= SPAMDDIR=${SPAMDDIR} \ + SPAMDUSER=${SPAMDUSER} \ + SPAMDGROUP=${SPAMDGROUP} \ + SPAMDUID=${SPAMDUID} \ + SPAMDGID=${SPAMDGID} + +SUB_FILES= pkg-install \ + pkg-deinstall \ + pkg-message -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCAL_PFCTL%%|${LOCAL_PFCTL}|; \ - s|%%LOCAL_SPAMD_CONF%%|${PREFIX}/etc/spamd.conf|' \ - ${WRKSRC}/spamd-setup/spamd-setup.c - @${REINPLACE_CMD} -e 's|/etc/spamd.conf|${PREFIX}/etc/spamd.conf|' \ - ${WRKSRC}/spamd/spamd.8 ${WRKSRC}/spamd-setup/spamd-setup.8 - -pre-su-install: -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL -.endif +SUB_LIST= PREFIX=${PREFIX} \ + ${PLIST_SUB} + +pre-install: + @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL + +post-install: + @${CAT} ${PKGMESSAGE} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/spamd/spamd ${PREFIX}/libexec ${INSTALL_PROGRAM} ${WRKSRC}/spamlogd/spamlogd ${PREFIX}/libexec ${INSTALL_PROGRAM} ${WRKSRC}/spamd-setup/spamd-setup ${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/spamdb/spamdb ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/doc/spamd.conf.5 ${PREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/etc/spamd.conf.5 ${PREFIX}/man/man5 ${INSTALL_MAN} ${WRKSRC}/spamd/spamd.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/spamd-setup/spamd-setup.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/spamdb/spamdb.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/spamlogd/spamlogd.8 ${PREFIX}/man/man8 - @if [ ! -f ${SAMPLE_SPAMD_CONF} ]; then \ + @if [ ! -d ${CONFIG_DIR} ]; then \ + ${MKDIR} ${CONFIG_DIR}; \ + fi + @if [ ! -f ${SAMPLE_SPAMD_CONF} ]; then \ ${ECHO_MSG} "Installing ${SAMPLE_SPAMD_CONF} file."; \ - ${INSTALL_DATA} ${WRKSRC}/doc/spamd.conf \ - ${SAMPLE_SPAMD_CONF}; \ + ${ECHO_MSG} "${INSTALL_DATA} -v -p ${WRKSRC}/etc/spamd.conf ${SAMPLE_SPAMD_CONF}"; \ + ${INSTALL_DATA} -v -p ${WRKSRC}/etc/spamd.conf \ + ${SAMPLE_SPAMD_CONF}; \ fi +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/doc/ipfw-spamd.txt ${DOCSDIR}/ +.endif .include diff -urN /usr/ports/mail/spamd/distinfo /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/distinfo --- /usr/ports/mail/spamd/distinfo Sun Jan 22 14:50:50 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/distinfo Sun Jun 3 18:49:28 2007 @@ -1,3 +1,3 @@ -MD5 (spamd_3.7.tar.bz2) = e1d96b9d7b1d4189dca510ff0000383f -SHA256 (spamd_3.7.tar.bz2) = a06ad07ead38240f13ea01c5d0315179e7089ed8fb8fe6544b1860bd8cfdc355 -SIZE (spamd_3.7.tar.bz2) = 28066 +MD5 (spamd-4.1.1.tar.gz) = 6cf6a92b709e1907162fd1c59af7943a +SHA256 (spamd-4.1.1.tar.gz) = b6e8b00ec0b3ff5ff3e73de2fab3f3bbbd3d95807ef1a946a6302666d17c503a +SIZE (spamd-4.1.1.tar.gz) = 50179 diff -urN /usr/ports/mail/spamd/files/obspamd.in /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/obspamd.in --- /usr/ports/mail/spamd/files/obspamd.in Thu Jan 1 03:00:00 1970 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/obspamd.in Mon Apr 23 18:33:35 2007 @@ -0,0 +1,70 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: obspamd +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: shutdown + +# +# Define these spamd_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# +# obspamd_enable="YES" # Run the spamd(8) daemon (YES/NO). +# obspamd_flags="" # Extra flags for spamd(8) (if enabled). +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +obspamd_enable=${obspamd_enable:-"NO"} +obspamd_flags=${obspamd_flags:-""} + +. %%RC_SUBR%% + +name="obspamd" +rcvar=`set_rcvar` + +command="%%PREFIX%%/libexec/spamd" +start_precmd="obspamd_precmd" +start_postcmd="obspamd_postcmd" +restart_postcmd="obspamd_postcmd" +stop_postcmd="obspamd_cleanup" +pidfile="/var/run/spamd.pid" + +obspamd_precmd() +{ + _rc=0 + echo "${obspamd_flags}" | grep "\-b" 2>&1 > /dev/null + if [ $? -eq 1 ]; then + /sbin/mount -p | grep 'fdescfs.*/dev/fd.*fdescfs.*rw' 2>&1 > /dev/null + _rc=${?} + if [ ${_rc} -ne 0 ]; then + echo "Unable to start spamd in greylisting mode" + echo "" + echo "Please mount fdescfs with the following line in /etc/fstab" + echo "" + echo " fdescfs /dev/fd fdescfs rw 0 0" + echo "" + fi + return ${_rc} + fi +} + +obspamd_postcmd() +{ + if [ -x %%PREFIX%%/sbin/spamd-setup ]; then + if [ -r %%PREFIX%%/etc/spamd/spamd.conf ]; then + %%PREFIX%%/sbin/spamd-setup & + fi + fi +} + +obspamd_cleanup() +{ + /bin/rm -f ${pidfile} +} + +load_rc_config $name +run_rc_command "$1" diff -urN /usr/ports/mail/spamd/files/obspamlogd.in /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/obspamlogd.in --- /usr/ports/mail/spamd/files/obspamlogd.in Thu Jan 1 03:00:00 1970 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/obspamlogd.in Mon Apr 23 18:33:35 2007 @@ -0,0 +1,56 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: obspamlogd +# REQUIRE: NETWORKING SERVERS obspamd +# BEFORE: DAEMON +# KEYWORD: shutdown + +# +# Define these obspamlogd_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# +# obspamlogd_enable="YES" # Run the spamlogd(8) daemon (YES/NO). +# obspamlogd_flags="" # Extra flags for spamlogd(8) (if enabled). +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +obspamlogd_enable=${obspamlogd_enable:-"NO"} +obspamlogd_flags=${obspamlogd_flags:-""} + +. %%RC_SUBR%% + +name="obspamlogd" +rcvar=`set_rcvar` + +command="%%PREFIX%%/libexec/spamlogd" +start_precmd="obspamlogd_precmd" +stop_postcmd="obspamlogd_cleanup" +pidfile="/var/run/spamlogd.pid" + +obspamlogd_precmd() +{ + _rc=0 + /sbin/mount -p | grep 'fdescfs.*/dev/fd.*fdescfs.*rw' 2>&1 > /dev/null + _rc=${?} + if [ ${_rc} -ne 0 ]; then + echo "Unable to start ${name}" + echo "" + echo "Please mount fdescfs with the following line in /etc/fstab" + echo "" + echo " fdescfs /dev/fd fdescfs rw 0 0" + echo "" + fi + return ${_rc} +} + +obspamlogd_cleanup() +{ + /bin/rm -f ${pidfile} +} + +load_rc_config $name +run_rc_command "$1" diff -urN /usr/ports/mail/spamd/files/patch-greyc /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-greyc --- /usr/ports/mail/spamd/files/patch-greyc Tue May 2 11:54:50 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-greyc Thu Jan 1 03:00:00 1970 @@ -1,131 +0,0 @@ ---- spamd/grey.c Wed Apr 13 03:22:17 2005 -+++ spamd/grey.c Mon Mar 20 15:26:18 2006 -@@ -39,6 +39,10 @@ - #include - #include - -+#ifdef IPFW -+#include -+#endif -+ - #include "grey.h" - - extern time_t passtime, greyexp, whiteexp, trapexp; -@@ -65,13 +69,17 @@ - char *traplist_msg = "\"Your address %A has mailed to spamtraps here\\n\""; - - pid_t db_pid = -1; --int pfdev; - int spamdconf; - -+#ifdef IPFW -+extern int tabno; -+#else -+int pfdev; - static char *pargv[11]= { - "pfctl", "-p", "/dev/pf", "-q", "-t", - "spamd-white", "-T", "replace", "-f" "-", NULL - }; -+#endif - - /* If the parent gets a signal, kill off the children and exit */ - /* ARGSUSED */ -@@ -104,6 +112,7 @@ - return(0); - } - -+#ifndef IPFW - int - configure_pf(char **addrs, int count) - { -@@ -166,11 +175,54 @@ - for (i = 0; i < count; i++) - if (addrs[i] != NULL) - fprintf(pf, "%s/32\n", addrs[i]); -+ - fclose(pf); - waitpid(pid, NULL, 0); - sigaction(SIGCHLD, &sa, NULL); - return(0); - } -+#else -+int -+configure_pf(char **addrs, int count) -+{ -+ static int s = -1; -+ ipfw_table_entry ent; -+ int i; -+ -+ if (s == -1) -+ s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); -+ if (s < 0) -+ { -+ syslog_r(LOG_INFO, &sdata, "IPFW socket unavailable (%m)"); -+ return(-1); -+ } -+ -+ /* flush the table */ -+ ent.tbl = tabno; -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) -+ { -+ syslog_r(LOG_INFO, &sdata, "IPFW setsockopt(IP_FW_TABLE_FLUSH) (%m)"); -+ return(-1); -+ } -+ -+ for (i = 0; i < count; i++) -+ if (addrs[i] != NULL) -+ { -+ /* add addrs[i] to tabno */ -+ ent.tbl = tabno; -+ ent.masklen = 32; -+ ent.value = 0; -+ inet_aton(addrs[i], (struct in_addr *)&ent.addr); -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) -+ { -+ syslog_r(LOG_INFO, &sdata, "IPFW setsockopt(IP_FW_TABLE_ADD) (%m)"); -+ return(-1); -+ } -+ } -+ -+ return(0); -+} -+#endif - - void - freeaddrlists(void) -@@ -590,11 +642,13 @@ - int i; - struct sigaction sa; - -+#ifndef IPFW - pfdev = open("/dev/pf", O_RDWR); - if (pfdev == -1) { - syslog_r(LOG_ERR, &sdata, "open of /dev/pf failed (%m)"); - exit(1); - } -+#endif - - /* check to see if /var/db/spamd exists, if not, create it */ - if ((i = open(PATH_SPAMD_DB, O_RDWR, 0)) == -1 && errno == ENOENT) { -@@ -636,7 +690,9 @@ - * child, talks to jailed spamd over greypipe, - * updates db. has no access to pf. - */ -+#ifndef IPFW - close(pfdev); -+#endif - setproctitle("(%s update)", PATH_SPAMD_DB); - greyreader(); - /* NOTREACHED */ -@@ -655,7 +711,11 @@ - sigaction(SIGCHLD, &sa, NULL); - sigaction(SIGINT, &sa, NULL); - -+#ifndef IPFW - setproctitle("(pf update)"); -+#else -+ setproctitle("(ipfw white table update)"); -+#endif - greyscanner(); - /* NOTREACHED */ - exit(1); diff -urN /usr/ports/mail/spamd/files/patch-greyh /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-greyh --- /usr/ports/mail/spamd/files/patch-greyh Tue May 2 11:54:50 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-greyh Thu Jan 1 03:00:00 1970 @@ -1,10 +0,0 @@ ---- spamd/grey.h Thu Mar 16 19:55:33 2006 -+++ spamd/grey.h Thu Mar 16 19:55:56 2006 -@@ -22,6 +22,7 @@ - #define WHITEEXP (60 * 60 * 24 * 36) /* remove white entries after 36 days */ - #define TRAPEXP (60 * 60 * 24) /* hitting a spamtrap blacklists for a day */ - #define PATH_PFCTL "/sbin/pfctl" -+#define PATH_IPFW "/sbin/ipfw" - #define DB_SCAN_INTERVAL 60 - #define PATH_SPAMD_DB "/var/db/spamd" - diff -urN /usr/ports/mail/spamd/files/patch-spamd /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-spamd --- /usr/ports/mail/spamd/files/patch-spamd Tue May 2 11:54:50 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-spamd Thu Jan 1 03:00:00 1970 @@ -1,48 +0,0 @@ ---- spamd/spamd.c Thu Mar 16 20:56:45 2006 -+++ spamd/spamd.c Thu Mar 16 21:07:11 2006 -@@ -123,6 +123,10 @@ - pid_t jail_pid = -1; - u_short cfg_port; - -+#ifdef IPFW -+int tabno=1; -+#endif -+ - extern struct sdlist *blacklists; - - int conffd = -1; -@@ -153,6 +157,10 @@ - " [-G mins:hours:hours] [-n name] [-p port]\n"); - fprintf(stderr, - " [-r reply] [-s secs] [-w window]\n"); -+#ifdef IPFW -+ fprintf(stderr, -+ " [-t table_no]\n"); -+#endif - exit(1); - } - -@@ -958,7 +966,11 @@ - if (gethostname(hostname, sizeof hostname) == -1) - err(1, "gethostname"); - -+#ifdef IPFW -+ while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:t:")) != -1) { -+#else - while ((ch = getopt(argc, argv, "45b:c:B:p:dgG:r:s:n:vw:")) != -1) { -+#endif - switch (ch) { - case '4': - nreply = "450"; -@@ -1015,6 +1027,11 @@ - case 'v': - verbose = 1; - break; -+#ifdef IPFW -+ case 't': -+ tabno = atoi(optarg); -+ break; -+#endif - case 'w': - window = atoi(optarg); - if (window <= 0) diff -urN /usr/ports/mail/spamd/files/patch-spamd-setup /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-spamd-setup --- /usr/ports/mail/spamd/files/patch-spamd-setup Sun Mar 25 20:24:07 2007 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-spamd-setup Thu Jan 1 03:00:00 1970 @@ -1,110 +0,0 @@ ---- spamd-setup/spamd-setup.c.orig Wed Apr 13 01:18:59 2005 -+++ spamd-setup/spamd-setup.c Wed May 10 01:55:13 2006 -@@ -41,6 +41,11 @@ - #include - #include - -+#ifdef IPFW -+#include -+#include -+#endif -+ - #define PATH_FTP "/usr/bin/ftp" - #define PATH_PFCTL "%%LOCAL_PFCTL%%" - #define PATH_SPAMD_CONF "%%LOCAL_SPAMD_CONF%%" -@@ -93,6 +98,11 @@ - int debug; - int dryrun; - -+#ifdef IPFW -+int tabno=2; -+#endif -+ -+ - u_int32_t - imask(u_int8_t b) - { -@@ -630,6 +640,7 @@ - } - - -+#ifndef IPFW - int - configure_pf(struct cidr **blacklists) - { -@@ -676,6 +687,51 @@ - } - return(0); - } -+#else -+int -+configure_pf(struct cidr **blacklists) -+{ -+ static int s = -1; -+ ipfw_table_entry ent; -+ -+ if (s == -1) -+ s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); -+ if (s < 0) -+ { -+ err(1, "IPFW socket unavailable"); -+ return(-1); -+ } -+ -+ /* flush the table */ -+ ent.tbl = tabno; -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0) -+ { -+ err(1, "IPFW setsockopt(IP_FW_TABLE_FLUSH)"); -+ return(-1); -+ } -+ -+ while (*blacklists != NULL) { -+ struct cidr *b = *blacklists; -+ -+ while (b->addr != 0) { -+ /* add b to tabno */ -+ ent.tbl = tabno; -+ ent.masklen = b->bits; -+ ent.value = 0; -+ inet_aton(atop(b->addr), (struct in_addr *)&ent.addr); -+ if (setsockopt(s, IPPROTO_IP, IP_FW_TABLE_ADD, &ent, sizeof(ent)) < 0) -+ { -+ err(1, "IPFW setsockopt(IP_FW_TABLE_ADD)"); -+ return(-1); -+ } -+ b++; -+ } -+ blacklists++; -+ } -+ -+ return(0); -+} -+#endif - - int - getlist(char ** db_array, char *name, struct blacklist *blist, -@@ -773,7 +829,11 @@ - struct servent *ent; - int i, ch; - -+#ifndef IPFW - while ((ch = getopt(argc, argv, "nd")) != -1) { -+#else -+ while ((ch = getopt(argc, argv, "ndt:")) != -1) { -+#endif - switch (ch) { - case 'n': - dryrun = 1; -@@ -781,6 +841,11 @@ - case 'd': - debug = 1; - break; -+#ifdef IPFW -+ case 't': -+ tabno = atoi(optarg); -+ break; -+#endif - default: - break; - } diff -urN /usr/ports/mail/spamd/files/patch-spamdm /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-spamdm --- /usr/ports/mail/spamd/files/patch-spamdm Tue May 2 11:54:50 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/patch-spamdm Thu Jan 1 03:00:00 1970 @@ -1,89 +0,0 @@ ---- spamd/spamd.8 Wed Apr 13 03:21:48 2005 -+++ spamd/spamd.8 Mon Mar 20 15:12:10 2006 -@@ -49,6 +49,8 @@ - daemon which rejects false mail. - If the - .Xr pf 4 -+or -+.Xr ipfw 4 - packet filter is configured to redirect port 25 (SMTP) to this daemon, - it will attempt to waste the time and resources of the spam sender. - .Pp -@@ -151,11 +153,15 @@ - which processes a list of spammers' addresses, and applies appropriate - .Xr pfctl 8 - .Em rdr -+or -+.Xr ipfw 8 -+.Em fwd - rules. - .Xr spamd-setup 8 - is run from - .Xr cron 8 . - .Sh REDIRECTING SMTP CONNECTIONS -+.Ss "When using PF" - With - .Xr pf 4 , - connections to port 25 (SMTP) can be redirected to another host or port, -@@ -189,6 +195,8 @@ - can also be used to load addresses into the - .Em - table. -+ -+ - .Xr spamd-setup 8 - also has the added benefit of being able to remove addresses from - blacklists, and will connect to -@@ -203,6 +211,52 @@ - This is important as it allows legitimate mail - senders to pressure spam sources into behaving properly so that they - may be removed from the relevant blacklists. -+ -+.Ss "If compiled with IPFW" -+With -+.Xr ipfw 4 , -+the syntax for redirection of TCP sessions is quite different -+from that of -+.Xr pf 4 . -+The -+.Em fwd -+rule used for this purpose are described in -+.Xr ipfw 8 . -+The rules should be added to the ruleset called by /etc/rc.firewall -+to be present at boot time. -+.Bd -literal -offset 4n -+fwd 127.0.0.1,8025 tcp from table(2) to me 25 in -+allow tcp from table(1) to me 25 in -+fwd 127.0.0.1,8025 tcp from any to me 25 in -+.Ed -+.Pp -+Any addresses in the blacklist table -+.Em 2 -+and not in the whitelist table -+.Em 1 -+are then redirected to -+.Nm -+running on port 8025. -+Addresses can be loaded into the blacklist -+.Em table , -+like: -+.Bd -literal -offset 4n -+# ipfw table 1 add a.b.c.d/x -+.Ed -+.Pp -+.Xr spamd-setup 8 -+can also be used to load addresses into the blacklist table -+.Em 2 . -+.Pp -+The -+.Op Fl t Ar table_no -+option to -+.Em spamd -+and -+.Em spamd-setup -+can be used to change the default table -+numbers. -+ - .Sh CONFIGURATION CONNECTIONS - .Nm - listens for configuration connections on the port identified by the diff -urN /usr/ports/mail/spamd/files/pfspamd.sh.in /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pfspamd.sh.in --- /usr/ports/mail/spamd/files/pfspamd.sh.in Tue Mar 20 17:16:44 2007 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pfspamd.sh.in Thu Jan 1 03:00:00 1970 @@ -1,49 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: ports/mail/spamd/files/pfspamd.sh.in,v 1.2 2007/03/20 15:16:44 delphij Exp $ -# - -# PROVIDE: pfspamd -# REQUIRE: NETWORKING -# BEFORE: mail -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable spamd: -# pfspamd_enable (bool): Set to "NO" by default. -# Set it to "YES" to enable spamd -# pfspamd_flags (str): Set to "" by default. -# Extra flags passed to start command. -# pfspamd_setup_flags (str): Set to "" by default. -# Extra flags passed to spamd-setup command. - -. %%RC_SUBR%% - -name="pfspamd" -rcvar=`set_rcvar` - -command="%%PREFIX%%/libexec/spamd" -start_postcmd="pfspamd_postcmd" -restart_postcmd="pfspamd_postcmd" - -[ -z "$pfspamd_enable" ] && pfspamd_enable="NO" -[ -z "$pfspamd_flags" ] && pfspamd_flags="" -[ -z "$pfspamd_setup_flags" ] && pfspamd_setup_flags="" - -load_rc_config $name - -# we override check_process to avoid conflict with the spamd from sa-spamd -check_process() -{ - ps ax -o pid,command | grep "libexec/spamd" | grep -v grep | awk '{print $1}' -} - - -pfspamd_postcmd() -{ - if [ -x %%PREFIX%%/sbin/spamd-setup ]; then - %%PREFIX%%/sbin/spamd-setup $pfspamd_setup_flags - fi -} - -run_rc_command "$1" diff -urN /usr/ports/mail/spamd/files/pkg-deinstall.in /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pkg-deinstall.in --- /usr/ports/mail/spamd/files/pkg-deinstall.in Thu Jan 1 03:00:00 1970 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pkg-deinstall.in Tue Apr 10 18:49:02 2007 @@ -0,0 +1,21 @@ +#!/bin/sh +# +# + +SPAMDDIR=%%SPAMDDIR%% +SPAMDUSER=%%SPAMDUSER%% +SPAMDGROUP=%%SPAMDGROUP%% + +if [ "$2" = "POST-DEINSTALL" ]; then + if /usr/sbin/pw group show "${SPAMDGROUP}" 2>&1 >/dev/null; then + echo "You should manually remove the \"${SPAMDGROUP}\" group." + fi + + if /usr/sbin/pw user show "${SPAMDUSER}" 2>&1 >/dev/null; then + echo "You should manually remove the \"${SPAMDUSER}\" user." + fi + + if [ -e "${SPAMDDIR}" ]; then + echo "You should manually remove the \"${SPAMDDIR}\" directory." + fi +fi diff -urN /usr/ports/mail/spamd/files/pkg-install.in /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pkg-install.in --- /usr/ports/mail/spamd/files/pkg-install.in Thu Jan 1 03:00:00 1970 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pkg-install.in Wed Apr 18 15:58:31 2007 @@ -0,0 +1,148 @@ +#!/bin/sh +# +# + +SPAMDDIR=%%SPAMDDIR%% +SPAMDUSER=%%SPAMDUSER%% +SPAMDGROUP=%%SPAMDGROUP%% +SPAMDUID=%%SPAMDUID%% +SPAMDGID=%%SPAMDGID%% + +ask() { + local question default answer + + question=$1 + default=$2 + if [ -z "${PACKAGE_BUILDING}" ]; then + read -p "${question} [${default}]? " answer + fi + if [ "x${answer}" = "x" ]; then + answer=${default} + fi + echo ${answer} +} + +yesno() { + local default question answer + + question=$1 + default=$2 + while :; do + answer=$(ask "${question}" "${default}") + case "${answer}" in + [Yy][Ee][Ss]|[Yy]) + return 0 + ;; + [Nn][Oo]|[Nn]) + return 1 + ;; + esac + echo "Please answer yes or no." + done +} + +check_db() { + DB=/var/db/spamd + if [ -f ${DB} ]; then + OWN=`ls -l ${DB} | awk '{print $3}'` + GRP=`ls -l ${DB} | awk '{print $4}'` + fi + if [ "x${OWN}" != "x${SPAMDUSER}" ]; then + echo "change ${BD} owner to ${SPAMDUSER}:" + /usr/sbin/chown ${SPAMDUSER} ${DB} + fi + if [ "x${GRP}" != "x${SPAMDGROUP}" ]; then + echo "change ${BD} owner to :${SPAMDUSER}" + /usr/sbin/chown :${SPAMDGROUP} ${DB} + fi +} + +check_service() { + local name number type comment + + name=$1 + number=$2 + type=$3 + comment=$4 + + FILE="/etc/services" + # check + OK=no + HAS_SERVICE=no + COUNT=1 + for i in `grep $name $FILE `; do + if [ $COUNT = 1 ] && [ X"$i" = X"$name" ]; then + HAS_SERVICE=yes + elif [ $COUNT = 2 ] && [ $HAS_SERVICE = yes ] && \ + [ X"$i" = X"$number/$type" ]; then + OK=yes + break + fi + COUNT=`expr ${COUNT} + 1` + done + # add an entry for SERVICE to /etc/services + if [ $OK = no ]; then + echo "This system has no entry for $name in ${FILE}" + if yesno "Would you like to add it automatically?" y; then + mv ${FILE} ${FILE}.bak + (grep -v $name ${FILE}.bak ; \ + echo "$name $number/$type # $comment") \ + >> ${FILE} + rm ${FILE}.bak + else + echo "Please add '$name $number/$type' into ${FILE}, and try again." + return 1 + fi + fi + return 0 +} + + +if [ "$2" = "PRE-INSTALL" ]; then + check_dbown=0 + if /usr/sbin/pw group show "${SPAMDGROUP}" 2>&1 >/dev/null; then + echo "You already have a \"${SPAMDGROUP}\" group, so I will use it." + else + echo "You need a \"${SPAMDGROUP}\" group." + if yesno "Would you like me to create it" "YES"; then + /usr/sbin/pw groupadd "${SPAMDGROUP}" -g "${SPAMDGID}" -h - || \ + /usr/sbin/pw groupadd "${SPAMDGROUP}" -h - || exit + echo "Done." + check_dbown=1 + else + echo "Please create the \"${SPAMDGROUP}\" group manually and try again." + exit 1 + fi + fi + + if /usr/sbin/pw user show "${SPAMDUSER}" 2>&1 >/dev/null; then + echo "You already have a \"${SPAMDUSER}\" user, so I will use it." + else + echo "You need a \"${SPAMDUSER}\" user." + if yesno "Would you like me to create it" "YES"; then + /usr/sbin/pw useradd "${SPAMDUSER}" -u "${SPAMDUID}" -g "${SPAMDGROUP}" -h - -d "${SPAMDDIR}" \ + -s /sbin/nologin -c "spamd pseudo-user" || \ + /usr/sbin/pw useradd "${SPAMDUSER}" -g "${SPAMDGROUP}" -h - -d "${SPAMDDIR}" \ + -s /sbin/nologin -c "spamd pseudo-user" || exit + check_dbown=1 + else + echo "Please create the \"${SPAMDUSER}\" user manually and try again." + exit 1 + fi + fi + + if [ ${check_dbown} -eq 1 ]; then + check_db + fi + + if ! check_service spamd 8025 tcp "spamd(8)"; then + exit 1 + fi + if ! check_service spamd-cfg 8026 tcp "spamd(8) configuration"; then + exit 1 + fi + if ! check_service spamd-sync 8025 udp "spamd(8) synchronisation"; then + exit 1 + fi + +fi diff -urN /usr/ports/mail/spamd/files/pkg-message.in /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pkg-message.in --- /usr/ports/mail/spamd/files/pkg-message.in Thu Jan 1 03:00:00 1970 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/files/pkg-message.in Sun Jun 3 18:49:28 2007 @@ -0,0 +1,42 @@ +********************************************************************** +To enable spamd you need: + +1) Enable spamd in /etc/rc.conf with the following line: + obspamd_enable="YES" + obspamlogd_enable="YES" + +2) Configuration template is available in %%PREFIX%%/etc/spamd as + spamd.conf.sample file. Copy then to spamd.conf file and + edit to suit your needs. + +3) mount fdescfs to /dev/fd with the following line in /etc/fstab + fdescfs /dev/fd fdescfs rw 0 0 + +4) Add following lines to the pf.conf(5) + + table persist + no rdr inet proto tcp from to any \ + port smtp + rdr pass inet proto tcp from any to any \ + port smtp -> 127.0.0.1 port spamd + + !!!!!!!!!!!! -- I M P O T A N T - N O T E S -- !!!!!!!!!!!!!!!!! + ! + ! changes in Ver. 4.1.x: + ! - UID/GID is reserved to: _spamd:_spamd + ! check the owner of /var/db/spamd + ! - greylisting is now the default + ! - paramer: -b is now blacklist (Ver. < 4.1.x it is bind address) + ! - paramer: -l is now listen address + ! - spamdb: format is now HASH, helo/ehlo is also stored in db + ! convert will be done at the first start of spamd + ! if you have scripts that use spamdb review this scripts + ! - config files: new location is %%PREFIX%%/etc/spamd + ! - spamtrapp addresses: remove the surrounding '< >' signs + ! - pfspamd.sh was renamed to the obspamd + ! - IPFW support (beta) added to the sources. + ! See %%PREFIX%%/%%DOCSDIR%%/spamd-ipfw.txt for usage manual. + ! + !!!!!!!!!!!! -- I M P O T A N T - N O T E S -- !!!!!!!!!!!!!!!!! + +********************************************************************** diff -urN /usr/ports/mail/spamd/pkg-descr /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-descr --- /usr/ports/mail/spamd/pkg-descr Wed Nov 8 06:03:20 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-descr Tue Apr 10 11:41:43 2007 @@ -1,17 +1,21 @@ -Tarpits like spamd are fake SMTP servers, which accept connections but don't -deliver mail. Instead, they keep the connections open and reply very slowly. -If the peer is patient enough to actually complete the SMTP dialogue (which -will take ten minutes or more), the tarpit returns a 'temporary error' code -(4xx), which indicates that the mail could not be delivered successfully and -that the sender should keep the mail in his queue and retry again later. If -he does, the same procedure repeats. Until, after several attempts, wasting -both his queue space and socket handles for several days, he gives up. The -resources I have to waste to do this are minimal. +Spamd is a fake sendmail(8)-like daemon which rejects false mail. It is +designed to be very efficient so that it does not slow down the receiving +machine. -If the sender is badly configured, an uncooperative recipient might actually -delay his entire queue handling for several minutes each time he connects to -the tarpit. And many spammers use badly configured open relays +spamd considers sending hosts to be of three types: -WWW: http://www.OpenBSD.org/spamd/ + blacklisted hosts are redirected to spamd and tarpitted i.e. they are + communicated with very slowly to consume the sender's resources. Mail is + rejected with either a 450 or 550 error message. A blacklisted host will not + be allowed to talk to a real mail server. + + whitelisted hosts do not talk to spamd. Their connections are instead sent to + a real mail server, such as sendmail(8). + + greylisted hosts are redirected to spamd, but spamd has not yet decided if + they are likely spammers. They are given a temporary failure message by spamd + when they try to deliver mail. + +WWW: http://freebsdspamd.berlios.de/ -Max diff -urN /usr/ports/mail/spamd/pkg-install /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-install --- /usr/ports/mail/spamd/pkg-install Tue Sep 30 02:01:21 2003 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-install Thu Jan 1 03:00:00 1970 @@ -1,84 +0,0 @@ -#!/bin/sh -# an installation script for spamd copied from pf_freebsd - -ask() { - local question default answer - - question=$1 - default=$2 - if [ -z "${PACKAGE_BUILDING}" ]; then - read -p "${question} (y/n) [${default}]? " answer - fi - if [ x${answer} = x ]; then - answer=${default} - fi - echo ${answer} -} - -yesno() { - local dflt question answer - - question=$1 - dflt=$2 - while :; do - answer=$(ask "${question}" "${dflt}") - case "${answer}" in - [Yy]*) return 0;; - [Nn]*) return 1;; - esac - echo "Please answer yes or no." - done -} - -check_service() { - local name number type comment - - name=$1 - number=$2 - type=$3 - comment=$4 - - FILE="/etc/services" - # check - OK=no - HAS_SERVICE=no - COUNT=1 - for i in `grep $name $FILE `; do - if [ $COUNT = 1 ] && [ X"$i" = X"$name" ]; then - HAS_SERVICE=yes - elif [ $COUNT = 2 ] && [ $HAS_SERVICE = yes ] && \ - [ X"$i" = X"$number/$type" ]; then - OK=yes - break - fi - COUNT=`expr ${COUNT} + 1` - done - # add an entry for SERVICE to /etc/services - if [ $OK = no ]; then - echo "This system has no entry for $name in ${FILE}" - if yesno "Would you like to add it automatically?" y; then - mv ${FILE} ${FILE}.bak - (grep -v $name ${FILE}.bak ; \ - echo "$name $number/$type # $comment") \ - >> ${FILE} - rm ${FILE}.bak - else - echo "Please add '$name $number/$type' into ${FILE}, and try again." - return 1 - fi - fi - return 0 -} - -case $2 in -PRE-INSTALL) - - if ! check_service spamd 8025 tcp "# spamd(8)"; then - exit 1 - fi - if ! check_service spamd-cfg 8026 tcp "# spamd(8) configuration"; then - exit 1 - fi - ;; - -esac diff -urN /usr/ports/mail/spamd/pkg-message /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-message --- /usr/ports/mail/spamd/pkg-message Thu Jan 13 04:54:46 2005 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-message Thu Jan 1 03:00:00 1970 @@ -1,9 +0,0 @@ -++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -In order to use spamd greylisting feature you have to have a mounted fdescfs(5) -at /dev/fd. This is done by adding: - - fdescfs /dev/fd fdescfs rw 0 0 - -to /etc/fstab. You may need either a customised kernel, or kldload the fdescfs -kernel module. -++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ diff -urN /usr/ports/mail/spamd/pkg-plist /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-plist --- /usr/ports/mail/spamd/pkg-plist Tue May 2 11:54:50 2006 +++ /home/samm/src/bsdspamd-orig/freebsdspamd/port/spamd/pkg-plist Thu Jan 1 03:00:00 1970 @@ -1,5 +0,0 @@ -libexec/spamd -libexec/spamlogd -sbin/spamd-setup -sbin/spamdb -etc/spamd.conf.sample --------------000201060000070301060405-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 17:26:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC19816A469; Sun, 3 Jun 2007 17:26:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C353113C45B; Sun, 3 Jun 2007 17:26:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53HQCgE006483; Sun, 3 Jun 2007 17:26:12 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53HQC67006479; Sun, 3 Jun 2007 17:26:12 GMT (envelope-from linimon) Date: Sun, 3 Jun 2007 17:26:12 GMT From: Mark Linimon Message-Id: <200706031726.l53HQC67006479@freefall.freebsd.org> To: bf2006a@yahoo.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113283: [PATCH] two patches for net/socat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 17:26:13 -0000 Synopsis: [PATCH] two patches for net/socat State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun Jun 3 17:26:00 UTC 2007 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=113283 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 17:32:43 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A42B16A400; Sun, 3 Jun 2007 17:32:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 738C813C43E; Sun, 3 Jun 2007 17:32:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53HWh5E008461; Sun, 3 Jun 2007 17:32:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53HWhim008457; Sun, 3 Jun 2007 17:32:43 GMT (envelope-from linimon) Date: Sun, 3 Jun 2007 17:32:43 GMT From: Mark Linimon Message-Id: <200706031732.l53HWhim008457@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Cc: Subject: Re: ports/113295: net-im/kopete: pleawse add 'make config' to choose kopete plugins to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 17:32:43 -0000 Old Synopsis: make config, im ports, to choose kopete plugins to install New Synopsis: net-im/kopete: pleawse add 'make config' to choose kopete plugins to install Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jun 3 17:32:12 UTC 2007 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=113295 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A56016A468 for ; Sun, 3 Jun 2007 18:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4D75D13C46A for ; Sun, 3 Jun 2007 18:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie2Wl014674 for ; Sun, 3 Jun 2007 18:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie2SC014673; Sun, 3 Jun 2007 18:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:02 GMT Resent-Message-Id: <200706031840.l53Ie2SC014673@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 87B0816A41F for ; Sun, 3 Jun 2007 18:30:49 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa05.dion.ne.jp (msa05.dion.ne.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 250F913C45B for ; Sun, 3 Jun 2007 18:30:49 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa105.dion.ne.jp (DION MAIL) with ESMTP id 621F8538037 for ; Mon, 4 Jun 2007 03:30:40 +0900 (JST) Message-Id: <20070604033008.0c616551.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:08 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113297: Update port: audio/alienwah X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:02 -0000 >Number: 113297 >Category: ports >Synopsis: Update port: audio/alienwah >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Fix build with gcc4 New file: files/patch-aw.cpp >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/alienwah/Makefile audio/alienwah/Makefile --- /usr/ports/audio/alienwah/Makefile Sat May 26 07:59:37 2007 +++ audio/alienwah/Makefile Sat May 26 21:22:16 2007 @@ -17,17 +17,11 @@ BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa USE_GMAKE= yes -USE_LDCONFIG= yes -PLIST_FILES= lib/ladspa/aw.so MAKE_ARGS= CPP="${CXX}" CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include -fPIC" -.include - -.if ${OSVERSION} >= 700042 -BROKEN= Broken with gcc 4.2 -.endif +PLIST_FILES= lib/ladspa/aw.so do-install: - @${INSTALL_DATA} ${WRKSRC}/aw.so ${LOCALBASE}/lib/ladspa + ${INSTALL_DATA} ${WRKSRC}/aw.so ${LOCALBASE}/lib/ladspa -.include +.include diff -urN /usr/ports/audio/alienwah/files/patch-aw.cpp audio/alienwah/files/patch-aw.cpp --- /usr/ports/audio/alienwah/files/patch-aw.cpp Thu Jan 1 09:00:00 1970 +++ audio/alienwah/files/patch-aw.cpp Sat May 26 22:34:01 2007 @@ -0,0 +1,199 @@ +--- aw.cpp.orig Sat Jan 26 02:51:03 2002 ++++ aw.cpp Sat May 26 22:33:51 2007 +@@ -85,6 +85,8 @@ + #define AW_INPUT2 6 + #define AW_OUTPUT2 7 + ++#define AW_NUMPORTS 8 ++ + /*****************************************************************************/ + /* Make number of samples represented by 'delay' proportional to + * the sample rate, such that delay=1 is 1 sample buffer at +@@ -139,21 +141,57 @@ + c2(float_complex(0,0)) { + } + ++friend LADSPA_Handle instantiateAW(const LADSPA_Descriptor *, ++ unsigned long SampleRate); ++friend void connectPortToAW(LADSPA_Handle instance, unsigned long port, ++ LADSPA_Data * datalocation); ++friend void activateAW(void * pvHandle); ++friend void runAW_Mono(LADSPA_Handle instance, unsigned long samplecount); ++friend void runAW_Stereo(LADSPA_Handle instance, unsigned long samplecount); ++friend void cleanupAW(void *pvHandle); ++ + /* +- * simply calls the constructor ++ * Munge some things based upon the settings passed. Set ++ * initial state. + */ +-friend LADSPA_Handle instantiateAW(const LADSPA_Descriptor *, +- unsigned long SampleRate) { ++void initState(int chans) { ++ inited = true; ++ freq = (float)lfreq; ++ feedback = ((float)lfeedback)/4 + 0.74; // whyfor? ++ if (feedback>0.999) feedback=0.999; ++ if (ldelay < 0) ldelay = 1; ++ // swh I think this is wrong delay = (unsigned int) (ldelay * samplerate * NORM); ++ delay = (unsigned int) ldelay; ++printf("delay %d\n", delay); ++ if (delay < 1) delay = 1; ++ if (delay > MAX_DELAY) delay = MAX_DELAY; ++ delaybuf = new float_complex[delay]; ++ if (chans == 2) { ++ delaybuf2 = new float_complex[MAX_DELAY+1]; ++ } ++ for (unsigned int i =0; ilfreq = *datalocation; +@@ -182,38 +220,16 @@ + * connect_port may be called before of after here, so we + * cannot rely upon port data for initialization + */ +-friend void activateAW(void * pvHandle) { +-} +- +-/* +- * Munge some things based upon the settings passed. Set +- * initial state. +- */ +-void initState(int chans) { +- inited = true; +- freq = (float)lfreq; +- feedback = ((float)lfeedback)/4 + 0.74; // whyfor? +- if (feedback>0.999) feedback=0.999; +- if (ldelay < 0) ldelay = 1; +- // swh I think this is wrong delay = (unsigned int) (ldelay * samplerate * NORM); +- delay = (unsigned int) ldelay; +-printf("delay %d\n", delay); +- if (delay < 1) delay = 1; +- if (delay > MAX_DELAY) delay = MAX_DELAY; +- delaybuf = new float_complex[delay]; +- if (chans == 2) { +- delaybuf2 = new float_complex[MAX_DELAY+1]; +- } +- for (unsigned int i =0; iPortCount + = 6; + portdesc +- = new LADSPA_PortDescriptor[6]; ++ = new LADSPA_PortDescriptor[AW_NUMPORTS]; + desc[plug]->PortDescriptors + = (const LADSPA_PortDescriptor *)portdesc; + portdesc[AW_FREQ] +@@ -358,7 +373,7 @@ + portdesc[AW_OUTPUT1] + = LADSPA_PORT_OUTPUT | LADSPA_PORT_AUDIO; + pnames +- = new char_ptr[6]; ++ = new char_ptr[AW_NUMPORTS]; + desc[plug]->PortNames + = (const char **)pnames; + pnames[AW_FREQ] +@@ -376,7 +391,7 @@ + + /* range hints */ + rangehints +- = new LADSPA_PortRangeHint[6]; ++ = new LADSPA_PortRangeHint[AW_NUMPORTS]; + desc[plug]->PortRangeHints + = (const LADSPA_PortRangeHint *)rangehints; + +@@ -417,7 +432,7 @@ + desc[plug]->PortCount + = 8; + portdesc +- = new LADSPA_PortDescriptor[8]; ++ = new LADSPA_PortDescriptor[AW_NUMPORTS]; + desc[plug]->PortDescriptors + = (const LADSPA_PortDescriptor *)portdesc; + portdesc[AW_FREQ] +@@ -437,7 +452,7 @@ + portdesc[AW_OUTPUT1] + = LADSPA_PORT_OUTPUT | LADSPA_PORT_AUDIO; + pnames +- = new char_ptr[8]; ++ = new char_ptr[AW_NUMPORTS]; + desc[plug]->PortNames + = (const char **)pnames; + pnames[AW_FREQ] +@@ -459,7 +474,7 @@ + + /* range hints */ + rangehints +- = new LADSPA_PortRangeHint[8]; ++ = new LADSPA_PortRangeHint[AW_NUMPORTS]; + desc[plug]->PortRangeHints + = (const LADSPA_PortRangeHint *)rangehints; + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F390E16A46C for ; Sun, 3 Jun 2007 18:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BE61213C46E for ; Sun, 3 Jun 2007 18:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie269014727 for ; Sun, 3 Jun 2007 18:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie2An014726; Sun, 3 Jun 2007 18:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:02 GMT Resent-Message-Id: <200706031840.l53Ie2An014726@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33E6816A41F for ; Sun, 3 Jun 2007 18:30:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa05.dion.ne.jp (msa05.dion.ne.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 06FA013C465 for ; Sun, 3 Jun 2007 18:30:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa105.dion.ne.jp (DION MAIL) with ESMTP id 13A8D538037 for ; Mon, 4 Jun 2007 03:30:51 +0900 (JST) Message-Id: <20070604033011.683dded5.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:11 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113298: Update port: editors/zile to 2.2.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:03 -0000 >Number: 113298 >Category: ports >Synopsis: Update port: editors/zile to 2.2.33 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 2.2.33 >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/zile/Makefile editors/zile/Makefile --- /usr/ports/editors/zile/Makefile Wed May 2 16:09:24 2007 +++ editors/zile/Makefile Sat Jun 2 20:32:28 2007 @@ -6,7 +6,7 @@ # PORTNAME= zile -PORTVERSION= 2.2.31 +PORTVERSION= 2.2.33 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -urN /usr/ports/editors/zile/distinfo editors/zile/distinfo --- /usr/ports/editors/zile/distinfo Wed May 2 16:09:24 2007 +++ editors/zile/distinfo Sat Jun 2 20:34:12 2007 @@ -1,3 +1,3 @@ -MD5 (zile-2.2.31.tar.gz) = 590607dbdf1898ff0420ccde52ada3ed -SHA256 (zile-2.2.31.tar.gz) = 41c6f66852525575de08ae5cc6cfb9625bdd6da41c6ef06f5618c1ab108385ac -SIZE (zile-2.2.31.tar.gz) = 342472 +MD5 (zile-2.2.33.tar.gz) = c4575099ae9eb743e523ed01433e0db5 +SHA256 (zile-2.2.33.tar.gz) = 23cbea98360c711c1ed2aa3ae07c099d32ca403e2485c587cd5d8866e65f2cc2 +SIZE (zile-2.2.33.tar.gz) = 342530 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D2CD16A46E for ; Sun, 3 Jun 2007 18:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3E9A413C4B7 for ; Sun, 3 Jun 2007 18:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie3uf014740 for ; Sun, 3 Jun 2007 18:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie3xt014739; Sun, 3 Jun 2007 18:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:03 GMT Resent-Message-Id: <200706031840.l53Ie3xt014739@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDF7716A421 for ; Sun, 3 Jun 2007 18:30:59 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa03.dion.ne.jp (msa03.dion.ne.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 8E27513C469 for ; Sun, 3 Jun 2007 18:30:59 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa103.dion.ne.jp (DION MAIL) with ESMTP id BD0A622C037 for ; Mon, 4 Jun 2007 03:30:56 +0900 (JST) Message-Id: <20070604033014.fae27a07.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:14 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113299: Update port: emulators/hatari to 0.95 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:03 -0000 >Number: 113299 >Category: ports >Synopsis: Update port: emulators/hatari to 0.95 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 0.95 New file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/hatari/Makefile emulators/hatari/Makefile --- /usr/ports/emulators/hatari/Makefile Sun May 20 13:23:52 2007 +++ emulators/hatari/Makefile Sun Jun 3 02:46:35 2007 @@ -6,21 +6,30 @@ # PORTNAME= hatari -PORTVERSION= 0.90 -PORTREVISION= 1 +PORTVERSION= 0.95 CATEGORIES= emulators -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= An Atari ST emulator -GNU_CONFIGURE= yes -CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -USE_GMAKE= yes +USE_GNOME= gnometarget USE_SDL= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --datadir=${DATADIR} + +MAN1= hatari.1 -PLIST_FILES= bin/hatari %%DATADIR%%/tos.img -PLIST_DIRS= %%DATADIR%% +post-install: + ${INSTALL_DATA} ${WRKSRC}/doc/hatari.1 ${MANPREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR} + @${MKDIR} ${DOCSDIR}/images + ${INSTALL_DATA} ${WRKSRC}/doc/images/*.png ${DOCSDIR}/images +.endif .include diff -urN /usr/ports/emulators/hatari/distinfo emulators/hatari/distinfo --- /usr/ports/emulators/hatari/distinfo Tue Sep 26 02:20:15 2006 +++ emulators/hatari/distinfo Sun Jun 3 02:04:19 2007 @@ -1,3 +1,3 @@ -MD5 (hatari-0.90.tar.gz) = 2e5d1e329ebbf6c75ccab8c4f9a78f11 -SHA256 (hatari-0.90.tar.gz) = 1dc883e06af223944c8bb5394134aa6f539623f5a31a505404e893c39e6cafda -SIZE (hatari-0.90.tar.gz) = 687029 +MD5 (hatari-0.95.tar.gz) = 5f1ca3f29e74654bf12e8afd42bb7d0a +SHA256 (hatari-0.95.tar.gz) = 9307321f9945117ce59f20f71ad7bdd26f96431b2aa203645967ebaf6c616237 +SIZE (hatari-0.95.tar.gz) = 809336 diff -urN /usr/ports/emulators/hatari/pkg-plist emulators/hatari/pkg-plist --- /usr/ports/emulators/hatari/pkg-plist Thu Jan 1 09:00:00 1970 +++ emulators/hatari/pkg-plist Sun Jun 3 02:50:04 2007 @@ -0,0 +1,27 @@ +bin/hatari +%%PORTDOCS%%%%DOCSDIR%%/alsa-midi.txt +%%PORTDOCS%%%%DOCSDIR%%/authors.txt +%%PORTDOCS%%%%DOCSDIR%%/changelog.txt +%%PORTDOCS%%%%DOCSDIR%%/compatibility.html +%%PORTDOCS%%%%DOCSDIR%%/images/devices.png +%%PORTDOCS%%%%DOCSDIR%%/images/discs.png +%%PORTDOCS%%%%DOCSDIR%%/images/fileselector.png +%%PORTDOCS%%%%DOCSDIR%%/images/joystick.png +%%PORTDOCS%%%%DOCSDIR%%/images/keyboard.png +%%PORTDOCS%%%%DOCSDIR%%/images/main.png +%%PORTDOCS%%%%DOCSDIR%%/images/memory.png +%%PORTDOCS%%%%DOCSDIR%%/images/screen.png +%%PORTDOCS%%%%DOCSDIR%%/images/sound.png +%%PORTDOCS%%%%DOCSDIR%%/images/system.png +%%PORTDOCS%%%%DOCSDIR%%/images/tos.png +%%PORTDOCS%%%%DOCSDIR%%/keymap-sample.txt +%%PORTDOCS%%%%DOCSDIR%%/manual.html +%%PORTDOCS%%%%DOCSDIR%%/memory-usage.txt +%%PORTDOCS%%%%DOCSDIR%%/readme.txt +%%PORTDOCS%%%%DOCSDIR%%/release-notes.txt +%%PORTDOCS%%%%DOCSDIR%%/todo.txt +%%DATADIR%%/hatari-icon.bmp +%%DATADIR%%/tos.img +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%/images +%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC90616A41F for ; Sun, 3 Jun 2007 18:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9117213C4B9 for ; Sun, 3 Jun 2007 18:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie3bq014753 for ; Sun, 3 Jun 2007 18:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie31Z014752; Sun, 3 Jun 2007 18:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:03 GMT Resent-Message-Id: <200706031840.l53Ie31Z014752@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1860216A400 for ; Sun, 3 Jun 2007 18:31:05 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa01.dion.ne.jp (msa01.dion.ne.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id BECE613C455 for ; Sun, 3 Jun 2007 18:31:04 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa101.dion.ne.jp (DION MAIL) with ESMTP id 4736E8A803F for ; Mon, 4 Jun 2007 03:31:01 +0900 (JST) Message-Id: <20070604033016.3b967d97.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:16 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113300: Update port: emulators/quasi88 to 0.63 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:03 -0000 >Number: 113300 >Category: ports >Synopsis: Update port: emulators/quasi88 to 0.63 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 0.63 >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/quasi88/Makefile emulators/quasi88/Makefile --- /usr/ports/emulators/quasi88/Makefile Sun May 20 13:49:42 2007 +++ emulators/quasi88/Makefile Sun Jun 3 01:37:52 2007 @@ -6,8 +6,7 @@ # PORTNAME= quasi88 -PORTVERSION= 0.6.2 -PORTREVISION= 1 +PORTVERSION= 0.6.3 CATEGORIES= emulators MASTER_SITES= http://www.117.ne.jp/~show/pc8801/ EXTRACT_SUFX= .tgz @@ -18,11 +17,12 @@ USE_XLIB= yes USE_GMAKE= yes MAKE_ENV= DATADIR="${DATADIR}" _CC="${CC}" _CFLAGS="${CFLAGS}" \ - _CXX="${CXX}" LD="${CXX}" + _CXX="${CXX}" LD="${CXX}" PROGRAM="${PORTNAME}" PORTDOCS= FAQ.TXT FORMAT.TXT GET-IMAGE.TXT HISTORY.TXT MANUAL.TXT \ QUASI88.TXT -PLIST_FILES= bin/quasi88 %%EXAMPLESDIR%%/quasi88.rc +PLIST_FILES= bin/quasi88 %%EXAMPLESDIR%%/keyconf.rc \ + %%EXAMPLESDIR%%/quasi88.rc PLIST_DIRS= %%EXAMPLESDIR%% .include @@ -43,17 +43,19 @@ s|~/quasi88|$${DATADIR}|g ; \ s|^LSB_|# LSB_|g ; \ s|^JOY|# JOY|g ; \ + s|^SDL_|# SDL_|g ; \ s|gcc|$${_CC}|g ; \ s|-O2|$${_CFLAGS}|g ; \ s|/usr/X11R6|$${X11BASE}|g ; \ s|g++|$${_CXX}|g ; \ - s|-lstdc++||g ; \ - s|^LD|# LD|g' ${WRKSRC}/Makefile + s|^CXXLIBS|# CXXLIBS|g ; \ + s|^LD|# LD|g ; \ + s|^PROGRAM|# PROGRAM|g' ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/quasi88 ${PREFIX}/bin @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/quasi88.rc ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/*.rc ${EXAMPLESDIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} diff -urN /usr/ports/emulators/quasi88/distinfo emulators/quasi88/distinfo --- /usr/ports/emulators/quasi88/distinfo Mon Mar 26 22:00:00 2007 +++ emulators/quasi88/distinfo Sun Jun 3 00:21:32 2007 @@ -1,3 +1,3 @@ -MD5 (quasi88-0.6.2.tgz) = 753d64d163eb4bcb4ea2e4db3c38c2f2 -SHA256 (quasi88-0.6.2.tgz) = f3408b673c05af0fa1c9100c5ad61905640ebccbee30d0246bb430071eb19d36 -SIZE (quasi88-0.6.2.tgz) = 696198 +MD5 (quasi88-0.6.3.tgz) = cf7d7d0b88e616d214ed19f9d7bca37e +SHA256 (quasi88-0.6.3.tgz) = 01814e62b33f78b98f8ea9a8073bebf17d61917dc2caa3d08ec88e6a9f169699 +SIZE (quasi88-0.6.3.tgz) = 732695 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54A5616A468 for ; Sun, 3 Jun 2007 18:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 34F2E13C44B for ; Sun, 3 Jun 2007 18:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie4jt014766 for ; Sun, 3 Jun 2007 18:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie3WR014765; Sun, 3 Jun 2007 18:40:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:04 GMT Resent-Message-Id: <200706031840.l53Ie3WR014765@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3436F16A400 for ; Sun, 3 Jun 2007 18:31:17 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa03.dion.ne.jp (msa03.dion.ne.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id A785413C458 for ; Sun, 3 Jun 2007 18:31:16 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa103.dion.ne.jp (DION MAIL) with ESMTP id 7534422C037 for ; Mon, 4 Jun 2007 03:31:07 +0900 (JST) Message-Id: <20070604033019.28e6f2ae.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:19 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113301: Update port: games/nighthawk to 3.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:05 -0000 >Number: 113301 >Category: ports >Synopsis: Update port: games/nighthawk to 3.0.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 3.0.0 New file: files/patch-src__opengl.cc Remove file: files/patch-configure files/patch-dsp_mixxer.c files/patch-src-nighthawk.cc files/patch-src-object.cc files/patch-src_sound-Makefile.in >How-To-Repeat: >Fix: diff -urN /usr/ports/games/nighthawk/Makefile games/nighthawk/Makefile --- /usr/ports/games/nighthawk/Makefile Sun May 27 22:36:56 2007 +++ games/nighthawk/Makefile Mon Jun 4 02:23:20 2007 @@ -6,38 +6,48 @@ # PORTNAME= nighthawk -PORTVERSION= 2.2 -PORTREVISION= 2 +PORTVERSION= 3.0.0 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - http://jsno.leal.com.au/rel/unix_projects/ +MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= games/arcade -EXTRACT_SUFX= -1.tar.gz MAINTAINER= ports@FreeBSD.org COMMENT= An X11 shoot-'em up which requires some lateral thinking -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-scores=/var/games/nighthawk.scores --enable-sound -USE_X_PREFIX= yes -USE_XPM= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +USE_BZIP2= yes +USE_GL= glut USE_GMAKE= yes -MAN6= nighthawk.6 +MAKE_ARGS= CC="${CC}" CPP="${CXX}" CC_FLAGS="${CXXFLAGS}" \ + LIB_FLAGS="${LDFLAGS}" -.include +MAN6= nighthawk.6 -.if ${OSVERSION} >= 700042 -BROKEN= Broken with gcc 4.2 -.endif +CFLAGS+= -DINSTALL_DIR=\\\"\${DATADIR}\\\" \ + -DSCORES_FILE=\\\"/var/games/nighthawk.scores\\\" \ + -I${X11BASE}/include +LDFLAGS= -lm -L${X11BASE}/lib -lX11 -lGL -lGLU -lglut post-patch: - ${REINPLACE_CMD} "s/malloc.h/stdlib.h/g" ${WRKSRC}/src/floor.cc \ - ${WRKSRC}/src/ship.cc ${WRKSRC}/src_sound/nighthawk_sound.c \ - ${WRKSRC}/src_sound/funkload.c ${WRKSRC}/src_sound/dsp_mixxer.c + ${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|make|$$(MAKE)|g ; \ + s|strip nighthawk||g' + ${REINPLACE_CMD} -e 's|||g' \ + ${WRKSRC}/src/util/mkprotos2.c + ${REINPLACE_CMD} -e 's|^|#|g' ${WRKSRC}/config.user -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/nighthawk ${PREFIX}/bin ${CHOWN} root:games ${PREFIX}/bin/nighthawk ${CHMOD} g+s ${PREFIX}/bin/nighthawk - ${SH} pkg-install ${PORTNAME} POST-INSTALL + ${INSTALL_DATA} ${WRKSRC}/doc/nighthawk.6 ${MANPREFIX}/man/man6 + @${MKDIR} ${DATADIR} + ${TAR} -C ${WRKSRC} --exclude ".xvpics" -cf - data | \ + ${TAR} -C ${DATADIR} --unlink -xf - + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR} + @${FIND} ${DATADIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} + @${FIND} ${DATADIR} -type d | ${XARGS} ${CHMOD} a+rx + @${SH} ${PKGINSTALL} ${PORTNAME} POST-INSTALL -.include +.include diff -urN /usr/ports/games/nighthawk/distinfo games/nighthawk/distinfo --- /usr/ports/games/nighthawk/distinfo Sun Jan 22 22:04:50 2006 +++ games/nighthawk/distinfo Sun May 27 17:31:08 2007 @@ -1,3 +1,3 @@ -MD5 (nighthawk-2.2-1.tar.gz) = a737ab6e82df6e077ea59ec7014782ad -SHA256 (nighthawk-2.2-1.tar.gz) = 739f154f7c2118879d9d7f5dc0c7d98e1564dc9ae79c864be5e3c04688820bf3 -SIZE (nighthawk-2.2-1.tar.gz) = 1079706 +MD5 (nighthawk-3.0.0.tar.bz2) = 47770851a5483684c2ca7fb9750a4ea6 +SHA256 (nighthawk-3.0.0.tar.bz2) = 16fc973bab4d8e708cf3edb0f46c164327a26720d1bd583d3e324b2210c6aa6a +SIZE (nighthawk-3.0.0.tar.bz2) = 654322 diff -urN /usr/ports/games/nighthawk/files/patch-configure games/nighthawk/files/patch-configure --- /usr/ports/games/nighthawk/files/patch-configure Sat Apr 7 14:30:42 2001 +++ games/nighthawk/files/patch-configure Thu Jan 1 09:00:00 1970 @@ -1,28 +0,0 @@ ---- configure.orig Wed Apr 4 14:35:14 2001 -+++ configure Wed Apr 4 14:35:41 2001 -@@ -3627,15 +3627,15 @@ - ### - ### Status - ### --echo "$ac_t""### Compile Options ###" 1>&AC_FD_MSG --echo "$ac_t""# prefix: $prefix" 1>&AC_FD_MSG --echo "$ac_t""# scores file: $SCORES_FILE" 1>&AC_FD_MSG --echo "$ac_t""# reduced sprites: $enable_red_sprites" 1>&AC_FD_MSG --echo "$ac_t""# sound: $enable_sound" 1>&AC_FD_MSG -+echo "$ac_t""### Compile Options ###" -+echo "$ac_t""# prefix: $prefix" -+echo "$ac_t""# scores file: $SCORES_FILE" -+echo "$ac_t""# reduced sprites: $enable_red_sprites" -+echo "$ac_t""# sound: $enable_sound" - if test x"$enable_sound" = xyes; then -- echo "$ac_t""# mono/stereo: $status_mono_stereo" 1>&AC_FD_MSG -- echo "$ac_t""# precision: $DEFAULT_PRECISION bit" 1>&AC_FD_MSG -- echo "$ac_t""# sampling rate: $DEFAULT_SAM_RATE Hz" 1>&AC_FD_MSG -- echo "$ac_t""# FX channels: $NO_FX_CHANNELS" 1>&AC_FD_MSG -+ echo "$ac_t""# mono/stereo: $status_mono_stereo" -+ echo "$ac_t""# precision: $DEFAULT_PRECISION bit" -+ echo "$ac_t""# sampling rate: $DEFAULT_SAM_RATE Hz" -+ echo "$ac_t""# FX channels: $NO_FX_CHANNELS" - fi --echo "$ac_t""# make tools: $enable_tools" 1>&AC_FD_MSG -+echo "$ac_t""# make tools: $enable_tools" diff -urN /usr/ports/games/nighthawk/files/patch-dsp_mixxer.c games/nighthawk/files/patch-dsp_mixxer.c --- /usr/ports/games/nighthawk/files/patch-dsp_mixxer.c Sat May 10 16:13:31 2003 +++ games/nighthawk/files/patch-dsp_mixxer.c Thu Jan 1 09:00:00 1970 @@ -1,14 +0,0 @@ ---- src_sound/dsp_mixxer.c.orig Sat May 10 00:11:13 2003 -+++ src_sound/dsp_mixxer.c Sat May 10 00:11:16 2003 -@@ -19,10 +19,8 @@ - #include - #include - #include --#ifdef Linux -+#if defined(Linux) || defined(FreeBSD) - #include --#elif FreeBSD -- #include - #endif - #include "funktracker_defs.h" - #include "funktracker.h" diff -urN /usr/ports/games/nighthawk/files/patch-src-nighthawk.cc games/nighthawk/files/patch-src-nighthawk.cc --- /usr/ports/games/nighthawk/files/patch-src-nighthawk.cc Sat Apr 7 14:30:42 2001 +++ games/nighthawk/files/patch-src-nighthawk.cc Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- src/nighthawk.cc.orig Wed Apr 4 14:23:09 2001 -+++ src/nighthawk.cc Wed Apr 4 14:23:19 2001 -@@ -116,7 +116,7 @@ - FILE *fp; - - if((fp = fopen(filename,mode)) != NULL) -- flock(fp->_fileno,LOCK_EX); -+ flock(fileno(fp),LOCK_EX); - return fp; - } - diff -urN /usr/ports/games/nighthawk/files/patch-src-object.cc games/nighthawk/files/patch-src-object.cc --- /usr/ports/games/nighthawk/files/patch-src-object.cc Tue Feb 4 22:47:16 2003 +++ games/nighthawk/files/patch-src-object.cc Thu Jan 1 09:00:00 1970 @@ -1,10 +0,0 @@ ---- src/object.cc.orig Wed Feb 5 00:17:43 2003 -+++ src/object.cc Wed Feb 5 00:17:59 2003 -@@ -14,6 +14,7 @@ - extern "C" { - #include - #include -+#include - #include - #include - #include diff -urN /usr/ports/games/nighthawk/files/patch-src__opengl.cc games/nighthawk/files/patch-src__opengl.cc --- /usr/ports/games/nighthawk/files/patch-src__opengl.cc Thu Jan 1 09:00:00 1970 +++ games/nighthawk/files/patch-src__opengl.cc Sun May 27 21:32:11 2007 @@ -0,0 +1,26 @@ +--- src/opengl.cc.orig Sat Jun 12 11:19:02 2004 ++++ src/opengl.cc Sun May 27 20:26:03 2007 +@@ -396,12 +396,11 @@ + /**************************************************************************** + * + ****************************************************************************/ +-PRIVATE void on_exit_h(int code, void *arg) ++PRIVATE void on_exit_h() + { + free_textures(); + +- if(!code) +- printf("See ya\n"); ++ printf("See ya\n"); + } + + /* +@@ -578,7 +577,7 @@ + { + int x, fs_f = 0; + +- on_exit(on_exit_h, 0); ++ atexit(on_exit_h); + glutInit(&argc, argv); + glutInitDisplayMode(mode); + diff -urN /usr/ports/games/nighthawk/files/patch-src_sound-Makefile.in games/nighthawk/files/patch-src_sound-Makefile.in --- /usr/ports/games/nighthawk/files/patch-src_sound-Makefile.in Sat Apr 7 14:30:42 2001 +++ games/nighthawk/files/patch-src_sound-Makefile.in Thu Jan 1 09:00:00 1970 @@ -1,23 +0,0 @@ ---- src_sound/Makefile.in.orig Wed Apr 4 15:30:06 2001 -+++ src_sound/Makefile.in Wed Apr 4 15:30:23 2001 -@@ -298,19 +298,7 @@ - -include $(srcdir)/Make.common - - host_safe: -- @if [ $(HOST_SAFE) = '1' ]; then \ -- echo "host is safe" >host_safe; \ -- else \ -- echo "***********************************************"; \ -- echo "This is not an INTEL based machine. As the Funktracker"; \ -- echo "format is in Intel byte sex (and i haven't yet made"; \ -- echo "provisions for other processors), trying to play"; \ -- echo "funktracker songs on this machine will be dangerous."; \ -- echo ""; \ -- echo "Refer to INSTALL file."; \ -- echo "***********************************************"; \ -- false; \ -- fi -+ echo "host is safe" >host_safe - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. diff -urN /usr/ports/games/nighthawk/pkg-plist games/nighthawk/pkg-plist --- /usr/ports/games/nighthawk/pkg-plist Sat Apr 7 14:30:42 2001 +++ games/nighthawk/pkg-plist Sun May 27 21:50:15 2007 @@ -1,253 +1,218 @@ bin/nighthawk -libexec/nighthawk_sound -share/nighthawk/data/Anoyle/Bridge.f -share/nighthawk/data/Anoyle/Bridge.m -share/nighthawk/data/Anoyle/Engineering.f -share/nighthawk/data/Anoyle/Engineering.m -share/nighthawk/data/Anoyle/Gunnery1.f -share/nighthawk/data/Anoyle/Gunnery1.m -share/nighthawk/data/Anoyle/Gunnery2.f -share/nighthawk/data/Anoyle/Gunnery2.m -share/nighthawk/data/Anoyle/Hull.f -share/nighthawk/data/Anoyle/Hull.m -share/nighthawk/data/Anoyle/Medical.f -share/nighthawk/data/Anoyle/Medical.m -share/nighthawk/data/Anoyle/chars -share/nighthawk/data/Anoyle/map.xpm -share/nighthawk/data/Discovery/Astronomy1.f -share/nighthawk/data/Discovery/Astronomy1.m -share/nighthawk/data/Discovery/Astronomy2.f -share/nighthawk/data/Discovery/Astronomy2.m -share/nighthawk/data/Discovery/Astrophys.f -share/nighthawk/data/Discovery/Astrophys.m -share/nighthawk/data/Discovery/Botany1.f -share/nighthawk/data/Discovery/Botany1.m -share/nighthawk/data/Discovery/Botany2.f -share/nighthawk/data/Discovery/Botany2.m -share/nighthawk/data/Discovery/Botany3.f -share/nighthawk/data/Discovery/Botany3.m -share/nighthawk/data/Discovery/Botany4.f -share/nighthawk/data/Discovery/Botany4.m -share/nighthawk/data/Discovery/Bridge.f -share/nighthawk/data/Discovery/Bridge.m -share/nighthawk/data/Discovery/Defense.f -share/nighthawk/data/Discovery/Defense.m -share/nighthawk/data/Discovery/Engineering.f -share/nighthawk/data/Discovery/Engineering.m -share/nighthawk/data/Discovery/chars -share/nighthawk/data/Discovery/map.xpm -share/nighthawk/data/Esperence/Bridge.f -share/nighthawk/data/Esperence/Bridge.m -share/nighthawk/data/Esperence/Cargo.f -share/nighthawk/data/Esperence/Cargo.m -share/nighthawk/data/Esperence/Dock.f -share/nighthawk/data/Esperence/Dock.m -share/nighthawk/data/Esperence/Engineering.f -share/nighthawk/data/Esperence/Engineering.m -share/nighthawk/data/Esperence/Gunnery1.f -share/nighthawk/data/Esperence/Gunnery1.m -share/nighthawk/data/Esperence/Gunnery2.f -share/nighthawk/data/Esperence/Gunnery2.m -share/nighthawk/data/Esperence/Gunnery3.f -share/nighthawk/data/Esperence/Gunnery3.m -share/nighthawk/data/Esperence/Hull.f -share/nighthawk/data/Esperence/Hull.m -share/nighthawk/data/Esperence/chars -share/nighthawk/data/Esperence/map.xpm -share/nighthawk/data/Friendship/Bridge.f -share/nighthawk/data/Friendship/Bridge.m -share/nighthawk/data/Friendship/Decoy.f -share/nighthawk/data/Friendship/Decoy.m -share/nighthawk/data/Friendship/Dock.f -share/nighthawk/data/Friendship/Dock.m -share/nighthawk/data/Friendship/Engineering.f -share/nighthawk/data/Friendship/Engineering.m -share/nighthawk/data/Friendship/Gunnery1.f -share/nighthawk/data/Friendship/Gunnery1.m -share/nighthawk/data/Friendship/Gunnery2.f -share/nighthawk/data/Friendship/Gunnery2.m -share/nighthawk/data/Friendship/Gunnery3.f -share/nighthawk/data/Friendship/Gunnery3.m -share/nighthawk/data/Friendship/Hull.f -share/nighthawk/data/Friendship/Hull.m -share/nighthawk/data/Friendship/chars -share/nighthawk/data/Friendship/map.xpm -share/nighthawk/data/Haldeck/Bridge.f -share/nighthawk/data/Haldeck/Bridge.m -share/nighthawk/data/Haldeck/Cargo.f -share/nighthawk/data/Haldeck/Cargo.m -share/nighthawk/data/Haldeck/Engineering.f -share/nighthawk/data/Haldeck/Engineering.m -share/nighthawk/data/Haldeck/Quarters.f -share/nighthawk/data/Haldeck/Quarters.m -share/nighthawk/data/Haldeck/chars -share/nighthawk/data/Haldeck/map.xpm -share/nighthawk/data/Mearkat/Bridge.f -share/nighthawk/data/Mearkat/Bridge.m -share/nighthawk/data/Mearkat/Hull.f -share/nighthawk/data/Mearkat/Hull.m -share/nighthawk/data/Mearkat/chars -share/nighthawk/data/Mearkat/map.xpm -share/nighthawk/data/Ophukus/Bridge.f -share/nighthawk/data/Ophukus/Bridge.m -share/nighthawk/data/Ophukus/Dock.f -share/nighthawk/data/Ophukus/Dock.m -share/nighthawk/data/Ophukus/Engineering.f -share/nighthawk/data/Ophukus/Engineering.m -share/nighthawk/data/Ophukus/Trauma1.f -share/nighthawk/data/Ophukus/Trauma1.m -share/nighthawk/data/Ophukus/Trauma2.f -share/nighthawk/data/Ophukus/Trauma2.m -share/nighthawk/data/Ophukus/chars -share/nighthawk/data/Ophukus/map.xpm -share/nighthawk/data/Seafarer/Bridge.f -share/nighthawk/data/Seafarer/Bridge.m -share/nighthawk/data/Seafarer/Cargo1.f -share/nighthawk/data/Seafarer/Cargo1.m -share/nighthawk/data/Seafarer/Cargo2.f -share/nighthawk/data/Seafarer/Cargo2.m -share/nighthawk/data/Seafarer/Cargo3.f -share/nighthawk/data/Seafarer/Cargo3.m -share/nighthawk/data/Seafarer/Engineering.f -share/nighthawk/data/Seafarer/Engineering.m -share/nighthawk/data/Seafarer/Quarters.f -share/nighthawk/data/Seafarer/Quarters.m -share/nighthawk/data/Seafarer/chars -share/nighthawk/data/Seafarer/map.xpm -share/nighthawk/data/Tobruk/Bridge.f -share/nighthawk/data/Tobruk/Bridge.m -share/nighthawk/data/Tobruk/Dock.f -share/nighthawk/data/Tobruk/Dock.m -share/nighthawk/data/Tobruk/Hull.f -share/nighthawk/data/Tobruk/Hull.m -share/nighthawk/data/Tobruk/chars -share/nighthawk/data/Tobruk/map.xpm -share/nighthawk/data/Zaxon/Bridge.f -share/nighthawk/data/Zaxon/Bridge.m -share/nighthawk/data/Zaxon/Cargo.f -share/nighthawk/data/Zaxon/Cargo.m -share/nighthawk/data/Zaxon/Comms.f -share/nighthawk/data/Zaxon/Comms.m -share/nighthawk/data/Zaxon/Decoy.f -share/nighthawk/data/Zaxon/Decoy.m -share/nighthawk/data/Zaxon/Dock.f -share/nighthawk/data/Zaxon/Dock.m -share/nighthawk/data/Zaxon/Engineering.f -share/nighthawk/data/Zaxon/Engineering.m -share/nighthawk/data/Zaxon/Gunnery1.f -share/nighthawk/data/Zaxon/Gunnery1.m -share/nighthawk/data/Zaxon/Gunnery2.f -share/nighthawk/data/Zaxon/Gunnery2.m -share/nighthawk/data/Zaxon/Hull.f -share/nighthawk/data/Zaxon/Hull.m -share/nighthawk/data/Zaxon/Medical.f -share/nighthawk/data/Zaxon/Medical.m -share/nighthawk/data/Zaxon/chars -share/nighthawk/data/Zaxon/map.xpm -share/nighthawk/data/fx/6xx_voice.8 -share/nighthawk/data/fx/7xx_voice.8 -share/nighthawk/data/fx/8xx_voice.8 -share/nighthawk/data/fx/alert_siren.8 -share/nighthawk/data/fx/door_open.8 -share/nighthawk/data/fx/droid_evase.8 -share/nighthawk/data/fx/droid_hit_1.8 -share/nighthawk/data/fx/explosion_1.8 -share/nighthawk/data/fx/explosion_2.8 -share/nighthawk/data/fx/laser_buzz.8 -share/nighthawk/data/fx/laser_crocoite_benzol.8 -share/nighthawk/data/fx/laser_linarite.8 -share/nighthawk/data/fx/laser_tiger_eye.8 -share/nighthawk/data/fx/laser_uvarovite.8 -share/nighthawk/data/fx/low_shields.8 -share/nighthawk/data/fx/no_weapon.8 -share/nighthawk/data/fx/power_up.8 -share/nighthawk/data/fx/rand.8 -share/nighthawk/data/fx/select.8 -share/nighthawk/data/fx/ship_complete.8 -share/nighthawk/data/fx/snoise1.raw -share/nighthawk/data/fx/snoise2.raw -share/nighthawk/data/fx/snoise3.raw -share/nighthawk/data/fx/snoise4.raw -share/nighthawk/data/fx/snoise5.raw -share/nighthawk/data/fx/snoise6.raw -share/nighthawk/data/fx/snoise7_science.raw -share/nighthawk/data/fx/trans_terminated.8 -share/nighthawk/data/fx/weapon_reload.8 -share/nighthawk/data/music/Rescue_from_Vega.fnk -share/nighthawk/data/music/introtune.fnk -share/nighthawk/data/xpm/standard/credit_1.xpm -share/nighthawk/data/xpm/standard/credit_2.xpm -share/nighthawk/data/xpm/standard/credit_3.xpm -share/nighthawk/data/xpm/standard/credit_4.xpm -share/nighthawk/data/xpm/standard/credit_5.xpm -share/nighthawk/data/xpm/standard/credit_6.xpm -share/nighthawk/data/xpm/standard/demo_mode.xpm -share/nighthawk/data/xpm/standard/digits.xpm -share/nighthawk/data/xpm/standard/digits2.xpm -share/nighthawk/data/xpm/standard/docking_to_ship.xpm -share/nighthawk/data/xpm/standard/droid_ani.xpm -share/nighthawk/data/xpm/standard/explosion.xpm -share/nighthawk/data/xpm/standard/flr_base_cyan.xpm -share/nighthawk/data/xpm/standard/flr_chair_l_cyan.xpm -share/nighthawk/data/xpm/standard/flr_con_b_cyan.xpm -share/nighthawk/data/xpm/standard/flr_con_l_cyan.xpm -share/nighthawk/data/xpm/standard/flr_con_r_cyan.xpm -share/nighthawk/data/xpm/standard/flr_con_t_cyan.xpm -share/nighthawk/data/xpm/standard/flr_crosses_cyan.xpm -share/nighthawk/data/xpm/standard/flr_dashes_cyan.xpm -share/nighthawk/data/xpm/standard/flr_door_h_cyan.xpm -share/nighthawk/data/xpm/standard/flr_door_h_cyan_ani.xpm -share/nighthawk/data/xpm/standard/flr_door_v_cyan.xpm -share/nighthawk/data/xpm/standard/flr_door_v_cyan_ani.xpm -share/nighthawk/data/xpm/standard/flr_elev_cyan.xpm -share/nighthawk/data/xpm/standard/flr_pattern1_cyan.xpm -share/nighthawk/data/xpm/standard/flr_pattern2_cyan.xpm -share/nighthawk/data/xpm/standard/flr_pattern3_cyan.xpm -share/nighthawk/data/xpm/standard/flr_pattern4_cyan.xpm -share/nighthawk/data/xpm/standard/flr_sqrs_cyan.xpm -share/nighthawk/data/xpm/standard/flr_store1_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_bj_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_bl_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_br_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_h_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_v_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_lj_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_rj_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_tj_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_tl_cyan.xpm -share/nighthawk/data/xpm/standard/flr_wall_tr_cyan.xpm -share/nighthawk/data/xpm/standard/intro_back_1.xpm -share/nighthawk/data/xpm/standard/intro_back_2.xpm -share/nighthawk/data/xpm/standard/intro_back_3.xpm -share/nighthawk/data/xpm/standard/intro_back_4.xpm -share/nighthawk/data/xpm/standard/laser_cb.xpm -share/nighthawk/data/xpm/standard/laser_l.xpm -share/nighthawk/data/xpm/standard/laser_te.xpm -share/nighthawk/data/xpm/standard/laser_uv.xpm -share/nighthawk/data/xpm/standard/neg.xpm -share/nighthawk/data/xpm/standard/nothing.xpm -share/nighthawk/data/xpm/standard/ntitle.xpm -share/nighthawk/data/xpm/standard/paradroid_ani.xpm -share/nighthawk/data/xpm/standard/paused.xpm -share/nighthawk/data/xpm/standard/power_bay.xpm -share/nighthawk/data/xpm/standard/ship_complete.xpm -share/nighthawk/data/xpm/standard/trans_terminated.xpm -share/nighthawk/data/xpm/xpm.i -share/nighthawk/data/ctrl.d -share/nighthawk/data/demo.d -@dirrm share/nighthawk/data/Anoyle -@dirrm share/nighthawk/data/Discovery -@dirrm share/nighthawk/data/Esperence -@dirrm share/nighthawk/data/Friendship -@dirrm share/nighthawk/data/Haldeck -@dirrm share/nighthawk/data/Mearkat -@dirrm share/nighthawk/data/Ophukus -@dirrm share/nighthawk/data/Seafarer -@dirrm share/nighthawk/data/Tobruk -@dirrm share/nighthawk/data/Zaxon -@dirrm share/nighthawk/data/fx -@dirrm share/nighthawk/data/music -@dirrm share/nighthawk/data/xpm/standard -@dirrm share/nighthawk/data/xpm -@dirrm share/nighthawk/data -@dirrm share/nighthawk +%%DATADIR%%/data/Anoyle/Bridge.f +%%DATADIR%%/data/Anoyle/Bridge.m +%%DATADIR%%/data/Anoyle/Engineering.f +%%DATADIR%%/data/Anoyle/Engineering.m +%%DATADIR%%/data/Anoyle/Gunnery1.f +%%DATADIR%%/data/Anoyle/Gunnery1.m +%%DATADIR%%/data/Anoyle/Gunnery2.f +%%DATADIR%%/data/Anoyle/Gunnery2.m +%%DATADIR%%/data/Anoyle/Hull.f +%%DATADIR%%/data/Anoyle/Hull.m +%%DATADIR%%/data/Anoyle/Medical.f +%%DATADIR%%/data/Anoyle/Medical.m +%%DATADIR%%/data/Anoyle/chars +%%DATADIR%%/data/Anoyle/map.xpm +%%DATADIR%%/data/Discovery/Astronomy1.f +%%DATADIR%%/data/Discovery/Astronomy1.m +%%DATADIR%%/data/Discovery/Astronomy2.f +%%DATADIR%%/data/Discovery/Astronomy2.m +%%DATADIR%%/data/Discovery/Astrophys.f +%%DATADIR%%/data/Discovery/Astrophys.m +%%DATADIR%%/data/Discovery/Botany1.f +%%DATADIR%%/data/Discovery/Botany1.m +%%DATADIR%%/data/Discovery/Botany2.f +%%DATADIR%%/data/Discovery/Botany2.m +%%DATADIR%%/data/Discovery/Botany3.f +%%DATADIR%%/data/Discovery/Botany3.m +%%DATADIR%%/data/Discovery/Botany4.f +%%DATADIR%%/data/Discovery/Botany4.m +%%DATADIR%%/data/Discovery/Bridge.f +%%DATADIR%%/data/Discovery/Bridge.m +%%DATADIR%%/data/Discovery/Defense.f +%%DATADIR%%/data/Discovery/Defense.m +%%DATADIR%%/data/Discovery/Engineering.f +%%DATADIR%%/data/Discovery/Engineering.m +%%DATADIR%%/data/Discovery/chars +%%DATADIR%%/data/Discovery/map.xpm +%%DATADIR%%/data/Esperence/Bridge.f +%%DATADIR%%/data/Esperence/Bridge.m +%%DATADIR%%/data/Esperence/Cargo.f +%%DATADIR%%/data/Esperence/Cargo.m +%%DATADIR%%/data/Esperence/Dock.f +%%DATADIR%%/data/Esperence/Dock.m +%%DATADIR%%/data/Esperence/Engineering.f +%%DATADIR%%/data/Esperence/Engineering.m +%%DATADIR%%/data/Esperence/Gunnery1.f +%%DATADIR%%/data/Esperence/Gunnery1.m +%%DATADIR%%/data/Esperence/Gunnery2.f +%%DATADIR%%/data/Esperence/Gunnery2.m +%%DATADIR%%/data/Esperence/Gunnery3.f +%%DATADIR%%/data/Esperence/Gunnery3.m +%%DATADIR%%/data/Esperence/Hull.f +%%DATADIR%%/data/Esperence/Hull.m +%%DATADIR%%/data/Esperence/chars +%%DATADIR%%/data/Esperence/map.xpm +%%DATADIR%%/data/Friendship/Bridge.f +%%DATADIR%%/data/Friendship/Bridge.m +%%DATADIR%%/data/Friendship/Decoy.f +%%DATADIR%%/data/Friendship/Decoy.m +%%DATADIR%%/data/Friendship/Dock.f +%%DATADIR%%/data/Friendship/Dock.m +%%DATADIR%%/data/Friendship/Engineering.f +%%DATADIR%%/data/Friendship/Engineering.m +%%DATADIR%%/data/Friendship/Gunnery1.f +%%DATADIR%%/data/Friendship/Gunnery1.m +%%DATADIR%%/data/Friendship/Gunnery2.f +%%DATADIR%%/data/Friendship/Gunnery2.m +%%DATADIR%%/data/Friendship/Gunnery3.f +%%DATADIR%%/data/Friendship/Gunnery3.m +%%DATADIR%%/data/Friendship/Hull.f +%%DATADIR%%/data/Friendship/Hull.m +%%DATADIR%%/data/Friendship/chars +%%DATADIR%%/data/Friendship/map.xpm +%%DATADIR%%/data/Haldeck/Bridge.f +%%DATADIR%%/data/Haldeck/Bridge.m +%%DATADIR%%/data/Haldeck/Cargo.f +%%DATADIR%%/data/Haldeck/Cargo.m +%%DATADIR%%/data/Haldeck/Engineering.f +%%DATADIR%%/data/Haldeck/Engineering.m +%%DATADIR%%/data/Haldeck/Quarters.f +%%DATADIR%%/data/Haldeck/Quarters.m +%%DATADIR%%/data/Haldeck/chars +%%DATADIR%%/data/Haldeck/map.xpm +%%DATADIR%%/data/Mearkat/Bridge.f +%%DATADIR%%/data/Mearkat/Bridge.m +%%DATADIR%%/data/Mearkat/Hull.f +%%DATADIR%%/data/Mearkat/Hull.m +%%DATADIR%%/data/Mearkat/chars +%%DATADIR%%/data/Mearkat/map.xpm +%%DATADIR%%/data/Ophukus/Bridge.f +%%DATADIR%%/data/Ophukus/Bridge.m +%%DATADIR%%/data/Ophukus/Dock.f +%%DATADIR%%/data/Ophukus/Dock.m +%%DATADIR%%/data/Ophukus/Engineering.f +%%DATADIR%%/data/Ophukus/Engineering.m +%%DATADIR%%/data/Ophukus/Trauma1.f +%%DATADIR%%/data/Ophukus/Trauma1.m +%%DATADIR%%/data/Ophukus/Trauma2.f +%%DATADIR%%/data/Ophukus/Trauma2.m +%%DATADIR%%/data/Ophukus/chars +%%DATADIR%%/data/Ophukus/map.xpm +%%DATADIR%%/data/Seafarer/Bridge.f +%%DATADIR%%/data/Seafarer/Bridge.m +%%DATADIR%%/data/Seafarer/Cargo1.f +%%DATADIR%%/data/Seafarer/Cargo1.m +%%DATADIR%%/data/Seafarer/Cargo2.f +%%DATADIR%%/data/Seafarer/Cargo2.m +%%DATADIR%%/data/Seafarer/Cargo3.f +%%DATADIR%%/data/Seafarer/Cargo3.m +%%DATADIR%%/data/Seafarer/Engineering.f +%%DATADIR%%/data/Seafarer/Engineering.m +%%DATADIR%%/data/Seafarer/Quarters.f +%%DATADIR%%/data/Seafarer/Quarters.m +%%DATADIR%%/data/Seafarer/chars +%%DATADIR%%/data/Seafarer/map.xpm +%%DATADIR%%/data/Tobruk/Bridge.f +%%DATADIR%%/data/Tobruk/Bridge.m +%%DATADIR%%/data/Tobruk/Dock.f +%%DATADIR%%/data/Tobruk/Dock.m +%%DATADIR%%/data/Tobruk/Hull.f +%%DATADIR%%/data/Tobruk/Hull.m +%%DATADIR%%/data/Tobruk/chars +%%DATADIR%%/data/Tobruk/map.xpm +%%DATADIR%%/data/Zaxon/Bridge.f +%%DATADIR%%/data/Zaxon/Bridge.m +%%DATADIR%%/data/Zaxon/Cargo.f +%%DATADIR%%/data/Zaxon/Cargo.m +%%DATADIR%%/data/Zaxon/Comms.f +%%DATADIR%%/data/Zaxon/Comms.m +%%DATADIR%%/data/Zaxon/Decoy.f +%%DATADIR%%/data/Zaxon/Decoy.m +%%DATADIR%%/data/Zaxon/Dock.f +%%DATADIR%%/data/Zaxon/Dock.m +%%DATADIR%%/data/Zaxon/Engineering.f +%%DATADIR%%/data/Zaxon/Engineering.m +%%DATADIR%%/data/Zaxon/Gunnery1.f +%%DATADIR%%/data/Zaxon/Gunnery1.m +%%DATADIR%%/data/Zaxon/Gunnery2.f +%%DATADIR%%/data/Zaxon/Gunnery2.m +%%DATADIR%%/data/Zaxon/Hull.f +%%DATADIR%%/data/Zaxon/Hull.m +%%DATADIR%%/data/Zaxon/Medical.f +%%DATADIR%%/data/Zaxon/Medical.m +%%DATADIR%%/data/Zaxon/chars +%%DATADIR%%/data/Zaxon/map.xpm +%%DATADIR%%/data/ctrl.d +%%DATADIR%%/data/music/Rescue_from_Vega.fnk +%%DATADIR%%/data/xpm/font/font.xpm +%%DATADIR%%/data/xpm/standard/credit_6.xpm +%%DATADIR%%/data/xpm/standard/demo_mode.xpm +%%DATADIR%%/data/xpm/standard/digits.xpm +%%DATADIR%%/data/xpm/standard/digits2.xpm +%%DATADIR%%/data/xpm/standard/docking_to_ship.xpm +%%DATADIR%%/data/xpm/standard/droid_ani.xpm +%%DATADIR%%/data/xpm/standard/explosion.xpm +%%DATADIR%%/data/xpm/standard/flr_base_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_chair_l_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_con_b_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_con_l_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_con_r_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_con_t_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_crosses_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_dashes_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_door_h_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_door_h_cyan_ani.xpm +%%DATADIR%%/data/xpm/standard/flr_door_v_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_door_v_cyan_ani.xpm +%%DATADIR%%/data/xpm/standard/flr_elev_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_pattern1_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_pattern2_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_pattern3_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_pattern4_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_sqrs_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_store1_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_bj_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_bl_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_br_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_h_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_lj_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_rj_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_tj_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_tl_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_tr_cyan.xpm +%%DATADIR%%/data/xpm/standard/flr_wall_v_cyan.xpm +%%DATADIR%%/data/xpm/standard/intro_back_1.xpm +%%DATADIR%%/data/xpm/standard/intro_back_2.xpm +%%DATADIR%%/data/xpm/standard/intro_back_3.xpm +%%DATADIR%%/data/xpm/standard/intro_back_4.xpm +%%DATADIR%%/data/xpm/standard/laser_cb.xpm +%%DATADIR%%/data/xpm/standard/laser_l.xpm +%%DATADIR%%/data/xpm/standard/laser_te.xpm +%%DATADIR%%/data/xpm/standard/laser_uv.xpm +%%DATADIR%%/data/xpm/standard/neg.xpm +%%DATADIR%%/data/xpm/standard/nothing.xpm +%%DATADIR%%/data/xpm/standard/ntitle.xpm +%%DATADIR%%/data/xpm/standard/paradroid_ani.xpm +%%DATADIR%%/data/xpm/standard/paused.xpm +%%DATADIR%%/data/xpm/standard/power_bay.xpm +%%DATADIR%%/data/xpm/standard/ship_complete.xpm +%%DATADIR%%/data/xpm/standard/trans_terminated.xpm +%%DATADIR%%/data/xpm/xpm.i +@dirrm %%DATADIR%%/data/xpm/standard +@dirrm %%DATADIR%%/data/xpm/font +@dirrm %%DATADIR%%/data/xpm +@dirrm %%DATADIR%%/data/music +@dirrm %%DATADIR%%/data/Zaxon +@dirrm %%DATADIR%%/data/Tobruk +@dirrm %%DATADIR%%/data/Seafarer +@dirrm %%DATADIR%%/data/Ophukus +@dirrm %%DATADIR%%/data/Mearkat +@dirrm %%DATADIR%%/data/Haldeck +@dirrm %%DATADIR%%/data/Friendship +@dirrm %%DATADIR%%/data/Esperence +@dirrm %%DATADIR%%/data/Discovery +@dirrm %%DATADIR%%/data/Anoyle +@dirrm %%DATADIR%%/data +@dirrm %%DATADIR%% +@unexec if [ -s /var/games/nighthawk.scores ] || rm -f /var/games/nighthawk.scores >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFB8C16A41F for ; Sun, 3 Jun 2007 18:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9B7FC13C45B for ; Sun, 3 Jun 2007 18:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie5Xs014779 for ; Sun, 3 Jun 2007 18:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie5uQ014778; Sun, 3 Jun 2007 18:40:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:05 GMT Resent-Message-Id: <200706031840.l53Ie5uQ014778@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE7B416A469 for ; Sun, 3 Jun 2007 18:31:21 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa01.dion.ne.jp (msa01.dion.ne.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 917BC13C45D for ; Sun, 3 Jun 2007 18:31:21 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa101.dion.ne.jp (DION MAIL) with ESMTP id B1EAA8A803F for ; Mon, 4 Jun 2007 03:31:19 +0900 (JST) Message-Id: <20070604033022.37f09190.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:22 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113302: Update port: graphics/cbrpager to 0.9.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:05 -0000 >Number: 113302 >Category: ports >Synopsis: Update port: graphics/cbrpager to 0.9.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 0.9.15 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/cbrpager/Makefile graphics/cbrpager/Makefile --- /usr/ports/graphics/cbrpager/Makefile Sun May 20 13:50:58 2007 +++ graphics/cbrpager/Makefile Sun Jun 3 03:31:32 2007 @@ -7,11 +7,9 @@ # PORTNAME= cbrpager -PORTVERSION= 0.9.14 -PORTREVISION= 2 +PORTVERSION= 0.9.15 CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A viewer for cbr (comic book archive) files diff -urN /usr/ports/graphics/cbrpager/distinfo graphics/cbrpager/distinfo --- /usr/ports/graphics/cbrpager/distinfo Sat Nov 26 19:24:41 2005 +++ graphics/cbrpager/distinfo Sun Jun 3 03:32:26 2007 @@ -1,3 +1,3 @@ -MD5 (cbrpager-0.9.14.tar.gz) = 0ce88fc52025b44812d090d10244b2a4 -SHA256 (cbrpager-0.9.14.tar.gz) = 9c86a5668a2834f02ec44967737d6341c575e2a1deec76944f47be0292a3cfd7 -SIZE (cbrpager-0.9.14.tar.gz) = 118377 +MD5 (cbrpager-0.9.15.tar.gz) = ae0ded67962f06e0511dd7d4c4777e13 +SHA256 (cbrpager-0.9.15.tar.gz) = 9b407e514231b35bbef265f45fb259ca5762e0fb77344c2352722ac7329d5cce +SIZE (cbrpager-0.9.15.tar.gz) = 130934 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F30116A46B for ; Sun, 3 Jun 2007 18:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1BEE013C480 for ; Sun, 3 Jun 2007 18:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie5Fl014800 for ; Sun, 3 Jun 2007 18:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie5Aj014799; Sun, 3 Jun 2007 18:40:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:05 GMT Resent-Message-Id: <200706031840.l53Ie5Aj014799@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4ECC416A41F for ; Sun, 3 Jun 2007 18:31:26 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa05.dion.ne.jp (msa05.dion.ne.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 222F613C447 for ; Sun, 3 Jun 2007 18:31:26 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa105.dion.ne.jp (DION MAIL) with ESMTP id 4D15D538037 for ; Mon, 4 Jun 2007 03:31:24 +0900 (JST) Message-Id: <20070604033024.211130f4.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:24 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113303: Update port: science/euler X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:06 -0000 >Number: 113303 >Category: ports >Synopsis: Update port: science/euler >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Fix build with gcc4 New file: euler/files/patch-src__command.c >How-To-Repeat: >Fix: diff -urN /usr/ports/science/euler/Makefile science/euler/Makefile --- /usr/ports/science/euler/Makefile Sun May 27 12:26:19 2007 +++ science/euler/Makefile Sun May 27 14:08:39 2007 @@ -22,10 +22,6 @@ .include -.if ${OSVERSION} >= 700042 -BROKEN= Broken with gcc 4.2 -.endif - post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS/s|docs||g ; \ /^install-data-am/s|install-eulerdocDATA||g' ${WRKSRC}/Makefile.in diff -urN /usr/ports/science/euler/files/patch-src__command.c science/euler/files/patch-src__command.c --- /usr/ports/science/euler/files/patch-src__command.c Thu Jan 1 09:00:00 1970 +++ science/euler/files/patch-src__command.c Sun May 27 14:08:21 2007 @@ -0,0 +1,11 @@ +--- src/command.c.orig Mon Oct 24 09:38:24 2005 ++++ src/command.c Sun May 27 14:08:14 2007 +@@ -732,7 +732,7 @@ + } + + +-static int command_count; ++int command_count; + + commandtyp command_list[] = { + {"quit",c_quit,do_quit}, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE15516A46F for ; Sun, 3 Jun 2007 18:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A8AE813C487 for ; Sun, 3 Jun 2007 18:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie6u3014823 for ; Sun, 3 Jun 2007 18:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie6OL014818; Sun, 3 Jun 2007 18:40:06 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:06 GMT Resent-Message-Id: <200706031840.l53Ie6OL014818@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17A0416A41F for ; Sun, 3 Jun 2007 18:31:31 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa01.dion.ne.jp (msa01.dion.ne.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id DEBA013C457 for ; Sun, 3 Jun 2007 18:31:30 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa101.dion.ne.jp (DION MAIL) with ESMTP id 035D68A803F for ; Mon, 4 Jun 2007 03:31:28 +0900 (JST) Message-Id: <20070604033027.08e74077.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:27 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113304: Update port: science/kmovisto X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:07 -0000 >Number: 113304 >Category: ports >Synopsis: Update port: science/kmovisto >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Fix build >How-To-Repeat: >Fix: diff -urN /usr/ports/science/kmovisto/Makefile science/kmovisto/Makefile --- /usr/ports/science/kmovisto/Makefile Fri May 25 22:59:06 2007 +++ science/kmovisto/Makefile Sat May 26 14:22:19 2007 @@ -15,13 +15,12 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A real 3-D molecule viewer -BROKEN= Configure fails - USE_QT_VER= 3 USE_GL= yes USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ARGS= --x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CA8A16A474 for ; Sun, 3 Jun 2007 18:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 27EC513C4AD for ; Sun, 3 Jun 2007 18:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie6nI014842 for ; Sun, 3 Jun 2007 18:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie6aY014837; Sun, 3 Jun 2007 18:40:06 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:06 GMT Resent-Message-Id: <200706031840.l53Ie6aY014837@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF2E716A41F for ; Sun, 3 Jun 2007 18:31:35 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa05.dion.ne.jp (msa05.dion.ne.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id C23E413C447 for ; Sun, 3 Jun 2007 18:31:35 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa105.dion.ne.jp (DION MAIL) with ESMTP id DEC75538037 for ; Mon, 4 Jun 2007 03:31:33 +0900 (JST) Message-Id: <20070604033029.4a06708c.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:29 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113305: Update port: x11-toolkits/vdk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:07 -0000 >Number: 113305 >Category: ports >Synopsis: Update port: x11-toolkits/vdk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Fix build with gcc4 >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-toolkits/vdk/Makefile x11-toolkits/vdk/Makefile --- /usr/ports/x11-toolkits/vdk/Makefile Sun May 20 13:59:17 2007 +++ x11-toolkits/vdk/Makefile Mon Jun 4 02:03:21 2007 @@ -28,6 +28,14 @@ CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS= -L${LOCALBASE}/lib -lgnuregex ${PTHREAD_LIBS} +.include + +.if ${OSVERSION} > 502010 +GNU_REGEX_H= gnu/regex.h +.else +GNU_REGEX_H= gnuregex.h +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|CXXFLAGS="-s"|CXXFLAGS="$$CXXFLAGS"|g' ${WRKSRC}/configure @@ -35,7 +43,11 @@ @${REINPLACE_CMD} -e 's|-lpthread|${LDFLAGS}|g' ${WRKSRC}/${file} .endfor .for file in vdk/FileDialog.h vdk/gtksourcebuffer.h vdk/gtksourcetag.h - @${REINPLACE_CMD} -e 's|||g' ${WRKSRC}/${file} + @${REINPLACE_CMD} -e 's||<${GNU_REGEX_H}>|g' ${WRKSRC}/${file} .endfor + @${REINPLACE_CMD} -e \ + 's|VDKComboEntry::||g' ${WRKSRC}/vdk/vdkcomboentry.h + @${REINPLACE_CMD} -e \ + 's|VDKFileChooser::||g' ${WRKSRC}/vdk/vdkfilechooser.h -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:40:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B005C16A469 for ; Sun, 3 Jun 2007 18:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 94CC313C4B7 for ; Sun, 3 Jun 2007 18:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ie7X5014863 for ; Sun, 3 Jun 2007 18:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ie7wh014862; Sun, 3 Jun 2007 18:40:07 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:40:07 GMT Resent-Message-Id: <200706031840.l53Ie7wh014862@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44CF716A469 for ; Sun, 3 Jun 2007 18:31:41 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa01.dion.ne.jp (msa01.dion.ne.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 177A313C44B for ; Sun, 3 Jun 2007 18:31:41 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from localhost.localdomain (ZT066083.ppp.dion.ne.jp [59.128.66.83]) by msa101.dion.ne.jp (DION MAIL) with ESMTP id 91E2B8A803F for ; Mon, 4 Jun 2007 03:31:38 +0900 (JST) Message-Id: <20070604033031.f5ca5c0e.tkato432@yahoo.com> Date: Mon, 4 Jun 2007 03:30:31 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org X-Mailman-Approved-At: Sun, 03 Jun 2007 18:40:59 +0000 Cc: Subject: ports/113306: Update port: x11-wm/fluxspace X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:40:07 -0000 >Number: 113306 >Category: ports >Synopsis: Update port: x11-wm/fluxspace >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:40:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: >Description: - Fix build with gcc4 - Update MASTER_SITES and WWW: line New file: files/patch-src__PythonInterface.cc >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/fluxspace/Makefile x11-wm/fluxspace/Makefile --- /usr/ports/x11-wm/fluxspace/Makefile Sun May 27 12:28:41 2007 +++ x11-wm/fluxspace/Makefile Sun May 27 12:32:05 2007 @@ -9,7 +9,7 @@ PORTVERSION= 0.0.3 PORTREVISION= 3 CATEGORIES= x11-wm -MASTER_SITES= http://www.isomedia.com/homes/stevencooper/files/ +MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A window manager and workspace enhancer and integrator @@ -17,21 +17,16 @@ BUILD_DEPENDS= imlib2-config:${PORTSDIR}/graphics/imlib2 \ swig:${PORTSDIR}/devel/swig13 -USE_AUTOTOOLS= libtool:15 +USE_XLIB= yes USE_PYTHON= yes -GNU_CONFIGURE= yes USE_GMAKE= yes -USE_LDCONFIG= yes -USE_XLIB= yes +USE_AUTOTOOLS= libtool:15 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +USE_LDCONFIG= yes .include -.if ${OSVERSION} >= 700042 -BROKEN= Broken with gcc 4.2 -.endif - .if defined(WITH_IDESK) || exists(${X11BASE}/bin/idesk) RUN_DEPENDS+= idesk:${PORTSDIR}/x11/idesk .endif @@ -40,10 +35,10 @@ .endif pre-everything:: - @${ECHO_CMD} "WITH_IDESK - To install idesk" - @${ECHO_CMD} "WITH_ROX-FILER - To install rox-filer" + @${ECHO_MSG} "WITH_IDESK - To install idesk" + @${ECHO_MSG} "WITH_ROX-FILER - To install rox-filer" -post-install:: - @${CAT} pkg-message +post-install: + @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/x11-wm/fluxspace/files/patch-src__PythonInterface.cc x11-wm/fluxspace/files/patch-src__PythonInterface.cc --- /usr/ports/x11-wm/fluxspace/files/patch-src__PythonInterface.cc Thu Jan 1 09:00:00 1970 +++ x11-wm/fluxspace/files/patch-src__PythonInterface.cc Sun May 27 01:16:43 2007 @@ -0,0 +1,20 @@ +--- src/PythonInterface.cc.orig Fri Nov 22 15:24:42 2002 ++++ src/PythonInterface.cc Sun May 27 01:16:12 2007 +@@ -256,7 +256,7 @@ + class PythonInterfaceModule + { + public: +- PythonInterfaceModule::PythonInterfaceModule(const string& name_, PyObject* config_) ++ PythonInterfaceModule(const string& name_, PyObject* config_) + : name(name_), + next(NULL), + module(name_), +@@ -266,7 +266,7 @@ + FSInitialize = new MyPyFunctionPtr(module.dict.GetItemString("fluxlet_main")); + } + +- PythonInterfaceModule::~PythonInterfaceModule() ++ ~PythonInterfaceModule() + { + delete FSInitialize; + } diff -urN /usr/ports/x11-wm/fluxspace/pkg-descr x11-wm/fluxspace/pkg-descr --- /usr/ports/x11-wm/fluxspace/pkg-descr Mon Oct 6 14:47:28 2003 +++ x11-wm/fluxspace/pkg-descr Sun May 27 00:08:13 2007 @@ -7,4 +7,4 @@ the normal desktop capabilities to allow you to customize each workspace with its own panels, desktop icons and running applets. -WWW: http://www.isomedia.com/homes/stevencooper/projects/fluxspace.html +WWW: http://fluxspace.sourceforge.net/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:50:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7ED2116A421 for ; Sun, 3 Jun 2007 18:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6452013C4D9 for ; Sun, 3 Jun 2007 18:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Io5k8015673 for ; Sun, 3 Jun 2007 18:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Io54B015672; Sun, 3 Jun 2007 18:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:50:05 GMT Resent-Message-Id: <200706031850.l53Io54B015672@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5730516A50A for ; Sun, 3 Jun 2007 18:41:25 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id ED78E13C4B8 for ; Sun, 3 Jun 2007 18:41:24 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 7DED91CD65; Sun, 3 Jun 2007 20:41:23 +0200 (CEST) Message-Id: <20070603184123.7DED91CD65@palm.hoeg.nl> Date: Sun, 3 Jun 2007 20:41:23 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113308: audio/herrie: Bump to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:50:05 -0000 >Number: 113308 >Category: ports >Synopsis: audio/herrie: Bump to 1.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:50:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: A new version of Herrie is available, namely 1.7. This release includes the following features: - libmd is used instead of OpenSSL; Herrie only used it for MD5 hashing support. This allows us to disable Scrobbler support as well. This used to be impossible, because USE_OPENSSL conflicted with OPTIONS. - Unsubmitted Scrobbler tracks are stored on disk, ready to be submitted next time. - A Swedish translation has been added. >How-To-Repeat: >Fix: Apply the following patch. It adds a HTTP option. It also sets SNDFILE option to off by default, as it isn't really useful for John Doe. --- audio/herrie/Makefile Thu Apr 19 12:53:24 2007 +++ audio/herrie/Makefile Sun Jun 3 20:34:51 2007 @@ -6,7 +6,7 @@ # PORTNAME= herrie -PORTVERSION= 1.6.1 +PORTVERSION= 1.7 CATEGORIES= audio MASTER_SITES= http://herrie.info/distfiles/ \ http://www.il.fontys.nl/~ed/projects/herrie/distfiles/ \ @@ -15,19 +15,17 @@ MAINTAINER= ed@fxq.nl COMMENT= A small command line interface music player -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl - HAS_CONFIGURE= yes CONFIGURE_ENV+= PREFIX=${PREFIX} USE_BZIP2= yes -USE_OPENSSL= yes USE_GNOME= glib20 OPTIONS= MAD "MAD MP3 support" on \ VORBIS "Ogg Vorbis support" on \ - SNDFILE "libsndfile support" on \ + SNDFILE "libsndfile support" off \ MODPLUG "libmodplug support" off \ + HTTP "HTTP streams and AudioScrobbler support" on \ LIBAO "LibAO support (breaks chroot)" off \ XCURSES "Build XCurses version" off \ XSPF "Support for XSPF playlists" on @@ -61,6 +59,11 @@ LIB_DEPENDS+= modplug:${PORTSDIR}/audio/libmodplug .else CONFIGURE_ARGS+=no_modplug +.endif +.if !defined(WITHOUT_HTTP) +LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +.else +CONFIGURE_ARGS+=no_http no_scrobbler .endif .if !defined(WITHOUT_LIBAO) LIB_DEPENDS+= ao.3:${PORTSDIR}/audio/libao --- audio/herrie/distinfo Thu Apr 19 12:53:24 2007 +++ audio/herrie/distinfo Sun Jun 3 20:33:12 2007 @@ -1,3 +1,3 @@ -MD5 (herrie-1.6.1.tar.bz2) = eb921bf87856d7b2cf86da2d303e85bf -SHA256 (herrie-1.6.1.tar.bz2) = 71d7e4cedda21fab6971c1223bd4af5cb6faaee0f9baef19095ec9697403b709 -SIZE (herrie-1.6.1.tar.bz2) = 51267 +MD5 (herrie-1.7.tar.bz2) = 21d80139a85c6d6609176dace03ebfc2 +SHA256 (herrie-1.7.tar.bz2) = 109970f4679409557a782f6f31d0302c69aef66defab2d3d5955c75acce88b82 +SIZE (herrie-1.7.tar.bz2) = 56811 --- audio/herrie/pkg-plist Thu Apr 19 12:53:24 2007 +++ audio/herrie/pkg-plist Sun Jun 3 20:35:29 2007 @@ -3,4 +3,5 @@ %%NLS%%share/locale/de/LC_MESSAGES/herrie.mo %%NLS%%share/locale/nl/LC_MESSAGES/herrie.mo %%NLS%%share/locale/pl/LC_MESSAGES/herrie.mo +%%NLS%%share/locale/sv/LC_MESSAGES/herrie.mo %%NLS%%share/locale/tr/LC_MESSAGES/herrie.mo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:04:25 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A5AD16A41F; Sun, 3 Jun 2007 19:04:25 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id E5A4113C448; Sun, 3 Jun 2007 19:04:24 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 397B11CD05; Sun, 3 Jun 2007 21:04:24 +0200 (CEST) Date: Sun, 3 Jun 2007 21:04:24 +0200 From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20070603190424.GB45756@hoeg.nl> References: <20070603184123.7DED91CD65@palm.hoeg.nl> <200706031850.l53Io4s8015642@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gatW/ieO32f1wygP" Content-Disposition: inline In-Reply-To: <200706031850.l53Io4s8015642@freefall.freebsd.org> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Subject: Re: ports/113308: audio/herrie: Bump to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:04:25 -0000 --gatW/ieO32f1wygP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, Due to some silly bug that caused some combinations of build to fail (no Scrobbler support), I had to re-roll this release. The following updated diff has prober checksums for the tarball. Yours, --=20 Ed Schouten WWW: http://g-rave.nl/ --- audio/herrie/Makefile Thu Apr 19 12:53:24 2007 +++ audio/herrie/Makefile Sun Jun 3 20:34:51 2007 @@ -6,7 +6,7 @@ # =20 PORTNAME=3D herrie -PORTVERSION=3D 1.6.1 +PORTVERSION=3D 1.7 CATEGORIES=3D audio MASTER_SITES=3D http://herrie.info/distfiles/ \ http://www.il.fontys.nl/~ed/projects/herrie/distfiles/ \ @@ -15,19 +15,17 @@ MAINTAINER=3D ed@fxq.nl COMMENT=3D A small command line interface music player =20 -LIB_DEPENDS+=3D curl:${PORTSDIR}/ftp/curl - HAS_CONFIGURE=3D yes CONFIGURE_ENV+=3D PREFIX=3D${PREFIX} =20 USE_BZIP2=3D yes -USE_OPENSSL=3D yes USE_GNOME=3D glib20 =20 OPTIONS=3D MAD "MAD MP3 support" on \ VORBIS "Ogg Vorbis support" on \ - SNDFILE "libsndfile support" on \ + SNDFILE "libsndfile support" off \ MODPLUG "libmodplug support" off \ + HTTP "HTTP streams and AudioScrobbler support" on \ LIBAO "LibAO support (breaks chroot)" off \ XCURSES "Build XCurses version" off \ XSPF "Support for XSPF playlists" on @@ -61,6 +59,11 @@ LIB_DEPENDS+=3D modplug:${PORTSDIR}/audio/libmodplug .else CONFIGURE_ARGS+=3Dno_modplug +.endif +.if !defined(WITHOUT_HTTP) +LIB_DEPENDS+=3D curl:${PORTSDIR}/ftp/curl +.else +CONFIGURE_ARGS+=3Dno_http no_scrobbler .endif .if !defined(WITHOUT_LIBAO) LIB_DEPENDS+=3D ao.3:${PORTSDIR}/audio/libao --- audio/herrie/distinfo Thu Apr 19 12:53:24 2007 +++ audio/herrie/distinfo Sun Jun 3 21:02:34 2007 @@ -1,3 +1,3 @@ -MD5 (herrie-1.6.1.tar.bz2) =3D eb921bf87856d7b2cf86da2d303e85bf -SHA256 (herrie-1.6.1.tar.bz2) =3D 71d7e4cedda21fab6971c1223bd4af5cb6faaee0= f9baef19095ec9697403b709 -SIZE (herrie-1.6.1.tar.bz2) =3D 51267 +MD5 (herrie-1.7.tar.bz2) =3D cbde0e97dd514ef8434865cd448b8805 +SHA256 (herrie-1.7.tar.bz2) =3D fc89d1cf3b899e16333fe1c4dbf2313b3492ba938b= d0947446974a0c7889d3c3 +SIZE (herrie-1.7.tar.bz2) =3D 56836 --- audio/herrie/pkg-plist Thu Apr 19 12:53:24 2007 +++ audio/herrie/pkg-plist Sun Jun 3 20:35:29 2007 @@ -3,4 +3,5 @@ %%NLS%%share/locale/de/LC_MESSAGES/herrie.mo %%NLS%%share/locale/nl/LC_MESSAGES/herrie.mo %%NLS%%share/locale/pl/LC_MESSAGES/herrie.mo +%%NLS%%share/locale/sv/LC_MESSAGES/herrie.mo %%NLS%%share/locale/tr/LC_MESSAGES/herrie.mo --gatW/ieO32f1wygP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGYxC452SDGA2eCwURAk4DAJ9b3WkkWR5J8GCNr528SfR4g8OuJgCdGzK3 fjdNZlczuna27l5yu8AO2kU= =zRgS -----END PGP SIGNATURE----- --gatW/ieO32f1wygP-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:05:41 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F06016A400; Sun, 3 Jun 2007 19:05:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3784413C458; Sun, 3 Jun 2007 19:05:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J5fBD017385; Sun, 3 Jun 2007 19:05:41 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J5f7U017381; Sun, 3 Jun 2007 19:05:41 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:05:41 GMT From: Martin Wilke Message-Id: <200706031905.l53J5f7U017381@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113297: Update port: audio/alienwah X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:05:41 -0000 Synopsis: Update port: audio/alienwah Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:05:40 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113297 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:05:46 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B46D616A47E; Sun, 3 Jun 2007 19:05:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8E63013C457; Sun, 3 Jun 2007 19:05:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J5kpw017450; Sun, 3 Jun 2007 19:05:46 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J5kVp017446; Sun, 3 Jun 2007 19:05:46 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:05:46 GMT From: Martin Wilke Message-Id: <200706031905.l53J5kVp017446@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113298: Update port: editors/zile to 2.2.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:05:46 -0000 Synopsis: Update port: editors/zile to 2.2.33 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:05:45 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113298 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:05:52 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FB2316A46B; Sun, 3 Jun 2007 19:05:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 59F2513C46E; Sun, 3 Jun 2007 19:05:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J5qQR017517; Sun, 3 Jun 2007 19:05:52 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J5qCZ017513; Sun, 3 Jun 2007 19:05:52 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:05:52 GMT From: Martin Wilke Message-Id: <200706031905.l53J5qCZ017513@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113299: Update port: emulators/hatari to 0.95 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:05:52 -0000 Synopsis: Update port: emulators/hatari to 0.95 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:05:51 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113299 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:05:58 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F4B916A421; Sun, 3 Jun 2007 19:05:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3A1BF13C457; Sun, 3 Jun 2007 19:05:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J5wa4017582; Sun, 3 Jun 2007 19:05:58 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J5vj5017578; Sun, 3 Jun 2007 19:05:57 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:05:57 GMT From: Martin Wilke Message-Id: <200706031905.l53J5vj5017578@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113300: Update port: emulators/quasi88 to 0.63 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:05:58 -0000 Synopsis: Update port: emulators/quasi88 to 0.63 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:05:57 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113300 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:06:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7243316A400; Sun, 3 Jun 2007 19:06:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 16F1413C45A; Sun, 3 Jun 2007 19:06:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J63Ok017648; Sun, 3 Jun 2007 19:06:03 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J63O5017644; Sun, 3 Jun 2007 19:06:03 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:06:03 GMT From: Martin Wilke Message-Id: <200706031906.l53J63O5017644@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113301: Update port: games/nighthawk to 3.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:06:04 -0000 Synopsis: Update port: games/nighthawk to 3.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:06:03 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113301 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:06:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D074D16A46C; Sun, 3 Jun 2007 19:06:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AA52013C465; Sun, 3 Jun 2007 19:06:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J6JhD017715; Sun, 3 Jun 2007 19:06:19 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J6JPK017711; Sun, 3 Jun 2007 19:06:19 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:06:19 GMT From: Martin Wilke Message-Id: <200706031906.l53J6JPK017711@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113302: Update port: graphics/cbrpager to 0.9.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:06:19 -0000 Synopsis: Update port: graphics/cbrpager to 0.9.15 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:06:09 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113302 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:06:25 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B44B16A421; Sun, 3 Jun 2007 19:06:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4562913C487; Sun, 3 Jun 2007 19:06:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J6PgD017780; Sun, 3 Jun 2007 19:06:25 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J6PxV017776; Sun, 3 Jun 2007 19:06:25 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:06:25 GMT From: Martin Wilke Message-Id: <200706031906.l53J6PxV017776@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113303: Update port: science/euler X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:06:25 -0000 Synopsis: Update port: science/euler Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:06:24 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113303 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:06:31 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 108CD16A400; Sun, 3 Jun 2007 19:06:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DEB7813C45A; Sun, 3 Jun 2007 19:06:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J6UC0017847; Sun, 3 Jun 2007 19:06:30 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J6Uew017843; Sun, 3 Jun 2007 19:06:30 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:06:30 GMT From: Martin Wilke Message-Id: <200706031906.l53J6Uew017843@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113304: Update port: science/kmovisto X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:06:31 -0000 Synopsis: Update port: science/kmovisto Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:06:30 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113304 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:06:37 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06B9E16A468; Sun, 3 Jun 2007 19:06:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D4D7813C465; Sun, 3 Jun 2007 19:06:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J6ads017914; Sun, 3 Jun 2007 19:06:36 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J6asb017910; Sun, 3 Jun 2007 19:06:36 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:06:36 GMT From: Martin Wilke Message-Id: <200706031906.l53J6asb017910@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113305: Update port: x11-toolkits/vdk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:06:37 -0000 Synopsis: Update port: x11-toolkits/vdk Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:06:36 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113305 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:06:49 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD39616A46B; Sun, 3 Jun 2007 19:06:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B648613C45E; Sun, 3 Jun 2007 19:06:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J6nfk017980; Sun, 3 Jun 2007 19:06:49 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J6nr3017976; Sun, 3 Jun 2007 19:06:49 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:06:49 GMT From: Martin Wilke Message-Id: <200706031906.l53J6nr3017976@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113306: Update port: x11-wm/fluxspace X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:06:49 -0000 Synopsis: Update port: x11-wm/fluxspace Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:06:48 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113306 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:07:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9F7116A41F; Sun, 3 Jun 2007 19:07:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B3DE713C46A; Sun, 3 Jun 2007 19:07:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J72Zj018045; Sun, 3 Jun 2007 19:07:02 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J72d2018041; Sun, 3 Jun 2007 19:07:02 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:07:02 GMT From: Martin Wilke Message-Id: <200706031907.l53J72d2018041@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113294: [maintainer update] Update devel/p5-Rose-Object to 0.840 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:07:02 -0000 Synopsis: [maintainer update] Update devel/p5-Rose-Object to 0.840 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:07:00 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113294 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 19:08:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF53E16A46C; Sun, 3 Jun 2007 19:08:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8642E13C4B7; Sun, 3 Jun 2007 19:08:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53J848S018144; Sun, 3 Jun 2007 19:08:04 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53J84I0018140; Sun, 3 Jun 2007 19:08:04 GMT (envelope-from miwi) Date: Sun, 3 Jun 2007 19:08:04 GMT From: Martin Wilke Message-Id: <200706031908.l53J84I0018140@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113308: audio/herrie: Bump to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 19:08:04 -0000 Synopsis: audio/herrie: Bump to 1.7 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jun 3 19:08:03 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113308 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 18:50:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03F9516A46F for ; Sun, 3 Jun 2007 18:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C186F13C4AE for ; Sun, 3 Jun 2007 18:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Io4vj015620 for ; Sun, 3 Jun 2007 18:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Io4tc015619; Sun, 3 Jun 2007 18:50:04 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 18:50:04 GMT Resent-Message-Id: <200706031850.l53Io4tc015619@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joe Kelsey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 537B916A41F for ; Sun, 3 Jun 2007 18:40:25 +0000 (UTC) (envelope-from joe@zircon.seattle.wa.us) Received: from dsl254-019-221.sea1.dsl.speakeasy.net (dsl254-019-221.sea1.dsl.speakeasy.net [216.254.19.221]) by mx1.freebsd.org (Postfix) with ESMTP id 2E1FC13C447 for ; Sun, 3 Jun 2007 18:40:24 +0000 (UTC) (envelope-from joe@zircon.seattle.wa.us) Received: (qmail 16825 invoked by uid 1001); 3 Jun 2007 18:13:47 -0000 Message-Id: <20070603181347.16824.qmail@zircon.seattle.wa.us> Date: 3 Jun 2007 18:13:47 -0000 From: Joe Kelsey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-Mailman-Approved-At: Sun, 03 Jun 2007 19:32:32 +0000 Cc: Subject: ports/113307: textproc/docbook-sk-4.2.1.4 needs to be completely removed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joe Kelsey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 18:50:05 -0000 >Number: 113307 >Category: ports >Synopsis: textproc/docbook-sk-4.2.1.4 needs to be completely removed >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 18:50:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Joe Kelsey >Release: FreeBSD 6.2-STABLE amd64 >Organization: Joseph M. Kelsey >Environment: System: FreeBSD zircon.zircon.seattle.wa.us 6.2-STABLE FreeBSD 6.2-STABLE #3: Wed May 23 20:02:37 PDT 2007 root@zircon.zircon.seattle.wa.us:/usr/obj/usr/src/sys/ZIRCON amd64 >Description: textproc/docbook-sk is fundamentally broken. No matter what you do, if you somehow manage to get it installed, ever other docbook port interferes with the installation of docbook-sk by trying to reinstall it which cannot be accomplished. The docbook-sk poort is broken and cannot be deinstalled or reinstalled ever. The only way to fix things is to manually edit the various catalog files and remove the docbook-sk files by hand. In actual practice, this port does not seem to be really required since manually removing it seems to have absolutely no effect on the various ports that purport to require it. >How-To-Repeat: Install it on an empty system. Attempt to install any port which has other docbook requirements. Observe the errors which occur. >Fix: remove docbook-sk from all ports. Delete it from the system. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 21:50:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5788A16A400 for ; Sun, 3 Jun 2007 21:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 31E4313C448 for ; Sun, 3 Jun 2007 21:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Lo37B042044 for ; Sun, 3 Jun 2007 21:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Lo3sc042040; Sun, 3 Jun 2007 21:50:03 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 21:50:03 GMT Resent-Message-Id: <200706032150.l53Lo3sc042040@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Samorukov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3374416A468 for ; Sun, 3 Jun 2007 21:41:52 +0000 (UTC) (envelope-from root@deepvision.tsua.net) Received: from deepvision.tsua.net (deepvision.tsua.net [212.40.43.22]) by mx1.freebsd.org (Postfix) with ESMTP id DD1FE13C45B for ; Sun, 3 Jun 2007 21:41:51 +0000 (UTC) (envelope-from root@deepvision.tsua.net) Received: from root by deepvision.tsua.net with local (Exim 4.66 (FreeBSD)) (envelope-from ) id 1Huxpq-000ER4-DS for FreeBSD-gnats-submit@freebsd.org; Mon, 04 Jun 2007 00:42:02 +0300 Message-Id: Date: Mon, 04 Jun 2007 00:42:02 +0300 From: Alex Samorukov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113309: [MAINTAINER] net-mgmt/flowviewer: [CHECKSUM CHANGED] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 21:50:03 -0000 >Number: 113309 >Category: ports >Synopsis: [MAINTAINER] net-mgmt/flowviewer: [CHECKSUM CHANGED] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 21:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alex Samorukov >Release: FreeBSD 5.4-RELEASE-p22 i386 >Organization: Shevchenko Didkovskiy and Partners >Environment: System: FreeBSD deepvision.tsua.net 5.4-RELEASE-p22 FreeBSD 5.4-RELEASE-p22 #6: Thu Feb 1 14:16:07 EET >Description: Checsum of the tarball changed by author, unreak port Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: Try to install port >Fix: --- flowviewer-3.2_4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net-mgmt/flowviewer/Makefile /root/tmp/flowviewer/Makefile --- /usr/ports/net-mgmt/flowviewer/Makefile Sun Jun 3 10:58:07 2007 +++ /root/tmp/flowviewer/Makefile Mon Jun 4 00:37:09 2007 @@ -6,7 +6,7 @@ PORTNAME= flowviewer PORTVERSION= 3.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt MASTER_SITES= http://ensight.eos.nasa.gov/FlowViewer/ DISTNAME= FlowViewer_${DISTVERSION} @@ -17,8 +17,6 @@ RUN_DEPENDS= ${SITE_PERL}/GD/Graph/linespoints.pm:${PORTSDIR}/graphics/p5-GD-Graph \ flow-cat:${PORTSDIR}/net-mgmt/flow-tools - -BROKEN= Checksum mismatch .ifndef WITHOUT_WWWDIR FLOWVIEWERDIR?= ${PREFIX}/www/flowviewer diff -ruN --exclude=CVS /usr/ports/net-mgmt/flowviewer/distinfo /root/tmp/flowviewer/distinfo --- /usr/ports/net-mgmt/flowviewer/distinfo Wed May 23 08:15:21 2007 +++ /root/tmp/flowviewer/distinfo Mon Jun 4 00:36:38 2007 @@ -1,3 +1,3 @@ -MD5 (FlowViewer_3.2.tar) = 95c56402c88438a71ca521490c8f1736 -SHA256 (FlowViewer_3.2.tar) = 44315a0d5c1c3ab9a8e56dacf130a7bd2c48e748f55f931f2d992c59048d11aa +MD5 (FlowViewer_3.2.tar) = 69cde7814389b40f2376433fe3de7f92 +SHA256 (FlowViewer_3.2.tar) = 6b080caa5f13e026c14a11400d90174382be10bc37768691180ecbe7fc987c19 SIZE (FlowViewer_3.2.tar) = 296960 --- flowviewer-3.2_4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 22:06:53 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C92716A468; Sun, 3 Jun 2007 22:06:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6E6E513C468; Sun, 3 Jun 2007 22:06:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53M6rPc044093; Sun, 3 Jun 2007 22:06:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53M6rcD044089; Sun, 3 Jun 2007 22:06:53 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 22:06:53 GMT From: Edwin Groothuis Message-Id: <200706032206.l53M6rcD044089@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Cc: Subject: Re: ports/113307: textproc/docbook-sk 4.2.1.4 needs to be completely removed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 22:06:53 -0000 Synopsis: textproc/docbook-sk 4.2.1.4 needs to be completely removed Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jun 3 22:06:52 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113307 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 22:40:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC77A16A400 for ; Sun, 3 Jun 2007 22:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A65AD13C457 for ; Sun, 3 Jun 2007 22:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Me2w1047671 for ; Sun, 3 Jun 2007 22:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Me23J047670; Sun, 3 Jun 2007 22:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 22:40:02 GMT Resent-Message-Id: <200706032240.l53Me23J047670@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A02E816A468 for ; Sun, 3 Jun 2007 22:30:41 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id 8024813C44C for ; Sun, 3 Jun 2007 22:30:41 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from ppp-70-251-187-11.dsl.austtx.swbell.net ([70.251.187.11]:53562 helo=borg.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.67 (FreeBSD)) (envelope-from ) id 1Huyat-0001aH-Qm for FreeBSD-gnats-submit@freebsd.org; Sun, 03 Jun 2007 17:30:41 -0500 Received: from ler by borg.lerctr.org with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1Huyaj-0005Lk-Bg for FreeBSD-gnats-submit@freebsd.org; Sun, 03 Jun 2007 17:30:29 -0500 Message-Id: Date: Sun, 03 Jun 2007 17:30:29 -0500 From: Larry Rosenman Sender: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113310: [MAINTAINER] sysutils/lsof: update to 4.79B X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 22:40:02 -0000 >Number: 113310 >Category: ports >Synopsis: [MAINTAINER] sysutils/lsof: update to 4.79B >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 22:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 7.0-CURRENT amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD borg.lerctr.org 7.0-CURRENT FreeBSD 7.0-CURRENT #25: Fri Jun 1 12:08:04 CDT >Description: - Update to 4.79B Remove warning when building on 6.2 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- lsof-4.79B.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/lsof/Makefile /usr/home/ler/ports/sysutils/lsof/Makefile --- /usr/ports/sysutils/lsof/Makefile Sun Jun 3 07:34:09 2007 +++ /usr/home/ler/ports/sysutils/lsof/Makefile Sun Jun 3 17:29:55 2007 @@ -3,11 +3,11 @@ # Date created: Sat July 20, 1996 # Whom: David O'Brien (obrien@FreeBSD.org) # -# $FreeBSD: ports/sysutils/lsof/Makefile,v 1.151 2007/06/03 00:57:20 edwin Exp $ +# $FreeBSD: ports/sysutils/lsof/Makefile,v 1.149 2006/08/16 22:05:01 sobomax Exp $ # PORTNAME= lsof -PORTVERSION= 4.79A +PORTVERSION= 4.79B CATEGORIES= sysutils MASTER_SITES= http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ \ @@ -25,7 +25,7 @@ ftp://ftp.tau.ac.il/pub/unix/admin/ FIXUP_RELEASE=yes .if defined(FIXUP_RELEASE) -DISTNAME= ${PORTNAME}_4.79A.freebsd +DISTNAME= ${PORTNAME}_4.79B.freebsd .else DISTNAME= ${PORTNAME}_${PORTVERSION} .endif diff -ruN --exclude=CVS /usr/ports/sysutils/lsof/distinfo /usr/home/ler/ports/sysutils/lsof/distinfo --- /usr/ports/sysutils/lsof/distinfo Sun Jun 3 07:34:09 2007 +++ /usr/home/ler/ports/sysutils/lsof/distinfo Sun Jun 3 17:27:04 2007 @@ -1,3 +1,3 @@ -MD5 (lsof_4.79A.freebsd.tar.bz2) = 97b170a4d9d4318c9088870b649c2350 -SHA256 (lsof_4.79A.freebsd.tar.bz2) = f075b292e7c83dc8b16f54495a254aca8cfb88da390c8bfc337c510171fe6a14 -SIZE (lsof_4.79A.freebsd.tar.bz2) = 457935 +MD5 (lsof_4.79B.freebsd.tar.bz2) = b5e8f188a036717222aeb7201151be50 +SHA256 (lsof_4.79B.freebsd.tar.bz2) = c2ef44257de642269b33e245a55624290be3b9def220665a1a9c43b8a3049894 +SIZE (lsof_4.79B.freebsd.tar.bz2) = 457794 --- lsof-4.79B.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 23:40:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2EF0A16A41F for ; Sun, 3 Jun 2007 23:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D024113C45D for ; Sun, 3 Jun 2007 23:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53Ne25f053682 for ; Sun, 3 Jun 2007 23:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53Ne26i053681; Sun, 3 Jun 2007 23:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 3 Jun 2007 23:40:02 GMT Resent-Message-Id: <200706032340.l53Ne26i053681@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Thiel Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF84216A400 for ; Sun, 3 Jun 2007 23:39:34 +0000 (UTC) (envelope-from lx@redundancy.redundancy.org) Received: from redundancy.redundancy.org (redundancy.redundancy.org [64.147.160.152]) by mx1.freebsd.org (Postfix) with SMTP id 980D513C465 for ; Sun, 3 Jun 2007 23:39:34 +0000 (UTC) (envelope-from lx@redundancy.redundancy.org) Received: (qmail 72274 invoked by uid 1001); 3 Jun 2007 23:13:16 -0000 Message-Id: <20070603231316.71498.qmail@redundancy.redundancy.org> Date: 3 Jun 2007 23:13:16 -0000 From: David Thiel To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113311: Repocopy: x11-toolkits/py-wmgeneral -> x11-toolkits/py-wmdockapps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: David Thiel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 23:40:03 -0000 >Number: 113311 >Category: ports >Synopsis: Repocopy: x11-toolkits/py-wmgeneral -> x11-toolkits/py-wmdockapps >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 03 23:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: David Thiel >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD redundancy.redundancy.org 6.2-STABLE FreeBSD 6.2-STABLE #7: Mon Jan 22 18:32:09 PST 2007 lx@redundancy.redundancy.org:/usr/obj/usr/src/sys/REDUNDANCY i386 >Description: pywmgeneral has changed names to pywmdockapps and undergone significant changes. I'd like to have it repocopied to x11-toolkits/py-wmdockapps and take maintainership. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 3 23:40:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A72CB16A421; Sun, 3 Jun 2007 23:40:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7F5C313C448; Sun, 3 Jun 2007 23:40:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l53NeABX053841; Sun, 3 Jun 2007 23:40:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l53NeAEY053837; Sun, 3 Jun 2007 23:40:10 GMT (envelope-from edwin) Date: Sun, 3 Jun 2007 23:40:10 GMT From: Edwin Groothuis Message-Id: <200706032340.l53NeAEY053837@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113311: Repocopy: x11-toolkits/py-wmgeneral -> x11-toolkits/py-wmdockapps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2007 23:40:10 -0000 Synopsis: Repocopy: x11-toolkits/py-wmgeneral -> x11-toolkits/py-wmdockapps Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jun 3 23:40:09 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113311 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 01:40:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C14216A46C for ; Mon, 4 Jun 2007 01:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7B22313C447 for ; Mon, 4 Jun 2007 01:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l541e8i1067145 for ; Mon, 4 Jun 2007 01:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l541e8Mq067144; Mon, 4 Jun 2007 01:40:08 GMT (envelope-from gnats) Date: Mon, 4 Jun 2007 01:40:08 GMT Message-Id: <200706040140.l541e8Mq067144@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: UEMURA Tetsuya Cc: Subject: Re: ports/113212: www/jesred: Fix incompatibility with Squid 2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: UEMURA Tetsuya List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 01:40:08 -0000 The following reply was made to PR ports/113212; it has been noted by GNATS. From: UEMURA Tetsuya To: bug-followup@FreeBSD.org, t_uemura@macome.co.jp Cc: Subject: Re: ports/113212: www/jesred: Fix incompatibility with Squid 2.6 Date: Mon, 4 Jun 2007 10:27:05 +0900 (JST) --------_4663652EAE9F0125D740_MULTIPART_MIXED_ Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit > I don't approve it because it over vendor. I don't think that's a good > idea to change software fiunctionality without vendor's approve. Agreed but it's extreme inconvenient that Jesred port is incompatible with Squid port because Jesred is a Squid tool. Anyway I've already reported and sent fix over the author, so please consider applying new patch temporarily which fixes the issue only when WITH_EXTRA_PATCHES knob is set until the author respond. Thanks. -- UEMURA Tetsuya --------_4663652EAE9F0125D740_MULTIPART_MIXED_ Content-Type: application/octet-stream; name="jesred.patch.txt" Content-Disposition: attachment; filename="jesred.patch.txt" Content-Transfer-Encoding: base64 ZGlmZiAtdTNyTiB3d3cvamVzcmVkLm9yaWcvTWFrZWZpbGUgd3d3L2plc3JlZC9NYWtlZmlsZQot LS0gd3d3L2plc3JlZC5vcmlnL01ha2VmaWxlCUZyaSBKYW4gMjAgMTY6NTA6MDYgMjAwNgorKysg d3d3L2plc3JlZC9NYWtlZmlsZQlNb24gSnVuICA0IDEwOjE1OjUyIDIwMDcKQEAgLTE1LDYgKzE1 LDEzIEBACiBNQUlOVEFJTkVSPQlkc2hAdmxpbmsucnUKIENPTU1FTlQ9CUEgcmVkaXJlY3RvciBm b3IgU3F1aWQKIAorLmluY2x1ZGUgPGJzZC5wb3J0LnByZS5taz4KKworIyBTZXQgV0lUSF9FWFRS QV9QQVRDSEVTIGtub2IgdG8gYWRkIHN1cHBvcnQgZm9yIFNxdWlkIDIuNi4KKy5pZmRlZiBXSVRI X0VYVFJBX1BBVENIRVMKK0VYVFJBX1BBVENIRVMJKz0gJHtGSUxFU0RJUn0vWHBhdGNoLXJld3Jp dGUuYworLmVuZGlmCisKIGRvLWluc3RhbGw6CiAJJHtJTlNUQUxMX1BST0dSQU19ICR7V1JLU1JD fS9qZXNyZWQgJHtQUkVGSVh9L2xpYmV4ZWMKIAkke01LRElSfSAke1BSRUZJWH0vZXRjL2plc3Jl ZApAQCAtMjUsNCArMzIsNCBAQAogCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vZXRjL3JlZGly ZWN0LnJ1bGVzIFwKIAkJJHtQUkVGSVh9L2V0Yy9qZXNyZWQvcmVkaXJlY3QucnVsZXMuc2FtcGxl CiAKLS5pbmNsdWRlIDxic2QucG9ydC5taz4KKy5pbmNsdWRlIDxic2QucG9ydC5wb3N0Lm1rPgpk aWZmIC11M3JOIHd3dy9qZXNyZWQub3JpZy9maWxlcy9YcGF0Y2gtcmV3cml0ZS5jIHd3dy9qZXNy ZWQvZmlsZXMvWHBhdGNoLXJld3JpdGUuYwotLS0gd3d3L2plc3JlZC5vcmlnL2ZpbGVzL1hwYXRj aC1yZXdyaXRlLmMJVGh1IEphbiAgMSAwOTowMDowMCAxOTcwCisrKyB3d3cvamVzcmVkL2ZpbGVz L1hwYXRjaC1yZXdyaXRlLmMJTW9uIEp1biAgNCAwOTo1MTo1MiAyMDA3CkBAIC0wLDAgKzEsNTQg QEAKKy0tLSByZXdyaXRlLmMub3JpZwlTYXQgQXVnIDE1IDA5OjAxOjE1IDE5OTgKKysrKyByZXdy aXRlLmMJTW9uIEp1biAgNCAwOTo1MTo0MiAyMDA3CitAQCAtNjAsNyArNjAsNyBAQAorICAgICBp bnQgYywgaTsKKyAgICAgc3RydWN0IGluX2FkZHIgYWRkcmVzczsKKyAgICAgY2hhciAqdG9rZW4s ICpuZXdfdG9rZW47CistICAgIGNoYXIgKmVuZFs0XTsKKysgICAgY2hhciAqZW5kWzVdOworICAg ICAKKyAgICAgYyA9IDA7CisgICAgIHRva2VuID0gc3RyY2hyKGJ1ZmYsJyAnKTsKK0BAIC04Nywx MSArODcsMTcgQEAKKyAJCSAgICAqbmV3X3Rva2VuID0gJ1wwJzsKKyAJCSAgICBlbmRbM10gPSBu ZXdfdG9rZW47CisgCQkgICAgKm1ldGhvZCA9IHRva2VuOworKwkJICAgIG5ld190b2tlbiA9IHN0 cmNocih0b2tlbiwnICcpOworKwkJICAgIGlmIChuZXdfdG9rZW4pIHsKKysJCQljKys7CisrCQkJ Km5ld190b2tlbiA9ICdcMCc7CisrCQkJZW5kWzRdID0gbmV3X3Rva2VuOworKwkJICAgIH0KKyAJ CX0KKyAJICAgIH0KKyAJfQorICAgICB9CistICAgIGlmKGMgIT0gNCkgeworKyAgICBpZihjIDwg NCkgeworIAlmb3IoaSA9IDA7IGkgPCBjOyBpKyspIHsKKyAJICAgIGlmICggZW5kW2ldICkKKyAJ CSplbmRbaV0gPSAnICc7CitAQCAtMTA0LDE2ICsxMTAsMTYgQEAKKyAjZW5kaWYgICAgCisgICAg IAorICAgICAvKiBhbGwgbWV0aG9kcyBtdXN0IGJlIEdFVCBvciBJQ1BfUVVFUlkgKi8KKy0gICAg YyA9IDA7CisrICAgIGkgPSAwOworICAgICBpZiAoYWxsb3dfc2libGluZ3MgJiYgKCEgc3RyY21w KCptZXRob2QsICJJQ1BfUVVFUlkiKSkgKQorLQkgICAgYy0tOworKwlpLS07CisgICAgIGlmKCBz dHJjbXAoKm1ldGhvZCwgIkdFVCIpICkKKy0JYysrOworLSAgICBpZiAoIGMgKSB7CisrCWkrKzsK KysgICAgaWYgKCBpICkgeworICNpZmRlZiBERUJVRworLQlmb3IoYyA9IDA7IGMgPCA0OyBjKysp IHsKKy0JICAgIGlmICggZW5kW2NdICkKKy0JCSplbmRbY10gPSAnICc7CisrCWZvcihpID0gMDsg aSA8IGM7IGkrKykgeworKwkgICAgaWYgKCBlbmRbaV0gKQorKwkJKmVuZFtpXSA9ICcgJzsKKyAJ fQorIAlsb2coREVCRywgIm1ldGhvZCBub3QgXCJHRVRcIiAlc1xuIiwgYnVmZik7CisgI2VuZGlm CQo= --------_4663652EAE9F0125D740_MULTIPART_MIXED_-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 04:54:26 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DFCA516A468; Mon, 4 Jun 2007 04:54:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B9BE513C45A; Mon, 4 Jun 2007 04:54:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l544sQUd091443; Mon, 4 Jun 2007 04:54:26 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l544sQTm091439; Mon, 4 Jun 2007 04:54:26 GMT (envelope-from miwi) Date: Mon, 4 Jun 2007 04:54:26 GMT From: Martin Wilke Message-Id: <200706040454.l544sQTm091439@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113225: [NEW PORT] sysutils/bcfg2: configuration management system written in Python X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 04:54:27 -0000 Synopsis: [NEW PORT] sysutils/bcfg2: configuration management system written in Python Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Jun 4 04:54:26 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113225 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 05:30:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFB3C16A46C for ; Mon, 4 Jun 2007 05:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D22D613C45E for ; Mon, 4 Jun 2007 05:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l545U53G094196 for ; Mon, 4 Jun 2007 05:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l545U57w094195; Mon, 4 Jun 2007 05:30:05 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 05:30:05 GMT Resent-Message-Id: <200706040530.l545U57w094195@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tetsuya Uemura Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 648E516A46E for ; Mon, 4 Jun 2007 05:23:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 5631B13C455 for ; Mon, 4 Jun 2007 05:23:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l545N9BM029079 for ; Mon, 4 Jun 2007 05:23:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l545N9NO029077; Mon, 4 Jun 2007 05:23:09 GMT (envelope-from nobody) Message-Id: <200706040523.l545N9NO029077@www.freebsd.org> Date: Mon, 4 Jun 2007 05:23:09 GMT From: Tetsuya Uemura To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113313: math/gnuplot: Add knob not to depend on teTeX-base X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 05:30:06 -0000 >Number: 113313 >Category: ports >Synopsis: math/gnuplot: Add knob not to depend on teTeX-base >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 05:30:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tetsuya Uemura >Release: 6.2-STABLE >Organization: MACOME Corp. >Environment: FreeBSD s2882g3nr.macome.co.jp 6.2-STABLE FreeBSD 6.2-STABLE #0: Mon Jun 4 11:37:35 JST 2007 uemura@s2882g3nr.macome.co.jp:/usr/obj/usr/src/sys/S2882G3NR amd64 >Description: By default, Gnuplot doesn't require teTeX-base (kpsexpand) at all and the dependency should be controllable via WITH_XXX or WITHOUT_XXX knob. Note that Gnuplot *may* require kpsexpand if --with-kpsexpand argument is given to configure, math/gnuplot always gives it, though it is disabled by Gnuplot default. >How-To-Repeat: By installing math/gnuplot via ports also installs teTeX-base and its dependency. >Fix: Apply the attached patch to add knob WITHOUT_KPSEXPAND which makes math/gnuplot not to depend on print/teTeX-base if defined. Patch attached with submission follows: diff -u3 math/gnuplot.orig/Makefile math/gnuplot/Makefile --- math/gnuplot.orig/Makefile Mon May 21 10:34:04 2007 +++ math/gnuplot/Makefile Mon Jun 4 13:46:25 2007 @@ -17,16 +17,14 @@ GNU_CONFIGURE= yes WANT_WX= yes -CONFIGURE_ARGS+=--with-kpsexpand \ - --with-lasergnu \ +CONFIGURE_ARGS+=--with-lasergnu \ --with-readline=gnu \ --without-linux-vga \ --without-lisp-files \ --without-tutorial -BUILD_DEPENDS+= latex:${PORTSDIR}/print/teTeX-base - -OPTIONS= GD "Enable GD support" on \ +OPTIONS= KPSEXPAND "Use kpsexpand to find fonts" on \ + GD "Enable GD support" on \ PDF "Enable PDF support" on \ PLOT "Enable plot support" on \ WX "Enable WX support" off @@ -35,6 +33,11 @@ INFO= gnuplot .include + +.if !defined(WITHOUT_KPSEXPAND) +BUILD_DEPENDS+= latex:${PORTSDIR}/print/teTeX-base +CONFIGURE_ARGS+= --with-kpsexpand +.endif .if !defined(WITHOUT_X11) USE_XLIB= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 05:30:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C21C016A41F; Mon, 4 Jun 2007 05:30:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9C15013C455; Mon, 4 Jun 2007 05:30:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l545UCTt094456; Mon, 4 Jun 2007 05:30:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l545UCsn094452; Mon, 4 Jun 2007 05:30:12 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 05:30:12 GMT From: Edwin Groothuis Message-Id: <200706040530.l545UCsn094452@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org Cc: Subject: Re: ports/113313: math/gnuplot: Add knob not to depend on teTeX-base X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 05:30:12 -0000 Synopsis: math/gnuplot: Add knob not to depend on teTeX-base Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 05:30:11 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113313 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 07:10:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C0BE16A421 for ; Mon, 4 Jun 2007 07:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F1B9613C469 for ; Mon, 4 Jun 2007 07:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l547AB6O006361 for ; Mon, 4 Jun 2007 07:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l547ABXv006360; Mon, 4 Jun 2007 07:10:11 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 07:10:11 GMT Resent-Message-Id: <200706040710.l547ABXv006360@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Li-Wen Hsu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7580216A468 for ; Mon, 4 Jun 2007 07:02:10 +0000 (UTC) (envelope-from lwhsu@lucky7.cs.nctu.edu.tw) Received: from lucky7.cs.nctu.edu.tw (lucky7.cs.nctu.edu.tw [140.113.235.215]) by mx1.freebsd.org (Postfix) with ESMTP id 2714A13C45A for ; Mon, 4 Jun 2007 07:02:09 +0000 (UTC) (envelope-from lwhsu@lucky7.cs.nctu.edu.tw) Received: from lucky7.cs.nctu.edu.tw (localhost.cs.nctu.edu.tw [127.0.0.1]) by lucky7.cs.nctu.edu.tw (8.14.1/8.14.1) with ESMTP id l5471wmB095458; Mon, 4 Jun 2007 15:01:58 +0800 (CST) (envelope-from lwhsu@lucky7.cs.nctu.edu.tw) Received: (from lwhsu@localhost) by lucky7.cs.nctu.edu.tw (8.14.1/8.14.1/Submit) id l5471vNb075569; Mon, 4 Jun 2007 15:01:57 +0800 (CST) (envelope-from lwhsu) Message-Id: <200706040701.l5471vNb075569@lucky7.cs.nctu.edu.tw> Date: Mon, 4 Jun 2007 15:01:57 +0800 (CST) From: Li-Wen Hsu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: lboehne@damogran.de Subject: ports/113315: [PATCH] devel/py24-distorm: update to 1.7.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 07:10:12 -0000 >Number: 113315 >Category: ports >Synopsis: [PATCH] devel/py24-distorm: update to 1.7.23 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 07:10:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD lucky7.cs.nctu.edu.tw 7.0-CURRENT FreeBSD 7.0-CURRENT #3: Fri Jun 1 23:37:41 CST >Description: - Update to 1.7.23 Port maintainer (lboehne@damogran.de) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py24-distorm-1.7.23.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/py-distorm/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 6 Mar 2007 19:07:10 -0000 1.4 +++ Makefile 4 Jun 2007 07:04:02 -0000 @@ -6,7 +6,7 @@ # PORTNAME= distorm -PORTVERSION= 1.6.20 +PORTVERSION= 1.7.23 CATEGORIES= devel python MASTER_SITES= http://www.ragestorm.net/distorm/ \ http://www.damogran.de/ports/distorm/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/py-distorm/distinfo,v retrieving revision 1.5 diff -u -u -r1.5 distinfo --- distinfo 6 Mar 2007 19:07:10 -0000 1.5 +++ distinfo 4 Jun 2007 07:04:02 -0000 @@ -1,3 +1,3 @@ -MD5 (distorm-pkg1.6.20.tar.bz2) = 1cf1f0339f450600e5e455e0eb343e08 -SHA256 (distorm-pkg1.6.20.tar.bz2) = bab539e13179e10fc916a93d5a70b1e61003584155d65039a225be1dc9c00d98 -SIZE (distorm-pkg1.6.20.tar.bz2) = 86396 +MD5 (distorm-pkg1.7.23.tar.bz2) = e7c258c4456943cec010d302aca845b7 +SHA256 (distorm-pkg1.7.23.tar.bz2) = 205200b74e4051e125a2175a7cd5c54b76c454419a6b7e276e9d0ca353d22b33 +SIZE (distorm-pkg1.7.23.tar.bz2) = 88050 --- py24-distorm-1.7.23.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 07:10:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91DBF16A469; Mon, 4 Jun 2007 07:10:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6C6F113C45B; Mon, 4 Jun 2007 07:10:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l547AIHr006483; Mon, 4 Jun 2007 07:10:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l547AIHC006477; Mon, 4 Jun 2007 07:10:18 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 07:10:18 GMT From: Edwin Groothuis Message-Id: <200706040710.l547AIHC006477@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lwhsu@FreeBSD.org Cc: Subject: Re: ports/113315: [PATCH] devel/py24-distorm: update to 1.7.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 07:10:18 -0000 Synopsis: [PATCH] devel/py24-distorm: update to 1.7.23 Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 07:10:17 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113315 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 07:54:29 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5984D16A46C; Mon, 4 Jun 2007 07:54:29 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 34B4713C487; Mon, 4 Jun 2007 07:54:29 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (clsung@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l547sT6r014169; Mon, 4 Jun 2007 07:54:29 GMT (envelope-from clsung@freefall.freebsd.org) Received: (from clsung@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l547sTJo014165; Mon, 4 Jun 2007 07:54:29 GMT (envelope-from clsung) Date: Mon, 4 Jun 2007 07:54:29 GMT From: Cheng-Lung Sung Message-Id: <200706040754.l547sTJo014165@freefall.freebsd.org> To: clsung@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113214: [NEW PORT] add port of www/phpbb-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 07:54:29 -0000 Synopsis: [NEW PORT] add port of www/phpbb-devel Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: clsung Responsible-Changed-When: Mon Jun 4 07:54:28 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113214 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 08:40:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BA2E16A41F for ; Mon, 4 Jun 2007 08:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7746713C469 for ; Mon, 4 Jun 2007 08:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l548eBMf021052 for ; Mon, 4 Jun 2007 08:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l548eBcL021051; Mon, 4 Jun 2007 08:40:11 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 08:40:11 GMT Resent-Message-Id: <200706040840.l548eBcL021051@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jean-Francois Dockes Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E298A16A481 for ; Mon, 4 Jun 2007 08:33:19 +0000 (UTC) (envelope-from dockes@wanadoo.fr) Received: from smtp7-g19.free.fr (smtp7-g19.free.fr [212.27.42.64]) by mx1.freebsd.org (Postfix) with ESMTP id 8080313C4B7 for ; Mon, 4 Jun 2007 08:33:19 +0000 (UTC) (envelope-from dockes@wanadoo.fr) Received: from y.dockes.com (obs92-1-82-225-153-66.fbx.proxad.net [82.225.153.66]) by smtp7-g19.free.fr (Postfix) with ESMTP id 63EAF18D25 for ; Mon, 4 Jun 2007 10:33:18 +0200 (CEST) Received: from mouton.dockes.com (mouton.dockes.com [192.168.4.5]) by y.dockes.com (8.13.1/8.12.11) with ESMTP id l548XCBp091179 for ; Mon, 4 Jun 2007 10:33:12 +0200 (CEST) (envelope-from dockes@mouton.dockes.com) Received: from mouton.dockes.com (localhost [127.0.0.1]) by mouton.dockes.com (8.13.6/8.13.3) with ESMTP id l548XCCC098871 for ; Mon, 4 Jun 2007 10:33:12 +0200 (CEST) (envelope-from dockes@mouton.dockes.com) Received: (from dockes@localhost) by mouton.dockes.com (8.13.6/8.13.6/Submit) id l548XBrB098870; Mon, 4 Jun 2007 10:33:11 +0200 (CEST) (envelope-from dockes) Message-Id: <200706040833.l548XBrB098870@mouton.dockes.com> Date: Mon, 4 Jun 2007 10:33:11 +0200 (CEST) From: Jean-Francois Dockes To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113316: mail/metamail : add WITHOUT_X11 option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jean-Francois Dockes List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 08:40:11 -0000 >Number: 113316 >Category: ports >Synopsis: mail/metamail : add WITHOUT_X11 option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 08:40:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: FreeBSD 5.5-RELEASE i386 >Organization: >Environment: System: FreeBSD mouton 5.5-RELEASE FreeBSD 5.5-RELEASE #2: Fri May 26 07:37:48 CEST 2006 dockes@mouton:/usr/obj/usr/src/sys/MOUTON i386 >Description: metamail depends on X11 for minor functionality which is quite probably not even much useful any more, and causes a dependency on the xorg-apps monster port. Somebody asked me if the X11 dependency could be made optional. This patch: - tries to lighten the dependency list by depending on the required subports, not the x11-apps metaport - adds an option to build an x11-less version The default behaviour is unchanged. >How-To-Repeat: >Fix: diff -ruN metamail.prev/Makefile metamail/Makefile --- metamail.prev/Makefile Sat May 19 22:14:25 2007 +++ metamail/Makefile Mon Jun 4 09:52:33 2007 @@ -17,11 +17,8 @@ MAINTAINER= jean-francois.dockes@wanadoo.fr COMMENT= Implementation of MIME, the Multipurpose Internet Mail Extensions -BUILD_DEPENDS= bdftopcf:${X_CLIENTS_PORT} -RUN_DEPENDS= xloadimage:${PORTSDIR}/x11/xloadimage \ - mkfontdir:${X_CLIENTS_PORT} +OPTIONS= X11 "X11 hebrew font support" on -USE_XLIB= yes WRKSRC= ${WRKDIR}/${DISTNAME}/src MAN1= audiocompose.1 audiosend.1 extcompose.1 \ getfilename.1 mailto-hebrew.1 mailto.1 metamail.1 \ @@ -31,7 +28,22 @@ showpicture.1 splitmail.1 MAN4= mailcap.4 +.include + +.if !defined(WITHOUT_X11) +BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf +RUN_DEPENDS= xloadimage:${PORTSDIR}/x11/xloadimage \ + mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir +USE_XLIB= yes +PLIST_SUB+= X11="" +.else +PLIST_SUB+= X11="@comment " +.endif + post-patch: +.if defined(WITHOUT_X11) + @${REINPLACE_CMD} -e '/fonts/d' ${WRKSRC}/Makefile +.endif @${RM} ${WRKSRC}/bin/*.orig -.include +.include diff -ruN metamail.prev/pkg-plist metamail/pkg-plist --- metamail.prev/pkg-plist Mon Nov 13 11:30:03 2000 +++ metamail/pkg-plist Mon Jun 4 08:34:20 2007 @@ -4,7 +4,7 @@ bin/getfilename bin/mailserver bin/mailto -bin/mailto-hebrew +%%X11%%bin/mailto-hebrew bin/metamail bin/metasend bin/mimencode @@ -15,7 +15,7 @@ bin/richtoatk bin/showaudio bin/showexternal -bin/shownonascii +%%X11%%bin/shownonascii bin/showpartial bin/showpicture bin/sndAppleSingle @@ -24,11 +24,11 @@ bin/sun-message.csh bin/sun-to-mime bin/sun2mime -lib/metamail/fonts/heb6x13.pcf -lib/metamail/fonts/heb8x13.pcf -lib/metamail/fonts/heb8x13B.pcf -lib/metamail/fonts/fonts.dir -lib/metamail/fonts/fonts.alias +%%X11%%lib/metamail/fonts/heb6x13.pcf +%%X11%%lib/metamail/fonts/heb8x13.pcf +%%X11%%lib/metamail/fonts/heb8x13B.pcf +%%X11%%lib/metamail/fonts/fonts.dir +%%X11%%lib/metamail/fonts/fonts.alias etc/mailcap -@dirrm lib/metamail/fonts -@dirrm lib/metamail +@dirrmtry lib/metamail/fonts +@dirrmtry lib/metamail >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:10:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B75116A46E for ; Mon, 4 Jun 2007 09:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EE10613C46C for ; Mon, 4 Jun 2007 09:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549A38O023588 for ; Mon, 4 Jun 2007 09:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549A3ix023587; Mon, 4 Jun 2007 09:10:03 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 09:10:03 GMT Resent-Message-Id: <200706040910.l549A3ix023587@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tomoyuki Sakurai Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 619A816A400 for ; Mon, 4 Jun 2007 09:05:59 +0000 (UTC) (envelope-from cherry@spica.trombik.org) Received: from spica.trombik.org (spica.trombik.org [211.19.48.12]) by mx1.freebsd.org (Postfix) with ESMTP id 2651E13C469 for ; Mon, 4 Jun 2007 09:05:58 +0000 (UTC) (envelope-from cherry@spica.trombik.org) Received: by spica.trombik.org (Postfix, from userid 999) id 6D81E22D40; Mon, 4 Jun 2007 18:05:57 +0900 (JST) Message-Id: <20070604090557.6D81E22D40@spica.trombik.org> Date: Mon, 4 Jun 2007 18:05:57 +0900 (JST) From: Tomoyuki Sakurai To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: hashiz@tomba.meridiani.jp Subject: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:10:04 -0000 >Number: 113317 >Category: ports >Synopsis: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 09:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tomoyuki Sakurai >Release: FreeBSD 6.1-RELEASE-p11 i386 >Organization: >Environment: System: FreeBSD spica.trombik.org 6.1-RELEASE-p11 FreeBSD 6.1-RELEASE-p11 #6: Sun Jan 7 04:14:41 JST >Description: - Update to 1.453 This version is required by p5-Catalyst-View-Email which is to be sendpred later. Port maintainer (hashiz@tomba.meridiani.jp) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Email-MIME-Creator-1.453.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/p5-Email-MIME-Creator/Makefile /usr/home/cherry/svn/ports/mail/p5-Email-MIME-Creator/Makefile --- /usr/ports/mail/p5-Email-MIME-Creator/Makefile Mon Jul 24 20:42:14 2006 +++ /usr/home/cherry/svn/ports/mail/p5-Email-MIME-Creator/Makefile Mon Jun 4 14:11:29 2007 @@ -6,7 +6,7 @@ # PORTNAME= Email-MIME-Creator -PORTVERSION= 1.45 +PORTVERSION= 1.453 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Email diff -ruN --exclude=CVS /usr/ports/mail/p5-Email-MIME-Creator/distinfo /usr/home/cherry/svn/ports/mail/p5-Email-MIME-Creator/distinfo --- /usr/ports/mail/p5-Email-MIME-Creator/distinfo Mon Jul 24 20:42:14 2006 +++ /usr/home/cherry/svn/ports/mail/p5-Email-MIME-Creator/distinfo Mon Jun 4 14:11:59 2007 @@ -1,3 +1,3 @@ -MD5 (Email-MIME-Creator-1.45.tar.gz) = 30fb0ce0b8b26317f258b283582067d5 -SHA256 (Email-MIME-Creator-1.45.tar.gz) = 019ee5cc226e382e294263db6f6ba1573e05885cfded18e71cc1153efed17049 -SIZE (Email-MIME-Creator-1.45.tar.gz) = 4568 +MD5 (Email-MIME-Creator-1.453.tar.gz) = 29c0550e0320d53f2b9f933f0442ab17 +SHA256 (Email-MIME-Creator-1.453.tar.gz) = fc879d8c92713df923b8df2a484b95093946ee62eedccd698a06448ac9e3853f +SIZE (Email-MIME-Creator-1.453.tar.gz) = 12302 --- p5-Email-MIME-Creator-1.453.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 434AE16A41F for ; Mon, 4 Jun 2007 09:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2347D13C480 for ; Mon, 4 Jun 2007 09:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549A4LS023601 for ; Mon, 4 Jun 2007 09:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549A42O023600; Mon, 4 Jun 2007 09:10:04 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 09:10:04 GMT Resent-Message-Id: <200706040910.l549A42O023600@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, NAKAJI Hiroyuki Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98BEF16A469 for ; Mon, 4 Jun 2007 09:09:10 +0000 (UTC) (envelope-from nakaji@kankyo-u.ac.jp) Received: from d4407.kankyo-u.ac.jp (d4407.kankyo-u.ac.jp [202.216.78.81]) by mx1.freebsd.org (Postfix) with ESMTP id 3670A13C46A for ; Mon, 4 Jun 2007 09:09:09 +0000 (UTC) (envelope-from nakaji@kankyo-u.ac.jp) Received: from roddy.4407.kankyo-u.ac.jp (localhost [127.0.0.1]) by d4407.kankyo-u.ac.jp (8.14.1/8.13.8) with ESMTP id l54990ch047842; Mon, 4 Jun 2007 18:09:00 +0900 (JST) (envelope-from nakaji@roddy.4407.kankyo-u.ac.jp) Received: (from nakaji@localhost) by roddy.4407.kankyo-u.ac.jp (8.14.1/8.14.1/Submit) id l54990vi047838; Mon, 4 Jun 2007 18:09:00 +0900 (JST) (envelope-from nakaji) Message-Id: <200706040909.l54990vi047838@roddy.4407.kankyo-u.ac.jp> Date: Mon, 4 Jun 2007 18:09:00 +0900 (JST) From: NAKAJI Hiroyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mita@FreeBSD.org Subject: ports/113318: japanese/vflib cannot compile with gcc 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: NAKAJI Hiroyuki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:10:05 -0000 >Number: 113318 >Category: ports >Synopsis: japanese/vflib cannot compile with gcc 4.2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 09:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD roddy.4407.kankyo-u.ac.jp 7.0-CURRENT FreeBSD 7.0-CURRENT #82: Tue May 29 13:50:01 JST 2007 root@roddy.4407.kankyo-u.ac.jp:/usr/obj/usr/src/sys/RODDY i386 >Description: Gcc 4.2 cannot compile some files in VFlib. The order of function's prototypes is the problem, I think. >How-To-Repeat: Update your system to the latest 7.0-current, or install lang/gcc42 and set CC to gcc42. cd /usr/ports/japanese/vflib make all >Fix: Here is a diff from ports-current. Two files, files/VF_FNTWV.c and files/patch-fman.c, are added. diff -urN -x CVS -x work /usr/ports/japanese/vflib/Makefile ./Makefile --- /usr/ports/japanese/vflib/Makefile Sun May 20 08:23:06 2007 +++ ./Makefile Mon Jun 4 18:01:31 2007 @@ -7,7 +7,7 @@ PORTNAME= vflib PORTVERSION= ${VFLIB_VERSION} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= japanese print MASTER_SITES= ftp://gull.se.hiroshima-u.ac.jp/pub/TypeHack/ DISTNAME= VFlib2-${PORTVERSION} diff -urN -x CVS -x work /usr/ports/japanese/vflib/files/patch-VF_FNTWV.c ./files/patch-VF_FNTWV.c --- /usr/ports/japanese/vflib/files/patch-VF_FNTWV.c Thu Jan 1 09:00:00 1970 +++ ./files/patch-VF_FNTWV.c Mon Jun 4 16:12:38 2007 @@ -0,0 +1,42 @@ +--- src/VF_FNTWV.c.orig Wed May 30 13:03:47 2001 ++++ src/VF_FNTWV.c Mon Jun 4 16:11:58 2007 +@@ -177,13 +177,13 @@ + + + ++Private int ReadCapa(); + Public FontObj* + CreateFont_FontWave(ent) + char *ent; + { + Font *font; + FontObj *fobj; +- Private int ReadCapa(); + + if ((font = (Font*) malloc(sizeof(Font))) == NULL){ + printf("in CreateFont malloc() Error!\n"); +@@ -217,22 +217,20 @@ + } + + ++Private int FNTWVOpenFont(); + Private int + OpenFont(obj) + FontObj *obj; + { +- Private int FNTWVOpenFont(); +- + return FNTWVOpenFont((Font*) obj->Locals); + } + + ++Private int FNTWVCloseFont(); + Private int + CloseFont(obj) + FontObj *obj; + { +- Private int FNTWVCloseFont(); +- + return FNTWVCloseFont((Font*) obj->Locals); + } + diff -urN -x CVS -x work /usr/ports/japanese/vflib/files/patch-fman.c ./files/patch-fman.c --- /usr/ports/japanese/vflib/files/patch-fman.c Thu Jan 1 09:00:00 1970 +++ ./files/patch-fman.c Mon Jun 4 16:09:49 2007 @@ -0,0 +1,115 @@ +--- src/fman.c.orig Mon May 10 17:05:20 1999 ++++ src/fman.c Mon Jun 4 16:08:50 2007 +@@ -471,6 +471,14 @@ + } + + ++Private void ++ReturnCache(cptr) ++ CACHE *cptr; ++{ ++ CDR_FREE_LIST(cptr) = FREE_LIST(); ++ FREE_LIST() = cptr; ++} ++ + /* + * CacheIt() --- cache it. The cache slot is moved into + * the head of the LRU list. +@@ -480,7 +488,6 @@ + int port; + { + CACHE *cptr; +- Private void ReturnCache(); + + if ((cptr = RequireCache()) == (CACHE*)NULL){ + fprintf(stderr, "VFlib: CacheIt() - error\n"); +@@ -521,19 +528,36 @@ + return cptr; + } + +-Private void +-ReturnCache(cptr) +- CACHE *cptr; +-{ +- CDR_FREE_LIST(cptr) = FREE_LIST(); +- FREE_LIST() = cptr; +-} +- + + /** + ** LRU LIST + **/ + ++Private int ++LRUPutTop2(cptr, f) ++ CACHE *cptr; ++ int f; ++{ ++ CACHE *cptr_f; ++ FILE_Port port; ++ int val; ++ ++ cptr_f = CacheLRUList.l_forw; ++ cptr->l_forw = cptr_f; ++ cptr_f->l_back = cptr; ++ cptr->l_back = &CacheLRUList; ++ CacheLRUList.l_forw = cptr; ++ ++ val = 0; ++ if (f == TRUE){ ++ port = cptr->port; ++ if (VFFM_Internal_Open(port) < 0) ++ val = -1; ++ } ++ ++ return val; ++} ++ + /* LRUMoveTop() - moves a cache block into the top of LRU list. + * THE CACHE *MUST* BE IN LRU LIST. + */ +@@ -542,7 +566,6 @@ + CACHE *cptr; + { + CACHE *cptr_b, *cptr_f; +- Private int LRUPutTop2(); + + cptr_b = cptr->l_back; + cptr_f = cptr->l_forw; +@@ -558,36 +581,9 @@ + LRUPutTop(cptr) + CACHE *cptr; + { +- Private int LRUPutTop2(); +- + return LRUPutTop2(cptr, TRUE); + } + +-Private int +-LRUPutTop2(cptr, f) +- CACHE *cptr; +- int f; +-{ +- CACHE *cptr_f; +- FILE_Port port; +- int val; +- +- cptr_f = CacheLRUList.l_forw; +- cptr->l_forw = cptr_f; +- cptr_f->l_back = cptr; +- cptr->l_back = &CacheLRUList; +- CacheLRUList.l_forw = cptr; +- +- val = 0; +- if (f == TRUE){ +- port = cptr->port; +- if (VFFM_Internal_Open(port) < 0) +- val = -1; +- } +- +- return val; +-} +- + + Private int + LRUDeleteTail() >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:10:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B83E16A421; Mon, 4 Jun 2007 09:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4238513C48A; Mon, 4 Jun 2007 09:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549ACex023706; Mon, 4 Jun 2007 09:10:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549AC1Z023702; Mon, 4 Jun 2007 09:10:12 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 09:10:12 GMT From: Edwin Groothuis Message-Id: <200706040910.l549AC1Z023702@freefall.freebsd.org> To: cherry@trombik.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:10:12 -0000 Synopsis: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jun 4 09:10:11 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113317 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:10:28 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6436216A400; Mon, 4 Jun 2007 09:10:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3EEA113C489; Mon, 4 Jun 2007 09:10:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549AShd023890; Mon, 4 Jun 2007 09:10:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549ASSY023886; Mon, 4 Jun 2007 09:10:28 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 09:10:28 GMT From: Edwin Groothuis Message-Id: <200706040910.l549ASSY023886@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mita@FreeBSD.org Cc: Subject: Re: ports/113318: japanese/vflib cannot compile with gcc 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:10:28 -0000 Synopsis: japanese/vflib cannot compile with gcc 4.2 Responsible-Changed-From-To: freebsd-ports-bugs->mita Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 09:10:27 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113318 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:17:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDF4A16A469; Mon, 4 Jun 2007 09:17:04 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9673913C4B0; Mon, 4 Jun 2007 09:17:04 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549H4Fl024733; Mon, 4 Jun 2007 09:17:04 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549H4v7024729; Mon, 4 Jun 2007 09:17:04 GMT (envelope-from pav) Date: Mon, 4 Jun 2007 09:17:04 GMT From: Pav Lucistnik Message-Id: <200706040917.l549H4v7024729@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Cc: Subject: Re: ports/113310: [MAINTAINER] sysutils/lsof: update to 4.79B X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:17:04 -0000 Synopsis: [MAINTAINER] sysutils/lsof: update to 4.79B Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Mon Jun 4 09:15:58 UTC 2007 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=113310 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:17:29 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F7F816A468; Mon, 4 Jun 2007 09:17:29 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 49EEB13C45D; Mon, 4 Jun 2007 09:17:29 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549HT5R024797; Mon, 4 Jun 2007 09:17:29 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549HT5p024793; Mon, 4 Jun 2007 09:17:29 GMT (envelope-from pav) Date: Mon, 4 Jun 2007 09:17:29 GMT From: Pav Lucistnik Message-Id: <200706040917.l549HT5p024793@freefall.freebsd.org> To: pav@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/99668: sysutils/lsof cannot build on FreeBSD/pc98 7.0-current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:17:29 -0000 Synopsis: sysutils/lsof cannot build on FreeBSD/pc98 7.0-current Responsible-Changed-From-To: obrien->freebsd-ports-bugs Responsible-Changed-By: pav Responsible-Changed-When: Mon Jun 4 09:17:13 UTC 2007 Responsible-Changed-Why: obrien is no longer maintainer of this port http://www.freebsd.org/cgi/query-pr.cgi?pr=99668 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:20:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5ACD16A41F for ; Mon, 4 Jun 2007 09:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6FBCE13C480 for ; Mon, 4 Jun 2007 09:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549KETl024985 for ; Mon, 4 Jun 2007 09:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549KEL0024984; Mon, 4 Jun 2007 09:20:14 GMT (envelope-from gnats) Date: Mon, 4 Jun 2007 09:20:14 GMT Message-Id: <200706040920.l549KEL0024984@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Pav Lucistnik Cc: Subject: Re: ports/99668: sysutils/lsof cannot build on FreeBSD/pc98 7.0-current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pav Lucistnik List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:20:14 -0000 The following reply was made to PR ports/99668; it has been noted by GNATS. From: Pav Lucistnik To: bug-followup@FreeBSD.org, nakaji@jp.freebsd.org, ler@lerctr.org Cc: Subject: Re: ports/99668: sysutils/lsof cannot build on FreeBSD/pc98 7.0-current Date: Mon, 04 Jun 2007 11:18:52 +0200 Dear maintainer of FreeBSD port sysutils/lsof, could you please review this old PR http://www.freebsd.org/cgi/query-pr.cgi?pr=99668 and gave us directions on how to proceed resolving it? -- Pav Lucistnik It's ten o'clock; do you know where your processes are? From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:23:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D66E916A400; Mon, 4 Jun 2007 09:23:27 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AF27C13C484; Mon, 4 Jun 2007 09:23:27 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549NROG025721; Mon, 4 Jun 2007 09:23:27 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549NR8N025717; Mon, 4 Jun 2007 09:23:27 GMT (envelope-from pav) Date: Mon, 4 Jun 2007 09:23:27 GMT From: Pav Lucistnik Message-Id: <200706040923.l549NR8N025717@freefall.freebsd.org> To: nakaji@jp.freebsd.org, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Cc: Subject: Re: ports/99668: sysutils/lsof cannot build on FreeBSD/pc98 7.0-current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:23:27 -0000 Synopsis: sysutils/lsof cannot build on FreeBSD/pc98 7.0-current State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Mon Jun 4 09:23:11 UTC 2007 State-Changed-Why: Asked for feedback Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Mon Jun 4 09:23:11 UTC 2007 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=99668 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 09:40:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F39F016A468 for ; Mon, 4 Jun 2007 09:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D742413C46C for ; Mon, 4 Jun 2007 09:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l549e5lq027685 for ; Mon, 4 Jun 2007 09:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l549e5kt027684; Mon, 4 Jun 2007 09:40:05 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 09:40:05 GMT Resent-Message-Id: <200706040940.l549e5kt027684@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tomoyuki Sakurai Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAB2F16A56C for ; Mon, 4 Jun 2007 09:30:56 +0000 (UTC) (envelope-from cherry@spica.trombik.org) Received: from spica.trombik.org (spica.trombik.org [211.19.48.12]) by mx1.freebsd.org (Postfix) with ESMTP id 53D6A13C483 for ; Mon, 4 Jun 2007 09:30:56 +0000 (UTC) (envelope-from cherry@spica.trombik.org) Received: by spica.trombik.org (Postfix, from userid 999) id 1293322D0B; Mon, 4 Jun 2007 18:30:55 +0900 (JST) Message-Id: <20070604093055.1293322D0B@spica.trombik.org> Date: Mon, 4 Jun 2007 18:30:55 +0900 (JST) From: Tomoyuki Sakurai To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113319: [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View for Email X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 09:40:06 -0000 >Number: 113319 >Category: ports >Synopsis: [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View for Email >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 09:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tomoyuki Sakurai >Release: FreeBSD 6.1-RELEASE-p11 i386 >Organization: >Environment: System: FreeBSD spica.trombik.org 6.1-RELEASE-p11 FreeBSD 6.1-RELEASE-p11 #6: Sun Jan 7 04:14:41 JST >Description: Catalyst::Helper::View::Email - Helper for Email Views WWW: http://search.cpan.org/dist/Catalyst-View-Email/ This new port requires ports/113317 to be resolved. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Catalyst-View-Email-0.01.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Catalyst-View-Email # p5-Catalyst-View-Email/pkg-descr # p5-Catalyst-View-Email/Makefile # p5-Catalyst-View-Email/pkg-plist # p5-Catalyst-View-Email/distinfo # echo c - p5-Catalyst-View-Email mkdir -p p5-Catalyst-View-Email > /dev/null 2>&1 echo x - p5-Catalyst-View-Email/pkg-descr sed 's/^X//' >p5-Catalyst-View-Email/pkg-descr << 'END-of-p5-Catalyst-View-Email/pkg-descr' XCatalyst::Helper::View::Email - Helper for Email Views X XWWW: http://search.cpan.org/dist/Catalyst-View-Email/ END-of-p5-Catalyst-View-Email/pkg-descr echo x - p5-Catalyst-View-Email/Makefile sed 's/^X//' >p5-Catalyst-View-Email/Makefile << 'END-of-p5-Catalyst-View-Email/Makefile' X# New ports collection makefile for: p5-Catalyst-View-Email X# Date created: 2007-06-04 X# Whom: Tomoyuki Sakurai X# X# $FreeBSD$ X# X XPORTNAME= Catalyst-View-Email XPORTVERSION= 0.01 XCATEGORIES= www XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Catalyst XPKGNAMEPREFIX= p5- X XMAINTAINER= cherry@trombik.org XCOMMENT= Catalyst View for Email X XRUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime \ X p5-Catalyst-Devel>=1.00:${PORTSDIR}/www/p5-Catalyst-Devel \ X p5-Catalyst-View-TT>0:${PORTSDIR}/www/p5-Catalyst-View-TT \ X p5-Class-C3>=0:${PORTSDIR}/devel/p5-Class-C3 \ X p5-Email-Send>=2.185:${PORTSDIR}/mail/p5-Email-Send \ X mail/p5-Email-MIME>=1.859:${PORTSDIR}/mail/p5-Email-MIME \ X mail/p5-Email-MIME-Creator>=1.45:${PORTSDIR}/mail/p5-Email-MIME-Creator XBUILD_DEPENDS= ${RUN_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Catalyst::Helper::View::Email.3 Catalyst::Helper::View::Email::Template.3 \ X Catalyst::View::Email.3 Catalyst::View::Email::Template.3 X X.include X.include END-of-p5-Catalyst-View-Email/Makefile echo x - p5-Catalyst-View-Email/pkg-plist sed 's/^X//' >p5-Catalyst-View-Email/pkg-plist << 'END-of-p5-Catalyst-View-Email/pkg-plist' X@comment $FreeBSD$ Xlib/perl5/site_perl/5.8.8/mach/auto/Catalyst/View/Email/.packlist Xlib/perl5/site_perl/5.8.8/Catalyst/View/Email.pm Xlib/perl5/site_perl/5.8.8/Catalyst/View/Email/Template.pm Xlib/perl5/site_perl/5.8.8/Catalyst/Helper/View/Email.pm Xlib/perl5/site_perl/5.8.8/Catalyst/Helper/View/Email/Template.pm X@dirrmtry lib/perl5/site_perl/5.8.8/mach/auto/Catalyst/View/Email X@dirrmtry lib/perl5/site_perl/5.8.8/Catalyst/View/Email X@dirrmtry lib/perl5/site_perl/5.8.8/Catalyst/Helper/View/Email END-of-p5-Catalyst-View-Email/pkg-plist echo x - p5-Catalyst-View-Email/distinfo sed 's/^X//' >p5-Catalyst-View-Email/distinfo << 'END-of-p5-Catalyst-View-Email/distinfo' XMD5 (Catalyst-View-Email-0.01.tar.gz) = e71cda3dc30f452db1262eb4375007af XSHA256 (Catalyst-View-Email-0.01.tar.gz) = 9924bf978e70d169adeb6c90d0b413dd203cb63914f20299ad68a21d786f6ce6 XSIZE (Catalyst-View-Email-0.01.tar.gz) = 22318 END-of-p5-Catalyst-View-Email/distinfo exit --- p5-Catalyst-View-Email-0.01.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 10:04:50 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5824216A482; Mon, 4 Jun 2007 10:04:50 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2DB8F13C458; Mon, 4 Jun 2007 10:04:50 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54A4o1r030260; Mon, 4 Jun 2007 10:04:50 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54A4nID030256; Mon, 4 Jun 2007 10:04:49 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 10:04:49 GMT From: Edwin Groothuis Message-Id: <200706041004.l54A4nID030256@freefall.freebsd.org> To: hashiz@tomba.meridiani.jp, cherry@trombik.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 10:04:50 -0000 Synopsis: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 State-Changed-From-To: feedback->open State-Changed-By: edwin State-Changed-When: Mon Jun 4 10:04:40 UTC 2007 State-Changed-Why: mainatiner approved http://www.freebsd.org/cgi/query-pr.cgi?pr=113317 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 10:10:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E64A16A468 for ; Mon, 4 Jun 2007 10:10:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5F22B13C489 for ; Mon, 4 Jun 2007 10:10:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54AAHLt030538 for ; Mon, 4 Jun 2007 10:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54AAH3o030537; Mon, 4 Jun 2007 10:10:17 GMT (envelope-from gnats) Date: Mon, 4 Jun 2007 10:10:17 GMT Message-Id: <200706041010.l54AAH3o030537@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: HASHI Hiroaki Cc: Subject: Re: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: HASHI Hiroaki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 10:10:18 -0000 The following reply was made to PR ports/113317; it has been noted by GNATS. From: HASHI Hiroaki To: bug-followup@FreeBSD.org, edwin@FreeBSD.org Cc: Subject: Re: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 Date: Mon, 04 Jun 2007 18:46:21 +0900 (JST) This patch seems to good. Please commit it. In "Re: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453" at Mon, 4 Jun 2007 09:10:06 UT Edwin Groothuis wrote: > Maintainer of mail/p5-Email-MIME-Creator, > > Please note that PR ports/113317 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/113317 > > -- > Edwin Groothuis > edwin@FreeBSD.org > From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 10:16:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E969716A46D; Mon, 4 Jun 2007 10:16:20 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C1AF613C468; Mon, 4 Jun 2007 10:16:20 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (clsung@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54AGKTd031382; Mon, 4 Jun 2007 10:16:20 GMT (envelope-from clsung@freefall.freebsd.org) Received: (from clsung@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54AGKuc031378; Mon, 4 Jun 2007 10:16:20 GMT (envelope-from clsung) Date: Mon, 4 Jun 2007 10:16:20 GMT From: Cheng-Lung Sung Message-Id: <200706041016.l54AGKuc031378@freefall.freebsd.org> To: hashiz@tomba.meridiani.jp, clsung@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113317: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 10:16:21 -0000 Synopsis: [PATCH] mail/p5-Email-MIME-Creator: update to 1.453 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: clsung Responsible-Changed-When: Mon Jun 4 10:16:19 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113317 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 11:10:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F02FF16A468 for ; Mon, 4 Jun 2007 11:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D3E0313C469 for ; Mon, 4 Jun 2007 11:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54BA4r8038279 for ; Mon, 4 Jun 2007 11:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54BA4fs038278; Mon, 4 Jun 2007 11:10:04 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 11:10:04 GMT Resent-Message-Id: <200706041110.l54BA4fs038278@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jan-Peter Koopmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8406F16A421 for ; Mon, 4 Jun 2007 11:05:22 +0000 (UTC) (envelope-from root@seceidos.de) Received: from mail.seceidos.de (mail.seceidos.de [213.157.28.234]) by mx1.freebsd.org (Postfix) with ESMTP id 3121D13C46E for ; Mon, 4 Jun 2007 11:05:22 +0000 (UTC) (envelope-from root@seceidos.de) Message-Id: Date: Mon, 4 Jun 2007 12:54:22 +0200 (CEST) From: Jan-Peter Koopmann To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113320: [MAINTAINER] mail/MailScanner: update to 4.60.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 11:10:05 -0000 >Number: 113320 >Category: ports >Synopsis: [MAINTAINER] mail/MailScanner: update to 4.60.8 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 11:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Jan-Peter Koopmann >Release: FreeBSD 4.9-STABLE i386 >Organization: >Environment: System: FreeBSD services.intern.seceidos.de 4.9-STABLE FreeBSD 4.9-STABLE #0: Mon Jan 5 10:56:46 CET >Description: - Update to 4.60.8 1/6/2007 New in Version 4.60.8-1 ================================ * New Features and Improvements * 1 Improved Sophos.install script so that it sets up /etc/ld.so.conf ready for installation of Perl-SAVI module required for "sophossavi" virus scanner. 1 Custom Functions can now receive parameters not only to their Init and End functions, but also to their run-time calculation functions (i.e. the real custom function itself used when processing each message). The Custom Function is now passed not only the message, but also a ref to a list of parameters specified in the MailScanner.conf file. 1 Improvement to phishing net. 1 'clamavmodule' scanner no longer detects encrypted zips/rars as viruses, leaving MailScanner to do the check later in the dangerous content scanning. The consequence is that MailWatch will allow them to be released from quarantine. 2 Updated a whole load of Perl modules in the pre-requisites lists for both MailScanner and SpamAssassin. 2 Added a "--nomodules" command-line option to the MailScanner install.sh script to skip installing required Perl modules. 2-2 Fixed bugs introduced by 4.60.2 in generic installer. Only affects 'other Linux and non-Linux' installer. 2-4 Fixed more non-Linux installer problems. 4 Added more modules to the list output by "MailScanner --version". 4 Improved phishing net detection of HTML tags, courtesy of snifer_@hotmail.com. 4 Added patches to provide full "p record" support in Postfix 2.3 and 2.4, courtesy of Glenn Steen . 5 Added a new feature, to compress all the attachments in a message and replace them with a single zip file. Set "Zip Attachments = yes" (no by default), and set "Attachments Zip Filename = MessageAttachments.zip" 6 Added 2 new configuration options for the "Zip Attachments" feature: Attachments Min Total Size To Zip = 100k Attachment Extensions Not To Zip = .zip .rar .tgz .gz .mpg .mpeg .mp3 .rpm Hopefully these are fairly self-explanatory. * Fixes * 1 Phishing net now correctly handles HTML tags inside links. 1 Deprecated clamscan flag replaced with supported one to stop it printing the summary. 1 Added '-b' to nod32-1.99 command-line options in SweepViruses.pm to stop scanner producing licensing details. Thanks to UxBoD. 1 Removed test in RPM distribution's test for RedHat 6 as it will clash with RHEL 6 and Fedora. Anyone still running RedHat 6 has bigger problems! :-) 1 Worked round Perl bug in returning number of RBLs hit by a message. 1 Fixed problem causing some password-protected RAR archives to be missed. 3 Fixed bug introduced in earlier beta in RBL code. 6-2 Patch to Exim to handle named ACL variables as well as numbered ones. Courtesy of Maarten Vink. 7 Added v320.pre to mcp directory. 7 Postfix 2.3/2.4 patch fix. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- MailScanner-4.60.8.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/mailscanner/Makefile,v retrieving revision 1.62 diff -u -r1.62 Makefile --- Makefile 4 Jun 2007 09:59:58 -0000 1.62 +++ Makefile 4 Jun 2007 10:53:53 -0000 @@ -6,7 +6,7 @@ # PORTNAME= MailScanner -PORTVERSION= 4.59.4 +PORTVERSION= 4.60.8 CATEGORIES= mail MASTER_SITES= http://www.mailscanner.info/files/4/tar/ DISTNAME= ${PORTNAME}-install-${PORTVERSION}-${PATCHLEVEL} @@ -51,7 +51,7 @@ CONFLICTS= MailScanner-devel-[0-9]* -PATCHLEVEL= 2 +PATCHLEVEL= 1 USE_PERL5= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/mailscanner/distinfo,v retrieving revision 1.42 diff -u -r1.42 distinfo --- distinfo 4 Jun 2007 09:59:58 -0000 1.42 +++ distinfo 4 Jun 2007 10:53:53 -0000 @@ -1,3 +1,3 @@ -MD5 (MailScanner-install-4.59.4-2.tar.gz) = 342a3d40c8bdf0f204556956370e4042 -SHA256 (MailScanner-install-4.59.4-2.tar.gz) = c591c3f58c9de0991a5f1736fc1cf7a6be1ad49ce68ddb6bdd2c1dbd4f5c29f1 -SIZE (MailScanner-install-4.59.4-2.tar.gz) = 7060488 +MD5 (MailScanner-install-4.60.8-1.tar.gz) = 3d7a9b877fa908fe103e8190afd0ed77 +SHA256 (MailScanner-install-4.60.8-1.tar.gz) = ae8257a412989e27c3ea85575d869cd0e53be7c6868b9edce8ded03f26be7ec1 +SIZE (MailScanner-install-4.60.8-1.tar.gz) = 7705484 Index: files/CHANGES.port =================================================================== RCS file: /home/ncvs/ports/mail/mailscanner/files/CHANGES.port,v retrieving revision 1.15 diff -u -r1.15 CHANGES.port --- files/CHANGES.port 4 Jun 2007 09:59:58 -0000 1.15 +++ files/CHANGES.port 4 Jun 2007 10:53:53 -0000 @@ -1,3 +1,7 @@ +Version 4.60.8 +============== +- update to 4.60.8 + Version 4.59.4_2 ================ - update to 4.59.4 --- MailScanner-4.60.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 11:10:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 80F0216A4AB for ; Mon, 4 Jun 2007 11:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5B79513C480 for ; Mon, 4 Jun 2007 11:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54BA7UR038310 for ; Mon, 4 Jun 2007 11:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54BA7LO038309; Mon, 4 Jun 2007 11:10:07 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 11:10:07 GMT Resent-Message-Id: <200706041110.l54BA7LO038309@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F2CA16A400 for ; Mon, 4 Jun 2007 11:05:36 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.18.13]) by mx1.freebsd.org (Postfix) with ESMTP id B453213C48A for ; Mon, 4 Jun 2007 11:05:35 +0000 (UTC) (envelope-from mail@sysfault.org) Received: (qmail 32583 invoked from network); 4 Jun 2007 11:05:32 -0000 Received: from unknown (HELO medusa.sysfault.org) (936934@[81.14.161.247]) (envelope-sender ) by smtprelay01.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 4 Jun 2007 11:05:32 -0000 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvAON-000L5k-8S; Mon, 04 Jun 2007 13:06:31 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.13.1/8.13.1/Submit) id l54B6U16080984; Mon, 4 Jun 2007 13:06:30 +0200 (CEST) (envelope-from marcus) Message-Id: <200706041106.l54B6U16080984@medusa.sysfault.org> Date: Mon, 4 Jun 2007 13:06:30 +0200 (CEST) From: Marcus von Appen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kris@obsecurity.org, miwi@FreeBSD.org Subject: ports/113321: [Maintainer-update]: x11-fm/emelfm2 RELENG_5 fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus von Appen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 11:10:08 -0000 >Number: 113321 >Category: ports >Synopsis: [Maintainer-update]: x11-fm/emelfm2 RELENG_5 fix >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 11:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 6.2-STABLE FreeBSD 6.2-STABLE #1: Sat Apr 7 22:24:16 CEST 2007 root@medusa.sysfault.org:/usr/obj/usr/src/sys/MEDUSA i386 >Description: As reported via pointyhat, the build of emelfm2 breaks due to an undefined blksize_t type, which is not available on RELENG_5 platforms. The attached patch should fix this. Note: The main website of emelfm2 is currently not available, so you might have to get the emelfm2-0.3.4.tar.gz package from somewhere else or wait until the website is online again :-/. I'm not sure, whether the PORTREVISION bump is necessary in this case, so you might remove it, if you do not think, it makes sense here. >How-To-Repeat: Try to compile emelfm2 on RELENG_5. >Fix: diff -Nur emelfm2/Makefile emelfm2.new/Makefile --- emelfm2/Makefile Sun May 27 21:49:38 2007 +++ emelfm2.new/Makefile Mon Jun 4 12:39:58 2007 @@ -6,6 +6,7 @@ # PORTNAME= emelfm2 +PORTREVISION= 1 PORTVERSION= 0.3.4 CATEGORIES= x11-fm MASTER_SITES= http://www.emelfm2.net/rel/ \ @@ -85,8 +86,8 @@ .if ${OSVERSION} < 600000 post-patch: - @${REINPLACE_CMD} -e 's|blksize_t buf_size =|__int32_t buf_size =|g' \ - ${WRKSRC}/src/e2_task_backend.c + @${REINPLACE_CMD} -e 's|blksize_t buf_size =|__int32_t buf_size =|g' \ + ${WRKSRC}/src/filesystem/e2_fs.c .endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 11:13:32 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 980DB16A41F; Mon, 4 Jun 2007 11:13:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6FBBD13C4AD; Mon, 4 Jun 2007 11:13:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54BDWIv040346; Mon, 4 Jun 2007 11:13:32 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54BDWkT040342; Mon, 4 Jun 2007 11:13:32 GMT (envelope-from miwi) Date: Mon, 4 Jun 2007 11:13:32 GMT From: Martin Wilke Message-Id: <200706041113.l54BDWkT040342@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113320: [MAINTAINER] mail/MailScanner: update to 4.60.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 11:13:32 -0000 Synopsis: [MAINTAINER] mail/MailScanner: update to 4.60.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Jun 4 11:13:30 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113320 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 11:13:47 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 563AC16A400; Mon, 4 Jun 2007 11:13:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3053013C4B9; Mon, 4 Jun 2007 11:13:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54BDkGB040459; Mon, 4 Jun 2007 11:13:46 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54BDki5040455; Mon, 4 Jun 2007 11:13:46 GMT (envelope-from miwi) Date: Mon, 4 Jun 2007 11:13:46 GMT From: Martin Wilke Message-Id: <200706041113.l54BDki5040455@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113321: [Maintainer-update]: x11-fm/emelfm2 RELENG_5 fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 11:13:47 -0000 Synopsis: [Maintainer-update]: x11-fm/emelfm2 RELENG_5 fix Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Jun 4 11:13:46 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113321 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 12:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4064B16A421 for ; Mon, 4 Jun 2007 12:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1BE3C13C44B for ; Mon, 4 Jun 2007 12:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54Ce4Ou053275 for ; Mon, 4 Jun 2007 12:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54Ce4m9053274; Mon, 4 Jun 2007 12:40:04 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 12:40:04 GMT Resent-Message-Id: <200706041240.l54Ce4m9053274@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4110416A468 for ; Mon, 4 Jun 2007 12:30:22 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay05.ispgateway.de (smtprelay05.ispgateway.de [80.67.18.43]) by mx1.freebsd.org (Postfix) with ESMTP id 8C75213C458 for ; Mon, 4 Jun 2007 12:30:21 +0000 (UTC) (envelope-from mail@sysfault.org) Received: (qmail 5033 invoked from network); 4 Jun 2007 12:30:16 -0000 Received: from unknown (HELO medusa.sysfault.org) (936934@[81.14.161.247]) (envelope-sender ) by smtprelay05.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 4 Jun 2007 12:30:16 -0000 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvBiN-000524-PY for FreeBSD-gnats-submit@freebsd.org; Mon, 04 Jun 2007 14:31:15 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.13.1/8.13.1/Submit) id l54CVFvM019347; Mon, 4 Jun 2007 14:31:15 +0200 (CEST) (envelope-from marcus) Message-Id: <200706041231.l54CVFvM019347@medusa.sysfault.org> Date: Mon, 4 Jun 2007 14:31:15 +0200 (CEST) From: Marcus von Appen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113323: [New Port]: games/linux-uplink-demo: High tech computer crime and industrial espionage on the Internet X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 12:40:05 -0000 >Number: 113323 >Category: ports >Synopsis: [New Port]: games/linux-uplink-demo: High tech computer crime and industrial espionage on the Internet >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 12:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 6.2-STABLE FreeBSD 6.2-STABLE #1: Sat Apr 7 22:24:16 CEST >Description: >From the homepage: You play an Uplink Agent who makes a living by performing jobs for major corporations. Your tasks involve hacking into rival computer systems, stealing research data, sabotaging other companies, laundering money, erasing evidence, or framing innocent people. You use the money you earn to upgrade your computer systems, and to buy new software and tools. As your experience level increases you find more dangerous and profitable missions become available. You can speculate on a fully working stock market (and even influence its outcome). You can modify peoples academic or criminal records. You can divert money from bank transfers into your own accounts. You can even take part in the construction of the most deadly computer virus ever designed. WWW: http://uplink.co.uk Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- linux-uplink-demo-1.55.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # linux-uplink-demo # linux-uplink-demo/files # linux-uplink-demo/files/uplink.in # linux-uplink-demo/pkg-plist # linux-uplink-demo/pkg-descr # linux-uplink-demo/distinfo # linux-uplink-demo/Makefile # linux-uplink-demo/pkg-message # echo c - linux-uplink-demo mkdir -p linux-uplink-demo > /dev/null 2>&1 echo c - linux-uplink-demo/files mkdir -p linux-uplink-demo/files > /dev/null 2>&1 echo x - linux-uplink-demo/files/uplink.in sed 's/^X//' >linux-uplink-demo/files/uplink.in << 'END-of-linux-uplink-demo/files/uplink.in' X#!/bin/sh X XLD_PRELOAD_FTGL=%%LINUXBASE%%/usr/lib/libfreetype.so.6:%%DATADIR%%/libftgl.so.0 X Xif [ -n "$LD_PRELOAD" ]; then X export LD_PRELOAD="$LD_PRELOAD_FTGL:$LD_PRELOAD" Xelse X export LD_PRELOAD="$LD_PRELOAD_FTGL" Xfi X Xcd %%DATADIR%% || exit 1 Xexec ./uplink.bin.x86 "$@" END-of-linux-uplink-demo/files/uplink.in echo x - linux-uplink-demo/pkg-plist sed 's/^X//' >linux-uplink-demo/pkg-plist << 'END-of-linux-uplink-demo/pkg-plist' Xbin/linux-uplink X%%DATADIR%%/uplink.bin.x86 X%%DATADIR%%/libftgl.so.0 X%%DATADIR%%/data.dat X%%DATADIR%%/fonts.dat X%%DATADIR%%/graphics.dat X%%DATADIR%%/loading.dat X%%DATADIR%%/music.dat X%%DATADIR%%/patch.dat X%%DATADIR%%/patch2.dat X%%DATADIR%%/patch3.dat X%%DATADIR%%/sounds.dat X%%PORTDOCS%%%%DOCSDIR%%/license.txt X%%PORTDOCS%%%%DOCSDIR%%/mods.txt X%%PORTDOCS%%%%DOCSDIR%%/Readme-UplinkSupport.txt X%%PORTDOCS%%%%DOCSDIR%%/readme.txt X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm %%DATADIR%% END-of-linux-uplink-demo/pkg-plist echo x - linux-uplink-demo/pkg-descr sed 's/^X//' >linux-uplink-demo/pkg-descr << 'END-of-linux-uplink-demo/pkg-descr' XFrom the homepage: You play an Uplink Agent who makes a living by performing Xjobs for major corporations. Your tasks involve hacking into rival computer Xsystems, stealing research data, sabotaging other companies, laundering money, Xerasing evidence, or framing innocent people. XYou use the money you earn to upgrade your computer systems, and to buy new Xsoftware and tools. As your experience level increases you find more Xdangerous and profitable missions become available. You can speculate on a Xfully working stock market (and even influence its outcome). You can modify Xpeoples academic or criminal records. You can divert money from bank transfers Xinto your own accounts. You can even take part in the construction of the most Xdeadly computer virus ever designed. X XWWW: http://uplink.co.uk END-of-linux-uplink-demo/pkg-descr echo x - linux-uplink-demo/distinfo sed 's/^X//' >linux-uplink-demo/distinfo << 'END-of-linux-uplink-demo/distinfo' XMD5 (uplink-demo-1.55DEMO.sh) = dc2c3f732c71af597de442e44b28f0b0 XSHA256 (uplink-demo-1.55DEMO.sh) = d00de7891a7ee47afb5b39345d14afdad3563bc17c9ef356284f3edffbe515e8 XSIZE (uplink-demo-1.55DEMO.sh) = 10545660 END-of-linux-uplink-demo/distinfo echo x - linux-uplink-demo/Makefile sed 's/^X//' >linux-uplink-demo/Makefile << 'END-of-linux-uplink-demo/Makefile' X# New ports collection makefile for: linux-uplink-demo X# Date created: 25 May 2007 X# Whom: Marcus von Appen X# X# $FreeBSD$ X# X XPORTNAME= uplink-demo XPORTVERSION= 1.55 XCATEGORIES= games linux XMASTER_SITES= http://uplink.co.uk/test/ XPKGNAMEPREFIX= linux- XDISTNAME= ${PORTNAME}-${PORTVERSION}DEMO XEXTRACT_SUFX= .sh X XMAINTAINER= mva@sysfault.org XCOMMENT= High tech computer crime and industrial espionage on the Internet X XRUN_DEPENDS= ${LINUXBASE}/usr/lib/libSDL-1.2.so.0:${PORTSDIR}/devel/linux-sdl12 \ X ${LINUXBASE}/usr/lib/libjpeg.so.62:${PORTSDIR}/graphics/linux-jpeg \ X ${LINUXBASE}/usr/lib/libSDL_mixer-1.2.so.0:${PORTSDIR}/audio/linux-sdl_mixer \ X ${LINUXBASE}/usr/lib/libmikmod.so.2:${PORTSDIR}/audio/linux-mikmod X XONLY_FOR_ARCHS= i386 XUSE_LINUX= yes XUSE_XLIB= yes XUSE_LDCONFIG= yes XNO_CDROM= Redistribution is limited, see license XNO_BUILD= yes XNO_WRKSUBDIR= yes X XDATADIR= ${PREFIX}/lib/${PKGNAMEPREFIX}${PORTNAME} XSUB_FILES= uplink XSUB_LIST= LINUXBASE=${LINUXBASE} XDOCFILES= license.txt mods.txt Readme-UplinkSupport.txt readme.txt X XOPTIONS= NVIDIA "Install support for nvidia" off X X.include X X.if defined(WITH_NVIDIA) XRUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ X ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU X.else XRUN_DEPENDS+= ${LINUXBASE}/usr/X11R6/lib/libGL.so.1:${PORTSDIR}/graphics/linux_dri X.endif X Xdo-extract: X @${MKDIR} ${WRKDIR} X @cd ${WRKDIR} && ${TAIL} +376 ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} | \ X ${TAR} zxf - X Xdo-build: X ${BRANDELF} -t Linux ${WRKSRC}/lib/uplink.bin.x86 X Xdo-install: X ${MKDIR} ${DATADIR} X @cd ${WRKSRC}/lib && \ X ${INSTALL_PROGRAM} uplink.bin.x86 libftgl.so.0 ${DATADIR} && \ X ${INSTALL_DATA} *.dat ${DATADIR} X ${INSTALL_PROGRAM} ${WRKDIR}/uplink ${PREFIX}/bin/${PKGNAMEPREFIX}uplink X.if !defined (NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for file in ${DOCFILES} X ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}/${file} X.endfor X.endif X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-linux-uplink-demo/Makefile echo x - linux-uplink-demo/pkg-message sed 's/^X//' >linux-uplink-demo/pkg-message << 'END-of-linux-uplink-demo/pkg-message' X====================================================================== XThis game will attempt to obtain some system information by Xaccessing files in linux's procfs. You must install the Linux Xemulation procfs filesystem for this to work correctly. This can be Xaccomplished by adding the following line to your /etc/fstab file: X X linprocfs /compat/linux/proc linprocfs rw 0 0 X Xand then, as root, executing the commands: X Xkldload linprocfs Xmount /compat/linux/proc X X====================================================================== END-of-linux-uplink-demo/pkg-message exit --- linux-uplink-demo-1.55.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 12:45:58 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2EC4F16A421; Mon, 4 Jun 2007 12:45:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0632F13C43E; Mon, 4 Jun 2007 12:45:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54CjvYC054158; Mon, 4 Jun 2007 12:45:57 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54CjvJ0054154; Mon, 4 Jun 2007 12:45:57 GMT (envelope-from miwi) Date: Mon, 4 Jun 2007 12:45:57 GMT From: Martin Wilke Message-Id: <200706041245.l54CjvJ0054154@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113323: [New Port]: games/linux-uplink-demo: High tech computer crime and industrial espionage on the Internet X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 12:45:58 -0000 Synopsis: [New Port]: games/linux-uplink-demo: High tech computer crime and industrial espionage on the Internet Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Jun 4 12:45:57 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113323 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49FC716A400 for ; Mon, 4 Jun 2007 13:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 162D613C480 for ; Mon, 4 Jun 2007 13:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DA4gU055995 for ; Mon, 4 Jun 2007 13:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DA4IH055994; Mon, 4 Jun 2007 13:10:04 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:10:04 GMT Resent-Message-Id: <200706041310.l54DA4IH055994@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3A1A16A421 for ; Mon, 4 Jun 2007 13:00:20 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id 721CA13C469 for ; Mon, 4 Jun 2007 13:00:20 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id DB9391CCD9; Mon, 4 Jun 2007 15:00:16 +0200 (CEST) Message-Id: <20070604130016.DB9391CCD9@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:00:16 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113325: japanese/ng: use termios instead of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:05 -0000 >Number: 113325 >Category: ports >Synopsis: japanese/ng: use termios instead of sgtty >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: The japanese/ng port makes use of the bsd style code for stuff like line discipline handling. Nowadays we can just use the sysv code, which makes us use the sgtty interface instead of termios, which is the preferred one. >How-To-Repeat: >Fix: Apply the following patch: --- japanese/ng/Makefile Tue Feb 20 17:57:51 2007 +++ japanese/ng/Makefile Mon Jun 4 09:24:04 2007 @@ -40,7 +40,7 @@ .endif post-patch: - @(cd ${WRKSRC}; ${LN} -sf sys/bsd/Makefile . ) + @(cd ${WRKSRC}; ${LN} -sf sys/sysv/Makefile . ) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ng ${PREFIX}/bin >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 65DE616A421 for ; Mon, 4 Jun 2007 13:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4A0CD13C487 for ; Mon, 4 Jun 2007 13:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DA5aM056048 for ; Mon, 4 Jun 2007 13:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DA4CU056043; Mon, 4 Jun 2007 13:10:04 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:10:04 GMT Resent-Message-Id: <200706041310.l54DA4CU056043@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C80EE16A421 for ; Mon, 4 Jun 2007 13:02:13 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id 9764E13C44C for ; Mon, 4 Jun 2007 13:02:13 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 019771CCD9; Mon, 4 Jun 2007 15:02:13 +0200 (CEST) Message-Id: <20070604130213.019771CCD9@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:02:13 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113326: japanese/elvis: use termios instead of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:05 -0000 >Number: 113326 >Category: ports >Synopsis: japanese/elvis: use termios instead of sgtty >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: The japanese/elvis port makes use of the sgtty line discipline interface, though termios is the preferred one (sgtty only works with COMPAT_43TTY). >How-To-Repeat: >Fix: Apply the following patch: --- japanese/elvis/files/patch-ab Fri Sep 4 00:49:17 1998 +++ japanese/elvis/files/patch-ab Mon Jun 4 09:32:09 2007 @@ -35,7 +35,7 @@ +LIBS= -ltermcap -L${PREFIX}/lib -lcanna +BIN= ${PREFIX}/bin +CC= cc -+CFLAGS+= -Dbsd -O -I${PREFIX}/include -D_HAVE_PARAM_H -DNO_EXITCODE -DHAVE_OFF_T -D__386BSD__ ++CFLAGS+= -Dbsd -O -I${PREFIX}/include -D_HAVE_PARAM_H -DNO_EXITCODE -DHAVE_OFF_T -D__386BSD__ -DTERMIOS +SMALL= +LARGE= +OF= -o "" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D87A16A400 for ; Mon, 4 Jun 2007 13:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4B0F413C48C for ; Mon, 4 Jun 2007 13:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DA7qb056061 for ; Mon, 4 Jun 2007 13:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DA7Mb056060; Mon, 4 Jun 2007 13:10:07 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:10:07 GMT Resent-Message-Id: <200706041310.l54DA7Mb056060@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E28316A400 for ; Mon, 4 Jun 2007 13:04:15 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id F201013C44C for ; Mon, 4 Jun 2007 13:04:14 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 5E2471CCD9; Mon, 4 Jun 2007 15:04:14 +0200 (CEST) Message-Id: <20070604130414.5E2471CCD9@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:04:14 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113327: korean/helvis: make it use termios instead of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:07 -0000 >Number: 113327 >Category: ports >Synopsis: korean/helvis: make it use termios instead of sgtty >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: The korean/helvis port still makes use of the sgtty line discipline interface. This means that it only works when running a kernel with the COMPAT_43TTY option. We'd better use termios. >How-To-Repeat: >Fix: Apply the following patch: --- korean/helvis/files/Makefile.inc Mon Jan 10 21:45:18 2005 +++ korean/helvis/files/Makefile.inc Mon Jun 4 10:08:41 2007 @@ -7,7 +7,7 @@ PREFIX?=/usr/local BIN= ${PREFIX}/bin CC= cc -CFLAGS= -Dbsd -O +CFLAGS= -Dbsd -O -DTERMIOS -DUNIXV=1 SMALL= LARGE= OF= -o "" --- korean/helvis/files/patch-curses.h Thu Jan 1 01:00:00 1970 +++ korean/helvis/files/patch-curses.h Mon Jun 4 10:08:41 2007 @@ -0,0 +1,12 @@ +--- curses.h Wed Apr 5 11:21:19 1995 ++++ curses.h Mon Jun 4 10:07:51 2007 +@@ -7,6 +7,9 @@ + * kirkenda@cs.pdx.edu + */ + ++#if TERMIOS ++#include ++#endif + + /* This is the header file for a small, fast, fake curses package */ + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A200B16A46B; Mon, 4 Jun 2007 13:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 74F7813C457; Mon, 4 Jun 2007 13:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DAGlB056156; Mon, 4 Jun 2007 13:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DAGBO056152; Mon, 4 Jun 2007 13:10:16 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 13:10:16 GMT From: Edwin Groothuis Message-Id: <200706041310.l54DAGBO056152@freefall.freebsd.org> To: ed@fxq.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113325: japanese/ng: use termios instead of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:16 -0000 Synopsis: japanese/ng: use termios instead of sgtty State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jun 4 13:10:15 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113325 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5467D16A400 for ; Mon, 4 Jun 2007 13:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 214EB13C465 for ; Mon, 4 Jun 2007 13:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DAJrN056195 for ; Mon, 4 Jun 2007 13:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DAJXq056194; Mon, 4 Jun 2007 13:10:19 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:10:19 GMT Resent-Message-Id: <200706041310.l54DAJXq056194@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25DC716A400 for ; Mon, 4 Jun 2007 13:06:32 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id E8C8413C483 for ; Mon, 4 Jun 2007 13:06:31 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 5954C1CCD9; Mon, 4 Jun 2007 15:06:31 +0200 (CEST) Message-Id: <20070604130631.5954C1CCD9@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:06:31 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113328: japanese/ircII: don't make it include sgtty.h X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:20 -0000 >Number: 113328 >Category: ports >Synopsis: japanese/ircII: don't make it include sgtty.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:10:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: For some reason, ircII includes sgtty.h, which doesn't really matter, because ircII doesn't use it anyway, but could cause compilation errors in the far far future. Already remove the dependency on sgtty.h. >How-To-Repeat: >Fix: Adding the following patch to the files/ directory removes the unneeded inclusion. --- source/ircflush.c Fri Jan 6 16:16:45 1995 +++ source/ircflush.c Mon Jun 4 09:38:12 2007 @@ -12,15 +12,6 @@ #include "irc.h" #include -#ifndef __linux__ -# ifdef __svr4__ -# include -# else -# include /* SVR4 => sgtty = yuk */ -# endif /* SOLARIS */ -#endif /* __linux__ */ - - #define BUFFER_SIZE 1024 /* descriptors of the tty and pty */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C46816A469 for ; Mon, 4 Jun 2007 13:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8288013C46E for ; Mon, 4 Jun 2007 13:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DAK9r056214 for ; Mon, 4 Jun 2007 13:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DAKha056212; Mon, 4 Jun 2007 13:10:20 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:10:20 GMT Resent-Message-Id: <200706041310.l54DAKha056212@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D267E16A469 for ; Mon, 4 Jun 2007 13:08:48 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id A1C9413C469 for ; Mon, 4 Jun 2007 13:08:48 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id D87611CCD9; Mon, 4 Jun 2007 15:08:47 +0200 (CEST) Message-Id: <20070604130847.D87611CCD9@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:08:47 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113329: news/nntp: don't make it depend on sgtty.h X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:20 -0000 >Number: 113329 >Category: ports >Synopsis: news/nntp: don't make it depend on sgtty.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:10:20 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: The news/nntp port includes sgtty.h, while it isn't needed. This isn't a real problem, but may cause problems in the future when (if?) the sgtty is removed. >How-To-Repeat: >Fix: Add the following patch to the files/ directory: --- support/acttimes.c Tue Jan 9 08:28:02 1996 +++ support/acttimes.c Mon Jun 4 09:40:37 2007 @@ -64,12 +64,6 @@ /* ---------- End of configuration defines ---------- */ -#ifdef TERMIO -#include -#else -#include -#endif - #define TIMER_FIRST 1 #define TIMER_DEFAULT (10 * 60) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:35 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22E9F16A468; Mon, 4 Jun 2007 13:10:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F0CF713C4BB; Mon, 4 Jun 2007 13:10:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DAYia056384; Mon, 4 Jun 2007 13:10:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DAYGi056380; Mon, 4 Jun 2007 13:10:34 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 13:10:34 GMT From: Edwin Groothuis Message-Id: <200706041310.l54DAYGi056380@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cjh@FreeBSD.org Cc: Subject: Re: ports/113327: korean/helvis: make it use termios instead of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:35 -0000 Synopsis: korean/helvis: make it use termios instead of sgtty Responsible-Changed-From-To: freebsd-ports-bugs->cjh Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 13:10:34 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113327 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:10:43 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FEE316A468; Mon, 4 Jun 2007 13:10:43 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3958213C44C; Mon, 4 Jun 2007 13:10:43 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DAhb6056536; Mon, 4 Jun 2007 13:10:43 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DAhhO056532; Mon, 4 Jun 2007 13:10:43 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 13:10:43 GMT From: Edwin Groothuis Message-Id: <200706041310.l54DAhhO056532@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Cc: Subject: Re: ports/113329: news/nntp: don't make it depend on sgtty.h X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:10:43 -0000 Synopsis: news/nntp: don't make it depend on sgtty.h Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 13:10:42 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113329 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:20:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B7D416A41F for ; Mon, 4 Jun 2007 13:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C661813C448 for ; Mon, 4 Jun 2007 13:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DK2kZ057322 for ; Mon, 4 Jun 2007 13:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DK2da057321; Mon, 4 Jun 2007 13:20:02 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:20:02 GMT Resent-Message-Id: <200706041320.l54DK2da057321@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FD6116A469 for ; Mon, 4 Jun 2007 13:11:51 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id 4DE4D13C45E for ; Mon, 4 Jun 2007 13:11:51 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id AA2D21CCE8; Mon, 4 Jun 2007 15:11:50 +0200 (CEST) Message-Id: <20070604131150.AA2D21CCE8@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:11:50 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113330: japanese/typist: don't make use of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:20:03 -0000 >Number: 113330 >Category: ports >Synopsis: japanese/typist: don't make use of sgtty >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:20:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: The japanese/typist port still makes use of the sgtty interface, though it can easily be ported to termios, thanks to the termio bits that are already present in its source code. Make it use termios, so it works without COMPAT_43TTY. >How-To-Repeat: >Fix: Apply the following patch: --- japanese/typist/files/patch-aa Sun Oct 19 12:10:53 2003 +++ japanese/typist/files/patch-aa Mon Jun 4 10:38:19 2007 @@ -22,7 +22,7 @@ MAB= -CFLAGS=$(DEBUG) $(MAB) -DTERMIO -+CFLAGS+=$(DEBUG) $(MAB) -DLESSONDIR=\"$(LESSONDIR)\" -DKEYTYPE=\"j\" ++CFLAGS+=$(DEBUG) $(MAB) -DTERMIO -DLESSONDIR=\"$(LESSONDIR)\" -DKEYTYPE=\"j\" # -DKEYTYPE=\"e\" # -DLESSONDIR=\"$(LESSONDIR)\" # -DVANISHCHAR --- japanese/typist/files/patch-src-screen.c Thu Jan 1 01:00:00 1970 +++ japanese/typist/files/patch-src-screen.c Mon Jun 4 10:38:19 2007 @@ -0,0 +1,24 @@ +--- screen.c Wed May 21 04:38:05 1997 ++++ screen.c Mon Jun 4 10:36:47 2007 +@@ -127,7 +127,7 @@ + #define MIN_HEIGHT 24 + + #ifdef TERMIO +-# include ++# include + #else + # include + #endif +@@ -177,9 +177,9 @@ + int sw; + { + static int firsttime = 1; +- struct termio *s; +- static struct termio save_term; +- static struct termio raw_term; ++ struct termios *s; ++ static struct termios save_term; ++ static struct termios raw_term; + + if (sw) { + s = &raw_term; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:20:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7622716A421 for ; Mon, 4 Jun 2007 13:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4259313C44C for ; Mon, 4 Jun 2007 13:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54DK3wX057375 for ; Mon, 4 Jun 2007 13:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54DK3l4057374; Mon, 4 Jun 2007 13:20:03 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 13:20:03 GMT Resent-Message-Id: <200706041320.l54DK3l4057374@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E383016A46F for ; Mon, 4 Jun 2007 13:14:19 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id B260213C487 for ; Mon, 4 Jun 2007 13:14:19 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 143231CCD9; Mon, 4 Jun 2007 15:14:19 +0200 (CEST) Message-Id: <20070604131419.143231CCD9@palm.hoeg.nl> Date: Mon, 4 Jun 2007 15:14:19 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113331: japanese/xvi-euc and japanese/xvi-sjis: remove sgtty >bits X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:20:03 -0000 >Number: 113331 >Category: ports >Synopsis: japanese/xvi-euc and japanese/xvi-sjis: remove sgtty >bits >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 13:20:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: The japanese/xvi-euc and japanese/xvi-sjis ports still make use of the sgtty interface, though they can easily be compiled against termios, by passing some more compiler flags. This patch makes those ports work on systems that don't have COMPAT_43TTY in their kernel. >How-To-Repeat: >Fix: Apply the following patch: --- japanese/xvi-euc/files/patch-Makefile Tue Aug 27 07:38:29 2002 +++ japanese/xvi-euc/files/patch-Makefile Mon Jun 4 10:30:56 2007 @@ -18,7 +18,7 @@ -CFLAGS= $(SYSDEFS) $(INCDIRS) -O -LINTFLAGS= $(SYSDEFS) $(INCDIRS) -ah -+CFLAGS+= ${SYSDEFS} ${INCDIRS} -DHELPFILE=\"/usr/local/share/xvi/xvi.help\" ++CFLAGS+= ${SYSDEFS} ${INCDIRS} -DHELPFILE=\"/usr/local/share/xvi/xvi.help\" -DTERMIO -DTERMIOS -DPOSIX +LINTFLAGS= ${SYSDEFS} ${INCDIRS} -ah MACHSRC= unix.c termcap.c defscr.c >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 13:38:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3257B16A400; Mon, 4 Jun 2007 13:38:16 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id ED84713C45B; Mon, 4 Jun 2007 13:38:15 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id F036A1CCD9; Mon, 4 Jun 2007 15:38:14 +0200 (CEST) Date: Mon, 4 Jun 2007 15:38:14 +0200 From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20070604133814.GE45756@hoeg.nl> References: <20070521173705.4952B1CD46@palm.hoeg.nl> <200705211740.l4LHeEWJ082261@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nHwqXXcoX0o6fKCv" Content-Disposition: inline In-Reply-To: <200705211740.l4LHeEWJ082261@freefall.freebsd.org> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Subject: Re: ports/112838: x11-wm/ion-3ds: bump, make fetchable, rename, remove old cruft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 13:38:16 -0000 --nHwqXXcoX0o6fKCv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, As I've read online the license of Ion3 has turned sour. The author has ammended the license to the source with new clauses which enforces rules which the FreeBSD package model can't guarantee, including a rule that forces all packages to be beyond a version of a certain age. Please remove the x11-wm/ion-3ds port from the tree. Under such harsh conditions I'm not willing to maintain a port for this window manager. --=20 Ed Schouten WWW: http://g-rave.nl/ --nHwqXXcoX0o6fKCv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGZBXG52SDGA2eCwURAopgAJ9CLcLge8SqCWdIQb3ut5+LJ519VACdGvGC mwsX+xZhSb3YoWyvkB9Lly8= =mrQP -----END PGP SIGNATURE----- --nHwqXXcoX0o6fKCv-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 14:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA76C16A421 for ; Mon, 4 Jun 2007 14:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7FC6713C448 for ; Mon, 4 Jun 2007 14:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54Ee57N067041 for ; Mon, 4 Jun 2007 14:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54Ee5AQ067040; Mon, 4 Jun 2007 14:40:05 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 14:40:05 GMT Resent-Message-Id: <200706041440.l54Ee5AQ067040@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joey Mingrone Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD93D16A473 for ; Mon, 4 Jun 2007 14:34:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id BEC6E13C4B0 for ; Mon, 4 Jun 2007 14:34:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54EYJUf075473 for ; Mon, 4 Jun 2007 14:34:19 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54EYJtU075472; Mon, 4 Jun 2007 14:34:19 GMT (envelope-from nobody) Message-Id: <200706041434.l54EYJtU075472@www.freebsd.org> Date: Mon, 4 Jun 2007 14:34:19 GMT From: Joey Mingrone To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113334: Installation of port math/R fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 14:40:05 -0000 >Number: 113334 >Category: ports >Synopsis: Installation of port math/R fails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 14:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Joey Mingrone >Release: 6.2-RELEASE-p4 i386 >Organization: >Environment: FreeBSD jrm 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Fri May 18 14:27:42 ADT 2007 root@jrm:/usr/obj/usr/src/sys/JRM_2007-05-18 i386 >Description: When upgrading from math/R-2.4.1 to math/R-2.5.0, a linker error occurs. The command that fails is below. The command executes without errors when cc is replaced with gfortran42. cc -std=gnu99 -export-dynamic -L/usr/local/lib -o R.bin Rmain.o -L../../lib -lR /usr/local/lib/gcc-4.2.1/libgfortran.so.2: undefined reference to `__mulxc3@GCC_4.0.0' /usr/local/lib/gcc-4.2.1/libgfortran.so.2: undefined reference to `__mulsc3@GCC_4.0.0' /usr/local/lib/gcc-4.2.1/libgfortran.so.2: undefined reference to `__divsc3@GCC_4.0.0' /usr/local/lib/gcc-4.2.1/libgfortran.so.2: undefined reference to `__muldc3@GCC_4.0.0' /usr/local/lib/gcc-4.2.1/libgfortran.so.2: undefined reference to `__divdc3@GCC_4.0.0' /usr/local/lib/gcc-4.2.1/libgfortran.so.2: undefined reference to `__divxc3@GCC_4.0.0' *** Error code 1 Stop in /usr/ports/math/R/work/R-2.5.0/src/main. *** Error code 1 Stop in /usr/ports/math/R/work/R-2.5.0/src/main. *** Error code 1 Stop in /usr/ports/math/R/work/R-2.5.0/src. *** Error code 1 Stop in /usr/ports/math/R/work/R-2.5.0. *** Error code 1 Stop in /usr/ports/math/R. *** Error code 1 >How-To-Repeat: Attempt to update the port with: portupgrade R >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 14:40:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 615F216A468; Mon, 4 Jun 2007 14:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3AD0E13C455; Mon, 4 Jun 2007 14:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54EeHQI067204; Mon, 4 Jun 2007 14:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54EeH2Q067200; Mon, 4 Jun 2007 14:40:17 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 14:40:17 GMT From: Edwin Groothuis Message-Id: <200706041440.l54EeH2Q067200@freefall.freebsd.org> To: joey@mingrone, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113334: Installation of port math/R fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 14:40:17 -0000 Synopsis: Installation of port math/R fails State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jun 4 14:40:16 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113334 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 15:00:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3642416A46C for ; Mon, 4 Jun 2007 15:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EF86313C489 for ; Mon, 4 Jun 2007 15:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54F0C5u068868 for ; Mon, 4 Jun 2007 15:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54F0CH0068867; Mon, 4 Jun 2007 15:00:12 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 15:00:12 GMT Resent-Message-Id: <200706041500.l54F0CH0068867@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, James Snyder Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52D8E16A400 for ; Mon, 4 Jun 2007 14:55:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 43EEF13C4B0 for ; Mon, 4 Jun 2007 14:55:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54EtWCv078591 for ; Mon, 4 Jun 2007 14:55:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54EtWNL078589; Mon, 4 Jun 2007 14:55:32 GMT (envelope-from nobody) Message-Id: <200706041455.l54EtWNL078589@www.freebsd.org> Date: Mon, 4 Jun 2007 14:55:32 GMT From: James Snyder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113335: biology/linux-foldingathome needs to run as root? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 15:00:13 -0000 >Number: 113335 >Category: ports >Synopsis: biology/linux-foldingathome needs to run as root? >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 15:00:12 GMT 2007 >Closed-Date: >Last-Modified: >Originator: James Snyder >Release: RELENG 6 >Organization: >Environment: FreeBSD Hippo 6.2-STABLE FreeBSD 6.2-STABLE #3: Mon May 28 17:54:13 CDT 2007 jsnyder@Hippo:/usr/obj/usr/src/sys/SMP_amd i386 >Description: Upon installing FoldingAtHome I ran the software from a user account only to find that I was stuck in a loop of trying to enter configuration options. Shortly thereafter I realized that it was trying to write to /usr/local/share/foldingathome, and therefore requires being run as root to write there unless one changes permissions there. Seing as this isn't installed with a startup script for daemonization, and running as root seems a little excessive for this application, should this be adapted to run from a user account or set up to be able to start at boot? I'd be willing to throw a patch out, but I'm not sure which would be the best direction here to be consistent with FreeBSD :-) >How-To-Repeat: Install, run as user. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 15:00:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABBBF16A469; Mon, 4 Jun 2007 15:00:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8478113C44B; Mon, 4 Jun 2007 15:00:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54F0LNN069038; Mon, 4 Jun 2007 15:00:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54F0LYu069029; Mon, 4 Jun 2007 15:00:21 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 15:00:21 GMT From: Edwin Groothuis Message-Id: <200706041500.l54F0LYu069029@freefall.freebsd.org> To: jbsnyder@fanplastic.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113335: biology/linux-foldingathome needs to run as root? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 15:00:21 -0000 Synopsis: biology/linux-foldingathome needs to run as root? State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jun 4 15:00:20 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113335 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 15:08:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C069516A400; Mon, 4 Jun 2007 15:08:11 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9922A13C447; Mon, 4 Jun 2007 15:08:11 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from freefall.freebsd.org (mm@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54F8Bre070028; Mon, 4 Jun 2007 15:08:11 GMT (envelope-from mm@freefall.freebsd.org) Received: (from mm@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54F8Bcn070024; Mon, 4 Jun 2007 15:08:11 GMT (envelope-from mm) Date: Mon, 4 Jun 2007 15:08:11 GMT From: Martin Matuska Message-Id: <200706041508.l54F8Bcn070024@freefall.freebsd.org> To: mark_sf@kikg.ifmo.ru, mm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org Cc: Subject: Re: ports/113272: [PATCH] mail/dbmail: update to 2.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 15:08:11 -0000 Synopsis: [PATCH] mail/dbmail: update to 2.2.5 Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: mm Responsible-Changed-When: Mon Jun 4 15:07:49 UTC 2007 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=113272 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 17:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A425016A476 for ; Mon, 4 Jun 2007 17:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 173BB13C484 for ; Mon, 4 Jun 2007 17:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54H0BL3083919 for ; Mon, 4 Jun 2007 17:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54H0Ba3083918; Mon, 4 Jun 2007 17:00:11 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 17:00:11 GMT Resent-Message-Id: <200706041700.l54H0Ba3083918@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ed Schouten Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A5C316A400 for ; Mon, 4 Jun 2007 16:50:11 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id 3987813C457 for ; Mon, 4 Jun 2007 16:50:10 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 5EE3C1CC77; Mon, 4 Jun 2007 18:50:09 +0200 (CEST) Message-Id: <20070604165009.5EE3C1CC77@palm.hoeg.nl> Date: Mon, 4 Jun 2007 18:50:09 +0200 (CEST) From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113337: multimedia/libspiff: Bump to 0.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 17:00:12 -0000 >Number: 113337 >Category: ports >Synopsis: multimedia/libspiff: Bump to 0.7.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 17:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD palm.hoeg.nl 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Apr 20 13:44:49 CEST 2007 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: A new version of libspiff is available, namely 0.7.1. This release includes some utilities that allows you to validate existing XSPF files. >How-To-Repeat: >Fix: Apply the following patch: --- multimedia/libspiff/Makefile Wed Apr 25 00:12:32 2007 +++ multimedia/libspiff/Makefile Mon Jun 4 18:21:32 2007 @@ -6,7 +6,7 @@ # PORTNAME= libspiff -PORTVERSION= 0.6.5 +PORTVERSION= 0.7.1 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= libspiff --- multimedia/libspiff/distinfo Tue Apr 17 21:41:31 2007 +++ multimedia/libspiff/distinfo Mon Jun 4 18:22:17 2007 @@ -1,3 +1,3 @@ -MD5 (libspiff-0.6.5.tar.bz2) = b667a898f99e6e57811d7679927d6621 -SHA256 (libspiff-0.6.5.tar.bz2) = e3d5e7a2b3ea63e9b265b095f5feaa60c953e7d593a8efbe8f64bc58fa667047 -SIZE (libspiff-0.6.5.tar.bz2) = 456937 +MD5 (libspiff-0.7.1.tar.bz2) = 6eae690a6505b9623ba433f9b8a3391d +SHA256 (libspiff-0.7.1.tar.bz2) = 830cf576852f6b9f2f99a95527cede75303ecb2653949ab958e0640778f63793 +SIZE (libspiff-0.7.1.tar.bz2) = 472871 --- multimedia/libspiff/pkg-plist Thu Apr 5 11:22:43 2007 +++ multimedia/libspiff/pkg-plist Mon Jun 4 18:24:22 2007 @@ -1,9 +1,13 @@ +bin/spiff_check +bin/spiff_strip include/spiff/ProjectOpus/ProjectOpusPlaylistExtension.h include/spiff/ProjectOpus/ProjectOpusPlaylistExtensionReader.h include/spiff/ProjectOpus/ProjectOpusPlaylistExtensionWriter.h include/spiff/Spiff.h +include/spiff/SpiffChunkCallback.h include/spiff/SpiffData.h include/spiff/SpiffDataWriter.h +include/spiff/SpiffDateTime.h include/spiff/SpiffDefines.h include/spiff/SpiffExtension.h include/spiff/SpiffExtensionReader.h >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 17:10:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1E8116A41F; Mon, 4 Jun 2007 17:10:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BB53F13C46C; Mon, 4 Jun 2007 17:10:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54HAHoA084930; Mon, 4 Jun 2007 17:10:17 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54HAHv8084926; Mon, 4 Jun 2007 17:10:17 GMT (envelope-from miwi) Date: Mon, 4 Jun 2007 17:10:17 GMT From: Martin Wilke Message-Id: <200706041710.l54HAHv8084926@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113337: multimedia/libspiff: Bump to 0.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 17:10:18 -0000 Synopsis: multimedia/libspiff: Bump to 0.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Jun 4 17:10:14 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113337 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 18:00:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B16A16A46B for ; Mon, 4 Jun 2007 18:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5B5DF13C484 for ; Mon, 4 Jun 2007 18:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54I0IAw090441 for ; Mon, 4 Jun 2007 18:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54I0IAO090440; Mon, 4 Jun 2007 18:00:18 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 18:00:18 GMT Resent-Message-Id: <200706041800.l54I0IAO090440@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anton Babushkin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D644016A421 for ; Mon, 4 Jun 2007 17:56:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id C5FE213C46C for ; Mon, 4 Jun 2007 17:56:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54HutUs034222 for ; Mon, 4 Jun 2007 17:56:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54Hut3j034221; Mon, 4 Jun 2007 17:56:55 GMT (envelope-from nobody) Message-Id: <200706041756.l54Hut3j034221@www.freebsd.org> Date: Mon, 4 Jun 2007 17:56:55 GMT From: Anton Babushkin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113341: New port: audio/qmpdclient Easy to use musicpd client written in QT4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 18:00:18 -0000 >Number: 113341 >Category: ports >Synopsis: New port: audio/qmpdclient Easy to use musicpd client written in QT4 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 18:00:17 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Anton Babushkin >Release: 6.2-RELEASE >Organization: MSU >Environment: FreeBSD current.hackers 6.2-STABLE FreeBSD 6.2-STABLE #6: Wed May 2 23:44:01 MSD 2007 ton@current.hackers:/usr/obj/usr/src/sys/CURRENT i386 >Description: [ excerpt from developer's www site ] QMPDClient is an easy to use MPD client written in Qt 4. Features: - Multimedia keys support - System tray icon - Annouce songs with passive popups - Drag and drop - Stream support - Playlist management - Tag-guessing for untagged files - Directory browser WWW: http://havtknut.tihlde.org/ >How-To-Repeat: >Fix: begin 644 qmpdclient.shar M(R!4:&ES(&ES(&$@2!Y;W4@86YD"B,@:&%V92!D969A=6QT('!E M6%M8F%`9VUA:6PN8V]M"E@C"E@C("1&65S M"EA54T5?1TU!2T4]"7EETE.4U1!3$Q?4%)/1U)!37T@)'M74DM34D-] M+R1[4$]25$Y!345]("1[4%)%1DE8?2]B:6X*6`I8+FEN8VQU9&4@/&)S9"YP M;W)T+FUK/@I%3D0M;V8M<6UP9&-L:65N="]-86ME9FEL90IE8VAO('@@+2!Q M;7!D8VQI96YT+V1I6"\O)R`^<6UP9&-L:65N="]D M:7-T:6YF;R`\/"`G14Y$+6]F+7%M<&1C;&EE;G0O9&ES=&EN9F\G"EA-1#4@ M*'%M<&1C;&EE;G0M,2XP+C$QO8VME"`M('%M<&1C;&EE;G0O9FEL97,O<&%T M8V@M6"\O)R`^<6UP9&-L:65N M="]F:6QE"`M M('%M<&1C;&EE;G0O<&MG+61E6"\O)R`^<6UP9&-L:65N M="]P:VRelease-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 18:00:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E0C316A421 for ; Mon, 4 Jun 2007 18:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2F33013C487 for ; Mon, 4 Jun 2007 18:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54I0INk090461 for ; Mon, 4 Jun 2007 18:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54I0Iva090459; Mon, 4 Jun 2007 18:00:18 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 18:00:18 GMT Resent-Message-Id: <200706041800.l54I0Iva090459@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Fabian Keil Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAF9016A400 for ; Mon, 4 Jun 2007 17:59:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id ADDD713C46A for ; Mon, 4 Jun 2007 17:59:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54HxDVW034544 for ; Mon, 4 Jun 2007 17:59:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54HxDmp034543; Mon, 4 Jun 2007 17:59:13 GMT (envelope-from nobody) Message-Id: <200706041759.l54HxDmp034543@www.freebsd.org> Date: Mon, 4 Jun 2007 17:59:13 GMT From: Fabian Keil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113342: [MAINTAINER-UPDATE] from net-mgmt/vidalia 0.0.11 to 0.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 18:00:19 -0000 >Number: 113342 >Category: ports >Synopsis: [MAINTAINER-UPDATE] from net-mgmt/vidalia 0.0.11 to 0.0.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 18:00:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Fabian Keil >Release: RELENG_6 >Organization: >Environment: FreeBSD TP51.local 6.2-STABLE FreeBSD 6.2-STABLE #14: Tue May 8 12:04:28 CEST 2007 fk@TP51.local:/usr/obj/usr/src/sys/THINKPAD i386 >Description: Update net-mgmt/vidalia from 0.0.11 to 0.0.12. Vidalia's ChangeLog is available at: http://trac.vidalia-project.net/browser/releases/vidalia-0.0.12/CHANGELOG systray support is no longer required and the Tor control port can be configured through the GUI now. As a result the pkg-message is no longer necessary and has been removed. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN net-mgmt/vidalia.old/Makefile net-mgmt/vidalia/Makefile --- net-mgmt/vidalia.old/Makefile Sat May 19 22:19:53 2007 +++ net-mgmt/vidalia/Makefile Mon Jun 4 19:24:45 2007 @@ -6,8 +6,7 @@ # PORTNAME= vidalia -PORTVERSION= 0.0.11 -PORTREVISION= 2 +PORTVERSION= 0.0.12 CATEGORIES= net-mgmt security MASTER_SITES= http://vidalia-project.net:8001/\ http://tor.eff.org/dist/vidalia-bundles/ @@ -52,9 +51,6 @@ .elif defined(WITH_TOR) RUN_DEPENDS+= ${LOCALBASE}/bin/tor:${PORTSDIR}/security/tor .endif - -pre-extract: - @${CAT} ${PKGMESSAGE} post-extract: ${REINPLACE_CMD} -e 's@/bin/lrelease@/bin/lrelease-qt4@' ${WRKSRC}/configure diff -ruN net-mgmt/vidalia.old/distinfo net-mgmt/vidalia/distinfo --- net-mgmt/vidalia.old/distinfo Thu May 10 22:18:01 2007 +++ net-mgmt/vidalia/distinfo Mon Jun 4 17:53:03 2007 @@ -1,3 +1,3 @@ -MD5 (vidalia-0.0.11.tar.gz) = c3db2a85a6db2314c008cbd8aed6ebb0 -SHA256 (vidalia-0.0.11.tar.gz) = 16ab47a3814c058cb93791f0cb972e1c2722a7bdd81006c54b752f7cb07aa529 -SIZE (vidalia-0.0.11.tar.gz) = 1810953 +MD5 (vidalia-0.0.12.tar.gz) = c1e2aa253f3ab68b3d756df7b2e49f2c +SHA256 (vidalia-0.0.12.tar.gz) = 703c19ddfe39839514a0f69e409511d22db82d2fa70afe0b014f457aebabbb0b +SIZE (vidalia-0.0.12.tar.gz) = 1897486 diff -ruN net-mgmt/vidalia.old/pkg-message net-mgmt/vidalia/pkg-message --- net-mgmt/vidalia.old/pkg-message Thu May 10 22:18:01 2007 +++ net-mgmt/vidalia/pkg-message Thu Jan 1 01:00:00 1970 @@ -1,19 +0,0 @@ -If your Onion Router isn't listening on 127.0.0.1, -either build the Vidalia port with TOR_CONTROL_ADDR -set to the Onion Router's IP address, or specify it -with the ControlAddr variable in the "[Tor]" section -of ~/.vidalia/vidalia.conf. Example: - - [Tor] - ControlAddr=10.0.0.2 - -Note that Vidalia requires systray support to do anything -useful (you need the systray icon to open Vidalia's windows). - -If your Window Manager doesn't have a systray, you can -install x11/stalonetray or another systray provider through -the ports. - -The systray provider has to be running before you start -Vidalia. Vidalia doesn't show any error messages if -no systray was found! >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 18:10:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07BB116A469 for ; Mon, 4 Jun 2007 18:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E1CDE13C487 for ; Mon, 4 Jun 2007 18:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54IABYS091409 for ; Mon, 4 Jun 2007 18:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54IABoI091408; Mon, 4 Jun 2007 18:10:11 GMT (envelope-from gnats) Date: Mon, 4 Jun 2007 18:10:11 GMT Message-Id: <200706041810.l54IABoI091408@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Leon Wagner" Cc: Subject: Re: ports/111388: awstats port install path script mismatch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Leon Wagner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 18:10:12 -0000 The following reply was made to PR ports/111388; it has been noted by GNATS. From: "Leon Wagner" To: , Cc: Subject: Re: ports/111388: awstats port install path script mismatch Date: Mon, 4 Jun 2007 10:36:08 -0700 My description in "How to Repeat" is not entirely accurate. The problem isn't specifically 'make install' but the post-install setup and congifuration that fails. The 'tools' scripts supplied as part of the AWStats fail because the paths in the Makefile do not match the standard paths assumed by the 'tools' scripts. As installed by the Makefile, post-install configuration to actually get working web stats involves a lot of manual labor which would otherwise be unnecessary with the use of the 'tools' scripts. Best regards, Leon Wagner From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 19:10:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1F1E16A469 for ; Mon, 4 Jun 2007 19:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9002113C484 for ; Mon, 4 Jun 2007 19:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54JA42R097727 for ; Mon, 4 Jun 2007 19:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54JA4i2097725; Mon, 4 Jun 2007 19:10:04 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 19:10:04 GMT Resent-Message-Id: <200706041910.l54JA4i2097725@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22FC316A400 for ; Mon, 4 Jun 2007 19:04:43 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id EBE4113C458 for ; Mon, 4 Jun 2007 19:04:42 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from ppp-70-251-187-11.dsl.austtx.swbell.net ([70.251.187.11]:58773 helo=borg.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvHr6-000BP9-SH for FreeBSD-gnats-submit@freebsd.org; Mon, 04 Jun 2007 14:04:42 -0500 Received: from ler by borg.lerctr.org with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvHqw-0009wg-Cf for FreeBSD-gnats-submit@freebsd.org; Mon, 04 Jun 2007 14:04:30 -0500 Message-Id: Date: Mon, 04 Jun 2007 14:04:30 -0500 From: Larry Rosenman Sender: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113344: [MAINTAINER] sysutils/lsof: remove obsolete patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 19:10:04 -0000 >Number: 113344 >Category: ports >Synopsis: [MAINTAINER] sysutils/lsof: remove obsolete patch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 19:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 7.0-CURRENT amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD borg.lerctr.org 7.0-CURRENT FreeBSD 7.0-CURRENT #26: Sun Jun 3 20:54:04 CDT >Description: remove obsolete patch: Per lsof author Vic Abell: -- Patch-dlsof.h is inappropriate. It duplicates with a version number test a much better test that is made by Configure for the conditional inclusion of . The Configure test was introduced at lsof revision 4.77, released April 10, 2006. -- PORTREVISION bumped. (I think it needs to be, but feel free to override that if I'm wrong). Removed file(s): - files/patch-dlsof.h Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- lsof-4.79B_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/lsof/Makefile /usr/home/ler/ports/sysutils/lsof/Makefile --- /usr/ports/sysutils/lsof/Makefile Mon Jun 4 14:02:08 2007 +++ /usr/home/ler/ports/sysutils/lsof/Makefile Mon Jun 4 13:56:47 2007 @@ -3,11 +3,12 @@ # Date created: Sat July 20, 1996 # Whom: David O'Brien (obrien@FreeBSD.org) # -# $FreeBSD: ports/sysutils/lsof/Makefile,v 1.152 2007/06/04 09:30:53 pav Exp $ +# $FreeBSD: ports/sysutils/lsof/Makefile,v 1.149 2006/08/16 22:05:01 sobomax Exp $ # PORTNAME= lsof PORTVERSION= 4.79B +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ \ diff -ruN --exclude=CVS /usr/ports/sysutils/lsof/files/patch-dlsof.h /usr/home/ler/ports/sysutils/lsof/files/patch-dlsof.h --- /usr/ports/sysutils/lsof/files/patch-dlsof.h Sun Oct 16 02:41:54 2005 +++ /usr/home/ler/ports/sysutils/lsof/files/patch-dlsof.h Wed Dec 31 18:00:00 1969 @@ -1,12 +0,0 @@ ---- dialects/freebsd/dlsof.h.orig Mon Oct 3 06:22:52 2005 -+++ dialects/freebsd/dlsof.h Sun Oct 16 00:18:58 2005 -@@ -306,6 +306,9 @@ struct vop_advlock_args { int dummy; }; - #include - # endif /* defined(SI_PRIV) */ - -+#if FREEBSDV>=6000 -+#include -+#endif /* FREEBSDV>=6000 */ - #include - #undef _KERNEL - # endif /* FREEBSDV>=5000 */ --- lsof-4.79B_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 21:20:31 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 954C816A400; Mon, 4 Jun 2007 21:20:31 +0000 (UTC) (envelope-from anders@FreeBSD.org) Received: from fupp.net (totem.fix.no [80.91.36.20]) by mx1.freebsd.org (Postfix) with ESMTP id 5636B13C44B; Mon, 4 Jun 2007 21:20:31 +0000 (UTC) (envelope-from anders@FreeBSD.org) Received: from localhost (totem.fix.no [80.91.36.20]) by fupp.net (Postfix) with ESMTP id D2FEC8DB036; Mon, 4 Jun 2007 22:56:20 +0200 (CEST) Received: from fupp.net ([80.91.36.20]) by localhost (totem.fix.no [80.91.36.20]) (amavisd-new, port 10024) with LMTP id 4hLl8qhhB9SP; Mon, 4 Jun 2007 22:56:20 +0200 (CEST) Received: by fupp.net (Postfix, from userid 1000) id 8CDB58DAAB4; Mon, 4 Jun 2007 22:56:20 +0200 (CEST) Date: Mon, 4 Jun 2007 22:56:20 +0200 From: Anders Nordby To: bug-followup@FreeBSD.org, raffaele.delorenzo@libero.it Message-ID: <20070604205620.GA32573@fupp.net> References: <200705241113.l4OBDinR053594@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200705241113.l4OBDinR053594@freefall.freebsd.org> X-PGP-Key: http://anders.fix.no/pgp/ X-PGP-Key-FingerPrint: 1E0F C53C D8DF 6A8F EAAD 19C5 D12A BC9F 0083 5956 User-Agent: Mutt/1.5.11 Cc: freebsd-ports-bugs@FreeBSD.org, Mark Linimon Subject: Re: ports/112648: net/dante: & net/socks5: Buffer Overflow in some SOCKS Server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 21:20:31 -0000 Hi, Dante developers believe there is no such overflow, and I don't see how your email shows there is one. If you really think there is an issue, maybe you should report it to dante-bugs@inet.no. Bye, -- Anders. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 21:50:22 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37D9B16A488 for ; Mon, 4 Jun 2007 21:50:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 012CE13C4C2 for ; Mon, 4 Jun 2007 21:50:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54LoLCT018791 for ; Mon, 4 Jun 2007 21:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54LoL7G018790; Mon, 4 Jun 2007 21:50:21 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 21:50:21 GMT Resent-Message-Id: <200706042150.l54LoL7G018790@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D53A16A46D for ; Mon, 4 Jun 2007 21:44:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 1E71F13C447 for ; Mon, 4 Jun 2007 21:44:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54Lilxm068899 for ; Mon, 4 Jun 2007 21:44:47 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54LilMu068898; Mon, 4 Jun 2007 21:44:47 GMT (envelope-from nobody) Message-Id: <200706042144.l54LilMu068898@www.freebsd.org> Date: Mon, 4 Jun 2007 21:44:47 GMT From: Marcus von Appen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113346: [Patch]: audio/linux-sdl_mixer distinfo update for src rpm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 21:50:22 -0000 >Number: 113346 >Category: ports >Synopsis: [Patch]: audio/linux-sdl_mixer distinfo update for src rpm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 21:50:21 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD magenta.linden.home 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 27 19:44:14 CEST 2007 root@magenta.linden.home:/usr/obj/usr/src/sys/MAGENTA i386 >Description: The distinfo does not specify a checksum for the source rpm of the linux-sdl_mixer port. >How-To-Repeat: make PACKAGE_BUILDING=yes should bring up the issue. >Fix: diff -Nur linux-sdl_mixer/distinfo.i386 linux-sdl_mixer.new/distinfo.i386 --- linux-sdl_mixer/distinfo.i386 Sun Jun 3 03:07:53 2007 +++ linux-sdl_mixer.new/distinfo.i386 Mon Jun 4 23:41:23 2007 @@ -1,3 +1,6 @@ MD5 (rpm/i386/fedora/4/SDL_mixer-1.2.6-3.fc4.i386.rpm) = d4befe45110ad16a2f7348c71909fa02 SHA256 (rpm/i386/fedora/4/SDL_mixer-1.2.6-3.fc4.i386.rpm) = 0ea46df36cf708576781fb8fd513a63f6af52f11df843bd59193b36f04f99a9f SIZE (rpm/i386/fedora/4/SDL_mixer-1.2.6-3.fc4.i386.rpm) = 86947 +MD5 (rpm/i386/fedora/4/SDL_mixer-1.2.6-3.fc4.src.rpm) = ef61fda45b9cb4ebd52a4ffdf296afad +SHA256 (rpm/i386/fedora/4/SDL_mixer-1.2.6-3.fc4.src.rpm) = 41a936177fc326dccf10a539adc5282923843d1fb8f68986d3dedb59c216cbe7 +SIZE (rpm/i386/fedora/4/SDL_mixer-1.2.6-3.fc4.src.rpm) = 1160362 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 21:50:28 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0930516A47D for ; Mon, 4 Jun 2007 21:50:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C656113C44B for ; Mon, 4 Jun 2007 21:50:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54LoR40018841 for ; Mon, 4 Jun 2007 21:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54LoRBt018840; Mon, 4 Jun 2007 21:50:27 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 21:50:27 GMT Resent-Message-Id: <200706042150.l54LoRBt018840@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24A5D16A46B for ; Mon, 4 Jun 2007 21:47:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 155B013C46E for ; Mon, 4 Jun 2007 21:47:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54LlI4b069302 for ; Mon, 4 Jun 2007 21:47:18 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54LlINR069301; Mon, 4 Jun 2007 21:47:18 GMT (envelope-from nobody) Message-Id: <200706042147.l54LlINR069301@www.freebsd.org> Date: Mon, 4 Jun 2007 21:47:18 GMT From: Marcus von Appen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113347: [Patch]: audio/linux-mikmod distinfo update for src rpm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 21:50:28 -0000 >Number: 113347 >Category: ports >Synopsis: [Patch]: audio/linux-mikmod distinfo update for src rpm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 21:50:27 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD magenta.linden.home 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 27 19:44:14 CEST 2007 root@magenta.linden.home:/usr/obj/usr/src/sys/MAGENTA i386 >Description: The distinfo does not specify a checksum for the source rpm of the linux-mikmod port. >How-To-Repeat: make PACKAGE_BUILDING=yes should bring up the issue. >Fix: diff -Nur linux-mikmod/distinfo.i386 linux-mikmod.new/distinfo.i386 --- linux-mikmod/distinfo.i386 Mon Jun 4 23:47:02 2007 +++ linux-mikmod.new/distinfo.i386 Mon Jun 4 23:46:50 2007 @@ -1,3 +1,6 @@ MD5 (rpm/i386/fedora/4/mikmod-3.1.6-34.i386.rpm) = 307e98dd8a18ee8dc9b80b02c947c739 SHA256 (rpm/i386/fedora/4/mikmod-3.1.6-34.i386.rpm) = 6d0e50bc3048584fe3a3ed8289f202eec8a10b2bef3a36cd8263cad3700bfb6b SIZE (rpm/i386/fedora/4/mikmod-3.1.6-34.i386.rpm) = 182645 +MD5 (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 288ad31e1dea4bc9c5deeca7f7cd664a +SHA256 (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = be7c402f318d1de9986b6c133c64d776f76fca39f937549edc21bb17ddd0d2dd +SIZE (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 868 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 22:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49CAB16A477 for ; Mon, 4 Jun 2007 22:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9BAE413C4B8 for ; Mon, 4 Jun 2007 22:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54M0BQM019589 for ; Mon, 4 Jun 2007 22:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54M0BUa019588; Mon, 4 Jun 2007 22:00:11 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 22:00:11 GMT Resent-Message-Id: <200706042200.l54M0BUa019588@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Robert Gogolok Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6958C16A477 for ; Mon, 4 Jun 2007 21:51:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 3389313C4C2 for ; Mon, 4 Jun 2007 21:51:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54LpJl4069754 for ; Mon, 4 Jun 2007 21:51:19 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54LpJvM069753; Mon, 4 Jun 2007 21:51:19 GMT (envelope-from nobody) Message-Id: <200706042151.l54LpJvM069753@www.freebsd.org> Date: Mon, 4 Jun 2007 21:51:19 GMT From: Robert Gogolok To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113348: [MAINTAINER UPDATE] devel/py-lxml: incorrect pkg-list, updated version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 22:00:12 -0000 >Number: 113348 >Category: ports >Synopsis: [MAINTAINER UPDATE] devel/py-lxml: incorrect pkg-list, updated version >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 22:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Robert Gogolok >Release: FreeBSD 6.2 >Organization: http://www.robert-gogolok.de >Environment: FreeBSD desktop.gogolok.de 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: pkg-plist is incorrectly specified. >How-To-Repeat: >Fix: Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/py-lxml/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 13 Mar 2007 02:39:58 -0000 1.3 +++ pkg-plist 4 Jun 2007 21:49:22 -0000 @@ -45,7 +45,7 @@ %%PORTDOCS%%%%DOCSDIR%%/doc/html/api.html %%PORTDOCS%%%%DOCSDIR%%/doc/html/build.html %%PORTDOCS%%%%DOCSDIR%%/doc/html/capi.html -%%PORTDOCS%%%%DOCSDIR%%/doc/html/changes-1.2.html +%%PORTDOCS%%%%DOCSDIR%%/doc/html/changes-1.2.1.html %%PORTDOCS%%%%DOCSDIR%%/doc/html/compatibility.html %%PORTDOCS%%%%DOCSDIR%%/doc/html/element_classes.html %%PORTDOCS%%%%DOCSDIR%%/doc/html/extensions.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 22:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4CF7916A479 for ; Mon, 4 Jun 2007 22:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2F57513C4BA for ; Mon, 4 Jun 2007 22:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54M0C2F019642 for ; Mon, 4 Jun 2007 22:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54M0Cw2019632; Mon, 4 Jun 2007 22:00:12 GMT (envelope-from gnats) Resent-Date: Mon, 4 Jun 2007 22:00:12 GMT Resent-Message-Id: <200706042200.l54M0Cw2019632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Peter Lai Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C1F916A46B for ; Mon, 4 Jun 2007 21:53:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 7848913C465 for ; Mon, 4 Jun 2007 21:53:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l54Lr6Vv069874 for ; Mon, 4 Jun 2007 21:53:06 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l54Lr6bw069873; Mon, 4 Jun 2007 21:53:06 GMT (envelope-from nobody) Message-Id: <200706042153.l54Lr6bw069873@www.freebsd.org> Date: Mon, 4 Jun 2007 21:53:06 GMT From: Peter Lai To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113349: xmms2 curl plugin broken with curl >= 7.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 22:00:12 -0000 >Number: 113349 >Category: ports >Synopsis: xmms2 curl plugin broken with curl >= 7.16 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 04 22:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Peter Lai >Release: 6.2 >Organization: >Environment: FreeBSD cowbert.simons-rock.edu 6.2-STABLE FreeBSD 6.2-STABLE #0: Tue May 1 02:15:26 EDT 2007 root@cowbert.simons-rock.edu:/usr/obj/usr/src/sys/SRCOWBERT i386 >Description: xmms2 curl plugin is broken if xmms2 is built against curl >= 7.16 (curl.4). #xmms@freenode: "XMMS2 and libCURL 7.16.1 and 7.16.2 are seriously broken. use 7.15.5 and wait until fixed upstream." >How-To-Repeat: 1. Build xmms2 against curl.4 2. xmms2 will fail to play any streams that rely on curl interaction >Fix: Prevent the use of libcurl dependency if curl.4 is installed. If curl.3 is installed, then xmms2 built against it will work. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 22:00:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0839F16A47E; Mon, 4 Jun 2007 22:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D532413C448; Mon, 4 Jun 2007 22:00:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54M0IE2019760; Mon, 4 Jun 2007 22:00:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54M0IQU019751; Mon, 4 Jun 2007 22:00:18 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 22:00:18 GMT From: Edwin Groothuis Message-Id: <200706042200.l54M0IQU019751@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113348: [MAINTAINER UPDATE] devel/py-lxml: incorrect pkg-list, updated version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 22:00:19 -0000 Synopsis: [MAINTAINER UPDATE] devel/py-lxml: incorrect pkg-list, updated version Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 22:00:18 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113348 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 22:11:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD5F616A469; Mon, 4 Jun 2007 22:11:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9EFC913C44B; Mon, 4 Jun 2007 22:11:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54MBLJg021168; Mon, 4 Jun 2007 22:11:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54MBLnZ021164; Mon, 4 Jun 2007 22:11:21 GMT (envelope-from edwin) Date: Mon, 4 Jun 2007 22:11:21 GMT From: Edwin Groothuis Message-Id: <200706042211.l54MBLnZ021164@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, alexbl@FreeBSD.org Cc: Subject: Re: ports/113349: audio/xmms2 curl plugin broken with curl >= 7.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 22:11:21 -0000 Synopsis: audio/xmms2 curl plugin broken with curl >= 7.16 Responsible-Changed-From-To: freebsd-ports-bugs->alexbl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jun 4 22:11:20 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113349 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 4 23:34:23 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D588A16A421; Mon, 4 Jun 2007 23:34:23 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AF68113C469; Mon, 4 Jun 2007 23:34:23 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from freefall.freebsd.org (xride@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l54NYNHZ030173; Mon, 4 Jun 2007 23:34:23 GMT (envelope-from xride@freefall.freebsd.org) Received: (from xride@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l54NYNcq030169; Mon, 4 Jun 2007 23:34:23 GMT (envelope-from xride) Date: Mon, 4 Jun 2007 23:34:23 GMT From: Soeren Straarup Message-Id: <200706042334.l54NYNcq030169@freefall.freebsd.org> To: xride@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, xride@FreeBSD.org Cc: Subject: Re: ports/113197: [PATCH]: Take maintainership of net-im/pork X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 23:34:23 -0000 Synopsis: [PATCH]: Take maintainership of net-im/pork Responsible-Changed-From-To: freebsd-ports-bugs->xride Responsible-Changed-By: xride Responsible-Changed-When: Mon Jun 4 23:33:32 UTC 2007 Responsible-Changed-Why: I'll take this one http://www.freebsd.org/cgi/query-pr.cgi?pr=113197 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 00:27:35 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CB0816A400; Tue, 5 Jun 2007 00:27:35 +0000 (UTC) (envelope-from benjsc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 64E1513C4B0; Tue, 5 Jun 2007 00:27:35 +0000 (UTC) (envelope-from benjsc@FreeBSD.org) Received: from freefall.freebsd.org (benjsc@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l550RZSP034522; Tue, 5 Jun 2007 00:27:35 GMT (envelope-from benjsc@freefall.freebsd.org) Received: (from benjsc@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l550RZYJ034518; Tue, 5 Jun 2007 00:27:35 GMT (envelope-from benjsc) Date: Tue, 5 Jun 2007 00:27:35 GMT From: Benjamin Close Message-Id: <200706050027.l550RZYJ034518@freefall.freebsd.org> To: benjsc@FreeBSD.org, benjsc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112977: [patch] graphics/libflash does not compile after gcc 4.2 import X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 00:27:35 -0000 Synopsis: [patch] graphics/libflash does not compile after gcc 4.2 import Responsible-Changed-From-To: benjsc->freebsd-ports-bugs Responsible-Changed-By: benjsc Responsible-Changed-When: Tue Jun 5 00:26:50 UTC 2007 Responsible-Changed-Why: no -ports bit to commit, back to the ports-bugs gurus http://www.freebsd.org/cgi/query-pr.cgi?pr=112977 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 01:30:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D03E16A468 for ; Tue, 5 Jun 2007 01:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0738F13C469 for ; Tue, 5 Jun 2007 01:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l551U146041519 for ; Tue, 5 Jun 2007 01:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l551U1cZ041518; Tue, 5 Jun 2007 01:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 01:30:01 GMT Resent-Message-Id: <200706050130.l551U1cZ041518@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44BB916A400 for ; Tue, 5 Jun 2007 01:23:31 +0000 (UTC) (envelope-from saper@saper.info) Received: from system.pl (system.pl [87.98.232.30]) by mx1.freebsd.org (Postfix) with ESMTP id B7D6013C43E for ; Tue, 5 Jun 2007 01:23:30 +0000 (UTC) (envelope-from saper@saper.info) Received: (qmail 31297 invoked from network); 5 Jun 2007 03:23:29 +0200 Received: from unknown (HELO saperski.saper.info) (81.210.248.49) by system.pl with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jun 2007 03:23:29 +0200 Received: from saperski.saper.info (saper@saperski.saper.info [127.0.0.1]) by saperski.saper.info (8.14.1/8.14.1) with ESMTP id l551NEB7041462 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 5 Jun 2007 03:23:15 +0200 (CEST) (envelope-from saper@saperski.saper.info) Received: (from saper@localhost) by saperski.saper.info (8.14.1/8.14.1/Submit) id l551NDmr041461; Tue, 5 Jun 2007 03:23:13 +0200 (CEST) (envelope-from saper) Message-Id: <200706050123.l551NDmr041461@saperski.saper.info> Date: Tue, 5 Jun 2007 03:23:13 +0200 (CEST) From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: stas@FreeBSD.org Subject: ports/113350: [PATCH] devel/elfio: build dynamic library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 01:30:02 -0000 >Number: 113350 >Category: ports >Synopsis: [PATCH] devel/elfio: build dynamic library >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 01:30:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD saperski.saper.info 6.2-STABLE FreeBSD 6.2-STABLE #6: Mon Jun 4 01:08:46 CEST >Description: Hello, In order to build for secondlife client we need a dynamic version of a libELFIO library. Attached please find a crude patch to get this done. I don't like this *.o stuff but I do not want to dig into the whole automake mess. Port maintainer (stas@FreeBSD.org) is cc'd. --Marcin Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- elfio-1.0.3_2.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/devel/elfio/Makefile,v retrieving revision 1.10 diff -u -u -r1.10 Makefile --- Makefile 27 Mar 2007 22:11:54 -0000 1.10 +++ Makefile 5 Jun 2007 01:19:44 -0000 @@ -8,7 +8,7 @@ PORTNAME= elfio PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,6 +19,7 @@ GNU_CONFIGURE= yes USE_GNOME= gnometarget +USE_LDCONFIG= yes OPTIONS= EXAMPLES "Install sample programms" on @@ -26,13 +27,24 @@ .include +PLIST_SUB+= SHLIB_VER=${SHLIB_VER} .if !defined(WITHOUT_EXAMPLES) PLIST_SUB+= EXAMPLES="" .else PLIST_SUB+= EXAMPLES="@comment " .endif +CFLAGS+= -fPIC +SHLIB_VER= 0 + +post-build: + (cd ${WRKSRC}/ELFIO; ${CC} -shared -o libELFIO.so.${SHLIB_VER} *.o) + post-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ELFIO/libELFIO.so.${SHLIB_VER} \ + ${PREFIX}/lib/libELFIO.so.${SHLIB_VER} + cd ${PREFIX}/lib && \ + ${LN} -sf libELFIO.so.${SHLIB_VER} libELFIO.so .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for file in AUTHORS ChangeLog README Index: pkg-plist =================================================================== RCS file: /usr/home/ncvs/ports/devel/elfio/pkg-plist,v retrieving revision 1.4 diff -u -u -r1.4 pkg-plist --- pkg-plist 21 Jul 2006 21:12:37 -0000 1.4 +++ pkg-plist 4 Jun 2007 23:36:12 -0000 @@ -4,6 +4,8 @@ include/ELFO.h include/ELFTypes.h lib/libELFIO.a +lib/libELFIO.so.%%SHLIB_VER%% +lib/libELFIO.so %%EXAMPLES%%%%EXAMPLESDIR%%/ELFDump.cpp %%EXAMPLES%%%%EXAMPLESDIR%%/RelocationTable.cpp %%EXAMPLES%%%%EXAMPLESDIR%%/Write.cpp --- elfio-1.0.3_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 01:30:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17C7516A469 for ; Tue, 5 Jun 2007 01:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E786413C46E for ; Tue, 5 Jun 2007 01:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l551U2wB041593 for ; Tue, 5 Jun 2007 01:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l551U24q041592; Tue, 5 Jun 2007 01:30:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 01:30:02 GMT Resent-Message-Id: <200706050130.l551U24q041592@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edwin Groothuis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4D4316A400 for ; Tue, 5 Jun 2007 01:26:36 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail4out.barnet.com.au (mail4.barnet.com.au [202.83.178.125]) by mx1.freebsd.org (Postfix) with ESMTP id 6877D13C448 for ; Tue, 5 Jun 2007 01:26:36 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail4out.barnet.com.au (Postfix, from userid 1001) id 4664337D1BE; Tue, 5 Jun 2007 11:26:35 +1000 (EST) Received: from mail4auth.barnet.com.au (mail4.barnet.com.au [202.83.178.125]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail4.barnet.com.au (Postfix) with ESMTP id 1921E422EF9 for ; Tue, 5 Jun 2007 11:26:35 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail4auth.barnet.com.au (Postfix) with ESMTP id BDC0237D1A4 for ; Tue, 5 Jun 2007 11:26:34 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 9F4D798; Tue, 5 Jun 2007 11:26:34 +1000 (EST) Message-Id: <20070605012634.9F4D798@k7.mavetju> Date: Tue, 5 Jun 2007 11:26:34 +1000 (EST) From: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113351: [patch] net/quagga - add optional delay after startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 01:30:03 -0000 >Number: 113351 >Category: ports >Synopsis: [patch] net/quagga - add optional delay after startup >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 01:30:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 6.2-RELEASE-p4 i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:55:55 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/SMP i386 >Description: I'm so tired of my machines rebooting and having to manually start half of the services because they were started when ospfd hadn't kicked in, so I added this quagga_delay to the rc.d file. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/quagga/Makefile,v retrieving revision 1.54 diff -u -r1.54 Makefile --- Makefile 27 May 2007 09:30:14 -0000 1.54 +++ Makefile 5 Jun 2007 01:24:34 -0000 @@ -7,7 +7,7 @@ PORTNAME= quagga PORTVERSION= 0.99.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://quagga.net/download/ \ http://www.ru.quagga.net/download/ \ Index: files/quagga.sh.in =================================================================== RCS file: /home/pcvs/ports/net/quagga/files/quagga.sh.in,v retrieving revision 1.6 diff -u -r1.6 quagga.sh.in --- files/quagga.sh.in 17 Jul 2006 16:28:21 -0000 1.6 +++ files/quagga.sh.in 5 Jun 2007 01:24:34 -0000 @@ -9,11 +9,14 @@ #quagga_enable="YES" # # You may also wish to use the following variables to fine-tune startup: -#quagga_flags="-d" -#quagga_daemons="zebra ripd ripngd ospfd ospf6d bgpd isisd" +# quagga_flags="-d" +# quagga_daemons="zebra ripd ripngd ospfd ospf6d bgpd isisd" # Per daemon tuning may be done with daemon_name_flags -#zebra_flags="-dP 0" -#bgpd_flags="-dnrP 0" and so on +# zebra_flags="-dP 0" +# bgpd_flags="-dnrP 0" and so on +# If you want to give the routing deamons a chance to catchup before +# continueing, set quagga_delay to a certain amount of seconds. +# quagga_delay="30" # # # If the quagga daemons require additional shared libraries to start, @@ -42,6 +45,7 @@ : ${quagga_flags="-d"} : ${quagga_daemons="zebra ripd ripngd ospfd ospf6d bgpd isisd"} : ${quagga_extralibs_path=""} +: ${quagga_delay="0"} quagga_cmd=$1 @@ -78,3 +82,8 @@ eval flags=\$\{${daemon}_flags:-\"${quagga_flags}\"\} run_rc_command "$1" done + +if [ "${quagga_delay}" != "0" ]; then + echo "Sleeping ${quagga_delay} to obtain dynamic routing information..." + sleep ${quagga_delay} +fi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 01:30:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2D7C16A469 for ; Tue, 5 Jun 2007 01:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A266213C447 for ; Tue, 5 Jun 2007 01:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l551U8mQ041688 for ; Tue, 5 Jun 2007 01:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l551U8JH041687; Tue, 5 Jun 2007 01:30:08 GMT (envelope-from gnats) Date: Tue, 5 Jun 2007 01:30:08 GMT Message-Id: <200706050130.l551U8JH041687@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tomoyuki Sakurai Cc: Subject: ports/113319: [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View for Email X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tomoyuki Sakurai List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 01:30:08 -0000 The following reply was made to PR ports/113319; it has been noted by GNATS. From: Tomoyuki Sakurai To: bug-followup@FreeBSD.org, cherry@trombik.org Cc: Subject: ports/113319: [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View for Email Date: Tue, 5 Jun 2007 10:09:44 +0900 --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline View for Email Reply-To: X-OS: FreeBSD spica.trombik.org 6.1-RELEASE-p11 FreeBSD 6.1-RELEASE-p11 - fixed fixed paths in pkg-plist -- Tomoyuki Sakurai --a8Wt8u1KmwUX3Y2C Content-Type: application/x-shar Content-Disposition: attachment; filename="p5-Catalyst-View-Email.shar" Content-Transfer-Encoding: quoted-printable # This is a shell archive. Save it in a file, remove anything before=0A# t= his line, and then unpack it by entering "sh file". Note, it may=0A# creat= e directories; files and directories will be owned by you and=0A# have defa= ult permissions.=0A#=0A# This archive contains:=0A#=0A# p5-Catalyst-View-Em= ail/=0A# p5-Catalyst-View-Email/pkg-descr=0A# p5-Catalyst-View-Email/Makefi= le=0A# p5-Catalyst-View-Email/pkg-plist=0A# p5-Catalyst-View-Email/distinfo= =0A#=0Aecho c - p5-Catalyst-View-Email/=0Amkdir -p p5-Catalyst-View-Email/ = > /dev/null 2>&1=0Aecho x - p5-Catalyst-View-Email/pkg-descr=0Ased 's/^X//'= >p5-Catalyst-View-Email/pkg-descr << 'END-of-p5-Catalyst-View-Email/pkg-de= scr'=0AXCatalyst::Helper::View::Email - Helper for Email Views=0AX=0AXWWW: = http://search.cpan.org/dist/Catalyst-View-Email/=0AEND-of-p5-Catalyst-View-= Email/pkg-descr=0Aecho x - p5-Catalyst-View-Email/Makefile=0Ased 's/^X//' >= p5-Catalyst-View-Email/Makefile << 'END-of-p5-Catalyst-View-Email/Makefile'= =0AX# New ports collection makefile for: p5-Catalyst-View-Email=0AX# Date c= reated: 2007-06-04=0AX# Whom: Tomoyuki Sakurai =0AX#= =0AX# $FreeBSD$=0AX#=0AX=0AXPORTNAME=3D Catalyst-View-Email=0AXPORTVERSION= =3D 0.01=0AXCATEGORIES=3D www=0AXMASTER_SITES=3D ${MASTER_SITE_PERL_CPAN}= =0AXMASTER_SITE_SUBDIR=3D Catalyst=0AXPKGNAMEPREFIX=3D p5-=0AX=0AXMAINTAINE= R=3D cherry@trombik.org=0AXCOMMENT=3D Catalyst View for Email=0AX=0AXRUN_DE= PENDS=3D p5-Catalyst-Runtime>=3D5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime = \=0AX p5-Catalyst-Devel>=3D1.00:${PORTSDIR}/www/p5-Catalyst-Devel \=0AX p= 5-Catalyst-View-TT>0:${PORTSDIR}/www/p5-Catalyst-View-TT \=0AX p5-Class-C3= >=3D0:${PORTSDIR}/devel/p5-Class-C3 \=0AX p5-Email-Send>=3D2.185:${PORTSDI= R}/mail/p5-Email-Send \=0AX mail/p5-Email-MIME>=3D1.859:${PORTSDIR}/mail/p= 5-Email-MIME \=0AX mail/p5-Email-MIME-Creator>=3D1.45:${PORTSDIR}/mail/p5-= Email-MIME-Creator=0AXBUILD_DEPENDS=3D ${RUN_DEPENDS}=0AX=0AXPERL_CONFIGURE= =3D yes=0AX=0AXMAN3=3D Catalyst::Helper::View::Email.3 Catalyst::Helper::Vi= ew::Email::Template.3 \=0AX Catalyst::View::Email.3 Catalyst::View::Email:= :Template.3=0AX=0AX.include =0AX.include =0AEND-of-p5-Catalyst-View-Email/Makefile=0Aecho x - p5-Catalyst-View-Emai= l/pkg-plist=0Ased 's/^X//' >p5-Catalyst-View-Email/pkg-plist << 'END-of-p5-= Catalyst-View-Email/pkg-plist'=0AX@comment $FreeBSD$=0AX%%SITE_PERL%%/mach/= auto/Catalyst/View/Email/.packlist=0AX%%SITE_PERL%%/Catalyst/View/Email.pm= =0AX%%SITE_PERL%%/Catalyst/View/Email/Template.pm=0AX%%SITE_PERL%%/Catalyst= /Helper/View/Email.pm=0AX%%SITE_PERL%%/Catalyst/Helper/View/Email/Template.= pm=0AX@dirrmtry %%SITE_PERL%%/mach/auto/Catalyst/View/Email=0AX@dirrmtry %%= SITE_PERL%%/Catalyst/View/Email=0AX@dirrmtry %%SITE_PERL%%/Catalyst/Helper/= View/Email=0AEND-of-p5-Catalyst-View-Email/pkg-plist=0Aecho x - p5-Catalyst= -View-Email/distinfo=0Ased 's/^X//' >p5-Catalyst-View-Email/distinfo << 'EN= D-of-p5-Catalyst-View-Email/distinfo'=0AXMD5 (Catalyst-View-Email-0.01.tar.= gz) =3D e71cda3dc30f452db1262eb4375007af=0AXSHA256 (Catalyst-View-Email-0.0= 1.tar.gz) =3D 9924bf978e70d169adeb6c90d0b413dd203cb63914f20299ad68a21d786f6= ce6=0AXSIZE (Catalyst-View-Email-0.01.tar.gz) =3D 22318=0AEND-of-p5-Catalys= t-View-Email/distinfo=0Aexit=0A=0A --a8Wt8u1KmwUX3Y2C-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 01:30:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92F3E16A46B; Tue, 5 Jun 2007 01:30:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6C73813C45E; Tue, 5 Jun 2007 01:30:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l551UCAZ041794; Tue, 5 Jun 2007 01:30:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l551UC5A041790; Tue, 5 Jun 2007 01:30:12 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 01:30:12 GMT From: Edwin Groothuis Message-Id: <200706050130.l551UC5A041790@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stas@FreeBSD.org Cc: Subject: Re: ports/113350: [PATCH] devel/elfio: build dynamic library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 01:30:12 -0000 Synopsis: [PATCH] devel/elfio: build dynamic library Responsible-Changed-From-To: freebsd-ports-bugs->stas Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 01:30:11 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113350 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 01:30:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 70FB716A492; Tue, 5 Jun 2007 01:30:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4B30813C489; Tue, 5 Jun 2007 01:30:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l551ULrt042053; Tue, 5 Jun 2007 01:30:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l551ULvt042047; Tue, 5 Jun 2007 01:30:21 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 01:30:21 GMT From: Edwin Groothuis Message-Id: <200706050130.l551ULvt042047@freefall.freebsd.org> To: edwin@mavetju.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113351: [patch] net/quagga - add optional delay after startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 01:30:21 -0000 Synopsis: [patch] net/quagga - add optional delay after startup State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Jun 5 01:30:20 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113351 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 03:30:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DC6016A400 for ; Tue, 5 Jun 2007 03:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 12FDD13C44B for ; Tue, 5 Jun 2007 03:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l553U8x6054492 for ; Tue, 5 Jun 2007 03:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l553U8AO054490; Tue, 5 Jun 2007 03:30:08 GMT (envelope-from gnats) Date: Tue, 5 Jun 2007 03:30:08 GMT Message-Id: <200706050330.l553U8AO054490@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alex Samorukov Cc: Subject: Re: ports/111388: awstats port install path script mismatch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Samorukov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 03:30:09 -0000 The following reply was made to PR ports/111388; it has been noted by GNATS. From: Alex Samorukov To: bug-followup@FreeBSD.org, leon@forth.com Cc: Subject: Re: ports/111388: awstats port install path script mismatch Date: Mon, 04 Jun 2007 16:53:21 +0300 I see no feedback from submitter, and no patches attached. Please, close this PR From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8641616A421 for ; Tue, 5 Jun 2007 06:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6673013C469 for ; Tue, 5 Jun 2007 06:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5560BpE071246 for ; Tue, 5 Jun 2007 06:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5560BxA071245; Tue, 5 Jun 2007 06:00:11 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 06:00:11 GMT Resent-Message-Id: <200706050600.l5560BxA071245@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A50116A41F for ; Tue, 5 Jun 2007 05:51:14 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.freebsd.org (Postfix) with SMTP id 3520C13C44B for ; Tue, 5 Jun 2007 05:51:14 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: (qmail 52524 invoked from network); 5 Jun 2007 05:51:10 -0000 Received: from 190.55.84.15 (HELO deimos.mars.bsd) (190.55.84.15) by relay02.pair.com with SMTP; 5 Jun 2007 05:51:10 -0000 Message-Id: <1181022691.5387@deimos.mars.bsd> Date: Tue, 5 Jun 2007 02:51:31 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.8 Cc: Subject: ports/113352: [UPDATE] net-p2p/rblibtorrent: update to version 0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:00:11 -0000 >Number: 113352 >Category: ports >Synopsis: [UPDATE] net-p2p/rblibtorrent: update to version 0.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 06:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 6.2-RELEASE i386 >Organization: >Environment: System: FreeBSD 6.2-RELEASE #0: Fri Jan 12 11:05:30 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP >Description: - Update to version 0.12. - Remove useless patch for enabling workaround code for Mac OS X (the functions are implemented in FreeBSD). >How-To-Repeat: >Fix: --- rblibtorrent.diff begins here --- Index: rblibtorrent/Makefile =================================================================== RCS file: /home/pcvs/ports/net-p2p/rblibtorrent/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- rblibtorrent/Makefile 26 Apr 2007 00:15:08 -0000 1.6 +++ rblibtorrent/Makefile 5 Jun 2007 05:34:10 -0000 @@ -6,8 +6,7 @@ # PORTNAME= libtorrent -PORTVERSION= 0.11 -PORTREVISION= 1 +PORTVERSION= 0.12 CATEGORIES= net-p2p MASTER_SITES= SF PKGNAMEPREFIX= rb Index: rblibtorrent/distinfo =================================================================== RCS file: /home/pcvs/ports/net-p2p/rblibtorrent/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- rblibtorrent/distinfo 30 Nov 2006 19:37:11 -0000 1.3 +++ rblibtorrent/distinfo 5 Jun 2007 05:34:10 -0000 @@ -1,3 +1,3 @@ -MD5 (libtorrent-0.11.tar.gz) = 56e9071b95a6e3f9377121f2fead3499 -SHA256 (libtorrent-0.11.tar.gz) = f350e0af6b42c2cdb1f19008b00fe5f0b70236817f532a94bcb1e3ef6ebba0d7 -SIZE (libtorrent-0.11.tar.gz) = 1130537 +MD5 (libtorrent-0.12.tar.gz) = a09a37e6fc74d152821c00c3cb15d248 +SHA256 (libtorrent-0.12.tar.gz) = 0663f9adaa9d90334ebf78eb6f5b31074ff533d7bec5d3325ff98baad5b7df07 +SIZE (libtorrent-0.12.tar.gz) = 1176469 Index: rblibtorrent/pkg-plist =================================================================== RCS file: /home/pcvs/ports/net-p2p/rblibtorrent/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- rblibtorrent/pkg-plist 1 Dec 2006 14:50:35 -0000 1.6 +++ rblibtorrent/pkg-plist 5 Jun 2007 05:34:10 -0000 @@ -5,7 +5,6 @@ include/libtorrent/asio/basic_datagram_socket.hpp include/libtorrent/asio/basic_deadline_timer.hpp include/libtorrent/asio/basic_io_object.hpp -include/libtorrent/asio/basic_resolver.hpp include/libtorrent/asio/basic_socket.hpp include/libtorrent/asio/basic_socket_acceptor.hpp include/libtorrent/asio/basic_socket_iostream.hpp @@ -40,6 +39,7 @@ include/libtorrent/asio/detail/io_control.hpp include/libtorrent/asio/detail/kqueue_reactor.hpp include/libtorrent/asio/detail/kqueue_reactor_fwd.hpp +include/libtorrent/asio/detail/local_free_on_block_exit.hpp include/libtorrent/asio/detail/mutex.hpp include/libtorrent/asio/detail/noncopyable.hpp include/libtorrent/asio/detail/null_event.hpp @@ -64,7 +64,10 @@ include/libtorrent/asio/detail/select_interrupter.hpp include/libtorrent/asio/detail/select_reactor.hpp include/libtorrent/asio/detail/select_reactor_fwd.hpp +include/libtorrent/asio/detail/service_base.hpp +include/libtorrent/asio/detail/service_id.hpp include/libtorrent/asio/detail/service_registry.hpp +include/libtorrent/asio/detail/service_registry_fwd.hpp include/libtorrent/asio/detail/signal_blocker.hpp include/libtorrent/asio/detail/signal_init.hpp include/libtorrent/asio/detail/socket_holder.hpp @@ -76,6 +79,7 @@ include/libtorrent/asio/detail/task_io_service.hpp include/libtorrent/asio/detail/task_io_service_fwd.hpp include/libtorrent/asio/detail/thread.hpp +include/libtorrent/asio/detail/throw_error.hpp include/libtorrent/asio/detail/timer_queue.hpp include/libtorrent/asio/detail/timer_queue_base.hpp include/libtorrent/asio/detail/tss_ptr.hpp @@ -85,7 +89,6 @@ include/libtorrent/asio/detail/win_iocp_io_service_fwd.hpp include/libtorrent/asio/detail/win_iocp_operation.hpp include/libtorrent/asio/detail/win_iocp_socket_service.hpp -include/libtorrent/asio/detail/win_local_free_on_block_exit.hpp include/libtorrent/asio/detail/win_mutex.hpp include/libtorrent/asio/detail/win_signal_blocker.hpp include/libtorrent/asio/detail/win_thread.hpp @@ -93,9 +96,10 @@ include/libtorrent/asio/detail/winsock_init.hpp include/libtorrent/asio/detail/wrapped_handler.hpp include/libtorrent/asio/error.hpp -include/libtorrent/asio/error_handler.hpp +include/libtorrent/asio/error_code.hpp include/libtorrent/asio/handler_alloc_hook.hpp include/libtorrent/asio/handler_invoke_hook.hpp +include/libtorrent/asio/impl/error_code.ipp include/libtorrent/asio/impl/io_service.ipp include/libtorrent/asio/impl/read.ipp include/libtorrent/asio/impl/read_until.ipp @@ -105,6 +109,7 @@ include/libtorrent/asio/ip/address_v4.hpp include/libtorrent/asio/ip/address_v6.hpp include/libtorrent/asio/ip/basic_endpoint.hpp +include/libtorrent/asio/ip/basic_resolver.hpp include/libtorrent/asio/ip/basic_resolver_entry.hpp include/libtorrent/asio/ip/basic_resolver_iterator.hpp include/libtorrent/asio/ip/basic_resolver_query.hpp @@ -112,6 +117,7 @@ include/libtorrent/asio/ip/host_name.hpp include/libtorrent/asio/ip/multicast.hpp include/libtorrent/asio/ip/resolver_query_base.hpp +include/libtorrent/asio/ip/resolver_service.hpp include/libtorrent/asio/ip/tcp.hpp include/libtorrent/asio/ip/udp.hpp include/libtorrent/asio/is_read_buffered.hpp @@ -119,7 +125,6 @@ include/libtorrent/asio/placeholders.hpp include/libtorrent/asio/read.hpp include/libtorrent/asio/read_until.hpp -include/libtorrent/asio/resolver_service.hpp include/libtorrent/asio/socket_acceptor_service.hpp include/libtorrent/asio/socket_base.hpp include/libtorrent/asio/ssl.hpp @@ -138,12 +143,13 @@ include/libtorrent/asio/strand.hpp include/libtorrent/asio/stream_socket_service.hpp include/libtorrent/asio/streambuf.hpp -include/libtorrent/asio/system_exception.hpp +include/libtorrent/asio/system_error.hpp include/libtorrent/asio/thread.hpp include/libtorrent/asio/time_traits.hpp include/libtorrent/asio/write.hpp include/libtorrent/aux_/allocate_resources_impl.hpp include/libtorrent/aux_/session_impl.hpp +include/libtorrent/bandwidth_manager.hpp include/libtorrent/bencode.hpp include/libtorrent/bt_peer_connection.hpp include/libtorrent/buffer.hpp @@ -151,7 +157,12 @@ include/libtorrent/debug.hpp include/libtorrent/entry.hpp include/libtorrent/escape_string.hpp +include/libtorrent/extensions.hpp +include/libtorrent/extensions/logger.hpp +include/libtorrent/extensions/metadata_transfer.hpp +include/libtorrent/extensions/ut_pex.hpp include/libtorrent/file.hpp +include/libtorrent/file_pool.hpp include/libtorrent/fingerprint.hpp include/libtorrent/hasher.hpp include/libtorrent/http_tracker_connection.hpp @@ -202,6 +213,7 @@ lib/libtorrent.so.1 libdata/pkgconfig/libtorrent.pc @dirrm include/libtorrent/kademlia +@dirrm include/libtorrent/extensions @dirrm include/libtorrent/aux_ @dirrm include/libtorrent/asio/ssl/detail @dirrm include/libtorrent/asio/ssl Index: rblibtorrent/files/patch-Makefile.in =================================================================== RCS file: /home/pcvs/ports/net-p2p/rblibtorrent/files/patch-Makefile.in,v retrieving revision 1.3 diff -u -r1.3 patch-Makefile.in --- rblibtorrent/files/patch-Makefile.in 1 Dec 2006 14:50:36 -0000 1.3 +++ rblibtorrent/files/patch-Makefile.in 5 Jun 2007 05:34:10 -0000 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Wed Nov 29 13:16:17 2006 -+++ Makefile.in Wed Nov 29 13:16:22 2006 -@@ -235,7 +235,7 @@ +--- ./Makefile.in.orig Fri May 4 03:03:26 2007 ++++ ./Makefile.in Tue Jun 5 00:27:17 2007 +@@ -258,7 +258,7 @@ debian/libtorrent0.install \ debian/rules -pkgconfigdir = $(libdir)/pkgconfig +pkgconfigdir = $(prefix)/libdata/pkgconfig pkgconfig_DATA = libtorrent.pc - all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive + all: all-recursive + Index: rblibtorrent/files/patch-include_libtorrent_asio_detail_socket_ops.hpp =================================================================== RCS file: rblibtorrent/files/patch-include_libtorrent_asio_detail_socket_ops.hpp diff -N rblibtorrent/files/patch-include_libtorrent_asio_detail_socket_ops.hpp --- rblibtorrent/files/patch-include_libtorrent_asio_detail_socket_ops.hpp 30 Nov 2006 19:37:11 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,92 +0,0 @@ ---- include/libtorrent/asio/detail/socket_ops.hpp.original Tue Oct 24 00:50:21 2006 -+++ include/libtorrent/asio/detail/socket_ops.hpp Wed Nov 29 14:40:02 2006 -@@ -66,7 +66,7 @@ - socket_addr_len_type* addrlen) - { - set_error(0); --#if defined(__MACH__) && defined(__APPLE__) -+#if defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - socket_type new_s = error_wrapper(::accept(s, addr, addrlen)); - if (new_s == invalid_socket) - return new_s; -@@ -279,7 +279,7 @@ - #if defined(BOOST_WINDOWS) || defined(__CYGWIN__) - return error_wrapper(::WSASocket(af, type, protocol, 0, 0, - WSA_FLAG_OVERLAPPED)); --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - socket_type s = error_wrapper(::socket(af, type, protocol)); - if (s == invalid_socket) - return s; -@@ -561,7 +561,7 @@ - } - - #if defined(BOOST_WINDOWS) || defined(__CYGWIN__) \ -- || defined(__MACH__) && defined(__APPLE__) -+ || defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - - // The following functions are only needed for emulation of getaddrinfo and - // getnameinfo. -@@ -604,7 +604,7 @@ - buffer, buflength, error)); - *error = translate_netdb_error(*error); - return retval; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - (void)(buffer); - (void)(buflength); - hostent* retval = error_wrapper(::getipnodebyaddr(addr, length, af, error)); -@@ -652,7 +652,7 @@ - buflength, error)); - *error = translate_netdb_error(*error); - return retval; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - (void)(buffer); - (void)(buflength); - hostent* retval = error_wrapper(::getipnodebyname( -@@ -679,7 +679,7 @@ - - inline void freehostent(hostent* h) - { --#if defined(__MACH__) && defined(__APPLE__) -+#if defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - if (h) - ::freehostent(h); - #else -@@ -1372,7 +1372,7 @@ - } - - #endif // defined(BOOST_WINDOWS) || defined(__CYGWIN__) -- // || defined(__MACH__) && defined(__APPLE__) -+ // || defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - - inline int translate_addrinfo_error(int error) - { -@@ -1425,7 +1425,7 @@ - int error = getaddrinfo_emulation(host, service, hints, result); - return translate_addrinfo_error(error); - # endif --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - int error = getaddrinfo_emulation(host, service, hints, result); - return translate_addrinfo_error(error); - #else -@@ -1453,7 +1453,7 @@ - } - freeaddrinfo_emulation(ai); - # endif --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - freeaddrinfo_emulation(ai); - #else - ::freeaddrinfo(ai); -@@ -1488,7 +1488,7 @@ - host, hostlen, serv, servlen, flags); - return translate_addrinfo_error(error); - # endif --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - using namespace std; // For memcpy. - sockaddr_storage_type tmp_addr; - memcpy(&tmp_addr, addr, addrlen); --- rblibtorrent.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:00:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2DB316A421; Tue, 5 Jun 2007 06:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C921E13C469; Tue, 5 Jun 2007 06:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5560HPX071388; Tue, 5 Jun 2007 06:00:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5560H1C071384; Tue, 5 Jun 2007 06:00:17 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 06:00:17 GMT From: Edwin Groothuis Message-Id: <200706050600.l5560H1C071384@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, alepulver@FreeBSD.org Cc: Subject: Re: ports/113352: [UPDATE] net-p2p/rblibtorrent: update to version 0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:00:18 -0000 Synopsis: [UPDATE] net-p2p/rblibtorrent: update to version 0.12 Responsible-Changed-From-To: freebsd-ports-bugs->alepulver Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 06:00:17 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113352 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:11:26 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9312B16A41F; Tue, 5 Jun 2007 06:11:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6C2FC13C458; Tue, 5 Jun 2007 06:11:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l556BQZf073226; Tue, 5 Jun 2007 06:11:26 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l556BQ6s073222; Tue, 5 Jun 2007 06:11:26 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 06:11:26 GMT From: Martin Wilke Message-Id: <200706050611.l556BQ6s073222@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113309: [MAINTAINER] net-mgmt/flowviewer: [CHECKSUM CHANGED] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:11:26 -0000 Synopsis: [MAINTAINER] net-mgmt/flowviewer: [CHECKSUM CHANGED] Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 06:11:25 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113309 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:11:34 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3AE7C16A468; Tue, 5 Jun 2007 06:11:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 13AF613C46A; Tue, 5 Jun 2007 06:11:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l556BXWO073327; Tue, 5 Jun 2007 06:11:33 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l556BXo0073323; Tue, 5 Jun 2007 06:11:33 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 06:11:33 GMT From: Martin Wilke Message-Id: <200706050611.l556BXo0073323@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113293: [MAINTAINER] mail/spamd: update to 4.1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:11:34 -0000 Synopsis: [MAINTAINER] mail/spamd: update to 4.1.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 06:11:33 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113293 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:30:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4376F16A400 for ; Tue, 5 Jun 2007 06:30:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E074413C448 for ; Tue, 5 Jun 2007 06:30:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l556UIOK074887 for ; Tue, 5 Jun 2007 06:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l556UITf074884; Tue, 5 Jun 2007 06:30:18 GMT (envelope-from gnats) Date: Tue, 5 Jun 2007 06:30:18 GMT Message-Id: <200706050630.l556UITf074884@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jean-Francois Dockes Cc: Subject: Re: ports/113316: mail/metamail : add WITHOUT_X11 option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jean-Francois Dockes List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:30:19 -0000 The following reply was made to PR ports/113316; it has been noted by GNATS. From: Jean-Francois Dockes To: bug-followup@FreeBSD.org, jean-francois.dockes@wanadoo.fr Cc: Subject: Re: ports/113316: mail/metamail : add WITHOUT_X11 option Date: Tue, 05 Jun 2007 07:38:07 +0200 Just realised I forgot to increase the PORTREVISION From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:50:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2798016A46D for ; Tue, 5 Jun 2007 06:50:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 058DE13C46E for ; Tue, 5 Jun 2007 06:50:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l556oDdX077624 for ; Tue, 5 Jun 2007 06:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l556oD0h077623; Tue, 5 Jun 2007 06:50:13 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 06:50:13 GMT Resent-Message-Id: <200706050650.l556oD0h077623@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Peter Johnson Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A56FB16A46D for ; Tue, 5 Jun 2007 06:46:54 +0000 (UTC) (envelope-from pete@tortall.net) Received: from cvs.tortall.net (cvs.tortall.net [69.55.238.110]) by mx1.freebsd.org (Postfix) with ESMTP id 8ECED13C4BC for ; Tue, 5 Jun 2007 06:46:54 +0000 (UTC) (envelope-from pete@tortall.net) Received: from localhost (cvs [69.55.238.110]) by cvs.tortall.net (Postfix) with ESMTP id 3CB9B1702B for ; Mon, 4 Jun 2007 23:46:54 -0700 (PDT) Received: from cvs.tortall.net ([69.55.238.110]) by localhost (cvs.tortall.net [69.55.238.110]) (amavisd-new, port 10024) with ESMTP id Me4omvoe6M1t for ; Mon, 4 Jun 2007 23:46:53 -0700 (PDT) Received: by cvs.tortall.net (Postfix, from userid 1000) id 40C2217093; Mon, 4 Jun 2007 23:46:53 -0700 (PDT) Message-Id: <20070605064653.40C2217093@cvs.tortall.net> Date: Mon, 4 Jun 2007 23:46:53 -0700 (PDT) From: Peter Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113353: [MAINTAINER] audio/py-mutagen: Update to 1.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Peter Johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:50:14 -0000 >Number: 113353 >Category: ports >Synopsis: [MAINTAINER] audio/py-mutagen: Update to 1.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 06:50:13 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Peter Johnson >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached. --- mutagen-1.11.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/audio/py-mutagen/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 31 Jan 2007 03:42:30 -0000 1.10 +++ Makefile 5 Jun 2007 06:43:25 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/audio/py-mutagen/Makefile,v 1.10 2007/01/31 03:42:30 dryice Exp $ PORTNAME= mutagen -PORTVERSION= 1.10.1 +PORTVERSION= 1.11 CATEGORIES= audio python MASTER_SITES= http://www.sacredchao.net/~piman/software/ \ http://www.tortall.net/mirrors/piman-software/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/audio/py-mutagen/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- distinfo 27 Jan 2007 23:45:55 -0000 1.8 +++ distinfo 5 Jun 2007 06:43:25 -0000 @@ -1,3 +1,3 @@ -MD5 (mutagen-1.10.1.tar.gz) = 989cbe553266c723ad55d34245d932d4 -SHA256 (mutagen-1.10.1.tar.gz) = b38106331b2e8e39faf5409f881da7c6c56198e4ceb07c67faf054037e07c5d5 -SIZE (mutagen-1.10.1.tar.gz) = 505033 +MD5 (mutagen-1.11.tar.gz) = 9aaa021d30ac9e46769cbd7fdcda4a51 +SHA256 (mutagen-1.11.tar.gz) = f22d0570a0d7d1b3d7a54bc70471fe212bd84aaabe5ab1d0c685f2b92a85b11a +SIZE (mutagen-1.11.tar.gz) = 505779 ===> Done --- mutagen-1.11.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:50:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 936D716A400 for ; Tue, 5 Jun 2007 06:50:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7108F13C4BD for ; Tue, 5 Jun 2007 06:50:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l556oEqn077643 for ; Tue, 5 Jun 2007 06:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l556oEbP077638; Tue, 5 Jun 2007 06:50:14 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 06:50:14 GMT Resent-Message-Id: <200706050650.l556oEbP077638@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Peter Johnson Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 626CC16A400 for ; Tue, 5 Jun 2007 06:48:52 +0000 (UTC) (envelope-from pete@tortall.net) Received: from cvs.tortall.net (cvs.tortall.net [69.55.238.110]) by mx1.freebsd.org (Postfix) with ESMTP id 4B8BC13C4BD for ; Tue, 5 Jun 2007 06:48:52 +0000 (UTC) (envelope-from pete@tortall.net) Received: from localhost (cvs [69.55.238.110]) by cvs.tortall.net (Postfix) with ESMTP id 2D2141702B for ; Mon, 4 Jun 2007 23:48:52 -0700 (PDT) Received: from cvs.tortall.net ([69.55.238.110]) by localhost (cvs.tortall.net [69.55.238.110]) (amavisd-new, port 10024) with ESMTP id gPvqHclLJyUI for ; Mon, 4 Jun 2007 23:48:51 -0700 (PDT) Received: by cvs.tortall.net (Postfix, from userid 1000) id 159D317093; Mon, 4 Jun 2007 23:48:51 -0700 (PDT) Message-Id: <20070605064851.159D317093@cvs.tortall.net> Date: Mon, 4 Jun 2007 23:48:51 -0700 (PDT) From: Peter Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113354: [MAINTAINER] multimedia/quodlibet: Update to 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Peter Johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:50:14 -0000 >Number: 113354 >Category: ports >Synopsis: [MAINTAINER] multimedia/quodlibet: Update to 1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 06:50:14 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Peter Johnson >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached. --- quodlibet-1.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/quodlibet/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 19 May 2007 20:17:58 -0000 1.21 +++ Makefile 5 Jun 2007 06:42:47 -0000 @@ -6,8 +6,7 @@ # PORTNAME= quodlibet -PORTVERSION= 0.24 -PORTREVISION= 4 +PORTVERSION= 1.0 CATEGORIES= multimedia audio python gnome MASTER_SITES= http://www.sacredchao.net/~piman/software/ \ http://www.tortall.net/mirrors/piman-software/ @@ -32,6 +31,7 @@ OPTIONS+= MPEG4IP "AAC/mp4 support with MPEG4IP" on OPTIONS+= MUSEPACK "Musepack (MPC, musicpd, libmpcdec) support" on OPTIONS+= OGG "OGG multimedia container support" on +OPTIONS+= SPC "SPC (SNES ROM audio) support" on OPTIONS+= SPEEX "OGG/Speex audio support" on OPTIONS+= VORBIS "OGG/Vorbis audio support" on OPTIONS+= WAVPACK "Wavpack support" on @@ -49,6 +49,10 @@ USE_GSTREAMER+= vorbis .endif +.if !defined(WITHOUT_SPC) +USE_GSTREAMER+= spc +.endif + .if !defined(WITHOUT_SPEEX) USE_GSTREAMER+= speex .endif Index: distinfo =================================================================== RCS file: /home/ncvs/ports/multimedia/quodlibet/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 29 Nov 2006 16:35:59 -0000 1.6 +++ distinfo 5 Jun 2007 06:42:47 -0000 @@ -1,3 +1,3 @@ -MD5 (quodlibet-0.24.tar.gz) = 39718994ee234d0c442d9db330d7445a -SHA256 (quodlibet-0.24.tar.gz) = 758d726fa57b177d574dc01141609df3415287611db073415230f1ac4520fd5e -SIZE (quodlibet-0.24.tar.gz) = 615554 +MD5 (quodlibet-1.0.tar.gz) = 5c925b754bd8505a7a66f2ffcc5b5fe4 +SHA256 (quodlibet-1.0.tar.gz) = bba92a91ac462b0277ad788a655b56af8bf02496a5878692dc88ffc4fdaddba4 +SIZE (quodlibet-1.0.tar.gz) = 617369 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/multimedia/quodlibet/pkg-plist,v retrieving revision 1.7 diff -u -r1.7 pkg-plist --- pkg-plist 29 Nov 2006 16:35:59 -0000 1.7 +++ pkg-plist 5 Jun 2007 06:42:47 -0000 @@ -64,14 +64,17 @@ %%DATADIR%%/formats/mp4.py %%DATADIR%%/formats/mpc.py %%DATADIR%%/formats/remote.py +%%DATADIR%%/formats/spc.py %%DATADIR%%/formats/trueaudio.py %%DATADIR%%/formats/wav.py %%DATADIR%%/formats/wavpack.py +%%DATADIR%%/formats/wma.py %%DATADIR%%/formats/xiph.py %%DATADIR%%/library/__init__.py %%DATADIR%%/library/_library.py %%DATADIR%%/library/songs.py %%DATADIR%%/media-eject.png +%%DATADIR%%/missing-cover.svg %%DATADIR%%/parse/__init__.py %%DATADIR%%/parse/_match.py %%DATADIR%%/parse/_pattern.py Index: files/patch-Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/quodlibet/files/patch-Makefile,v retrieving revision 1.3 diff -u -r1.3 patch-Makefile --- files/patch-Makefile 29 Nov 2006 16:35:59 -0000 1.3 +++ files/patch-Makefile 5 Jun 2007 06:42:47 -0000 @@ -1,6 +1,6 @@ ---- Makefile.orig Thu Oct 5 06:03:59 2006 -+++ Makefile Sat Nov 18 22:32:11 2006 -@@ -13,13 +13,12 @@ +--- Makefile.orig Sun Apr 15 19:45:47 2007 ++++ Makefile Mon Jun 4 21:41:02 2007 +@@ -13,7 +13,6 @@ @./check.py $(DESTDIR)$(PREFIX)/$(TO) make-install-dirs: @@ -8,14 +8,19 @@ mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/$(TO) - install: make-install-dirs install-dirs install-programs - install -m 644 $(MODULES) audio-*.png media-*.png device-*.png $(DESTDIR)$(PREFIX)/$(TO) -- for E in $(EXTENSIONS); do (test -e $$E && install -m 755 -D $$E $(DESTDIR)$(PREFIX)/$(TODEP)/$$E); done -+ -for E in $(EXTENSIONS); do (test -e $$E && install -m 755 $$E $(DESTDIR)$(PREFIX)/$(TODEP)/$$E); done +@@ -21,9 +20,9 @@ + install -m 644 $(MODULES) missing-cover.svg audio-*.png media-*.png device-*.png $(DESTDIR)$(PREFIX)/$(TO) cd po && make install-po DESTDIR=$(DESTDIR) - install-dirs: $(addprefix dir-install-, $(MODULE_DIRS)) -@@ -32,10 +31,10 @@ +- for E in $(EXTENSIONS); do \ ++ -for E in $(EXTENSIONS); do \ + if test -e $$E; then \ +- install -m 755 -D $$E $(DESTDIR)$(PREFIX)/$(TODEP)/$$E; \ ++ install -m 755 $$E $(DESTDIR)$(PREFIX)/$(TODEP)/$$E; \ + fi; \ + done + +@@ -37,10 +36,10 @@ app-install-%: make-install-dirs %.desktop install -m 755 $*.py $(DESTDIR)$(PREFIX)/$(TO) Index: files/patch-po-Makefile =================================================================== RCS file: files/patch-po-Makefile diff -N files/patch-po-Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-po-Makefile 5 Jun 2007 06:42:47 -0000 @@ -0,0 +1,12 @@ +--- po/Makefile.orig Sun Nov 12 04:24:42 2006 ++++ po/Makefile Mon Jun 4 23:11:13 2007 +@@ -12,9 +12,6 @@ + quodlibet.pot: POTFILES.in ../*.py ../formats/*.py ../browsers/*.py ../qltk/*.py ../plugins/*.py tag-names.py ../util/*.py ../library/*.py ../devices/*.py + intltool-update --pot --gettext-package=$(NAME) + +-%.po: quodlibet.pot +- intltool-update --dist --gettext-package=$(NAME) $* +- + %.mo: %.po + msgfmt -o $@ $< + ===> Done --- quodlibet-1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 06:50:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 023C416A48F; Tue, 5 Jun 2007 06:50:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CEC8E13C44C; Tue, 5 Jun 2007 06:50:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l556oK5H077736; Tue, 5 Jun 2007 06:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l556oKwV077732; Tue, 5 Jun 2007 06:50:20 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 06:50:20 GMT From: Edwin Groothuis Message-Id: <200706050650.l556oKwV077732@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113353: [MAINTAINER] audio/py-mutagen: Update to 1.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 06:50:21 -0000 Synopsis: [MAINTAINER] audio/py-mutagen: Update to 1.11 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 06:50:20 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113353 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 07:00:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA9D816A468 for ; Tue, 5 Jun 2007 07:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A046113C45E for ; Tue, 5 Jun 2007 07:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5570AEa078517 for ; Tue, 5 Jun 2007 07:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5570Aws078516; Tue, 5 Jun 2007 07:00:10 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 07:00:10 GMT Resent-Message-Id: <200706050700.l5570Aws078516@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, NIIMI Satoshi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 261E916A46D for ; Tue, 5 Jun 2007 06:58:14 +0000 (UTC) (envelope-from sa2c@sa2c.net) Received: from sakura.and.or.jp (sakura.and.or.jp [59.106.20.85]) by mx1.freebsd.org (Postfix) with ESMTP id ECC4713C45B for ; Tue, 5 Jun 2007 06:58:13 +0000 (UTC) (envelope-from sa2c@sa2c.net) Received: from sakura.and.or.jp (localhost [127.0.0.1]) by sakura.and.or.jp (Postfix) with ESMTP id D751461C34; Tue, 5 Jun 2007 15:58:10 +0900 (JST) Received: from berkeley.l.sa2c.net (berkeley.vpn.and.or.jp [10.46.49.3]) by sakura.and.or.jp (Postfix) with ESMTP id BACE961C2D; Tue, 5 Jun 2007 15:58:10 +0900 (JST) Received: by berkeley.l.sa2c.net (Postfix, from userid 3104) id AF8DC40D6; Tue, 5 Jun 2007 15:58:10 +0900 (JST) Message-Id: <20070605065810.AF8DC40D6@berkeley.l.sa2c.net> Date: Tue, 5 Jun 2007 15:58:10 +0900 (JST) From: NIIMI Satoshi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113355: japanese/emacs-emcws: use bsd.emacs.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: NIIMI Satoshi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 07:00:10 -0000 >Number: 113355 >Category: ports >Synopsis: japanese/emacs-emcws: use bsd.emacs.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 07:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: NIIMI Satoshi >Release: FreeBSD 6.2-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD berkeley.l.sa2c.net 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #1: Thu May 24 05:05:36 JST 2007 root@berkeley.l.sa2c.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Use bsd.emacs.mk instead of depending directly on editors/emacs in order to be unaffected by the move of editors/emacs to editors/emacs21. >How-To-Repeat: >Fix: --- ja-emacs-emcws.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/japanese/emacs-emcws/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- Makefile 2 Jun 2007 04:17:41 -0000 1.39 +++ Makefile 5 Jun 2007 06:15:49 -0000 @@ -25,8 +25,8 @@ MAINTAINER= nakaji@jp.freebsd.org COMMENT= Emacs + Canna + Wnn + Sj3 -BUILD_DEPENDS= emacs-${EMACS_VER}:${PORTSDIR}/editors/emacs -RUN_DEPENDS= emacs-${EMACS_VER}:${PORTSDIR}/editors/emacs +USE_EMACS= yes +EMACS_PORT_NAME= emacs21 CONFLICTS= emacs-19.* emacs-20.* emacs-22.* \ ja-emcws-20.* \ @@ -37,7 +37,6 @@ USE_AUTOTOOLS= autoconf:213 USE_GMAKE= YES -EMACS_VER= 21.3 # Change these as you like. WITH_WNN6?= NO --- ja-emacs-emcws.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 07:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A26D016A400 for ; Tue, 5 Jun 2007 07:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6924713C469 for ; Tue, 5 Jun 2007 07:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5570BwT078530 for ; Tue, 5 Jun 2007 07:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5570Bs3078529; Tue, 5 Jun 2007 07:00:11 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 07:00:11 GMT Resent-Message-Id: <200706050700.l5570Bs3078529@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, NIIMI Satoshi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B02D16A46C for ; Tue, 5 Jun 2007 06:58:17 +0000 (UTC) (envelope-from sa2c@sa2c.net) Received: from sakura.and.or.jp (sakura.and.or.jp [59.106.20.85]) by mx1.freebsd.org (Postfix) with ESMTP id 1D8FC13C45B for ; Tue, 5 Jun 2007 06:58:17 +0000 (UTC) (envelope-from sa2c@sa2c.net) Received: from sakura.and.or.jp (localhost [127.0.0.1]) by sakura.and.or.jp (Postfix) with ESMTP id 8996E61C41; Tue, 5 Jun 2007 15:58:16 +0900 (JST) Received: from berkeley.l.sa2c.net (berkeley.vpn.and.or.jp [10.46.49.3]) by sakura.and.or.jp (Postfix) with ESMTP id 6D36061C37; Tue, 5 Jun 2007 15:58:16 +0900 (JST) Received: by berkeley.l.sa2c.net (Postfix, from userid 3104) id 5E27B40F1; Tue, 5 Jun 2007 15:58:16 +0900 (JST) Message-Id: <20070605065816.5E27B40F1@berkeley.l.sa2c.net> Date: Tue, 5 Jun 2007 15:58:16 +0900 (JST) From: NIIMI Satoshi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113356: editors/leim21: use bsd.emacs.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: NIIMI Satoshi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 07:00:11 -0000 >Number: 113356 >Category: ports >Synopsis: editors/leim21: use bsd.emacs.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 07:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: NIIMI Satoshi >Release: FreeBSD 6.2-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD berkeley.l.sa2c.net 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #1: Thu May 24 05:05:36 JST 2007 root@berkeley.l.sa2c.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Use bsd.emacs.mk instead of depending directly on editors/emacs in order to be unaffected by the move of editors/emacs to editors/emacs21. >How-To-Repeat: >Fix: --- leim21.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/editors/leim21/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 19 May 2007 20:04:10 -0000 1.9 +++ Makefile 5 Jun 2007 06:18:22 -0000 @@ -17,11 +17,10 @@ LATEST_LINK= leim21 -BUILD_DEPENDS= emacs-${EMACS_VER}:${PORTSDIR}/editors/emacs -RUN_DEPENDS= emacs-${EMACS_VER}:${PORTSDIR}/editors/emacs +USE_EMACS= yes +EMACS_PORT_NAME= emacs21 USE_GMAKE= yes -EMACS_VER= 21.3 WRKSRC= ${WRKDIR}/emacs-${EMACS_VER}/leim PLIST_SUB= EMACS_VER=${EMACS_VER} SCRIPTS_ENV= EMACS_VER=${EMACS_VER} --- leim21.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 07:00:23 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9027816A468; Tue, 5 Jun 2007 07:00:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6639D13C447; Tue, 5 Jun 2007 07:00:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5570Nma078654; Tue, 5 Jun 2007 07:00:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5570Nsv078650; Tue, 5 Jun 2007 07:00:23 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 07:00:23 GMT From: Edwin Groothuis Message-Id: <200706050700.l5570Nsv078650@freefall.freebsd.org> To: sa2c@sa2c.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113355: japanese/emacs-emcws: use bsd.emacs.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 07:00:23 -0000 Synopsis: japanese/emacs-emcws: use bsd.emacs.mk State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Jun 5 07:00:22 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113355 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 07:10:41 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DCD7D16A468 for ; Tue, 5 Jun 2007 07:10:40 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C00E013C48A for ; Tue, 5 Jun 2007 07:10:40 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l557AeKe080048 for ; Tue, 5 Jun 2007 07:10:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l557Aedr080047; Tue, 5 Jun 2007 07:10:40 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 07:10:40 GMT Resent-Message-Id: <200706050710.l557Aedr080047@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tomoyuki Sakurai Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 472DC16A400 for ; Tue, 5 Jun 2007 07:04:02 +0000 (UTC) (envelope-from cherry@spica.trombik.org) Received: from spica.trombik.org (spica.trombik.org [211.19.48.12]) by mx1.freebsd.org (Postfix) with ESMTP id D224813C458 for ; Tue, 5 Jun 2007 07:04:01 +0000 (UTC) (envelope-from cherry@spica.trombik.org) Received: by spica.trombik.org (Postfix, from userid 999) id 55BE422DDC; Tue, 5 Jun 2007 16:04:00 +0900 (JST) Message-Id: <20070605070400.55BE422DDC@spica.trombik.org> Date: Tue, 5 Jun 2007 16:04:00 +0900 (JST) From: Tomoyuki Sakurai To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113357: [NEW PORT] www/p5-HTML-FillInForm-ForceUTF8: FillInForm with utf8 encoding X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 07:10:41 -0000 >Number: 113357 >Category: ports >Synopsis: [NEW PORT] www/p5-HTML-FillInForm-ForceUTF8: FillInForm with utf8 encoding >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 07:10:39 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tomoyuki Sakurai >Release: FreeBSD 6.1-RELEASE-p11 i386 >Organization: >Environment: System: FreeBSD spica.trombik.org 6.1-RELEASE-p11 FreeBSD 6.1-RELEASE-p11 #6: Sun Jan 7 04:14:41 JST >Description: HTML::FillInForm::ForceUTF8 is a subclass of HTML::FillInForm that forces utf8 flag on html and parameters. This allows you to prevent filling garbled result. WWW: http://search.cpan.org/dist/HTML-FillInForm-ForceUTF8/ The port is required by p5-Catalyst-Plugin-FillInForm-ForceUTF8 which is to be sendpred. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-HTML-FillInForm-ForceUTF8-0.02.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-HTML-FillInForm-ForceUTF8 # p5-HTML-FillInForm-ForceUTF8/pkg-descr # p5-HTML-FillInForm-ForceUTF8/Makefile # p5-HTML-FillInForm-ForceUTF8/pkg-plist # p5-HTML-FillInForm-ForceUTF8/distinfo # echo c - p5-HTML-FillInForm-ForceUTF8 mkdir -p p5-HTML-FillInForm-ForceUTF8 > /dev/null 2>&1 echo x - p5-HTML-FillInForm-ForceUTF8/pkg-descr sed 's/^X//' >p5-HTML-FillInForm-ForceUTF8/pkg-descr << 'END-of-p5-HTML-FillInForm-ForceUTF8/pkg-descr' XHTML::FillInForm::ForceUTF8 is a subclass of HTML::FillInForm that forces Xutf8 flag on html and parameters. This allows you to prevent filling Xgarbled result. X XWWW: http://search.cpan.org/dist/HTML-FillInForm-ForceUTF8/ END-of-p5-HTML-FillInForm-ForceUTF8/pkg-descr echo x - p5-HTML-FillInForm-ForceUTF8/Makefile sed 's/^X//' >p5-HTML-FillInForm-ForceUTF8/Makefile << 'END-of-p5-HTML-FillInForm-ForceUTF8/Makefile' X# New ports collection makefile for: p5-HTML-FillInForm-ForceUTF8 X# Date created: 2007-06-05 X# Whom: Tomoyuki Sakurai X# X# $FreeBSD$ X# X XPORTNAME= HTML-FillInForm-ForceUTF8 XPORTVERSION= 0.02 XCATEGORIES= www XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= HTML XPKGNAMEPREFIX= p5- X XMAINTAINER= cherry@trombik.org XCOMMENT= FillInForm with utf8 encoding X XRUN_DEPENDS= p5-HTML-FillInForm>0:${PORTSDIR}/www/p5-HTML-FillInForm \ X p5-Encode>0:${PORTSDIR}/converters/p5-Encode XBUILD_DEPENDS= ${RUN_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= HTML::FillInForm::ForceUTF8.3 X X.include X.include END-of-p5-HTML-FillInForm-ForceUTF8/Makefile echo x - p5-HTML-FillInForm-ForceUTF8/pkg-plist sed 's/^X//' >p5-HTML-FillInForm-ForceUTF8/pkg-plist << 'END-of-p5-HTML-FillInForm-ForceUTF8/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/mach/auto/HTML/FillInForm/ForceUTF8/.packlist X%%SITE_PERL%%/HTML/FillInForm/ForceUTF8.pm X@dirrmtry %%SITE_PERL%%/mach/auto/HTML/FillInForm/ForceUTF8 X@dirrmtry %%SITE_PERL%%/HTML/FillInForm END-of-p5-HTML-FillInForm-ForceUTF8/pkg-plist echo x - p5-HTML-FillInForm-ForceUTF8/distinfo sed 's/^X//' >p5-HTML-FillInForm-ForceUTF8/distinfo << 'END-of-p5-HTML-FillInForm-ForceUTF8/distinfo' XMD5 (HTML-FillInForm-ForceUTF8-0.02.tar.gz) = 10b5a3fd3da9af7ebbbb792a49b90832 XSHA256 (HTML-FillInForm-ForceUTF8-0.02.tar.gz) = e62d4ed4d75e620413b864f768cc6c2c81eb19515f335e2ae6e8d6c2d4184d4e XSIZE (HTML-FillInForm-ForceUTF8-0.02.tar.gz) = 2470 END-of-p5-HTML-FillInForm-ForceUTF8/distinfo exit --- p5-HTML-FillInForm-ForceUTF8-0.02.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 07:50:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FA4A16A421 for ; Tue, 5 Jun 2007 07:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E462813C457 for ; Tue, 5 Jun 2007 07:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l557o8UU086602 for ; Tue, 5 Jun 2007 07:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l557o8L9086601; Tue, 5 Jun 2007 07:50:08 GMT (envelope-from gnats) Date: Tue, 5 Jun 2007 07:50:08 GMT Message-Id: <200706050750.l557o8L9086601@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: NAKAJI Hiroyuki Cc: Subject: Re: ports/113355: japanese/emacs-emcws: use bsd.emacs.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: NAKAJI Hiroyuki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 07:50:09 -0000 The following reply was made to PR ports/113355; it has been noted by GNATS. From: NAKAJI Hiroyuki To: bug-followup@FreeBSD.ORG Cc: Edwin Groothuis Subject: Re: ports/113355: japanese/emacs-emcws: use bsd.emacs.mk Date: Tue, 05 Jun 2007 16:24:54 +0900 I approve the patch. Thanks. >>>>> In <20070605070017.37BD916A4DE@hub.freebsd.org> >>>>> Edwin Groothuis wrote: > Maintainer of japanese/emacs-emcws, > Please note that PR ports/113355 has just been submitted. > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/113355 > -- > Edwin Groothuis > edwin@FreeBSD.org -- NAKAJI Hiroyuki From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 08:10:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2DDB16A46E for ; Tue, 5 Jun 2007 08:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8300013C487 for ; Tue, 5 Jun 2007 08:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l558AC64088427 for ; Tue, 5 Jun 2007 08:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l558ACpv088425; Tue, 5 Jun 2007 08:10:12 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 08:10:12 GMT Resent-Message-Id: <200706050810.l558ACpv088425@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Timur I. Bakeyev" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 66E2016A46B for ; Tue, 5 Jun 2007 08:08:35 +0000 (UTC) (envelope-from timur@gnu.org) Received: from mail.bat.ru (dzokonda.xs4all.nl [194.109.164.75]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC0F13C46A for ; Tue, 5 Jun 2007 08:08:34 +0000 (UTC) (envelope-from timur@gnu.org) Received: from timur.home.bat.ru (account timur [192.168.0.4] verified) by mail.bat.ru (CommuniGate Pro SMTP 4.2.7) with ESMTP id 382765 for FreeBSD-gnats-submit@freebsd.org; Tue, 05 Jun 2007 09:09:40 +0200 Message-Id: <1181027314.54966@timur.home.bat.ru> Date: Tue, 5 Jun 2007 09:08:34 +0200 From: "Timur I. Bakeyev" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: ports/113358: MAINTAINER-UPDATE: Update of net/samba3 to 3.0.25a version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 08:10:12 -0000 >Number: 113358 >Category: ports >Synopsis: MAINTAINER-UPDATE: Update of net/samba3 to 3.0.25a version >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 08:10:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Timur I. Bakeyev >Release: FreeBSD 6.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD 6.2-PRERELEASE #1: Fri Oct 27 01:16:38 CEST 2006 root@timur.home.bat.ru:/usr/src/sys/i386/compile/COMMON >Description: Major bug fixes included in Samba 3.0.25a are: o Missing supplementary Unix group membership when using "force group". o Premature expiration of domain user passwords when using a Samba domain controller. o Failure to open the Windows object picker against a server configured to use "security = domain". * Authentication failures when using security = server. Plus additional local fixes. >How-To-Repeat: >Fix: --- samba3.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/root/ports/ports/net/samba3/Makefile,v retrieving revision 1.158 diff -u -r1.158 Makefile --- Makefile 24 May 2007 07:54:25 -0000 1.158 +++ Makefile 5 Jun 2007 01:06:16 -0000 @@ -6,7 +6,7 @@ # PORTNAME= samba -PORTVERSION?= 3.0.25 +PORTVERSION?= 3.0.25a PORTREVISION?= 0 PORTEPOCH?= 1 CATEGORIES?= net @@ -76,7 +76,8 @@ DNSUPDATE "With dynamic DNS update" off \ EXP_MODULES "With experimental modules" off \ POPT "With system-wide POPT library" on \ - MAX_DEBUG "With maximum debuging" off + MAX_DEBUG "With maximum debuging" off \ + SMBTORTURE "With smbtorture" off .endif .include @@ -180,9 +181,10 @@ . if !defined(WITH_MAX_DEBUG) WANT_EXP_MODULES+= rpc_echo . endif +WANT_EXP_MODULES+= vfs_catia vfs_cacheprime vfs_commit . endif -WANT_EXP_MODULES!= ${ECHO_CMD} ${WANT_EXP_MODULES} | ${SED} -E 's/ +/,/g' -CONFIGURE_ARGS+= --with-shared-modules="${WANT_EXP_MODULES}" +USE_EXP_MODULES!= ${ECHO_CMD} ${WANT_EXP_MODULES} | ${SED} -E 's/ +/,/g' +CONFIGURE_ARGS+= --with-shared-modules="${USE_EXP_MODULES}" .endif .if defined(WITH_PAM_SMBPASS) @@ -218,6 +220,9 @@ .endif .if defined(WITH_DNSUPDATE) +. if !defined(WITH_ADS) +IGNORE= dynamic DNS updates require ADS support +. endif LIB_DEPENDS+= uuid.1:${PORTSDIR}/misc/e2fsprogs-libuuid CONFIGURE_ARGS+= --with-dnsupdate .else @@ -283,6 +288,12 @@ CONFIGURE_ARGS+= --without-ldap .endif +.if defined(WITH_SMBTORTURE) +PLIST_SUB+= SMBTORTURE="" +.else +PLIST_SUB+= SMBTORTURE="@comment " +.endif + .if !defined(SAMBA_SUBPORT) # Samba server itself MAN1= findsmb.1 log2pcap.1 nmblookup.1 ntlm_auth.1 profiles.1 \ @@ -290,8 +301,14 @@ smbget.1 smbstatus.1 smbtar.1 smbtree.1 testparm.1 vfstest.1 MAN5= lmhosts.5 smb.conf.5 smbgetrc.5 smbpasswd.5 MAN7= samba.7 -MAN8= net.8 nmbd.8 pdbedit.8 smbd.8 smbpasswd.8 smbspool.8 \ - swat.8 tdbbackup.8 tdbdump.8 +MAN8= eventlogadm.8 net.8 nmbd.8 pdbedit.8 smbd.8 smbpasswd.8 \ + smbspool.8 swat.8 tdbbackup.8 tdbdump.8 tdbtool.8 \ + idmap_nss.8 idmap_tdb.8 \ + vfs_audit.8 vfs_cap.8 vfs_default_quota.8 vfs_extd_audit.8 \ + vfs_fake_perms.8 vfs_full_audit.8 vfs_netatalk.8 \ + vfs_readahead.8 vfs_readonly.8 vfs_recycle.8 \ + vfs_shadow_copy.8 + .if defined(WITH_SMBSH) MAN1+= smbsh.1 .endif @@ -301,6 +318,34 @@ MAN8+= winbindd.8 .endif +.if defined(WITH_FAM_SUPPORT) +MAN8+= vfs_notify_fam.8 +.endif + +.if defined(SAMBA_WANT_LDAP) +MAN8+= idmap_ldap.8 +.endif + +.if !empty(WANT_EXP_MODULES:Midmap_ad) +MAN8+= idmap_ad.8 +.endif + +.if !empty(WANT_EXP_MODULES:Midmap_rid) +MAN8+= idmap_rid.8 +.endif + +.if !empty(WANT_EXP_MODULES:Mvfs_cacheprime) +MAN8+= vfs_cacheprime.8 +.endif + +.if !empty(WANT_EXP_MODULES:Mvfs_catia) +MAN8+= vfs_catia.8 +.endif + +.if !empty(WANT_EXP_MODULES:Mvfs_commit) +MAN8+= vfs_commit.8 +.endif + PLIST_SUB+= SAMBA_LOGDIR="${SAMBA_LOGDIR}" \ SAMBA_LOCKDIR="${SAMBA_LOCKDIR}" \ SAMBA_CONFDIR="${SAMBA_CONFDIR}" \ @@ -346,6 +391,17 @@ @${FIND} ${WRKDIR}/${DISTNAME} -type d | ${XARGS} ${CHMOD} u+w,a+rx @${FIND} ${WRKDIR}/${DISTNAME} -type f | ${XARGS} ${CHMOD} u+w,a+r +# This would speedup compilation for gcc 3.4(available in FreeBSD 5.2) and higher +.if ${OSVERSION} >= 502126 +pre-build: + cd ${WRKSRC} && ${MAKE} pch +.endif + +.if defined(WITH_SMBTORTURE) +post-build: + cd ${WRKSRC} && ${MAKE} smbtorture +.endif + pre-install: -@${FIND} "${SAMBA_MODULEDIR}" -type f 2>/dev/null | ${SORT} | ${SED} -E 's|^${PREFIX}/?||;' >> ${WRKDIR}/.PLIST.exclude @${CAT} ${PKGDIR}/pkg-plist > ${PLIST} @@ -382,6 +438,10 @@ ${INSTALL_PROGRAM} "${WRKSRC}/bin/pam_smbpass.so" "${SAMBA_LIBDIR}" @${ECHO_CMD} "${SAMBA_LIB}/pam_smbpass.so" >> ${TMPPLIST}; .endif +# smbtorture +.if defined(WITH_SMBTORTURE) + ${INSTALL_PROGRAM} "${WRKSRC}/bin/smbtorture" "${PREFIX}/bin" +.endif # smbwrapper.so .if defined(WITH_SMBSH) ${INSTALL_PROGRAM} "${WRKSRC}/bin/smbsh" "${PREFIX}/bin" Index: distinfo =================================================================== RCS file: /home/ncvs/root/ports/ports/net/samba3/distinfo,v retrieving revision 1.75 diff -u -r1.75 distinfo --- distinfo 24 May 2007 07:54:25 -0000 1.75 +++ distinfo 5 Jun 2007 01:06:16 -0000 @@ -1,3 +1,3 @@ -MD5 (samba-3.0.25.tar.gz) = 267bd56b178a1b1285a41ec4cc1b75f0 -SHA256 (samba-3.0.25.tar.gz) = c88981d1ad221583ebcc96bcda81fb8f957ea82fe1828444fdef523ccf07db73 -SIZE (samba-3.0.25.tar.gz) = 18234944 +MD5 (samba-3.0.25a.tar.gz) = cbd33bb5d904ccd8a294a4019743745d +SHA256 (samba-3.0.25a.tar.gz) = 12f4fa70b5131520b58f3b62450a2e304dd63efe2532905a0760c7f11a308470 +SIZE (samba-3.0.25a.tar.gz) = 18145636 Index: pkg-plist =================================================================== RCS file: /home/ncvs/root/ports/ports/net/samba3/pkg-plist,v retrieving revision 1.68 diff -u -r1.68 pkg-plist --- pkg-plist 24 May 2007 07:54:25 -0000 1.68 +++ pkg-plist 5 Jun 2007 01:06:16 -0000 @@ -22,6 +22,7 @@ bin/tdbtool bin/testparm %%SMBSH%%bin/smbsh +%%SMBTORTURE%%bin/smbtorture %%WINBIND%%bin/wbinfo sbin/smbd sbin/nmbd Index: files/patch-client_client.c =================================================================== RCS file: files/patch-client_client.c diff -N files/patch-client_client.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-client_client.c 5 Jun 2007 01:06:16 -0000 @@ -0,0 +1,20 @@ +--- client/client.c.orig Tue Jun 5 02:42:29 2007 ++++ client/client.c Tue Jun 5 02:54:19 2007 +@@ -2443,7 +2443,7 @@ + break; + case SMB_POSIX_ACL_GROUP: + uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2); +- d_printf("group:%u", uorg); ++ d_printf("group:%u:", uorg); + break; + case SMB_POSIX_ACL_MASK: + d_printf("mask::"); +@@ -2480,7 +2480,7 @@ + break; + case SMB_POSIX_ACL_GROUP: + uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2); +- d_printf("default:group:%u", uorg); ++ d_printf("default:group:%u:", uorg); + break; + case SMB_POSIX_ACL_MASK: + d_printf("default:mask::"); Index: files/patch-configure.in =================================================================== RCS file: /home/ncvs/root/ports/ports/net/samba3/files/patch-configure.in,v retrieving revision 1.20 diff -u -r1.20 patch-configure.in --- files/patch-configure.in 24 May 2007 07:54:25 -0000 1.20 +++ files/patch-configure.in 5 Jun 2007 01:06:16 -0000 @@ -1,6 +1,6 @@ ---- configure.in.orig Mon Apr 9 19:31:00 2007 -+++ configure.in Wed Apr 18 03:30:37 2007 -@@ -1040,6 +1040,21 @@ +--- configure.in.orig Wed May 23 17:29:20 2007 ++++ configure.in Mon Jun 4 03:22:42 2007 +@@ -1041,6 +1041,21 @@ AC_DEFINE(HAVE_SIG_ATOMIC_T_TYPE,1,[Whether we have the atomic_t variable type]) fi @@ -22,7 +22,22 @@ AC_CACHE_CHECK([for struct timespec type],samba_cv_struct_timespec, [ AC_TRY_COMPILE([ #include -@@ -5075,7 +5090,7 @@ +@@ -4033,10 +4048,10 @@ + + ################################################################ + # first test for Active Directory support being enabled +- #if test x"$with_ads_support" = x"no"; then +- # AC_MSG_ERROR(Active Directory support is required to enable DNS Update support) +- # with_dnsupdate_support=no +- #fi ++ if test x"$with_ads_support" = x"no"; then ++ AC_MSG_ERROR(Active Directory support is required to enable DNS Update support) ++ with_dnsupdate_support=no ++ fi + ################################################################## + # then test for uuid.h (necessary to generate unique DNS keynames + # (uuid.h is required for this test) +@@ -5107,7 +5122,7 @@ ################################################# # check for ACL support @@ -31,7 +46,7 @@ AC_ARG_WITH(acl-support, [ --with-acl-support Include ACL support (default=no)], [ case "$withval" in -@@ -5083,42 +5098,37 @@ +@@ -5115,43 +5130,37 @@ case "$host_os" in *sysv5*) @@ -77,11 +92,12 @@ - AC_MSG_RESULT(Using FreeBSD posix ACLs) - AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether FreeBSD POSIX ACLs are available]) - AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available]) +- default_static_modules="$default_static_modules vfs_posixacl" - ;; *linux*) AC_CHECK_LIB(attr,getxattr,[ACL_LIBS="$ACL_LIBS -lattr"]) AC_CHECK_LIB(acl,acl_get_file,[ACL_LIBS="$ACL_LIBS -lacl"]) -@@ -5139,7 +5149,7 @@ +@@ -5172,7 +5181,7 @@ LIBS=$acl_LIBS ]) if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then @@ -90,7 +106,7 @@ AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether POSIX ACLs are available]) AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[ acl_LIBS=$LIBS -@@ -5160,12 +5170,18 @@ +@@ -5193,12 +5202,18 @@ AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available]) fi fi @@ -113,7 +129,7 @@ AC_TRY_LINK([ #include #include -@@ -5178,20 +5194,20 @@ +@@ -5211,20 +5226,20 @@ [samba_cv_HAVE_POSIX_ACLS=yes], [samba_cv_HAVE_POSIX_ACLS=no]) LIBS=$acl_LIBS @@ -139,7 +155,7 @@ ], [samba_cv_HAVE_ACL_GET_PERM_NP=yes], [samba_cv_HAVE_ACL_GET_PERM_NP=no]) -@@ -5200,17 +5216,22 @@ +@@ -5233,17 +5248,22 @@ if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available]) fi Index: files/patch-lib_iconv.c =================================================================== RCS file: files/patch-lib_iconv.c diff -N files/patch-lib_iconv.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-lib_iconv.c 5 Jun 2007 01:06:16 -0000 @@ -0,0 +1,11 @@ +--- lib/iconv.c.orig Tue Jun 5 01:45:05 2007 ++++ lib/iconv.c Tue Jun 5 01:46:09 2007 +@@ -137,7 +137,7 @@ + char **outbuf, size_t *outbytesleft) + { + size_t ret = iconv((iconv_t)cd, +- (char **)inbuf, inbytesleft, ++ inbuf, inbytesleft, + outbuf, outbytesleft); + if (ret == (size_t)-1) { + int saved_errno = errno; Index: files/patch-lib_replace_libreplace_cc.m4 =================================================================== RCS file: files/patch-lib_replace_libreplace_cc.m4 diff -N files/patch-lib_replace_libreplace_cc.m4 --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-lib_replace_libreplace_cc.m4 5 Jun 2007 01:06:16 -0000 @@ -0,0 +1,13 @@ +--- lib/replace/libreplace_cc.m4.orig Thu Mar 1 05:54:23 2007 ++++ lib/replace/libreplace_cc.m4 Mon Jun 4 21:20:13 2007 +@@ -131,6 +131,10 @@ + AC_CHECK_TYPE(intptr_t, unsigned long long) + AC_CHECK_TYPE(ptrdiff_t, unsigned long long) + ++if test x"$ac_cv_type_intptr_t" = x"yes"; then ++ AC_DEFINE(HAVE_INTPTR_T,1,[Whether the host has intptr_t]) ++fi ++ + if test x"$ac_cv_type_long_long" != x"yes";then + AC_MSG_ERROR([LIBREPLACE needs type 'long long']) + fi Index: files/patch-modules_vfs_posixacl.c =================================================================== RCS file: files/patch-modules_vfs_posixacl.c diff -N files/patch-modules_vfs_posixacl.c --- files/patch-modules_vfs_posixacl.c 24 May 2007 07:54:25 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,15 +0,0 @@ ---- modules/vfs_posixacl.c.orig Wed Apr 18 11:51:22 2007 -+++ modules/vfs_posixacl.c Wed Apr 18 11:51:48 2007 -@@ -200,9 +200,9 @@ - return False; - } - ace->a_perm = 0; -- ace->a_perm |= (acl_get_perm(permset, ACL_READ) ? SMB_ACL_READ : 0); -- ace->a_perm |= (acl_get_perm(permset, ACL_WRITE) ? SMB_ACL_WRITE : 0); -- ace->a_perm |= (acl_get_perm(permset, ACL_EXECUTE) ? SMB_ACL_EXECUTE : 0); -+ ace->a_perm |= (acl_get_perm_np(permset, ACL_READ) ? SMB_ACL_READ : 0); -+ ace->a_perm |= (acl_get_perm_np(permset, ACL_WRITE) ? SMB_ACL_WRITE : 0); -+ ace->a_perm |= (acl_get_perm_np(permset, ACL_EXECUTE) ? SMB_ACL_EXECUTE : 0); - return True; - } - Index: files/patch-nsswitch_pam_winbind.c =================================================================== RCS file: /home/ncvs/root/ports/ports/net/samba3/files/patch-nsswitch_pam_winbind.c,v retrieving revision 1.4 diff -u -r1.4 patch-nsswitch_pam_winbind.c --- files/patch-nsswitch_pam_winbind.c 24 May 2007 07:54:25 -0000 1.4 +++ files/patch-nsswitch_pam_winbind.c 5 Jun 2007 01:06:16 -0000 @@ -1,5 +1,150 @@ ---- ./nsswitch/pam_winbind.c.orig Mon Apr 9 19:30:57 2007 -+++ ./nsswitch/pam_winbind.c Tue Apr 17 02:06:59 2007 +--- nsswitch/pam_winbind.c.orig Sat Apr 21 03:48:07 2007 ++++ nsswitch/pam_winbind.c Mon Jun 4 02:56:34 2007 +@@ -14,13 +14,13 @@ + + #define _PAM_LOG_FUNCTION_ENTER(function, pamh, ctrl, flags) \ + do { \ +- _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] ENTER: " function " (flags: 0x%04x)", (uint32) pamh, flags); \ ++ _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%p] ENTER: " function " (flags: 0x%04x)", pamh, flags); \ + _pam_log_state(pamh, ctrl); \ + } while (0) + + #define _PAM_LOG_FUNCTION_LEAVE(function, pamh, ctrl, retval) \ + do { \ +- _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] LEAVE: " function " returning %d", (uint32) pamh, retval); \ ++ _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%p] LEAVE: " function " returning %d", pamh, retval); \ + _pam_log_state(pamh, ctrl); \ + } while (0) + +@@ -32,16 +32,16 @@ + * Work around the pam API that has functions with void ** as parameters. + * These lead to strict aliasing warnings with gcc. + */ +-static int _pam_get_item(const pam_handle_t *pamh, int item_type, ++static int _pam_get_item(pam_handle_t *pamh, int item_type, + const void *_item) + { + const void **item = (const void **)_item; + return pam_get_item(pamh, item_type, item); + } +-static int _pam_get_data(const pam_handle_t *pamh, +- const char *module_data_name, const void *_data) ++static int _pam_get_data(pam_handle_t *pamh, ++ const char *module_data_name, void *_data) + { +- const void **data = (const void **)_data; ++ void **data = (void **)_data; + return pam_get_data(pamh, module_data_name, data); + } + +@@ -53,7 +53,7 @@ + pam_vsyslog(pamh, err, format, args); + } + #else +-static void _pam_log_int(const pam_handle_t *pamh, int err, const char *format, va_list args) ++static void _pam_log_int(pam_handle_t *pamh, int err, const char *format, va_list args) + { + char *format2 = NULL; + const char *service; +@@ -78,8 +78,8 @@ + return on(ctrl, WINBIND_SILENT); + } + +-static void _pam_log(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...) PRINTF_ATTRIBUTE(4,5); +-static void _pam_log(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...) ++static void _pam_log(pam_handle_t *pamh, int ctrl, int err, const char *format, ...) PRINTF_ATTRIBUTE(4,5); ++static void _pam_log(pam_handle_t *pamh, int ctrl, int err, const char *format, ...) + { + va_list args; + +@@ -118,8 +118,8 @@ + return _pam_log_is_debug_enabled(ctrl); + } + +-static void _pam_log_debug(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...) PRINTF_ATTRIBUTE(4,5); +-static void _pam_log_debug(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...) ++static void _pam_log_debug(pam_handle_t *pamh, int ctrl, int err, const char *format, ...) PRINTF_ATTRIBUTE(4,5); ++static void _pam_log_debug(pam_handle_t *pamh, int ctrl, int err, const char *format, ...) + { + va_list args; + +@@ -132,20 +132,20 @@ + va_end(args); + } + +-static void _pam_log_state_datum(const pam_handle_t *pamh, int ctrl, int item_type, const char *key, int is_string) ++static void _pam_log_state_datum(pam_handle_t *pamh, int ctrl, int item_type, const char *key, int is_string) + { +- const void *data = NULL; ++ void *data = NULL; + if (item_type != 0) { +- pam_get_item(pamh, item_type, &data); ++ _pam_get_item(pamh, item_type, &data); + } else { + pam_get_data(pamh, key, &data); + } + if (data != NULL) { + const char *type = (item_type != 0) ? "ITEM" : "DATA"; + if (is_string != 0) { +- _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] STATE: %s(%s) = \"%s\" (0x%08x)", (uint32) pamh, type, key, (const char *) data, (uint32) data); ++ _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%p] STATE: %s(%s) = \"%s\" (0x%p)", pamh, type, key, (const char *) data, data); + } else { +- _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] STATE: %s(%s) = 0x%08x", (uint32) pamh, type, key, (uint32) data); ++ _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%p] STATE: %s(%s) = 0x%p", pamh, type, key, data); + } + } + } +@@ -171,7 +171,7 @@ + #define _PAM_LOG_STATE_ITEM_PASSWORD(pamh, ctrl, item_type) \ + _pam_log_state_datum(pamh, ctrl, item_type, #item_type, _LOG_PASSWORD_AS_STRING) + +-static void _pam_log_state(const pam_handle_t *pamh, int ctrl) ++static void _pam_log_state(pam_handle_t *pamh, int ctrl) + { + if (!_pam_log_is_debug_state_enabled(ctrl)) { + return; +@@ -202,7 +202,7 @@ + _PAM_LOG_STATE_DATA_POINTER(pamh, ctrl, PAM_WINBIND_PWD_LAST_SET); + } + +-static int _pam_parse(const pam_handle_t *pamh, int flags, int argc, const char **argv, dictionary **result_d) ++static int _pam_parse(pam_handle_t *pamh, int flags, int argc, const char **argv, dictionary **result_d) + { + int ctrl = 0; + const char *config_file = NULL; +@@ -313,7 +313,7 @@ + { + int ctrl = _pam_parse(pamh, 0, 0, NULL, NULL); + if (_pam_log_is_debug_state_enabled(ctrl)) { +- _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] CLEAN: cleaning up PAM data 0x%08x (error_status = %d)", (uint32) pamh, (uint32) data, error_status); ++ _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%p] CLEAN: cleaning up PAM data 0x%p (error_status = %d)", pamh, data, error_status); + } + SAFE_FREE(data); + } +@@ -1441,7 +1441,7 @@ + return PAM_SUCCESS; + } + +-const char *get_conf_item_string(const pam_handle_t *pamh, ++const char *get_conf_item_string(pam_handle_t *pamh, + int argc, + const char **argv, + int ctrl, +@@ -1490,12 +1490,12 @@ + return parm_opt; + } + +-const char *get_krb5_cc_type_from_config(const pam_handle_t *pamh, int argc, const char **argv, int ctrl, dictionary *d) ++const char *get_krb5_cc_type_from_config(pam_handle_t *pamh, int argc, const char **argv, int ctrl, dictionary *d) + { + return get_conf_item_string(pamh, argc, argv, ctrl, d, "krb5_ccache_type", WINBIND_KRB5_CCACHE_TYPE); + } + +-const char *get_member_from_config(const pam_handle_t *pamh, int argc, const char **argv, int ctrl, dictionary *d) ++const char *get_member_from_config(pam_handle_t *pamh, int argc, const char **argv, int ctrl, dictionary *d) + { + const char *ret = NULL; + ret = get_conf_item_string(pamh, argc, argv, ctrl, d, "require_membership_of", WINBIND_REQUIRED_MEMBERSHIP); @@ -1735,7 +1735,7 @@ ret = PAM_USER_UNKNOWN; goto out; Index: files/patch-nsswitch_winbindd.c =================================================================== RCS file: files/patch-nsswitch_winbindd.c diff -N files/patch-nsswitch_winbindd.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-nsswitch_winbindd.c 5 Jun 2007 01:06:16 -0000 @@ -0,0 +1,12 @@ +--- nsswitch/winbindd.c.orig Sun Apr 22 01:00:32 2007 ++++ nsswitch/winbindd.c Mon Jun 4 02:59:13 2007 +@@ -303,6 +303,9 @@ + if (state->mem_ctx == NULL) + return; + ++ /* Remember who asked us. */ ++ state->pid = state->request.pid; ++ + /* Process command */ + + for (table = dispatch_table; table->fn; table++) { Index: files/patch-python_setup.py =================================================================== RCS file: files/patch-python_setup.py diff -N files/patch-python_setup.py --- files/patch-python_setup.py 24 May 2007 07:54:25 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- python/setup.py.orig Tue May 15 13:41:41 2007 -+++ python/setup.py Tue May 15 13:43:03 2007 -@@ -67,6 +67,8 @@ - libraries.append(lib[2:]) - elif lib[0:8] == ("-pthread"): - pass # Skip linker flags -+ elif lib[0:4] == ("-pie"): -+ pass # Skip linker flags - elif lib[0:2] == "-L": - library_dirs.append(lib[2:]) - elif lib[0:2] in ("-W","-s"): Index: files/patch-smbd_sec_ctx.c =================================================================== RCS file: files/patch-smbd_sec_ctx.c diff -N files/patch-smbd_sec_ctx.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-smbd_sec_ctx.c 5 Jun 2007 01:06:16 -0000 @@ -0,0 +1,63 @@ +--- smbd/sec_ctx.c.orig Thu Mar 1 05:54:08 2007 ++++ smbd/sec_ctx.c Tue Jun 5 01:16:32 2007 +@@ -192,7 +192,7 @@ + + if (sec_ctx_stack_ndx == MAX_SEC_CTX_DEPTH) { + DEBUG(0, ("Security context stack overflow!\n")); +- smb_panic("Security context stack overflow!\n"); ++ smb_panic("Security context stack overflow!"); + } + + /* Store previous user context */ +@@ -234,7 +234,9 @@ + void set_sec_ctx(uid_t uid, gid_t gid, int ngroups, gid_t *groups, NT_USER_TOKEN *token) + { + struct sec_ctx *ctx_p = &sec_ctx_stack[sec_ctx_stack_ndx]; +- ++#ifdef HAVE_SETGROUPS ++ gid_t *new_groups = NULL; ++#endif + /* Set the security context */ + + DEBUG(3, ("setting sec ctx (%u, %u) - sec_ctx_stack_ndx = %d\n", +@@ -246,12 +248,20 @@ + gain_root(); + + #ifdef HAVE_SETGROUPS +- sys_setgroups(ngroups, groups); ++ if (!(new_groups = SMB_MALLOC_ARRAY(gid_t, ngroups+1))) { ++ smb_panic("malloc for groups failed"); ++ } ++ new_groups[0] = gid; ++ if(ngroups) { ++ memcpy(&new_groups[1], groups, sizeof(gid_t) * ngroups); ++ } ++ sys_setgroups(ngroups+1, new_groups); ++ SAFE_FREE(new_groups); + #endif + + ctx_p->ut.ngroups = ngroups; +- + SAFE_FREE(ctx_p->ut.groups); ++ + if (token && (token == ctx_p->token)) { + smb_panic("DUPLICATE_TOKEN"); + } +@@ -262,7 +272,7 @@ + ctx_p->ut.groups = (gid_t *)memdup(groups, + sizeof(gid_t) * ngroups); + if (!ctx_p->ut.groups) { +- smb_panic("memdup failed"); ++ smb_panic("memdup for groups failed"); + } + } else { + ctx_p->ut.groups = NULL; +@@ -315,7 +325,7 @@ + + if (sec_ctx_stack_ndx == 0) { + DEBUG(0, ("Security context stack underflow!\n")); +- smb_panic("Security context stack underflow!\n"); ++ smb_panic("Security context stack underflow!"); + } + + ctx_p = &sec_ctx_stack[sec_ctx_stack_ndx]; Index: files/patch-utils_ntlm_auth.c =================================================================== RCS file: files/patch-utils_ntlm_auth.c diff -N files/patch-utils_ntlm_auth.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-utils_ntlm_auth.c 5 Jun 2007 01:06:16 -0000 @@ -0,0 +1,295 @@ +--- utils/ntlm_auth.c.orig Sun Jun 3 04:28:29 2007 ++++ utils/ntlm_auth.c Sun Jun 3 04:47:26 2007 +@@ -689,8 +689,8 @@ + NTSTATUS nt_status; + + if (strlen(buf) < 2) { +- DEBUG(1, ("NTLMSSP query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf)); ++ x_fprintf(x_stdout, "BH NTLMSSP query [%s] invalid\n", buf); + return; + } + +@@ -714,7 +714,7 @@ + + if (opt_password == NULL) { + DEBUG(1, ("Out of memory\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Out of memory\n"); + data_blob_free(&request); + return; + } +@@ -741,14 +741,14 @@ + x_fprintf(x_stdout, "GK %s\n", key64?key64:""); + SAFE_FREE(key64); + } else { +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH missing NTLMSSP session key\n"); + } + + data_blob_free(&request); + return; + } else { +- DEBUG(1, ("NTLMSSP query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf)); ++ x_fprintf(x_stdout, "BH NTLMSSP query [%s] invalid\n", buf); + return; + } + +@@ -817,8 +817,8 @@ + } + + if (strlen(buf) < 2) { +- DEBUG(1, ("NTLMSSP query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf)); ++ x_fprintf(x_stdout, "BH NTLMSSP query [%s] invalid\n", buf); + return; + } + +@@ -842,7 +842,7 @@ + + if (opt_password == NULL) { + DEBUG(1, ("Out of memory\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Out of memory\n"); + data_blob_free(&request); + return; + } +@@ -892,14 +892,14 @@ + SAFE_FREE(key64); + } + else { +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH missing session key\n"); + } + + data_blob_free(&request); + return; + } else { +- DEBUG(1, ("NTLMSSP query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf)); ++ x_fprintf(x_stdout, "BH NTLMSSP query [%s] invalid\n", buf); + return; + } + +@@ -1027,7 +1027,7 @@ + + if (len == -1) { + DEBUG(1, ("Could not write SPNEGO data blob\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Could not write SPNEGO data blob\n"); + return; + } + +@@ -1057,8 +1057,8 @@ + pstring reply_argument; + + if (strlen(buf) < 2) { +- DEBUG(1, ("SPENGO query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("SPNEGO query [%s] invalid\n", buf)); ++ x_fprintf(x_stdout, "BH SPNEGO query [%s] invalid\n", buf); + return; + } + +@@ -1068,8 +1068,8 @@ + } else if (strncmp(buf, "KK", 2) == 0) { + + } else { +- DEBUG(1, ("SPENGO query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("SPNEGO query [%s] invalid\n", buf)); ++ x_fprintf(x_stdout, "BH SPNEGO query [%s] invalid\n", buf); + return; + } + +@@ -1086,7 +1086,7 @@ + + if (strlen(buf) <= 3) { + DEBUG(1, ("GSS-SPNEGO query [%s] invalid\n", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH GSS-SPENEGO query [%s] invalid\n", buf); + return; + } + +@@ -1096,7 +1096,7 @@ + + if (len == -1) { + DEBUG(1, ("GSS-SPNEGO query [%s] invalid", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH GSS-SPNEGO query [%s] invalid", buf); + return; + } + +@@ -1107,8 +1107,8 @@ + + if ( (request.negTokenInit.mechTypes == NULL) || + (request.negTokenInit.mechTypes[0] == NULL) ) { +- DEBUG(1, ("Client did not offer any mechanism")); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("Client did not offer any mechanism\n")); ++ x_fprintf(x_stdout, "BH Client did not offer any mechanism\n"); + return; + } + +@@ -1116,15 +1116,15 @@ + if (strcmp(request.negTokenInit.mechTypes[0], OID_NTLMSSP) == 0) { + + if ( request.negTokenInit.mechToken.data == NULL ) { +- DEBUG(1, ("Client did not provide NTLMSSP data\n")); +- x_fprintf(x_stdout, "BH\n"); ++ DEBUG(1, ("Client did not provide NTLMSSP data\n")); ++ x_fprintf(x_stdout, "BH Client did not provide NTLMSSP data\n"); + return; + } + + if ( ntlmssp_state != NULL ) { + DEBUG(1, ("Client wants a new NTLMSSP challenge, but " + "already got one\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Client wants a new NTLMSSP challenge, but already got one\n"); + ntlmssp_end(&ntlmssp_state); + return; + } +@@ -1157,7 +1157,7 @@ + + if ( request.negTokenInit.mechToken.data == NULL ) { + DEBUG(1, ("Client did not provide Kerberos data\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Client did not provide Kerberos data\n"); + return; + } + +@@ -1183,7 +1183,7 @@ + if (domain == NULL) { + DEBUG(1, ("Did not get a valid principal " + "from ads_verify_ticket\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Did not get a valid principal from ads_verify_ticket\n"); + return; + } + +@@ -1206,13 +1206,14 @@ + is the only one we support that sends this stuff */ + DEBUG(1, ("Got a negTokenTarg for something non-NTLMSSP: %s\n", + request.negTokenTarg.supportedMech)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Got a negTokenTarg for something non-NTLMSSP: %s\n", ++ request.negTokenTarg.supportedMech); + return; + } + + if (request.negTokenTarg.responseToken.data == NULL) { + DEBUG(1, ("Got a negTokenTarg without a responseToken!\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Got a negTokenTarg without a responseToken!\n"); + return; + } + +@@ -1256,7 +1257,7 @@ + + if (len == -1) { + DEBUG(1, ("Could not write SPNEGO data blob\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Could not write SPNEGO data blob\n"); + return; + } + +@@ -1346,7 +1347,7 @@ + + if (client_ntlmssp_state == NULL) { + DEBUG(1, ("Got NTLMSSP tArg without a client state\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Got NTLMSSP tArg without a client state\n"); + return; + } + +@@ -1370,7 +1371,9 @@ + DEBUG(1, ("Expected MORE_PROCESSING_REQUIRED from " + "ntlmssp_client_update, got: %s\n", + nt_errstr(status))); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Expected MORE_PROCESSING_REQUIRED from " ++ "ntlmssp_client_update, got: %s\n", ++ nt_errstr(status)); + data_blob_free(&request); + ntlmssp_end(&client_ntlmssp_state); + return; +@@ -1486,7 +1489,7 @@ + switch (spnego.negTokenTarg.negResult) { + case SPNEGO_ACCEPT_INCOMPLETE: + DEBUG(1, ("Got a Kerberos negTokenTarg with ACCEPT_INCOMPLETE\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Got a Kerberos negTokenTarg with ACCEPT_INCOMPLETE\n"); + break; + case SPNEGO_ACCEPT_COMPLETED: + DEBUG(10, ("Accept completed\n")); +@@ -1518,7 +1521,7 @@ + + if (strlen(buf) <= 3) { + DEBUG(1, ("SPNEGO query [%s] too short\n", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH SPNEGO query [%s] too short\n", buf); + return; + } + +@@ -1532,7 +1535,7 @@ + + if (opt_password == NULL) { + DEBUG(1, ("Out of memory\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Out of memory\n"); + data_blob_free(&request); + return; + } +@@ -1546,7 +1549,7 @@ + (strncmp(buf, "AF ", 3) != 0) && + (strncmp(buf, "NA ", 3) != 0) ) { + DEBUG(1, ("SPNEGO request [%s] invalid\n", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH SPNEGO request [%s] invalid\n", buf); + data_blob_free(&request); + return; + } +@@ -1559,7 +1562,7 @@ + + if (len == -1) { + DEBUG(1, ("Could not read SPNEGO data for [%s]\n", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Could not read SPNEGO data for [%s]\n", buf); + return; + } + +@@ -1588,7 +1591,7 @@ + } + + DEBUG(1, ("Server offered no compatible mechanism\n")); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Server offered no compatible mechanism\n"); + return; + } + +@@ -1610,7 +1613,9 @@ + DEBUG(1, ("Got a negTokenTarg with no mech and an " + "unknown negResult: %d\n", + spnego.negTokenTarg.negResult)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Got a negTokenTarg with no mech and an " ++ "unknown negResult: %d\n", ++ spnego.negTokenTarg.negResult); + } + + ntlmssp_end(&client_ntlmssp_state); +@@ -1634,7 +1639,7 @@ + } + + DEBUG(1, ("Got an SPNEGO token I could not handle [%s]!\n", buf)); +- x_fprintf(x_stdout, "BH\n"); ++ x_fprintf(x_stdout, "BH Got an SPNEGO token I could not handle [%s]!\n", buf); + return; + + out: Index: files/samba.in =================================================================== RCS file: /home/ncvs/root/ports/ports/net/samba3/files/samba.in,v retrieving revision 1.5 diff -u -r1.5 samba.in --- files/samba.in 7 Feb 2007 08:40:44 -0000 1.5 +++ files/samba.in 5 Jun 2007 01:06:16 -0000 @@ -135,7 +135,7 @@ debug "reloading ${name} configuration" echo "Reloading ${name}." # XXX: Hack with pid_extra - "${smbcontrol_command}" "${name}${pid_extra}" 'reload-config' ${command_args} + "${smbcontrol_command}" "${name}${pid_extra}" 'reload-config' ${command_args} >/dev/null 2>&1 fi fi done --- samba3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 08:28:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F09B116A400; Tue, 5 Jun 2007 08:28:12 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C8D9413C45A; Tue, 5 Jun 2007 08:28:12 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from freefall.freebsd.org (mm@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l558SC5W090144; Tue, 5 Jun 2007 08:28:12 GMT (envelope-from mm@freefall.freebsd.org) Received: (from mm@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l558SCTH090140; Tue, 5 Jun 2007 08:28:12 GMT (envelope-from mm) Date: Tue, 5 Jun 2007 08:28:12 GMT From: Martin Matuska Message-Id: <200706050828.l558SCTH090140@freefall.freebsd.org> To: mm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org Cc: Subject: Re: ports/113344: [MAINTAINER] sysutils/lsof: remove obsolete patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 08:28:13 -0000 Synopsis: [MAINTAINER] sysutils/lsof: remove obsolete patch Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: mm Responsible-Changed-When: Tue Jun 5 08:26:39 UTC 2007 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=113344 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 09:48:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF2E316A46C; Tue, 5 Jun 2007 09:48:13 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B3F9213C44C; Tue, 5 Jun 2007 09:48:13 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from freefall.freebsd.org (alepulver@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l559mDNZ000270; Tue, 5 Jun 2007 09:48:13 GMT (envelope-from alepulver@freefall.freebsd.org) Received: (from alepulver@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l559mD6L000265; Tue, 5 Jun 2007 09:48:13 GMT (envelope-from alepulver) Date: Tue, 5 Jun 2007 09:48:13 GMT From: Alejandro Pulver Message-Id: <200706050948.l559mD6L000265@freefall.freebsd.org> To: alepulver@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, alepulver@FreeBSD.org Cc: Subject: Re: ports/113184: legacydoom on FreeBSD 6.2 not creating ~/.doomlegacy properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 09:48:14 -0000 Synopsis: legacydoom on FreeBSD 6.2 not creating ~/.doomlegacy properly Responsible-Changed-From-To: freebsd-ports-bugs->alepulver Responsible-Changed-By: alepulver Responsible-Changed-When: Tue Jun 5 09:48:13 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113184 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 10:05:38 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06A4416A468; Tue, 5 Jun 2007 10:05:38 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.freebsd.org (Postfix) with ESMTP id BD41F13C465; Tue, 5 Jun 2007 10:05:37 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 472511CD11; Tue, 5 Jun 2007 12:05:34 +0200 (CEST) Date: Tue, 5 Jun 2007 12:05:34 +0200 From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20070605100534.GM45756@hoeg.nl> References: <20070521173705.4952B1CD46@palm.hoeg.nl> <200705211740.l4LHeEWJ082261@freefall.freebsd.org> <20070604133814.GE45756@hoeg.nl> <20070605095457.GR38419@fasolt.home.paeps.cx> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8c07nsHwQobhlezh" Content-Disposition: inline In-Reply-To: <20070605095457.GR38419@fasolt.home.paeps.cx> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Subject: Re: ports/112838: x11-wm/ion-3ds: bump, make fetchable, rename, remove old cruft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 10:05:38 -0000 --8c07nsHwQobhlezh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Philip, * Philip Paeps wrote: > On 2007-06-04 15:38:14 (+0200), Ed Schouten wrote: > > As I've read online the license of Ion3 has turned sour. The author has > > ammended the license to the source with new clauses which enforces rules > > which the FreeBSD package model can't guarantee, including a rule that > > forces all packages to be beyond a version of a certain age. > >=20 > > Please remove the x11-wm/ion-3ds port from the tree. Under such harsh > > conditions I'm not willing to maintain a port for this window manager. >=20 > I've grabbed maintainership. I like ion, despite the licence. ;-) >=20 > The licence change was made mainly to prevent "ordinary users" from getti= ng an > ancient version when they ask their package manager for "ion". It is mai= nly > aimed at certain Linux distributions who peg their package managers to th= eir > releases and never update packages on releases. >=20 > Since the ports tree is not tagged, this is not really a problem for us. = When > people ask for "ion" from the ports (ion-3, actually), they'll get the la= test > version -- provided the maintainer is somewhat alive, which I'll do my be= st to > be -- which is precisely what the licence wants. I guess that problem still persists if someone on a FreeBSD 5.x box runs `pkg_add -r ion-3ds', because then the user gets the outdated package. But IANAL ;-) > But never mind all that. I'll happily maintain the port for you. I'll t= ry to > be as good a parent as you've been. :-) Thanks! Be sure to look at the patch I in the PR. I guess you can commit it without the Xinerama bits in it; maybe you could introduce a flag called WITH_FEATURES_THAT_REMOVE_SUPPORT that enables all options that void support in some way... Good luck! :) --=20 Ed Schouten WWW: http://g-rave.nl/ --8c07nsHwQobhlezh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGZTVu52SDGA2eCwURAoYPAJ9XXiWZ3xNqpQAPCxZcDF3MHRYMFwCfTkPx LmUhp+7+1VCKRUb6vBbzrjo= =rJGX -----END PGP SIGNATURE----- --8c07nsHwQobhlezh-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 10:23:40 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5156316A421; Tue, 5 Jun 2007 10:23:40 +0000 (UTC) (envelope-from philip@paeps.cx) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.freebsd.org (Postfix) with ESMTP id E536713C447; Tue, 5 Jun 2007 10:23:39 +0000 (UTC) (envelope-from philip@paeps.cx) Received: from wotan.home.paeps.cx (wotan.home.paeps.cx [IPv6:2001:6f8:32f:10:a00:20ff:fe9b:138c]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "wotan.home.paeps.cx", Issuer "NixSys CA" (verified OK)) by gateway.nixsys.be (Postfix) with ESMTP id CE7E7407A; Tue, 5 Jun 2007 11:55:00 +0200 (CEST) Received: from fasolt.home.paeps.cx (fasolt.home.paeps.cx [IPv6:2001:6f8:32f:10:214:5eff:feca:2496]) by wotan.home.paeps.cx (Postfix) with ESMTP id A34216200; Tue, 5 Jun 2007 11:54:58 +0200 (CEST) Received: from fasolt.home.paeps.cx (philip@localhost [127.0.0.1]) by fasolt.home.paeps.cx (8.14.1/8.14.1) with ESMTP id l559swnE007496; Tue, 5 Jun 2007 11:54:58 +0200 (CEST) (envelope-from philip@fasolt.home.paeps.cx) Received: (from philip@localhost) by fasolt.home.paeps.cx (8.14.1/8.14.1/Submit) id l559svBS007495; Tue, 5 Jun 2007 11:54:57 +0200 (CEST) (envelope-from philip) Date: Tue, 5 Jun 2007 11:54:57 +0200 From: Philip Paeps To: Ed Schouten Message-ID: <20070605095457.GR38419@fasolt.home.paeps.cx> Mail-Followup-To: Ed Schouten , FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <20070521173705.4952B1CD46@palm.hoeg.nl> <200705211740.l4LHeEWJ082261@freefall.freebsd.org> <20070604133814.GE45756@hoeg.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20070604133814.GE45756@hoeg.nl> X-PGP-Fingerprint: 356B AE02 4763 F739 2FA2 E438 2649 E628 C5D3 4D05 X-Date: Today is Sweetmorn, the 10th day of Confusion in the YOLD 3173 X-Date-in-France: Septidi 17 Prairial CCXV, jour du sureau X-Date-in-Rome: Nonas Iunias MMDCCLX ab Urbe Condida X-Phase-of-Moon: The Moon is Waning Gibbous (82% of Full) X-Message-Flag: Get a proper mailclient! Organization: Happily Disorganized User-Agent: Mutt/1.5.15 (2007-04-06) Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/112838: x11-wm/ion-3ds: bump, make fetchable, rename, remove old cruft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 10:23:40 -0000 On 2007-06-04 15:38:14 (+0200), Ed Schouten wrote: > As I've read online the license of Ion3 has turned sour. The author has > ammended the license to the source with new clauses which enforces rules > which the FreeBSD package model can't guarantee, including a rule that > forces all packages to be beyond a version of a certain age. > > Please remove the x11-wm/ion-3ds port from the tree. Under such harsh > conditions I'm not willing to maintain a port for this window manager. I've grabbed maintainership. I like ion, despite the licence. ;-) The licence change was made mainly to prevent "ordinary users" from getting an ancient version when they ask their package manager for "ion". It is mainly aimed at certain Linux distributions who peg their package managers to their releases and never update packages on releases. Since the ports tree is not tagged, this is not really a problem for us. When people ask for "ion" from the ports (ion-3, actually), they'll get the latest version -- provided the maintainer is somewhat alive, which I'll do my best to be -- which is precisely what the licence wants. But never mind all that. I'll happily maintain the port for you. I'll try to be as good a parent as you've been. :-) - Philip -- Philip Paeps Please don't Cc me, I am philip@freebsd.org subscribed to the list. BOFH Excuse #166: /pub/lunch From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 10:31:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0379B16A473; Tue, 5 Jun 2007 10:31:10 +0000 (UTC) (envelope-from ade@lovett.com) Received: from mail.lovett.com (foo.lovett.com [67.134.38.158]) by mx1.freebsd.org (Postfix) with ESMTP id D2AED13C469; Tue, 5 Jun 2007 10:31:09 +0000 (UTC) (envelope-from ade@lovett.com) Received: from inferno.canal.lovett.com ([172.16.32.23]:56341) by mail.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvWJh-00024f-H4; Tue, 05 Jun 2007 03:31:09 -0700 In-Reply-To: References: <200705241023.l4OANKHT047366@freefall.freebsd.org> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Ade Lovett Date: Tue, 5 Jun 2007 03:31:12 -0700 To: freebsd-ports-bugs@FreeBSD.org X-Mailer: Apple Mail (2.752.3) Sender: ade@lovett.com Cc: des@FreeBSD.org, Ade Lovett , portmgr@FreeBSD.org Subject: Re: ports/112930: Autotools. The Next Step. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 10:31:10 -0000 Re-synced patch once again, hopefully the last time (heh!) before going for an -exp run. -aDe http://freebsd.lovett.com/patches/autotools-20070605.diff MD5: 2de89bea3d36247b758c05b888d5a381 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 10:34:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C176716A468; Tue, 5 Jun 2007 10:34:14 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2780D13C44C; Tue, 5 Jun 2007 10:34:14 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from freefall.freebsd.org (tdb@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55AYEPg006012; Tue, 5 Jun 2007 10:34:14 GMT (envelope-from tdb@freefall.freebsd.org) Received: (from tdb@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55AYEGm006008; Tue, 5 Jun 2007 10:34:14 GMT (envelope-from tdb) Date: Tue, 5 Jun 2007 10:34:14 GMT From: Tim Bishop Message-Id: <200706051034.l55AYEGm006008@freefall.freebsd.org> To: tdb@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tdb@FreeBSD.org Cc: Subject: Re: ports/113358: MAINTAINER-UPDATE: Update of net/samba3 to 3.0.25a version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 10:34:14 -0000 Synopsis: MAINTAINER-UPDATE: Update of net/samba3 to 3.0.25a version Responsible-Changed-From-To: freebsd-ports-bugs->tdb Responsible-Changed-By: tdb Responsible-Changed-When: Tue Jun 5 10:34:13 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113358 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 10:46:41 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F24E516A400; Tue, 5 Jun 2007 10:46:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C88DE13C45E; Tue, 5 Jun 2007 10:46:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55AkfMv006918; Tue, 5 Jun 2007 10:46:41 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55AkfOa006914; Tue, 5 Jun 2007 10:46:41 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 10:46:41 GMT From: Martin Wilke Message-Id: <200706051046.l55AkfOa006914@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113360: [MAINTAINER] update games/mangos to 3796 Free dedicated-server for World of Warcraft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 10:46:42 -0000 Synopsis: [MAINTAINER] update games/mangos to 3796 Free dedicated-server for World of Warcraft Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 10:46:41 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113360 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 11:09:00 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1518516A469; Tue, 5 Jun 2007 11:09:00 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DDFA213C465; Tue, 5 Jun 2007 11:08:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55B8xr4008837; Tue, 5 Jun 2007 11:08:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55B8xfG008833; Tue, 5 Jun 2007 11:08:59 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 11:08:59 GMT From: Edwin Groothuis Message-Id: <200706051108.l55B8xfG008833@freefall.freebsd.org> To: nakaji@jp.freebsd.org, sa2c@sa2c.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113355: japanese/emacs-emcws: use bsd.emacs.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 11:09:00 -0000 Synopsis: japanese/emacs-emcws: use bsd.emacs.mk State-Changed-From-To: feedback->open State-Changed-By: edwin State-Changed-When: Tue Jun 5 11:08:48 UTC 2007 State-Changed-Why: maintainer approved http://www.freebsd.org/cgi/query-pr.cgi?pr=113355 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 11:12:47 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFCEC16A421; Tue, 5 Jun 2007 11:12:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C3D4F13C45A; Tue, 5 Jun 2007 11:12:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55BCl2H009828; Tue, 5 Jun 2007 11:12:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55BCl7i009824; Tue, 5 Jun 2007 11:12:47 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 11:12:47 GMT From: Edwin Groothuis Message-Id: <200706051112.l55BCl7i009824@freefall.freebsd.org> To: mva@sysfault.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113346: [Patch]: audio/linux-sdl_mixer distinfo update for src rpm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 11:12:48 -0000 Synopsis: [Patch]: audio/linux-sdl_mixer distinfo update for src rpm State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Tue Jun 5 11:12:39 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113346 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 11:12:55 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6178E16A46B; Tue, 5 Jun 2007 11:12:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 36C8D13C487; Tue, 5 Jun 2007 11:12:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55BCtrS009862; Tue, 5 Jun 2007 11:12:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55BCths009858; Tue, 5 Jun 2007 11:12:55 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 11:12:55 GMT From: Edwin Groothuis Message-Id: <200706051112.l55BCths009858@freefall.freebsd.org> To: mva@sysfault.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113347: [Patch]: audio/linux-mikmod distinfo update for src rpm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 11:12:55 -0000 Synopsis: [Patch]: audio/linux-mikmod distinfo update for src rpm State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Tue Jun 5 11:12:39 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113346 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Tue Jun 5 11:12:39 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113347 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 11:20:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53A8116A46B for ; Tue, 5 Jun 2007 11:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 120F813C4CA for ; Tue, 5 Jun 2007 11:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55BK2Ee009964 for ; Tue, 5 Jun 2007 11:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55BK23o009963; Tue, 5 Jun 2007 11:20:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 11:20:02 GMT Resent-Message-Id: <200706051120.l55BK23o009963@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Philip Paeps Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CED6016A41F for ; Tue, 5 Jun 2007 11:15:30 +0000 (UTC) (envelope-from philip@paeps.cx) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.freebsd.org (Postfix) with ESMTP id 7F1B813C45A for ; Tue, 5 Jun 2007 11:15:30 +0000 (UTC) (envelope-from philip@paeps.cx) Received: from wotan.home.paeps.cx (wotan.home.paeps.cx [IPv6:2001:6f8:32f:10:a00:20ff:fe9b:138c]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "wotan.home.paeps.cx", Issuer "NixSys CA" (verified OK)) by gateway.nixsys.be (Postfix) with ESMTP id 8A2154084 for ; Tue, 5 Jun 2007 13:15:29 +0200 (CEST) Received: from fasolt.home.paeps.cx (fasolt.home.paeps.cx [IPv6:2001:6f8:32f:10:214:5eff:feca:2496]) by wotan.home.paeps.cx (Postfix) with ESMTP id A914F618B for ; Tue, 5 Jun 2007 13:15:27 +0200 (CEST) Received: from fasolt.home.paeps.cx (philip@localhost [127.0.0.1]) by fasolt.home.paeps.cx (8.14.1/8.14.1) with ESMTP id l55BFRoD008998 for ; Tue, 5 Jun 2007 13:15:27 +0200 (CEST) (envelope-from philip@fasolt.home.paeps.cx) Received: (from philip@localhost) by fasolt.home.paeps.cx (8.14.1/8.14.1/Submit) id l55BFQ10008997; Tue, 5 Jun 2007 13:15:26 +0200 (CEST) (envelope-from philip) Message-Id: <200706051115.l55BFQ10008997@fasolt.home.paeps.cx> Date: Tue, 5 Jun 2007 13:15:26 +0200 (CEST) From: Philip Paeps To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113361: Repocopy request: x11-wm/ion-3ds -> x11-wm/ion-3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Philip Paeps List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 11:20:03 -0000 >Number: 113361 >Category: ports >Synopsis: Repocopy request: x11-wm/ion-3ds -> x11-wm/ion-3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 11:20:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Philip Paeps >Release: FreeBSD 7.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD fasolt.home.paeps.cx 7.0-CURRENT FreeBSD 7.0-CURRENT #4: Sat Jun 2 17:45:16 CEST 2007 philip@fasolt.home.paeps.cx:/usr/obj/usr/src/sys/FASOLT amd64 >Description: The Ion-3 window manager has gone from "development" (-ds) to "release candidate" (-rc) status, with a release expected sometime soon. Analogous to x11-wm/ion and x11-wm/ion-2, it should now be moved to x11-wm/ion-3. >How-To-Repeat: >Fix: Please repocopy x11-wm/ion-3ds to x11-wm/ion-3. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 11:20:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25B0416A400; Tue, 5 Jun 2007 11:20:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EE87A13C489; Tue, 5 Jun 2007 11:20:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55BKAJV010134; Tue, 5 Jun 2007 11:20:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55BKACC010128; Tue, 5 Jun 2007 11:20:10 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 11:20:10 GMT From: Edwin Groothuis Message-Id: <200706051120.l55BKACC010128@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, philip@FreeBSD.org Cc: Subject: Re: ports/113361: Repocopy request: x11-wm/ion-3ds -> x11-wm/ion-3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 11:20:11 -0000 Synopsis: Repocopy request: x11-wm/ion-3ds -> x11-wm/ion-3 Responsible-Changed-From-To: freebsd-ports-bugs->philip Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 11:20:10 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113361 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 11:32:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56FF316A421; Tue, 5 Jun 2007 11:32:27 +0000 (UTC) (envelope-from philip@paeps.cx) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.freebsd.org (Postfix) with ESMTP id EA1B313C45A; Tue, 5 Jun 2007 11:32:26 +0000 (UTC) (envelope-from philip@paeps.cx) Received: from wotan.home.paeps.cx (wotan.home.paeps.cx [IPv6:2001:6f8:32f:10:a00:20ff:fe9b:138c]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "wotan.home.paeps.cx", Issuer "NixSys CA" (verified OK)) by gateway.nixsys.be (Postfix) with ESMTP id EE8AA408E; Tue, 5 Jun 2007 13:32:25 +0200 (CEST) Received: from fasolt.home.paeps.cx (fasolt.home.paeps.cx [IPv6:2001:6f8:32f:10:214:5eff:feca:2496]) by wotan.home.paeps.cx (Postfix) with ESMTP id 2C7576218; Tue, 5 Jun 2007 13:32:24 +0200 (CEST) Received: from fasolt.home.paeps.cx (philip@localhost [127.0.0.1]) by fasolt.home.paeps.cx (8.14.1/8.14.1) with ESMTP id l55BWNZ9009328; Tue, 5 Jun 2007 13:32:24 +0200 (CEST) (envelope-from philip@fasolt.home.paeps.cx) Received: (from philip@localhost) by fasolt.home.paeps.cx (8.14.1/8.14.1/Submit) id l55BWNh9009327; Tue, 5 Jun 2007 13:32:23 +0200 (CEST) (envelope-from philip) Date: Tue, 5 Jun 2007 13:32:23 +0200 From: Philip Paeps To: Ed Schouten Message-ID: <20070605113223.GT38419@fasolt.home.paeps.cx> Mail-Followup-To: Ed Schouten , FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <20070521173705.4952B1CD46@palm.hoeg.nl> <200705211740.l4LHeEWJ082261@freefall.freebsd.org> <20070604133814.GE45756@hoeg.nl> <20070605095457.GR38419@fasolt.home.paeps.cx> <20070605100534.GM45756@hoeg.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20070605100534.GM45756@hoeg.nl> X-PGP-Fingerprint: 356B AE02 4763 F739 2FA2 E438 2649 E628 C5D3 4D05 X-Date: Today is Sweetmorn, the 10th day of Confusion in the YOLD 3173 X-Date-in-France: Septidi 17 Prairial CCXV, jour du sureau X-Date-in-Rome: Nonas Iunias MMDCCLX ab Urbe Condida X-Phase-of-Moon: The Moon is Waning Gibbous (81% of Full) X-Message-Flag: Get a proper mailclient! Organization: Happily Disorganized User-Agent: Mutt/1.5.15 (2007-04-06) Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/112838: x11-wm/ion-3ds: bump, make fetchable, rename, remove old cruft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 11:32:27 -0000 On 2007-06-05 12:05:34 (+0200), Ed Schouten wrote: > * Philip Paeps wrote: > > On 2007-06-04 15:38:14 (+0200), Ed Schouten wrote: > > > As I've read online the license of Ion3 has turned sour. The author has > > > ammended the license to the source with new clauses which enforces rules > > > which the FreeBSD package model can't guarantee, including a rule that > > > forces all packages to be beyond a version of a certain age. > > > > [...] > > Since the ports tree is not tagged, this is not really a problem for us. > > When people ask for "ion" from the ports (ion-3, actually), they'll get > > the latest version -- provided the maintainer is somewhat alive, which > > I'll do my best to be -- which is precisely what the licence wants. > > I guess that problem still persists if someone on a FreeBSD 5.x box runs > `pkg_add -r ion-3ds', because then the user gets the outdated package. But > IANAL ;-) True. I had forgotten about the binary packages case. I guess we'll need to set NO_PACKAGE for this. But I'll check this with Tuomo first on IRC. Cheers, - Philip -- Philip Paeps My opinions are philip@freebsd.org Never attribute to malice that which is adequately explained by stupidity. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 10:30:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C6F816A46E for ; Tue, 5 Jun 2007 10:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 48A4313C4B8 for ; Tue, 5 Jun 2007 10:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55AUG2x004331 for ; Tue, 5 Jun 2007 10:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55AUG9w004330; Tue, 5 Jun 2007 10:30:16 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 10:30:16 GMT Resent-Message-Id: <200706051030.l55AUG9w004330@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Artem V. Kropachev" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB49F16A469 for ; Tue, 5 Jun 2007 10:25:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id C79C713C45D for ; Tue, 5 Jun 2007 10:25:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l55APYGC022629 for ; Tue, 5 Jun 2007 10:25:35 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l55APXLD022604; Tue, 5 Jun 2007 10:25:33 GMT (envelope-from nobody) Message-Id: <200706051025.l55APXLD022604@www.freebsd.org> Date: Tue, 5 Jun 2007 10:25:33 GMT From: "Artem V. Kropachev" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 X-Mailman-Approved-At: Tue, 05 Jun 2007 11:41:23 +0000 Cc: Subject: ports/113360: [MAINTAINER] update games/mangos to 3796 Free dedicated-server for World of Warcraft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 10:30:16 -0000 >Number: 113360 >Category: ports >Synopsis: [MAINTAINER] update games/mangos to 3796 Free dedicated-server for World of Warcraft >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 10:30:15 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Artem V. Kropachev >Release: Tested on 6.2 and 7.0 >Organization: Home >Environment: >Description: [MAINTAINER] update games/mangos to 3796 Free dedicated-server for World of Warcraft >How-To-Repeat: >Fix: Patch attached with submission follows: begin 644 mangos-port.tar.gz M'XL(`%)R8D8``^U=?5/C.-*_?\FG4#$S=["0X'D5JN[)3G6A(;C*/G+ M5[T41;%-D\"G:IL:?N*U^,QN5,72%<-65=4DBJKIIOX78G[=:F77+$EI#%4) M613FX>YO&0MR\C<;1?[<2GZ]:\+[_VCD!^RK:8%D_VNVK2J&JD/_ZX:EO/;_ MM[CF_=^AGQCJP%?^_ M(9?LGDRC.$V(&P4!9O`+;/:$ MQNXMT6"D`^CF-IH<$Y1HZ0WM?UCO-DYTY3TSXV.PY MK:O+DQW=KEFE1KW?O+CJM9K.RL3!D*>;.5;T$W%J7??AK]DZP]CL(';@/,?O\ M?D+]`+"EQE6GT[SLG^Q@U8G'/-_%%I<3%M^Q&*5";J(X\$@T(C?0])B.TE+I MJMN'5C@G"[DXC5ZKVS]K?M1V=ATW]J?I&;O3=G=`P%C31KNUL[/;B"90,X^T M_9"15AJS>$1=1I+9%%NV"R6,.+I7!W"/32+H@+HW\4,_26/*>^L)]NRT`>!6 M"+H=!`3N"#?P`,A*_G!U>=7K@9AW=ILA'4(_?XC"*.YAYTYIZMXBLE2J^*$; MS#Q&_CY,O`H7]#1FE^+7OY2SK[/ M._A+!09;9?P;OZH M])0OM/TIP[GF>$-7>\S@VFD.ZM?]J_[551L[DKI!Y-+@6*V1P!^F413XOS%" M9VGD1N'H6+-4?@.*YK%X>8O#9XWD6#5+]4;[JE%O#^J]"ZX@Y19Y^SM/.JT[ MS2]'R2V-V=&\N!)6H5/_L;F`ERFO6>>?SC_:)SL/,"0:Y^WZA7-\LO/V]_G7 MR_+5=U](^4KAT/99X^KRO'61H4O9S75OP;%?'J^0CEKJ0Y=&4;J;S"F^1^..>;/[4[]4'W7J_\8&K!N^$LU;OR]&J7RM< MZ9[OQ:6^;F%YL,%SJ<J+_9`WV_*@[2F+W:.A#7<)QLL9N M?U%!4*+V)6A`@CK91_OX18XQ5/?M[[UFZ[+;KC>:@T;G#+@PLIO\4:F@YLR- MKE=!O?IC0ZDVL\:[\BWAFN<=.0])RB8-H/;'E5NP5<+*@-L*)EOKLI[S=:OR MOE._O+ARS@9G]7[]_1^/QM-<*(7J,)?CACRQ"J5X%I;1&J$)2LI+NX0JYGK` M?Z6Z4)+3:WPA?_TK)#O-?O.2*^#2$`[6$M`LK7_G>O]E7ZC5?WJ1Y!FM7@:S M2_4N>5%Y./,#;]7VT^M6^VQ1B>\WJL!+6/N^3.-F=G&')F>9D]4'*MAN#_IP MT^S+"F2C'L^-TZ]4OY5P_"Q26(FG=>GT$?Q,+_T;55AP+B:F1_5Y3E!?M9ZY M(<86LPWA!=D^O#%KO]1M0T@R<*Y/#TXP8#O9W84R@H0]S7CO0HS(PI3LKM7B M:6@&3H;'9D7B_T6%()CTPU'T5>88@OF?JBKZ-AG'S-X^%](S>' M-6H"(87N'9F&5C74XI6%6EM-X':W,21(P4S:PJBE$UJ]YPI%5UYMF>;E>K M]A#^,[S'??"(O#:R/<4U5+U*:54=&DQG=M7TJ%Z%ZNN6;BC#4=6KUDS/=DW- M&]5,4[%,3U$]VW(]IFSVP2/FAJK85<,N9&Y>K_^P:V[_IY_&98\E;OPURA#8 M?T57^?J?"G9!LS1<_S=@T+W:_V]Q=2C.1LA>>LM(AR:)?\?()4OOH_@3N:`3 M1JZ&_\?X%F2^<)7RB5"'=@-&$02HC6#)?:FQ<=?_9NKQ`NE+@NRQ,<.4MI7Z0 M5$JEFYN;8S)?V[N_OZ]DBCN-(ZQ>)8K'1Z^&Z`77VOB?!A`$?HTR\L<_.'+3 M7L5_!A__NJJ_CO]O<<$D:K&0?H\+VEYI+25;%2D]7JPI/5HQ@=$Z/(*_G_NW MD.I5Z..$X$E*$CU-J6B+M*RPA$=-*VX;J<'VY!7?1\D5I?3N'2ZYP-3LW;NC MY%_!4;:+,9@\P$T%_IX`O#B:YF1G)6S-F@MG6]9LZD&IR9&JFLK`A4DA=5,6 M#^@LIB*\.7"SO8+MA6X@PZD[B*9HAT78ZEHM_/`.S'<4/PB(JM8`-V8&]R#! M6Q;GHS6ERJN3QA0FS2(P2,4'%S&`OVF`Z[CY<$L;4.S'V!^/H0$I!2\C:#+2 M\-J/8T`_T%C045I5&T!5'EB<:0S.DXM3\%8)R&K:((BB5++MNJZM==V_9BQ) MP9:E,X%VZ+I51,*Z7MN0L.NG`NW0C4T*4*HHN&->S`(J5DBD+C(L-O&2"LR) ML(JSF,G*`4A0:R(>#\D2F85D#?/)0G##SKI=%F^9`[X,.LCLT\`;B@GF5K(` MQ32:SH(B-+99J,=-D-*\%XJIUAHA%YLDE69Q\P6*Y44"ZV6":2FH5Z9M+%`J,@J6:&V-6M@Q]K>L$4&M]G"93%FSWJBL"VRID MII?XE`4"F5M5NXBAM16CR+"T:[5"P[*JF5G%W2B>)B*P*:DN5 MJ%TUT*D"4J[IDA6NH?&6$%7-U)]ZX>23+U*\[71BA:U)=HT&TZ`B@M0479=D M;*A@/_D3/+?1+&&#H2]!P75/W+X5-J4!.%D1N&`;34.RC1BP2@$MJZ`M!I)" M(U=3[)ID7<`DR(;`FJK8=DE22(UNWBLY/--U67C`;!+*B$:NFP^P6GY,4SV@!JF\Z)#&)`;:J MB'H8FEH0;Q2>QP%1#;S>9U^`,N0B&`!*^C`$%HB!-4/6BQI6,?=L6+(U!LV% M&"L,_7!<(/K3#'"E1>`UV8;"K(G'[@68FXJD!3?!`8^S"34-/XFPUL90$*'M M.6<J0E?$M/9"Y[:54&Q=MY+%;#I+Q2LAVXG%$ZIGZ,3AIUE[&K;F M4UB*N5AUHJX;S42S%$N5UA-+M1^O7X"1B`(ONA>(S=(TZ4(T;A4U'M5:X MD.7L%" M%DM$`%75+%0&S,UBZGOC.)I-!>.BJDE'=U6].E\`AGF1:(63@Q>!IAQ\;7HH M06`4$[NA%X*;DNZB:DFZM*IMRJ]^(7@>!-P"7`"NJD7`LCM'6DU]R5I+395> M.:Q!GV<5EW*@-4-Y41A>$C:(57AW39O0L`UKC-E0PP=$5RU457;%.V@;8I&]#I M2DU6OK6B"ZB<1#YB!_C"MDSCR!VP.]$&%%`46F8&O%6P!%61BYUTW-!Y@<$` MND)+H;JJ%MJ%`;Q9#*\7?U:,$WE^PD*@++@HR&D+6`_56"A)BL\4BKK/D!RU MJJ0/UE7K)0]D962R_`OUERW;0KO0OJ>NPA2RX%BI2GH4?+10"J@IZ\(>^R.1 M,=44L[CV:GJA94U=,\R%QGX6B`2APHD*1TWIF$DQ7(MX9!?U=,U3( MT(T7[?;KNJR=TU%EI.HO5G-\%K78 M@J:.VR=%5`_QPA42W5+5HD;;4F4]B:45VLC6+5TM/L&S=.OQ1#96X8;::M'XPK8%09IMORQ(LR67V``H&5W@!D0A>?2:];-.$[-/ M&^_>K:.\H7M4#_T)=QYG-*452'D6".WN7K5$D#Y_:E$$RE9N\A$PH0G8FS8^(YF#;8"G MB:ES2S_E\VR,QH,&]-XXBGT))'_/5#X,+.(I35@+]ST%N`_4CR]8E+!\N2^@ M?9B(PD@38IWL59)B7`I1VM4L'?GYH@1HWP?)"QE^I+%/I8KF/N.MT#SL+.8#OT`%*81)?E#<07]QXP&`A5KXAM#<]EE M"!S7N017'2<67S''AJS.`9A93Q9U'DT5S=7D?/=2(/_H$%$Y9FCOBCGX@& M60LB78A9Q"83@=S'B$"2LQ#2R7"\C'&P!EV6PL#(%2K">A`T M1Y)=ML([L]'(_RS".DS8(&AR2<1%CH<+'FF*T+&&3@7UCZ_.)N% M8R88]VT:CF=@!YP'$4U/:;Y?X,A6*(?K0B0W$=?, M^?0PC'(5H.W_:^9[(J?>CBB^=]*!F2$+^_2S[TP#B*CR*[!.(T"ZN=J"^:(: M=J@?R+BL#LWU.1T@AU`ZR,-<=AOBL7T)1OB"Y3IDA"12(3-']AA_H52N;G1A MFBB()[J0CZ99IJ5="N;F+`H"'(+GH''YG%G:CAYHD-\60'59G$2A,(H#I,\C M$4'7CLR%9:\0Z[`D$1D2YY:_ M5X8KED3D[.`J(0^:14Z3(_%%^U*@>A9C2V%EPB$.QHD<=PNB3N+HOH\__7+W<3TS@47_]6A.(&1YU(H9TIG4CI M#%^<$P$:-$G[_D2"E52'-:GKC-")W-G\@5`;.R99>:.,EY MY,Z2+-H68ENN1!UX4,@?\4GY7EA!?",*/5^JL1W&GR-RQ4`_2?R`=2(IMCUP MSS.QW,`FYCL4CH).F++DUA]!-!M/A/`LG).$99U]*?`^:P2":=<:$H:NB\,# M?U/D"Z>,#O^]NMR2*5_BFTT'#EB?,'_ATLFV-IE@X'%&$JZAG[VJ0HB`B60^ MZ+-_&7GYK410%_R6#`:9Y>*R=0&1H5B#B:.P?H0S00FSUE_\JFRY69"'OF[) M^NEK".U.`\$$;PEJ\TWK/.A'<%'1!QI[]S1_:OT1SU29US.7XTWG2FI3XX;1 M:12V)E/JIA)<.=JYQPD`!VNY:'P-(T3F6!$9'-C.%`*0?"U?@*\@`H,YO@R4 M:\$(#%A^VQ#MT!&#>8D$$$8WN\[=5+J)[IMQ',4RQN)G,!0P28RCSBSQ76&O M(9PC\T!COL#OLG[480%CC3C??FZ!X[Z+'$D6/TB7L(1+E!!-AC3MP>`5B'"< M7C7Z/39FX8>N'*XCP,V9P;S&F0H:-N>W!GWO^7$\(>O0M;W-9[*W)6]G]OJ* MX,?7^OF/3PYD^I/*$+S_6]>_?D[*N'U;)`?_W_?L2V>$FOC<+^?%7E=L2*9$W;_!)1- MHI!0_C/9E+_Y.SM`"0]*BVG\4"IG90VR=Q$/VF?ULS-R0BJ5U6DOL]`')Y;0 M8,L[@1&(3W>MLO"NPM/G1S4M<\"BT"$:TJVY;G:6T]8\.H,@;VM.=K\]+\S> MJIYECG#]"&]7^VS*#[KYC?^$!A'HP+V?WD(5_(1,XV@,8^![ MXH](&*6'Y!XB58;*@W:>GZ/J1*,4YVI(?HXS(:X4AZ@XE4-BU@C?M&"D&U"7 M'1)GA@QT73DDIU&2(K)3)T315%4MJ[IB$W+MU$%`9>?Z%.(['#W+CBP=K!)7 MLGX-`!]=&_'?H\,S_ZPR1/&?:?#S'S334BS;4##^,U[/__HVU\(H<+?+`S@( MW!;&8".1&P%-.;3`"L"'O;#+!,]E'=2O&WCV\:#?ZC0/MZ2?-;M73JN_+:MQ M##.J=J^O+_I:,R^9/B^1._:V MC_.QM1J$MM!:_*CQUO*AT?'1^57J$WR]%!Y%MIE^R3ZG4!.>7CIX4SK@F7QD M\<0#-'X.O4-[G4SI?4A2?\+/V2:+AY@30E/BX1;8(4]?_5Z!Y\P2=A1-6/C(Y8R,Z"])CHLHR0:L?S5)R3WU< M87C$L;2A5%W^&'7%G4XW]6HM'85M6#4;G?[\$\6=]6GF&;D`SWT6>,G>_O=$ MXCHZ0M\SC?D3TZ1!`PA.%HSV]O$D;$I"=@]QR@,9,I`S(Q&$+;>\I^YILJU@ M;!OR'N$S#'/H"=G;X_?[$.2$WIYZ6%7V]X]494LMH4X9T1"B2<;"8Z)45%(F MU8J2C0`IQN0[DF2C=W4(F-6E0/ M58W7`DH"QAE1!CXF5>4=\`7S\`X/1LY;'[,W/S)U!O7=;ETZS MUR>MR_X5^77S9Q^_DKU?QS/?^_7PUR=/]T,:YPN?V$>_[I./]?9UTR%[[V:' MA/^-\'-_]Y!<7+?.!NVK;KW7W[M@*=[N[>]#]/31=T&9RS]`(NZ+/NQ!(N=Z MR)5\#X3]_6-ESL3^1)=7R=QNF#:W&Z:]9B4A`&:#.QK,6/(_3RSF+V@PDOGY MP5`?_HS,?%CN[7(+,G^6O8*[E]`J%>N6RW=N<7^1YGS&IE'BIU+,P6;+,V[, M%DP/MC+EBBMFQT=B;NTV/(68X88EWST4\D5'\PL1=]6:)YAS_<\-.S?B/Q[U ME5'Y_]0R!/$?^%(_TU2-U_CO6UP+ZS9?[FBBL\Q.,T=SMG/# M9YP/1,,3>H]5XUC5B:8H]M+\R=%9Q]#%G([;1SZ[Y__RJ>1B<6%WGM]O?9[&MHN-JPP'_5)=V&VI`NNUZ__RJUR$G)\OO@ZQ*F<%@ MX)VRT`@L`EKHO84M><-/=.9!0Y+&8!`Y:DC2Z??S4(+[FK^FTX5YS/Y=`X,E M(NG=/!<\/J9%(PA;@.KN$$*V%?2W*&3?[1-L5.:[UFH'159X\/8==`EHZ`$F M3,#1^NED89D7R+M*>C=(F+N&Y4DS3#OB:;*1NJAB9"V`K9+BNAGS)O,IU M##^*J1AR&_CA8)*`^_FW%:V<)6TR%:K'GZ"39%W'-XN7T;D%^8;J/1F#&<_O L_W.=[NOU>KU>K]?K]7J]7J_7Z_5ZO5ZOU^OU>KU>K]Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 12:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31CBB16A46D for ; Tue, 5 Jun 2007 12:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1132413C44C for ; Tue, 5 Jun 2007 12:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55CA4br015426 for ; Tue, 5 Jun 2007 12:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55CA4h1015422; Tue, 5 Jun 2007 12:10:04 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 12:10:04 GMT Resent-Message-Id: <200706051210.l55CA4h1015422@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Wilke Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33B7116A46B for ; Tue, 5 Jun 2007 12:04:12 +0000 (UTC) (envelope-from miwi@miwi.homeunix.com) Received: from miwi.homeunix.com (dslb-082-083-145-149.pools.arcor-ip.net [82.83.145.149]) by mx1.freebsd.org (Postfix) with ESMTP id E46DD13C46E for ; Tue, 5 Jun 2007 12:04:11 +0000 (UTC) (envelope-from miwi@miwi.homeunix.com) Received: by miwi.homeunix.com (Postfix, from userid 1001) id D75212E04C; Tue, 5 Jun 2007 14:12:03 +0000 (UTC) Message-Id: <20070605141203.D75212E04C@miwi.homeunix.com> Date: Tue, 5 Jun 2007 14:12:03 +0000 (UTC) From: Martin Wilke To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113362: [MAINTAINER] sysutils/xfce4-places-plugin: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 12:10:05 -0000 >Number: 113362 >Category: ports >Synopsis: [MAINTAINER] sysutils/xfce4-places-plugin: update to 0.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 12:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Martin Wilke >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD miwi.homeunix.com 7.0-CURRENT FreeBSD 7.0-CURRENT #294: Wed May 30 16:35:26 UTC 2007 >Description: Test PR. Please ignore these. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xfce4-places-plugin-0.3.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/sysutils/xfce4-places-plugin/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 19 May 2007 20:23:43 -0000 1.3 +++ Makefile 5 Jun 2007 13:46:12 -0000 @@ -6,8 +6,7 @@ # PORTNAME= xfce4-places-plugin -PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTVERSION= 0.3.0 CATEGORIES= sysutils xfce MASTER_SITES= http://goodies.xfce.org/releases/${PORTNAME}/ DIST_SUBDIR= xfce4 Index: distinfo =================================================================== RCS file: /home/pcvs/ports/sysutils/xfce4-places-plugin/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 22 Apr 2007 16:05:47 -0000 1.2 +++ distinfo 5 Jun 2007 13:46:21 -0000 @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-places-plugin-0.2.0.tar.bz2) = fc9828001674e7428ef4023e4a320c87 -SHA256 (xfce4/xfce4-places-plugin-0.2.0.tar.bz2) = cbc2e1ab0dbccca749fb2e901164f33566489a3908006b3b8e21f30846ad39d4 -SIZE (xfce4/xfce4-places-plugin-0.2.0.tar.bz2) = 279308 +MD5 (xfce4/xfce4-places-plugin-0.3.0.tar.bz2) = 369b84d03956dbe2bc3d1571308c3b12 +SHA256 (xfce4/xfce4-places-plugin-0.3.0.tar.bz2) = f6ed4e23d4f26aad64e929ed2d2c86fc054b4bfc2d35f6e51b9d4389d8c597ce +SIZE (xfce4/xfce4-places-plugin-0.3.0.tar.bz2) = 285253 --- xfce4-places-plugin-0.3.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 12:10:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD82E16A46F; Tue, 5 Jun 2007 12:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 75F2813C45A; Tue, 5 Jun 2007 12:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55CAGEU015602; Tue, 5 Jun 2007 12:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55CAGnm015598; Tue, 5 Jun 2007 12:10:16 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 12:10:16 GMT From: Edwin Groothuis Message-Id: <200706051210.l55CAGnm015598@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113362: [MAINTAINER] sysutils/xfce4-places-plugin: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 12:10:16 -0000 Synopsis: [MAINTAINER] sysutils/xfce4-places-plugin: update to 0.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 12:10:14 UTC 2007 Responsible-Changed-Why: Submitter is maintainer and has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113362 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 12:47:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB2A116A474; Tue, 5 Jun 2007 12:47:06 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 9601913C484; Tue, 5 Jun 2007 12:47:06 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id ECBD220AF; Tue, 5 Jun 2007 14:29:15 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.0 (2007-05-01) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id DE55B20A6; Tue, 5 Jun 2007 14:29:15 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 095865672; Tue, 5 Jun 2007 14:29:22 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Ade Lovett References: <200705241023.l4OANKHT047366@freefall.freebsd.org> Date: Tue, 05 Jun 2007 14:29:21 +0200 In-Reply-To: (Ade Lovett's message of "Tue\, 5 Jun 2007 03\:31\:12 -0700") Message-ID: <86ps4afuu6.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/112930: Autotools. The Next Step. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 12:47:07 -0000 Ade Lovett writes: > Re-synced patch once again, hopefully the last time (heh!) before > going for an -exp run. Thanks! DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 12:50:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07E9916A46B for ; Tue, 5 Jun 2007 12:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D390C13C458 for ; Tue, 5 Jun 2007 12:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Co2XR021732 for ; Tue, 5 Jun 2007 12:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Co2ZW021731; Tue, 5 Jun 2007 12:50:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 12:50:02 GMT Resent-Message-Id: <200706051250.l55Co2ZW021731@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, clemens fischer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E42116A469 for ; Tue, 5 Jun 2007 12:47:28 +0000 (UTC) (envelope-from root@spotteswoode.dnsalias.org) Received: from mail-out01.broadnet-mediascape.de (mail-out01.broadnet-mediascape.de [62.206.1.18]) by mx1.freebsd.org (Postfix) with SMTP id 5EDE513C483 for ; Tue, 5 Jun 2007 12:47:27 +0000 (UTC) (envelope-from root@spotteswoode.dnsalias.org) Received: (qmail 29675 invoked by uid 113); 5 Jun 2007 12:47:24 -0000 Received: from 212.99.206.137 by mail-out01 (envelope-from , uid 106) with qmail-scanner-1.25 (trophie: 7.510-1002/509/20835. Clear:RC:1(212.99.206.137):. Processed in 0.428796 secs); 05 Jun 2007 12:47:24 -0000 Received: from d463ce89.datahighways.de (HELO spotteswoode.dnsalias.org) (212.99.206.137) by mail-out01.broadnet-mediascape.de with SMTP; 5 Jun 2007 12:47:23 -0000 Received: by spotteswoode.dnsalias.org (Postfix, from userid 0) id 374A5279E8; Tue, 5 Jun 2007 14:45:44 +0200 (CEST) Message-Id: <20070605124544.374A5279E8@spotteswoode.dnsalias.org> Date: Tue, 5 Jun 2007 14:45:44 +0200 (CEST) From: clemens fischer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clemens fischer Subject: ports/113363: lang/munger borked, doesn't install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: clemens fischer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 12:50:03 -0000 >Number: 113363 >Category: ports >Synopsis: lang/munger borked, doesn't install >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 12:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: clemens fischer >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD spotteswoode.dnsalias.org 6.2-STABLE FreeBSD 6.2-STABLE #19: Sat May 26 19:53:56 CEST 2007 root@spotteswoode.dnsalias.org:/usr/obj/usr/src/sys/spott i386 >Description: there's a serious bug in the "Makefile" of the distribution. after saying: # make {WITHOUT_FCGI,WITHOUT_SQL,WITH_BN,WITH_DKNS}=1 install the build works, but the install fails here: ... /usr/bin/install -o root -g wheel -m444 -c library.munger xmlquery.munger fcgi.munger options.munger xmlsqlite.munger blog.css login.css /usr/local/share/munger-4.134 /bin/rm tmp /usr/bin/install -o root -g wheel -m555 -c -s libmunger.so /usr/local/lib/libmunger.so.27 /usr/bin/install -o root -g wheel -m555 -c -s munger /usr/local/bin cp munger.man munger.1 9 --name -f munger.1 9:No such file or directory *** Error code 1 (ignored) /usr/bin/install -o root -g wheel -m444 -c munger.1.gz /usr/local/man/man1/ install: munger.1.gz: No such file or directory *** Error code 71 Stop in /usr/ports/lang/munger/work/munger-4.134. *** Error code 1 i looked at the distributions (not the ports!) Makefile, but couldn't find any place where the digit `9' would appear. could this have to do with this piece of the ports Makefile? MAN1= munger.1 MANCOMPRESSED= yes i commented out the "MANCOMPRESSED" bit, which didn't work. something's wrong at the distributions Makefile, where the man page gets compressed. >How-To-Repeat: just try: cd /usr/ports/lang/munger && make WITHOUT_FCGI=1 WITHOUT_SQL=1 WITH_BN=1 WITH_DKNS=1 install >Fix: if people really want to have the program and can live without registering it in the pkg-database, they can do this after the error message: 510 070605-14:01 gzip work/munger-4.134/munger.1 511 070605-14:02 mv work/munger-4.134/munger.1.gz /usr/local/man/man1/ 514 070605-14:08 rrsync work/munger-4.134/{*.{munger,[ch]},[A-Z]*} /usr/local/share/munger-4.134/ maybe the port is easy to fix, and the software works, but i can't see what broke it. regards, clemens >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 12:50:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8BB316A46C; Tue, 5 Jun 2007 12:50:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 92D9113C465; Tue, 5 Jun 2007 12:50:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Co9UO021869; Tue, 5 Jun 2007 12:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Co992021857; Tue, 5 Jun 2007 12:50:09 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 12:50:09 GMT From: Edwin Groothuis Message-Id: <200706051250.l55Co992021857@freefall.freebsd.org> To: ino-news@spotteswoode.dnsalias.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 12:50:09 -0000 Synopsis: lang/munger borked, doesn't install State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Jun 5 12:50:08 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113363 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 13:40:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2683D16A421 for ; Tue, 5 Jun 2007 13:40:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F401113C46E for ; Tue, 5 Jun 2007 13:40:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55DeJYl027821 for ; Tue, 5 Jun 2007 13:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55DeJrU027820; Tue, 5 Jun 2007 13:40:19 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 13:40:19 GMT Resent-Message-Id: <200706051340.l55DeJrU027820@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olivier Girard Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2CB9316A46C for ; Tue, 5 Jun 2007 13:36:47 +0000 (UTC) (envelope-from Olivier.Girard@univ-angers.fr) Received: from smtp.univ-angers.fr (smtp.univ-angers.fr [193.49.144.2]) by mx1.freebsd.org (Postfix) with ESMTP id C826613C46A for ; Tue, 5 Jun 2007 13:36:46 +0000 (UTC) (envelope-from Olivier.Girard@univ-angers.fr) Received: from localhost (localhost [127.0.0.1]) by smtp.univ-angers.fr (Postfix) with ESMTP id 249CE114ECB; Tue, 5 Jun 2007 15:14:45 +0200 (CEST) Received: from smtp.univ-angers.fr ([127.0.0.1]) by localhost (smtp.univ-angers.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lSyuuf-1hjkn; Tue, 5 Jun 2007 15:14:44 +0200 (CEST) Received: from [172.19.2.5] (pbastion.univ-angers.fr [193.49.146.252]) by smtp.univ-angers.fr (Postfix) with ESMTP id A8C12114EAC; Tue, 5 Jun 2007 15:14:44 +0200 (CEST) Message-Id: <466560D8.5040803@univ-angers.fr> Date: Tue, 05 Jun 2007 15:10:48 +0200 From: Olivier Girard To: FreeBSD-gnats-submit@FreeBSD.org Cc: Olivier Girard Subject: ports/113364: new port mail/p5-MIME-Charset X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Olivier Girard List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 13:40:20 -0000 >Number: 113364 >Category: ports >Synopsis: new port mail/p5-MIME-Charset >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 13:40:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Olivier Girard >Release: FreeBSD 6.2-RELEASE-p4 i386 >Organization: University of Angers, France. >Environment: System: FreeBSD tfbsd.uang 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Perl package MIME::Charset - Charset Informations for MIME This package is required by MIME::EncWords whitch i need to update mail/sympa5 to current version. I'm submiting MIME::EncWords soon after this one. >How-To-Repeat: >Fix: --- p5-MIME-Charset.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-MIME-Charset # p5-MIME-Charset/Makefile # p5-MIME-Charset/pkg-plist # p5-MIME-Charset/pkg-descr # p5-MIME-Charset/distinfo # echo c - p5-MIME-Charset mkdir -p p5-MIME-Charset > /dev/null 2>&1 echo x - p5-MIME-Charset/Makefile sed 's/^X//' >p5-MIME-Charset/Makefile << 'END-of-p5-MIME-Charset/Makefile' X# New ports collection makefile for: mail/p5-MIME-Charset X# Date created: 05 June 2007 X# Whom: Olivier Girard X# X# $FreeBSD:$ X# X XPORTNAME= MIME-Charset XPORTVERSION= 0.044 XCATEGORIES= mail perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= MIME XPKGNAMEPREFIX= p5- X XMAINTAINER= Olivier.Girard@univ-angers.fr XCOMMENT= MIME::Charset - Charset Informations for MIME X XPERL_CONFIGURE= yes X XMAN3= \ X MIME::Charset.3 \ X MIME::Charset-ja_JP.3 X X.include END-of-p5-MIME-Charset/Makefile echo x - p5-MIME-Charset/pkg-plist sed 's/^X//' >p5-MIME-Charset/pkg-plist << 'END-of-p5-MIME-Charset/pkg-plist' X%%SITE_PERL%%/%%PERL_ARCH%%/auto/MIME/Charset/.packlist X%%SITE_PERL%%/MIME/Charset-ja_JP.pod X%%SITE_PERL%%/MIME/Charset.pm X%%SITE_PERL%%/MIME/Charset/_Compat.pm X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MIME/Charset X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MIME X@dirrm %%SITE_PERL%%/MIME/Charset X@dirrmtry %%SITE_PERL%%/MIME END-of-p5-MIME-Charset/pkg-plist echo x - p5-MIME-Charset/pkg-descr sed 's/^X//' >p5-MIME-Charset/pkg-descr << 'END-of-p5-MIME-Charset/pkg-descr' XMIME::Charset provides informations about character sets used for MIME Xmessages on Internet. X X XAuthor: XWWW: http://search.cpan.org/dist/MIME-Charset/ END-of-p5-MIME-Charset/pkg-descr echo x - p5-MIME-Charset/distinfo sed 's/^X//' >p5-MIME-Charset/distinfo << 'END-of-p5-MIME-Charset/distinfo' XMD5 (MIME-Charset-0.044.tar.gz) = 782acf737cc17898341cb68511ca9041 XSHA256 (MIME-Charset-0.044.tar.gz) = a3b3cc4009850492e75e3b34bae72ab9475df380fa031b398a140557af735e25 XSIZE (MIME-Charset-0.044.tar.gz) = 29499 END-of-p5-MIME-Charset/distinfo exit --- p5-MIME-Charset.shar ends here --- . >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 13:40:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 982CF16A46F for ; Tue, 5 Jun 2007 13:40:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6CCA013C483 for ; Tue, 5 Jun 2007 13:40:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55DeKUG027834 for ; Tue, 5 Jun 2007 13:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55DeKIk027833; Tue, 5 Jun 2007 13:40:20 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 13:40:20 GMT Resent-Message-Id: <200706051340.l55DeKIk027833@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olivier Girard Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 806A316A474 for ; Tue, 5 Jun 2007 13:36:48 +0000 (UTC) (envelope-from Olivier.Girard@univ-angers.fr) Received: from smtp.univ-angers.fr (smtp.univ-angers.fr [193.49.144.2]) by mx1.freebsd.org (Postfix) with ESMTP id C83A513C46C for ; Tue, 5 Jun 2007 13:36:46 +0000 (UTC) (envelope-from Olivier.Girard@univ-angers.fr) Received: from localhost (localhost [127.0.0.1]) by smtp.univ-angers.fr (Postfix) with ESMTP id A11B81148D3; Tue, 5 Jun 2007 15:15:03 +0200 (CEST) Received: from smtp.univ-angers.fr ([127.0.0.1]) by localhost (smtp.univ-angers.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UoblAuvor1ru; Tue, 5 Jun 2007 15:14:56 +0200 (CEST) Received: from [172.19.2.5] (pbastion.univ-angers.fr [193.49.146.252]) by smtp.univ-angers.fr (Postfix) with ESMTP id 784D0115061; Tue, 5 Jun 2007 15:14:56 +0200 (CEST) Message-Id: <466560E4.1000101@univ-angers.fr> Date: Tue, 05 Jun 2007 15:11:00 +0200 From: Olivier Girard To: FreeBSD-gnats-submit@FreeBSD.org Cc: Olivier Girard Subject: ports/113365: new port mail/p5-MIME-EncWords X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Olivier Girard List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 13:40:20 -0000 >Number: 113365 >Category: ports >Synopsis: new port mail/p5-MIME-EncWords >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 13:40:20 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Olivier Girard >Release: FreeBSD 6.2-RELEASE-p4 i386 >Organization: University of Angers, France. >Environment: System: FreeBSD tfbsd.uang 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: MIME::EncWords - deal with RFC-1522 encoded words (improved) This package is required to update mail/sympa5 to current version. >How-To-Repeat: >Fix: --- p5-MIME-EncWords.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-MIME-EncWords # p5-MIME-EncWords/Makefile # p5-MIME-EncWords/distinfo # p5-MIME-EncWords/pkg-descr # p5-MIME-EncWords/work # p5-MIME-EncWords/work/MIME-EncWords-0.040 # p5-MIME-EncWords/work/MIME-EncWords-0.040/ARTISTIC # p5-MIME-EncWords/work/MIME-EncWords-0.040/Changes # p5-MIME-EncWords/work/MIME-EncWords-0.040/EncWords.pm # p5-MIME-EncWords/work/MIME-EncWords-0.040/GPL # p5-MIME-EncWords/work/MIME-EncWords-0.040/MANIFEST # p5-MIME-EncWords/work/MIME-EncWords-0.040/META.yml # p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile.PL # p5-MIME-EncWords/work/MIME-EncWords-0.040/README # p5-MIME-EncWords/work/MIME-EncWords-0.040/t # p5-MIME-EncWords/work/MIME-EncWords-0.040/t/01decode.t # p5-MIME-EncWords/work/MIME-EncWords-0.040/t/02encode.t # p5-MIME-EncWords/work/MIME-EncWords-0.040/testin # p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/decode-singlebyte.txt # p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/encode-singlebyte.txt # p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/EncWords.pm # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1 # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3 # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/.exists # p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/MIME::EncWords.3 # p5-MIME-EncWords/work/MIME-EncWords-0.040/pm_to_blib # p5-MIME-EncWords/work/.extract_done.MIME-EncWords._var_tmp_MIME-EncWords # p5-MIME-EncWords/work/.patch_done.MIME-EncWords._var_tmp_MIME-EncWords # p5-MIME-EncWords/work/.configure_done.MIME-EncWords._var_tmp_MIME-EncWords # p5-MIME-EncWords/work/.build_done.MIME-EncWords._var_tmp_MIME-EncWords # p5-MIME-EncWords/work/.PLIST.mktmp # p5-MIME-EncWords/work/.PLIST.flattened # p5-MIME-EncWords/work/.PLIST.setuid # p5-MIME-EncWords/work/.PLIST.writable # p5-MIME-EncWords/work/.PLIST.objdump # p5-MIME-EncWords/work/.install_done.MIME-EncWords._var_tmp_MIME-EncWords # p5-MIME-EncWords/pkg-plist # echo c - p5-MIME-EncWords mkdir -p p5-MIME-EncWords > /dev/null 2>&1 echo x - p5-MIME-EncWords/Makefile sed 's/^X//' >p5-MIME-EncWords/Makefile << 'END-of-p5-MIME-EncWords/Makefile' X# New ports collection makefile for: mail/p5-MIME-EncWords X# Date created: 05 June 2007 X# Whom: Olivier Girard X# X# $FreeBSD:$ X# X XPORTNAME= MIME-EncWords XPORTVERSION= 0.040 XCATEGORIES= mail perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= MIME XPKGNAMEPREFIX= p5- X XMAINTAINER= Olivier.Girard@univ-angers.fr XCOMMENT= MIME::EncWords - deal with RFC-1522 encoded words (improved) X XBUILD_DEPENDS= ${SITE_PERL}/MIME/Charset.pm:${PORTSDIR}/mail/p5-MIME-Charset \ X ${SITE_PERL}/MIME/Body.pm:${PORTSDIR}/mail/p5-MIME-Tools XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= \ X MIME::EncWords.3 X X.include END-of-p5-MIME-EncWords/Makefile echo x - p5-MIME-EncWords/distinfo sed 's/^X//' >p5-MIME-EncWords/distinfo << 'END-of-p5-MIME-EncWords/distinfo' XMD5 (MIME-EncWords-0.040.tar.gz) = b208f410f6a93eface5e34d4c88105e8 XSHA256 (MIME-EncWords-0.040.tar.gz) = 3b355d59154c5e7c4ea3cba9fff6577645b189c6176a9dd90c1f3bdddae0be54 XSIZE (MIME-EncWords-0.040.tar.gz) = 21869 END-of-p5-MIME-EncWords/distinfo echo x - p5-MIME-EncWords/pkg-descr sed 's/^X//' >p5-MIME-EncWords/pkg-descr << 'END-of-p5-MIME-EncWords/pkg-descr' XMIME::EncWords is aimed to be another implimentation of MIME::Words so X that it will achive more exact conformance with MIME specifications. X Additionally, it contains some improvements. Following synopsis and X descriptions are inherited from its inspirer, with description of X improvements and clarifications added.* X X XAuthor: XWWW: http://search.cpan.org/dist/MIME-EncWords/ END-of-p5-MIME-EncWords/pkg-descr echo c - p5-MIME-EncWords/work mkdir -p p5-MIME-EncWords/work > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040 mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040 > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/ARTISTIC sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/ARTISTIC << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/ARTISTIC' XThe "Artistic License" X X Preamble X X The intent of this document is to state the conditions under which a X Package may be copied, such that the Copyright Holder maintains some X semblance of artistic control over the development of the package, X while giving the users of the package the right to use and distribute X the Package in a more-or-less customary fashion, plus the right to X make reasonable modifications. X X Definitions X X "Package" refers to the collection of files distributed by the X Copyright Holder, and derivatives of that collection of files X created through textual modification. X X "Standard Version" refers to such a Package if it has not been X modified, or has been modified in accordance with the wishes of the X Copyright Holder as specified below. X X "Copyright Holder" is whoever is named in the copyright or X copyrights for the package. X X "You" is you, if you're thinking about copying or distributing this X Package. X X "Reasonable copying fee" is whatever you can justify on the basis X of media cost, duplication charges, time of people involved, and so X on. (You will not be required to justify it to the Copyright X Holder, but only to the computing community at large as a market X that must bear the fee.) X X "Freely Available" means that no fee is charged for the item X itself, though there may be fees involved in handling the item. It X also means that recipients of the item may redistribute it under X the same conditions they received it. X X 1. You may make and give away verbatim copies of the source form of X the Standard Version of this Package without restriction, provided X that you duplicate all of the original copyright notices and X associated disclaimers. X 2. You may apply bug fixes, portability fixes and other modifications X derived from the Public Domain or from the Copyright Holder. A X Package modified in such a way shall still be considered the X Standard Version. X 3. You may otherwise modify your copy of this Package in any way, X provided that you insert a prominent notice in each changed file X stating how and when you changed that file, and provided that you X do at least ONE of the following: X X a. place your modifications in the Public Domain or otherwise make X them Freely Available, such as by posting said modifications to X Usenet or an equivalent medium, or placing the modifications on a X major archive site such as uunet.uu.net, or by allowing the X Copyright Holder to include your modifications in the Standard X Version of the Package. X b. use the modified Package only within your corporation or X organization. X c. rename any non-standard executables so the names do not conflict X with standard executables, which must also be provided, and X provide a separate manual page for each non-standard executable X that clearly documents how it differs from the Standard Version. X d. make other distribution arrangements with the Copyright Holder. X X You may distribute the programs of this Package in object code or X executable form, provided that you do at least ONE of the following: X X a. distribute a Standard Version of the executables and library X files, together with instructions (in the manual page or X equivalent) on where to get the Standard Version. X b. accompany the distribution with the machine-readable source of the X Package with your modifications. X c. give non-standard executables non-standard names, and clearly X document the differences in manual pages (or equivalent), together X with instructions on where to get the Standard Version. X d. make other distribution arrangements with the Copyright Holder. X X You may charge a reasonable copying fee for any distribution of this X Package. You may charge any fee you choose for support of this X Package. You may not charge a fee for this Package itself. However, X you may distribute this Package in aggregate with other (possibly X commercial) programs as part of a larger (possibly commercial) X software distribution provided that you do not advertise this Package X as a product of your own. You may embed this Package's interpreter X within an executable of yours (by linking); this shall be construed as X a mere form of aggregation, provided that the complete Standard X Version of the interpreter is so embedded. X X The scripts and library files supplied as input to or produced as X output from the programs of this Package do not automatically fall X under the copyright of this Package, but belong to whomever generated X them, and may be sold commercially, and may be aggregated with this X Package. If such scripts or library files are aggregated with this X Package via the so-called "undump" or "unexec" methods of producing a X binary executable image, then distribution of such an image shall X neither be construed as a distribution of this Package nor shall it X fall under the restrictions of Paragraphs 3 and 4, provided that you X do not represent such an executable image as a Standard Version of X this Package. X X C subroutines (or comparably compiled subroutines in other X languages) supplied by you and linked into this Package in order to X emulate subroutines and variables of the language defined by this X Package shall not be considered part of this Package, but are the X equivalent of input as in Paragraph 6, provided these subroutines do X not change the language in any way that would cause it to fail the X regression tests for the language. X X Aggregation of this Package with a commercial distribution is always X permitted provided that the use of this Package is embedded; that is, X when no overt attempt is made to make this Package's interfaces X visible to the end user of the commercial distribution. Such use shall X not be construed as a distribution of this Package. X X The name of the Copyright Holder may not be used to endorse or X promote products derived from this software without specific prior X written permission. X X THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED X WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF X MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. X X The End END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/ARTISTIC echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/Changes sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/Changes << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/Changes' X2006-11-16 Hatuka*nezumi - IKEDA Soji X X * Release 0.040. X * encode_mimewords(): New option 'Minimal' to control X minimal encoding behavior. X NOTE: Default behavior was changed from "NO" to "YES". X X2006-10-22 Hatuka*nezumi - IKEDA Soji X X * Release 0.032. X * More documentation changes. X X2006-10-20 Hatuka*nezumi - IKEDA Soji X X * Release 0.03.1 (not really released). X * Documentation changes only: Note on modifications, clarifications X about compatibility with MIME::Words. X X2006-10-17 Hatuka*nezumi - IKEDA Soji X X * Release 0.03. X * decode_mimewords: allow Unicode input. X * decode_mimewords: don't collapse spaces between '?='...'=?'. X * Bug fix: cannot encode null string. X * Handle wide characters exactly. X * Change die to croak. X X2006-10-13 Hatuka*nezumi - IKEDA Soji X X * Release 0.02. X * decode_mimewords: Fix bug about default charset. X * Supports Perl 5.005 or later. X Unicode/multibyte handling will be enabled on Perl 5.8.1 or later. X * Added test cases for encode_mimewords (only for singlebyte). X X2006-10-11 Hatuka*nezumi - IKEDA Soji X X * Release 0.01; Initial CPAN upload. END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/Changes echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/EncWords.pm sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/EncWords.pm << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/EncWords.pm' X Xpackage MIME::EncWords; Xuse 5.005; X X=head1 NAME X XMIME::EncWords - deal with RFC-1522 encoded words (improved) X X=head1 SYNOPSIS X XI is aimed to be another implimentation Xof L so that it will achive more exact conformance with XMIME specifications. Additionally, it contains some improvements. XFollowing synopsis and descriptions are inherited from its inspirer, Xwith description of improvements and clarifications added.> X XBefore reading further, you should see L to make sure that Xyou understand where this module fits into the grand scheme of things. XGo on, do it now. I'll wait. X XReady? Ok... X X use MIME::EncWords qw(:all); X X ### Decode the string into another string, forgetting the charsets: X $decoded = decode_mimewords( X 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X ); X X ### Split string into array of decoded [DATA,CHARSET] pairs: X @decoded = decode_mimewords( X 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X ); X X ### Encode a single unsafe word: X $encoded = encode_mimeword("\xABFran\xE7ois\xBB"); X X ### Encode a string, trying to find the unsafe words inside it: X $encoded = encode_mimewords("Me and \xABFran\xE7ois\xBB in town"); X X=head1 DESCRIPTION X XFellow Americans, you probably won't know what the hell this module Xis for. Europeans, Russians, et al, you probably do. C<:-)>. X XFor example, here's a valid MIME header you might get: X X From: =?US-ASCII?Q?Keith_Moore?= X To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= X CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard X Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?= X =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?= X =?US-ASCII?Q?.._cool!?= X XThe fields basically decode to (sorry, I can only approximate the XLatin characters with 7 bit sequences /o and 'e): X X From: Keith Moore X To: Keld J/orn Simonsen X CC: Andr'e Pirard X Subject: If you can read this you understand the example... cool! X XB: Fellow Americans, Europeans, you probably won't know Xwhat the hell this module is for. East Asians, et al, you probably do. XC<:-)>. X XFor example, here's a valid MIME header you might get: X X Subject: =?EUC-KR?B?sNTAuLinKGxhemluZXNzKSwgwvzB9ri7seIoaW1w?= X =?EUC-KR?B?YXRpZW5jZSksILGzuLgoaHVicmlzKQ==?= X XThe fields basically decode to (sorry, I cannot approximate the Xnon-Latin multibyte characters with any 7 bit sequences): X X Subject: ???(laziness), ????(impatience), ??(hubris) X X=head1 PUBLIC INTERFACE X X=over 4 X X=cut X X### Pragmas: Xuse strict; Xuse vars qw($VERSION @EXPORT_OK %EXPORT_TAGS @ISA); X X### Exporting: Xuse Exporter; X X%EXPORT_TAGS = (all => [qw(decode_mimewords X encode_mimeword X encode_mimewords)]); XExporter::export_ok_tags(qw(all)); X X### Inheritance: X@ISA = qw(Exporter); X X### Other modules: Xuse Carp; Xuse MIME::Base64; Xuse MIME::Charset qw(:trans); X Xmy @ENCODE_SUBS = qw(FB_CROAK decode encode from_to is_utf8 resolve_alias); Xif (MIME::Charset::USE_ENCODE) { X eval "use ".MIME::Charset::USE_ENCODE." \@ENCODE_SUBS;"; X} else { X require MIME::Charset::_Compat; X for my $sub (@ENCODE_SUBS) { X no strict "refs"; X *{$sub} = \&{"MIME::Charset::_Compat::$sub"}; X } X} X X#------------------------------ X# X# Globals... X# X#------------------------------ X X### The package version, both in 1.23 style *and* usable by MakeMaker: X$VERSION = '0.040'; X X### Nonprintables (controls + x7F + 8bit): X#my $NONPRINT = "\\x00-\\x1F\\x7F-\\xFF"; Xmy $PRINTABLE = "\\x21-\\x7E"; Xmy $NONPRINT = qr{[^$PRINTABLE]}; # Improvement: Unicode support. Xmy $UNSAFE = qr{[^\x01-\x20$PRINTABLE]}; Xmy $WIDECHAR = qr{[^\x00-\xFF]}; X X### Max line length: Xmy $MAXLINELEN = 76; X X#------------------------------ X X# _decode_B STRING X# Private: used by _decode_header() to decode "B" encoding. X# Improvement by this module: sanity check on encoded sequence. Xsub _decode_B { X my $str = shift; X unless ((length($str) % 4 == 0) and X $str =~ m|^[A-Za-z0-9+/]+={0,2}$|) { X return undef; X } X return decode_base64($str); X} X X# _decode_Q STRING X# Private: used by _decode_header() to decode "Q" encoding, which is X# almost, but not exactly, quoted-printable. :-P Xsub _decode_Q { X my $str = shift; X $str =~ s/_/\x20/g; # RFC-1522, Q rule 2 X $str =~ s/=([\da-fA-F]{2})/pack("C", hex($1))/ge; # RFC-1522, Q rule 1 X $str; X} X X# _encode_B STRING X# Private: used by encode_mimeword() to encode "B" encoding. Xsub _encode_B { X my $str = shift; X encode_base64($str, ''); X} X X# _encode_Q STRING X# Private: used by encode_mimeword() to encode "Q" encoding, which is X# almost, but not exactly, quoted-printable. :-P X# Improvement by this module: Spaces are escaped by ``_''. Xsub _encode_Q { X my $str = shift; X # $str =~ s{([_\?\=$NONPRINT])}{sprintf("=%02X", ord($1))}eog; X $str =~ s{(\x20)|([_?=]|$NONPRINT)}{ X defined $1? "_": sprintf("=%02X", ord($2)) X }eog; X $str; X} X X#------------------------------ X X=item decode_mimewords ENCODED, [OPTS...] X XI XGo through the string looking for RFC-1522-style "Q" X(quoted-printable, sort of) or "B" (base64) encoding, and decode them. X XB splits the ENCODED string into a list of decoded XC<[DATA, CHARSET]> pairs, and returns that list. Unencoded Xdata are returned in a 1-element array C<[DATA]>, giving an effective XCHARSET of C. X X $enc = '=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= '; X foreach (decode_mimewords($enc)) { X print "", ($_[1] || 'US-ASCII'), ": ", $_[0], "\n"; X } X XB joins the "data" elements of the above Xlist together, and returns that. I Xand probably I what you want, but if you know that all charsets Xin the ENCODED string are identical, it might be useful to you. X(Before you use this, please see L, Xwhich is probably what you want.) XB: See also "Charset" option below. X XIn the event of a syntax error, $@ will be set to a description Xof the error, but parsing will continue as best as possible (so as to Xget I back when decoding headers). X$@ will be false if no error was detected. X XAny arguments past the ENCODED string are taken to define a hash of options: X X=over 4 X X=item Charset X XB: XName of character set by which data elements in scalar context Xwill be converted. XIf this option is specified as special value C<"_UNICODE_">, Xreturned value will be Unicode string. X XWhen Unicode/multibyte support is disabled X(see L), Xthis option will not have any effects. X XB: XThis feature is still information-lossy, I when C<"_UNICODE_"> is Xspecified. X X=item Field X XName of the mail field this string came from. I X X=back X XB: XAdjacent encoded-words with same charset will be concatenated Xto handle multibyte sequences safely. X XB: XMalformed base64 encoded-words will be kept encoded. XIn this case $@ will be set. X XB: XWhitespaces surrounding unencoded data will not be stripped. X X=cut X Xsub decode_mimewords { X my $encstr = shift; X my %params = @_; X my $cset = $params{"Charset"}; X my @tokens; X $@ = ''; ### error-return X X ### Decode: X my ($word, $charset, $encoding, $enc, $dec); X my $spc = ''; X pos($encstr) = 0; X while (1) { X last if (pos($encstr) >= length($encstr)); X my $pos = pos($encstr); ### save it X X ### Case 1: are we looking at "=?..?..?="? X if ($encstr =~ m{\G # from where we left off.. X =\?([^?]*) # "=?" + charset + X \?([bq]) # "?" + encoding + X \?([^?]+) # "?" + data maybe with spcs + X \?= # "?=" X ([\r\n\t ]*) X }xgi) { X ($word, $charset, $encoding, $enc) = ($&, $1, lc($2), $3); X my $tspc = $4; X if ($encoding eq 'q') { X $dec = _decode_Q($enc); X } else { X $dec = _decode_B($enc); X } X unless (defined $dec) { X $@ .= qq|Illegal sequence in "$word" (pos $pos)\n|; X push @tokens, [$spc.$word]; X $spc = ''; X next; X } X X if (scalar(@tokens) and X lc($charset) eq lc(${$tokens[-1]}[1]) and X resolve_alias($charset)) { # Concat words if possible. X ${$tokens[-1]}[0] .= $dec; X } else { X push @tokens, [$dec, $charset]; X } X $spc = $tspc; X next; X } X X ### Case 2: are we looking at a bad "=?..." prefix? X ### We need this to detect problems for case 3, which stops at "=?": X pos($encstr) = $pos; # reset the pointer. X if ($encstr =~ m{\G=\?}xg) { X $@ .= qq|unterminated "=?..?..?=" in "$encstr" (pos $pos)\n|; X push @tokens, [$spc.'=?']; X $spc = ''; X next; X } X X ### Case 3: are we looking at ordinary text? X pos($encstr) = $pos; # reset the pointer. X if ($encstr =~ m{\G # from where we left off... X (.*? # shortest possible string, X \n*) # followed by 0 or more NLs, X (?=(\Z|=\?)) # terminated by "=?" or EOS X }xgs) { X length($1) or croak "MIME::EncWords: internal logic err: empty token\n"; X push @tokens, [$spc.$1]; X $spc = ''; X next; X } X X ### Case 4: bug! X croak "MIME::EncWords: unexpected case:\n($encstr) pos $pos\n\t". X "Please alert developer.\n"; X } X push @tokens, [$spc] if $spc; X X return (wantarray ? @tokens : join('',map { X &_convert($_->[0], $_->[1], $cset) X } @tokens)); X} X X#------------------------------ X X# _convert RAW, FROMCHARSET, TOCHARSET X# Private: used by encode_mimewords() to convert string by other charset X# or to decode to Unicode. X# When source charset is unknown and Unicode string is requested, at first X# try well-formed UTF-8 then fallback to ISO-8859-1 so that almost all X# non-ASCII bytes will be preserved. Xsub _convert($$$) { X my $s = shift; X my $charset = shift || ""; X my $cset = shift; X return $s unless MIME::Charset::USE_ENCODE; X return $s unless $cset; X return $s if uc($charset) eq uc($cset); X X my $preserveerr = $@; X X my $converted = $s; X if (is_utf8($s) or $s =~ $WIDECHAR) { X if ($cset ne "_UNICODE_") { X $converted = encode($cset, $converted); X } X } elsif ($cset eq "_UNICODE_") { X if (!resolve_alias($charset)) { X if ($s =~ $UNSAFE) { X $@ = ''; X eval { X $converted = decode("UTF-8", $converted, FB_CROAK()); X }; X if ($@) { X $converted = $s; X $converted = decode("ISO-8859-1", $converted); X } X } X } else { X $converted = decode($charset, $converted); X } X } elsif (resolve_alias($charset)) { X from_to($converted, $charset, $cset); X } X X $@ = $preserveerr; X return $converted; X} X X#------------------------------ X X=item encode_mimeword RAW, [ENCODING], [CHARSET] X XI XEncode a single RAW "word" that has unsafe characters. XThe "word" will be encoded in its entirety. X X ### Encode "<>": X $encoded = encode_mimeword("\xABFran\xE7ois\xBB"); X XYou may specify the ENCODING (C<"Q"> or C<"B">), which defaults to C<"Q">. XB: XYou may also specify it as ``special'' value: C<"S"> to choose shorter Xone of either C<"Q"> or C<"B">. X XYou may specify the CHARSET, which defaults to C. X XB: XSpaces will be escaped with ``_'' by C<"Q"> encoding. X X=cut X Xsub encode_mimeword { X my $word = shift; X my $encoding = uc(shift || 'Q'); X my $charset = uc(shift || 'ISO-8859-1'); X X my $encstr; X if ($encoding eq 'Q') { X $encstr = &_encode_Q($word); X } elsif ($encoding eq "S") { X if (encoded_header_len($word, "B", $charset) < X encoded_header_len($word, "Q", $charset)) { X $encoding = "B"; X $encstr = &_encode_B($word); X } else { X $encoding = "Q"; X $encstr = &_encode_Q($word); X } X } else { # "B" X $encoding = "B"; X $encstr = &_encode_B($word); X } X X "=?$charset?$encoding?$encstr?="; X} X X#------------------------------ X X=item encode_mimewords RAW, [OPTS] X XI XGiven a RAW string, try to find and encode all "unsafe" sequences Xof characters: X X ### Encode a string with some unsafe "words": X $encoded = encode_mimewords("Me and \xABFran\xE7ois\xBB"); X XReturns the encoded string. X XB: XRAW may be a Unicode string when Unicode/multibyte support is enabled X(see L). XFurthermore, RAW may be a reference to that returned Xby L<"decode_mimewords"> on array context. In latter case "Charset" Xoption (see below) will be overridden (see also notes below). X XAny arguments past the RAW string are taken to define a hash of options: X X=over 4 X X=item Charset X XEncode all unsafe stuff with this charset. Default is 'ISO-8859-1', Xa.k.a. "Latin-1". X X=item Detect7bit X XB: XWhen "Encoding" option (see below) is specified as C<"a"> and "Charset" Xoption is unknown, try to detect 7-bit charset on given RAW string. XDefault is C<"YES">. XWhen Unicode/multibyte support is disabled, Xthis option will not have any effects X(see L). X X=item Encoding X XThe encoding to use, C<"q"> or C<"b">. The default is C<"q">. XB: XYou may also specify ``special'' values: C<"a"> will automatically choose Xrecommended encoding to use (with charset conversion if alternative Xcharset is recommended: see L); XC<"s"> will choose shorter one of either C<"q"> or C<"b">. X X=item Field X XName of the mail field this string will be used in. XB: XLength of mail field name will be considered in the first line of Xencoded header. X X=item Minimal X XB: XTakes care of natural word separators (i.e. whitespaces) Xin the text to be encoded. XIf C<"NO"> is specified, this module will encode whole text X(if encoding needed) not regarding whitespaces; Xencoded-words exceeding line length will be splitted based only on their Xlengths. XDefault is C<"YES">. X XB: XAs of release 0.040, default has been changed to C<"YES"> to ensure Xcompatibility with MIME::Words. XOn earlier releases, this option was fixed to be C<"NO">. X X=back X XB: XWhen RAW is an arrayref, Xadjacent encoded-words are concatenated. Then they are splitted taking Xcare of character boundaries of multibyte sequences, when Unicode/multibyte Xsupport is enabled. XPortions for unencoded data should include surrounding whitespace(s), or Xthey will be merged into adjoining encoded word(s). X X=cut X Xsub encode_mimewords { X my $words = shift; X my %params = @_; X my $charset = uc($params{'Charset'}); X my $detect7bit = uc($params{'Detect7bit'} || "YES"); X my $encoding = uc($params{'Encoding'}); X my $header_name = $params{'Field'}; X my $minimal = uc($params{'Minimal'} || "YES"); X my $firstlinelen = $MAXLINELEN; X if ($header_name) { X $firstlinelen -= length($header_name.': '); X } X X unless (ref($words) eq "ARRAY") { X if ($minimal eq "YES") { X my @words = map {[$_, $charset]} split(/((?:\A|[\t ])[\t \x21-\x7E]+(?:[\t ]|\Z))/, $words); X $words = \@words; X } else { X $words = [[$words, $charset]]; X } X } X X # Translate / concatenate words. X my @triplets; X foreach (@$words) { X my ($s, $cset) = @$_; X my $enc; X X next unless length($s); X X # Unicode string should be encoded by given charset. X # Unsupported charset will be fallbacked to UTF-8. X if (is_utf8($s) or $s =~ $WIDECHAR) { X unless (resolve_alias($cset)) { X if ($s !~ $UNSAFE) { X $cset = "US-ASCII"; X } else { X $cset = "UTF-8"; X } X } X $s = encode($cset, $s); X } X X # Determine charset and encoding. X if ($encoding eq "A") { X ($s, $cset, $enc) = X header_encode($s, $cset || $charset, X Detect7bit => $detect7bit); X } else { X $cset ||= ($charset || ($s !~ $UNSAFE)? "US-ASCII": "ISO-8859-1"); X $enc = $encoding || X (($s !~ $UNSAFE and $cset eq "US-ASCII")? undef: "Q"); X } X X # Concatenate adjacent ``words'' so that multibyte sequences will X # be handled safely. X # Note: Encoded-word and unencoded text must not adjoin without X # separating whitespace(s). X if (scalar(@triplets)) { X my ($last, $lastenc, $lastcset) = @{$triplets[-1]}; X if (uc($lastcset) eq uc($cset) and uc($lastenc) eq uc($enc) and X resolve_alias($cset)) { X ${$triplets[-1]}[0] .= $s; X next; X } elsif (!$lastenc and $enc and $last !~ /[\t ]$/) { X if ($last =~ /^(.*)[\t ]([$PRINTABLE]+)$/s) { X ${$triplets[-1]}[0] = $1." "; X $s = $2.$s; X } elsif (uc($lastcset) eq "US-ASCII") { X ${$triplets[-1]}[0] .= $s; X ${$triplets[-1]}[1] = $enc; X ${$triplets[-1]}[2] = $cset; X next; X } X } elsif ($lastenc and !$enc and $s !~ /^[\t ]/) { X if ($s =~ /^([$PRINTABLE]+)[\t ](.*)$/s) { X ${$triplets[-1]}[0] .= $1; X $s = " ".$2; X } elsif (uc($cset) eq "US-ASCII") { X ${$triplets[-1]}[0] .= $s; X next; X } X } X } X push @triplets, [$s, $enc, $cset]; X } X X # Split long ``words''. X my @splitted; X my $restlen = $firstlinelen; X my $lastlen = 0; X foreach (@triplets) { X my ($s, $enc, $cset) = @$_; X X my $restlen = $restlen - $lastlen - 1; X if ($restlen < ($enc? encoded_header_len('', $enc, $cset): 1)) { X $restlen = $MAXLINELEN - 1; X } X X push @splitted, &_split($s, $enc, $cset, $restlen); X my ($last, $lastenc, $lastcset) = @{$splitted[-1]}; X if ($lastenc) { X $lastlen = encoded_header_len($last, $lastenc, $lastcset); X } else { X $lastlen = length($last); X } X } X X # Do encoding. X my @lines; X my $linelen = $firstlinelen; X foreach (@splitted) { X my ($str, $encoding, $charset) = @$_; X next unless length($str); X X my $s; X if (!$encoding) { X $s = $str; X } else { X $s = &encode_mimeword($str, $encoding, $charset); X } X X my $spc = (scalar(@lines) and $lines[-1] =~ /[\t ]$/)? '': ' '; X if (!scalar(@lines)) { X $s =~ s/^[\r\n\t ]+//; X push @lines, $s; X } elsif (length($lines[-1]) + length($s) <= $linelen) { X $lines[-1] .= $spc.$s; X } else { X $s =~ s/^[\r\n\t ]+//; X push @lines, $s; X $linelen = $MAXLINELEN - 1; X } X } X X join("\n ", @lines); X} X X#------------------------------ X X# _split RAW, ENCODING, CHARSET, ROOM_OF_FIRST_LINE X# Private: used by encode_mimewords() to split a string into X# (encoded or non-encoded) words. X# Returns an array of arrayrefs [SUBSTRING, ENCODING, CHARSET]. Xsub _split { X my $str = shift; X my $encoding = shift; X my $charset = shift; X my $restlen = shift; X X if (!$charset or $charset eq '8BIT') { # Undecodable. X $str =~ s/[\r\n]+[\t ]*|\x00/ /g; # Eliminate hostile characters. X return ([$str, undef, $charset]); X } X unless (resolve_alias($charset)) { # Unsupported charset. X return ([$str, $encoding, $charset]); X } X if (!$encoding and $charset eq 'US-ASCII') { X return &_split_ascii($str, $restlen); X } X X my (@splitted, $ustr, $first); X while (length($str)) { X if (encoded_header_len($str, $encoding, $charset) <= $restlen) { X push @splitted, [$str, $encoding, $charset]; X last; X } X $ustr = $str; X $ustr = decode($charset, $ustr); X ($first, $str) = &_clip_unsafe($ustr, $encoding, $charset, $restlen); X push @splitted, [$first, $encoding, $charset]; X $restlen = $MAXLINELEN - 1; X } X return @splitted; X} X X# _split_ascii RAW, ROOM_OF_FIRST_LINE X# Private: used by encode_mimewords() to split an US-ASCII string into X# (encoded or non-encoded) words. X# Returns an array of arrayrefs [SUBSTRING, ENCODING, "US-ASCII"], X# where ENCODING is either undef or (if any unsafe sequences are X# included) "Q". Xsub _split_ascii { X my $s = shift; X my $restlen = shift || $MAXLINELEN - 1; X X my @splitted; X foreach my $line (split(/[\r\n]+/, $s)) { X $line =~ s/^[\t ]+//; X X if (length($line) < $restlen and $line !~ /=\?|$UNSAFE/) { X push @splitted, [$line, undef, "US-ASCII"]; X $restlen = $MAXLINELEN - 1; X next; X } X X my ($spc, $enc); X foreach my $word (split(/([\t ]+)/, $line)) { X if ($word =~ /[\t ]/) { X $spc = $word; X next; X } X X $enc = ($word =~ /=\?|$UNSAFE/)? "Q": undef; X if (scalar(@splitted)) { X my ($last, $lastenc, $lastcset) = @{$splitted[-1]}; X my ($elen, $cont, $appe); X X # Concatenate adjacent words so that encoded-word and X # unencoded text will adjoin with separating whitespace. X if (!$lastenc and !$enc) { X $elen = length($spc.$word); X ($cont, $appe) = ($spc.$word, ""); X } elsif (!$lastenc and $enc) { X $elen = length($spc) + X encoded_header_len($word, "Q", "US-ASCII"); X ($cont, $appe) = ($spc, $word); X } elsif ($lastenc and !$enc) { X $elen = length($spc.$word); X ($cont, $appe) = ("", $spc.$word); X } else { X $elen = encoded_header_len($spc.$word, "Q", X "US-ASCII") - 15; X ($cont, $appe) = ($spc.$word, ""); X } X X if ($elen <= $restlen) { X ${$splitted[-1]}[0] .= $cont if length($cont); X push @splitted, [$appe, $enc, "US-ASCII"] if length($appe); X $restlen -= $elen; X next; X } X $restlen = $MAXLINELEN - 1; X } X push @splitted, [$word, $enc, "US-ASCII"]; X $restlen -= ($enc? X encoded_header_len($word, "Q", "US-ASCII"): X length($word)); X } X } X return @splitted; X} X X# _clip_unsafe UNICODE, ENCODING, CHARSET, ROOM_OF_FIRST_LINE X# Private: used by encode_mimewords() to bite off one encodable X# ``word'' from a Unicode string. Xsub _clip_unsafe { X my $ustr = shift; X my $encoding = shift; X my $charset = shift; X my $restlen = shift; X return ("", "") unless length($ustr); X X # Seek maximal division point. X my ($shorter, $longer) = (0, length($ustr)); X while ($shorter < $longer) { X my $cur = int(($shorter + $longer + 1) / 2); X my $enc = encode($charset, substr($ustr, 0, $cur)); X my $elen = encoded_header_len($enc, $encoding, $charset); X if ($elen <= $restlen) { X $shorter = $cur; X } else { X $longer = $cur - 1; X } X } X X # Make sure that combined characters won't be divided. X my ($fenc, $renc); X my $max = length($ustr); X while (1) { X $@ = ''; X eval { X ($fenc, $renc) = X (substr($ustr, 0, $shorter), substr($ustr, $shorter)); X $fenc = encode($charset, $fenc, FB_CROAK()); X $renc = encode($charset, $renc, FB_CROAK()); X }; X last unless ($@); X X $shorter++; X unless ($shorter < $max) { # Unencodable characters are included. X return (encode($charset, $ustr), ""); X } X } X X if (length($fenc)) { X return ($fenc, $renc); X } else { X return ($renc, ""); X } X} X X#------------------------------ X X=back X X=head1 VERSION X XConsult $VERSION variable. X XDevelopment versions of this module may be found at XL. X X=head1 SEE ALSO X XL, XL X X=head1 AUTHORS X XThe original version of function decode_mimewords() is derived from XL module that was written by: X Eryq (F), ZeeGee Software Inc (F). X David F. Skoll (dfs@roaringpenguin.com) http://www.roaringpenguin.com X XOther stuff are rewritten or added by: X Hatuka*nezumi - IKEDA Soji . X XAll rights reserved. This program is free software; you can redistribute Xit and/or modify it under the same terms as Perl itself. X X=cut X X1; END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/EncWords.pm echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/GPL sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/GPL << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/GPL' X GNU GENERAL PUBLIC LICENSE X Version 2, June 1991 X X Copyright (C) 1989, 1991 Free Software Foundation, Inc. X 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA X Everyone is permitted to copy and distribute verbatim copies X of this license document, but changing it is not allowed. X X Preamble X X The licenses for most software are designed to take away your Xfreedom to share and change it. By contrast, the GNU General Public XLicense is intended to guarantee your freedom to share and change free Xsoftware--to make sure the software is free for all its users. This XGeneral Public License applies to most of the Free Software XFoundation's software and to any other program whose authors commit to Xusing it. (Some other Free Software Foundation software is covered by Xthe GNU Library General Public License instead.) You can apply it to Xyour programs, too. X X When we speak of free software, we are referring to freedom, not Xprice. Our General Public Licenses are designed to make sure that you Xhave the freedom to distribute copies of free software (and charge for Xthis service if you wish), that you receive source code or can get it Xif you want it, that you can change the software or use pieces of it Xin new free programs; and that you know you can do these things. X X To protect your rights, we need to make restrictions that forbid Xanyone to deny you these rights or to ask you to surrender the rights. XThese restrictions translate to certain responsibilities for you if you Xdistribute copies of the software, or if you modify it. X X For example, if you distribute copies of such a program, whether Xgratis or for a fee, you must give the recipients all the rights that Xyou have. You must make sure that they, too, receive or can get the Xsource code. And you must show them these terms so they know their Xrights. X X We protect your rights with two steps: (1) copyright the software, and X(2) offer you this license which gives you legal permission to copy, Xdistribute and/or modify the software. X X Also, for each author's protection and ours, we want to make certain Xthat everyone understands that there is no warranty for this free Xsoftware. If the software is modified by someone else and passed on, we Xwant its recipients to know that what they have is not the original, so Xthat any problems introduced by others will not reflect on the original Xauthors' reputations. X X Finally, any free program is threatened constantly by software Xpatents. We wish to avoid the danger that redistributors of a free Xprogram will individually obtain patent licenses, in effect making the Xprogram proprietary. To prevent this, we have made it clear that any Xpatent must be licensed for everyone's free use or not licensed at all. X X The precise terms and conditions for copying, distribution and Xmodification follow. X X GNU GENERAL PUBLIC LICENSE X TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION X X 0. This License applies to any program or other work which contains Xa notice placed by the copyright holder saying it may be distributed Xunder the terms of this General Public License. The "Program", below, Xrefers to any such program or work, and a "work based on the Program" Xmeans either the Program or any derivative work under copyright law: Xthat is to say, a work containing the Program or a portion of it, Xeither verbatim or with modifications and/or translated into another Xlanguage. (Hereinafter, translation is included without limitation in Xthe term "modification".) Each licensee is addressed as "you". X XActivities other than copying, distribution and modification are not Xcovered by this License; they are outside its scope. The act of Xrunning the Program is not restricted, and the output from the Program Xis covered only if its contents constitute a work based on the XProgram (independent of having been made by running the Program). XWhether that is true depends on what the Program does. X X 1. You may copy and distribute verbatim copies of the Program's Xsource code as you receive it, in any medium, provided that you Xconspicuously and appropriately publish on each copy an appropriate Xcopyright notice and disclaimer of warranty; keep intact all the Xnotices that refer to this License and to the absence of any warranty; Xand give any other recipients of the Program a copy of this License Xalong with the Program. X XYou may charge a fee for the physical act of transferring a copy, and Xyou may at your option offer warranty protection in exchange for a fee. X X 2. You may modify your copy or copies of the Program or any portion Xof it, thus forming a work based on the Program, and copy and Xdistribute such modifications or work under the terms of Section 1 Xabove, provided that you also meet all of these conditions: X X a) You must cause the modified files to carry prominent notices X stating that you changed the files and the date of any change. X X b) You must cause any work that you distribute or publish, that in X whole or in part contains or is derived from the Program or any X part thereof, to be licensed as a whole at no charge to all third X parties under the terms of this License. X X c) If the modified program normally reads commands interactively X when run, you must cause it, when started running for such X interactive use in the most ordinary way, to print or display an X announcement including an appropriate copyright notice and a X notice that there is no warranty (or else, saying that you provide X a warranty) and that users may redistribute the program under X these conditions, and telling the user how to view a copy of this X License. (Exception: if the Program itself is interactive but X does not normally print such an announcement, your work based on X the Program is not required to print an announcement.) X XThese requirements apply to the modified work as a whole. If Xidentifiable sections of that work are not derived from the Program, Xand can be reasonably considered independent and separate works in Xthemselves, then this License, and its terms, do not apply to those Xsections when you distribute them as separate works. But when you Xdistribute the same sections as part of a whole which is a work based Xon the Program, the distribution of the whole must be on the terms of Xthis License, whose permissions for other licensees extend to the Xentire whole, and thus to each and every part regardless of who wrote it. X XThus, it is not the intent of this section to claim rights or contest Xyour rights to work written entirely by you; rather, the intent is to Xexercise the right to control the distribution of derivative or Xcollective works based on the Program. X XIn addition, mere aggregation of another work not based on the Program Xwith the Program (or with a work based on the Program) on a volume of Xa storage or distribution medium does not bring the other work under Xthe scope of this License. X X 3. You may copy and distribute the Program (or a work based on it, Xunder Section 2) in object code or executable form under the terms of XSections 1 and 2 above provided that you also do one of the following: X X a) Accompany it with the complete corresponding machine-readable X source code, which must be distributed under the terms of Sections X 1 and 2 above on a medium customarily used for software interchange; or, X X b) Accompany it with a written offer, valid for at least three X years, to give any third party, for a charge no more than your X cost of physically performing source distribution, a complete X machine-readable copy of the corresponding source code, to be X distributed under the terms of Sections 1 and 2 above on a medium X customarily used for software interchange; or, X X c) Accompany it with the information you received as to the offer X to distribute corresponding source code. (This alternative is X allowed only for noncommercial distribution and only if you X received the program in object code or executable form with such X an offer, in accord with Subsection b above.) X XThe source code for a work means the preferred form of the work for Xmaking modifications to it. For an executable work, complete source Xcode means all the source code for all modules it contains, plus any Xassociated interface definition files, plus the scripts used to Xcontrol compilation and installation of the executable. However, as a Xspecial exception, the source code distributed need not include Xanything that is normally distributed (in either source or binary Xform) with the major components (compiler, kernel, and so on) of the Xoperating system on which the executable runs, unless that component Xitself accompanies the executable. X XIf distribution of executable or object code is made by offering Xaccess to copy from a designated place, then offering equivalent Xaccess to copy the source code from the same place counts as Xdistribution of the source code, even though third parties are not Xcompelled to copy the source along with the object code. X X 4. You may not copy, modify, sublicense, or distribute the Program Xexcept as expressly provided under this License. Any attempt Xotherwise to copy, modify, sublicense or distribute the Program is Xvoid, and will automatically terminate your rights under this License. XHowever, parties who have received copies, or rights, from you under Xthis License will not have their licenses terminated so long as such Xparties remain in full compliance. X X 5. You are not required to accept this License, since you have not Xsigned it. However, nothing else grants you permission to modify or Xdistribute the Program or its derivative works. These actions are Xprohibited by law if you do not accept this License. Therefore, by Xmodifying or distributing the Program (or any work based on the XProgram), you indicate your acceptance of this License to do so, and Xall its terms and conditions for copying, distributing or modifying Xthe Program or works based on it. X X 6. Each time you redistribute the Program (or any work based on the XProgram), the recipient automatically receives a license from the Xoriginal licensor to copy, distribute or modify the Program subject to Xthese terms and conditions. You may not impose any further Xrestrictions on the recipients' exercise of the rights granted herein. XYou are not responsible for enforcing compliance by third parties to Xthis License. X X 7. If, as a consequence of a court judgment or allegation of patent Xinfringement or for any other reason (not limited to patent issues), Xconditions are imposed on you (whether by court order, agreement or Xotherwise) that contradict the conditions of this License, they do not Xexcuse you from the conditions of this License. If you cannot Xdistribute so as to satisfy simultaneously your obligations under this XLicense and any other pertinent obligations, then as a consequence you Xmay not distribute the Program at all. For example, if a patent Xlicense would not permit royalty-free redistribution of the Program by Xall those who receive copies directly or indirectly through you, then Xthe only way you could satisfy both it and this License would be to Xrefrain entirely from distribution of the Program. X XIf any portion of this section is held invalid or unenforceable under Xany particular circumstance, the balance of the section is intended to Xapply and the section as a whole is intended to apply in other Xcircumstances. X XIt is not the purpose of this section to induce you to infringe any Xpatents or other property right claims or to contest validity of any Xsuch claims; this section has the sole purpose of protecting the Xintegrity of the free software distribution system, which is Ximplemented by public license practices. Many people have made Xgenerous contributions to the wide range of software distributed Xthrough that system in reliance on consistent application of that Xsystem; it is up to the author/donor to decide if he or she is willing Xto distribute software through any other system and a licensee cannot Ximpose that choice. X XThis section is intended to make thoroughly clear what is believed to Xbe a consequence of the rest of this License. X X 8. If the distribution and/or use of the Program is restricted in Xcertain countries either by patents or by copyrighted interfaces, the Xoriginal copyright holder who places the Program under this License Xmay add an explicit geographical distribution limitation excluding Xthose countries, so that distribution is permitted only in or among Xcountries not thus excluded. In such case, this License incorporates Xthe limitation as if written in the body of this License. X X 9. The Free Software Foundation may publish revised and/or new versions Xof the General Public License from time to time. Such new versions will Xbe similar in spirit to the present version, but may differ in detail to Xaddress new problems or concerns. X XEach version is given a distinguishing version number. If the Program Xspecifies a version number of this License which applies to it and "any Xlater version", you have the option of following the terms and conditions Xeither of that version or of any later version published by the Free XSoftware Foundation. If the Program does not specify a version number of Xthis License, you may choose any version ever published by the Free Software XFoundation. X X 10. If you wish to incorporate parts of the Program into other free Xprograms whose distribution conditions are different, write to the author Xto ask for permission. For software which is copyrighted by the Free XSoftware Foundation, write to the Free Software Foundation; we sometimes Xmake exceptions for this. Our decision will be guided by the two goals Xof preserving the free status of all derivatives of our free software and Xof promoting the sharing and reuse of software generally. X X NO WARRANTY X X 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY XFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN XOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES XPROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED XOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF XMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS XTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE XPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, XREPAIR OR CORRECTION. X X 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING XWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR XREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, XINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING XOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED XTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY XYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER XPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE XPOSSIBILITY OF SUCH DAMAGES. X X END OF TERMS AND CONDITIONS X X X How to Apply These Terms to Your New Programs X X If you develop a new program, and you want it to be of the greatest Xpossible use to the public, the best way to achieve this is to make it Xfree software which everyone can redistribute and change under these terms. X X To do so, attach the following notices to the program. It is safest Xto attach them to the start of each source file to most effectively Xconvey the exclusion of warranty; and each file should have at least Xthe "copyright" line and a pointer to where the full notice is found. X X X Copyright (C) 19yy X X This program is free software; you can redistribute it and/or modify X it under the terms of the GNU General Public License as published by X the Free Software Foundation; either version 2 of the License, or X (at your option) any later version. X X This program is distributed in the hope that it will be useful, X but WITHOUT ANY WARRANTY; without even the implied warranty of X MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the X GNU General Public License for more details. X X You should have received a copy of the GNU General Public License X along with this program; if not, write to the Free Software X Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA X X XAlso add information on how to contact you by electronic and paper mail. X XIf the program is interactive, make it output a short notice like this Xwhen it starts in an interactive mode: X X Gnomovision version 69, Copyright (C) 19yy name of author X Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. X This is free software, and you are welcome to redistribute it X under certain conditions; type `show c' for details. X XThe hypothetical commands `show w' and `show c' should show the appropriate Xparts of the General Public License. Of course, the commands you use may Xbe called something other than `show w' and `show c'; they could even be Xmouse-clicks or menu items--whatever suits your program. X XYou should also get your employer (if you work as a programmer) or your Xschool, if any, to sign a "copyright disclaimer" for the program, if Xnecessary. Here is a sample; alter the names: X X Yoyodyne, Inc., hereby disclaims all copyright interest in the program X `Gnomovision' (which makes passes at compilers) written by James Hacker. X X , 1 April 1989 X Ty Coon, President of Vice X XThis General Public License does not permit incorporating your program into Xproprietary programs. If your program is a subroutine library, you may Xconsider it more useful to permit linking proprietary applications with the Xlibrary. If this is what you want to do, use the GNU Library General XPublic License instead of this License. END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/GPL echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/MANIFEST sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/MANIFEST << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/MANIFEST' XARTISTIC XChanges XEncWords.pm XGPL XMakefile.PL XMANIFEST This list of files XMETA.yml Module meta-data (added by MakeMaker) XREADME Xt/01decode.t Xt/02encode.t Xtestin/decode-singlebyte.txt Xtestin/encode-singlebyte.txt END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/MANIFEST echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/META.yml sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/META.yml << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/META.yml' X# http://module-build.sourceforge.net/META-spec.html X#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# Xname: MIME-EncWords Xversion: 0.040 Xversion_from: EncWords.pm Xinstalldirs: site Xrequires: X Encode: 1.98 X MIME::Base64: 2.13 X MIME::Charset: 0.04.1 X Test: 0 X Xdistribution_type: module Xgenerated_by: ExtUtils::MakeMaker version 6.17 END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/META.yml echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile.PL sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile.PL << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile.PL' Xuse ExtUtils::MakeMaker; X XWriteMakefile( X 'NAME' => 'MIME::EncWords', X 'ABSTRACT_FROM' => 'EncWords.pm', X 'VERSION_FROM' => 'EncWords.pm', X 'PREREQ_PM' => ($] >= 5.008001)? { X 'Encode' => 1.98, X 'MIME::Charset' => '0.04.1', X 'MIME::Base64' => 2.13, X 'Test' => 0, X }: { X 'MIME::Charset' => '0.04.1', X 'MIME::Base64' => 2.13, X 'Test' => 0, X }, X); X END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile.PL echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/README sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/README << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/README' XNAME X MIME::EncWords - deal with RFC-1522 encoded words (improved) X XSYNOPSIS X *MIME::EncWords is aimed to be another implimentation of MIME::Words so X that it will achive more exact conformance with MIME specifications. X Additionally, it contains some improvements. Following synopsis and X descriptions are inherited from its inspirer, with description of X improvements and clarifications added.* X X Before reading further, you should see MIME::Tools to make sure that you X understand where this module fits into the grand scheme of things. Go X on, do it now. I'll wait. X X Ready? Ok... X X use MIME::EncWords qw(:all); X X ### Decode the string into another string, forgetting the charsets: X $decoded = decode_mimewords( X 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X ); X X ### Split string into array of decoded [DATA,CHARSET] pairs: X @decoded = decode_mimewords( X 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X ); X X ### Encode a single unsafe word: X $encoded = encode_mimeword("\xABFran\xE7ois\xBB"); X X ### Encode a string, trying to find the unsafe words inside it: X $encoded = encode_mimewords("Me and \xABFran\xE7ois\xBB in town"); X XDESCRIPTION X Fellow Americans, you probably won't know what the hell this module is X for. Europeans, Russians, et al, you probably do. ":-)". X X For example, here's a valid MIME header you might get: X X From: =?US-ASCII?Q?Keith_Moore?= X To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= X CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard X Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?= X =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?= X =?US-ASCII?Q?.._cool!?= X X The fields basically decode to (sorry, I can only approximate the Latin X characters with 7 bit sequences /o and 'e): X X From: Keith Moore X To: Keld J/orn Simonsen X CC: Andr'e Pirard X Subject: If you can read this you understand the example... cool! X X Supplement: Fellow Americans, Europeans, you probably won't know what X the hell this module is for. East Asians, et al, you probably do. ":-)". X X For example, here's a valid MIME header you might get: X X Subject: =?EUC-KR?B?sNTAuLinKGxhemluZXNzKSwgwvzB9ri7seIoaW1w?= X =?EUC-KR?B?YXRpZW5jZSksILGzuLgoaHVicmlzKQ==?= X X The fields basically decode to (sorry, I cannot approximate the X non-Latin multibyte characters with any 7 bit sequences): X X Subject: ???(laziness), ????(impatience), ??(hubris) X XPUBLIC INTERFACE X decode_mimewords ENCODED, [OPTS...] X *Function.* Go through the string looking for RFC-1522-style "Q" X (quoted-printable, sort of) or "B" (base64) encoding, and decode X them. X X In an array context, splits the ENCODED string into a list of X decoded "[DATA, CHARSET]" pairs, and returns that list. Unencoded X data are returned in a 1-element array "[DATA]", giving an effective X CHARSET of "undef". X X $enc = '=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= '; X foreach (decode_mimewords($enc)) { X print "", ($_[1] || 'US-ASCII'), ": ", $_[0], "\n"; X } X X In a scalar context, joins the "data" elements of the above list X together, and returns that. *Warning: this is information-lossy,* X and probably *not* what you want, but if you know that all charsets X in the ENCODED string are identical, it might be useful to you. X (Before you use this, please see "unmime" in MIME::WordDecoder, X which is probably what you want.) Note: See also "Charset" option X below. X X In the event of a syntax error, $@ will be set to a description of X the error, but parsing will continue as best as possible (so as to X get *something* back when decoding headers). $@ will be false if no X error was detected. X X Any arguments past the ENCODED string are taken to define a hash of X options: X X Charset X Improvement by this module: Name of character set by which data X elements in scalar context will be converted. If this option is X specified as special value "_UNICODE_", returned value will be X Unicode string. X X When Unicode/multibyte support is disabled (see "USE_ENCODE" in X MIME::Charset), this option will not have any effects. X X Note: This feature is still information-lossy, *except* when X "_UNICODE_" is specified. X X Field X Name of the mail field this string came from. *Currently X ignored.* X X Improvement by this module: Adjacent encoded-words with same charset X will be concatenated to handle multibyte sequences safely. X X Change by this module: Malformed base64 encoded-words will be kept X encoded. In this case $@ will be set. X X Compatibility with MIME::Words: Whitespaces surrounding unencoded X data will not be stripped. X X encode_mimeword RAW, [ENCODING], [CHARSET] X *Function.* Encode a single RAW "word" that has unsafe characters. X The "word" will be encoded in its entirety. X X ### Encode "<>": X $encoded = encode_mimeword("\xABFran\xE7ois\xBB"); X X You may specify the ENCODING ("Q" or "B"), which defaults to "Q". X Improvement by this module: You may also specify it as ``special'' X value: "S" to choose shorter one of either "Q" or "B". X X You may specify the CHARSET, which defaults to "iso-8859-1". X X Change by this module: Spaces will be escaped with ``_'' by "Q" X encoding. X X encode_mimewords RAW, [OPTS] X *Function.* Given a RAW string, try to find and encode all "unsafe" X sequences of characters: X X ### Encode a string with some unsafe "words": X $encoded = encode_mimewords("Me and \xABFran\xE7ois\xBB"); X X Returns the encoded string. X X Improvement by this module: RAW may be a Unicode string when X Unicode/multibyte support is enabled (see "USE_ENCODE" in X MIME::Charset). Furthermore, RAW may be a reference to that returned X by "decode_mimewords" on array context. In latter case "Charset" X option (see below) will be overridden (see also notes below). X X Any arguments past the RAW string are taken to define a hash of X options: X X Charset X Encode all unsafe stuff with this charset. Default is X 'ISO-8859-1', a.k.a. "Latin-1". X X Detect7bit X Improvement by this modlue: When "Encoding" option (see below) X is specified as "a" and "Charset" option is unknown, try to X detect 7-bit charset on given RAW string. Default is "YES". When X Unicode/multibyte support is disabled, this option will not have X any effects (see "USE_ENCODE" in MIME::Charset). X X Encoding X The encoding to use, "q" or "b". The default is "q". Improvement X by this module: You may also specify ``special'' values: "a" X will automatically choose recommended encoding to use (with X charset conversion if alternative charset is recommended: see X MIME::Charset); "s" will choose shorter one of either "q" or X "b". X X Field X Name of the mail field this string will be used in. Improvement X by this module: Length of mail field name will be considered in X the first line of encoded header. X X Notes on improvement by this module: When RAW is an arrayref, X adjacent encoded-words are concatenated. Then they are splitted X taking care of character boundaries of multibyte sequences, when X Unicode/multibyte support is enabled. Portions for unencoded data X should include surrounding whitespace(s), or they will be merged X into adjoining encoded word(s). X X Imcompatibility with MIME::Words: MIME::Words takes care of natural X word separators (i.e. whitespaces) in the text to be encoded. This X module will encode whole text (if encoding needed) not mentioning X whitespaces; encoded-words exceeding line length will be splitted X based only on their lengths. X XVERSION X Consult $VERSION variable. X X Development versions of this module may be found at X . X XSEE ALSO X MIME::Charset, MIME::Tools X XAUTHORS X The original version of function decode_mimewords() is derived from X MIME::Words module that was written by: Eryq (eryq@zeegee.com), ZeeGee X Software Inc (http://www.zeegee.com). David F. Skoll X (dfs@roaringpenguin.com) http://www.roaringpenguin.com X X Other stuff are rewritten or added by: Hatuka*nezumi - IKEDA Soji X . X X All rights reserved. This program is free software; you can redistribute X it and/or modify it under the same terms as Perl itself. X END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/README echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/t mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/t > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/t/01decode.t sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/t/01decode.t << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/t/01decode.t' Xuse strict; Xuse Test; X XBEGIN { plan tests => ($] >= 5.008001)? 20: 10 } X Xmy $_UNICODE = ($] >= 5.008001); Xif ($_UNICODE) { X use Encode; X} X Xuse MIME::EncWords qw(decode_mimewords); X X{ X local($/) = ''; X open WORDS, ") { X s{\A\s+|\s+\Z}{}g; # trim X X my ($isgood, $expect, $enc) = split /\n/, $_, 3; X $isgood = (uc($isgood) eq 'GOOD'); X $expect = eval $expect; X X my $dec = decode_mimewords($enc); X ok((($isgood && !$@) or (!$isgood && $@)) and X ($isgood ? ($dec eq $expect) : 1)); X if ($_UNICODE) { X $dec = decode_mimewords($enc, Charset => "utf-8"); X Encode::from_to($expect, "iso-8859-1", "utf-8"); X ok((($isgood && !$@) or (!$isgood && $@)) and X ($isgood ? ($dec eq $expect) : 1)); X } X } X close WORDS; X} X X1; X END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/t/01decode.t echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/t/02encode.t sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/t/02encode.t << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/t/02encode.t' Xuse strict; Xuse Test; X XBEGIN { plan tests => 9 } X Xuse MIME::Charset qw(header_encode); Xuse MIME::EncWords qw(encode_mimewords); X X{ X local($/) = ''; X open WORDS, ") { X s{\A\s+|\s+\Z}{}g; # trim X X my ($isgood, $dec, $expect) = split /\n/, $_, 3; X $isgood = (uc($isgood) eq 'GOOD'); X $dec = eval $dec; X X my $enc = encode_mimewords($dec, Charset=>"ISO-8859-1", Encoding=>"A"); X ok((($isgood && !$@) or (!$isgood && $@)) and X ($isgood ? ($enc eq $expect) : 1)); X } X close WORDS; X} X X1; X END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/t/02encode.t echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/testin mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/testin > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/decode-singlebyte.txt sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/decode-singlebyte.txt << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/decode-singlebyte.txt' XGOOD X"Subject: Oc\xE9 3165 Network Copier down for maintenance" XSubject: =?ISO-8859-1?Q?Oc=E9_3165_Network_Copier_down_for_maintenance?= X XBAD X"" XSubject: =?ISO-8859-1?Q?Oc=E9_3165_Network_Copier_down_for_maintenance? X XBAD X"" XSubject: =?ISO-8859-1?Q?Oc=E9_3165_Network_Copier_down_for_maintenance X XGOOD X"Keith Moore " X=?US-ASCII?Q?Keith_Moore?= X XGOOD X"Keld J\xF8rn Simonsen " X=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= X XGOOD X"Andr\xE9 (<- one space) Pirard " X=?ISO-8859-1?Q?Andr=E9_?=(<- one space) Pirard X XGOOD X"Andr\xE9 (<- two spaces) Pirard " X=?ISO-8859-1?Q?Andr=E9_?= (<- two spaces) Pirard X XGOOD X"If you can read this you understand the example... cool!" X=?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?==?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?==?US-ASCII?Q?.._cool!?= X XGOOD X"If you can read this you understand the example... cool!" X=?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?= X =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?= X =?US-ASCII?Q?.._cool!?= X XGOOD X"_-_" X=?ISO-8859-1?Q?=5F-=5F?= X X X END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/decode-singlebyte.txt echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/encode-singlebyte.txt sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/encode-singlebyte.txt << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/encode-singlebyte.txt' XGOOD X"Oc\xE9 3165 Network Copier down for maintenance" X=?ISO-8859-1?Q?Oc=E9?= 3165 Network Copier down for maintenance X XGOOD X"Keith Moore " XKeith Moore X XGOOD X[["Keld J\xF8rn Simonsen"],[" "],[""]] X=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= X XGOOD X[["Andr\xE9 "],["(<- one space) Pirard"],[" "],[""]] X=?ISO-8859-1?Q?Andr=E9_(<-?= one space) Pirard X XGOOD X[["Andr\xE9"],[" (<- one space) Pirard"],[" "],[""]] X=?ISO-8859-1?Q?Andr=E9?= (<- one space) Pirard X XGOOD X[["Andr\xE9 "],["(<- two spaces) Pirard"],[" "],[""]] X=?ISO-8859-1?Q?Andr=E9__(<-?= two spaces) Pirard X XGOOD X[["Andr\xE9 "],[" (<- two spaces) Pirard"],[" "],[""]] X=?ISO-8859-1?Q?Andr=E9_?= (<- two spaces) Pirard X XGOOD X[["Andr\xE9"],[" (<- two spaces) Pirard"],[" "],[""]] X=?ISO-8859-1?Q?Andr=E9?= (<- two spaces) Pirard X XGOOD X"_-_" X_-_ X END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/testin/encode-singlebyte.txt echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile' X# This Makefile is for the MIME::EncWords extension to perl. X# X# It was generated automatically by MakeMaker version X# 6.30 (Revision: Revision: 4535 ) from the contents of X# Makefile.PL. Don't edit this file, edit Makefile.PL instead. X# X# ANY CHANGES MADE HERE WILL BE LOST! X# X# MakeMaker ARGV: (q[INSTALLDIRS=site], q[CC=cc], q[CCFLAGS=-O2 -fno-strict-aliasing -pipe ], q[PREFIX=/var/tmp/MIME-EncWords], q[INSTALLPRIVLIB=/var/tmp/MIME-EncWords/lib], q[INSTALLARCHLIB=/var/tmp/MIME-EncWords/lib]) X# X# MakeMaker Parameters: X X# ABSTRACT_FROM => q[EncWords.pm] X# NAME => q[MIME::EncWords] X# PREREQ_PM => { MIME::Base64=>q[2.13], Test=>q[0], MIME::Charset=>q[0.04.1], Encode=>q[1.98] } X# VERSION_FROM => q[EncWords.pm] X X# --- MakeMaker post_initialize section: X X X# --- MakeMaker const_config section: X X# These definitions are from config.sh (via /usr/local/lib/perl5/5.8.8/mach/Config.pm) X X# They may have been overridden via Makefile.PL or on the command line XAR = ar XCC = cc XCCCDLFLAGS = -DPIC -fPIC XCCDLFLAGS = -Wl,-R/usr/local/lib/perl5/5.8.8/mach/CORE XDLEXT = so XDLSRC = dl_dlopen.xs XLD = cc XLDDLFLAGS = -shared XLDFLAGS = -Wl,-E XLIBC = XLIB_EXT = .a XOBJ_EXT = .o XOSNAME = freebsd XOSVERS = 6.2-release-p4 XRANLIB = : XSITELIBEXP = /usr/local/lib/perl5/site_perl/5.8.8 XSITEARCHEXP = /usr/local/lib/perl5/site_perl/5.8.8/mach XSO = so XEXE_EXT = XFULL_AR = /usr/bin/ar XVENDORARCHEXP = XVENDORLIBEXP = X X X# --- MakeMaker constants section: XAR_STATIC_ARGS = cr XDIRFILESEP = / XDFSEP = $(DIRFILESEP) XNAME = MIME::EncWords XNAME_SYM = MIME_EncWords XVERSION = 0.040 XVERSION_MACRO = VERSION XVERSION_SYM = 0_040 XDEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\" XXS_VERSION = 0.040 XXS_VERSION_MACRO = XS_VERSION XXS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\" XINST_ARCHLIB = blib/arch XINST_SCRIPT = blib/script XINST_BIN = blib/bin XINST_LIB = blib/lib XINST_MAN1DIR = blib/man1 XINST_MAN3DIR = blib/man3 XMAN1EXT = 1 XMAN3EXT = 3 XINSTALLDIRS = site XDESTDIR = XPREFIX = /var/tmp/MIME-EncWords XPERLPREFIX = $(PREFIX) XSITEPREFIX = $(PREFIX) XVENDORPREFIX = $(PREFIX) XINSTALLPRIVLIB = /var/tmp/MIME-EncWords/lib XDESTINSTALLPRIVLIB = $(DESTDIR)$(INSTALLPRIVLIB) XINSTALLSITELIB = $(SITEPREFIX)/lib/perl5/site_perl/5.8.8 XDESTINSTALLSITELIB = $(DESTDIR)$(INSTALLSITELIB) XINSTALLVENDORLIB = XDESTINSTALLVENDORLIB = $(DESTDIR)$(INSTALLVENDORLIB) XINSTALLARCHLIB = /var/tmp/MIME-EncWords/lib XDESTINSTALLARCHLIB = $(DESTDIR)$(INSTALLARCHLIB) XINSTALLSITEARCH = $(SITEPREFIX)/lib/perl5/site_perl/5.8.8/mach XDESTINSTALLSITEARCH = $(DESTDIR)$(INSTALLSITEARCH) XINSTALLVENDORARCH = XDESTINSTALLVENDORARCH = $(DESTDIR)$(INSTALLVENDORARCH) XINSTALLBIN = $(PERLPREFIX)/bin XDESTINSTALLBIN = $(DESTDIR)$(INSTALLBIN) XINSTALLSITEBIN = $(SITEPREFIX)/bin XDESTINSTALLSITEBIN = $(DESTDIR)$(INSTALLSITEBIN) XINSTALLVENDORBIN = XDESTINSTALLVENDORBIN = $(DESTDIR)$(INSTALLVENDORBIN) XINSTALLSCRIPT = $(PERLPREFIX)/bin XDESTINSTALLSCRIPT = $(DESTDIR)$(INSTALLSCRIPT) XINSTALLMAN1DIR = $(PERLPREFIX)/man/man1 XDESTINSTALLMAN1DIR = $(DESTDIR)$(INSTALLMAN1DIR) XINSTALLSITEMAN1DIR = $(SITEPREFIX)/man/man1 XDESTINSTALLSITEMAN1DIR = $(DESTDIR)$(INSTALLSITEMAN1DIR) XINSTALLVENDORMAN1DIR = XDESTINSTALLVENDORMAN1DIR = $(DESTDIR)$(INSTALLVENDORMAN1DIR) XINSTALLMAN3DIR = $(PERLPREFIX)/lib/perl5/5.8.8/perl/man/man3 XDESTINSTALLMAN3DIR = $(DESTDIR)$(INSTALLMAN3DIR) XINSTALLSITEMAN3DIR = $(SITEPREFIX)/lib/perl5/5.8.8/man/man3 XDESTINSTALLSITEMAN3DIR = $(DESTDIR)$(INSTALLSITEMAN3DIR) XINSTALLVENDORMAN3DIR = XDESTINSTALLVENDORMAN3DIR = $(DESTDIR)$(INSTALLVENDORMAN3DIR) XPERL_LIB = /usr/local/lib/perl5/5.8.8 XPERL_ARCHLIB = /usr/local/lib/perl5/5.8.8/mach XLIBPERL_A = libperl.a XFIRST_MAKEFILE = Makefile XMAKEFILE_OLD = Makefile.old XMAKE_APERL_FILE = Makefile.aperl XPERLMAINCC = $(CC) XPERL_INC = /usr/local/lib/perl5/5.8.8/mach/CORE XPERL = /usr/local/bin/perl5.8.8 XFULLPERL = /usr/local/bin/perl5.8.8 XABSPERL = $(PERL) XPERLRUN = $(PERL) XFULLPERLRUN = $(FULLPERL) XABSPERLRUN = $(ABSPERL) XPERLRUNINST = $(PERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" XFULLPERLRUNINST = $(FULLPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" XABSPERLRUNINST = $(ABSPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" XPERL_CORE = 0 XPERM_RW = 644 XPERM_RWX = 755 X XMAKEMAKER = /usr/local/lib/perl5/5.8.8/ExtUtils/MakeMaker.pm XMM_VERSION = 6.30 XMM_REVISION = Revision: 4535 X X# FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle). X# BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle) X# PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar) X# DLBASE = Basename part of dynamic library. May be just equal BASEEXT. XFULLEXT = MIME/EncWords XBASEEXT = EncWords XPARENT_NAME = MIME XDLBASE = $(BASEEXT) XVERSION_FROM = EncWords.pm XOBJECT = XLDFROM = $(OBJECT) XLINKTYPE = dynamic XBOOTDEP = X X# Handy lists of source code files: XXS_FILES = XC_FILES = XO_FILES = XH_FILES = XMAN1PODS = XMAN3PODS = EncWords.pm X X# Where is the Config information that we are using/depend on XCONFIGDEP = $(PERL_ARCHLIB)$(DFSEP)Config.pm $(PERL_INC)$(DFSEP)config.h X X# Where to build things XINST_LIBDIR = $(INST_LIB)/MIME XINST_ARCHLIBDIR = $(INST_ARCHLIB)/MIME X XINST_AUTODIR = $(INST_LIB)/auto/$(FULLEXT) XINST_ARCHAUTODIR = $(INST_ARCHLIB)/auto/$(FULLEXT) X XINST_STATIC = XINST_DYNAMIC = XINST_BOOT = X X# Extra linker info XEXPORT_LIST = XPERL_ARCHIVE = XPERL_ARCHIVE_AFTER = X X XTO_INST_PM = EncWords.pm X XPM_TO_BLIB = EncWords.pm \ X $(INST_LIB)/MIME/EncWords.pm X X X# --- MakeMaker platform_constants section: XMM_Unix_VERSION = 1.50 XPERL_MALLOC_DEF = -DPERL_EXTMALLOC_DEF -Dmalloc=Perl_malloc -Dfree=Perl_mfree -Drealloc=Perl_realloc -Dcalloc=Perl_calloc X X X# --- MakeMaker tool_autosplit section: X# Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto XAUTOSPLITFILE = $(ABSPERLRUN) -e 'use AutoSplit; autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1)' X X X X# --- MakeMaker tool_xsubpp section: X X X# --- MakeMaker tools_other section: XSHELL = /bin/sh XCHMOD = chmod XCP = cp XMV = mv XNOOP = $(SHELL) -c true XNOECHO = @ XRM_F = rm -f XRM_RF = rm -rf XTEST_F = test -f XTOUCH = touch XUMASK_NULL = umask 0 XDEV_NULL = > /dev/null 2>&1 XMKPATH = $(ABSPERLRUN) "-MExtUtils::Command" -e mkpath XEQUALIZE_TIMESTAMP = $(ABSPERLRUN) "-MExtUtils::Command" -e eqtime XECHO = echo XECHO_N = echo -n XUNINST = 0 XVERBINST = 0 XMOD_INSTALL = $(ABSPERLRUN) -MExtUtils::Install -e 'install({@ARGV}, '\''$(VERBINST)'\'', 0, '\''$(UNINST)'\'');' XDOC_INSTALL = $(ABSPERLRUN) "-MExtUtils::Command::MM" -e perllocal_install XUNINSTALL = $(ABSPERLRUN) "-MExtUtils::Command::MM" -e uninstall XWARN_IF_OLD_PACKLIST = $(ABSPERLRUN) "-MExtUtils::Command::MM" -e warn_if_old_packlist XMACROSTART = XMACROEND = XUSEMAKEFILE = -f XFIXIN = $(PERLRUN) "-MExtUtils::MY" -e "MY->fixin(shift)" X X X# --- MakeMaker makemakerdflt section: Xmakemakerdflt: all X $(NOECHO) $(NOOP) X X X# --- MakeMaker dist section: XTAR = tar XTARFLAGS = cvf XZIP = zip XZIPFLAGS = -r XCOMPRESS = gzip --best XSUFFIX = .gz XSHAR = shar XPREOP = $(NOECHO) $(NOOP) XPOSTOP = $(NOECHO) $(NOOP) XTO_UNIX = $(NOECHO) $(NOOP) XCI = ci -u XRCS_LABEL = rcs -Nv$(VERSION_SYM): -q XDIST_CP = best XDIST_DEFAULT = tardist XDISTNAME = MIME-EncWords XDISTVNAME = MIME-EncWords-0.040 X X X# --- MakeMaker macro section: X X X# --- MakeMaker depend section: X X X# --- MakeMaker cflags section: X X X# --- MakeMaker const_loadlibs section: X X X# --- MakeMaker const_cccmd section: X X X# --- MakeMaker post_constants section: X X X# --- MakeMaker pasthru section: X XPASTHRU = LIBPERL_A="$(LIBPERL_A)"\ X LINKTYPE="$(LINKTYPE)"\ X PREFIX="$(PREFIX)" X X X# --- MakeMaker special_targets section: X.SUFFIXES : .xs .c .C .cpp .i .s .cxx .cc $(OBJ_EXT) X X.PHONY: all config static dynamic test linkext manifest blibdirs clean realclean disttest distdir X X X X# --- MakeMaker c_o section: X X X# --- MakeMaker xs_c section: X X X# --- MakeMaker xs_o section: X X X# --- MakeMaker top_targets section: Xall :: pure_all manifypods X $(NOECHO) $(NOOP) X X Xpure_all :: config pm_to_blib subdirs linkext X $(NOECHO) $(NOOP) X Xsubdirs :: $(MYEXTLIB) X $(NOECHO) $(NOOP) X Xconfig :: $(FIRST_MAKEFILE) blibdirs X $(NOECHO) $(NOOP) X Xhelp : X perldoc ExtUtils::MakeMaker X X X# --- MakeMaker blibdirs section: Xblibdirs : $(INST_LIBDIR)$(DFSEP).exists $(INST_ARCHLIB)$(DFSEP).exists $(INST_AUTODIR)$(DFSEP).exists $(INST_ARCHAUTODIR)$(DFSEP).exists $(INST_BIN)$(DFSEP).exists $(INST_SCRIPT)$(DFSEP).exists $(INST_MAN1DIR)$(DFSEP).exists $(INST_MAN3DIR)$(DFSEP).exists X $(NOECHO) $(NOOP) X X# Backwards compat with 6.18 through 6.25 Xblibdirs.ts : blibdirs X $(NOECHO) $(NOOP) X X$(INST_LIBDIR)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_LIBDIR) X $(NOECHO) $(CHMOD) 755 $(INST_LIBDIR) X $(NOECHO) $(TOUCH) $(INST_LIBDIR)$(DFSEP).exists X X$(INST_ARCHLIB)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_ARCHLIB) X $(NOECHO) $(CHMOD) 755 $(INST_ARCHLIB) X $(NOECHO) $(TOUCH) $(INST_ARCHLIB)$(DFSEP).exists X X$(INST_AUTODIR)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_AUTODIR) X $(NOECHO) $(CHMOD) 755 $(INST_AUTODIR) X $(NOECHO) $(TOUCH) $(INST_AUTODIR)$(DFSEP).exists X X$(INST_ARCHAUTODIR)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_ARCHAUTODIR) X $(NOECHO) $(CHMOD) 755 $(INST_ARCHAUTODIR) X $(NOECHO) $(TOUCH) $(INST_ARCHAUTODIR)$(DFSEP).exists X X$(INST_BIN)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_BIN) X $(NOECHO) $(CHMOD) 755 $(INST_BIN) X $(NOECHO) $(TOUCH) $(INST_BIN)$(DFSEP).exists X X$(INST_SCRIPT)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_SCRIPT) X $(NOECHO) $(CHMOD) 755 $(INST_SCRIPT) X $(NOECHO) $(TOUCH) $(INST_SCRIPT)$(DFSEP).exists X X$(INST_MAN1DIR)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_MAN1DIR) X $(NOECHO) $(CHMOD) 755 $(INST_MAN1DIR) X $(NOECHO) $(TOUCH) $(INST_MAN1DIR)$(DFSEP).exists X X$(INST_MAN3DIR)$(DFSEP).exists :: Makefile.PL X $(NOECHO) $(MKPATH) $(INST_MAN3DIR) X $(NOECHO) $(CHMOD) 755 $(INST_MAN3DIR) X $(NOECHO) $(TOUCH) $(INST_MAN3DIR)$(DFSEP).exists X X X X# --- MakeMaker linkext section: X Xlinkext :: $(LINKTYPE) X $(NOECHO) $(NOOP) X X X# --- MakeMaker dlsyms section: X X X# --- MakeMaker dynamic section: X Xdynamic :: $(FIRST_MAKEFILE) $(INST_DYNAMIC) $(INST_BOOT) X $(NOECHO) $(NOOP) X X X# --- MakeMaker dynamic_bs section: X XBOOTSTRAP = X X X# --- MakeMaker dynamic_lib section: X X X# --- MakeMaker static section: X X## $(INST_PM) has been moved to the all: target. X## It remains here for awhile to allow for old usage: "make static" Xstatic :: $(FIRST_MAKEFILE) $(INST_STATIC) X $(NOECHO) $(NOOP) X X X# --- MakeMaker static_lib section: X X X# --- MakeMaker manifypods section: X XPOD2MAN_EXE = $(PERLRUN) "-MExtUtils::Command::MM" -e pod2man "--" XPOD2MAN = $(POD2MAN_EXE) X X Xmanifypods : pure_all \ X EncWords.pm \ X EncWords.pm X $(NOECHO) $(POD2MAN) --section=3 --perm_rw=$(PERM_RW) \ X EncWords.pm $(INST_MAN3DIR)/MIME::EncWords.$(MAN3EXT) X X X X X# --- MakeMaker processPL section: X X X# --- MakeMaker installbin section: X X X# --- MakeMaker subdirs section: X X# none X X# --- MakeMaker clean_subdirs section: Xclean_subdirs : X $(NOECHO) $(NOOP) X X X# --- MakeMaker clean section: X X# Delete temporary files but do not touch installed files. We don't delete X# the Makefile here so a later make realclean still has a makefile to use. X Xclean :: clean_subdirs X - $(RM_F) \ X *$(LIB_EXT) core \ X core.[0-9] $(INST_ARCHAUTODIR)/extralibs.all \ X core.[0-9][0-9] $(BASEEXT).bso \ X pm_to_blib.ts core.[0-9][0-9][0-9][0-9] \ X $(BASEEXT).x $(BOOTSTRAP) \ X perl$(EXE_EXT) tmon.out \ X *$(OBJ_EXT) pm_to_blib \ X $(INST_ARCHAUTODIR)/extralibs.ld blibdirs.ts \ X core.[0-9][0-9][0-9][0-9][0-9] *perl.core \ X core.*perl.*.? $(MAKE_APERL_FILE) \ X perl $(BASEEXT).def \ X core.[0-9][0-9][0-9] mon.out \ X lib$(BASEEXT).def perlmain.c \ X perl.exe so_locations \ X $(BASEEXT).exp X - $(RM_RF) \ X blib X - $(MV) $(FIRST_MAKEFILE) $(MAKEFILE_OLD) $(DEV_NULL) X X X# --- MakeMaker realclean_subdirs section: Xrealclean_subdirs : X $(NOECHO) $(NOOP) X X X# --- MakeMaker realclean section: X# Delete temporary files (via clean) and also delete dist files Xrealclean purge :: clean realclean_subdirs X - $(RM_F) \ X $(MAKEFILE_OLD) $(FIRST_MAKEFILE) X - $(RM_RF) \ X $(DISTVNAME) X X X# --- MakeMaker metafile section: Xmetafile : create_distdir X $(NOECHO) $(ECHO) Generating META.yml X $(NOECHO) $(ECHO) '# http://module-build.sourceforge.net/META-spec.html' > META_new.yml X $(NOECHO) $(ECHO) '#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#' >> META_new.yml X $(NOECHO) $(ECHO) 'name: MIME-EncWords' >> META_new.yml X $(NOECHO) $(ECHO) 'version: 0.040' >> META_new.yml X $(NOECHO) $(ECHO) 'version_from: EncWords.pm' >> META_new.yml X $(NOECHO) $(ECHO) 'installdirs: site' >> META_new.yml X $(NOECHO) $(ECHO) 'requires:' >> META_new.yml X $(NOECHO) $(ECHO) ' Encode: 1.98' >> META_new.yml X $(NOECHO) $(ECHO) ' MIME::Base64: 2.13' >> META_new.yml X $(NOECHO) $(ECHO) ' MIME::Charset: 0.04.1' >> META_new.yml X $(NOECHO) $(ECHO) ' Test: 0' >> META_new.yml X $(NOECHO) $(ECHO) '' >> META_new.yml X $(NOECHO) $(ECHO) 'distribution_type: module' >> META_new.yml X $(NOECHO) $(ECHO) 'generated_by: ExtUtils::MakeMaker version 6.30' >> META_new.yml X -$(NOECHO) $(MV) META_new.yml $(DISTVNAME)/META.yml X X X# --- MakeMaker signature section: Xsignature : X cpansign -s X X X# --- MakeMaker dist_basics section: Xdistclean :: realclean distcheck X $(NOECHO) $(NOOP) X Xdistcheck : X $(PERLRUN) "-MExtUtils::Manifest=fullcheck" -e fullcheck X Xskipcheck : X $(PERLRUN) "-MExtUtils::Manifest=skipcheck" -e skipcheck X Xmanifest : X $(PERLRUN) "-MExtUtils::Manifest=mkmanifest" -e mkmanifest X Xveryclean : realclean X $(RM_F) *~ *.orig */*~ */*.orig X X X X# --- MakeMaker dist_core section: X Xdist : $(DIST_DEFAULT) $(FIRST_MAKEFILE) X $(NOECHO) $(ABSPERLRUN) -l -e 'print '\''Warning: Makefile possibly out of date with $(VERSION_FROM)'\''' \ X -e ' if -e '\''$(VERSION_FROM)'\'' and -M '\''$(VERSION_FROM)'\'' < -M '\''$(FIRST_MAKEFILE)'\'';' X Xtardist : $(DISTVNAME).tar$(SUFFIX) X $(NOECHO) $(NOOP) X Xuutardist : $(DISTVNAME).tar$(SUFFIX) X uuencode $(DISTVNAME).tar$(SUFFIX) $(DISTVNAME).tar$(SUFFIX) > $(DISTVNAME).tar$(SUFFIX)_uu X X$(DISTVNAME).tar$(SUFFIX) : distdir X $(PREOP) X $(TO_UNIX) X $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME) X $(RM_RF) $(DISTVNAME) X $(COMPRESS) $(DISTVNAME).tar X $(POSTOP) X Xzipdist : $(DISTVNAME).zip X $(NOECHO) $(NOOP) X X$(DISTVNAME).zip : distdir X $(PREOP) X $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME) X $(RM_RF) $(DISTVNAME) X $(POSTOP) X Xshdist : distdir X $(PREOP) X $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar X $(RM_RF) $(DISTVNAME) X $(POSTOP) X X X# --- MakeMaker distdir section: Xcreate_distdir : X $(RM_RF) $(DISTVNAME) X $(PERLRUN) "-MExtUtils::Manifest=manicopy,maniread" \ X -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');" X Xdistdir : create_distdir distmeta X $(NOECHO) $(NOOP) X X X X# --- MakeMaker dist_test section: Xdisttest : distdir X cd $(DISTVNAME) && $(ABSPERLRUN) Makefile.PL "INSTALLDIRS=site" "CC=cc" "CCFLAGS=-O2 -fno-strict-aliasing -pipe " "PREFIX=/var/tmp/MIME-EncWords" "INSTALLPRIVLIB=/var/tmp/MIME-EncWords/lib" "INSTALLARCHLIB=/var/tmp/MIME-EncWords/lib" X cd $(DISTVNAME) && $(MAKE) $(PASTHRU) X cd $(DISTVNAME) && $(MAKE) test $(PASTHRU) X X X X# --- MakeMaker dist_ci section: X Xci : X $(PERLRUN) "-MExtUtils::Manifest=maniread" \ X -e "@all = keys %{ maniread() };" \ X -e "print(qq{Executing $(CI) @all\n}); system(qq{$(CI) @all});" \ X -e "print(qq{Executing $(RCS_LABEL) ...\n}); system(qq{$(RCS_LABEL) @all});" X X X# --- MakeMaker distmeta section: Xdistmeta : create_distdir metafile X $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'eval { maniadd({q{META.yml} => q{Module meta-data (added by MakeMaker)}}) } ' \ X -e ' or print "Could not add META.yml to MANIFEST: $${'\''@'\''}\n"' X X X X# --- MakeMaker distsignature section: Xdistsignature : create_distdir X $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'eval { maniadd({q{SIGNATURE} => q{Public-key signature (added by MakeMaker)}}) } ' \ X -e ' or print "Could not add SIGNATURE to MANIFEST: $${'\''@'\''}\n"' X $(NOECHO) cd $(DISTVNAME) && $(TOUCH) SIGNATURE X cd $(DISTVNAME) && cpansign -s X X X X# --- MakeMaker install section: X Xinstall :: all pure_install doc_install X $(NOECHO) $(NOOP) X Xinstall_perl :: all pure_perl_install X $(NOECHO) $(NOOP) X Xinstall_site :: all pure_site_install X $(NOECHO) $(NOOP) X Xinstall_vendor :: all pure_vendor_install doc_vendor_install X $(NOECHO) $(NOOP) X Xpure_install :: pure_$(INSTALLDIRS)_install X $(NOECHO) $(NOOP) X Xdoc_install :: X $(NOECHO) $(NOOP) X Xpure__install : pure_site_install X $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site X Xdoc__install : X $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site X Xpure_perl_install :: X $(NOECHO) $(MOD_INSTALL) \ X read $(PERL_ARCHLIB)/auto/$(FULLEXT)/.packlist \ X write $(DESTINSTALLARCHLIB)/auto/$(FULLEXT)/.packlist \ X $(INST_LIB) $(DESTINSTALLPRIVLIB) \ X $(INST_ARCHLIB) $(DESTINSTALLARCHLIB) \ X $(INST_BIN) $(DESTINSTALLBIN) \ X $(INST_SCRIPT) $(DESTINSTALLSCRIPT) \ X $(INST_MAN1DIR) $(DESTINSTALLMAN1DIR) \ X $(INST_MAN3DIR) $(DESTINSTALLMAN3DIR) X $(NOECHO) $(WARN_IF_OLD_PACKLIST) \ X $(SITEARCHEXP)/auto/$(FULLEXT) X X Xpure_site_install :: X $(NOECHO) $(MOD_INSTALL) \ X read $(SITEARCHEXP)/auto/$(FULLEXT)/.packlist \ X write $(DESTINSTALLSITEARCH)/auto/$(FULLEXT)/.packlist \ X $(INST_LIB) $(DESTINSTALLSITELIB) \ X $(INST_ARCHLIB) $(DESTINSTALLSITEARCH) \ X $(INST_BIN) $(DESTINSTALLSITEBIN) \ X $(INST_SCRIPT) $(DESTINSTALLSCRIPT) \ X $(INST_MAN1DIR) $(DESTINSTALLSITEMAN1DIR) \ X $(INST_MAN3DIR) $(DESTINSTALLSITEMAN3DIR) X $(NOECHO) $(WARN_IF_OLD_PACKLIST) \ X $(PERL_ARCHLIB)/auto/$(FULLEXT) X Xpure_vendor_install :: X $(NOECHO) $(MOD_INSTALL) \ X read $(VENDORARCHEXP)/auto/$(FULLEXT)/.packlist \ X write $(DESTINSTALLVENDORARCH)/auto/$(FULLEXT)/.packlist \ X $(INST_LIB) $(DESTINSTALLVENDORLIB) \ X $(INST_ARCHLIB) $(DESTINSTALLVENDORARCH) \ X $(INST_BIN) $(DESTINSTALLVENDORBIN) \ X $(INST_SCRIPT) $(DESTINSTALLSCRIPT) \ X $(INST_MAN1DIR) $(DESTINSTALLVENDORMAN1DIR) \ X $(INST_MAN3DIR) $(DESTINSTALLVENDORMAN3DIR) X Xdoc_perl_install :: X $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod X -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) X -$(NOECHO) $(DOC_INSTALL) \ X "Module" "$(NAME)" \ X "installed into" "$(INSTALLPRIVLIB)" \ X LINKTYPE "$(LINKTYPE)" \ X VERSION "$(VERSION)" \ X EXE_FILES "$(EXE_FILES)" \ X >> $(DESTINSTALLARCHLIB)/perllocal.pod X Xdoc_site_install :: X $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod X -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) X -$(NOECHO) $(DOC_INSTALL) \ X "Module" "$(NAME)" \ X "installed into" "$(INSTALLSITELIB)" \ X LINKTYPE "$(LINKTYPE)" \ X VERSION "$(VERSION)" \ X EXE_FILES "$(EXE_FILES)" \ X >> $(DESTINSTALLARCHLIB)/perllocal.pod X Xdoc_vendor_install :: X $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod X -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) X -$(NOECHO) $(DOC_INSTALL) \ X "Module" "$(NAME)" \ X "installed into" "$(INSTALLVENDORLIB)" \ X LINKTYPE "$(LINKTYPE)" \ X VERSION "$(VERSION)" \ X EXE_FILES "$(EXE_FILES)" \ X >> $(DESTINSTALLARCHLIB)/perllocal.pod X X Xuninstall :: uninstall_from_$(INSTALLDIRS)dirs X $(NOECHO) $(NOOP) X Xuninstall_from_perldirs :: X $(NOECHO) $(UNINSTALL) $(PERL_ARCHLIB)/auto/$(FULLEXT)/.packlist X Xuninstall_from_sitedirs :: X $(NOECHO) $(UNINSTALL) $(SITEARCHEXP)/auto/$(FULLEXT)/.packlist X Xuninstall_from_vendordirs :: X $(NOECHO) $(UNINSTALL) $(VENDORARCHEXP)/auto/$(FULLEXT)/.packlist X X X# --- MakeMaker force section: X# Phony target to force checking subdirectories. XFORCE: X $(NOECHO) $(NOOP) X X X# --- MakeMaker perldepend section: X X X# --- MakeMaker makefile section: X# We take a very conservative approach here, but it's worth it. X# We move Makefile to Makefile.old here to avoid gnu make looping. X$(FIRST_MAKEFILE) : Makefile.PL $(CONFIGDEP) X $(NOECHO) $(ECHO) "Makefile out-of-date with respect to $?" X $(NOECHO) $(ECHO) "Cleaning current config before rebuilding Makefile..." X -$(NOECHO) $(RM_F) $(MAKEFILE_OLD) X -$(NOECHO) $(MV) $(FIRST_MAKEFILE) $(MAKEFILE_OLD) X - $(MAKE) $(USEMAKEFILE) $(MAKEFILE_OLD) clean $(DEV_NULL) X $(PERLRUN) Makefile.PL "INSTALLDIRS=site" "CC=cc" "CCFLAGS=-O2 -fno-strict-aliasing -pipe " "PREFIX=/var/tmp/MIME-EncWords" "INSTALLPRIVLIB=/var/tmp/MIME-EncWords/lib" "INSTALLARCHLIB=/var/tmp/MIME-EncWords/lib" X $(NOECHO) $(ECHO) "==> Your Makefile has been rebuilt. <==" X $(NOECHO) $(ECHO) "==> Please rerun the $(MAKE) command. <==" X false X X X X# --- MakeMaker staticmake section: X X# --- MakeMaker makeaperl section --- XMAP_TARGET = perl XFULLPERL = /usr/local/bin/perl5.8.8 X X$(MAP_TARGET) :: static $(MAKE_APERL_FILE) X $(MAKE) $(USEMAKEFILE) $(MAKE_APERL_FILE) $@ X X$(MAKE_APERL_FILE) : $(FIRST_MAKEFILE) pm_to_blib X $(NOECHO) $(ECHO) Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET) X $(NOECHO) $(PERLRUNINST) \ X Makefile.PL DIR= \ X MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \ X MAKEAPERL=1 NORECURS=1 CCCDLFLAGS= \ X INSTALLDIRS=site \ X CC=cc \ X CCFLAGS='-O2 -fno-strict-aliasing -pipe ' \ X PREFIX=/var/tmp/MIME-EncWords \ X INSTALLPRIVLIB=/var/tmp/MIME-EncWords/lib \ X INSTALLARCHLIB=/var/tmp/MIME-EncWords/lib X X X# --- MakeMaker test section: X XTEST_VERBOSE=0 XTEST_TYPE=test_$(LINKTYPE) XTEST_FILE = test.pl XTEST_FILES = t/*.t XTESTDB_SW = -d X Xtestdb :: testdb_$(LINKTYPE) X Xtest :: $(TEST_TYPE) X Xtest_dynamic :: pure_all X PERL_DL_NONLAZY=1 $(FULLPERLRUN) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')" $(TEST_FILES) X Xtestdb_dynamic :: pure_all X PERL_DL_NONLAZY=1 $(FULLPERLRUN) $(TESTDB_SW) "-I$(INST_LIB)" "-I$(INST_ARCHLIB)" $(TEST_FILE) X Xtest_ : test_dynamic X Xtest_static :: test_dynamic Xtestdb_static :: testdb_dynamic X X X# --- MakeMaker ppd section: X# Creates a PPD (Perl Package Description) for a binary distribution. Xppd: X $(NOECHO) $(ECHO) '' > $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' $(DISTNAME)' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' deal with RFC-1522 encoded words (improved)' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) ' ' >> $(DISTNAME).ppd X $(NOECHO) $(ECHO) '' >> $(DISTNAME).ppd X X X# --- MakeMaker pm_to_blib section: X Xpm_to_blib : $(TO_INST_PM) X $(NOECHO) $(ABSPERLRUN) -MExtUtils::Install -e 'pm_to_blib({@ARGV}, '\''$(INST_LIB)/auto'\'', '\''$(PM_FILTER)'\'')' \ X EncWords.pm $(INST_LIB)/MIME/EncWords.pm X $(NOECHO) $(TOUCH) pm_to_blib X X X# --- MakeMaker selfdocument section: X X X# --- MakeMaker postamble section: X X X# End. END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/Makefile echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/.exists echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/EncWords.pm sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/EncWords.pm << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/EncWords.pm' X Xpackage MIME::EncWords; Xuse 5.005; X X=head1 NAME X XMIME::EncWords - deal with RFC-1522 encoded words (improved) X X=head1 SYNOPSIS X XI is aimed to be another implimentation Xof L so that it will achive more exact conformance with XMIME specifications. Additionally, it contains some improvements. XFollowing synopsis and descriptions are inherited from its inspirer, Xwith description of improvements and clarifications added.> X XBefore reading further, you should see L to make sure that Xyou understand where this module fits into the grand scheme of things. XGo on, do it now. I'll wait. X XReady? Ok... X X use MIME::EncWords qw(:all); X X ### Decode the string into another string, forgetting the charsets: X $decoded = decode_mimewords( X 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X ); X X ### Split string into array of decoded [DATA,CHARSET] pairs: X @decoded = decode_mimewords( X 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X ); X X ### Encode a single unsafe word: X $encoded = encode_mimeword("\xABFran\xE7ois\xBB"); X X ### Encode a string, trying to find the unsafe words inside it: X $encoded = encode_mimewords("Me and \xABFran\xE7ois\xBB in town"); X X=head1 DESCRIPTION X XFellow Americans, you probably won't know what the hell this module Xis for. Europeans, Russians, et al, you probably do. C<:-)>. X XFor example, here's a valid MIME header you might get: X X From: =?US-ASCII?Q?Keith_Moore?= X To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= X CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard X Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?= X =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?= X =?US-ASCII?Q?.._cool!?= X XThe fields basically decode to (sorry, I can only approximate the XLatin characters with 7 bit sequences /o and 'e): X X From: Keith Moore X To: Keld J/orn Simonsen X CC: Andr'e Pirard X Subject: If you can read this you understand the example... cool! X XB: Fellow Americans, Europeans, you probably won't know Xwhat the hell this module is for. East Asians, et al, you probably do. XC<:-)>. X XFor example, here's a valid MIME header you might get: X X Subject: =?EUC-KR?B?sNTAuLinKGxhemluZXNzKSwgwvzB9ri7seIoaW1w?= X =?EUC-KR?B?YXRpZW5jZSksILGzuLgoaHVicmlzKQ==?= X XThe fields basically decode to (sorry, I cannot approximate the Xnon-Latin multibyte characters with any 7 bit sequences): X X Subject: ???(laziness), ????(impatience), ??(hubris) X X=head1 PUBLIC INTERFACE X X=over 4 X X=cut X X### Pragmas: Xuse strict; Xuse vars qw($VERSION @EXPORT_OK %EXPORT_TAGS @ISA); X X### Exporting: Xuse Exporter; X X%EXPORT_TAGS = (all => [qw(decode_mimewords X encode_mimeword X encode_mimewords)]); XExporter::export_ok_tags(qw(all)); X X### Inheritance: X@ISA = qw(Exporter); X X### Other modules: Xuse Carp; Xuse MIME::Base64; Xuse MIME::Charset qw(:trans); X Xmy @ENCODE_SUBS = qw(FB_CROAK decode encode from_to is_utf8 resolve_alias); Xif (MIME::Charset::USE_ENCODE) { X eval "use ".MIME::Charset::USE_ENCODE." \@ENCODE_SUBS;"; X} else { X require MIME::Charset::_Compat; X for my $sub (@ENCODE_SUBS) { X no strict "refs"; X *{$sub} = \&{"MIME::Charset::_Compat::$sub"}; X } X} X X#------------------------------ X# X# Globals... X# X#------------------------------ X X### The package version, both in 1.23 style *and* usable by MakeMaker: X$VERSION = '0.040'; X X### Nonprintables (controls + x7F + 8bit): X#my $NONPRINT = "\\x00-\\x1F\\x7F-\\xFF"; Xmy $PRINTABLE = "\\x21-\\x7E"; Xmy $NONPRINT = qr{[^$PRINTABLE]}; # Improvement: Unicode support. Xmy $UNSAFE = qr{[^\x01-\x20$PRINTABLE]}; Xmy $WIDECHAR = qr{[^\x00-\xFF]}; X X### Max line length: Xmy $MAXLINELEN = 76; X X#------------------------------ X X# _decode_B STRING X# Private: used by _decode_header() to decode "B" encoding. X# Improvement by this module: sanity check on encoded sequence. Xsub _decode_B { X my $str = shift; X unless ((length($str) % 4 == 0) and X $str =~ m|^[A-Za-z0-9+/]+={0,2}$|) { X return undef; X } X return decode_base64($str); X} X X# _decode_Q STRING X# Private: used by _decode_header() to decode "Q" encoding, which is X# almost, but not exactly, quoted-printable. :-P Xsub _decode_Q { X my $str = shift; X $str =~ s/_/\x20/g; # RFC-1522, Q rule 2 X $str =~ s/=([\da-fA-F]{2})/pack("C", hex($1))/ge; # RFC-1522, Q rule 1 X $str; X} X X# _encode_B STRING X# Private: used by encode_mimeword() to encode "B" encoding. Xsub _encode_B { X my $str = shift; X encode_base64($str, ''); X} X X# _encode_Q STRING X# Private: used by encode_mimeword() to encode "Q" encoding, which is X# almost, but not exactly, quoted-printable. :-P X# Improvement by this module: Spaces are escaped by ``_''. Xsub _encode_Q { X my $str = shift; X # $str =~ s{([_\?\=$NONPRINT])}{sprintf("=%02X", ord($1))}eog; X $str =~ s{(\x20)|([_?=]|$NONPRINT)}{ X defined $1? "_": sprintf("=%02X", ord($2)) X }eog; X $str; X} X X#------------------------------ X X=item decode_mimewords ENCODED, [OPTS...] X XI XGo through the string looking for RFC-1522-style "Q" X(quoted-printable, sort of) or "B" (base64) encoding, and decode them. X XB splits the ENCODED string into a list of decoded XC<[DATA, CHARSET]> pairs, and returns that list. Unencoded Xdata are returned in a 1-element array C<[DATA]>, giving an effective XCHARSET of C. X X $enc = '=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= '; X foreach (decode_mimewords($enc)) { X print "", ($_[1] || 'US-ASCII'), ": ", $_[0], "\n"; X } X XB joins the "data" elements of the above Xlist together, and returns that. I Xand probably I what you want, but if you know that all charsets Xin the ENCODED string are identical, it might be useful to you. X(Before you use this, please see L, Xwhich is probably what you want.) XB: See also "Charset" option below. X XIn the event of a syntax error, $@ will be set to a description Xof the error, but parsing will continue as best as possible (so as to Xget I back when decoding headers). X$@ will be false if no error was detected. X XAny arguments past the ENCODED string are taken to define a hash of options: X X=over 4 X X=item Charset X XB: XName of character set by which data elements in scalar context Xwill be converted. XIf this option is specified as special value C<"_UNICODE_">, Xreturned value will be Unicode string. X XWhen Unicode/multibyte support is disabled X(see L), Xthis option will not have any effects. X XB: XThis feature is still information-lossy, I when C<"_UNICODE_"> is Xspecified. X X=item Field X XName of the mail field this string came from. I X X=back X XB: XAdjacent encoded-words with same charset will be concatenated Xto handle multibyte sequences safely. X XB: XMalformed base64 encoded-words will be kept encoded. XIn this case $@ will be set. X XB: XWhitespaces surrounding unencoded data will not be stripped. X X=cut X Xsub decode_mimewords { X my $encstr = shift; X my %params = @_; X my $cset = $params{"Charset"}; X my @tokens; X $@ = ''; ### error-return X X ### Decode: X my ($word, $charset, $encoding, $enc, $dec); X my $spc = ''; X pos($encstr) = 0; X while (1) { X last if (pos($encstr) >= length($encstr)); X my $pos = pos($encstr); ### save it X X ### Case 1: are we looking at "=?..?..?="? X if ($encstr =~ m{\G # from where we left off.. X =\?([^?]*) # "=?" + charset + X \?([bq]) # "?" + encoding + X \?([^?]+) # "?" + data maybe with spcs + X \?= # "?=" X ([\r\n\t ]*) X }xgi) { X ($word, $charset, $encoding, $enc) = ($&, $1, lc($2), $3); X my $tspc = $4; X if ($encoding eq 'q') { X $dec = _decode_Q($enc); X } else { X $dec = _decode_B($enc); X } X unless (defined $dec) { X $@ .= qq|Illegal sequence in "$word" (pos $pos)\n|; X push @tokens, [$spc.$word]; X $spc = ''; X next; X } X X if (scalar(@tokens) and X lc($charset) eq lc(${$tokens[-1]}[1]) and X resolve_alias($charset)) { # Concat words if possible. X ${$tokens[-1]}[0] .= $dec; X } else { X push @tokens, [$dec, $charset]; X } X $spc = $tspc; X next; X } X X ### Case 2: are we looking at a bad "=?..." prefix? X ### We need this to detect problems for case 3, which stops at "=?": X pos($encstr) = $pos; # reset the pointer. X if ($encstr =~ m{\G=\?}xg) { X $@ .= qq|unterminated "=?..?..?=" in "$encstr" (pos $pos)\n|; X push @tokens, [$spc.'=?']; X $spc = ''; X next; X } X X ### Case 3: are we looking at ordinary text? X pos($encstr) = $pos; # reset the pointer. X if ($encstr =~ m{\G # from where we left off... X (.*? # shortest possible string, X \n*) # followed by 0 or more NLs, X (?=(\Z|=\?)) # terminated by "=?" or EOS X }xgs) { X length($1) or croak "MIME::EncWords: internal logic err: empty token\n"; X push @tokens, [$spc.$1]; X $spc = ''; X next; X } X X ### Case 4: bug! X croak "MIME::EncWords: unexpected case:\n($encstr) pos $pos\n\t". X "Please alert developer.\n"; X } X push @tokens, [$spc] if $spc; X X return (wantarray ? @tokens : join('',map { X &_convert($_->[0], $_->[1], $cset) X } @tokens)); X} X X#------------------------------ X X# _convert RAW, FROMCHARSET, TOCHARSET X# Private: used by encode_mimewords() to convert string by other charset X# or to decode to Unicode. X# When source charset is unknown and Unicode string is requested, at first X# try well-formed UTF-8 then fallback to ISO-8859-1 so that almost all X# non-ASCII bytes will be preserved. Xsub _convert($$$) { X my $s = shift; X my $charset = shift || ""; X my $cset = shift; X return $s unless MIME::Charset::USE_ENCODE; X return $s unless $cset; X return $s if uc($charset) eq uc($cset); X X my $preserveerr = $@; X X my $converted = $s; X if (is_utf8($s) or $s =~ $WIDECHAR) { X if ($cset ne "_UNICODE_") { X $converted = encode($cset, $converted); X } X } elsif ($cset eq "_UNICODE_") { X if (!resolve_alias($charset)) { X if ($s =~ $UNSAFE) { X $@ = ''; X eval { X $converted = decode("UTF-8", $converted, FB_CROAK()); X }; X if ($@) { X $converted = $s; X $converted = decode("ISO-8859-1", $converted); X } X } X } else { X $converted = decode($charset, $converted); X } X } elsif (resolve_alias($charset)) { X from_to($converted, $charset, $cset); X } X X $@ = $preserveerr; X return $converted; X} X X#------------------------------ X X=item encode_mimeword RAW, [ENCODING], [CHARSET] X XI XEncode a single RAW "word" that has unsafe characters. XThe "word" will be encoded in its entirety. X X ### Encode "<>": X $encoded = encode_mimeword("\xABFran\xE7ois\xBB"); X XYou may specify the ENCODING (C<"Q"> or C<"B">), which defaults to C<"Q">. XB: XYou may also specify it as ``special'' value: C<"S"> to choose shorter Xone of either C<"Q"> or C<"B">. X XYou may specify the CHARSET, which defaults to C. X XB: XSpaces will be escaped with ``_'' by C<"Q"> encoding. X X=cut X Xsub encode_mimeword { X my $word = shift; X my $encoding = uc(shift || 'Q'); X my $charset = uc(shift || 'ISO-8859-1'); X X my $encstr; X if ($encoding eq 'Q') { X $encstr = &_encode_Q($word); X } elsif ($encoding eq "S") { X if (encoded_header_len($word, "B", $charset) < X encoded_header_len($word, "Q", $charset)) { X $encoding = "B"; X $encstr = &_encode_B($word); X } else { X $encoding = "Q"; X $encstr = &_encode_Q($word); X } X } else { # "B" X $encoding = "B"; X $encstr = &_encode_B($word); X } X X "=?$charset?$encoding?$encstr?="; X} X X#------------------------------ X X=item encode_mimewords RAW, [OPTS] X XI XGiven a RAW string, try to find and encode all "unsafe" sequences Xof characters: X X ### Encode a string with some unsafe "words": X $encoded = encode_mimewords("Me and \xABFran\xE7ois\xBB"); X XReturns the encoded string. X XB: XRAW may be a Unicode string when Unicode/multibyte support is enabled X(see L). XFurthermore, RAW may be a reference to that returned Xby L<"decode_mimewords"> on array context. In latter case "Charset" Xoption (see below) will be overridden (see also notes below). X XAny arguments past the RAW string are taken to define a hash of options: X X=over 4 X X=item Charset X XEncode all unsafe stuff with this charset. Default is 'ISO-8859-1', Xa.k.a. "Latin-1". X X=item Detect7bit X XB: XWhen "Encoding" option (see below) is specified as C<"a"> and "Charset" Xoption is unknown, try to detect 7-bit charset on given RAW string. XDefault is C<"YES">. XWhen Unicode/multibyte support is disabled, Xthis option will not have any effects X(see L). X X=item Encoding X XThe encoding to use, C<"q"> or C<"b">. The default is C<"q">. XB: XYou may also specify ``special'' values: C<"a"> will automatically choose Xrecommended encoding to use (with charset conversion if alternative Xcharset is recommended: see L); XC<"s"> will choose shorter one of either C<"q"> or C<"b">. X X=item Field X XName of the mail field this string will be used in. XB: XLength of mail field name will be considered in the first line of Xencoded header. X X=item Minimal X XB: XTakes care of natural word separators (i.e. whitespaces) Xin the text to be encoded. XIf C<"NO"> is specified, this module will encode whole text X(if encoding needed) not regarding whitespaces; Xencoded-words exceeding line length will be splitted based only on their Xlengths. XDefault is C<"YES">. X XB: XAs of release 0.040, default has been changed to C<"YES"> to ensure Xcompatibility with MIME::Words. XOn earlier releases, this option was fixed to be C<"NO">. X X=back X XB: XWhen RAW is an arrayref, Xadjacent encoded-words are concatenated. Then they are splitted taking Xcare of character boundaries of multibyte sequences, when Unicode/multibyte Xsupport is enabled. XPortions for unencoded data should include surrounding whitespace(s), or Xthey will be merged into adjoining encoded word(s). X X=cut X Xsub encode_mimewords { X my $words = shift; X my %params = @_; X my $charset = uc($params{'Charset'}); X my $detect7bit = uc($params{'Detect7bit'} || "YES"); X my $encoding = uc($params{'Encoding'}); X my $header_name = $params{'Field'}; X my $minimal = uc($params{'Minimal'} || "YES"); X my $firstlinelen = $MAXLINELEN; X if ($header_name) { X $firstlinelen -= length($header_name.': '); X } X X unless (ref($words) eq "ARRAY") { X if ($minimal eq "YES") { X my @words = map {[$_, $charset]} split(/((?:\A|[\t ])[\t \x21-\x7E]+(?:[\t ]|\Z))/, $words); X $words = \@words; X } else { X $words = [[$words, $charset]]; X } X } X X # Translate / concatenate words. X my @triplets; X foreach (@$words) { X my ($s, $cset) = @$_; X my $enc; X X next unless length($s); X X # Unicode string should be encoded by given charset. X # Unsupported charset will be fallbacked to UTF-8. X if (is_utf8($s) or $s =~ $WIDECHAR) { X unless (resolve_alias($cset)) { X if ($s !~ $UNSAFE) { X $cset = "US-ASCII"; X } else { X $cset = "UTF-8"; X } X } X $s = encode($cset, $s); X } X X # Determine charset and encoding. X if ($encoding eq "A") { X ($s, $cset, $enc) = X header_encode($s, $cset || $charset, X Detect7bit => $detect7bit); X } else { X $cset ||= ($charset || ($s !~ $UNSAFE)? "US-ASCII": "ISO-8859-1"); X $enc = $encoding || X (($s !~ $UNSAFE and $cset eq "US-ASCII")? undef: "Q"); X } X X # Concatenate adjacent ``words'' so that multibyte sequences will X # be handled safely. X # Note: Encoded-word and unencoded text must not adjoin without X # separating whitespace(s). X if (scalar(@triplets)) { X my ($last, $lastenc, $lastcset) = @{$triplets[-1]}; X if (uc($lastcset) eq uc($cset) and uc($lastenc) eq uc($enc) and X resolve_alias($cset)) { X ${$triplets[-1]}[0] .= $s; X next; X } elsif (!$lastenc and $enc and $last !~ /[\t ]$/) { X if ($last =~ /^(.*)[\t ]([$PRINTABLE]+)$/s) { X ${$triplets[-1]}[0] = $1." "; X $s = $2.$s; X } elsif (uc($lastcset) eq "US-ASCII") { X ${$triplets[-1]}[0] .= $s; X ${$triplets[-1]}[1] = $enc; X ${$triplets[-1]}[2] = $cset; X next; X } X } elsif ($lastenc and !$enc and $s !~ /^[\t ]/) { X if ($s =~ /^([$PRINTABLE]+)[\t ](.*)$/s) { X ${$triplets[-1]}[0] .= $1; X $s = " ".$2; X } elsif (uc($cset) eq "US-ASCII") { X ${$triplets[-1]}[0] .= $s; X next; X } X } X } X push @triplets, [$s, $enc, $cset]; X } X X # Split long ``words''. X my @splitted; X my $restlen = $firstlinelen; X my $lastlen = 0; X foreach (@triplets) { X my ($s, $enc, $cset) = @$_; X X my $restlen = $restlen - $lastlen - 1; X if ($restlen < ($enc? encoded_header_len('', $enc, $cset): 1)) { X $restlen = $MAXLINELEN - 1; X } X X push @splitted, &_split($s, $enc, $cset, $restlen); X my ($last, $lastenc, $lastcset) = @{$splitted[-1]}; X if ($lastenc) { X $lastlen = encoded_header_len($last, $lastenc, $lastcset); X } else { X $lastlen = length($last); X } X } X X # Do encoding. X my @lines; X my $linelen = $firstlinelen; X foreach (@splitted) { X my ($str, $encoding, $charset) = @$_; X next unless length($str); X X my $s; X if (!$encoding) { X $s = $str; X } else { X $s = &encode_mimeword($str, $encoding, $charset); X } X X my $spc = (scalar(@lines) and $lines[-1] =~ /[\t ]$/)? '': ' '; X if (!scalar(@lines)) { X $s =~ s/^[\r\n\t ]+//; X push @lines, $s; X } elsif (length($lines[-1]) + length($s) <= $linelen) { X $lines[-1] .= $spc.$s; X } else { X $s =~ s/^[\r\n\t ]+//; X push @lines, $s; X $linelen = $MAXLINELEN - 1; X } X } X X join("\n ", @lines); X} X X#------------------------------ X X# _split RAW, ENCODING, CHARSET, ROOM_OF_FIRST_LINE X# Private: used by encode_mimewords() to split a string into X# (encoded or non-encoded) words. X# Returns an array of arrayrefs [SUBSTRING, ENCODING, CHARSET]. Xsub _split { X my $str = shift; X my $encoding = shift; X my $charset = shift; X my $restlen = shift; X X if (!$charset or $charset eq '8BIT') { # Undecodable. X $str =~ s/[\r\n]+[\t ]*|\x00/ /g; # Eliminate hostile characters. X return ([$str, undef, $charset]); X } X unless (resolve_alias($charset)) { # Unsupported charset. X return ([$str, $encoding, $charset]); X } X if (!$encoding and $charset eq 'US-ASCII') { X return &_split_ascii($str, $restlen); X } X X my (@splitted, $ustr, $first); X while (length($str)) { X if (encoded_header_len($str, $encoding, $charset) <= $restlen) { X push @splitted, [$str, $encoding, $charset]; X last; X } X $ustr = $str; X $ustr = decode($charset, $ustr); X ($first, $str) = &_clip_unsafe($ustr, $encoding, $charset, $restlen); X push @splitted, [$first, $encoding, $charset]; X $restlen = $MAXLINELEN - 1; X } X return @splitted; X} X X# _split_ascii RAW, ROOM_OF_FIRST_LINE X# Private: used by encode_mimewords() to split an US-ASCII string into X# (encoded or non-encoded) words. X# Returns an array of arrayrefs [SUBSTRING, ENCODING, "US-ASCII"], X# where ENCODING is either undef or (if any unsafe sequences are X# included) "Q". Xsub _split_ascii { X my $s = shift; X my $restlen = shift || $MAXLINELEN - 1; X X my @splitted; X foreach my $line (split(/[\r\n]+/, $s)) { X $line =~ s/^[\t ]+//; X X if (length($line) < $restlen and $line !~ /=\?|$UNSAFE/) { X push @splitted, [$line, undef, "US-ASCII"]; X $restlen = $MAXLINELEN - 1; X next; X } X X my ($spc, $enc); X foreach my $word (split(/([\t ]+)/, $line)) { X if ($word =~ /[\t ]/) { X $spc = $word; X next; X } X X $enc = ($word =~ /=\?|$UNSAFE/)? "Q": undef; X if (scalar(@splitted)) { X my ($last, $lastenc, $lastcset) = @{$splitted[-1]}; X my ($elen, $cont, $appe); X X # Concatenate adjacent words so that encoded-word and X # unencoded text will adjoin with separating whitespace. X if (!$lastenc and !$enc) { X $elen = length($spc.$word); X ($cont, $appe) = ($spc.$word, ""); X } elsif (!$lastenc and $enc) { X $elen = length($spc) + X encoded_header_len($word, "Q", "US-ASCII"); X ($cont, $appe) = ($spc, $word); X } elsif ($lastenc and !$enc) { X $elen = length($spc.$word); X ($cont, $appe) = ("", $spc.$word); X } else { X $elen = encoded_header_len($spc.$word, "Q", X "US-ASCII") - 15; X ($cont, $appe) = ($spc.$word, ""); X } X X if ($elen <= $restlen) { X ${$splitted[-1]}[0] .= $cont if length($cont); X push @splitted, [$appe, $enc, "US-ASCII"] if length($appe); X $restlen -= $elen; X next; X } X $restlen = $MAXLINELEN - 1; X } X push @splitted, [$word, $enc, "US-ASCII"]; X $restlen -= ($enc? X encoded_header_len($word, "Q", "US-ASCII"): X length($word)); X } X } X return @splitted; X} X X# _clip_unsafe UNICODE, ENCODING, CHARSET, ROOM_OF_FIRST_LINE X# Private: used by encode_mimewords() to bite off one encodable X# ``word'' from a Unicode string. Xsub _clip_unsafe { X my $ustr = shift; X my $encoding = shift; X my $charset = shift; X my $restlen = shift; X return ("", "") unless length($ustr); X X # Seek maximal division point. X my ($shorter, $longer) = (0, length($ustr)); X while ($shorter < $longer) { X my $cur = int(($shorter + $longer + 1) / 2); X my $enc = encode($charset, substr($ustr, 0, $cur)); X my $elen = encoded_header_len($enc, $encoding, $charset); X if ($elen <= $restlen) { X $shorter = $cur; X } else { X $longer = $cur - 1; X } X } X X # Make sure that combined characters won't be divided. X my ($fenc, $renc); X my $max = length($ustr); X while (1) { X $@ = ''; X eval { X ($fenc, $renc) = X (substr($ustr, 0, $shorter), substr($ustr, $shorter)); X $fenc = encode($charset, $fenc, FB_CROAK()); X $renc = encode($charset, $renc, FB_CROAK()); X }; X last unless ($@); X X $shorter++; X unless ($shorter < $max) { # Unencodable characters are included. X return (encode($charset, $ustr), ""); X } X } X X if (length($fenc)) { X return ($fenc, $renc); X } else { X return ($renc, ""); X } X} X X#------------------------------ X X=back X X=head1 VERSION X XConsult $VERSION variable. X XDevelopment versions of this module may be found at XL. X X=head1 SEE ALSO X XL, XL X X=head1 AUTHORS X XThe original version of function decode_mimewords() is derived from XL module that was written by: X Eryq (F), ZeeGee Software Inc (F). X David F. Skoll (dfs@roaringpenguin.com) http://www.roaringpenguin.com X XOther stuff are rewritten or added by: X Hatuka*nezumi - IKEDA Soji . X XAll rights reserved. This program is free software; you can redistribute Xit and/or modify it under the same terms as Perl itself. X X=cut X X1; END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/MIME/EncWords.pm echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/lib/auto/MIME/EncWords/.exists echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/.exists echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME > /dev/null 2>&1 echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/arch/auto/MIME/EncWords/.exists echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/bin/.exists echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/script/.exists echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1 mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1 > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man1/.exists echo c - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3 mkdir -p p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3 > /dev/null 2>&1 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/.exists sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/.exists << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/.exists' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/.exists echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/MIME::EncWords.3 sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/MIME::EncWords.3 << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/MIME::EncWords.3' X.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.32 X.\" X.\" Standard preamble: X.\" ======================================================================== X.de Sh \" Subsection heading X.br X.if t .Sp X.ne 5 X.PP X\fB\\$1\fR X.PP X.. X.de Sp \" Vertical space (when we can't use .PP) X.if t .sp .5v X.if n .sp X.. X.de Vb \" Begin verbatim text X.ft CW X.nf X.ne \\$1 X.. X.de Ve \" End verbatim text X.ft R X.fi X.. X.\" Set up some character translations and predefined strings. \*(-- will X.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left X.\" double quote, and \*(R" will give a right double quote. | will give a X.\" real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to X.\" do unbreakable dashes and therefore won't be available. \*(C` and \*(C' X.\" expand to `' in nroff, nothing in troff, for use with C<>. X.tr \(*W-|\(bv\*(Tr X.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' X.ie n \{\ X. ds -- \(*W- X. ds PI pi X. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch X. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch X. ds L" "" X. ds R" "" X. ds C` "" X. ds C' "" X'br\} X.el\{\ X. ds -- \|\(em\| X. ds PI \(*p X. ds L" `` X. ds R" '' X'br\} X.\" X.\" If the F register is turned on, we'll generate index entries on stderr for X.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index X.\" entries marked with X<> in POD. Of course, you'll have to process the X.\" output yourself in some meaningful fashion. X.if \nF \{\ X. de IX X. tm Index:\\$1\t\\n%\t"\\$2" X.. X. nr % 0 X. rr F X.\} X.\" X.\" For nroff, turn off justification. Always turn off hyphenation; it makes X.\" way too many mistakes in technical documents. X.hy 0 X.if n .na X.\" X.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). X.\" Fear. Run. Save yourself. No user-serviceable parts. X. \" fudge factors for nroff and troff X.if n \{\ X. ds #H 0 X. ds #V .8m X. ds #F .3m X. ds #[ \f1 X. ds #] \fP X.\} X.if t \{\ X. ds #H ((1u-(\\\\n(.fu%2u))*.13m) X. ds #V .6m X. ds #F 0 X. ds #[ \& X. ds #] \& X.\} X. \" simple accents for nroff and troff X.if n \{\ X. ds ' \& X. ds ` \& X. ds ^ \& X. ds , \& X. ds ~ ~ X. ds / X.\} X.if t \{\ X. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" X. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' X. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' X. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' X. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' X. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' X.\} X. \" troff and (daisy-wheel) nroff accents X.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' X.ds 8 \h'\*(#H'\(*b\h'-\*(#H' X.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] X.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' X.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' X.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] X.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] X.ds ae a\h'-(\w'a'u*4/10)'e X.ds Ae A\h'-(\w'A'u*4/10)'E X. \" corrections for vroff X.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' X.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' X. \" for low resolution devices (crt and lpr) X.if \n(.H>23 .if \n(.V>19 \ X\{\ X. ds : e X. ds 8 ss X. ds o a X. ds d- d\h'-1'\(ga X. ds D- D\h'-1'\(hy X. ds th \o'bp' X. ds Th \o'LP' X. ds ae ae X. ds Ae AE X.\} X.rm #[ #] #H #V #F C X.\" ======================================================================== X.\" X.IX Title "EncWords 3" X.TH EncWords 3 "2006-11-16" "perl v5.8.8" "User Contributed Perl Documentation" X.SH "NAME" XMIME::EncWords \- deal with RFC\-1522 encoded words (improved) X.SH "SYNOPSIS" X.IX Header "SYNOPSIS" X\&\fIMIME::EncWords is aimed to be another implimentation Xof MIME::Words so that it will achive more exact conformance with X\&\s-1MIME\s0 specifications. Additionally, it contains some improvements. XFollowing synopsis and descriptions are inherited from its inspirer, Xwith description of improvements and clarifications added.\fR X.PP XBefore reading further, you should see MIME::Tools to make sure that Xyou understand where this module fits into the grand scheme of things. XGo on, do it now. I'll wait. X.PP XReady? Ok... X.PP X.Vb 1 X\& use MIME::EncWords qw(:all); X.Ve X.PP X.Vb 4 X\& ### Decode the string into another string, forgetting the charsets: X\& $decoded = decode_mimewords( X\& 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X\& ); X.Ve X.PP X.Vb 4 X\& ### Split string into array of decoded [DATA,CHARSET] pairs: X\& @decoded = decode_mimewords( X\& 'To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ', X\& ); X.Ve X.PP X.Vb 2 X\& ### Encode a single unsafe word: X\& $encoded = encode_mimeword("\exABFran\exE7ois\exBB"); X.Ve X.PP X.Vb 2 X\& ### Encode a string, trying to find the unsafe words inside it: X\& $encoded = encode_mimewords("Me and \exABFran\exE7ois\exBB in town"); X.Ve X.SH "DESCRIPTION" X.IX Header "DESCRIPTION" XFellow Americans, you probably won't know what the hell this module Xis for. Europeans, Russians, et al, you probably do. \f(CW\*(C`:\-)\*(C'\fR. X.PP XFor example, here's a valid \s-1MIME\s0 header you might get: X.PP X.Vb 6 X\& From: =?US-ASCII?Q?Keith_Moore?= X\& To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= X\& CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard X\& Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?= X\& =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?= X\& =?US-ASCII?Q?.._cool!?= X.Ve X.PP XThe fields basically decode to (sorry, I can only approximate the XLatin characters with 7 bit sequences /o and 'e): X.PP X.Vb 4 X\& From: Keith Moore X\& To: Keld J/orn Simonsen X\& CC: Andr'e Pirard X\& Subject: If you can read this you understand the example... cool! X.Ve X.PP X\&\fBSupplement\fR: Fellow Americans, Europeans, you probably won't know Xwhat the hell this module is for. East Asians, et al, you probably do. X\&\f(CW\*(C`:\-)\*(C'\fR. X.PP XFor example, here's a valid \s-1MIME\s0 header you might get: X.PP X.Vb 2 X\& Subject: =?EUC-KR?B?sNTAuLinKGxhemluZXNzKSwgwvzB9ri7seIoaW1w?= X\& =?EUC-KR?B?YXRpZW5jZSksILGzuLgoaHVicmlzKQ==?= X.Ve X.PP XThe fields basically decode to (sorry, I cannot approximate the Xnon-Latin multibyte characters with any 7 bit sequences): X.PP X.Vb 1 X\& Subject: ???(laziness), ????(impatience), ??(hubris) X.Ve X.SH "PUBLIC INTERFACE" X.IX Header "PUBLIC INTERFACE" X.IP "decode_mimewords \s-1ENCODED\s0, [\s-1OPTS\s0...]" 4 X.IX Item "decode_mimewords ENCODED, [OPTS...]" X\&\fIFunction.\fR XGo through the string looking for RFC\-1522\-style \*(L"Q\*(R" X(quoted\-printable, sort of) or \*(L"B\*(R" (base64) encoding, and decode them. X.Sp X\&\fBIn an array context,\fR splits the \s-1ENCODED\s0 string into a list of decoded X\&\f(CW\*(C`[DATA, CHARSET]\*(C'\fR pairs, and returns that list. Unencoded Xdata are returned in a 1\-element array \f(CW\*(C`[DATA]\*(C'\fR, giving an effective X\&\s-1CHARSET\s0 of \f(CW\*(C`undef\*(C'\fR. X.Sp X.Vb 4 X\& $enc = '=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= '; X\& foreach (decode_mimewords($enc)) { X\& print "", ($_[1] || 'US-ASCII'), ": ", $_[0], "\en"; X\& } X.Ve X.Sp X\&\fBIn a scalar context,\fR joins the \*(L"data\*(R" elements of the above Xlist together, and returns that. \fIWarning: this is information\-lossy,\fR Xand probably \fInot\fR what you want, but if you know that all charsets Xin the \s-1ENCODED\s0 string are identical, it might be useful to you. X(Before you use this, please see \*(L"unmime\*(R" in MIME::WordDecoder, Xwhich is probably what you want.) X\&\fBNote\fR: See also \*(L"Charset\*(R" option below. X.Sp XIn the event of a syntax error, $@ will be set to a description Xof the error, but parsing will continue as best as possible (so as to Xget \fIsomething\fR back when decoding headers). X$@ will be false if no error was detected. X.Sp XAny arguments past the \s-1ENCODED\s0 string are taken to define a hash of options: X.RS 4 X.IP "Charset" 4 X.IX Item "Charset" X\&\fBImprovement by this module\fR: XName of character set by which data elements in scalar context Xwill be converted. XIf this option is specified as special value \f(CW"_UNICODE_"\fR, Xreturned value will be Unicode string. X.Sp XWhen Unicode/multibyte support is disabled X(see \*(L"\s-1USE_ENCODE\s0\*(R" in MIME::Charset), Xthis option will not have any effects. X.Sp X\&\fBNote\fR: XThis feature is still information\-lossy, \fIexcept\fR when \f(CW"_UNICODE_"\fR is Xspecified. X.IP "Field" 4 X.IX Item "Field" XName of the mail field this string came from. \fICurrently ignored.\fR X.RE X.RS 4 X.Sp X\&\fBImprovement by this module\fR: XAdjacent encoded-words with same charset will be concatenated Xto handle multibyte sequences safely. X.Sp X\&\fBChange by this module\fR: XMalformed base64 encoded-words will be kept encoded. XIn this case $@ will be set. X.Sp X\&\fBCompatibility with MIME::Words\fR: XWhitespaces surrounding unencoded data will not be stripped. X.RE X.IP "encode_mimeword \s-1RAW\s0, [\s-1ENCODING\s0], [\s-1CHARSET\s0]" 4 X.IX Item "encode_mimeword RAW, [ENCODING], [CHARSET]" X\&\fIFunction.\fR XEncode a single \s-1RAW\s0 \*(L"word\*(R" that has unsafe characters. XThe \*(L"word\*(R" will be encoded in its entirety. X.Sp X.Vb 2 X\& ### Encode "<>": X\& $encoded = encode_mimeword("\exABFran\exE7ois\exBB"); X.Ve X.Sp XYou may specify the \s-1ENCODING\s0 (\f(CW"Q"\fR or \f(CW"B"\fR), which defaults to \f(CW"Q"\fR. X\&\fBImprovement by this module\fR: XYou may also specify it as ``special'' value: \f(CW"S"\fR to choose shorter Xone of either \f(CW"Q"\fR or \f(CW"B"\fR. X.Sp XYou may specify the \s-1CHARSET\s0, which defaults to \f(CW\*(C`iso\-8859\-1\*(C'\fR. X.Sp X\&\fBChange by this module\fR: XSpaces will be escaped with ``_'' by \f(CW"Q"\fR encoding. X.IP "encode_mimewords \s-1RAW\s0, [\s-1OPTS\s0]" 4 X.IX Item "encode_mimewords RAW, [OPTS]" X\&\fIFunction.\fR XGiven a \s-1RAW\s0 string, try to find and encode all \*(L"unsafe\*(R" sequences Xof characters: X.Sp X.Vb 2 X\& ### Encode a string with some unsafe "words": X\& $encoded = encode_mimewords("Me and \exABFran\exE7ois\exBB"); X.Ve X.Sp XReturns the encoded string. X.Sp X\&\fBImprovement by this module\fR: X\&\s-1RAW\s0 may be a Unicode string when Unicode/multibyte support is enabled X(see \*(L"\s-1USE_ENCODE\s0\*(R" in MIME::Charset). XFurthermore, \s-1RAW\s0 may be a reference to that returned Xby \*(L"decode_mimewords\*(R" on array context. In latter case \*(L"Charset\*(R" Xoption (see below) will be overridden (see also notes below). X.Sp XAny arguments past the \s-1RAW\s0 string are taken to define a hash of options: X.RS 4 X.IP "Charset" 4 X.IX Item "Charset" XEncode all unsafe stuff with this charset. Default is '\s-1ISO\-8859\-1\s0', Xa.k.a. \*(L"Latin\-1\*(R". X.IP "Detect7bit" 4 X.IX Item "Detect7bit" X\&\fBImprovement by this modlue\fR: XWhen \*(L"Encoding\*(R" option (see below) is specified as \f(CW"a"\fR and \*(L"Charset\*(R" Xoption is unknown, try to detect 7\-bit charset on given \s-1RAW\s0 string. XDefault is \f(CW"YES"\fR. XWhen Unicode/multibyte support is disabled, Xthis option will not have any effects X(see \*(L"\s-1USE_ENCODE\s0\*(R" in MIME::Charset). X.IP "Encoding" 4 X.IX Item "Encoding" XThe encoding to use, \f(CW"q"\fR or \f(CW"b"\fR. The default is \f(CW"q"\fR. X\&\fBImprovement by this module\fR: XYou may also specify ``special'' values: \f(CW"a"\fR will automatically choose Xrecommended encoding to use (with charset conversion if alternative Xcharset is recommended: see MIME::Charset); X\&\f(CW"s"\fR will choose shorter one of either \f(CW"q"\fR or \f(CW"b"\fR. X.IP "Field" 4 X.IX Item "Field" XName of the mail field this string will be used in. X\&\fBImprovement by this module\fR: XLength of mail field name will be considered in the first line of Xencoded header. X.IP "Minimal" 4 X.IX Item "Minimal" X\&\fBImprovement by this module\fR: XTakes care of natural word separators (i.e. whitespaces) Xin the text to be encoded. XIf \f(CW"NO"\fR is specified, this module will encode whole text X(if encoding needed) not regarding whitespaces; Xencoded-words exceeding line length will be splitted based only on their Xlengths. XDefault is \f(CW"YES"\fR. X.Sp X\&\fBNote\fR: XAs of release 0.040, default has been changed to \f(CW"YES"\fR to ensure Xcompatibility with MIME::Words. XOn earlier releases, this option was fixed to be \f(CW"NO"\fR. X.RE X.RS 4 X.Sp X\&\fBNotes on improvement by this module\fR: XWhen \s-1RAW\s0 is an arrayref, Xadjacent encoded-words are concatenated. Then they are splitted taking Xcare of character boundaries of multibyte sequences, when Unicode/multibyte Xsupport is enabled. XPortions for unencoded data should include surrounding whitespace(s), or Xthey will be merged into adjoining encoded word(s). X.RE X.SH "VERSION" X.IX Header "VERSION" XConsult \f(CW$VERSION\fR variable. X.PP XDevelopment versions of this module may be found at X. X.SH "SEE ALSO" X.IX Header "SEE ALSO" XMIME::Charset, XMIME::Tools X.SH "AUTHORS" X.IX Header "AUTHORS" XThe original version of function \fIdecode_mimewords()\fR is derived from XMIME::Words module that was written by: X Eryq (\fIeryq@zeegee.com\fR), ZeeGee Software Inc (\fIhttp://www.zeegee.com\fR). X David F. Skoll (dfs@roaringpenguin.com) http://www.roaringpenguin.com X.PP XOther stuff are rewritten or added by: X Hatuka*nezumi \- \s-1IKEDA\s0 Soji . X.PP XAll rights reserved. This program is free software; you can redistribute Xit and/or modify it under the same terms as Perl itself. END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/blib/man3/MIME::EncWords.3 echo x - p5-MIME-EncWords/work/MIME-EncWords-0.040/pm_to_blib sed 's/^X//' >p5-MIME-EncWords/work/MIME-EncWords-0.040/pm_to_blib << 'END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/pm_to_blib' END-of-p5-MIME-EncWords/work/MIME-EncWords-0.040/pm_to_blib echo x - p5-MIME-EncWords/work/.extract_done.MIME-EncWords._var_tmp_MIME-EncWords sed 's/^X//' >p5-MIME-EncWords/work/.extract_done.MIME-EncWords._var_tmp_MIME-EncWords << 'END-of-p5-MIME-EncWords/work/.extract_done.MIME-EncWords._var_tmp_MIME-EncWords' END-of-p5-MIME-EncWords/work/.extract_done.MIME-EncWords._var_tmp_MIME-EncWords echo x - p5-MIME-EncWords/work/.patch_done.MIME-EncWords._var_tmp_MIME-EncWords sed 's/^X//' >p5-MIME-EncWords/work/.patch_done.MIME-EncWords._var_tmp_MIME-EncWords << 'END-of-p5-MIME-EncWords/work/.patch_done.MIME-EncWords._var_tmp_MIME-EncWords' END-of-p5-MIME-EncWords/work/.patch_done.MIME-EncWords._var_tmp_MIME-EncWords echo x - p5-MIME-EncWords/work/.configure_done.MIME-EncWords._var_tmp_MIME-EncWords sed 's/^X//' >p5-MIME-EncWords/work/.configure_done.MIME-EncWords._var_tmp_MIME-EncWords << 'END-of-p5-MIME-EncWords/work/.configure_done.MIME-EncWords._var_tmp_MIME-EncWords' END-of-p5-MIME-EncWords/work/.configure_done.MIME-EncWords._var_tmp_MIME-EncWords echo x - p5-MIME-EncWords/work/.build_done.MIME-EncWords._var_tmp_MIME-EncWords sed 's/^X//' >p5-MIME-EncWords/work/.build_done.MIME-EncWords._var_tmp_MIME-EncWords << 'END-of-p5-MIME-EncWords/work/.build_done.MIME-EncWords._var_tmp_MIME-EncWords' END-of-p5-MIME-EncWords/work/.build_done.MIME-EncWords._var_tmp_MIME-EncWords echo x - p5-MIME-EncWords/work/.PLIST.mktmp sed 's/^X//' >p5-MIME-EncWords/work/.PLIST.mktmp << 'END-of-p5-MIME-EncWords/work/.PLIST.mktmp' Xlib/perl5/5.8.8/man/man3/MIME::EncWords.3.gz X@unexec rm -f %D/lib/perl5/5.8.8/man/cat3/MIME::EncWords.3.gz %D/lib/perl5/5.8.8/man/cat3/MIME::EncWords.3 %D/lib/perl5/5.8.8/man/cat3/MIME::EncWords.3.gz %D/lib/perl5/5.8.8/man/cat3/MIME::EncWords.3.gz.gz %D/lib/perl5/5.8.8/man/cat3/MIME::EncWords.3.gz.bz2 X@unexec rmdir %D 2> /dev/null || true END-of-p5-MIME-EncWords/work/.PLIST.mktmp echo x - p5-MIME-EncWords/work/.PLIST.flattened sed 's/^X//' >p5-MIME-EncWords/work/.PLIST.flattened << 'END-of-p5-MIME-EncWords/work/.PLIST.flattened' X/var/tmp/MIME-EncWords/lib/perl5/5.8.8/man/man3/MIME::EncWords.3.gz END-of-p5-MIME-EncWords/work/.PLIST.flattened echo x - p5-MIME-EncWords/work/.PLIST.setuid sed 's/^X//' >p5-MIME-EncWords/work/.PLIST.setuid << 'END-of-p5-MIME-EncWords/work/.PLIST.setuid' END-of-p5-MIME-EncWords/work/.PLIST.setuid echo x - p5-MIME-EncWords/work/.PLIST.writable sed 's/^X//' >p5-MIME-EncWords/work/.PLIST.writable << 'END-of-p5-MIME-EncWords/work/.PLIST.writable' END-of-p5-MIME-EncWords/work/.PLIST.writable echo x - p5-MIME-EncWords/work/.PLIST.objdump sed 's/^X//' >p5-MIME-EncWords/work/.PLIST.objdump << 'END-of-p5-MIME-EncWords/work/.PLIST.objdump' END-of-p5-MIME-EncWords/work/.PLIST.objdump echo x - p5-MIME-EncWords/work/.install_done.MIME-EncWords._var_tmp_MIME-EncWords sed 's/^X//' >p5-MIME-EncWords/work/.install_done.MIME-EncWords._var_tmp_MIME-EncWords << 'END-of-p5-MIME-EncWords/work/.install_done.MIME-EncWords._var_tmp_MIME-EncWords' END-of-p5-MIME-EncWords/work/.install_done.MIME-EncWords._var_tmp_MIME-EncWords echo x - p5-MIME-EncWords/pkg-plist sed 's/^X//' >p5-MIME-EncWords/pkg-plist << 'END-of-p5-MIME-EncWords/pkg-plist' X%%SITE_PERL%%/%%PERL_ARCH%%/auto/MIME/EncWords/.packlist X%%SITE_PERL%%/MIME/EncWords.pm X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MIME/EncWords X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MIME X@dirrmtry %%SITE_PERL%%/MIME END-of-p5-MIME-EncWords/pkg-plist exit --- p5-MIME-EncWords.shar ends here --- . >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 13:40:30 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 696EF16A485 for ; Tue, 5 Jun 2007 13:40:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 491FA13C43E for ; Tue, 5 Jun 2007 13:40:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55DeTBa027875 for ; Tue, 5 Jun 2007 13:40:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55DeToV027874; Tue, 5 Jun 2007 13:40:29 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 13:40:29 GMT Resent-Message-Id: <200706051340.l55DeToV027874@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F270F16A41F for ; Tue, 5 Jun 2007 13:39:16 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id C007C13C4AE for ; Tue, 5 Jun 2007 13:39:16 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id 94B0C434002; Tue, 5 Jun 2007 08:13:25 -0500 (CDT) Message-Id: <20070605131325.94B0C434002@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 08:13:25 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113366: [Update] graphics/vp 1.6_2 -> 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 13:40:30 -0000 >Number: 113366 >Category: ports >Synopsis: [Update] graphics/vp 1.6_2 -> 1.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 13:40:28 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: Update from 1.6 to 1.7 (fixes 64b issues, updates HTTP to 1.1, minor interface and build fixes). Cleaned up the port makefile some and am willing to take maintainership. Thanks! >How-To-Repeat: >Fix: --- graphics_vp.patch begins here --- Index: graphics/vp/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/vp/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- graphics/vp/Makefile 19 May 2007 20:11:01 -0000 1.21 +++ graphics/vp/Makefile 5 Jun 2007 13:11:00 -0000 @@ -6,27 +6,21 @@ # PORTNAME= vp -PORTVERSION= 1.6 -PORTREVISION= 2 +PORTVERSION= 1.7 CATEGORIES= graphics MASTER_SITES= http://math.missouristate.edu/~erik/files/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erik@smluc.org COMMENT= An image viewer for X USE_SDL= image USE_GETOPT_LONG= yes GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \ + --x-includes=${X11BASE}/include --x-libraries=${X11BASE}/lib CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" MAN1= vp.1 PLIST_FILES= bin/vp -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib - -post-patch: - @${REINPLACE_CMD} -e 's,/usr/X11R6,${X11BASE},g' ${WRKSRC}/configure - .include Index: graphics/vp/distinfo =================================================================== RCS file: /home/ncvs/ports/graphics/vp/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- graphics/vp/distinfo 26 Nov 2005 01:48:07 -0000 1.7 +++ graphics/vp/distinfo 5 Jun 2007 13:11:00 -0000 @@ -1,3 +1,3 @@ -MD5 (vp-1.6.tar.gz) = cfbe8ad568f34a9f614e3a91f8e4abdd -SHA256 (vp-1.6.tar.gz) = e7ee7166b1e2df63fa7bd44c0849e487794881da6e2fe96ae603dc95b82b7030 -SIZE (vp-1.6.tar.gz) = 100261 +MD5 (vp-1.7.tar.gz) = 5caf42e831b036ca52fa55e944951033 +SHA256 (vp-1.7.tar.gz) = f0787fd97bf084c14451561aa339d594b69c7aafb2d6c982f2e153be24da56c7 +SIZE (vp-1.7.tar.gz) = 117634 --- graphics_vp.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 14:30:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABC1F16A400 for ; Tue, 5 Jun 2007 14:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8A95013C484 for ; Tue, 5 Jun 2007 14:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55EU8P9033168 for ; Tue, 5 Jun 2007 14:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55EU8oX033165; Tue, 5 Jun 2007 14:30:08 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 14:30:08 GMT Resent-Message-Id: <200706051430.l55EU8oX033165@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Wesley Shields Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 19B2F16A46D for ; Tue, 5 Jun 2007 14:27:36 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id B30D113C447 for ; Tue, 5 Jun 2007 14:27:35 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 70FBE5C34; Tue, 5 Jun 2007 10:29:55 -0400 (EDT) Message-Id: <20070605142955.70FBE5C34@syn.atarininja.org> Date: Tue, 5 Jun 2007 10:29:55 -0400 (EDT) From: Wesley Shields To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: aquatique-ports@rambler.ru Subject: ports/113367: [PATCH]: Update/Cleanup net/silc-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Wesley Shields List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 14:30:08 -0000 >Number: 113367 >Category: ports >Synopsis: [PATCH]: Update/Cleanup net/silc-client >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 14:30:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Wesley Shields >Release: FreeBSD 6.2-RELEASE-p5 amd64 >Organization: >Environment: System: FreeBSD syn.csh.rit.edu 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #7: Thu May 24 09:18:59 EDT 2007 root@syn.csh.rit.edu:/usr/obj/usr/src/sys/SMP amd64 >Description: Attached is a patch to net/silc-client which does quite a few things: - Update to 1.1 - Remove USE_PERL5 (not necessary) - Remove PKGDEINSTALL hacks (replace with Makefile and pkg-plist equivalents) - Install the manpage - Fix CFLAGS optimization (disabled by default still but without the post-patch hacking) - Use REINPLACE_CMD instead of PERL - Remove unnecessary OSVERSION check (4.x) - Remove installation of unnecessary files (TODO...) - Pass portlint checks (%%DATADIR%%, patch file names) The patch removes: pkg-install, files/patch-doc-Makefile.in, files/patch-irssi::src::core::network.c The patch adds: files/patch-apps__irssi__Makefile.in, files/patch-doc__Makefile.in I've CC'ed the maintainer on this. As I use this port daily and intend on working on a patch to build silc-client as a plugin to irssi I am willing to take over maintainer role for this port if desired. >How-To-Repeat: N/A >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/silc-client/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- Makefile 18 Jan 2007 16:26:34 -0000 1.44 +++ Makefile 5 Jun 2007 14:17:45 -0000 @@ -6,7 +6,7 @@ # PORTNAME= silc -PORTVERSION= 1.0.3 +PORTVERSION= 1.1 CATEGORIES= net ipv6 security MASTER_SITES= http://www.silcnet.org/download/%SUBDIR%/ \ http://ftp.silcnet.org/%SUBDIR%/ \ @@ -28,22 +28,16 @@ COMMENT= Secure Internet Live Conferencing (SILC) network client USE_BZIP2= yes -USE_PERL5= yes GNU_CONFIGURE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_GNOME= glib12 USE_GMAKE= yes -CONFIGURE_ARGS= --with-etcdir=${PREFIX}/etc/${PORTNAME} \ - --with-simdir=${PREFIX}/lib/silcsim/client \ - --with-helpdir=${PREFIX}/share/${PORTNAME}/help \ - --with-docdir=${PREFIX}/share/doc/silc \ +CONFIGURE_ARGS= --docdir=${PREFIX}/share/doc/silc \ + --mandir=${PREFIX}/man \ --with-perl=no \ - --without-libtoolfix -#INSTALLS_SHLIB= yes -PLIST_SUB= INSTALL_DIR="${INSTALL_DIR}" -PKGDEINSTALL= ${PKGINSTALL} - -INSTALL_DIR?= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 + --without-libtoolfix \ + --disable-optimizations +MAN1= silc.1 .ifndef(WITH_PTHREADS) CONFIGURE_ARGS+= --without-pthreads @@ -61,32 +55,23 @@ .ifndef(WITH_PTHREADS) @${ECHO_MSG} '===> Define WITH_PTHREADS to enable pthreads support' .endif - @${ECHO_MSG} -.ifndef(WITH_OPTIMIZED_CFLAGS) - @${ECHO_MSG} '===> Define WITH_OPTIMIZED_CFLAGS to enable compilation optimizations' - @${ECHO_MSG} '===> which is known to break some platforms (e.g., alpha)' -.endif post-patch: -.ifndef(WITH_OPTIMIZED_CFLAGS) - @${PERL} -pi -e 's/-O2//' ${WRKSRC}/${CONFIGURE_SCRIPT} -.endif # install neither documentation nor silc server, we have ports for those - @${PERL} -pi -e 's/-D_THREAD_SAFE//' ${WRKSRC}/${CONFIGURE_SCRIPT} - @${PERL} -pi -e 's/docdir/DOCDIR/' ${WRKSRC}/doc/Makefile.in - @${PERL} -pi -e 's/^(install-data-am:) install-docDATA$$/\1/' \ + @${REINPLACE_CMD} -e 's/-D_THREAD_SAFE//' ${WRKSRC}/${CONFIGURE_SCRIPT} + @${REINPLACE_CMD} -e 's/docdir/DOCDIR/' ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -e 's/^install-data-am: install-docDATA$$/install-data-am:/' \ ${WRKSRC}/apps/irssi/docs/Makefile.in - @${PERL} -pi -e 's/^(install-data-am:) install-moduleLTLIBRARIES$$/\1/' \ + @${REINPLACE_CMD} -e 's/^install-data-am: install-moduleLTLIBRARIES$$/install-data-am:/' \ ${WRKSRC}/apps/irssi/src/perl/Makefile.in - @${PERL} -pi -e 's/--libtool-enable-shared//' \ + @${REINPLACE_CMD} -e 's/--libtool-enable-shared//' \ ${WRKSRC}/lib/silccrypt/Makefile.in - -#post-configure: -# @${CP} ${LIBTOOL} ${WRKSRC} + @${REINPLACE_CMD} -e 's/^MODULESDIR="$$silc_prefix/MODULESDIR="$$silc_prefix\/share\/silc/' ${WRKSRC}/configure post-install: - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} \ - ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @if [ ! -f ${PREFIX}/etc/silc.conf ]; then \ + ${CP} -p ${PREFIX}/etc/silc.conf.sample ${PREFIX}/etc/silc.conf ; \ + fi .include @@ -94,7 +79,7 @@ WITHOUT_OPTIMIZED_ASM= yes .endif -.if ${OSVERSION} >= 400014 && !defined(WITHOUT_IPV6) +.ifndef(WITHOUT_IPV6) CONFIGURE_ARGS+= --enable-ipv6 .endif Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/silc-client/distinfo,v retrieving revision 1.21 diff -u -r1.21 distinfo --- distinfo 18 Jan 2007 16:26:34 -0000 1.21 +++ distinfo 5 Jun 2007 14:17:45 -0000 @@ -1,3 +1,3 @@ -MD5 (silc-client-1.0.3.tar.bz2) = 6727a65fe71b90b018086afe8fc84cf9 -SHA256 (silc-client-1.0.3.tar.bz2) = ee4b39b1122ac47f678edb874288412d208f57ccad9e81b1086126276d6a5440 -SIZE (silc-client-1.0.3.tar.bz2) = 1424405 +MD5 (silc-client-1.1.tar.bz2) = 3b2d25e2379c79d88169ef777230f318 +SHA256 (silc-client-1.1.tar.bz2) = b41f162cd06e3b21daacd39a54438cc5b8c63228110bebeaf7b8c886bf107326 +SIZE (silc-client-1.1.tar.bz2) = 1611218 Index: pkg-install =================================================================== RCS file: pkg-install diff -N pkg-install --- pkg-install 18 Jan 2007 16:26:34 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,61 +0,0 @@ -#!/bin/sh -# $FreeBSD: ports/net/silc-client/pkg-install,v 1.3 2007/01/18 16:26:34 rafan Exp $ - -# based on original from op port, written by Cyrille Lefevre -# - -[ $# != 2 ] && exit 1 -PKGNAME=$1 -ACTION=$2 - -CONF_DIR=${PKG_PREFIX}/etc/silc -DOC_DIR=${PKG_PREFIX}/share/doc/silc -#/example_silc.conf - -CONF_FILE=silc.conf -CONF_OWN=root -CONF_GRP=wheel -CONF_MODE=444 - -SAMP_SUFX=.sample - -INSTALL=install -CMP=cmp -RM=rm -RMDIR=rmdir - -INSTALL_DIR="${INSTALL} -d -o root -g wheel -m 755" - -case "$ACTION" in - -POST-INSTALL) - if [ -f "${CONF_DIR}/${CONF_FILE}" ] - then - echo "$PKGNAME: Will not overwrite existing ${CONF_DIR}/${CONF_FILE} configuration file." - else - ${INSTALL} -c -o ${CONF_OWN} -g ${CONF_GRP} -m ${CONF_MODE} \ - ${DOC_DIR}/example_silc.conf \ - ${CONF_DIR}/${CONF_FILE} - fi - ;; - -DEINSTALL) - if ${CMP} -s ${DOC_DIR}/example_silc.conf \ - ${CONF_DIR}/${CONF_FILE}; then - ${RM} -f ${CONF_DIR}/${CONF_FILE} - else - echo "$PKGNAME: Will not remove existing ${CONF_DIR}/${CONF_FILE} configuration file." - echo "$PKGNAME: However, if you are permanently removing this port, you should do a 'rm -f ${CONF_DIR}/${CONF_FILE}' to remove the configuration file left." - echo "$PKGNAME: Also, do not forget to 'rmdir ${CONF_DIR} 2>/dev/null'" - fi - ;; - -PRE-INSTALL|POST-DEINSTALL) - ;; - -*) - exit 1 - ;; -esac - -exit Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/silc-client/pkg-plist,v retrieving revision 1.20 diff -u -r1.20 pkg-plist --- pkg-plist 18 Jan 2007 16:26:34 -0000 1.20 +++ pkg-plist 5 Jun 2007 14:17:45 -0000 @@ -1,113 +1,116 @@ bin/silc -share/silc/help/action -share/silc/help/admin -share/silc/help/alias -share/silc/help/attr -share/silc/help/away -share/silc/help/ban -share/silc/help/beep -share/silc/help/bind -share/silc/help/cat -share/silc/help/cd -share/silc/help/channel -share/silc/help/clear -share/silc/help/close -share/silc/help/cmode -share/silc/help/connect -share/silc/help/cumode -share/silc/help/cycle -share/silc/help/date -share/silc/help/dehilight -share/silc/help/detach -share/silc/help/disconnect -share/silc/help/echo -share/silc/help/eval -share/silc/help/exec -share/silc/help/file -share/silc/help/format -share/silc/help/getkey -share/silc/help/help -share/silc/help/hilight -share/silc/help/ignore -share/silc/help/info -share/silc/help/invite -share/silc/help/invitelist -share/silc/help/join -share/silc/help/key -share/silc/help/kick -share/silc/help/kickban -share/silc/help/kill -share/silc/help/knockout -share/silc/help/lastlog -share/silc/help/layout -share/silc/help/levels -share/silc/help/list -share/silc/help/listkeys -share/silc/help/load -share/silc/help/log -share/silc/help/me -share/silc/help/motd -share/silc/help/mmsg -share/silc/help/msg -share/silc/help/names -share/silc/help/nick -share/silc/help/notice -share/silc/help/oper -share/silc/help/part -share/silc/help/perlflush -share/silc/help/ping -share/silc/help/query -share/silc/help/quit -share/silc/help/reconnect -share/silc/help/reload -share/silc/help/rmreconns -share/silc/help/rmrejoins -share/silc/help/save -share/silc/help/sconnect -share/silc/help/script -share/silc/help/scrollback -share/silc/help/server -share/silc/help/set -share/silc/help/shutdown -share/silc/help/silcnet -share/silc/help/silcoper -share/silc/help/smsg -share/silc/help/stats -share/silc/help/statusbar -share/silc/help/toggle -share/silc/help/topic -share/silc/help/umode -share/silc/help/unalias -share/silc/help/unignore -share/silc/help/unload -share/silc/help/unquery -share/silc/help/users -share/silc/help/version -share/silc/help/watch -share/silc/help/whois -share/silc/help/whowas -share/silc/help/window -share/silc/themes/default.theme -share/silc/scripts/autoop.pl -share/silc/scripts/beep.pl -share/silc/scripts/clones.pl -share/silc/scripts/dns.pl -share/silc/scripts/hello.pl -share/silc/scripts/mail-maildir.pl -share/silc/scripts/mail.pl -share/silc/scripts/silc-mime.pl -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/CREDITS -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/example_silc.conf -@dirrm share/silc/themes -@dirrm share/silc/help -@dirrm share/silc/scripts -@dirrm share/silc -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry etc/silc -@dirrmtry lib/silcsim/client -@dirrmtry lib/silcsim +%%DATADIR%%/help/action +%%DATADIR%%/help/admin +%%DATADIR%%/help/alias +%%DATADIR%%/help/attr +%%DATADIR%%/help/away +%%DATADIR%%/help/ban +%%DATADIR%%/help/beep +%%DATADIR%%/help/bind +%%DATADIR%%/help/cat +%%DATADIR%%/help/cd +%%DATADIR%%/help/channel +%%DATADIR%%/help/clear +%%DATADIR%%/help/close +%%DATADIR%%/help/cmode +%%DATADIR%%/help/connect +%%DATADIR%%/help/cumode +%%DATADIR%%/help/cycle +%%DATADIR%%/help/date +%%DATADIR%%/help/dehilight +%%DATADIR%%/help/detach +%%DATADIR%%/help/disconnect +%%DATADIR%%/help/echo +%%DATADIR%%/help/eval +%%DATADIR%%/help/exec +%%DATADIR%%/help/file +%%DATADIR%%/help/format +%%DATADIR%%/help/getkey +%%DATADIR%%/help/help +%%DATADIR%%/help/hilight +%%DATADIR%%/help/ignore +%%DATADIR%%/help/info +%%DATADIR%%/help/invite +%%DATADIR%%/help/invitelist +%%DATADIR%%/help/join +%%DATADIR%%/help/key +%%DATADIR%%/help/kick +%%DATADIR%%/help/kickban +%%DATADIR%%/help/kill +%%DATADIR%%/help/knockout +%%DATADIR%%/help/lastlog +%%DATADIR%%/help/layout +%%DATADIR%%/help/levels +%%DATADIR%%/help/list +%%DATADIR%%/help/listkeys +%%DATADIR%%/help/load +%%DATADIR%%/help/log +%%DATADIR%%/help/me +%%DATADIR%%/help/motd +%%DATADIR%%/help/mmsg +%%DATADIR%%/help/msg +%%DATADIR%%/help/names +%%DATADIR%%/help/nick +%%DATADIR%%/help/notice +%%DATADIR%%/help/oper +%%DATADIR%%/help/part +%%DATADIR%%/help/perlflush +%%DATADIR%%/help/ping +%%DATADIR%%/help/query +%%DATADIR%%/help/quit +%%DATADIR%%/help/recode +%%DATADIR%%/help/reconnect +%%DATADIR%%/help/reload +%%DATADIR%%/help/rmreconns +%%DATADIR%%/help/rmrejoins +%%DATADIR%%/help/save +%%DATADIR%%/help/sconnect +%%DATADIR%%/help/script +%%DATADIR%%/help/scrollback +%%DATADIR%%/help/server +%%DATADIR%%/help/set +%%DATADIR%%/help/shutdown +%%DATADIR%%/help/silcnet +%%DATADIR%%/help/silcoper +%%DATADIR%%/help/smsg +%%DATADIR%%/help/stats +%%DATADIR%%/help/statusbar +%%DATADIR%%/help/toggle +%%DATADIR%%/help/topic +%%DATADIR%%/help/umode +%%DATADIR%%/help/unalias +%%DATADIR%%/help/unignore +%%DATADIR%%/help/unload +%%DATADIR%%/help/unquery +%%DATADIR%%/help/users +%%DATADIR%%/help/version +%%DATADIR%%/help/watch +%%DATADIR%%/help/whois +%%DATADIR%%/help/whowas +%%DATADIR%%/help/window +%%DATADIR%%/themes/default.theme +%%DATADIR%%/themes/plugin.theme +%%DATADIR%%/scripts/autoop.pl +%%DATADIR%%/scripts/autorejoin.pl +%%DATADIR%%/scripts/buf.pl +%%DATADIR%%/scripts/command.pl +%%DATADIR%%/scripts/dns.pl +%%DATADIR%%/scripts/kills.pl +%%DATADIR%%/scripts/mail.pl +%%DATADIR%%/scripts/mlock.pl +%%DATADIR%%/scripts/msg-event.pl +%%DATADIR%%/scripts/quitmsg.pl +%%DATADIR%%/scripts/redirect.pl +%%DATADIR%%/scripts/scriptassist.pl +%%DATADIR%%/scripts/silc.pl +%%DATADIR%%/scripts/splitlong.pl +%%DATADIR%%/scripts/usercount.pl +@unexec if cmp -s %D/etc/silc.conf.sample %D/etc/silc.conf; then rm -f %D/etc/silc.conf; fi +etc/silc.conf.sample +@exec if [ ! -f %D/etc/silc.conf ] ; then cp -p %D/%F %B/silc.conf; fi +@dirrm %%DATADIR%%/themes +@dirrm %%DATADIR%%/help +@dirrm %%DATADIR%%/scripts +@dirrm %%DATADIR%%/modules +@dirrm %%DATADIR%% +@dirrm %%DOCSDIR%% Index: files/patch-apps__irssi__Makefile.in =================================================================== RCS file: files/patch-apps__irssi__Makefile.in diff -N files/patch-apps__irssi__Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-apps__irssi__Makefile.in 5 Jun 2007 14:17:45 -0000 @@ -0,0 +1,11 @@ +--- ./apps/irssi/Makefile.in.orig Mon Jun 4 05:22:15 2007 ++++ ./apps/irssi/Makefile.in Tue Jun 5 00:55:54 2007 +@@ -813,7 +813,7 @@ + -mkdir -p $(mandir)/man1 + + doc-install-client: +- $(INSTALL_DATA) $(silc_top_srcdir)/apps/irssi/silc.conf $(docdir)/example_silc.conf ++ $(INSTALL_DATA) $(silc_top_srcdir)/apps/irssi/silc.conf $(sysconfdir)/silc.conf.sample + -@if test -f $(silc_top_srcdir)/doc/silc.1 ; then \ + $(INSTALL_DATA) $(silc_top_srcdir)/doc/silc.1 $(mandir)/man1; \ + fi Index: files/patch-doc-Makefile.in =================================================================== RCS file: files/patch-doc-Makefile.in diff -N files/patch-doc-Makefile.in --- files/patch-doc-Makefile.in 18 Jan 2007 16:26:34 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,25 +0,0 @@ ---- doc/Makefile.in.orig Thu Jan 18 12:14:15 2007 -+++ doc/Makefile.in Thu Jan 18 12:14:46 2007 -@@ -402,22 +402,9 @@ - - - all: -- touch draft-riikonen-silc-spec-08.txt -- touch draft-riikonen-silc-pp-09.txt -- touch draft-riikonen-silc-ke-auth-08.txt -- touch draft-riikonen-silc-commands-06.txt -- touch draft-riikonen-silc-flags-payloads-04.txt -- touch draft-riikonen-presence-attrs-03.txt - - dist-hook: - $(SILC_TOP_SRCDIR)/scripts/manpages.pl -- rm draft-riikonen*.txt -- touch draft-riikonen-silc-spec-08.txt -- touch draft-riikonen-silc-pp-09.txt -- touch draft-riikonen-silc-ke-auth-08.txt -- touch draft-riikonen-silc-commands-06.txt -- touch draft-riikonen-silc-flags-payloads-04.txt -- touch draft-riikonen-presence-attrs-03.txt - - doc-install: - -mkdir -p $(DOCDIR) Index: files/patch-doc__Makefile.in =================================================================== RCS file: files/patch-doc__Makefile.in diff -N files/patch-doc__Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-doc__Makefile.in 5 Jun 2007 14:17:45 -0000 @@ -0,0 +1,17 @@ +--- ./doc/Makefile.in.orig Tue Jun 5 01:18:13 2007 ++++ ./doc/Makefile.in Tue Jun 5 01:18:39 2007 +@@ -449,14 +449,6 @@ + $(SILC_TOP_SRCDIR)/scripts/manpages.pl + + doc-install: +- -mkdir -p $(docdir) +- -$(INSTALL_DATA) $(top_srcdir)/doc/FAQ $(docdir)/ +- -$(INSTALL_DATA) $(top_srcdir)/COPYING $(docdir)/ +- -$(INSTALL_DATA) $(top_srcdir)/CHANGES $(docdir)/ +- -$(INSTALL_DATA) $(top_srcdir)/CREDITS $(docdir)/ +- -$(INSTALL_DATA) $(top_srcdir)/README* $(docdir)/ +- -$(INSTALL_DATA) $(top_srcdir)/INSTALL $(docdir)/ +- -$(INSTALL_DATA) $(top_srcdir)/TODO $(docdir)/ + + install-data-hook: doc-install + Index: files/patch-irssi::src::core::network.c =================================================================== RCS file: files/patch-irssi::src::core::network.c diff -N files/patch-irssi::src::core::network.c --- files/patch-irssi::src::core::network.c 18 Jan 2007 16:26:34 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- apps/irssi/src/core/network.c.orig Sun Jan 25 10:11:14 2004 -+++ apps/irssi/src/core/network.c Sun Jan 25 10:11:29 2004 -@@ -611,7 +611,7 @@ - int net_hosterror_notfound(int error) - { - #ifdef HAVE_IPV6 -- return error != 1 && (error == EAI_NONAME || error == EAI_NODATA); -+ return error != 1 && (error == EAI_NONAME); - #else - return error == HOST_NOT_FOUND || error == NO_ADDRESS; - #endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 14:30:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3EC616A474; Tue, 5 Jun 2007 14:30:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C894613C4D1; Tue, 5 Jun 2007 14:30:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55EUK2d033778; Tue, 5 Jun 2007 14:30:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55EUKWq033772; Tue, 5 Jun 2007 14:30:20 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 14:30:20 GMT From: Edwin Groothuis Message-Id: <200706051430.l55EUKWq033772@freefall.freebsd.org> To: wxs@atarininja.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113367: [PATCH]: Update/Cleanup net/silc-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 14:30:21 -0000 Synopsis: [PATCH]: Update/Cleanup net/silc-client State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Jun 5 14:30:20 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113367 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 14:50:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A338416A4A7 for ; Tue, 5 Jun 2007 14:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7DA9013C469 for ; Tue, 5 Jun 2007 14:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Eo5Ve035941 for ; Tue, 5 Jun 2007 14:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Eo5Je035940; Tue, 5 Jun 2007 14:50:05 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 14:50:05 GMT Resent-Message-Id: <200706051450.l55Eo5Je035940@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Martin Wilke" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4032C16A41F for ; Tue, 5 Jun 2007 14:44:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.freebsd.org (Postfix) with ESMTP id 0720713C4AD for ; Tue, 5 Jun 2007 14:44:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from miwi.homeunix.com (dslb-082-083-145-149.pools.arcor-ip.net [82.83.145.149]) by unixfreunde.net (Postfix) with ESMTP id 3FBB250BF1 for ; Tue, 5 Jun 2007 16:22:54 +0200 (CEST) Message-Id: <1181061046.45488@miwi.homeunix.com> Date: Tue, 5 Jun 2007 16:30:46 -0000 From: "Martin Wilke" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.8 Cc: Subject: ports/113368: 7 Repocopy request X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 14:50:05 -0000 >Number: 113368 >Category: ports >Synopsis: 7 Repocopy request >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 14:50:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Martin Wilke >Release: FreeBSD 7.0-CURRENT i386 >Organization: FreeBSD >Environment: System: FreeBSD 7.0-CURRENT #294: Wed May 30 16:35:26 UTC 2007 miwi@miwi.homeunix.com:/usr/obj/usr/src/sys/BSDBOX >Description: Please make the following repocopies ... devel/pear-PHPUnit2 -> devel/pear-PHPUnit3 www/dotproject -> www/dotproject-devel net-im/wildfire -> net-im/openfire devel/pear-HTML_QuickForum -> devel/pear-HTML_QuickForm2 net-mgmt/nfdump -> net-mgmt/nfdump-devel audio/libmusicbrainz -> audio/libmusicbrainz3 www/squid -> www/squid30 Thanks :) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 14:58:32 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2EDD16A46E; Tue, 5 Jun 2007 14:58:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6D13C13C4B9; Tue, 5 Jun 2007 14:58:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55EwUDe036821; Tue, 5 Jun 2007 14:58:30 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55EwUp2036817; Tue, 5 Jun 2007 14:58:30 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 14:58:30 GMT From: Martin Wilke Message-Id: <200706051458.l55EwUp2036817@freefall.freebsd.org> To: miwi@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Cc: Subject: Re: ports/113368: 7 Repocopy request X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 14:58:32 -0000 Synopsis: 7 Repocopy request State-Changed-From-To: open->repocopy State-Changed-By: miwi State-Changed-When: Tue Jun 5 14:57:34 UTC 2007 State-Changed-Why: Over to portmgr for repocopy. Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 14:57:34 UTC 2007 Responsible-Changed-Why: Over to portmgr for repocopy. http://www.freebsd.org/cgi/query-pr.cgi?pr=113368 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:00:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 463DB16A400 for ; Tue, 5 Jun 2007 16:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 07B3013C45A for ; Tue, 5 Jun 2007 16:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55G0Bne042986 for ; Tue, 5 Jun 2007 16:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55G0B6N042985; Tue, 5 Jun 2007 16:00:11 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:00:11 GMT Resent-Message-Id: <200706051600.l55G0B6N042985@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tim Bishop Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AB2316A41F for ; Tue, 5 Jun 2007 15:53:20 +0000 (UTC) (envelope-from T.D.Bishop@kent.ac.uk) Received: from mx6.kent.ac.uk (mx6.kent.ac.uk [129.12.21.37]) by mx1.freebsd.org (Postfix) with ESMTP id 29B5413C45D for ; Tue, 5 Jun 2007 15:53:19 +0000 (UTC) (envelope-from T.D.Bishop@kent.ac.uk) Received: from hathor.ukc.ac.uk ([129.12.4.12]) by mx6.kent.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.62) (envelope-from ) id 1HvbLF-0006Xf-MU; Tue, 05 Jun 2007 16:53:05 +0100 Received: from pendennis.ukc.ac.uk ([129.12.3.232] helo=pendennis.kent.ac.uk) by hathor.ukc.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.66) (envelope-from ) id 1HvbLF-00076W-H2; Tue, 05 Jun 2007 16:53:05 +0100 Received: from tdb by pendennis.kent.ac.uk with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvbLF-000EnH-9U; Tue, 05 Jun 2007 16:53:05 +0100 Message-Id: Date: Tue, 05 Jun 2007 16:53:05 +0100 From: Tim Bishop Sender: "T.D.Bishop" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dryice@dryice.name Subject: ports/113370: [PATCH] textproc/muse: Respect alternate LOCALBASE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:00:17 -0000 >Number: 113370 >Category: ports >Synopsis: [PATCH] textproc/muse: Respect alternate LOCALBASE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tim Bishop >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD pendennis.kent.ac.uk 6.2-STABLE FreeBSD 6.2-STABLE #4: Sun May 20 17:30:14 BST 2007 >Description: Respect alternate LOCALBASE. Added file(s): - files/patch-Makefile.defs Port maintainer (dryice@dryice.name) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- muse-emacs21-3.02.93_1.patch begins here --- Index: files/patch-Makefile.defs =================================================================== RCS file: files/patch-Makefile.defs diff -N files/patch-Makefile.defs --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-Makefile.defs 5 Jun 2007 10:08:47 -0000 @@ -0,0 +1,11 @@ +--- ./Makefile.defs.orig Tue Jun 5 11:08:33 2007 ++++ ./Makefile.defs Tue Jun 5 11:08:42 2007 +@@ -8,7 +8,7 @@ + + # Installation options + # PREFIX is only used here. +-PREFIX = /usr/local ++PREFIX = $(LOCALBASE) + ELISPDIR = $(PREFIX)/share/emacs/site-lisp/muse + INFODIR = $(PREFIX)/info + --- muse-emacs21-3.02.93_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:00:30 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E27E16A400; Tue, 5 Jun 2007 16:00:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3322613C480; Tue, 5 Jun 2007 16:00:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55G0UDA043179; Tue, 5 Jun 2007 16:00:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55G0UdG043175; Tue, 5 Jun 2007 16:00:30 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 16:00:30 GMT From: Edwin Groothuis Message-Id: <200706051600.l55G0UdG043175@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, anray@FreeBSD.org Cc: Subject: Re: ports/113370: [PATCH] textproc/muse: Respect alternate LOCALBASE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:00:30 -0000 Synopsis: [PATCH] textproc/muse: Respect alternate LOCALBASE Responsible-Changed-From-To: freebsd-ports-bugs->anray Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 16:00:29 UTC 2007 Responsible-Changed-Why: anray@ wants to have elisp PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113370 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:10:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1C2616A41F for ; Tue, 5 Jun 2007 16:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AFF0313C46A for ; Tue, 5 Jun 2007 16:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GA9AY044300 for ; Tue, 5 Jun 2007 16:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GA9vV044299; Tue, 5 Jun 2007 16:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:10:09 GMT Resent-Message-Id: <200706051610.l55GA9vV044299@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E110316A469 for ; Tue, 5 Jun 2007 16:03:25 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id A4D7313C4B7 for ; Tue, 5 Jun 2007 16:03:25 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id D34C7434001; Tue, 5 Jun 2007 11:03:24 -0500 (CDT) Message-Id: <20070605160324.D34C7434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:03:24 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113371: [Maintainer Update] lang/gauche 0.8.9 -> 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:10:09 -0000 >Number: 113371 >Category: ports >Synopsis: [Maintainer Update] lang/gauche 0.8.9 -> 0.8.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:10:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: Freshmeat blurb: This release contains various improvements, including stricter keyword argument checking, remote process execution, 16-bit floating point number support, built-in treemaps, inexact arithmetic operations, and more. It also contains several C API updates. >How-To-Repeat: >Fix: --- lang_gauche.patch begins here --- Index: lang/gauche/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/gauche/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- lang/gauche/Makefile 21 Feb 2007 13:20:02 -0000 1.44 +++ lang/gauche/Makefile 5 Jun 2007 14:06:51 -0000 @@ -6,8 +6,7 @@ # PORTNAME= gauche -PORTVERSION= 0.8.9 # Keep databases/gauche-gdbm in sync with this -PORTREVISION= 1 +PORTVERSION= 0.8.10 # Keep databases/gauche-gdbm in sync with this CATEGORIES= lang scheme MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} Index: lang/gauche/distinfo =================================================================== RCS file: /home/ncvs/ports/lang/gauche/distinfo,v retrieving revision 1.24 diff -u -r1.24 distinfo --- lang/gauche/distinfo 19 Jan 2007 08:40:39 -0000 1.24 +++ lang/gauche/distinfo 5 Jun 2007 14:06:51 -0000 @@ -1,3 +1,3 @@ -MD5 (Gauche-0.8.9.tgz) = 242febb7ab09b95377e39aabb8adb6d7 -SHA256 (Gauche-0.8.9.tgz) = c52c0e77f5bca909870e4492cff7255b2f0781a7b1e91b4071659c0787608db9 -SIZE (Gauche-0.8.9.tgz) = 3080645 +MD5 (Gauche-0.8.10.tgz) = 8ff2506962808c9e06e5049d2c5c1a0b +SHA256 (Gauche-0.8.10.tgz) = 616fa2c337db5de57c95fa1dc5664b2d358fd4695ea9da12f008d014ed5ae9bd +SIZE (Gauche-0.8.10.tgz) = 3184850 Index: lang/gauche/pkg-plist =================================================================== RCS file: /home/ncvs/ports/lang/gauche/pkg-plist,v retrieving revision 1.24 diff -u -r1.24 pkg-plist --- lang/gauche/pkg-plist 19 Jan 2007 08:40:39 -0000 1.24 +++ lang/gauche/pkg-plist 5 Jun 2007 14:06:51 -0000 @@ -42,24 +42,36 @@ lib/gauche/%%VERSION%%/include/gauche.h lib/gauche/%%VERSION%%/include/gauche/arch.h lib/gauche/%%VERSION%%/include/gauche/bignum.h +lib/gauche/%%VERSION%%/include/gauche/bits.h lib/gauche/%%VERSION%%/include/gauche/builtin-syms.h lib/gauche/%%VERSION%%/include/gauche/char_euc_jp.h lib/gauche/%%VERSION%%/include/gauche/char_none.h lib/gauche/%%VERSION%%/include/gauche/char_sjis.h lib/gauche/%%VERSION%%/include/gauche/char_utf_8.h +lib/gauche/%%VERSION%%/include/gauche/charset.h lib/gauche/%%VERSION%%/include/gauche/class.h lib/gauche/%%VERSION%%/include/gauche/code.h +lib/gauche/%%VERSION%%/include/gauche/collection.h lib/gauche/%%VERSION%%/include/gauche/config.h lib/gauche/%%VERSION%%/include/gauche/exception.h lib/gauche/%%VERSION%%/include/gauche/extend.h +lib/gauche/%%VERSION%%/include/gauche/float.h +lib/gauche/%%VERSION%%/include/gauche/gloc.h +lib/gauche/%%VERSION%%/include/gauche/hash.h lib/gauche/%%VERSION%%/include/gauche/int64.h +lib/gauche/%%VERSION%%/include/gauche/keyword.h +lib/gauche/%%VERSION%%/include/gauche/load.h lib/gauche/%%VERSION%%/include/gauche/mingw-compat.h lib/gauche/%%VERSION%%/include/gauche/net.h lib/gauche/%%VERSION%%/include/gauche/number.h +lib/gauche/%%VERSION%%/include/gauche/parameter.h lib/gauche/%%VERSION%%/include/gauche/port.h lib/gauche/%%VERSION%%/include/gauche/pthread.h lib/gauche/%%VERSION%%/include/gauche/scmconst.h +lib/gauche/%%VERSION%%/include/gauche/string.h +lib/gauche/%%VERSION%%/include/gauche/symbol.h lib/gauche/%%VERSION%%/include/gauche/system.h +lib/gauche/%%VERSION%%/include/gauche/treemap.h lib/gauche/%%VERSION%%/include/gauche/uthread.h lib/gauche/%%VERSION%%/include/gauche/uvector.h lib/gauche/%%VERSION%%/include/gauche/vector.h @@ -73,16 +85,13 @@ lib/libgauche.so.%%VERSION%% lib/libgauche.so.0 share/aclocal/gauche.m4 -share/gauche/%%VERSION%%/lib/compat/norational.scm -share/gauche/%%VERSION%%/lib/sxml/serializer.scm -share/gauche/%%VERSION%%/lib/util/rbtree.scm -share/gauche/%%VERSION%%/lib/util/trie.scm %%DATADIR%%/%%VERSION%%/aclocal.m4 %%DATADIR%%/%%VERSION%%/lib/.packages/.keepme %%DATADIR%%/%%VERSION%%/lib/binary/io.scm %%DATADIR%%/%%VERSION%%/lib/binary/pack.scm %%DATADIR%%/%%VERSION%%/lib/cesconv %%DATADIR%%/%%VERSION%%/lib/compat/jfilter.scm +%%DATADIR%%/%%VERSION%%/lib/compat/norational.scm %%DATADIR%%/%%VERSION%%/lib/compat/stk.scm %%DATADIR%%/%%VERSION%%/lib/dbd/null.scm %%DATADIR%%/%%VERSION%%/lib/dbi.scm @@ -101,6 +110,7 @@ %%DATADIR%%/%%VERSION%%/lib/gauche/condutil.scm %%DATADIR%%/%%VERSION%%/lib/gauche/config.scm %%DATADIR%%/%%VERSION%%/lib/gauche/defvalues.scm +%%DATADIR%%/%%VERSION%%/lib/gauche/dictionary.scm %%DATADIR%%/%%VERSION%%/lib/gauche/fcntl.scm %%DATADIR%%/%%VERSION%%/lib/gauche/fileutil.scm %%DATADIR%%/%%VERSION%%/lib/gauche/hashutil.scm @@ -148,6 +158,7 @@ %%DATADIR%%/%%VERSION%%/lib/gauche/test.scm %%DATADIR%%/%%VERSION%%/lib/gauche/threads.scm %%DATADIR%%/%%VERSION%%/lib/gauche/time.scm +%%DATADIR%%/%%VERSION%%/lib/gauche/treeutil.scm %%DATADIR%%/%%VERSION%%/lib/gauche/uvector.scm %%DATADIR%%/%%VERSION%%/lib/gauche/validator.scm %%DATADIR%%/%%VERSION%%/lib/gauche/version.scm @@ -161,8 +172,11 @@ %%DATADIR%%/%%VERSION%%/lib/rfc/822.scm %%DATADIR%%/%%VERSION%%/lib/rfc/base64.scm %%DATADIR%%/%%VERSION%%/lib/rfc/cookie.scm +%%DATADIR%%/%%VERSION%%/lib/rfc/ftp.scm %%DATADIR%%/%%VERSION%%/lib/rfc/hmac.scm %%DATADIR%%/%%VERSION%%/lib/rfc/http.scm +%%DATADIR%%/%%VERSION%%/lib/rfc/icmp.scm +%%DATADIR%%/%%VERSION%%/lib/rfc/ip.scm %%DATADIR%%/%%VERSION%%/lib/rfc/md5.scm %%DATADIR%%/%%VERSION%%/lib/rfc/mime.scm %%DATADIR%%/%%VERSION%%/lib/rfc/quoted-printable.scm @@ -192,6 +206,7 @@ %%DATADIR%%/%%VERSION%%/lib/srfi-7.scm %%DATADIR%%/%%VERSION%%/lib/srfi-9.scm %%DATADIR%%/%%VERSION%%/lib/sxml/adaptor.scm +%%DATADIR%%/%%VERSION%%/lib/sxml/serializer.scm %%DATADIR%%/%%VERSION%%/lib/sxml/ssax.scm %%DATADIR%%/%%VERSION%%/lib/sxml/sxpath.scm %%DATADIR%%/%%VERSION%%/lib/sxml/to-html.scm @@ -203,6 +218,7 @@ %%DATADIR%%/%%VERSION%%/lib/text/html-lite.scm %%DATADIR%%/%%VERSION%%/lib/text/info.scm %%DATADIR%%/%%VERSION%%/lib/text/parse.scm +%%DATADIR%%/%%VERSION%%/lib/text/progress.scm %%DATADIR%%/%%VERSION%%/lib/text/sql.scm %%DATADIR%%/%%VERSION%%/lib/text/tr.scm %%DATADIR%%/%%VERSION%%/lib/text/tree.scm @@ -213,13 +229,16 @@ %%DATADIR%%/%%VERSION%%/lib/util/list.scm %%DATADIR%%/%%VERSION%%/lib/util/match.scm %%DATADIR%%/%%VERSION%%/lib/util/queue.scm +%%DATADIR%%/%%VERSION%%/lib/util/rbtree.scm %%DATADIR%%/%%VERSION%%/lib/util/record.scm %%DATADIR%%/%%VERSION%%/lib/util/relation.scm %%DATADIR%%/%%VERSION%%/lib/util/stream.scm %%DATADIR%%/%%VERSION%%/lib/util/toposort.scm %%DATADIR%%/%%VERSION%%/lib/util/tree.scm +%%DATADIR%%/%%VERSION%%/lib/util/trie.scm %%DATADIR%%/%%VERSION%%/lib/www/cgi-test.scm %%DATADIR%%/%%VERSION%%/lib/www/cgi.scm +%%DATADIR%%/%%VERSION%%/lib/www/cgi/test.scm %%DATADIR%%/%%VERSION%%/template.DIST %%DATADIR%%/%%VERSION%%/template.Makefile.in %%DATADIR%%/%%VERSION%%/template.configure.ac @@ -232,6 +251,7 @@ @dirrm %%DATADIR%%/site/lib/.packages @dirrm %%DATADIR%%/site/lib @dirrm %%DATADIR%%/site +@dirrm %%DATADIR%%/%%VERSION%%/lib/www/cgi @dirrm %%DATADIR%%/%%VERSION%%/lib/www @dirrm %%DATADIR%%/%%VERSION%%/lib/util @dirrm %%DATADIR%%/%%VERSION%%/lib/text --- lang_gauche.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:10:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5406C16A400 for ; Tue, 5 Jun 2007 16:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1B83A13C46C for ; Tue, 5 Jun 2007 16:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GA9YK044315 for ; Tue, 5 Jun 2007 16:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GA9Q8044314; Tue, 5 Jun 2007 16:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:10:09 GMT Resent-Message-Id: <200706051610.l55GA9Q8044314@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68C0C16A468 for ; Tue, 5 Jun 2007 16:04:28 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id 476BE13C457 for ; Tue, 5 Jun 2007 16:04:28 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id F1C9C434001; Tue, 5 Jun 2007 11:04:27 -0500 (CDT) Message-Id: <20070605160427.F1C9C434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:04:27 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113372: [Maintainer Update] databases/gauche-gdbm 0.8.9 -> 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:10:10 -0000 >Number: 113372 >Category: ports >Synopsis: [Maintainer Update] databases/gauche-gdbm 0.8.9 -> 0.8.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:10:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: update to keep in sync with lang/gauche >How-To-Repeat: >Fix: --- databases_gauche-gdbm.patch begins here --- Index: databases/gauche-gdbm/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/gauche-gdbm/Makefile,v retrieving revision 1.37 diff -u -r1.37 Makefile --- databases/gauche-gdbm/Makefile 19 Jan 2007 08:41:07 -0000 1.37 +++ databases/gauche-gdbm/Makefile 5 Jun 2007 14:09:01 -0000 @@ -6,7 +6,7 @@ # PORTNAME= gdbm -PORTVERSION= 0.8.9 # Keep this in sync with lang/gauche +PORTVERSION= 0.8.10 # Keep this in sync with lang/gauche CATEGORIES= databases scheme MASTER_SITES= # none PKGNAMEPREFIX= gauche- --- databases_gauche-gdbm.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:10:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF76416A468 for ; Tue, 5 Jun 2007 16:10:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BE85A13C48C for ; Tue, 5 Jun 2007 16:10:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GAIhb044375 for ; Tue, 5 Jun 2007 16:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GAI1G044374; Tue, 5 Jun 2007 16:10:18 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:10:18 GMT Resent-Message-Id: <200706051610.l55GAI1G044374@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 989F516A41F for ; Tue, 5 Jun 2007 16:07:11 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id 775E413C480 for ; Tue, 5 Jun 2007 16:07:11 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id 232E2434001; Tue, 5 Jun 2007 11:07:11 -0500 (CDT) Message-Id: <20070605160711.232E2434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:07:10 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113373: [Maintainer Update] graphics/gauche-gl 0.4.2 -> 0.4.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:10:19 -0000 >Number: 113373 >Category: ports >Synopsis: [Maintainer Update] graphics/gauche-gl 0.4.2 -> 0.4.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:10:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: from the changelog http://shiro.dreamhost.com/scheme/gauche/ChangeLog.Gauche-gl.txt * src/gauche-gl.c: fixed bugs in finalizers of GLU objects * src/glut-lib.stub, cg/cg-lib.stub: adapted the new Scm_ApplyRec API of Gauche. >How-To-Repeat: >Fix: --- graphics_gauche-gl.patch begins here --- Index: graphics/gauche-gl/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/gauche-gl/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- graphics/gauche-gl/Makefile 19 May 2007 20:09:07 -0000 1.22 +++ graphics/gauche-gl/Makefile 5 Jun 2007 15:59:37 -0000 @@ -6,8 +6,7 @@ # PORTNAME= gl -PORTVERSION= 0.4.2 -PORTREVISION= 1 +PORTVERSION= 0.4.3 CATEGORIES= graphics scheme MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= gauche Index: graphics/gauche-gl/distinfo =================================================================== RCS file: /home/ncvs/ports/graphics/gauche-gl/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- graphics/gauche-gl/distinfo 9 Jan 2007 22:26:16 -0000 1.7 +++ graphics/gauche-gl/distinfo 5 Jun 2007 15:59:37 -0000 @@ -1,3 +1,3 @@ -MD5 (Gauche-gl-0.4.2.tgz) = 32e0670225a983e9df99f856825e1f63 -SHA256 (Gauche-gl-0.4.2.tgz) = 947dd946c7e6837f5825214e89e69f3c2e1ef5b49ad3a27974aa7df7c937cb97 -SIZE (Gauche-gl-0.4.2.tgz) = 942251 +MD5 (Gauche-gl-0.4.3.tgz) = dccf93ab8074fc40e0e89a6b45a32c82 +SHA256 (Gauche-gl-0.4.3.tgz) = 9e74a0a32a80430210f513e33894a1a35985e18bc95f01f44b00d7c8a43bae23 +SIZE (Gauche-gl-0.4.3.tgz) = 942390 --- graphics_gauche-gl.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:10:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5BFE516A400 for ; Tue, 5 Jun 2007 16:10:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3B7B813C4B0 for ; Tue, 5 Jun 2007 16:10:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GAJeS044390 for ; Tue, 5 Jun 2007 16:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GAJIq044389; Tue, 5 Jun 2007 16:10:19 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:10:19 GMT Resent-Message-Id: <200706051610.l55GAJIq044389@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB86116A41F for ; Tue, 5 Jun 2007 16:08:56 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id 896C013C45A for ; Tue, 5 Jun 2007 16:08:56 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id 3D1BC434001; Tue, 5 Jun 2007 11:08:56 -0500 (CDT) Message-Id: <20070605160856.3D1BC434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:08:56 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113374: [Maintainer Update] graphics/bugle 0.0.20070217 -> 0.0.20070528 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:10:19 -0000 >Number: 113374 >Category: ports >Synopsis: [Maintainer Update] graphics/bugle 0.0.20070217 -> 0.0.20070528 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:10:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: freshmeat blurb: The logging system has been heavily reworked. Those upgrading must update their ~/.bugle/filters after reading the bugle-log(7) and bugle-trace(7) man pages. There is a new filter set for hiding extensions (extoverride) and miscellaneous bugfixes. >How-To-Repeat: >Fix: --- graphics_bugle.patch begins here --- Index: graphics/bugle/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/bugle/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- graphics/bugle/Makefile 19 May 2007 20:08:40 -0000 1.31 +++ graphics/bugle/Makefile 5 Jun 2007 14:50:49 -0000 @@ -6,8 +6,7 @@ # PORTNAME= bugle -PORTVERSION= 0.0.20070217 -PORTREVISION= 1 +PORTVERSION= 0.0.20070528 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -34,11 +33,11 @@ MAN1= gldb.1 MAN3= bugle.3 -MAN7= bugle-camera.7 bugle-checks.7 bugle-eps.7 bugle-error.7 \ - bugle-frontbuffer.7 bugle-log.7 bugle-logstats.7 \ - bugle-screenshot.7 bugle-showerror.7 bugle-showextensions.7 \ - bugle-showstats.7 bugle-stats_basic.7 bugle-stats_fragments.7 \ - bugle-stats_nv.7 bugle-stats_primitives.7 bugle-trace.7 \ +MAN7= bugle-camera.7 bugle-checks.7 bugle-eps.7 bugle-error.7 \ + bugle-extoverride.7 bugle-frontbuffer.7 bugle-log.7 bugle-logstats.7 \ + bugle-screenshot.7 bugle-showerror.7 bugle-showextensions.7 \ + bugle-showstats.7 bugle-stats_basic.7 bugle-stats_fragments.7 \ + bugle-stats_nv.7 bugle-stats_primitives.7 bugle-trace.7 \ bugle-unwindstack.7 bugle-wireframe.7 OPTIONS= AVCODEC "Use lavc from multimedia/ffmpeg" off Index: graphics/bugle/distinfo =================================================================== RCS file: /home/ncvs/ports/graphics/bugle/distinfo,v retrieving revision 1.22 diff -u -r1.22 distinfo --- graphics/bugle/distinfo 19 Feb 2007 06:54:36 -0000 1.22 +++ graphics/bugle/distinfo 5 Jun 2007 14:50:49 -0000 @@ -1,3 +1,3 @@ -MD5 (bugle-0.0.20070217.tar.gz) = 0ddfd693222807c94a0e877d601a3518 -SHA256 (bugle-0.0.20070217.tar.gz) = 1ed925f2d0426c6a05a2d0d9c744a410d2ed653f33cd2e5cd8f970d2a534d8a4 -SIZE (bugle-0.0.20070217.tar.gz) = 1426924 +MD5 (bugle-0.0.20070528.tar.gz) = 20b6b268ea7180c4ce2f2bb00a6ba85b +SHA256 (bugle-0.0.20070528.tar.gz) = 3d43916d02c63dd434048ed8a012b21ad52cf35b2363bc315465387291b38b1b +SIZE (bugle-0.0.20070528.tar.gz) = 1449995 Index: graphics/bugle/pkg-plist =================================================================== RCS file: /home/ncvs/ports/graphics/bugle/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- graphics/bugle/pkg-plist 19 Feb 2007 06:54:36 -0000 1.6 +++ graphics/bugle/pkg-plist 5 Jun 2007 14:50:49 -0000 @@ -23,9 +23,9 @@ lib/libbugle.a lib/libbugle.la lib/libbugle.so -lib/libbugle.so.1 +lib/libbugle.so.2 lib/libbugleutils.a lib/libbugleutils.la lib/libbugleutils.so -lib/libbugleutils.so.1 +lib/libbugleutils.so.2 @dirrm lib/bugle --- graphics_bugle.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:20:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBED016A41F for ; Tue, 5 Jun 2007 16:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B74C313C45B for ; Tue, 5 Jun 2007 16:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GK5an045224 for ; Tue, 5 Jun 2007 16:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GK5Ks045223; Tue, 5 Jun 2007 16:20:05 GMT (envelope-from gnats) Date: Tue, 5 Jun 2007 16:20:05 GMT Message-Id: <200706051620.l55GK5Ks045223@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: James Bailie Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:20:05 -0000 The following reply was made to PR ports/113363; it has been noted by GNATS. From: James Bailie To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install Date: Tue, 05 Jun 2007 12:10:58 -0400 The problem was the GZIP variable of bsd.port.mk. It is defined as "9" and is used as an argument to GZIP_CMD. A new version has been released to use GZIP_CMD. Diff follows: diff -ruN /usr/ports/lang/munger/Makefile ./munger/Makefile --- /usr/ports/lang/munger/Makefile Mon Jun 4 15:44:30 2007 +++ ./munger/Makefile Tue Jun 5 12:03:13 2007 @@ -6,7 +6,7 @@ # PORTNAME= munger -PORTVERSION= 4.134 +PORTVERSION= 4.135 CATEGORIES= lang MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/lang/munger/distinfo ./munger/distinfo --- /usr/ports/lang/munger/distinfo Mon Jun 4 15:44:30 2007 +++ ./munger/distinfo Tue Jun 5 12:04:26 2007 @@ -1,3 +1,3 @@ -MD5 (munger-4.134.tar.gz) = 01807612b9d788034bb0cbd84486a5f8 -SHA256 (munger-4.134.tar.gz) = cb3aff2d7125ba7cbb9ae1b3312b102aeecd1ad0a9bc9b82b87bb25e666977d1 -SIZE (munger-4.134.tar.gz) = 317156 +MD5 (munger-4.135.tar.gz) = dba29c21648d4f563de166bfa19af977 +SHA256 (munger-4.135.tar.gz) = 89f38c33ab99f76ebbb5b07059ad0dee90b411ca918e6b9e13994148c4e141e1 +SIZE (munger-4.135.tar.gz) = 317213 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:20:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60FC616A469 for ; Tue, 5 Jun 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 26A0C13C45E for ; Tue, 5 Jun 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GK6Pf045237 for ; Tue, 5 Jun 2007 16:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GK5Q2045236; Tue, 5 Jun 2007 16:20:06 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:20:06 GMT Resent-Message-Id: <200706051620.l55GK5Q2045236@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2328D16A400 for ; Tue, 5 Jun 2007 16:11:57 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id F0FCC13C465 for ; Tue, 5 Jun 2007 16:11:56 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id 966C2434001; Tue, 5 Jun 2007 11:11:56 -0500 (CDT) Message-Id: <20070605161156.966C2434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:11:56 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113375: [Maintainer Update] games/xroads fix mastersites, remove ignore X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:20:06 -0000 >Number: 113375 >Category: ports >Synopsis: [Maintainer Update] games/xroads fix mastersites, remove ignore >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:20:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: Removed a now defunct MASTER_SITES entry. Removed the amd64 issue, played the game to level 7 (when I lost) on an opteron running 6.2 without crash. >How-To-Repeat: >Fix: --- games_xroads.patch begins here --- Index: games/xroads/Makefile =================================================================== RCS file: /home/ncvs/ports/games/xroads/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- games/xroads/Makefile 19 May 2007 20:08:13 -0000 1.20 +++ games/xroads/Makefile 5 Jun 2007 15:43:43 -0000 @@ -9,8 +9,7 @@ PORTVERSION= 0.6 PORTREVISION= 2 CATEGORIES= games -MASTER_SITES= http://math.missouristate.edu/~erik/files/fbsd/\ - http://smluc.org/~erik/files/fbsd/ +MASTER_SITES= http://math.missouristate.edu/~erik/files/fbsd/ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= erik@smluc.org @@ -20,10 +19,6 @@ .include -.if ${ARCH} == "amd64" -IGNORE= crashes after a short time -.endif - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xroads ${PREFIX}/bin @${MKDIR} ${PREFIX}/share/xroads --- games_xroads.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:20:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A44AB16A46C for ; Tue, 5 Jun 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 82CDE13C468 for ; Tue, 5 Jun 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GK6YD045250 for ; Tue, 5 Jun 2007 16:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GK6QV045249; Tue, 5 Jun 2007 16:20:06 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:20:06 GMT Resent-Message-Id: <200706051620.l55GK6QV045249@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26A9116A41F for ; Tue, 5 Jun 2007 16:14:14 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id 0587413C447 for ; Tue, 5 Jun 2007 16:14:13 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id 9D18D434001; Tue, 5 Jun 2007 11:14:13 -0500 (CDT) Message-Id: <20070605161413.9D18D434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:14:13 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113376: [Maintainer Update] sysutils/diskscrub 1.8 -> 1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:20:06 -0000 >Number: 113376 >Category: ports >Synopsis: [Maintainer Update] sysutils/diskscrub 1.8 -> 1.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:20:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: version update, no change to plist http://diskscrub.svn.sourceforge.net/viewvc/diskscrub/trunk/ChangeLog?revision=34&view=markup >How-To-Repeat: >Fix: --- sysutils_diskscrub.patch begins here --- Index: sysutils/diskscrub/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/diskscrub/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- sysutils/diskscrub/Makefile 28 Nov 2006 23:35:01 -0000 1.1 +++ sysutils/diskscrub/Makefile 5 Jun 2007 14:57:32 -0000 @@ -6,7 +6,7 @@ # PORTNAME= diskscrub -PORTVERSION= 1.8 +PORTVERSION= 1.9 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} Index: sysutils/diskscrub/distinfo =================================================================== RCS file: /home/ncvs/ports/sysutils/diskscrub/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- sysutils/diskscrub/distinfo 28 Nov 2006 23:35:01 -0000 1.1 +++ sysutils/diskscrub/distinfo 5 Jun 2007 14:57:32 -0000 @@ -1,3 +1,3 @@ -MD5 (scrub-1.8.tar.bz2) = 18230b4196b7854740820cda39ecccd0 -SHA256 (scrub-1.8.tar.bz2) = 6bca4b8c378bd066cb7512b92a341c0613609b2ac65fc1ca59d23f40054486e8 -SIZE (scrub-1.8.tar.bz2) = 29545 +MD5 (scrub-1.9.tar.bz2) = 597a9c55aa031f2650546becf24cb2b0 +SHA256 (scrub-1.9.tar.bz2) = 0f13ccde1e958a0c25dc02c050fa770f545a64a73cc6b21767ce92ccb9fe650f +SIZE (scrub-1.9.tar.bz2) = 41023 --- sysutils_diskscrub.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:20:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 265D716A476 for ; Tue, 5 Jun 2007 16:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E131713C46A for ; Tue, 5 Jun 2007 16:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GK6lE045263 for ; Tue, 5 Jun 2007 16:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GK6Et045262; Tue, 5 Jun 2007 16:20:06 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:20:06 GMT Resent-Message-Id: <200706051620.l55GK6Et045262@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4CE7316A46B for ; Tue, 5 Jun 2007 16:15:17 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id 280FA13C457 for ; Tue, 5 Jun 2007 16:15:17 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id C7053434001; Tue, 5 Jun 2007 11:15:16 -0500 (CDT) Message-Id: <20070605161516.C7053434001@sinistar.bluecows.com> Date: Tue, 5 Jun 2007 11:15:16 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113377: [Maintainer Update] textproc/permute new MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:20:07 -0000 >Number: 113377 >Category: ports >Synopsis: [Maintainer Update] textproc/permute new MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:20:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: original host has changed >How-To-Repeat: >Fix: --- textproc_permute.patch begins here --- Index: textproc/permute/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/permute/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/permute/Makefile 8 Sep 2005 23:10:39 -0000 1.1 +++ textproc/permute/Makefile 5 Jun 2007 15:02:08 -0000 @@ -8,7 +8,7 @@ PORTNAME= permute PORTVERSION= 1.0 CATEGORIES= textproc -MASTER_SITES= http://pigseye.kennesaw.edu/~rbentley/ +MASTER_SITES= http://atlas.kennesaw.edu/~rbentley/ MAINTAINER= erik@smluc.org COMMENT= Generate all permutations of lines from stdin --- textproc_permute.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:20:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBC1F16A469; Tue, 5 Jun 2007 16:20:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9AD7213C468; Tue, 5 Jun 2007 16:20:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GKD5r045338; Tue, 5 Jun 2007 16:20:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GKDfB045334; Tue, 5 Jun 2007 16:20:13 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 16:20:13 GMT From: Edwin Groothuis Message-Id: <200706051620.l55GKDfB045334@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jmelo@FreeBSD.org Cc: Subject: Re: ports/113375: [Maintainer Update] games/xroads fix mastersites, remove ignore X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:20:13 -0000 Synopsis: [Maintainer Update] games/xroads fix mastersites, remove ignore Responsible-Changed-From-To: freebsd-ports-bugs->jmelo Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 16:20:13 UTC 2007 Responsible-Changed-Why: jmelo@ wants to have WWW and MASTER_SITES PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113375 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:20:22 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74DBC16A421; Tue, 5 Jun 2007 16:20:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4AA0913C44B; Tue, 5 Jun 2007 16:20:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55GKMam045457; Tue, 5 Jun 2007 16:20:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55GKMls045452; Tue, 5 Jun 2007 16:20:22 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 16:20:22 GMT From: Edwin Groothuis Message-Id: <200706051620.l55GKMls045452@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jmelo@FreeBSD.org Cc: Subject: Re: ports/113377: [Maintainer Update] textproc/permute new MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:20:22 -0000 Synopsis: [Maintainer Update] textproc/permute new MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->jmelo Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 16:20:21 UTC 2007 Responsible-Changed-Why: jmelo@ wants to have WWW and MASTER_SITES PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113377 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:40:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A89416A400 for ; Tue, 5 Jun 2007 16:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 45A3213C457 for ; Tue, 5 Jun 2007 16:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Ge16b049021 for ; Tue, 5 Jun 2007 16:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Ge1Q3049020; Tue, 5 Jun 2007 16:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:40:01 GMT Resent-Message-Id: <200706051640.l55Ge1Q3049020@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcelo Araujo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 606AB16A400 for ; Tue, 5 Jun 2007 16:33:16 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from mail.intelbras.com.br (mail.intelbras.com.br [201.24.77.45]) by mx1.freebsd.org (Postfix) with ESMTP id 1445F13C447 for ; Tue, 5 Jun 2007 16:33:16 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from localhost (localhost.intelbras.com.br [127.0.0.1]) by mail.intelbras.com.br (Postfix) with ESMTP id 826B72DA486; Tue, 5 Jun 2007 13:33:15 -0300 (BRT) Received: from mail.intelbras.com.br ([127.0.0.1]) by localhost (copernicus.intelbras.com.br [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yTOsXTDb3fza; Tue, 5 Jun 2007 13:33:08 -0300 (BRT) Received: from bsdmail.org (unknown [200.247.114.5]) by mail.intelbras.com.br (Postfix) with ESMTP id E7D502DA408; Tue, 5 Jun 2007 13:33:07 -0300 (BRT) Received: (nullmailer pid 6100 invoked by uid 1001); Tue, 05 Jun 2007 16:33:05 -0000 Message-Id: <1181061185.831222.6099.nullmailer@bsdmail.org> Date: Tue, 05 Jun 2007 13:33:05 -0300 From: Marcelo Araujo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: r.gruyters@yirdis.nl Subject: ports/113378: [PATCH] security/libpreludedb: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:40:02 -0000 >Number: 113378 >Category: ports >Synopsis: [PATCH] security/libpreludedb: [NEW PORTREVISION] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:40:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcelo Araujo >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD island.freebsd.org 6.2-STABLE FreeBSD 6.2-STABLE #5: Sun May 6 00:10:50 BRT >Description: - Prepare to receive new version of libprelude. - PR: ports/112703. Port maintainer (r.gruyters@yirdis.nl) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- libpreludedb-0.9.12_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/libpreludedb/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- Makefile 21 Mar 2007 07:48:49 -0000 1.24 +++ Makefile 5 Jun 2007 16:32:27 -0000 @@ -5,6 +5,7 @@ PORTNAME= libpreludedb PORTVERSION= 0.9.12 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.prelude-ids.org/download/releases/ \ http://www.prelude-ids.org/download/releases/old/ @@ -12,7 +13,7 @@ MAINTAINER= r.gruyters@yirdis.nl COMMENT= Framework library for access to Prelude NIDS database -LIB_DEPENDS= prelude.11:${PORTSDIR}/security/libprelude +LIB_DEPENDS= prelude.12:${PORTSDIR}/security/libprelude USE_GMAKE= yes GNU_CONFIGURE= yes --- libpreludedb-0.9.12_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:50:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0542D16A473 for ; Tue, 5 Jun 2007 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BC95A13C45D for ; Tue, 5 Jun 2007 16:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Go2ni049855 for ; Tue, 5 Jun 2007 16:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Go2SS049854; Tue, 5 Jun 2007 16:50:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:50:02 GMT Resent-Message-Id: <200706051650.l55Go2SS049854@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcelo Araujo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99CD816A46B; Tue, 5 Jun 2007 16:49:27 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from mail.intelbras.com.br (mail.intelbras.com.br [201.24.77.45]) by mx1.freebsd.org (Postfix) with ESMTP id 40F2E13C4C1; Tue, 5 Jun 2007 16:49:27 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from localhost (localhost.intelbras.com.br [127.0.0.1]) by mail.intelbras.com.br (Postfix) with ESMTP id 8CECC2DA473; Tue, 5 Jun 2007 13:25:29 -0300 (BRT) Received: from mail.intelbras.com.br ([127.0.0.1]) by localhost (copernicus.intelbras.com.br [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3sx6z0-yPj2e; Tue, 5 Jun 2007 13:25:22 -0300 (BRT) Received: from bsdmail.org (unknown [200.247.114.5]) by mail.intelbras.com.br (Postfix) with ESMTP id CD50C2DA4F6; Tue, 5 Jun 2007 13:25:21 -0300 (BRT) Received: (nullmailer pid 4639 invoked by uid 1001); Tue, 05 Jun 2007 16:25:18 -0000 Message-Id: <1181060718.427260.4638.nullmailer@bsdmail.org> Date: Tue, 05 Jun 2007 13:25:18 -0300 From: Marcelo Araujo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: lx@FreeBSD.org Subject: ports/113379: [PATCH] security/samhain: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:50:03 -0000 >Number: 113379 >Category: ports >Synopsis: [PATCH] security/samhain: [NEW PORTREVISION] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:50:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcelo Araujo >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD island.freebsd.org 6.2-STABLE FreeBSD 6.2-STABLE #5: Sun May 6 00:10:50 BRT >Description: - Prepare to receive new version of libprelude. - PR: ports/112703 Port maintainer (lx@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- samhain-2.3.4_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/samhain/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- Makefile 2 May 2007 23:04:13 -0000 1.44 +++ Makefile 5 Jun 2007 16:24:38 -0000 @@ -6,6 +6,7 @@ PORTNAME= samhain PORTVERSION= 2.3.4 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://la-samhna.de/archive/ \ http://redundancy.redundancy.org/mirror/ @@ -92,7 +93,7 @@ CONFIGURE_ARGS+= --with-altlogserver=${WITH_ALT_LOG_SERVER} .endif .if defined(WITH_PRELUDE) -LIB_DEPENDS+= prelude.11:${PORTSDIR}/security/libprelude +LIB_DEPENDS+= prelude.12:${PORTSDIR}/security/libprelude CONFIGURE_ARGS+= --with-prelude .endif --- samhain-2.3.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:50:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8090216A421 for ; Tue, 5 Jun 2007 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 526BD13C465 for ; Tue, 5 Jun 2007 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Go3YC049872 for ; Tue, 5 Jun 2007 16:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Go3sR049871; Tue, 5 Jun 2007 16:50:03 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:50:03 GMT Resent-Message-Id: <200706051650.l55Go3sR049871@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcelo Araujo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9CA7816A473 for ; Tue, 5 Jun 2007 16:49:27 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from mail.intelbras.com.br (mail.intelbras.com.br [201.24.77.45]) by mx1.freebsd.org (Postfix) with ESMTP id 3EE8613C4BF for ; Tue, 5 Jun 2007 16:49:27 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from localhost (localhost.intelbras.com.br [127.0.0.1]) by mail.intelbras.com.br (Postfix) with ESMTP id DBC2E2DA4E3; Tue, 5 Jun 2007 13:22:11 -0300 (BRT) Received: from mail.intelbras.com.br ([127.0.0.1]) by localhost (copernicus.intelbras.com.br [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZSo8UK+MCaPl; Tue, 5 Jun 2007 13:22:06 -0300 (BRT) Received: from bsdmail.org (unknown [200.247.114.5]) by mail.intelbras.com.br (Postfix) with ESMTP id D65782DA473; Tue, 5 Jun 2007 13:22:05 -0300 (BRT) Received: (nullmailer pid 3969 invoked by uid 1001); Tue, 05 Jun 2007 16:22:03 -0000 Message-Id: <1181060523.245186.3968.nullmailer@bsdmail.org> Date: Tue, 05 Jun 2007 13:22:03 -0300 From: Marcelo Araujo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: r.gruyters@yirdis.nl Subject: ports/113380: [PATCH] security/prelude-lml: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:50:03 -0000 >Number: 113380 >Category: ports >Synopsis: [PATCH] security/prelude-lml: [NEW PORTREVISION] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcelo Araujo >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD island.freebsd.org 6.2-STABLE FreeBSD 6.2-STABLE #5: Sun May 6 00:10:50 BRT >Description: - Prepare to receive new version of libprelude. - PR: ports/112703 Port maintainer (r.gruyters@yirdis.nl) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- prelude-lml-0.9.10_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/prelude-lml/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- Makefile 30 May 2007 06:13:54 -0000 1.32 +++ Makefile 5 Jun 2007 16:17:53 -0000 @@ -6,6 +6,7 @@ PORTNAME= prelude-lml PORTVERSION= 0.9.10 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.prelude-ids.org/download/releases/ \ http://www.prelude-ids.org/download/releases/old/ @@ -13,7 +14,7 @@ MAINTAINER= r.gruyters@yirdis.nl COMMENT= Prelude Network Intrusion Detection System Log Monitoring Lackey -LIB_DEPENDS+= prelude.11:${PORTSDIR}/security/libprelude \ +LIB_DEPENDS+= prelude.12:${PORTSDIR}/security/libprelude \ pcre.0:${PORTSDIR}/devel/pcre USE_GMAKE= yes --- prelude-lml-0.9.10_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 16:50:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0FF316A46D for ; Tue, 5 Jun 2007 16:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 99C3C13C46C for ; Tue, 5 Jun 2007 16:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Go3uU049885 for ; Tue, 5 Jun 2007 16:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Go37i049884; Tue, 5 Jun 2007 16:50:03 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 16:50:03 GMT Resent-Message-Id: <200706051650.l55Go37i049884@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcelo Araujo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F3CD16A474; Tue, 5 Jun 2007 16:49:27 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from mail.intelbras.com.br (mail.intelbras.com.br [201.24.77.45]) by mx1.freebsd.org (Postfix) with ESMTP id 3EB3B13C4BE; Tue, 5 Jun 2007 16:49:27 +0000 (UTC) (envelope-from araujo@bsdmail.org) Received: from localhost (localhost.intelbras.com.br [127.0.0.1]) by mail.intelbras.com.br (Postfix) with ESMTP id 9B1782DA4FD; Tue, 5 Jun 2007 13:28:44 -0300 (BRT) Received: from mail.intelbras.com.br ([127.0.0.1]) by localhost (copernicus.intelbras.com.br [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LAtM1KyYC9-j; Tue, 5 Jun 2007 13:28:38 -0300 (BRT) Received: from bsdmail.org (unknown [200.247.114.5]) by mail.intelbras.com.br (Postfix) with ESMTP id 5453D2DA4F4; Tue, 5 Jun 2007 13:28:38 -0300 (BRT) Received: (nullmailer pid 5366 invoked by uid 1001); Tue, 05 Jun 2007 16:28:35 -0000 Message-Id: <1181060915.860324.5365.nullmailer@bsdmail.org> Date: Tue, 05 Jun 2007 13:28:35 -0300 From: Marcelo Araujo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/113381: [PATCH] security/snort: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 16:50:05 -0000 >Number: 113381 >Category: ports >Synopsis: [PATCH] security/snort: [NEW PORTREVISION] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 16:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcelo Araujo >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD island.freebsd.org 6.2-STABLE FreeBSD 6.2-STABLE #5: Sun May 6 00:10:50 BRT >Description: - Prepare to receive new version of libprelude. - PR: ports/112703. Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- snort-2.6.1.4_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/snort/Makefile,v retrieving revision 1.84 diff -u -r1.84 Makefile --- Makefile 18 Apr 2007 06:42:12 -0000 1.84 +++ Makefile 5 Jun 2007 16:28:00 -0000 @@ -7,6 +7,7 @@ PORTNAME= snort PORTVERSION= 2.6.1.4 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.snort.org/dl/current/ @@ -117,7 +118,7 @@ .endif .if defined(WITH_PRELUDE) -LIB_DEPENDS+= prelude.11:${PORTSDIR}/security/libprelude +LIB_DEPENDS+= prelude.12:${PORTSDIR}/security/libprelude CONFIGURE_ARGS+= --enable-prelude PLIST_SUB+= PRELUDE="" .else --- snort-2.6.1.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA16D16A46B for ; Tue, 5 Jun 2007 17:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 97BE913C44B for ; Tue, 5 Jun 2007 17:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55H0BUY050830 for ; Tue, 5 Jun 2007 17:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55H0Bfd050828; Tue, 5 Jun 2007 17:00:11 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 17:00:11 GMT Resent-Message-Id: <200706051700.l55H0Bfd050828@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Heiner Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C1EC16A421 for ; Tue, 5 Jun 2007 16:54:40 +0000 (UTC) (envelope-from h.eichmann@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 843D813C483 for ; Tue, 5 Jun 2007 16:54:39 +0000 (UTC) (envelope-from h.eichmann@gmx.de) Received: (qmail invoked by alias); 05 Jun 2007 16:54:37 -0000 Received: from p5482542f.dip.t-dialin.net (EHLO 7of9) [84.130.84.47] by mail.gmx.net (mp042) with SMTP; 05 Jun 2007 18:54:37 +0200 Message-Id: <200706051858.43948.h.eichmann@gmx.de> Date: Tue, 5 Jun 2007 18:58:43 +0200 From: Heiner To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/113382: [PATCH] textproc/kdiff3: fix compile error on pointyhat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:00:11 -0000 >Number: 113382 >Category: ports >Synopsis: [PATCH] textproc/kdiff3: fix compile error on pointyhat >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 17:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Heiner Eichmann >Release: FreeBSD 5.4-RELEASE >Organization: Sirius Cybernetics Corp. >Environment: FreeBSD 7of9.unimatrix-zero.borg 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #0: Sat Dec 3 13:30:24 CET 2005 root@7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: Something with the man page handling slipped through my last port portupgrade. The attached patch should fix it. Heiner >How-To-Repeat: >Fix: --Boundary-00=_DZZZG+VyzwO0qpv Content-Type: text/x-diff; charset="iso-8859-1"; name="kdiff3.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="kdiff3.diff" diff -urN ../../textproc/kdiff3/Makefile ./Makefile --- ../../textproc/kdiff3/Makefile Tue Jun 5 15:33:10 2007 +++ ./Makefile Tue Jun 5 17:31:56 2007 @@ -21,6 +21,7 @@ USE_LDCONFIG= ${PREFIX}/lib/kde3 CONFIGURE_ENV= LDFLAGS="${PTHREAD_LIBS}" +CONFIGURE_ARGS= --mandir="${MANPREFIX}/man" MAN1= kdiff3.1 --Boundary-00=_DZZZG+VyzwO0qpv-- >Release-Note: >Audit-Trail: >Unformatted: --Boundary-00=_DZZZG+VyzwO0qpv Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:20:01 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9754F16A469 for ; Tue, 5 Jun 2007 17:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 73CA813C4B7 for ; Tue, 5 Jun 2007 17:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55HK0mi052584 for ; Tue, 5 Jun 2007 17:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55HK0fb052583; Tue, 5 Jun 2007 17:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 17:20:00 GMT Resent-Message-Id: <200706051720.l55HK0fb052583@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rong-En Fan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E91716A473 for ; Tue, 5 Jun 2007 17:11:54 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.freebsd.org (Postfix) with ESMTP id 2D13B13C45D for ; Tue, 5 Jun 2007 17:11:53 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.14.1/8.14.1) with ESMTP id l55HBqOk026036; Wed, 6 Jun 2007 01:11:52 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.14.1/8.14.1/Submit) id l55HBqmT068646; Wed, 6 Jun 2007 01:11:52 +0800 (CST) (envelope-from rafan) Message-Id: <200706051711.l55HBqmT068646@svm.csie.ntu.edu.tw> Date: Wed, 6 Jun 2007 01:11:52 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: vanhu@netasq.com Subject: ports/113383: [PATCH] security/ipsec-tools: fix build with gcc 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:20:01 -0000 >Number: 113383 >Category: ports >Synopsis: [PATCH] security/ipsec-tools: fix build with gcc 4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 17:20:00 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 6.2-STABLE amd64 >Organization: NTU CSIE >Environment: >Description: - Fix build with gcc 4.2. Tested on i386 current. - Remove blank line in distinfo Added file(s): - files/patch-src__racoon__eaytest.c - files/patch-src__racoon__var.h Port maintainer (vanhu@netasq.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- ipsec-tools-0.6.7.patch begins here --- Index: distinfo =================================================================== RCS file: /big/freebsd-cvsup/ncvs/ports/security/ipsec-tools/distinfo,v retrieving revision 1.8 diff -u -u -r1.8 distinfo --- distinfo 7 Apr 2007 04:23:27 -0000 1.8 +++ distinfo 5 Jun 2007 17:10:27 -0000 @@ -1,4 +1,3 @@ MD5 (ipsec-tools-0.6.7.tar.bz2) = 4fb764f282dc21cf9a656c58e13dacbb SHA256 (ipsec-tools-0.6.7.tar.bz2) = 4239f836dc610a2443ded7ba35cb3b87de9d582c800e5d9eb5eed37defd61ef2 SIZE (ipsec-tools-0.6.7.tar.bz2) = 723032 - Index: files/patch-src__racoon__eaytest.c =================================================================== RCS file: files/patch-src__racoon__eaytest.c diff -N files/patch-src__racoon__eaytest.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__racoon__eaytest.c 5 Jun 2007 17:10:27 -0000 @@ -0,0 +1,20 @@ +--- ./src/racoon/eaytest.c.orig Wed Jun 6 01:07:11 2007 ++++ ./src/racoon/eaytest.c Wed Jun 6 01:07:22 2007 +@@ -311,7 +311,7 @@ + + printf("exact match: succeed.\n"); + +- if (dnstr_w1) { ++ if (dnstr_w1 != NULL) { + asn1dn = eay_str2asn1dn(dnstr_w1, strlen(dnstr_w1)); + if (asn1dn == NULL || asn1dn->l == asn1dn0.l) + errx(1, "asn1dn length wrong for wildcard 1\n"); +@@ -321,7 +321,7 @@ + printf("wildcard 1 match: succeed.\n"); + } + +- if (dnstr_w1) { ++ if (dnstr_w1 != NULL) { + asn1dn = eay_str2asn1dn(dnstr_w2, strlen(dnstr_w2)); + if (asn1dn == NULL || asn1dn->l == asn1dn0.l) + errx(1, "asn1dn length wrong for wildcard 2\n"); Index: files/patch-src__racoon__var.h =================================================================== RCS file: files/patch-src__racoon__var.h diff -N files/patch-src__racoon__var.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__racoon__var.h 5 Jun 2007 17:10:27 -0000 @@ -0,0 +1,23 @@ +--- ./src/racoon/var.h.orig Wed Jun 6 01:06:51 2007 ++++ ./src/racoon/var.h Wed Jun 6 01:07:00 2007 +@@ -76,9 +76,9 @@ + do { \ + if (getnameinfo((x), sysdep_sa_len(x), (y), sizeof(y), (z), sizeof(z), \ + NIFLAGS) != 0) { \ +- if (y) \ ++ if (y != NULL) \ + strncpy((y), "(invalid)", sizeof(y)); \ +- if (z) \ ++ if (z != NULL) \ + strncpy((z), "(invalid)", sizeof(z)); \ + } \ + } while (0); +@@ -87,7 +87,7 @@ + do { \ + if (getnameinfo((x), sysdep_sa_len(x), (y), sizeof(y), NULL, 0, \ + NIFLAGS) != 0) { \ +- if (y) \ ++ if (y != NULL) \ + strncpy((y), "(invalid)", sizeof(y)); \ + } \ + } while (0); --- ipsec-tools-0.6.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:20:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3773416A468; Tue, 5 Jun 2007 17:20:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 06B1013C483; Tue, 5 Jun 2007 17:20:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55HKAYu052757; Tue, 5 Jun 2007 17:20:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55HKAEB052753; Tue, 5 Jun 2007 17:20:10 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 17:20:10 GMT From: Edwin Groothuis Message-Id: <200706051720.l55HKAEB052753@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org Cc: Subject: Re: ports/113383: [PATCH] security/ipsec-tools: fix build with gcc 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:20:11 -0000 Synopsis: [PATCH] security/ipsec-tools: fix build with gcc 4.2 Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 17:20:10 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113383 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:36:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 51E8816A400; Tue, 5 Jun 2007 17:36:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E154013C447; Tue, 5 Jun 2007 17:36:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55HaGD8055560; Tue, 5 Jun 2007 17:36:16 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55HaG1J055556; Tue, 5 Jun 2007 17:36:16 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 17:36:16 GMT From: Martin Wilke Message-Id: <200706051736.l55HaG1J055556@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113378: [PATCH] security/libpreludedb: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:36:17 -0000 Synopsis: [PATCH] security/libpreludedb: [NEW PORTREVISION] Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 17:36:16 UTC 2007 Responsible-Changed-Why: submitter is commiter. http://www.freebsd.org/cgi/query-pr.cgi?pr=113378 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:36:23 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0E2816A481; Tue, 5 Jun 2007 17:36:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 34C1C13C483; Tue, 5 Jun 2007 17:36:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55HaMbp055625; Tue, 5 Jun 2007 17:36:22 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55HaMX0055621; Tue, 5 Jun 2007 17:36:22 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 17:36:22 GMT From: Martin Wilke Message-Id: <200706051736.l55HaMX0055621@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113379: [PATCH] security/samhain: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:36:23 -0000 Synopsis: [PATCH] security/samhain: [NEW PORTREVISION] Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 17:36:22 UTC 2007 Responsible-Changed-Why: submitter is commiter. http://www.freebsd.org/cgi/query-pr.cgi?pr=113379 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:36:29 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D68CA16A41F; Tue, 5 Jun 2007 17:36:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ACF6413C455; Tue, 5 Jun 2007 17:36:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55HaTlg055690; Tue, 5 Jun 2007 17:36:29 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55HaTZO055686; Tue, 5 Jun 2007 17:36:29 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 17:36:29 GMT From: Martin Wilke Message-Id: <200706051736.l55HaTZO055686@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113380: [PATCH] security/prelude-lml: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:36:29 -0000 Synopsis: [PATCH] security/prelude-lml: [NEW PORTREVISION] Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 17:36:28 UTC 2007 Responsible-Changed-Why: submitter is commiter. http://www.freebsd.org/cgi/query-pr.cgi?pr=113380 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 17:36:46 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2380A16A4C8; Tue, 5 Jun 2007 17:36:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0725F13C4FF; Tue, 5 Jun 2007 17:36:38 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55HaZnv055758; Tue, 5 Jun 2007 17:36:35 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55HaZcR055754; Tue, 5 Jun 2007 17:36:35 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 17:36:35 GMT From: Martin Wilke Message-Id: <200706051736.l55HaZcR055754@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113381: [PATCH] security/snort: [NEW PORTREVISION] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 17:36:46 -0000 Synopsis: [PATCH] security/snort: [NEW PORTREVISION] Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 17:36:35 UTC 2007 Responsible-Changed-Why: submitter is commiter. http://www.freebsd.org/cgi/query-pr.cgi?pr=113381 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 18:50:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AF6316A46C for ; Tue, 5 Jun 2007 18:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 286CA13C458 for ; Tue, 5 Jun 2007 18:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Io3nV062744 for ; Tue, 5 Jun 2007 18:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Io3oP062743; Tue, 5 Jun 2007 18:50:03 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 18:50:03 GMT Resent-Message-Id: <200706051850.l55Io3oP062743@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tim Bishop Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEF8016A400 for ; Tue, 5 Jun 2007 18:42:25 +0000 (UTC) (envelope-from t.d.bishop@kent.ac.uk) Received: from mx5.kent.ac.uk (mx5.kent.ac.uk [129.12.21.36]) by mx1.freebsd.org (Postfix) with ESMTP id 74BFC13C44C for ; Tue, 5 Jun 2007 18:42:25 +0000 (UTC) (envelope-from t.d.bishop@kent.ac.uk) Received: from apophis.ukc.ac.uk ([129.12.4.11]) by mx5.kent.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.62) (envelope-from ) id 1Hvdyx-0001tp-Rb; Tue, 05 Jun 2007 19:42:15 +0100 Received: from pendennis.ukc.ac.uk ([129.12.3.232] helo=pendennis.kent.ac.uk) by apophis.ukc.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.66) (envelope-from ) id 1Hvdyx-0007Fo-KE; Tue, 05 Jun 2007 19:42:15 +0100 Received: from tdb by pendennis.kent.ac.uk with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1Hvdyx-0008tr-Fh; Tue, 05 Jun 2007 19:42:15 +0100 Message-Id: Date: Tue, 05 Jun 2007 19:42:15 +0100 From: Tim Bishop Sender: "T.D.Bishop" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: chinsan@FreeBSD.org Subject: ports/113385: [PATCH] chinese/zhcon: Respect alternate LOCALBASE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 18:50:04 -0000 >Number: 113385 >Category: ports >Synopsis: [PATCH] chinese/zhcon: Respect alternate LOCALBASE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 18:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tim Bishop >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD pendennis.kent.ac.uk 6.2-STABLE FreeBSD 6.2-STABLE #4: Sun May 20 17:30:14 BST 2007 >Description: Respect alternate LOCALBASE. The problem is this part of the configure script: i?86-*-freebsd*) echo "FreeBsd detected" ZHCON_ARCH="FreeBSD" LIBS="-L/usr/local/lib $LIBS" CFLAGS="$CFLAGS -I/usr/local/include" CXXFLAGS="$CXXFLAGS -I/usr/local/include";; By setting CPPFLAGS and LDFLAGS in the port Makefile we don't have to patch the configure script. An alternative approach would be to fix that section of the configure script. I notice there's already a REINPLACE_CMD that catches some instances of /usr/local, but misses these. Port maintainer (chinsan@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- zhcon-0.2.5_1.patch begins here --- Index: Makefile =================================================================== RCS file: /u2/freebsd/cvs/ports/chinese/zhcon/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- Makefile 3 Oct 2006 15:34:32 -0000 1.44 +++ Makefile 5 Jun 2007 17:52:09 -0000 @@ -22,6 +22,8 @@ USE_GETTEXT= yes USE_GETOPT_LONG= yes CONFIGURE_ARGS= --with-libintl-prefix=${LOCALBASE} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message --- zhcon-0.2.5_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 18:50:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E638F16A41F; Tue, 5 Jun 2007 18:50:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C0BAE13C447; Tue, 5 Jun 2007 18:50:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55IoADK062875; Tue, 5 Jun 2007 18:50:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55IoA3O062871; Tue, 5 Jun 2007 18:50:10 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 18:50:10 GMT From: Edwin Groothuis Message-Id: <200706051850.l55IoA3O062871@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, chinsan@FreeBSD.org Cc: Subject: Re: ports/113385: [PATCH] chinese/zhcon: Respect alternate LOCALBASE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 18:50:11 -0000 Synopsis: [PATCH] chinese/zhcon: Respect alternate LOCALBASE Responsible-Changed-From-To: freebsd-ports-bugs->chinsan Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 18:50:10 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113385 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 19:30:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0036E16A469 for ; Tue, 5 Jun 2007 19:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D57BB13C468 for ; Tue, 5 Jun 2007 19:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55JU1PZ066347 for ; Tue, 5 Jun 2007 19:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55JU1UD066346; Tue, 5 Jun 2007 19:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 19:30:01 GMT Resent-Message-Id: <200706051930.l55JU1UD066346@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brad Huntting Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7821316A421 for ; Tue, 5 Jun 2007 19:29:23 +0000 (UTC) (envelope-from huntting@studious.glarp.com) Received: from studious.glarp.com (71-218-66-51.hlrn.qwest.net [71.218.66.51]) by mx1.freebsd.org (Postfix) with ESMTP id 1B40C13C457 for ; Tue, 5 Jun 2007 19:29:22 +0000 (UTC) (envelope-from huntting@studious.glarp.com) Received: from studious.glarp.com (localhost [127.0.0.1]) by studious.glarp.com (8.13.8/8.13.8) with ESMTP id l55JSvEu006198; Tue, 5 Jun 2007 13:28:57 -0600 (MDT) (envelope-from huntting@studious.glarp.com) Received: (from huntting@localhost) by studious.glarp.com (8.13.8/8.13.8/Submit) id l55JSvLQ006197; Tue, 5 Jun 2007 13:28:57 -0600 (MDT) (envelope-from huntting) Message-Id: <200706051928.l55JSvLQ006197@studious.glarp.com> Date: Tue, 5 Jun 2007 13:28:57 -0600 (MDT) From: Brad Huntting To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: huntting@glarp.com Subject: ports/113386: sysutils/fcron X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Brad Huntting List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 19:30:02 -0000 >Number: 113386 >Category: ports >Synopsis: sysutils/fcron >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 19:30:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Brad Huntting >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD studious.glarp.com 6.2-STABLE FreeBSD 6.2-STABLE #2: Fri Feb 9 12:54:12 MST 2007 root@studious.glarp.com:/usr/src/sys/i386/compile/STUDIOUS i386 >Description: Update to fcron version 3.0.3 >How-To-Repeat: >Fix: diff -ur /usr/ports/sysutils/fcron/Makefile fcron/Makefile --- /usr/ports/sysutils/fcron/Makefile Wed Jan 17 00:30:11 2007 +++ fcron/Makefile Tue Jun 5 13:08:50 2007 @@ -7,7 +7,7 @@ # PORTNAME= fcron -PORTVERSION= 3.0.2 +PORTVERSION= 3.0.3 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SUNSITE} \ http://fcron.free.fr/archives/ \ @@ -21,7 +21,8 @@ GNU_CONFIGURE= yes USE_GMAKE= yes USE_PERL5_BUILD=yes -CONFIGURE_ARGS= --with-etcdir=${PREFIX}/etc --with-cflags="${CFLAGS}" \ +CONFIGURE_ARGS= --with-etcdir=${PREFIX}/etc --localstatedir=/var \ + --with-cflags="${CFLAGS}" \ --with-rootname=root --with-rootgroup=wheel \ --with-docdir=${DOCSDIR} diff -ur /usr/ports/sysutils/fcron/distinfo fcron/distinfo --- /usr/ports/sysutils/fcron/distinfo Wed Jan 17 00:30:11 2007 +++ fcron/distinfo Tue Jun 5 10:35:32 2007 @@ -1,3 +1,3 @@ -MD5 (fcron-3.0.2.src.tar.gz) = f35e6af41d356ebcb38882f86a14fb94 -SHA256 (fcron-3.0.2.src.tar.gz) = ea25f4e9a78f6872c65cc97aa18c018b548e9fcd73b06d77c312e635ecf9ad48 -SIZE (fcron-3.0.2.src.tar.gz) = 540559 +MD5 (fcron-3.0.3.src.tar.gz) = c85e6eecd0564f37658ae250a491fd31 +SHA256 (fcron-3.0.3.src.tar.gz) = 5ba9605ce49446c18ed49c7d16602aef760169f29fbcc34dc09b6177388dce00 +SIZE (fcron-3.0.3.src.tar.gz) = 549501 diff -ur /usr/ports/sysutils/fcron/files/fcrontab-root fcron/files/fcrontab-root --- /usr/ports/sysutils/fcron/files/fcrontab-root Tue Oct 4 11:54:23 2005 +++ fcron/files/fcrontab-root Thu Apr 19 12:46:14 2007 @@ -5,10 +5,10 @@ PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin HOME=/var/log # -@serial,lavg5(1.5) 5 /usr/libexec/atrun +@nolog,lavg5(1.5) 5 /usr/libexec/atrun # # Rotate log files every hour, if necessary. -%hourly * newsyslog +%nolog,hourly * newsyslog # # Perform daily/weekly/monthly maintenance. %daily,serial * * periodic daily >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 19:50:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77D2F16A421 for ; Tue, 5 Jun 2007 19:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5BF6B13C48A for ; Tue, 5 Jun 2007 19:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Jo25k069243 for ; Tue, 5 Jun 2007 19:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55Jo2dA069242; Tue, 5 Jun 2007 19:50:02 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 19:50:02 GMT Resent-Message-Id: <200706051950.l55Jo2dA069242@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "R.Mahmatkhanov" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E118416A400 for ; Tue, 5 Jun 2007 19:49:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id D519513C45D for ; Tue, 5 Jun 2007 19:49:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l55JnmRE094248 for ; Tue, 5 Jun 2007 19:49:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l55Jnmu0094247; Tue, 5 Jun 2007 19:49:48 GMT (envelope-from nobody) Message-Id: <200706051949.l55Jnmu0094247@www.freebsd.org> Date: Tue, 5 Jun 2007 19:49:48 GMT From: "R.Mahmatkhanov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113389: [MAINTAINER] devel/py-usb: update to 0.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 19:50:02 -0000 >Number: 113389 >Category: ports >Synopsis: [MAINTAINER] devel/py-usb: update to 0.4.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 19:50:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: R.Mahmatkhanov >Release: 6.2-STABLE >Organization: SkyLink >Environment: FreeBSD 6.2-STABLE i386 >Description: - update to 0.4.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/devel/py-usb/Makefile new/Makefile --- /usr/ports/devel/py-usb/Makefile Mon Jun 4 19:40:09 2007 +++ new/Makefile Tue Jun 5 23:39:00 2007 @@ -6,7 +6,7 @@ # PORTNAME= pyusb -PORTVERSION= 0.3.5 +PORTVERSION= 0.4.0 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ ${MASTER_SITE_BERLIOS} diff -ruN /usr/ports/devel/py-usb/distinfo new/distinfo --- /usr/ports/devel/py-usb/distinfo Mon Jun 4 19:40:09 2007 +++ new/distinfo Tue Jun 5 23:43:59 2007 @@ -1,3 +1,3 @@ -MD5 (pyusb-0.3.5.tar.gz) = 785dec85737453304ec216bbbb10e939 -SHA256 (pyusb-0.3.5.tar.gz) = aa75f557ca4332d729fd2a245db41537204fe03180b38f949a51bd3d570c85a0 -SIZE (pyusb-0.3.5.tar.gz) = 22478 +MD5 (pyusb-0.4.0.tar.gz) = 3162d4864568e34344a1886a4880878b +SHA256 (pyusb-0.4.0.tar.gz) = ebb997d32b9d1dcc2933932f58f75495a54f479f0e60eec1e6b37ba45e9b2c87 +SIZE (pyusb-0.4.0.tar.gz) = 22755 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 19:50:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74C5B16A46B; Tue, 5 Jun 2007 19:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 48D2C13C489; Tue, 5 Jun 2007 19:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55JoEYp069379; Tue, 5 Jun 2007 19:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55JoENx069375; Tue, 5 Jun 2007 19:50:14 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 19:50:14 GMT From: Edwin Groothuis Message-Id: <200706051950.l55JoENx069375@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113389: [MAINTAINER] devel/py-usb: update to 0.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 19:50:14 -0000 Synopsis: [MAINTAINER] devel/py-usb: update to 0.4.0 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Tue Jun 5 19:50:13 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113389 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 19:50:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2FA016A46C; Tue, 5 Jun 2007 19:50:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 73DA013C4C1; Tue, 5 Jun 2007 19:50:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55JoLf5069480; Tue, 5 Jun 2007 19:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55JoLZ7069476; Tue, 5 Jun 2007 19:50:21 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 19:50:21 GMT From: Edwin Groothuis Message-Id: <200706051950.l55JoLZ7069476@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113389: [MAINTAINER] devel/py-usb: update to 0.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 19:50:21 -0000 Synopsis: [MAINTAINER] devel/py-usb: update to 0.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 19:50:20 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113389 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:16:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24F0816A41F; Tue, 5 Jun 2007 21:16:02 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F180813C45B; Tue, 5 Jun 2007 21:16:01 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (itetcu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LG1wm079462; Tue, 5 Jun 2007 21:16:01 GMT (envelope-from itetcu@freefall.freebsd.org) Received: (from itetcu@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LG18H079457; Tue, 5 Jun 2007 21:16:01 GMT (envelope-from itetcu) Date: Tue, 5 Jun 2007 21:16:01 GMT From: Ion-Mihai Tetcu Message-Id: <200706052116.l55LG18H079457@freefall.freebsd.org> To: alex@BSDGuru.org, itetcu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, itetcu@FreeBSD.org Cc: Subject: Re: ports/113223: [PATCH] polish/libgadu: update to 1.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:16:02 -0000 Synopsis: [PATCH] polish/libgadu: update to 1.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: itetcu Responsible-Changed-When: Tue Jun 5 21:16:00 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113223 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:16:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5ECC416A468; Tue, 5 Jun 2007 21:16:08 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3695013C468; Tue, 5 Jun 2007 21:16:08 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (itetcu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LG70O079541; Tue, 5 Jun 2007 21:16:07 GMT (envelope-from itetcu@freefall.freebsd.org) Received: (from itetcu@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LG7lt079537; Tue, 5 Jun 2007 21:16:07 GMT (envelope-from itetcu) Date: Tue, 5 Jun 2007 21:16:07 GMT From: Ion-Mihai Tetcu Message-Id: <200706052116.l55LG7lt079537@freefall.freebsd.org> To: alex@bsdguru.org, itetcu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, itetcu@FreeBSD.org Cc: Subject: Re: ports/113224: [PATCH] polish/ekg: update to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:16:08 -0000 Synopsis: [PATCH] polish/ekg: update to 1.7 Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: itetcu Responsible-Changed-When: Tue Jun 5 21:16:07 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113224 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:25:57 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3439616A468; Tue, 5 Jun 2007 21:25:57 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 129F513C46C; Tue, 5 Jun 2007 21:25:57 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LPuUx080589; Tue, 5 Jun 2007 21:25:56 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LPu95080585; Tue, 5 Jun 2007 21:25:56 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:25:56 GMT From: Martin Wilke Message-Id: <200706052125.l55LPu95080585@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113382: [PATCH] textproc/kdiff3: fix compile error on pointyhat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:25:57 -0000 Synopsis: [PATCH] textproc/kdiff3: fix compile error on pointyhat Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:25:56 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113382 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5ECDD16A47B; Tue, 5 Jun 2007 21:26:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3A41F13C483; Tue, 5 Jun 2007 21:26:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQ3bH080655; Tue, 5 Jun 2007 21:26:03 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQ3R4080651; Tue, 5 Jun 2007 21:26:03 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:03 GMT From: Martin Wilke Message-Id: <200706052126.l55LQ3R4080651@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113376: [Maintainer Update] sysutils/diskscrub 1.8 -> 1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:03 -0000 Synopsis: [Maintainer Update] sysutils/diskscrub 1.8 -> 1.9 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:02 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113376 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B2C716A46D; Tue, 5 Jun 2007 21:26:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 49F3413C45A; Tue, 5 Jun 2007 21:26:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQ9r9080720; Tue, 5 Jun 2007 21:26:09 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQ9id080716; Tue, 5 Jun 2007 21:26:09 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:09 GMT From: Martin Wilke Message-Id: <200706052126.l55LQ9id080716@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113374: [Maintainer Update] graphics/bugle 0.0.20070217 -> 0.0.20070528 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:09 -0000 Synopsis: [Maintainer Update] graphics/bugle 0.0.20070217 -> 0.0.20070528 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:08 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113374 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6363616A46C; Tue, 5 Jun 2007 21:26:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3E00313C45D; Tue, 5 Jun 2007 21:26:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQFuY080785; Tue, 5 Jun 2007 21:26:15 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQFPU080781; Tue, 5 Jun 2007 21:26:15 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:15 GMT From: Martin Wilke Message-Id: <200706052126.l55LQFPU080781@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113373: [Maintainer Update] graphics/gauche-gl 0.4.2 -> 0.4.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:16 -0000 Synopsis: [Maintainer Update] graphics/gauche-gl 0.4.2 -> 0.4.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:14 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113373 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C05716A468; Tue, 5 Jun 2007 21:26:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6A28913C45A; Tue, 5 Jun 2007 21:26:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQLjt080850; Tue, 5 Jun 2007 21:26:21 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQLU4080846; Tue, 5 Jun 2007 21:26:21 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:21 GMT From: Martin Wilke Message-Id: <200706052126.l55LQLU4080846@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113372: [Maintainer Update] databases/gauche-gdbm 0.8.9 -> 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:21 -0000 Synopsis: [Maintainer Update] databases/gauche-gdbm 0.8.9 -> 0.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:20 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113372 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50F8B16A46D; Tue, 5 Jun 2007 21:26:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2563513C48A; Tue, 5 Jun 2007 21:26:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQQX9080915; Tue, 5 Jun 2007 21:26:26 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQQSs080911; Tue, 5 Jun 2007 21:26:26 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:26 GMT From: Martin Wilke Message-Id: <200706052126.l55LQQSs080911@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113371: [Maintainer Update] lang/gauche 0.8.9 -> 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:27 -0000 Synopsis: [Maintainer Update] lang/gauche 0.8.9 -> 0.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:26 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113371 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:33 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38CFB16A421; Tue, 5 Jun 2007 21:26:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 16AF013C48C; Tue, 5 Jun 2007 21:26:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQW4W080980; Tue, 5 Jun 2007 21:26:32 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQWNV080976; Tue, 5 Jun 2007 21:26:32 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:32 GMT From: Martin Wilke Message-Id: <200706052126.l55LQWNV080976@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113366: [Update] graphics/vp 1.6_2 -> 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:33 -0000 Synopsis: [Update] graphics/vp 1.6_2 -> 1.7 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:32 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113366 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:38 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C422716A41F; Tue, 5 Jun 2007 21:26:38 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A342F13C480; Tue, 5 Jun 2007 21:26:38 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQcKg081045; Tue, 5 Jun 2007 21:26:38 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQc9q081041; Tue, 5 Jun 2007 21:26:38 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:38 GMT From: Martin Wilke Message-Id: <200706052126.l55LQc9q081041@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113365: new port mail/p5-MIME-EncWords X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:38 -0000 Synopsis: new port mail/p5-MIME-EncWords Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:37 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113365 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:52 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A0A116A469; Tue, 5 Jun 2007 21:26:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7839413C4AD; Tue, 5 Jun 2007 21:26:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQq4l081176; Tue, 5 Jun 2007 21:26:52 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQq0u081172; Tue, 5 Jun 2007 21:26:52 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:52 GMT From: Martin Wilke Message-Id: <200706052126.l55LQq0u081172@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113342: [MAINTAINER-UPDATE] from net-mgmt/vidalia 0.0.11 to 0.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:52 -0000 Synopsis: [MAINTAINER-UPDATE] from net-mgmt/vidalia 0.0.11 to 0.0.12 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:51 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113342 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:26:58 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81C0316A469; Tue, 5 Jun 2007 21:26:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 602E513C4B9; Tue, 5 Jun 2007 21:26:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55LQwQp081241; Tue, 5 Jun 2007 21:26:58 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LQw5e081237; Tue, 5 Jun 2007 21:26:58 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:26:58 GMT From: Martin Wilke Message-Id: <200706052126.l55LQw5e081237@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113341: New port: audio/qmpdclient Easy to use musicpd client written in QT4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:26:58 -0000 Synopsis: New port: audio/qmpdclient Easy to use musicpd client written in QT4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:26:57 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113341 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 21:47:50 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CBFE16A469; Tue, 5 Jun 2007 21:47:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3B4F413C4BD; Tue, 5 Jun 2007 21:47:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55Llorm092161; Tue, 5 Jun 2007 21:47:50 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55LlnDf092157; Tue, 5 Jun 2007 21:47:49 GMT (envelope-from miwi) Date: Tue, 5 Jun 2007 21:47:49 GMT From: Martin Wilke Message-Id: <200706052147.l55LlnDf092157@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113364: new port mail/p5-MIME-Charset X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 21:47:50 -0000 Synopsis: new port mail/p5-MIME-Charset Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue Jun 5 21:47:49 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113364 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 22:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28B2116A468 for ; Tue, 5 Jun 2007 22:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0FCEC13C458 for ; Tue, 5 Jun 2007 22:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55M0AS0000931 for ; Tue, 5 Jun 2007 22:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55M0AeM000930; Tue, 5 Jun 2007 22:00:10 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 22:00:10 GMT Resent-Message-Id: <200706052200.l55M0AeM000930@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD71C16A468 for ; Tue, 5 Jun 2007 21:52:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id A733513C4B7 for ; Tue, 5 Jun 2007 21:52:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l55LqFDZ014225 for ; Tue, 5 Jun 2007 21:52:15 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l55LqF4E014224; Tue, 5 Jun 2007 21:52:15 GMT (envelope-from nobody) Message-Id: <200706052152.l55LqF4E014224@www.freebsd.org> Date: Tue, 5 Jun 2007 21:52:15 GMT From: Marcus von Appen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113391: [Maintainer-update]: games/tmw update to 0.0.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 22:00:11 -0000 >Number: 113391 >Category: ports >Synopsis: [Maintainer-update]: games/tmw update to 0.0.23 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 22:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD magenta.linden.home 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 27 19:44:14 CEST 2007 root@magenta.linden.home:/usr/obj/usr/src/sys/MAGENTA i386 >Description: The Manaworld version update to 0.0.23. >How-To-Repeat: >Fix: diff -Nur tmw/Makefile tmw.new/Makefile --- tmw/Makefile Sat May 19 22:07:38 2007 +++ tmw.new/Makefile Tue Jun 5 23:26:48 2007 @@ -6,8 +6,7 @@ # PORTNAME= tmw -PORTVERSION= 0.0.22.2 -PORTREVISION= 1 +PORTVERSION= 0.0.23 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= themanaworld @@ -32,6 +31,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `${SDL_CONFIG} --cflags` -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ARGS= --mandir=${MANPREFIX}/man +MAN6= tmw.6 OPTIONS= MUSIC "Install additional music" On diff -Nur tmw/distinfo tmw.new/distinfo --- tmw/distinfo Tue Mar 6 01:22:39 2007 +++ tmw.new/distinfo Tue Jun 5 22:46:27 2007 @@ -1,6 +1,6 @@ -MD5 (tmw-0.0.22.2.tar.gz) = c799a59487284b6812aae42c431b7103 -SHA256 (tmw-0.0.22.2.tar.gz) = c427e3cb9caa03a3f371e89df162846903b1ca0a946e251f7465aac92b71375e -SIZE (tmw-0.0.22.2.tar.gz) = 3043675 +MD5 (tmw-0.0.23.tar.gz) = 4c4233a3b904dcf2935685e5ec1e6e5a +SHA256 (tmw-0.0.23.tar.gz) = 599621951eea2c8e186fc898f3ba90010ef7c4cb6a5dae3127a8ad4fd41dbf81 +SIZE (tmw-0.0.23.tar.gz) = 3192067 MD5 (tmwmusic-0.0.20.tar.gz) = eec5e7d6c8ddb8938209815dbf5da812 SHA256 (tmwmusic-0.0.20.tar.gz) = 964bb27235cdc3199c392f6ddf25ce293c6f32e013abe85592b96221a5896939 SIZE (tmwmusic-0.0.20.tar.gz) = 9259802 diff -Nur tmw/pkg-plist tmw.new/pkg-plist --- tmw/pkg-plist Tue Mar 6 01:22:39 2007 +++ tmw.new/pkg-plist Tue Jun 5 23:20:48 2007 @@ -32,6 +32,12 @@ %%DATADIR%%/data/graphics/gui/sansserif8.png %%DATADIR%%/data/graphics/gui/selection.png %%DATADIR%%/data/graphics/gui/slider.png +%%DATADIR%%/data/graphics/gui/target-cursor-blue-l.png +%%DATADIR%%/data/graphics/gui/target-cursor-blue-m.png +%%DATADIR%%/data/graphics/gui/target-cursor-blue-s.png +%%DATADIR%%/data/graphics/gui/target-cursor-red-l.png +%%DATADIR%%/data/graphics/gui/target-cursor-red-m.png +%%DATADIR%%/data/graphics/gui/target-cursor-red-s.png %%DATADIR%%/data/graphics/gui/thickborder.png %%DATADIR%%/data/graphics/gui/vscroll_blue.png %%DATADIR%%/data/graphics/gui/vscroll_down_default.png @@ -76,9 +82,7 @@ %%DATADIR%%/data/help/skills.txt %%DATADIR%%/data/help/support.txt %%DATADIR%%/data/help/team.txt -%%DATADIR%%/data/icons/tmw-icon.ico -%%DATADIR%%/data/icons/tmw-icon.png -%%DATADIR%%/data/icons/tmw-icon.xpm +%%DATADIR%%/data/icons/tmw.png %%MUSICADDON%%%%DATADIR%%/data/music/Faith.ogg %%MUSICADDON%%%%DATADIR%%/data/music/Magick - Casino.ogg %%MUSICADDON%%%%DATADIR%%/data/music/Magick - Real.ogg >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 22:10:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9ACF916A400 for ; Tue, 5 Jun 2007 22:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7E44B13C45A for ; Tue, 5 Jun 2007 22:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55MA441002264 for ; Tue, 5 Jun 2007 22:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55MA4sX002263; Tue, 5 Jun 2007 22:10:04 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 22:10:04 GMT Resent-Message-Id: <200706052210.l55MA4sX002263@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Horcicka Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C9DC16A46B for ; Tue, 5 Jun 2007 22:06:06 +0000 (UTC) (envelope-from horcicka@bar.horcicka.eu) Received: from smtp.casablanca.cz (paperboy.casablanca.cz [217.11.225.65]) by mx1.freebsd.org (Postfix) with ESMTP id BB9B813C483 for ; Tue, 5 Jun 2007 22:06:05 +0000 (UTC) (envelope-from horcicka@bar.horcicka.eu) Received: from [81.0.211.4] (helo=bar.horcicka.eu) by smtp.casablanca.cz with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Hvgkk-00040j-9W for FreeBSD-gnats-submit@freebsd.org; Tue, 05 Jun 2007 23:39:46 +0200 Received: from bar.horcicka.eu (localhost [127.0.0.1]) by bar.horcicka.eu (8.13.8/8.13.8) with ESMTP id l55LXjri003520; Tue, 5 Jun 2007 23:33:45 +0200 (CEST) (envelope-from horcicka@bar.horcicka.eu) Received: (from horcicka@localhost) by bar.horcicka.eu (8.13.8/8.13.8/Submit) id l55LXjva003519; Tue, 5 Jun 2007 23:33:45 +0200 (CEST) (envelope-from horcicka) Message-Id: <200706052133.l55LXjva003519@bar.horcicka.eu> Date: Tue, 5 Jun 2007 23:33:45 +0200 (CEST) From: Martin Horcicka To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: pav@FreeBSD.org Subject: ports/113392: New port: devel/py-lock_file Lock file manipulation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 22:10:04 -0000 >Number: 113392 >Category: ports >Synopsis: New port: devel/py-lock_file Lock file manipulation >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 22:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Martin Horcicka >Release: FreeBSD 6.2-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD bar.horcicka.eu 6.2-RELEASE-p1 FreeBSD 6.2-RELEASE-p1 #0: Fri Mar 23 23:18:43 CET 2007 root@bar.horcicka.eu:/usr/src/sys/i386/compile/CUSTOM i386 >Description: A Python module for lock file manipulation. >How-To-Repeat: >Fix: --- py-lock_file.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/devel/py-lock_file # /usr/ports/devel/py-lock_file/distinfo # /usr/ports/devel/py-lock_file/Makefile # /usr/ports/devel/py-lock_file/pkg-descr # /usr/ports/devel/py-lock_file/pkg-plist # echo c - /usr/ports/devel/py-lock_file mkdir -p /usr/ports/devel/py-lock_file > /dev/null 2>&1 echo x - /usr/ports/devel/py-lock_file/distinfo sed 's/^X//' >/usr/ports/devel/py-lock_file/distinfo << 'END-of-/usr/ports/devel/py-lock_file/distinfo' XMD5 (lock_file-1.0.tar.gz) = e22d72e9adc7b690954b40118b58b7cf XSHA256 (lock_file-1.0.tar.gz) = 1bf525dfce21ad10c4f121e4ec5ade36da90c3d97a7336ed91c7f65ebaa576f8 XSIZE (lock_file-1.0.tar.gz) = 2162 END-of-/usr/ports/devel/py-lock_file/distinfo echo x - /usr/ports/devel/py-lock_file/Makefile sed 's/^X//' >/usr/ports/devel/py-lock_file/Makefile << 'END-of-/usr/ports/devel/py-lock_file/Makefile' X# New ports collection makefile for: lock_file X# Date created: 5 June 2007 X# Whom: Martin Horcicka X# X# $FreeBSD$ X# X XPORTNAME= lock_file XPORTVERSION= 1.0 XCATEGORIES= devel python XMASTER_SITES= http://martin.horcicka.eu/python/lock_file/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= martin@horcicka.eu XCOMMENT= Lock file manipulation X XUSE_PYTHON= 2.4+ XUSE_PYDISTUTILS= yes X X.include END-of-/usr/ports/devel/py-lock_file/Makefile echo x - /usr/ports/devel/py-lock_file/pkg-descr sed 's/^X//' >/usr/ports/devel/py-lock_file/pkg-descr << 'END-of-/usr/ports/devel/py-lock_file/pkg-descr' XLock files are used on Unix-like systems as a means of synchronization among Xprocesses. Only one process can hold a lock file. Other processes that want to Xacquire it have to wait until it is released by the holder. X XIn this module the lock file is implemented as an empty regular file, Xexclusively locked using fcntl.flock. The file is removed when it is to be Xreleased. X XWWW: http://martin.horcicka.eu/python/lock_file/ END-of-/usr/ports/devel/py-lock_file/pkg-descr echo x - /usr/ports/devel/py-lock_file/pkg-plist sed 's/^X//' >/usr/ports/devel/py-lock_file/pkg-plist << 'END-of-/usr/ports/devel/py-lock_file/pkg-plist' X%%PYTHON_SITELIBDIR%%/lock_file.py X%%PYTHON_SITELIBDIR%%/lock_file.pyc X%%PYTHON_SITELIBDIR%%/lock_file.pyo END-of-/usr/ports/devel/py-lock_file/pkg-plist exit --- py-lock_file.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 22:10:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A929716A4A6; Tue, 5 Jun 2007 22:10:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 87F2413C43E; Tue, 5 Jun 2007 22:10:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55MABeu002396; Tue, 5 Jun 2007 22:10:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55MABIs002392; Tue, 5 Jun 2007 22:10:11 GMT (envelope-from edwin) Date: Tue, 5 Jun 2007 22:10:11 GMT From: Edwin Groothuis Message-Id: <200706052210.l55MABIs002392@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113392: New port: devel/py-lock_file Lock file manipulation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 22:10:11 -0000 Synopsis: New port: devel/py-lock_file Lock file manipulation Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jun 5 22:10:10 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113392 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 22:20:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8058216A468 for ; Tue, 5 Jun 2007 22:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4F48713C458 for ; Tue, 5 Jun 2007 22:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55MK4PA010975 for ; Tue, 5 Jun 2007 22:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55MK4Zw010974; Tue, 5 Jun 2007 22:20:04 GMT (envelope-from gnats) Resent-Date: Tue, 5 Jun 2007 22:20:04 GMT Resent-Message-Id: <200706052220.l55MK4Zw010974@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jo Rhett Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A31B16A421 for ; Tue, 5 Jun 2007 22:19:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 40C7113C4AE for ; Tue, 5 Jun 2007 22:19:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l55MJhcC017813 for ; Tue, 5 Jun 2007 22:19:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l55MJhrr017812; Tue, 5 Jun 2007 22:19:43 GMT (envelope-from nobody) Message-Id: <200706052219.l55MJhrr017812@www.freebsd.org> Date: Tue, 5 Jun 2007 22:19:43 GMT From: Jo Rhett To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113393: pkg_add should have a command line option synonmous with PACKAGESITE environment variable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 22:20:04 -0000 >Number: 113393 >Category: ports >Synopsis: pkg_add should have a command line option synonmous with PACKAGESITE environment variable >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 05 22:20:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Jo Rhett >Release: 6.2 >Organization: Silicon Valley Colocation, Inc. >Environment: FreeBSD triceratops.netconsonance.com 6.2-RELEASE-p2 FreeBSD 6.2-RELEASE-p2 #0: Tue Feb 27 22:41:06 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: On May 9, 2007, at 5:07 AM, Clement Laforet wrote: pkg_add really needs a command line option instead of only using the environment variables... "pkg_add -r http://my.freebsd-repo.com/packages/All/my_packages-1.0.tbz" works fine ;-) The behavior is not identical. For example, this works only for a single package. /usr/sbin/pkg_add -r http://my.location/packages/{pkgname} This works for multiple packages: export PACKAGESITE=http://my.location/packages/ /usr/sbin/pkg_add -r {pkgname} {pkgname2} Also, the former will not resolve dependancies properly (it alters the path), whereas the latter will. In short, they are not synonymous. A command line option which is synonymous with the environment variable would be very useful in scripts/cfengine/etc. >How-To-Repeat: Try to run a single command which installs multiple packages from a single location. -or- Have the named package need dependancies. >Fix: An option which has the exact same effect as PACKAGESITE environment variable would be very useful, and should be trivial to implement. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 23:30:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E51416A485 for ; Tue, 5 Jun 2007 23:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C028A13C48A for ; Tue, 5 Jun 2007 23:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l55NUB29033496 for ; Tue, 5 Jun 2007 23:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l55NUBMe033493; Tue, 5 Jun 2007 23:30:11 GMT (envelope-from gnats) Date: Tue, 5 Jun 2007 23:30:11 GMT Message-Id: <200706052330.l55NUBMe033493@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Michael Scheidell" Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 23:30:12 -0000 The following reply was made to PR ports/112522; it has been noted by GNATS. From: "Michael Scheidell" To: Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin Date: Tue, 5 Jun 2007 19:23:49 -0400 This is a multi-part message in MIME format. ------=_NextPart_000_0002_01C7A7A7.0B4B4DD0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Any problem with this patch? as the official maintainer of p5-Mail-SpamAssassin, I found a huge = performance increase with these well documented, well tested patches. for background, see this bug report on spamassassin bugtraq: http://issues.apache.org/SpamAssassin/show_bug.cgi?id=3D5312 We have been using these patches in two dozen production systems for = almost a month. ------=_NextPart_000_0002_01C7A7A7.0B4B4DD0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Any problem with this = patch?
 
as the official maintainer of = p5-Mail-SpamAssassin,=20 I found a huge performance increase with these well documented, well = tested=20 patches.
 
for background, see this bug report on = spamassassin=20 bugtraq:
 
htt= p://issues.apache.org/SpamAssassin/show_bug.cgi?id=3D5312
 
We have been using these patches in two = dozen=20 production systems for almost a month.
 
------=_NextPart_000_0002_01C7A7A7.0B4B4DD0-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 5 23:31:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B871016A468; Tue, 5 Jun 2007 23:31:05 +0000 (UTC) (envelope-from ade@lovett.com) Received: from mail.lovett.com (foo.lovett.com [67.134.38.158]) by mx1.freebsd.org (Postfix) with ESMTP id 9E24613C465; Tue, 5 Jun 2007 23:31:05 +0000 (UTC) (envelope-from ade@lovett.com) Received: from inferno.canal.lovett.com ([172.16.32.23]:49207) by mail.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HviUS-000Je7-P4; Tue, 05 Jun 2007 16:31:04 -0700 In-Reply-To: <86ps4afuu6.fsf@dwp.des.no> References: <200705241023.l4OANKHT047366@freefall.freebsd.org> <86ps4afuu6.fsf@dwp.des.no> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: <26B0A91D-79A0-4AED-9D0C-555AAD799892@FreeBSD.org> Content-Transfer-Encoding: quoted-printable From: Ade Lovett Date: Tue, 5 Jun 2007 16:31:04 -0700 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= X-Mailer: Apple Mail (2.752.3) Sender: ade@lovett.com Cc: freebsd-ports-bugs@FreeBSD.org, Ade Lovett , portmgr@FreeBSD.org Subject: Re: ports/112930: Autotools. The Next Step. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2007 23:31:05 -0000 On Jun 05, 2007, at 05:29 , Dag-Erling Sm=F8rgrav wrote: > Ade Lovett writes: >> Re-synced patch once again, hopefully the last time (heh!) before >> going for an -exp run. > > Thanks! Actually, I've just changed it a little: http://freebsd.lovett.com/ade/patches/autotools-20070605b.diff MD5: 17101da831cb8890609a3a04461402d9 This adds support for a new USE_AUTOTOOLS stanza; 'autotools:[build|=20 run|both]' which simply acts as a convenience function to ensure all =20= versions of autoconf/automake/libtool are brought in, via the devel/=20 autotools metaport, rather than having to rely on a relatively =20 obscure DEPENDS entry. Just a little bit cleaner, that's all. The devel/configgen Makefile =20 now simply contains: USE_AUTOTOOLS=3D autotools:run instead of the lots of lines of code previously. -aDe From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 00:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C5CE616A469 for ; Wed, 6 Jun 2007 00:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ACA5013C457 for ; Wed, 6 Jun 2007 00:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l560A3K6035920 for ; Wed, 6 Jun 2007 00:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l560A3Ja035919; Wed, 6 Jun 2007 00:10:03 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 00:10:03 GMT Resent-Message-Id: <200706060010.l560A3Ja035919@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Scheidell Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A1DC16A479 for ; Wed, 6 Jun 2007 00:03:40 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from scanner.secnap.net (corp.secnap.com [204.89.241.135]) by mx1.freebsd.org (Postfix) with ESMTP id AA98F13C448 for ; Wed, 6 Jun 2007 00:01:47 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: by scanner.secnap.net (Postfix, from userid 1001) id 3B6561CD3A; Tue, 5 Jun 2007 20:01:47 -0400 (EDT) Message-Id: <20070606000147.3B6561CD3A@scanner.secnap.net> Date: Tue, 5 Jun 2007 20:01:47 -0400 (EDT) From: Michael Scheidell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: bri@sonicboom.org Subject: ports/113394: [maintainer update] p5-Mail-SpamAssassin to 3.2.0_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 00:10:03 -0000 >Number: 113394 >Category: ports >Synopsis: [maintainer update] p5-Mail-SpamAssassin to 3.2.0_1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 00:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Michael Scheidell >Release: FreeBSD 5.5-RELEASE-p8 i386 >Organization: SECNAP Network Security Corp >Environment: System: FreeBSD scanner.secnap.net 5.5-RELEASE-p8 FreeBSD 5.5-RELEASE-p8 #2: Fri Dec 29 22:23:34 EST 2006 scheidell@scanner.secnap.net:/usr/obj/usr/src/sys/HACKERTRAP_750 i386 >Description: #1 pkg-message does not mention need for enable flags for RC.SUBR (thanks Bruce) #2 Typo in sed regex prevented sa-compile plugin in 320.pre >How-To-Repeat: na >Fix: Patches against 3.2.0: diff -bBru /var/tmp/p5-Mail-SpamAssassin-3.20/Makefile ./Makefile --- /var/tmp/p5-Mail-SpamAssassin-3.20/Makefile Sat Jun 2 03:09:46 2007 +++ ./Makefile Tue Jun 5 19:31:44 2007 @@ -7,6 +7,7 @@ PORTNAME= Mail-SpamAssassin PORTVERSION= 3.2.0 +PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_APACHE:S/$/:apache/} ${MASTER_SITE_PERL_CPAN:S/$/:cpan/} MASTER_SITE_SUBDIR= spamassassin/source/:apache Mail/:cpan @@ -217,7 +218,7 @@ ${REINPLACE_CMD} -e '/DCC/s/^#loadplugin/loadplugin/' ${WRKSRC}/rules/v310.pre .endif .if defined(WITH_SACOMPILE) - ${REINPLACE_CMD} -e '/Rule2XSBody/s/^#loadplugin/loadplugin/' ${WRKSRC}/rules/v320.pre + ${REINPLACE_CMD} -e '/Rule2XSBody/s/^# loadplugin/loadplugin/' ${WRKSRC}/rules/v320.pre .endif pre-install: diff -bBru /var/tmp/p5-Mail-SpamAssassin-3.20/pkg-message ./pkg-message --- /var/tmp/p5-Mail-SpamAssassin-3.20/pkg-message Sat Jun 2 03:09:46 2007 +++ ./pkg-message Tue Jun 5 19:38:30 2007 @@ -25,3 +25,10 @@ that sa-update now places state files in /var/db/spamassassin and not the default /var/lib/spamassassin. This is to be consistant with Freebsd file directory conventions + +If you are running with spamd, you must add the following to rc.conf: +spamd_enable="YES" + +Security Note: If you did NOT deselected AS_ROOT, spamd will be running +as root. To change this, also add this to rc.conf: +spamd_flags="-u spamd -H /var/spool/spamd" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 00:23:51 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8815C16A46F; Wed, 6 Jun 2007 00:23:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5D89B13C458; Wed, 6 Jun 2007 00:23:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l560NpKr036677; Wed, 6 Jun 2007 00:23:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l560No5V036673; Wed, 6 Jun 2007 00:23:50 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 00:23:50 GMT From: Edwin Groothuis Message-Id: <200706060023.l560No5V036673@freefall.freebsd.org> To: nivo+kw+ports.bfa274@is-root.com, scheidell@secnap.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 00:23:51 -0000 Synopsis: mail/Razor-agents has performance problem with SpamAssassin State-Changed-From-To: feedback->open State-Changed-By: edwin State-Changed-When: Wed Jun 6 00:23:16 UTC 2007 State-Changed-Why: maintainer timeout, feel free to commit! http://www.freebsd.org/cgi/query-pr.cgi?pr=112522 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 00:40:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 107D016A400 for ; Wed, 6 Jun 2007 00:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ECEB413C4B7 for ; Wed, 6 Jun 2007 00:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l560e2AW039258 for ; Wed, 6 Jun 2007 00:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l560e2im039257; Wed, 6 Jun 2007 00:40:02 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 00:40:02 GMT Resent-Message-Id: <200706060040.l560e2im039257@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bf Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1878916A46D for ; Wed, 6 Jun 2007 00:34:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id EE2C913C48C for ; Wed, 6 Jun 2007 00:34:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l560YFrS067441 for ; Wed, 6 Jun 2007 00:34:15 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l560YFKG067440; Wed, 6 Jun 2007 00:34:15 GMT (envelope-from nobody) Message-Id: <200706060034.l560YFKG067440@www.freebsd.org> Date: Wed, 6 Jun 2007 00:34:15 GMT From: bf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113395: [PATCH] net/samba-libsmbclient handles options incorrectly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 00:40:03 -0000 >Number: 113395 >Category: ports >Synopsis: [PATCH] net/samba-libsmbclient handles options incorrectly >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 00:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: bf >Release: >Organization: >Environment: >Description: Since libmsrpc and libsmbsharemodes are built by default on platforms that support shared libraries, they must be explicitly disabled if they are not desired. Currently, the samba-libsmbclient Makefile.inc does not do this. Also, there should be a choice of using the popt port libraries as opposed to the bundled popt libraries with the samba-libsmbclient port, just as there is for the samba3 port. Three files must be patched to make the above changes: --- samba-libsmbclient/Makefile.orig Tue Jun 5 20:19:32 2007 +++ samba-libsmbclient/Makefile Tue Jun 5 20:24:05 2007 @@ -21,8 +21,9 @@ USE_LDCONFIG= yes -OPTIONS= ADS "With Active Directory support" off \ +OPTIONS= POPT "With system-wide POPT library" on \ + ADS "With Active Directory support" off \ MSRPC "Build the libmsrpc shared library" off \ - SHAREMODES "Build the libsharemods shared library" off + SHAREMODES "Build the libsharemodes shared library" off .include "${MASTERDIR}/Makefile" --- samba-libsmbclient/Makefile.inc.orig Tue Jun 5 19:56:54 2007 +++ samba-libsmbclient/Makefile.inc Tue Jun 5 20:03:20 2007 @@ -9,6 +9,7 @@ SAMBA_INSTALL_LIBS+= libmsrpc PLIST_SUB+= MSRPC="" .else +CONFIGURE_ARGS+= --without-libmsrpc PLIST_SUB+= MSRPC="@comment " .endif @@ -17,6 +18,7 @@ SAMBA_INSTALL_LIBS+= libsmbsharemodes PLIST_SUB+= SHAREMODES="" .else +CONFIGURE_ARGS+= --without-libsmbsharemodes PLIST_SUB+= SHAREMODES="@comment " .endif --- samba3/Makefile.orig Tue Jun 5 19:57:37 2007 +++ samba3/Makefile Tue Jun 5 20:01:03 2007 @@ -76,7 +76,7 @@ DNSUPDATE "With dynamic DNS update" off \ EXP_MODULES "With experimental modules" off \ POPT "With system-wide POPT library" on \ - MAX_DEBUG "With maximum debuging" off \ + MAX_DEBUG "With maximum debugging" off \ SMBTORTURE "With smbtorture" off .endif @@ -236,18 +236,20 @@ CONFIGURE_ARGS+= --without-aio-support .endif +# !SAMBA_SUBPORT +.endif + +### +### Common part for port and it's subports +### + .if !defined(WITHOUT_POPT) LIB_DEPENDS+= popt.0:${PORTSDIR}/devel/popt CONFIGURE_ARGS+= --without-included-popt .else CONFIGURE_ARGS+= --with-included-popt .endif -# !SAMBA_SUBPORT -.endif -### -### Common part for port and it's subports -### # For 4.8 - 4.11 combination of Kerberos and OpenLDAP is broken # due the conflict between system and OpenSSL port libcrypto libraries .if ${OSVERSION} > 470103 && ${OSVERSION} < 500000 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 00:40:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E345816A469; Wed, 6 Jun 2007 00:40:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BFA3513C44B; Wed, 6 Jun 2007 00:40:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l560e9IU039409; Wed, 6 Jun 2007 00:40:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l560e95R039404; Wed, 6 Jun 2007 00:40:09 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 00:40:09 GMT From: Edwin Groothuis Message-Id: <200706060040.l560e95R039404@freefall.freebsd.org> To: bf2006a@yahoo.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113395: [PATCH] net/samba-libsmbclient handles options incorrectly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 00:40:10 -0000 Synopsis: [PATCH] net/samba-libsmbclient handles options incorrectly State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jun 6 00:40:09 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113395 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 00:57:36 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 890E116A400; Wed, 6 Jun 2007 00:57:36 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4C7BA13C484; Wed, 6 Jun 2007 00:57:36 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id DAD6C17020; Wed, 6 Jun 2007 09:57:34 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id A7AEB24; Wed, 6 Jun 2007 09:57:34 +0900 (JST) Received: from localhost (half.home.utahime.org [192.168.174.3]) by eastasia.home.utahime.org (Postfix) with ESMTP id B308921; Wed, 6 Jun 2007 09:57:33 +0900 (JST) Date: Wed, 06 Jun 2007 09:57:26 +0900 (LDT) Message-Id: <20070606.095726.28987910.yasu@utahime.org> To: freebsd-ports@freebsd.org From: KIMURA Yasuhiro In-Reply-To: <20070526.060541.52327674.yasu@utahime.org> References: <20070428051828.7B77720@eastasia.home.utahime.org> <200704280520.l3S5K34o097754@freefall.freebsd.org> <20070526.060541.52327674.yasu@utahime.org> X-Mailer: Mew version 5.2 on Emacs 21.4 / Mule 5.0 =?iso-2022-jp?B?KBskQjgtTFobKEIp?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org, sergei@FreeBSD.org Subject: Re: ports/112201: [PATCH] mail/maildrop: Update to 2.0.4. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 00:57:36 -0000 Hello Would someone please commit ports/112201 with maintainer timeout? Regards. --- KIMURA Yasuhiro From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 01:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 128E816A421 for ; Wed, 6 Jun 2007 01:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F119613C465 for ; Wed, 6 Jun 2007 01:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l561A4Ef040360 for ; Wed, 6 Jun 2007 01:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l561A4t1040359; Wed, 6 Jun 2007 01:10:04 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 01:10:04 GMT Resent-Message-Id: <200706060110.l561A4t1040359@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Scheidell Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A182616A41F for ; Wed, 6 Jun 2007 01:04:47 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from scanner.secnap.net (corp.secnap.com [204.89.241.135]) by mx1.freebsd.org (Postfix) with ESMTP id 5422013C45B for ; Wed, 6 Jun 2007 01:04:47 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: by scanner.secnap.net (Postfix, from userid 1001) id 8A3011CD45; Tue, 5 Jun 2007 21:04:46 -0400 (EDT) Message-Id: <20070606010446.8A3011CD45@scanner.secnap.net> Date: Tue, 5 Jun 2007 21:04:46 -0400 (EDT) From: Michael Scheidell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Mark.Martinec@ijs.si, gabor@FreeBSD.org Subject: ports/113396: Update Amavisd to 2.5.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 01:10:05 -0000 >Number: 113396 >Category: ports >Synopsis: Update Amavisd to 2.5.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 01:10:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Michael Scheidell >Release: FreeBSD 5.5-RELEASE-p8 i386 >Organization: SECNAP Network Security >Environment: System: FreeBSD scanner.secnap.net 5.5-RELEASE-p8 FreeBSD 5.5-RELEASE-p8 #2: Fri Dec 29 22:23:34 EST 2006 scheidell@scanner.secnap.net:/usr/obj/usr/src/sys/HACKERTRAP_750 i386 >Description: #1 Update Amavisd-new from 2.50 to 2.5.1 Several enhancements and bugfixes full Release notes: http://www.ijs.si/software/amavisd/release-notes.txt #2, several changes to ports Makefile suggested by amavisd-new author a) remove the sed/replacecmd for zoo/unzoo, not needed b) add in copy of amavisd-release to amavisd-requeue (add functionality, see release notes) #3, required minimum p5-Compress-Zlib>=2.04 (functionality) #4, security fixed: disable zoo and unzoo by default (DOS attack) a) mark UNZOO IGNORE (no patches available) b) make zoo RUN_DEPENDS+= zoo>=2.10.1_3 (needs anti-dos patches) c) make file RUN_DEPENDS+= file>=4.2.1 (DOS attack) #5: and patch from p5-Mail-SpamAssassin maintainer: scheidell@secnap.net to add ram disk for /var/amavis/tmp. activated with 'amavisd_ram=' setting in rc.conf. Tests on systems with extra ram, full load show up to 10% increase in performance, even over fbsd ufs2 with softupdates. >How-To-Repeat: na >Fix: Patches: diff -bBru /var/tmp/amavisd-new250/Makefile ./Makefile --- /var/tmp/amavisd-new250/Makefile Mon May 21 18:52:40 2007 +++ ./Makefile Tue Jun 5 20:25:46 2007 @@ -7,7 +7,7 @@ # Based on amavisd ports makefile. PORTNAME= amavisd-new -PORTVERSION= 2.5.0 +PORTVERSION= 2.5.1 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= http://www.ijs.si/software/amavisd/ \ @@ -22,7 +22,7 @@ ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ ${SITE_PERL}/Convert/TNEF.pm:${PORTSDIR}/converters/p5-Convert-TNEF \ p5-Convert-UUlib>=1.08,1:${PORTSDIR}/converters/p5-Convert-UUlib \ - p5-Compress-Zlib>=1.04:${PORTSDIR}/archivers/p5-Compress-Zlib \ + p5-Compress-Zlib>=2.04:${PORTSDIR}/archivers/p5-Compress-Zlib \ ${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \ ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes \ @@ -67,7 +67,7 @@ NOMARCH "ARC support with archivers/nomarch" off \ CAB "CAB support with archivers/cabextract" on \ RPM "RPM support with archivers/rpm2cpio" on \ - ZOO "ZOO support with archivers/zoo" on \ + ZOO "ZOO support with archivers/zoo" off \ UNZOO "ZOO support with archivers/unzoo" off \ LZOP "LZOP support with archivers/lzop" on \ FREEZE "FREEZE support with archivers/freeze" on \ @@ -140,7 +140,8 @@ .endif .if defined(WITH_FILE) -RUN_DEPENDS+= ${LOCALBASE}/bin/file:${PORTSDIR}/sysutils/file +# security fix, file > 4.2.1 needed +RUN_DEPENDS+= file>=4.2.1:${PORTSDIR}/sysutils/file .endif .if defined(WITH_RAR) @@ -180,10 +181,12 @@ .endif .if defined(WITH_ZOO) -RUN_DEPENDS+= ${LOCALBASE}/bin/zoo:${PORTSDIR}/archivers/zoo +# DOS condition in 2.10.1_2 +RUN_DEPENDS+= zoo>=2.10.1_3:${PORTSDIR}/archivers/zoo .endif .if defined(WITH_UNZOO) +IGNORE= UNZOO Broken with DOS attack conditions. Not maintained. No patches RUN_DEPENDS+= ${LOCALBASE}/bin/unzoo:${PORTSDIR}/archivers/unzoo .endif @@ -204,9 +207,6 @@ .endif post-patch: -.for f in amavisd.conf amavisd.conf-sample amavisd amavisd-agent amavisd-nanny amavisd-release - @${REINPLACE_CMD} "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/${f} -.endfor .for i in amavisd.conf amavisd.conf-sample @${REINPLACE_CMD} -e "s|$daemon_user = \'vscan\';|$daemon_user = \'${AMAVISUSER}\';|" \ -e "s|$daemon_group = \'vscan\';|$daemon_group = \'${AMAVISGROUP}\';|" \ @@ -245,6 +245,7 @@ .for i in amavisd amavisd-agent amavisd-nanny amavisd-release ${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/sbin .endfor + ${INSTALL_SCRIPT} ${WRKSRC}/amavisd-release ${PREFIX}/sbin/amavisd-requeue ${INSTALL_SCRIPT} ${WRKSRC}/amavisd.conf ${PREFIX}/etc/amavisd.conf-dist ${INSTALL_SCRIPT} ${WRKSRC}/amavisd.conf-sample ${PREFIX}/etc/amavisd.conf-sample ${INSTALL_SCRIPT} ${WRKSRC}/amavisd.conf-default ${PREFIX}/etc/amavisd.conf-default diff -bBru /var/tmp/amavisd-new250/distinfo ./distinfo --- /var/tmp/amavisd-new250/distinfo Tue May 1 14:31:56 2007 +++ ./distinfo Tue Jun 5 20:06:12 2007 @@ -1,3 +1,3 @@ -MD5 (amavisd-new-2.5.0.tar.gz) = 990a8c78911e208afca8c43a1f7c018d -SHA256 (amavisd-new-2.5.0.tar.gz) = d5f5238a565868b5150c2591cd06780556d2aa093355475874e6b539e7eb1116 -SIZE (amavisd-new-2.5.0.tar.gz) = 780990 +MD5 (amavisd-new-2.5.1.tar.gz) = c0bed5db53dfce6e70047597989523e2 +SHA256 (amavisd-new-2.5.1.tar.gz) = 2ac5a933d62072b3ed9986252003fd3942179618c7ba76d3390570547fc981de +SIZE (amavisd-new-2.5.1.tar.gz) = 786898 diff -bBru /var/tmp/amavisd-new250/files/amavisd.sh.in ./files/amavisd.sh.in --- /var/tmp/amavisd-new250/files/amavisd.sh.in Mon Feb 20 15:47:36 2006 +++ ./files/amavisd.sh.in Tue Jun 5 20:44:09 2007 @@ -23,6 +23,20 @@ pidfile=%%AMAVISDIR%%/amavisd.pid required_files=%%PREFIX%%/etc/amavisd.conf +start_precmd=start_precmd + +# possible values include: amavisd_ram="512m" +# adds ram disk for amavisd defanging/decoding, speeds up large systems 10% +start_precmd() +{ +rm -rf %%AMAVISDIR%%/tmp/* %%AMAVISDIR%%/tmp/.* 2>/dev/null || true +if [ ${amavisd_ram} ];then + df %%AMAVISDIR%%/tmp | grep '^/dev/md' > /dev/null + if [ $? -eq 1 ];then + mdmfs -M -s ${amavisd_ram} -w %%AMAVISUSER%%:%%AMAVISGROUP%% md %%AMAVISDIR%%/tmp || true + fi +fi +} stop_postcmd=stop_postcmd stop_postcmd() diff -bBru /var/tmp/amavisd-new250/files/pkg-message.in ./files/pkg-message.in --- /var/tmp/amavisd-new250/files/pkg-message.in Tue May 1 14:31:56 2007 +++ ./files/pkg-message.in Tue Jun 5 20:40:53 2007 @@ -13,6 +13,10 @@ amavisd_enable="YES" + Optionally enable amavisd tmp ram disk with: (example 512k) + + amavisd_ram="512m" + If you have installed and want to use the amavis sendmail milter interface, you need the following additional line in /etc/rc.conf: diff -bBru /var/tmp/amavisd-new250/pkg-plist ./pkg-plist --- /var/tmp/amavisd-new250/pkg-plist Tue May 1 14:31:56 2007 +++ ./pkg-plist Tue Jun 5 20:47:20 2007 @@ -79,3 +79,4 @@ sbin/amavisd-agent sbin/amavisd-nanny sbin/amavisd-release +sbin/amavisd-requeue >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 01:19:59 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69B1516A400; Wed, 6 Jun 2007 01:19:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4BF4513C45D; Wed, 6 Jun 2007 01:19:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l561JxEx040811; Wed, 6 Jun 2007 01:19:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l561Jx7H040807; Wed, 6 Jun 2007 01:19:59 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 01:19:59 GMT From: Edwin Groothuis Message-Id: <200706060119.l561Jx7H040807@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org Cc: Subject: Re: ports/113396: Update security/Amavisd-new to 2.5.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 01:19:59 -0000 Synopsis: Update security/Amavisd-new to 2.5.1 Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 01:19:58 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113396 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 02:00:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2442716A468 for ; Wed, 6 Jun 2007 02:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F3DA713C4B9 for ; Wed, 6 Jun 2007 02:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56208Ow043242 for ; Wed, 6 Jun 2007 02:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56208J2043241; Wed, 6 Jun 2007 02:00:08 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 02:00:08 GMT Resent-Message-Id: <200706060200.l56208J2043241@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ighighi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3EE0716A400 for ; Wed, 6 Jun 2007 01:55:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3ED13C484 for ; Wed, 6 Jun 2007 01:55:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l561tkO9039343 for ; Wed, 6 Jun 2007 01:55:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l561tkMn039342; Wed, 6 Jun 2007 01:55:46 GMT (envelope-from nobody) Message-Id: <200706060155.l561tkMn039342@www.freebsd.org> Date: Wed, 6 Jun 2007 01:55:46 GMT From: Ighighi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113397: [PATCH]: gzip(1) support for -k option as used by bzip2(1) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 02:00:09 -0000 >Number: 113397 >Category: ports >Synopsis: [PATCH]: gzip(1) support for -k option as used by bzip2(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 02:00:08 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ighighi >Release: 6.2-STABLE >Organization: >Environment: FreeBSD orion 6.2-STABLE FreeBSD 6.2-STABLE #4: Sat Jun 2 05:22:26 VET 2007 root@orion:/usr/obj/usr/src/sys/CUSTOM i386 >Description: The new gzip(1) in the base system now supports the -k option as used by bzip2(1). See http://www.freebsd.org/cgi/query-pr.cgi?pr=103006 This patch does the same for archivers/gzip >How-To-Repeat: >Fix: Copy the attached patch to /usr/ports/archivers/gzip/files and reinstall Patch attached with submission follows: --- gzip.1.orig Fri Dec 8 14:45:37 2006 +++ gzip.1 Tue Jun 5 21:44:20 2007 @@ -4,7 +4,7 @@ .SH SYNOPSIS .ll +8 .B gzip -.RB [ " \-acdfhlLnNrtvV19 " ] +.RB [ " \-acdfhklLnNrtvV19 " ] .RB [ \-S\ suffix ] [ .I "name \&..." @@ -12,7 +12,7 @@ .ll -8 .br .B gunzip -.RB [ " \-acfhlLnNrtvV " ] +.RB [ " \-acfhklLnNrtvV " ] .RB [ \-S\ suffix ] [ .I "name \&..." @@ -223,6 +223,9 @@ .TP .B \-h --help Display a help screen and quit. +.TP +.B \-k --keep +Keep (don't delete) input files during compression or decompression. .TP .B \-l --list For each compressed file, list the following fields: --- gzip.c.orig Tue Mar 20 01:09:51 2007 +++ gzip.c Tue Jun 5 21:43:50 2007 @@ -216,6 +216,8 @@ suppresses a "Broken Pipe" message with some shells. */ static int volatile exiting_signal; +/* If nonzero, unlink input file on exit. */ +static int remove_ifname = 1; /* If nonnegative, close this file descriptor and unlink ofname on error. */ static int volatile remove_ofname_fd = -1; @@ -243,6 +245,7 @@ /* {"encrypt", 0, 0, 'e'}, encrypt */ {"force", 0, 0, 'f'}, /* force overwrite of output file */ {"help", 0, 0, 'h'}, /* give help */ + {"keep", 0, 0, 'k'}, /* keep (don't delete) input files */ /* {"pkzip", 0, 0, 'k'}, force output in pkzip format */ {"list", 0, 0, 'l'}, /* list .gz file contents */ {"license", 0, 0, 'L'}, /* display software license */ @@ -319,6 +322,7 @@ " -f, --force force overwrite of output file and compress links", " -h, --help give this help", /* -k, --pkzip force output in pkzip format */ + " -k, --keep keep (don't delete) input files", " -l, --list list compressed file contents", " -L, --license display software license", #ifdef UNDOCUMENTED @@ -423,7 +427,7 @@ z_suffix = Z_SUFFIX; z_len = strlen(z_suffix); - while ((optc = getopt_long (argc, argv, "ab:cdfhH?lLmMnNqrS:tvVZ123456789", + while ((optc = getopt_long (argc, argv, "ab:cdfhH?klLmMnNqrS:tvVZ123456789", longopts, (int *)0)) != -1) { switch (optc) { case 'a': @@ -446,6 +450,8 @@ force++; break; case 'h': case 'H': help(); do_exit(OK); break; + case 'k': + remove_ifname = 0; break; case 'l': list = decompress = to_stdout = 1; break; case 'L': @@ -825,7 +831,7 @@ if (!to_stdout) { sigset_t oldset; - int unlink_errno; + int unlink_errno = 0; copy_stat (&istat); if (close (ofd) != 0) @@ -833,7 +839,8 @@ sigprocmask (SIG_BLOCK, &caught_signals, &oldset); remove_ofname_fd = -1; - unlink_errno = xunlink (ifname) == 0 ? 0 : errno; + if (remove_ifname) + unlink_errno = xunlink (ifname) == 0 ? 0 : errno; sigprocmask (SIG_SETMASK, &oldset, NULL); if (unlink_errno) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 02:03:35 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 41C9316A468; Wed, 6 Jun 2007 02:03:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 21E0B13C46A; Wed, 6 Jun 2007 02:03:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5623YoO043633; Wed, 6 Jun 2007 02:03:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5623YN0043629; Wed, 6 Jun 2007 02:03:34 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 02:03:34 GMT From: Edwin Groothuis Message-Id: <200706060203.l5623YN0043629@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org Cc: Subject: Re: ports/113397: [PATCH]: archivers/gzip(1) support for -k option as used by bzip2(1) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 02:03:35 -0000 Synopsis: [PATCH]: archivers/gzip(1) support for -k option as used by bzip2(1) Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 02:03:34 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113397 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 03:30:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B95AF16A400 for ; Wed, 6 Jun 2007 03:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6633713C43E for ; Wed, 6 Jun 2007 03:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l563U9cN048076 for ; Wed, 6 Jun 2007 03:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l563U9x5048075; Wed, 6 Jun 2007 03:30:09 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 03:30:09 GMT Message-Id: <200706060330.l563U9x5048075@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: James Bailie Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 03:30:09 -0000 The following reply was made to PR ports/113363; it has been noted by GNATS. From: James Bailie To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install Date: Tue, 05 Jun 2007 23:25:39 -0400 Edwin Groothuis wrote: > Please note that PR ports/113363 has just been submitted. I have submitted a diff to fix via follow-up mail. Please commit. -- James Bailie http://www.mammothcheese.ca From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 03:47:51 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1195F16A468; Wed, 6 Jun 2007 03:47:51 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DF49E13C46E; Wed, 6 Jun 2007 03:47:50 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from freefall.freebsd.org (maho@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l563loMT049614; Wed, 6 Jun 2007 03:47:50 GMT (envelope-from maho@freefall.freebsd.org) Received: (from maho@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l563lott049610; Wed, 6 Jun 2007 03:47:50 GMT (envelope-from maho) Date: Wed, 6 Jun 2007 03:47:50 GMT From: Maho Nakata Message-Id: <200706060347.l563lott049610@freefall.freebsd.org> To: maho@FreeBSD.org, maho@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113144: print/ghostscript-gnu dumps core with several output drivers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 03:47:51 -0000 Synopsis: print/ghostscript-gnu dumps core with several output drivers Responsible-Changed-From-To: maho->freebsd-ports-bugs Responsible-Changed-By: maho Responsible-Changed-When: Wed Jun 6 03:47:27 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113144 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 04:40:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4671416A400 for ; Wed, 6 Jun 2007 04:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 205ED13C465 for ; Wed, 6 Jun 2007 04:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l564e8HE053081 for ; Wed, 6 Jun 2007 04:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l564e8JJ053078; Wed, 6 Jun 2007 04:40:08 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 04:40:08 GMT Message-Id: <200706060440.l564e8JJ053078@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tsurutani Naoki Cc: Subject: Re: ports/112876: audio/xmcd - compile problems after xorg 7.2 upgrade (might be not related) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 04:40:09 -0000 The following reply was made to PR ports/112876; it has been noted by GNATS. From: Tsurutani Naoki To: bug-followup@FreeBSD.org, edwin@mavetju.org, ports@FreeBSD.org Cc: Subject: Re: ports/112876: audio/xmcd - compile problems after xorg 7.2 upgrade (might be not related) Date: Wed, 06 Jun 2007 13:31:30 +0900 I'm very sorry, for the patch i sent was wrong in the path of the last file. Add "files/" at the top. --- Tsurutani Naoki turutani@scphys.kyoto-u.ac.jp From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 05:00:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ECF6916A469 for ; Wed, 6 Jun 2007 05:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C9F3313C469 for ; Wed, 6 Jun 2007 05:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56509sf053681 for ; Wed, 6 Jun 2007 05:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56509bR053680; Wed, 6 Jun 2007 05:00:09 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 05:00:09 GMT Resent-Message-Id: <200706060500.l56509bR053680@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Conrad J. Sabatier" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C098116A41F for ; Wed, 6 Jun 2007 04:59:07 +0000 (UTC) (envelope-from conrads@serene.no-ip.org) Received: from eastrmmtao105.cox.net (eastrmmtao105.cox.net [68.230.240.47]) by mx1.freebsd.org (Postfix) with ESMTP id 549BF13C465 for ; Wed, 6 Jun 2007 04:59:07 +0000 (UTC) (envelope-from conrads@serene.no-ip.org) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao105.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20070606045907.CINS8837.eastrmmtao105.cox.net@eastrmimpo01.cox.net> for ; Wed, 6 Jun 2007 00:59:07 -0400 Received: from serene.no-ip.org ([72.200.17.85]) by eastrmimpo01.cox.net with bizsmtp id 84yf1X00F1q7YRk0000000; Wed, 06 Jun 2007 00:59:05 -0400 Received: from serene.no-ip.org (localhost [127.0.0.1]) by serene.no-ip.org (8.14.1/8.14.1) with ESMTP id l564wG2U080494 for ; Tue, 5 Jun 2007 23:58:16 -0500 (CDT) (envelope-from conrads@serene.no-ip.org) Received: (from root@localhost) by serene.no-ip.org (8.14.1/8.14.1/Submit) id l564wBl5080358; Tue, 5 Jun 2007 23:58:11 -0500 (CDT) (envelope-from conrads) Message-Id: <200706060458.l564wBl5080358@serene.no-ip.org> Date: Tue, 5 Jun 2007 23:58:11 -0500 (CDT) From: "Conrad J. Sabatier" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113400: games/gnuchess -- fix for broken compile under gcc 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Conrad J. Sabatier" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 05:00:10 -0000 >Number: 113400 >Category: ports >Synopsis: games/gnuchess -- fix for broken compile under gcc 4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 05:00:08 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Conrad J. Sabatier >Release: FreeBSD 7.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD serene.no-ip.org 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Sun Jun 3 18:07:34 CDT 2007 conrads@serene.no-ip.org:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: Fix a show-stopper in building under gcc 4.2 (static declaration following non-static) >How-To-Repeat: N/A >Fix: Patch below --- gnuchess.diff begins here --- diff -urN --exclude=CVS gnuchess.orig/files/patch-input.c gnuchess/files/patch-input.c --- gnuchess.orig/files/patch-input.c Wed Dec 31 18:00:00 1969 +++ gnuchess/files/patch-input.c Tue Jun 5 23:35:32 2007 @@ -0,0 +1,11 @@ +--- src/input.c.orig Tue Jun 5 23:34:06 2007 ++++ src/input.c Tue Jun 5 23:34:14 2007 +@@ -92,7 +92,7 @@ + fgets(inputstr, MAXSTR, stdin); + } + +-static pthread_t input_thread; ++pthread_t input_thread; + + /* Mutex and condition variable for thread communication */ + --- gnuchess.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 05:31:31 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5065816A468; Wed, 6 Jun 2007 05:31:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2D55613C44B; Wed, 6 Jun 2007 05:31:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l565VUhx056030; Wed, 6 Jun 2007 05:31:30 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l565VTZD056026; Wed, 6 Jun 2007 05:31:29 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 05:31:29 GMT From: Martin Wilke Message-Id: <200706060531.l565VTZD056026@freefall.freebsd.org> To: matt@efs.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113069: [PATCH] net/bounce: add new -d option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 05:31:31 -0000 Synopsis: [PATCH] net/bounce: add new -d option Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 05:31:29 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113069 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 06:00:22 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2EA8A16A400 for ; Wed, 6 Jun 2007 06:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CF7FE13C469 for ; Wed, 6 Jun 2007 06:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5660LgY056946 for ; Wed, 6 Jun 2007 06:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5660LTd056945; Wed, 6 Jun 2007 06:00:21 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 06:00:21 GMT Message-Id: <200706060600.l5660LTd056945@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Nils Vogels Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nils Vogels List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 06:00:22 -0000 The following reply was made to PR ports/112522; it has been noted by GNATS. From: Nils Vogels To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin Date: Wed, 06 Jun 2007 07:37:10 +0200 Edwin Groothuis wrote on 8-5-2007 23:27: > Maintainer of mail/razor-agents, > > Please note that PR ports/112522 has just been submitted. > My mail carrying the approval must have gotten lost in transit. No problems with this patch at all! Greets, Nils From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 06:40:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58A1016A41F for ; Wed, 6 Jun 2007 06:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3648D13C45A for ; Wed, 6 Jun 2007 06:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l566e26Z059383 for ; Wed, 6 Jun 2007 06:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l566e1hx059382; Wed, 6 Jun 2007 06:40:02 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 06:40:02 GMT Resent-Message-Id: <200706060640.l566e1hx059382@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Mark D. Foster" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55FCA16A41F for ; Wed, 6 Jun 2007 06:39:27 +0000 (UTC) (envelope-from mark@foster.cc) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [63.240.77.84]) by mx1.freebsd.org (Postfix) with ESMTP id 1D81E13C483 for ; Wed, 6 Jun 2007 06:39:27 +0000 (UTC) (envelope-from mark@foster.cc) Received: from fosgate.dyndns.org ([71.227.137.90]) by comcast.net (sccrmhc14) with ESMTP id <2007060606392501400de2gee>; Wed, 6 Jun 2007 06:39:26 +0000 Received: from localhost (localhost [127.0.0.1]) by fosgate.dyndns.org (Postfix) with ESMTP id 8444539836 for ; Tue, 5 Jun 2007 23:37:39 -0700 (PDT) Received: from fosgate.dyndns.org ([127.0.0.1]) by localhost (sonar.foster.dmz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bdFpfLCMlCx6 for ; Tue, 5 Jun 2007 23:37:34 -0700 (PDT) Received: from [192.168.1.9] (monk.foster.dmz [192.168.1.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by fosgate.dyndns.org (Postfix) with ESMTP id F0F7F39835 for ; Tue, 5 Jun 2007 23:37:33 -0700 (PDT) Message-Id: <4666568F.9040605@foster.cc> Date: Tue, 05 Jun 2007 23:39:11 -0700 From: "Mark D. Foster" To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/113401: Update port: security/xca to version 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 06:40:02 -0000 >Number: 113401 >Category: ports >Synopsis: Update port: security/xca to version 0.6.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 06:40:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Mark Foster >Release: FreeBSD 6.2-RELEASE i386 >Organization: Credentia >Environment: System: FreeBSD fred.dyn.portseattle.org 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 10:40:27 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: The patch shown below updates security/xca to version 0.6.3 Note that 3 new patch files appear in files/ patch-doc-Makefile patch-doc-xca.html patch-local.h The change also grants maintainership to myself, as former maintainer has not responded to ports/109045 for months. This update obviates the need to fix ports/109045. >How-To-Repeat: n/a >Fix: --- xca.patch begins here --- diff -Pru ./Makefile ../xca/Makefile --- ./Makefile Wed May 30 13:30:09 2007 +++ ../xca/Makefile Tue Jun 5 23:12:48 2007 @@ -6,43 +6,45 @@ # PORTNAME= xca -PORTVERSION= 0.5.1 +PORTVERSION= 0.6.3 PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= curly@e-card.bg +MAINTAINER= mark@foster.cc COMMENT= Graphical certification authority -LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4 - USE_GMAKE= yes USE_OPENSSL= yes -USE_QT_VER= 3 +USE_QT_VER= 4 +CC?= gcc +CXX?= g++ .include -.if ${OSVERSION} >= 700019 -BROKEN= Does not compile on FreeBSD >= 7.0 -.endif +#.if ${OSVERSION} >= 700019 +#BROKEN= Does not compile on FreeBSD >= 7.0 +#.endif post-patch: - @echo "CPPFLAGS= -I. -I.. -I${OPENSSLINC} ${QTCPPFLAGS} -I${LOCALBASE}/include/db4" > ${WRKSRC}/Local.mak - @echo "CFLAGS= ${CFLAGS}" >> ${WRKSRC}/Local.mak - @echo "LDFLAGS= ${LDFLAGS}" >> ${WRKSRC}/Local.mak - @echo "LIBS= ${QTCFGLIBS} -lqt-mt -L${OPENSSLLIB} -lcrypto -ldb4_cxx ${PTHREAD_LIBS}" >> ${WRKSRC}/Local.mak + @echo "CPPFLAGS=-I. -I.. -I${WRKSRC}/ui -I/usr/X11R6/include -I${QT_PREFIX}/include/Qt" > ${WRKSRC}/Local.mak + @echo "CFLAGS= ${CFLAGS} -Wall -ggdb" >> ${WRKSRC}/Local.mak + @echo "LDFLAGS= ${LDFLAGS} -L${LOCALBASE}/lib" >> ${WRKSRC}/Local.mak + @echo "LIBS= -lQtGui -lc_r -lcrypto" >> ${WRKSRC}/Local.mak @echo "MOC=${MOC}" >> ${WRKSRC}/Local.mak - @echo "UIC=${QT_PREFIX}/bin/uic" >> ${WRKSRC}/Local.mak - @echo "CC=${CXX}" >> ${WRKSRC}/Local.mak + @echo "UIC=${QT_PREFIX}/bin/uic-qt4" >> ${WRKSRC}/Local.mak + @echo "RCC=${LOCALBASE}/bin/rcc" >> ${WRKSRC}/Local.mak + @echo "LRELEASE=${LOCALBASE}/bin/lrelease-qt4" >> ${WRKSRC}/Local.mak + @echo "CC=${CC}" >> ${WRKSRC}/Local.mak @echo "LD=${LD}" >> ${WRKSRC}/Local.mak @echo "STRIP=${STRIP_CMD}" >> ${WRKSRC}/Local.mak @echo "prefix=${PREFIX}" >> ${WRKSRC}/Local.mak @echo "etc=${PREFIX}/etc/xca" >> ${WRKSRC}/Local.mak @echo "basedir=" >> ${WRKSRC}/Local.mak - @${REINPLACE_CMD} -E -e 's|QFont\ font\(\ font\(\)\ \)|QFont font|' ${WRKSRC}/widgets/clicklabel.cpp - @${REINPLACE_CMD} -E -e 's|(install[\ \:]+xca\.1)\.gz|\1|g' ${WRKSRC}/doc/Makefile + @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/lib/import.cpp MAN1= xca.1 +MANCOMPRESSED= yes .include diff -Pru ./distinfo ../xca/distinfo --- ./distinfo Mon Jan 23 17:03:32 2006 +++ ../xca/distinfo Mon Jun 4 11:54:56 2007 @@ -1,3 +1,3 @@ -MD5 (xca-0.5.1.tar.gz) = 24e0289c189b8db2f1f15a4ddac1b1c3 -SHA256 (xca-0.5.1.tar.gz) = cf51de5760c6d34b17b379c23f17699ee597a3264b9bed0f165bd302726757cb -SIZE (xca-0.5.1.tar.gz) = 287025 +MD5 (xca-0.6.3.tar.gz) = 8e0c2f8fbd01451acb841a3fb99ca399 +SHA256 (xca-0.6.3.tar.gz) = 032e64ac3bbef15c3ddf58278593ef02d52680b183c0a2a0bceb8f887a90fc7b +SIZE (xca-0.6.3.tar.gz) = 260070 diff -Pru ./files/patch-doc-Makefile ../xca/files/patch-doc-Makefile --- ./files/patch-doc-Makefile Wed Dec 31 16:00:00 1969 +++ ../xca/files/patch-doc-Makefile Tue Jun 5 22:54:23 2007 @@ -0,0 +1,29 @@ +--- doc/Makefile.orig Tue Jun 5 22:16:31 2007 ++++ doc/Makefile Tue Jun 5 22:54:04 2007 +@@ -5,14 +5,11 @@ + DELFILES=*.html xca.1.gz + all: doc + mandir=man +-doc: xca.1.gz xca.html ++doc: xca.1.gz + + xca.1.gz: xca.1 + gzip -9 <$^ >$@ + +-xca.html: xca.sgml +- $(LINUXDOC) -B html $< +- + install: xca.1.gz xca.html + install -m 755 -d $(destdir)$(prefix)/share/xca \ + $(destdir)$(prefix)/$(mandir)/man1 +@@ -21,10 +18,6 @@ + + clean: + $(RM) xca.1.gz +- +-app: xca.html +- mkdir -p $(APPDIR)/Resources +- install -m 644 xca*.html $(APPDIR)/Resources + + include $(TOPDIR)/Local.mak + diff -Pru ./files/patch-doc-xca.html ../xca/files/patch-doc-xca.html --- ./files/patch-doc-xca.html Wed Dec 31 16:00:00 1969 +++ ../xca/files/patch-doc-xca.html Tue Jun 5 23:02:20 2007 @@ -0,0 +1,5 @@ +--- doc/xca.html Tue Jun 5 22:44:01 2007 ++++ doc/xca.html Tue Jun 5 22:44:35 2007 +@@ -0,0 +1,2 @@ ++The documentation for XCA can be viewed online at: ++http://xca.sourceforge.net/ diff -Pru ./files/patch-local.h ../xca/files/patch-local.h --- ./files/patch-local.h Wed Dec 31 16:00:00 1969 +++ ../xca/files/patch-local.h Tue Jun 5 12:14:48 2007 @@ -0,0 +1,6 @@ +--- local.h Tue Jun 5 12:05:47 2007 ++++ local.h Tue Jun 5 07:40:06 2007 +@@ -0,0 +1,3 @@ ++#define PREFIX "/usr/local" ++#define ETC "/usr/local/etc/xca" ++#define VER "0.6.3" diff -Pru ./pkg-plist ../xca/pkg-plist --- ./pkg-plist Wed May 30 13:30:09 2007 +++ ../xca/pkg-plist Tue Jun 5 23:19:30 2007 @@ -1,39 +1,14 @@ @comment $FreeBSD: ports/security/xca/pkg-plist,v 1.6 2007/05/19 20:22:56 flz Exp $ bin/xca -share/applications/xca.desktop -share/pixmaps/xca.xpm +share/xca/CA.xca +share/xca/HTTPS_client.xca +share/xca/HTTPS_server.xca share/xca/aia.txt -share/xca/bigcert.png -share/xca/bigcrl.png -share/xca/bigcsr.png -share/xca/bigkey.png -share/xca/bigtemp.png -share/xca/crl.png share/xca/dn.txt share/xca/eku.txt -share/xca/halfkey.png -share/xca/invalidcert.png -share/xca/invalidcertkey.png -share/xca/key.png -share/xca/netscape.png share/xca/oids.txt -share/xca/req.png -share/xca/reqkey.png -share/xca/revoked.png -share/xca/spki.png -share/xca/template.png -share/xca/validcert.png -share/xca/validcertkey.png -share/xca/xca-1.html -share/xca/xca-10.html -share/xca/xca-2.html -share/xca/xca-3.html -share/xca/xca-4.html -share/xca/xca-5.html -share/xca/xca-6.html -share/xca/xca-7.html -share/xca/xca-8.html -share/xca/xca-9.html +share/xca/xca_de.qm +share/xca/xca_es.qm share/xca/xca.html +share/applications/xca.desktop @dirrm share/xca -@dirrmtry share/applications --- xca.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 06:40:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39A4116A46C; Wed, 6 Jun 2007 06:40:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0C9AD13C46A; Wed, 6 Jun 2007 06:40:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l566e8Jw059515; Wed, 6 Jun 2007 06:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l566e87t059511; Wed, 6 Jun 2007 06:40:08 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 06:40:08 GMT From: Edwin Groothuis Message-Id: <200706060640.l566e87t059511@freefall.freebsd.org> To: mark@foster.cc, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113401: Update port: security/xca to version 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 06:40:09 -0000 Synopsis: Update port: security/xca to version 0.6.3 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jun 6 06:40:08 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113401 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 06:50:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2A2116A469 for ; Wed, 6 Jun 2007 06:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 89F2113C483 for ; Wed, 6 Jun 2007 06:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l566o26j059837 for ; Wed, 6 Jun 2007 06:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l566o2I4059832; Wed, 6 Jun 2007 06:50:02 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 06:50:02 GMT Resent-Message-Id: <200706060650.l566o2I4059832@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, CHAO Shin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E13316A41F for ; Wed, 6 Jun 2007 06:47:31 +0000 (UTC) (envelope-from quakelee@tarsier.delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 1931713C4C2 for ; Wed, 6 Jun 2007 06:47:30 +0000 (UTC) (envelope-from quakelee@tarsier.delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id A9A97EB7B99 for ; Wed, 6 Jun 2007 14:47:29 +0800 (CST) Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id 6AX2EaSTZXdj for ; Wed, 6 Jun 2007 14:47:24 +0800 (CST) Received: from tarsier.delphij.net (tarsier.geekcn.org [210.51.165.229]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 2B1B8EB7B89 for ; Wed, 6 Jun 2007 14:47:23 +0800 (CST) Received: from tarsier.delphij.net (localhost [127.0.0.1]) by tarsier.delphij.net (8.13.8/8.13.8) with ESMTP id l566lMVZ034382 for ; Wed, 6 Jun 2007 14:47:22 +0800 (CST) (envelope-from quakelee@tarsier.delphij.net) Received: (from quakelee@localhost) by tarsier.delphij.net (8.13.8/8.13.8/Submit) id l566lHaX034380; Wed, 6 Jun 2007 14:47:17 +0800 (CST) (envelope-from quakelee) Message-Id: <200706060647.l566lHaX034380@tarsier.delphij.net> Date: Wed, 6 Jun 2007 14:47:17 +0800 (CST) From: CHAO Shin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113402: [PATCH] devel/py-pyutil can't build on tinderbox X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: CHAO Shin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 06:50:02 -0000 >Number: 113402 >Category: ports >Synopsis: [PATCH] devel/py-pyutil can't build on tinderbox >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 06:50:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: CHAO Shin >Release: FreeBSD 7.0-current i386 >Organization: The FreeBSD Simplified Chinese Project >Environment: System: FreeBSD portyard.sysdept.sina.com.cn 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Thu Feb 1 19:02:06 CST 2007 root@portyard.sysdept.sina.com.cn:/usr/obj/usr/src/sys/GX270 i386 >Description: the egg can't installed on tinderbox. Just work around it. >How-To-Repeat: >Fix: --- patch-py-pyutil.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/py-pyutil/Makefile,v retrieving revision 1.1 diff -u -p -r1.1 Makefile --- Makefile 5 Jun 2007 07:12:31 -0000 1.1 +++ Makefile 6 Jun 2007 06:40:16 -0000 @@ -23,6 +23,7 @@ EASY_INSTALL_CMD?= easy_install-${PYTHON USE_PYTHON= 2.4 USE_PYDISTUTILS= yes +MANUAL_PACKAGE_BUILD=Doesn't build in tinderbox environment PYUTIL_EGG= ${PORTNAME}-${PORTVERSION}-py${PYTHON_VER}-${OPSYS:L}-${OSRELEASE}-${ARCH}.egg --- patch-py-pyutil.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 06:50:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D367B16A46C; Wed, 6 Jun 2007 06:50:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AC9C313C455; Wed, 6 Jun 2007 06:50:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l566oBiE059977; Wed, 6 Jun 2007 06:50:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l566oBHv059973; Wed, 6 Jun 2007 06:50:11 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 06:50:11 GMT From: Edwin Groothuis Message-Id: <200706060650.l566oBHv059973@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113402: [PATCH] devel/py-pyutil can't build on tinderbox X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 06:50:11 -0000 Synopsis: [PATCH] devel/py-pyutil can't build on tinderbox Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 06:50:11 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113402 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 07:08:42 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E93D516A46B; Wed, 6 Jun 2007 07:08:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C171713C4B9; Wed, 6 Jun 2007 07:08:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5678gLC060646; Wed, 6 Jun 2007 07:08:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5678gCH060642; Wed, 6 Jun 2007 07:08:42 GMT (envelope-from linimon) Date: Wed, 6 Jun 2007 07:08:42 GMT From: Mark Linimon Message-Id: <200706060708.l5678gCH060642@freefall.freebsd.org> To: jimmy@mammothcheese.ca, ino-news@spotteswoode.dnsalias.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 07:08:43 -0000 Synopsis: lang/munger borked, doesn't install State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Wed Jun 6 07:08:24 UTC 2007 State-Changed-Why: Maintainer patch now included. http://www.freebsd.org/cgi/query-pr.cgi?pr=113363 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 07:46:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5207D16A468; Wed, 6 Jun 2007 07:46:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 29F3813C457; Wed, 6 Jun 2007 07:46:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l567kEcR065291; Wed, 6 Jun 2007 07:46:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l567k9V7065287; Wed, 6 Jun 2007 07:46:09 GMT (envelope-from linimon) Date: Wed, 6 Jun 2007 07:46:09 GMT From: Mark Linimon Message-Id: <200706060746.l567k9V7065287@freefall.freebsd.org> To: filippo.natali@gmail.com, nakaji@jp.freebsd.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112756: www/plone update to 2.5.3 for security fix of XSS vulnerabilities X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 07:46:14 -0000 Synopsis: www/plone update to 2.5.3 for security fix of XSS vulnerabilities State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Wed Jun 6 07:46:00 UTC 2007 State-Changed-Why: Maintainer was reset. http://www.freebsd.org/cgi/query-pr.cgi?pr=112756 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 07:56:37 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5EE9E16A469; Wed, 6 Jun 2007 07:56:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 336E513C45B; Wed, 6 Jun 2007 07:56:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l567ub6s065811; Wed, 6 Jun 2007 07:56:37 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l567uaiY065807; Wed, 6 Jun 2007 07:56:36 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 07:56:36 GMT From: Martin Wilke Message-Id: <200706060756.l567uaiY065807@freefall.freebsd.org> To: jimmy@mammothcheese.ca, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113363: lang/munger borked, doesn't install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 07:56:37 -0000 Synopsis: lang/munger borked, doesn't install Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 07:56:36 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113363 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 08:48:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B52116A41F; Wed, 6 Jun 2007 08:48:20 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 738C413C469; Wed, 6 Jun 2007 08:48:20 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from freefall.freebsd.org (gabor@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l568mKEs069811; Wed, 6 Jun 2007 08:48:20 GMT (envelope-from gabor@freefall.freebsd.org) Received: (from gabor@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l568mKf6069807; Wed, 6 Jun 2007 08:48:20 GMT (envelope-from gabor) Date: Wed, 6 Jun 2007 08:48:20 GMT From: Gabor Kovesdan Message-Id: <200706060848.l568mKf6069807@freefall.freebsd.org> To: filippo.natali@gmail.com, gabor@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org Cc: Subject: Re: ports/112756: www/plone update to 2.5.3 for security fix of XSS vulnerabilities X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 08:48:20 -0000 Synopsis: www/plone update to 2.5.3 for security fix of XSS vulnerabilities Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: gabor Responsible-Changed-When: Wed Jun 6 08:48:04 UTC 2007 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=112756 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 09:40:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 765AB16A41F for ; Wed, 6 Jun 2007 09:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 658BC13C483 for ; Wed, 6 Jun 2007 09:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l569e8K3072638 for ; Wed, 6 Jun 2007 09:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l569e8t9072636; Wed, 6 Jun 2007 09:40:08 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 09:40:08 GMT Message-Id: <200706060940.l569e8t9072636@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jonathan Weiss Cc: Subject: Re: ports/112991: [PATCH] devel/rubygem-rake: update to 0.7.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonathan Weiss List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 09:40:09 -0000 The following reply was made to PR ports/112991; it has been noted by GNATS. From: Jonathan Weiss To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112991: [PATCH] devel/rubygem-rake: update to 0.7.3 Date: Wed, 06 Jun 2007 11:07:55 +0200 Edwin Groothuis wrote: > Maintainer of devel/rubygem-rake, > > Please note that PR ports/112991 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/112991 > this patch is fine with me Jonathan -- Jonathan Weiss http://blog.innerewut.de From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:03:36 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 339A616A41F; Wed, 6 Jun 2007 11:03:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0D04D13C45A; Wed, 6 Jun 2007 11:03:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B3Zag078202; Wed, 6 Jun 2007 11:03:35 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B3ZeY078198; Wed, 6 Jun 2007 11:03:35 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:03:35 GMT From: Martin Wilke Message-Id: <200706061103.l56B3ZeY078198@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113354: [MAINTAINER] multimedia/quodlibet: Update to 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:03:36 -0000 Synopsis: [MAINTAINER] multimedia/quodlibet: Update to 1.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:03:35 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113354 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:03:42 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6146916A400; Wed, 6 Jun 2007 11:03:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3A62A13C45B; Wed, 6 Jun 2007 11:03:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B3fFB078267; Wed, 6 Jun 2007 11:03:41 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B3fMD078263; Wed, 6 Jun 2007 11:03:41 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:03:41 GMT From: Martin Wilke Message-Id: <200706061103.l56B3fMD078263@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113357: [NEW PORT] www/p5-HTML-FillInForm-ForceUTF8: FillInForm with utf8 encoding X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:03:42 -0000 Synopsis: [NEW PORT] www/p5-HTML-FillInForm-ForceUTF8: FillInForm with utf8 encoding Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:03:41 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113357 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:03:48 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2024116A473; Wed, 6 Jun 2007 11:03:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ECBA513C46C; Wed, 6 Jun 2007 11:03:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B3lMa078332; Wed, 6 Jun 2007 11:03:47 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B3l8w078328; Wed, 6 Jun 2007 11:03:47 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:03:47 GMT From: Martin Wilke Message-Id: <200706061103.l56B3l8w078328@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113391: [Maintainer-update]: games/tmw update to 0.0.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:03:48 -0000 Synopsis: [Maintainer-update]: games/tmw update to 0.0.23 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:03:47 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113391 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:04:00 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 632FF16A468; Wed, 6 Jun 2007 11:04:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3C7A213C455; Wed, 6 Jun 2007 11:04:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B3xZi078462; Wed, 6 Jun 2007 11:03:59 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B3xao078458; Wed, 6 Jun 2007 11:03:59 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:03:59 GMT From: Martin Wilke Message-Id: <200706061103.l56B3xao078458@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113330: japanese/typist: don't make use of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:04:00 -0000 Synopsis: japanese/typist: don't make use of sgtty Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:03:59 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113330 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:04:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E032616A421; Wed, 6 Jun 2007 11:04:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B955C13C45A; Wed, 6 Jun 2007 11:04:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B45ZQ078527; Wed, 6 Jun 2007 11:04:05 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B45vJ078523; Wed, 6 Jun 2007 11:04:05 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:04:05 GMT From: Martin Wilke Message-Id: <200706061104.l56B45vJ078523@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113331: japanese/xvi-euc and japanese/xvi-sjis: remove sgtty >bits X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:04:06 -0000 Synopsis: japanese/xvi-euc and japanese/xvi-sjis: remove sgtty >bits Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:04:05 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113331 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:06:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56FBF16A46C; Wed, 6 Jun 2007 11:06:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2FC0C13C465; Wed, 6 Jun 2007 11:06:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B69Ol078626; Wed, 6 Jun 2007 11:06:09 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B69TV078622; Wed, 6 Jun 2007 11:06:09 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:06:09 GMT From: Martin Wilke Message-Id: <200706061106.l56B69TV078622@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113319: [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View for Email X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:06:09 -0000 Synopsis: [NEW PORT] www/p5-Catalyst-View-Email: Catalyst View for Email Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:06:08 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113319 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:06:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A75816A400; Wed, 6 Jun 2007 11:06:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 541E513C45E; Wed, 6 Jun 2007 11:06:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B6FDw078691; Wed, 6 Jun 2007 11:06:15 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B6FhO078687; Wed, 6 Jun 2007 11:06:15 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:06:15 GMT From: Martin Wilke Message-Id: <200706061106.l56B6FhO078687@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113326: japanese/elvis: use termios instead of sgtty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:06:15 -0000 Synopsis: japanese/elvis: use termios instead of sgtty Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:06:14 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113326 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:06:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 817BB16A400; Wed, 6 Jun 2007 11:06:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5316013C46C; Wed, 6 Jun 2007 11:06:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B6Lf3078756; Wed, 6 Jun 2007 11:06:21 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B6Lpc078752; Wed, 6 Jun 2007 11:06:21 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:06:21 GMT From: Martin Wilke Message-Id: <200706061106.l56B6Lpc078752@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113328: japanese/ircII: don't make it include sgtty.h X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:06:21 -0000 Synopsis: japanese/ircII: don't make it include sgtty.h Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:06:20 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113328 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:06:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B03316A421; Wed, 6 Jun 2007 11:06:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 541A913C487; Wed, 6 Jun 2007 11:06:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56B6RPd078821; Wed, 6 Jun 2007 11:06:27 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56B6RSm078817; Wed, 6 Jun 2007 11:06:27 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:06:27 GMT From: Martin Wilke Message-Id: <200706061106.l56B6RSm078817@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113159: Unbreak x11-toolkits/gtkada-gcc port after transition to X.Org 7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:06:27 -0000 Synopsis: Unbreak x11-toolkits/gtkada-gcc port after transition to X.Org 7.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:06:26 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113159 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6892316A469 for ; Wed, 6 Jun 2007 11:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4869B13C45D for ; Wed, 6 Jun 2007 11:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK4sv079394 for ; Wed, 6 Jun 2007 11:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK4I6079393; Wed, 6 Jun 2007 11:20:04 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:04 GMT Resent-Message-Id: <200706061120.l56BK4I6079393@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9321916A469 for ; Wed, 6 Jun 2007 11:13:57 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id 2A44513C480 for ; Wed, 6 Jun 2007 11:13:56 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BDpB9036317 for ; Wed, 6 Jun 2007 15:13:51 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BDp0U036316; Wed, 6 Jun 2007 15:13:51 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061113.l56BDp0U036316@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:13:51 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113407: [Maintainer update:] security/p5-openxpki-client-cli X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:04 -0000 >Number: 113407 >Category: ports >Synopsis: [Maintainer update:] security/p5-openxpki-client-cli >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE amd64 >Organization: >Environment: System: FreeBSD panther.lan.cryptocom.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sat Sep 23 03:01:24 MSD 2006 root@panther.lan.cryptocom.ru:/usr/obj/usr/src/sys/PANTHER amd64 >Description: Regular update, maintainer address change >How-To-Repeat: >Fix: diff -ur security/p5-openxpki-client-cli/Makefile security/p5-openxpki-client-cli.new/Makefile --- security/p5-openxpki-client-cli/Makefile Sat Feb 3 20:16:22 2007 +++ security/p5-openxpki-client-cli.new/Makefile Wed Jun 6 12:32:05 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki-client-cli -PORTVERSION= 0.9.651 +PORTVERSION= 0.9.850 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openxpki @@ -14,7 +14,7 @@ DISTNAME= OpenXPKI-Client-CLI-${PORTVERSION} DIST_SUBDIR= openxpki -MAINTAINER= svysh@cryptocom.ru +MAINTAINER= svysh@pn.sinp.msu.ru COMMENT= Command line interface for local openxpki daemon BUILD_DEPENDS= \ diff -ur security/p5-openxpki-client-cli/distinfo security/p5-openxpki-client-cli.new/distinfo --- security/p5-openxpki-client-cli/distinfo Sat Feb 3 20:16:22 2007 +++ security/p5-openxpki-client-cli.new/distinfo Thu May 3 04:14:56 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/OpenXPKI-Client-CLI-0.9.651.tar.gz) = 72898bedaf7b8f161103078c399b7299 -SHA256 (openxpki/OpenXPKI-Client-CLI-0.9.651.tar.gz) = 831723d75768f5ba723caf43baa0bcf6e8a78edc5a545db6ef62a06135d12a1f -SIZE (openxpki/OpenXPKI-Client-CLI-0.9.651.tar.gz) = 10560 +MD5 (openxpki/OpenXPKI-Client-CLI-0.9.850.tar.gz) = 141504c69c319e9f95f307221464f353 +SHA256 (openxpki/OpenXPKI-Client-CLI-0.9.850.tar.gz) = 87cf935d3922607877af9285d0cb77ec6b86bddbff6aa4e7ba86fd3f360754a2 +SIZE (openxpki/OpenXPKI-Client-CLI-0.9.850.tar.gz) = 14733 diff -ur security/p5-openxpki-client-cli/pkg-descr security/p5-openxpki-client-cli.new/pkg-descr --- security/p5-openxpki-client-cli/pkg-descr Sat Oct 7 16:29:54 2006 +++ security/p5-openxpki-client-cli.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C10916A46B for ; Wed, 6 Jun 2007 11:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DD8A113C468 for ; Wed, 6 Jun 2007 11:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK46i079407 for ; Wed, 6 Jun 2007 11:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK4OJ079406; Wed, 6 Jun 2007 11:20:04 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:04 GMT Resent-Message-Id: <200706061120.l56BK4OJ079406@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EE9616A46B for ; Wed, 6 Jun 2007 11:14:12 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id 372A413C487 for ; Wed, 6 Jun 2007 11:14:11 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BE95E036370 for ; Wed, 6 Jun 2007 15:14:09 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BE9gn036369; Wed, 6 Jun 2007 15:14:09 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061114.l56BE9gn036369@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:14:09 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113408: [Maintainer update] security/p5-openxpki-client-html-mason X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:05 -0000 >Number: 113408 >Category: ports >Synopsis: [Maintainer update] security/p5-openxpki-client-html-mason >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD vivaldi.pn.sinp.msu.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Mar 18 21:19:16 MSK 2007 root@vivaldi.pn.sinp.msu.ru:/usr/obj/usr/src/sys/VIVALDI i386 >Description: Regular update >How-To-Repeat: >Fix: diff -ur security/p5-openxpki-client-html-mason/Makefile security/p5-openxpki-client-html-mason.new/Makefile --- security/p5-openxpki-client-html-mason/Makefile Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki-client-html-mason.new/Makefile Wed Jun 6 12:50:51 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki-client-html-mason -PORTVERSION= 0.9.783 +PORTVERSION= 0.9.876 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openxpki @@ -45,6 +45,9 @@ @${ECHO_MSG} "===> CGI scripts and htdocs for ${DISTNAME} installed in ${DATADIR}." @${ECHO_MSG} "================================================================================" @${ECHO_MSG} "" +.if !defined(BATCH) + @sleep 7 +.endif .endif .include diff -ur security/p5-openxpki-client-html-mason/distinfo security/p5-openxpki-client-html-mason.new/distinfo --- security/p5-openxpki-client-html-mason/distinfo Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki-client-html-mason.new/distinfo Fri May 11 18:13:42 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/OpenXPKI-Client-HTML-Mason-0.9.783.tar.gz) = 1e3bff111f021e2b742f5ffd4d9d6e15 -SHA256 (openxpki/OpenXPKI-Client-HTML-Mason-0.9.783.tar.gz) = d76d5fb53f2786d413833165575900b069fff97c962a5f15a4337306e70e3b21 -SIZE (openxpki/OpenXPKI-Client-HTML-Mason-0.9.783.tar.gz) = 105540 +MD5 (openxpki/OpenXPKI-Client-HTML-Mason-0.9.876.tar.gz) = 7de1910915baa7a12b85590e91406776 +SHA256 (openxpki/OpenXPKI-Client-HTML-Mason-0.9.876.tar.gz) = cbd5b9a69d970803531e8e022092090d8eaec8b5c016fdef0bdc7d1ea41d2d15 +SIZE (openxpki/OpenXPKI-Client-HTML-Mason-0.9.876.tar.gz) = 109029 diff -ur security/p5-openxpki-client-html-mason/pkg-descr security/p5-openxpki-client-html-mason.new/pkg-descr --- security/p5-openxpki-client-html-mason/pkg-descr Sat Oct 7 16:30:21 2006 +++ security/p5-openxpki-client-html-mason.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html diff -ur security/p5-openxpki-client-html-mason/pkg-plist security/p5-openxpki-client-html-mason.new/pkg-plist --- security/p5-openxpki-client-html-mason/pkg-plist Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki-client-html-mason.new/pkg-plist Fri May 11 18:14:24 2007 @@ -50,6 +50,7 @@ %%DATADIR%%/htdocs/lib/getsession.mhtml %%DATADIR%%/htdocs/lib/html/a.mhtml %%DATADIR%%/htdocs/lib/html/hidden.mhtml +%%DATADIR%%/htdocs/lib/html/hidden_reqargs.mhtml %%DATADIR%%/htdocs/lib/html/input.mhtml %%DATADIR%%/htdocs/lib/html/safe.mhtml %%DATADIR%%/htdocs/lib/html/select.mhtml >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8421916A484 for ; Wed, 6 Jun 2007 11:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 63B9313C455 for ; Wed, 6 Jun 2007 11:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK6Hh079420 for ; Wed, 6 Jun 2007 11:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK6aA079419; Wed, 6 Jun 2007 11:20:06 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:06 GMT Resent-Message-Id: <200706061120.l56BK6aA079419@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4CC6016A41F for ; Wed, 6 Jun 2007 11:14:30 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id D838313C4BA for ; Wed, 6 Jun 2007 11:14:29 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BEQsc036424 for ; Wed, 6 Jun 2007 15:14:26 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BEQCg036423; Wed, 6 Jun 2007 15:14:26 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061114.l56BEQCg036423@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:14:26 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113409: [Maintainer update:] security/p5-openxpki-client-scep X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:06 -0000 >Number: 113409 >Category: ports >Synopsis: [Maintainer update:] security/p5-openxpki-client-scep >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE amd64 >Organization: >Environment: System: FreeBSD panther.lan.cryptocom.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sat Sep 23 03:01:24 MSD 2006 root@panther.lan.cryptocom.ru:/usr/obj/usr/src/sys/PANTHER amd64 >Description: Regular update, maintainer address change >How-To-Repeat: >Fix: diff -ur security/p5-openxpki-client-scep/Makefile security/p5-openxpki-client-scep.new/Makefile --- security/p5-openxpki-client-scep/Makefile Sat Feb 3 20:16:22 2007 +++ security/p5-openxpki-client-scep.new/Makefile Wed Jun 6 12:32:26 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki-client-scep -PORTVERSION= 0.9.719 +PORTVERSION= 0.9.888 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openxpki @@ -14,7 +14,7 @@ DISTNAME= OpenXPKI-Client-SCEP-${PORTVERSION} DIST_SUBDIR= openxpki -MAINTAINER= svysh@cryptocom.ru +MAINTAINER= svysh@pn.sinp.msu.ru COMMENT= Client for SCEP requests to openxpki server BUILD_DEPENDS= \ diff -ur security/p5-openxpki-client-scep/distinfo security/p5-openxpki-client-scep.new/distinfo --- security/p5-openxpki-client-scep/distinfo Sat Feb 3 20:16:22 2007 +++ security/p5-openxpki-client-scep.new/distinfo Wed May 23 04:14:18 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/OpenXPKI-Client-SCEP-0.9.719.tar.gz) = 98cb52a65816663274ce6e5f217898e3 -SHA256 (openxpki/OpenXPKI-Client-SCEP-0.9.719.tar.gz) = 24f1b78e55106d95fb378a5a68912feabb665eb42b481ad9d078b9685c11fbdf -SIZE (openxpki/OpenXPKI-Client-SCEP-0.9.719.tar.gz) = 10974 +MD5 (openxpki/OpenXPKI-Client-SCEP-0.9.888.tar.gz) = 0bf54af858076e31a7d50ea53e28b234 +SHA256 (openxpki/OpenXPKI-Client-SCEP-0.9.888.tar.gz) = fbc87f09c12d0a2f231e53401dfc90c3d5b7becdc2b4f92464f26c1ec1b4e2f8 +SIZE (openxpki/OpenXPKI-Client-SCEP-0.9.888.tar.gz) = 11225 diff -ur security/p5-openxpki-client-scep/pkg-descr security/p5-openxpki-client-scep.new/pkg-descr --- security/p5-openxpki-client-scep/pkg-descr Sat Oct 7 16:30:55 2006 +++ security/p5-openxpki-client-scep.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F1EAE16A469 for ; Wed, 6 Jun 2007 11:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D147513C46E for ; Wed, 6 Jun 2007 11:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK6Ej079435 for ; Wed, 6 Jun 2007 11:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK68g079434; Wed, 6 Jun 2007 11:20:06 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:06 GMT Resent-Message-Id: <200706061120.l56BK68g079434@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4CD216A469 for ; Wed, 6 Jun 2007 11:14:46 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id 4DF2C13C448 for ; Wed, 6 Jun 2007 11:14:46 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BEiOa036480 for ; Wed, 6 Jun 2007 15:14:44 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BEi1j036479; Wed, 6 Jun 2007 15:14:44 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061114.l56BEi1j036479@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:14:44 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113410: [Maintainer update:] security/p5-openxpki-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:07 -0000 >Number: 113410 >Category: ports >Synopsis: [Maintainer update:] security/p5-openxpki-client >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE amd64 >Organization: >Environment: System: FreeBSD panther.lan.cryptocom.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sat Sep 23 03:01:24 MSD 2006 root@panther.lan.cryptocom.ru:/usr/obj/usr/src/sys/PANTHER amd64 >Description: Regular update, maintainer address change >How-To-Repeat: >Fix: diff -ur security/p5-openxpki-client/Makefile security/p5-openxpki-client.new/Makefile --- security/p5-openxpki-client/Makefile Sat Feb 3 20:16:22 2007 +++ security/p5-openxpki-client.new/Makefile Wed Jun 6 12:31:39 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki-client -PORTVERSION= 0.9.651 +PORTVERSION= 0.9.848 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openxpki @@ -14,7 +14,7 @@ DISTNAME= OpenXPKI-Client-${PORTVERSION} DIST_SUBDIR= openxpki -MAINTAINER= svysh@cryptocom.ru +MAINTAINER= svysh@pn.sinp.msu.ru COMMENT= Perl based trustcenter software for PKI: base class for actual clients BUILD_DEPENDS= \ diff -ur security/p5-openxpki-client/distinfo security/p5-openxpki-client.new/distinfo --- security/p5-openxpki-client/distinfo Sat Feb 3 20:16:22 2007 +++ security/p5-openxpki-client.new/distinfo Thu May 3 04:14:19 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/OpenXPKI-Client-0.9.651.tar.gz) = 6164dec5edacd287488a191c6ad761cc -SHA256 (openxpki/OpenXPKI-Client-0.9.651.tar.gz) = 10947964dde8dd3dfc39ef587b0ac14e92e148c2512a8a0d76d6d39ac6deaecc -SIZE (openxpki/OpenXPKI-Client-0.9.651.tar.gz) = 12562 +MD5 (openxpki/OpenXPKI-Client-0.9.848.tar.gz) = 8a290dd035f68cd5dc9f392a1d8f8fc0 +SHA256 (openxpki/OpenXPKI-Client-0.9.848.tar.gz) = 72f17c65de4780a0f86fb194b3f92203db746816eefcf44dbf28e2642ae498d1 +SIZE (openxpki/OpenXPKI-Client-0.9.848.tar.gz) = 13265 diff -ur security/p5-openxpki-client/pkg-descr security/p5-openxpki-client.new/pkg-descr --- security/p5-openxpki-client/pkg-descr Sat Oct 7 16:29:03 2006 +++ security/p5-openxpki-client.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A75F16A4CB for ; Wed, 6 Jun 2007 11:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6877913C480 for ; Wed, 6 Jun 2007 11:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK7Lu079454 for ; Wed, 6 Jun 2007 11:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK7Px079453; Wed, 6 Jun 2007 11:20:07 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:07 GMT Resent-Message-Id: <200706061120.l56BK7Px079453@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E64C16A41F for ; Wed, 6 Jun 2007 11:15:01 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id EAF6C13C489 for ; Wed, 6 Jun 2007 11:15:00 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BEvH5036533 for ; Wed, 6 Jun 2007 15:14:57 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BEvHO036532; Wed, 6 Jun 2007 15:14:57 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061114.l56BEvHO036532@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:14:57 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113411: [Maintainer update:] security/p5-openxpki-deployment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:07 -0000 >Number: 113411 >Category: ports >Synopsis: [Maintainer update:] security/p5-openxpki-deployment >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD vivaldi.pn.sinp.msu.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Mar 18 21:19:16 MSK 2007 root@vivaldi.pn.sinp.msu.ru:/usr/obj/usr/src/sys/VIVALDI i386 >Description: Regular update >How-To-Repeat: >Fix: diff -ur security/p5-openxpki-deployment/Makefile security/p5-openxpki-deployment.new/Makefile --- security/p5-openxpki-deployment/Makefile Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki-deployment.new/Makefile Wed Jun 6 13:14:03 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki-deployment -PORTVERSION= 0.9.781 +PORTVERSION= 0.9.913 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openxpki @@ -32,5 +32,18 @@ USE_RC_SUBR= openxpki.sh HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix ${PREFIX} + +post-install: + @${ECHO_MSG} "" + @${ECHO_MSG} "================================ A piece of advice ===================================" + @${ECHO_MSG} "===> Install your favorite database (enable utf-8 support if needed) and a web server." + @${ECHO_MSG} "===> Perform deployment procedure for openxpki in a regular way." + @${ECHO_MSG} "===> When asked for the name of the \"openxpki user\" answer \"openxpki\"," + @${ECHO_MSG} "===> and do not forget to add a line: \"User openxpki\" to the zone of your" + @${ECHO_MSG} "===> OpenXPI-related (virtual) web server in your Apache configuration file." + @${ECHO_MSG} "" +.if !defined(BATCH) + @sleep 9 +.endif .include diff -ur security/p5-openxpki-deployment/distinfo security/p5-openxpki-deployment.new/distinfo --- security/p5-openxpki-deployment/distinfo Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki-deployment.new/distinfo Tue Jun 5 16:58:47 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/openxpki-deployment-0.9.781.tar.gz) = faa7e7b66767aec467552c64a209c382 -SHA256 (openxpki/openxpki-deployment-0.9.781.tar.gz) = 194becd847c5ccc0f20ba8ff0b3cba9b3023e3d82d936d3f7bcb234d51aaf437 -SIZE (openxpki/openxpki-deployment-0.9.781.tar.gz) = 60322 +MD5 (openxpki/openxpki-deployment-0.9.913.tar.gz) = 6a9e8f7d232256997873723ff0329af1 +SHA256 (openxpki/openxpki-deployment-0.9.913.tar.gz) = 120885bbeb8ad8247ffdd516644a6238bf13e60433a367994686de3b8060263b +SIZE (openxpki/openxpki-deployment-0.9.913.tar.gz) = 62332 diff -ur security/p5-openxpki-deployment/pkg-descr security/p5-openxpki-deployment.new/pkg-descr --- security/p5-openxpki-deployment/pkg-descr Sat Oct 7 16:32:19 2006 +++ security/p5-openxpki-deployment.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html diff -ur security/p5-openxpki-deployment/pkg-plist security/p5-openxpki-deployment.new/pkg-plist --- security/p5-openxpki-deployment/pkg-plist Tue Apr 3 16:56:46 2007 +++ security/p5-openxpki-deployment.new/pkg-plist Tue Jun 5 16:59:32 2007 @@ -2,10 +2,12 @@ bin/openxpki-metaconf bin/openxpkiadm bin/openxpkictl +etc/rc.d/openxpki share/openxpki/templates/default/acl.xml share/openxpki/templates/default/auth.xml share/openxpki/templates/default/config.xml share/openxpki/templates/default/database.xml +share/openxpki/templates/default/ldappublic.xml share/openxpki/templates/default/log.conf share/openxpki/templates/default/log_database.xml share/openxpki/templates/default/notification.xml @@ -19,7 +21,6 @@ share/openxpki/templates/default/profile.xml share/openxpki/templates/default/token.xml share/openxpki/templates/default/workflow.xml -share/openxpki/templates/default/workflow_activity.xml share/openxpki/templates/default/workflow_activity_certificate_issuance.xml share/openxpki/templates/default/workflow_activity_certificate_ldap_publishing.xml share/openxpki/templates/default/workflow_activity_certificate_revocation_request.xml >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF08C16A468 for ; Wed, 6 Jun 2007 11:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C8C9113C487 for ; Wed, 6 Jun 2007 11:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK7Yn079473 for ; Wed, 6 Jun 2007 11:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK7OL079472; Wed, 6 Jun 2007 11:20:07 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:07 GMT Resent-Message-Id: <200706061120.l56BK7OL079472@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 261FE16A468 for ; Wed, 6 Jun 2007 11:15:22 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id 9AF9D13C487 for ; Wed, 6 Jun 2007 11:15:21 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BFJkR036591 for ; Wed, 6 Jun 2007 15:15:19 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BFJ4V036590; Wed, 6 Jun 2007 15:15:19 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061115.l56BFJ4V036590@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:15:19 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113412: [Maintainer update:] security/p5-openxpki-i18n X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:08 -0000 >Number: 113412 >Category: ports >Synopsis: [Maintainer update:] security/p5-openxpki-i18n >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD vivaldi.pn.sinp.msu.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Mar 18 21:19:16 MSK 2007 root@vivaldi.pn.sinp.msu.ru:/usr/obj/usr/src/sys/VIVALDI i386 >Description: Regular update >How-To-Repeat: >Fix: diff -ur security/p5-openxpki-i18n/Makefile security/p5-openxpki-i18n.new/Makefile --- security/p5-openxpki-i18n/Makefile Tue Apr 3 16:56:46 2007 +++ security/p5-openxpki-i18n.new/Makefile Tue Jun 5 17:00:32 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki-i18n -PORTVERSION= 0.9.789 +PORTVERSION= 0.9.909 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openxpki diff -ur security/p5-openxpki-i18n/distinfo security/p5-openxpki-i18n.new/distinfo --- security/p5-openxpki-i18n/distinfo Tue Apr 3 16:56:46 2007 +++ security/p5-openxpki-i18n.new/distinfo Tue Jun 5 16:59:51 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/openxpki-i18n-0.9.789.tar.gz) = d81ccf2e540aec2f5123c9b5cba71687 -SHA256 (openxpki/openxpki-i18n-0.9.789.tar.gz) = d2790cfb5fe36aa7cc9f1ebeaaa482b9caeafe8f8845684860848df73f6e3939 -SIZE (openxpki/openxpki-i18n-0.9.789.tar.gz) = 142685 +MD5 (openxpki/openxpki-i18n-0.9.909.tar.gz) = 92cdf90dd09406fdfdcada0750fada7e +SHA256 (openxpki/openxpki-i18n-0.9.909.tar.gz) = d3f37ba9cc487e91eb15bb69ed77fcccafecdeedfa29d13b3f32e8510b1739a1 +SIZE (openxpki/openxpki-i18n-0.9.909.tar.gz) = 108349 diff -ur security/p5-openxpki-i18n/pkg-descr security/p5-openxpki-i18n.new/pkg-descr --- security/p5-openxpki-i18n/pkg-descr Sat Oct 7 16:31:50 2006 +++ security/p5-openxpki-i18n.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:20:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 653C016A46D for ; Wed, 6 Jun 2007 11:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4380113C45E for ; Wed, 6 Jun 2007 11:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BK8np079492 for ; Wed, 6 Jun 2007 11:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BK8V8079491; Wed, 6 Jun 2007 11:20:08 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:20:08 GMT Resent-Message-Id: <200706061120.l56BK8V8079491@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Vyshenski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 269D716A469 for ; Wed, 6 Jun 2007 11:15:39 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (pn-gw.sinp.msu.ru [213.131.0.178]) by mx1.freebsd.org (Postfix) with ESMTP id 3773913C48A for ; Wed, 6 Jun 2007 11:15:37 +0000 (UTC) (envelope-from svysh@pn.sinp.msu.ru) Received: from vivaldi.pn.sinp.msu.ru (localhost [127.0.0.1]) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1) with ESMTP id l56BFXGk036646 for ; Wed, 6 Jun 2007 15:15:33 +0400 (MSD) (envelope-from svysh@vivaldi.pn.sinp.msu.ru) Received: (from svysh@localhost) by vivaldi.pn.sinp.msu.ru (8.14.1/8.14.1/Submit) id l56BFXbd036645; Wed, 6 Jun 2007 15:15:33 +0400 (MSD) (envelope-from svysh) Message-Id: <200706061115.l56BFXbd036645@vivaldi.pn.sinp.msu.ru> Date: Wed, 6 Jun 2007 15:15:33 +0400 (MSD) From: Sergei Vyshenski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113413: [Maintainer update:] security/p5-openxpki X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergei Vyshenski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:20:08 -0000 >Number: 113413 >Category: ports >Synopsis: [Maintainer update:] security/p5-openxpki >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:20:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Sergei Vyshenski >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD vivaldi.pn.sinp.msu.ru 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Mar 18 21:19:16 MSK 2007 root@vivaldi.pn.sinp.msu.ru:/usr/obj/usr/src/sys/VIVALDI i386 >Description: Regular update >How-To-Repeat: >Fix: diff -ur security/p5-openxpki/Makefile security/p5-openxpki.new/Makefile --- security/p5-openxpki/Makefile Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki.new/Makefile Tue Jun 5 16:58:43 2007 @@ -6,7 +6,7 @@ # PORTNAME= openxpki -PORTVERSION= 0.9.781 +PORTVERSION= 0.9.914 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -178,6 +178,7 @@ OpenXPKI::Server::Workflow::Activity::CertIssuance::Issue.3 \ OpenXPKI::Server::Workflow::Activity::CertIssuance::PersistCertificate.3 \ OpenXPKI::Server::Workflow::Activity::CertLdapPublish::AddMissingNode.3 \ + OpenXPKI::Server::Workflow::Activity::CertLdapPublish::ImportPublicData.3 \ OpenXPKI::Server::Workflow::Activity::CertLdapPublish::PublicCertLdap.3 \ OpenXPKI::Server::Workflow::Activity::DataExchange::Cleanup.3 \ OpenXPKI::Server::Workflow::Activity::DataExchange::ExportLogs.3 \ @@ -189,11 +190,6 @@ OpenXPKI::Server::Workflow::Activity::DataExchange::ReadArchive.3 \ OpenXPKI::Server::Workflow::Activity::DataExchange::UnpackArchive.3 \ OpenXPKI::Server::Workflow::Activity::DataExchange::WriteArchive.3 \ - OpenXPKI::Server::Workflow::Activity::Key::Generate.3 \ - OpenXPKI::Server::Workflow::Activity::Passphrase::Generate.3 \ - OpenXPKI::Server::Workflow::Activity::Profile::Create.3 \ - OpenXPKI::Server::Workflow::Activity::Request::Certificate::DataOnly::Create.3 \ - OpenXPKI::Server::Workflow::Activity::Request::Certificate::PKCS10::Create.3 \ OpenXPKI::Server::Workflow::Activity::SCEP::ExtractCSR.3 \ OpenXPKI::Server::Workflow::Activity::SCEP::SetContextFromCSR.3 \ OpenXPKI::Server::Workflow::Activity::SCEP::SetContextFromOriginalCert.3 \ @@ -246,6 +242,8 @@ OpenXPKI::Server::Workflow::Validator::CertRole.3 \ OpenXPKI::Server::Workflow::Validator::CertSubject.3 \ OpenXPKI::Server::Workflow::Validator::CertSubjectAltName.3 \ + OpenXPKI::Server::Workflow::Validator::CertSubjectAltNameParts.3 \ + OpenXPKI::Server::Workflow::Validator::CertSubjectParts.3 \ OpenXPKI::Server::Workflow::Validator::Creator.3 \ OpenXPKI::Server::Workflow::Validator::InvalidityTime.3 \ OpenXPKI::Server::Workflow::Validator::KeyReuse.3 \ @@ -261,6 +259,8 @@ OpenXPKI::Service::SCEP::Command.3 \ OpenXPKI::Service::SCEP::Command::GetCACert.3 \ OpenXPKI::Service::SCEP::Command::PKIOperation.3 \ + OpenXPKI::Template::Plugin::RandomPassword.3 \ + OpenXPKI::Tests.3 \ OpenXPKI::Transport::Simple.3 \ OpenXPKI::VERSION.3 \ OpenXPKI::XML::Cache.3 \ diff -ur security/p5-openxpki/distinfo security/p5-openxpki.new/distinfo --- security/p5-openxpki/distinfo Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki.new/distinfo Tue Jun 5 16:57:54 2007 @@ -1,3 +1,3 @@ -MD5 (openxpki/OpenXPKI-0.9.781.tar.gz) = dbdb71c2740c790af699fb2aaea1d47f -SHA256 (openxpki/OpenXPKI-0.9.781.tar.gz) = e6231a02bebd9095d5e143b154dcab2f3ce6a59719dfdcdb7980525f125d0301 -SIZE (openxpki/OpenXPKI-0.9.781.tar.gz) = 316098 +MD5 (openxpki/OpenXPKI-0.9.914.tar.gz) = 94a543aba4caa908b7fb1f436716eeba +SHA256 (openxpki/OpenXPKI-0.9.914.tar.gz) = 90260b3f4f598d45a49295db447517d26763c8b4304c392a4005fbb734e1d8a2 +SIZE (openxpki/OpenXPKI-0.9.914.tar.gz) = 339967 diff -ur security/p5-openxpki/pkg-descr security/p5-openxpki.new/pkg-descr --- security/p5-openxpki/pkg-descr Wed Nov 1 23:47:50 2006 +++ security/p5-openxpki.new/pkg-descr Tue Jun 5 17:41:22 2007 @@ -7,7 +7,6 @@ p5-openxpki-client-cli: command line interface to local OpenXPKI daemon p5-openxpki-client-html-mason: web interface to local OpenXPKI daemon p5-openxpki-client-scep: set of SCEP tools -p5-openxpki-client-soap-lite: set of SOAP-Lite tools p5-openxpki-deployment: set or deployment tools Dependencies of OpenXPKI ports ("A --> B" means that port B depends on port A): @@ -15,10 +14,9 @@ p5-openxpki-client <-- p5-openxpki (server) --> p5-openxpki-i18n \ \ | p5-openxpki-client-cli, p5-openxpki-client-html-mason, - \--> | p5-openxpki-client-scep, p5-openxpki-client-soap-lite, - | p5-openxpki-deployment. + \--> | p5-openxpki-client-scep, p5-openxpki-deployment. Notes: I18n is needed for the English interface too. For effective use of deployment, it is recommended to install at least one of the clients: ...-cli or ...-mason. -WWW: http://www.openxpki.org/ +WWW: http://www.openxpki.org/download/freebsd.html diff -ur security/p5-openxpki/pkg-plist security/p5-openxpki.new/pkg-plist --- security/p5-openxpki/pkg-plist Tue Apr 3 16:56:45 2007 +++ security/p5-openxpki.new/pkg-plist Tue Jun 5 16:58:43 2007 @@ -141,6 +141,7 @@ %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertIssuance/Issue.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertIssuance/PersistCertificate.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertLdapPublish/AddMissingNode.pm +%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertLdapPublish/ImportPublicData.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertLdapPublish/PublicCertLdap.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/DataExchange/Cleanup.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/DataExchange/ExportLogs.pm @@ -152,11 +153,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/DataExchange/ReadArchive.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/DataExchange/UnpackArchive.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/DataExchange/WriteArchive.pm -%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Key/Generate.pm -%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Passphrase/Generate.pm -%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Profile/Create.pm -%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Request/Certificate/DataOnly/Create.pm -%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Request/Certificate/PKCS10/Create.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/SCEP/ExtractCSR.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/SCEP/SetContextFromCSR.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/SCEP/SetContextFromOriginalCert.pm @@ -210,6 +206,8 @@ %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/CertRole.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/CertSubject.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/CertSubjectAltName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/CertSubjectAltNameParts.pm +%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/CertSubjectParts.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/Creator.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/InvalidityTime.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Validator/KeyReuse.pm @@ -225,6 +223,8 @@ %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Service/SCEP/Command.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Service/SCEP/Command/GetCACert.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Service/SCEP/Command/PKIOperation.pm +%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Template/Plugin/RandomPassword.pm +%%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Tests.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Transport/Simple.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/VERSION.pm %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/XML/Cache.pm @@ -236,6 +236,8 @@ @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/OpenXPKI @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/XML @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Transport +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Template/Plugin +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Template @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Service/SCEP/Command @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Service/SCEP @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Service/Default/Command @@ -249,13 +251,6 @@ @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Tools @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/SmartCard @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/SCEP -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Request/Certificate/PKCS10 -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Request/Certificate/DataOnly -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Request/Certificate -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Request -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Profile -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Passphrase -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/Key @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/DataExchange @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertLdapPublish @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/OpenXPKI/Server/Workflow/Activity/CertIssuance >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:27:25 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0DB316A468; Wed, 6 Jun 2007 11:27:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 81A5913C4BE; Wed, 6 Jun 2007 11:27:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRPhq079910; Wed, 6 Jun 2007 11:27:25 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRPtK079906; Wed, 6 Jun 2007 11:27:25 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:25 GMT From: Martin Wilke Message-Id: <200706061127.l56BRPtK079906@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113407: [Maintainer update:] security/p5-openxpki-client-cli X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:27:25 -0000 Synopsis: [Maintainer update:] security/p5-openxpki-client-cli Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:24 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113407 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:27:31 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A39F116A400; Wed, 6 Jun 2007 11:27:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7CADC13C48A; Wed, 6 Jun 2007 11:27:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRVCO079975; Wed, 6 Jun 2007 11:27:31 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRVij079971; Wed, 6 Jun 2007 11:27:31 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:31 GMT From: Martin Wilke Message-Id: <200706061127.l56BRVij079971@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113408: [Maintainer update] security/p5-openxpki-client-html-mason X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:27:31 -0000 Synopsis: [Maintainer update] security/p5-openxpki-client-html-mason Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:30 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113408 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:27:37 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AC6C16A400; Wed, 6 Jun 2007 11:27:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0423213C4AE; Wed, 6 Jun 2007 11:27:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRadf080040; Wed, 6 Jun 2007 11:27:36 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRaDa080036; Wed, 6 Jun 2007 11:27:36 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:36 GMT From: Martin Wilke Message-Id: <200706061127.l56BRaDa080036@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113409: [Maintainer update:] security/p5-openxpki-client-scep X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:27:37 -0000 Synopsis: [Maintainer update:] security/p5-openxpki-client-scep Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:36 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113409 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:27:43 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6608C16A421; Wed, 6 Jun 2007 11:27:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3F77C13C483; Wed, 6 Jun 2007 11:27:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRhit080105; Wed, 6 Jun 2007 11:27:43 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRgbs080101; Wed, 6 Jun 2007 11:27:42 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:42 GMT From: Martin Wilke Message-Id: <200706061127.l56BRgbs080101@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113410: [Maintainer update:] security/p5-openxpki-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:27:43 -0000 Synopsis: [Maintainer update:] security/p5-openxpki-client Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:42 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113410 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:27:49 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F9EC16A41F; Wed, 6 Jun 2007 11:27:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ED3DF13C487; Wed, 6 Jun 2007 11:27:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRmZ0080170; Wed, 6 Jun 2007 11:27:48 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRmrP080166; Wed, 6 Jun 2007 11:27:48 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:48 GMT From: Martin Wilke Message-Id: <200706061127.l56BRmrP080166@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113411: [Maintainer update:] security/p5-openxpki-deployment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:27:49 -0000 Synopsis: [Maintainer update:] security/p5-openxpki-deployment Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:48 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113411 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:27:54 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B2F016A400; Wed, 6 Jun 2007 11:27:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 544E813C447; Wed, 6 Jun 2007 11:27:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRsVJ080235; Wed, 6 Jun 2007 11:27:54 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRsKx080231; Wed, 6 Jun 2007 11:27:54 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:54 GMT From: Martin Wilke Message-Id: <200706061127.l56BRsKx080231@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113412: [Maintainer update:] security/p5-openxpki-i18n X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:27:54 -0000 Synopsis: [Maintainer update:] security/p5-openxpki-i18n Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:53 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113412 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:28:00 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BCB116A4CC; Wed, 6 Jun 2007 11:28:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0573713C447; Wed, 6 Jun 2007 11:28:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BRxKe080300; Wed, 6 Jun 2007 11:27:59 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BRxRc080296; Wed, 6 Jun 2007 11:27:59 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 11:27:59 GMT From: Martin Wilke Message-Id: <200706061127.l56BRxRc080296@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113413: [Maintainer update:] security/p5-openxpki X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:28:00 -0000 Synopsis: [Maintainer update:] security/p5-openxpki Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 11:27:59 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113413 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:30:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B067616A400 for ; Wed, 6 Jun 2007 11:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 85B8313C46E for ; Wed, 6 Jun 2007 11:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56BU8Yc080488 for ; Wed, 6 Jun 2007 11:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56BU8Xx080484; Wed, 6 Jun 2007 11:30:08 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:30:08 GMT Resent-Message-Id: <200706061130.l56BU8Xx080484@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D299216A421 for ; Wed, 6 Jun 2007 11:26:09 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay03.ispgateway.de (smtprelay03.ispgateway.de [80.67.18.15]) by mx1.freebsd.org (Postfix) with ESMTP id F3EB313C468 for ; Wed, 6 Jun 2007 11:26:08 +0000 (UTC) (envelope-from mail@sysfault.org) Received: (qmail 22332 invoked from network); 6 Jun 2007 11:26:05 -0000 Received: from unknown (HELO medusa.sysfault.org) (936934@[89.182.73.131]) (envelope-sender ) by smtprelay03.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 6 Jun 2007 11:26:05 -0000 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvtfP-0001pe-BG for FreeBSD-gnats-submit@freebsd.org; Wed, 06 Jun 2007 13:27:07 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.13.1/8.13.1/Submit) id l56BR2mO007045; Wed, 6 Jun 2007 13:27:02 +0200 (CEST) (envelope-from marcus) Message-Id: <200706061127.l56BR2mO007045@medusa.sysfault.org> Date: Wed, 6 Jun 2007 13:27:02 +0200 (CEST) From: Marcus von Appen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113414: [Patch]: Update MASTER_SITE_FEDORA_LINUX in bsd.sites.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus von Appen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:30:08 -0000 >Number: 113414 >Category: ports >Synopsis: [Patch]: Update MASTER_SITE_FEDORA_LINUX in bsd.sites.mk >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:30:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 6.2-STABLE FreeBSD 6.2-STABLE #1: Sat Apr 7 22:24:16 CEST 2007 root@medusa.sysfault.org:/usr/obj/usr/src/sys/MEDUSA i386 >Description: Revising the MASTER_SITE_FEDORA_LINUX entries revealed several dead mirrors and some, which do not mirror FC4, but only FC5 and FC6. I removed them and added new mirrors from http://mirrors.fedoraproject.org/publiclist Several mirrors seemed to point to the wrong directory. This was fixed, too. The following removed mirrors only contained FC5 and FC6: http://mirror.linux.duke.edu/pub/fedora/linux/core/%SUBDIR%/ ftp://mirror.linux.duke.edu/pub/fedora/linux/core/%SUBDIR%/ ftp://ftp.fi.muni.cz/pub/linux/fedora/linux/core/%SUBDIR%/ ftp://ftp.ipv6.funet.fi/pub/mirrors/ftp.redhat.com/pub/fedora/linux/core/%SUBDIR%/ ftp://ftp.chl.chalmers.se/pub/fedora/linux/core/%SUBDIR%/ The following removed mirrors only contained FC6: http://ftp.belnet.be/linux/fedora/linux/core/%SUBDIR%/ ftp://ftp.scarlet.be/pub/fedora/%SUBDIR%/ ftp://ftp.planetmirror.com/pub/fedora/linux/core/%SUBDIR%/ The following mirror was unreachable (timeouts) and was removed. A later check might be necessary to verify that it still exists (or not): http://fedora.server4you.net/fedora/core/%SUBDIR%/ ftp://fedora.server4you.net/fedora/core/%SUBDIR%/ >How-To-Repeat: -- >Fix: --- bsd.sites.mk.orig Wed Jun 6 13:04:43 2007 +++ bsd.sites.mk Wed Jun 6 12:59:32 2007 @@ -20,7 +20,7 @@ # # Note: all entries should terminate with a slash. # -# $FreeBSD: /repoman/r/pcvs/ports/Mk/bsd.sites.mk,v 1.419 2007/04/28 00:11:47 shaun Exp $ +# $FreeBSD: ports/Mk/bsd.sites.mk,v 1.419 2007/04/28 00:11:47 shaun Exp $ # # Where to put distfiles that don't have any other master site @@ -240,11 +240,6 @@ ftp://mirrors.kernel.org/fedora/core/%SUBDIR%/ \ http://mirror.web-ster.com/fedora/core/%SUBDIR%/ \ ftp://mirror.web-ster.com/fedora/core/%SUBDIR%/ \ - ftp://fedora.cs.utah.edu/pub/fedora/linux/core/%SUBDIR%/ \ - http://fedora.cat.pdx.edu/linux/core/%SUBDIR%/ \ - ftp://fedora.cat.pdx.edu/linux/core/%SUBDIR%/ \ - http://mirror.linux.duke.edu/pub/fedora/linux/core/%SUBDIR%/ \ - ftp://mirror.linux.duke.edu/pub/fedora/linux/core/%SUBDIR%/ \ http://rpmfind.net/linux/fedora/core/%SUBDIR%/ \ ftp://rpmfind.net/linux/fedora/core/%SUBDIR%/ \ ftp://ftp.gtlib.cc.gatech.edu/pub/fedora.redhat/linux/core/%SUBDIR%/ \ @@ -253,18 +248,10 @@ ftp://ftp.ale.org/mirrors/fedora/linux/core/%SUBDIR%/ \ http://ftp.ndlug.nd.edu/pub/fedora/linux/core/%SUBDIR%/ \ ftp://ftp.ndlug.nd.edu/pub/fedora/linux/core/%SUBDIR%/ \ - http://fedora.server4you.net/fedora/core/%SUBDIR%/ \ - ftp://fedora.server4you.net/fedora/core/%SUBDIR%/ \ - http://fedora.mirrored.ca/fedora/%SUBDIR%/ \ - ftp://fedora.mirrored.ca/fedora/%SUBDIR%/ \ - ftp://ftp.scarlet.be/pub/fedora/%SUBDIR%/ \ - http://ftp.belnet.be/linux/fedora/linux/core/%SUBDIR%/ \ ftp://ftp.belnet.be/linux/fedora/linux/core/%SUBDIR%/ \ http://sunsite.mff.cuni.cz/pub/fedora/%SUBDIR%/ \ ftp://sunsite.mff.cuni.cz/pub/fedora/%SUBDIR%/ \ ftp://ultra.linux.cz/pub/fedora/%SUBDIR%/ \ - ftp://ftp.fi.muni.cz/pub/linux/fedora/linux/core/%SUBDIR%/ \ - ftp://ftp.ipv6.funet.fi/pub/mirrors/ftp.redhat.com/pub/fedora/linux/core/%SUBDIR%/ \ http://fr2.rpmfind.net/linux/fedora/core/%SUBDIR%/ \ ftp://fr2.rpmfind.net/linux/fedora/core/%SUBDIR%/ \ http://wftp.tu-chemnitz.de/pub/linux/fedora-core/%SUBDIR%/ \ @@ -274,36 +261,143 @@ http://ftp.esat.net/pub/linux/fedora/%SUBDIR%/ \ ftp://ftp.esat.net/pub/linux/fedora/%SUBDIR%/ \ ftp://alviss.et.tudelft.nl/pub/fedora/core/%SUBDIR%/ \ - http://ftp.surfnet.nl/ftp/pub/os/Linux/distr/fedora/%SUBDIR%/ \ - ftp://ftp.surfnet.nl/pub/os/Linux/distr/fedora/%SUBDIR%/ \ - http://ftp.nluug.nl/ftp/pub/os/Linux/distr/fedora/%SUBDIR%/ \ - ftp://ftp.nluug.nl/pub/os/Linux/distr/fedora/%SUBDIR%/ \ + http://ftp.surfnet.nl/ftp/pub/os/Linux/distr/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.surfnet.nl/pub/os/Linux/distr/fedora/linux/core/%SUBDIR%/ \ + http://ftp.nluug.nl/ftp/pub/os/Linux/distr/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.nluug.nl/pub/os/Linux/distr/fedora/linux/core/%SUBDIR%/ \ ftp://ftp.uninett.no/pub/linux/Fedora/core/%SUBDIR%/ \ - http://ftp.man.poznan.pl/pub/linux/fedora/%SUBDIR%/ \ + http://ftp.man.poznan.pl/pub/linux/fedora/core/%SUBDIR%/ \ ftp://ftp.man.poznan.pl/pub/linux/fedora/%SUBDIR%/ \ http://ftp.ps.pl/pub/linux/fedora-core/%SUBDIR%/ \ ftp://ftp.ps.pl/pub/linux/fedora-core/%SUBDIR%/ \ - http://ftp.idilis.ro/mirrors/fedora/core/%SUBDIR%/ \ - ftp://ftp.idilis.ro/mirrors/fedora/core/%SUBDIR%/ \ ftp://ftp.kappa.ro/pub/Linux/Distributions/fedora/%SUBDIR%/ \ - http://mirror.etf.bg.ac.yu/fedora/linux/core/%SUBDIR%/ \ - ftp://mirror.etf.bg.ac.yu/fedora/linux/core/%SUBDIR%/ \ - ftp://ftp.chl.chalmers.se/pub/fedora/linux/core/%SUBDIR%/ \ + http://mirror.etf.bg.ac.yu/fedora/%SUBDIR%/ \ + ftp://mirror.etf.bg.ac.yu/fedora/%SUBDIR%/ \ http://www.mirrorservice.org/sites/download.fedora.redhat.com/pub/fedora/linux/core/%SUBDIR%/ \ ftp://ftp.mirrorservice.org/sites/download.fedora.redhat.com/pub/fedora/linux/core/%SUBDIR%/ \ ftp://ftp.hostrino.com/pub/fedora/linux/core/%SUBDIR%/ \ - ftp://ftp.sfc.wide.ad.jp/pub/Linux/Fedora/%SUBDIR%/ \ + ftp://ftp.sfc.wide.ad.jp/pub/Linux/Fedora/core/%SUBDIR%/ \ http://ftp.kddilabs.jp/Linux/packages/fedora/core/%SUBDIR%/ \ ftp://ftp.kddilabs.jp/Linux/packages/fedora/core/%SUBDIR%/ \ ftp://ftp.riken.go.jp/pub/Linux/fedora/core/%SUBDIR%/ \ http://ftp.isu.edu.tw/pub/Linux/Fedora/linux/core/%SUBDIR%/ \ ftp://ftp.isu.edu.tw/pub/Linux/Fedora/linux/core/%SUBDIR%/ \ - ftp://ftp.planetmirror.com/pub/fedora/linux/core/%SUBDIR%/ \ http://www.las.ic.unicamp.br/pub/fedora/linux/core/%SUBDIR%/ \ ftp://www.las.ic.unicamp.br/pub/fedora/linux/core/%SUBDIR%/ \ ftp://mirror.netglobalis.net/pub/fedora/%SUBDIR%/ \ http://mirror.pacific.net.au/linux/redhat/fedora/%SUBDIR%/ \ - ftp://mirror.pacific.net.au/linux/redhat/fedora/%SUBDIR%/ + ftp://mirror.pacific.net.au/linux/redhat/fedora/%SUBDIR%/ \ + http://download.fedora.redhat.com/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.univie.ac.at/systems/linux/fedora/core/%SUBDIR%/ \ + http://mirror.aarnet.edu.au/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://mirror.aarnet.edu.au/pub/fedora/linux/core/%SUBDIR%/ \ + http://fedora.mirror.iweb.ca/core/%SUBDIR%/ \ + ftp://fedora.mirror.iweb.ca/core/%SUBDIR%/ \ + ftp://ftp.telus.net/pub/fedora/linux/core/%SUBDIR%/ \ + http://fedora.arcticnetwork.ca/linux/core/%SUBDIR%/ \ + http://www.muug.mb.ca/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.muug.mb.ca/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.solnet.ch/mirror/fedora/linux/core/%SUBDIR%/ \ + http://mirror.karneval.cz/pub/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.telmexchile.cl/Unix/fedora/linux/core/%SUBDIR%/ \ + http://ftp.sh.cvut.cz/MIRRORS/fedora/%SUBDIR%/ \ + ftp://ftp.sh.cvut.cz/MIRRORS/fedora/%SUBDIR%/ \ + http://sunsite.mff.cuni.cz/MIRRORS/fedora.redhat.com/linux/core/%SUBDIR%/ \ + ftp://sunsite.mff.cuni.cz/MIRRORS/fedora.redhat.com/linux/core/%SUBDIR%/ \ + http://ftp-stud.hs-esslingen.de/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp-stud.hs-esslingen.de/pub/fedora/linux/core/%SUBDIR%/ \ + http://www.jur-linux.org/download/fedora/core/%SUBDIR%/ \ + http://ftp.uni-erlangen.de/pub/Linux/MIRROR.fedora/core/%SUBDIR%/ \ + ftp://ftp.uni-muenster.de/pub/linux/distributions/fedora/linux/core/%SUBDIR%/ \ + http://ftp.uni-bayreuth.de/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.uni-bayreuth.de/pub/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.fu-berlin.de/linux/fedora/core/%SUBDIR%/ \ + http://ftp.uni-koeln.de/mirrors/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.uni-koeln.de/mirrors/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.informatik.uni-frankfurt.de/pub/linux/Mirror/ftp.redhat.com/fedora/core/%SUBDIR%/ \ + http://ftp.udl.es/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.udl.es/pub/fedora/linux/core/%SUBDIR%/ \ + http://mirrors.ircam.fr/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://mirrors.ircam.fr/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.crihan.fr/mirrors/fedora.redhat.com/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.crihan.fr/mirrors/fedora.redhat.com/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.univ-pau.fr/pub/mirrors/fedora/%SUBDIR%/ \ + ftp://ftp.lip6.fr/pub/linux/distributions/fedora/%SUBDIR%/ \ + http://fr.rpmfind.net/linux/fedora/core/%SUBDIR%/ \ + http://zeniiia.linux.org.uk/pub/distributions/fedora/linux/core/%SUBDIR%/ \ + ftp://zeniiia.linux.org.uk/pub/distributions/fedora/linux/core/%SUBDIR%/ \ + http://www.gtlib.gatech.edu/pub/fedora.redhat/linux/core/%SUBDIR%/ \ + http://download.stmc.edu.hk/fedora/linux/core/%SUBDIR%/ \ + ftp://download.stmc.edu.hk/fedora/linux/core/%SUBDIR%/ \ + http://ftp.rhnet.is/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.rhnet.is/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.unina.it/pub/linux/distributions/fedora/%SUBDIR%/ \ + ftp://ftp.unina.it/pub/linux/distributions/fedora/%SUBDIR%/ \ + http://ftp.iij.ad.jp/pub/linux/fedora/core/%SUBDIR%/ \ + ftp://ftp.iij.ad.jp/pub/linux/fedora/core/%SUBDIR%/ \ + http://ftp.dti.ad.jp/pub/Linux/Fedora/core/%SUBDIR%/ \ + ftp://ftp.dti.ad.jp/pub/Linux/Fedora/core/%SUBDIR%/ \ + http://ftp.nara.wide.ad.jp/pub/Linux/fedora/core/%SUBDIR%/ \ + http://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora/linux/core/%SUBDIR%/ \ + http://ftp.jaist.ac.jp/pub/Linux/Fedora/core/%SUBDIR%/ \ + ftp://ftp.jaist.ac.jp/pub/Linux/Fedora/core/%SUBDIR%/ \ + http://ftp.riken.jp/Linux/fedora/core/%SUBDIR%/ \ + http://ftp.kaist.ac.kr/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.kaist.ac.kr/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.kreonet.re.kr/pub/Linux/fedora/core/%SUBDIR%/ \ + ftp://mirror.hostway.co.kr/pub/fedora/%SUBDIR%/ \ + http://fedora.ifc.unam.mx/fedora/core/%SUBDIR%/ \ + ftp://fedora.ifc.unam.mx/linux/fedora/core/%SUBDIR%/ \ + ftp://ftp.easynet.nl/mirror/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.quicknet.nl/pub/Linux/download.fedora.redhat.com/core/%SUBDIR%/ \ + ftp://ftp.uib.no/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.tpnet.pl/d17/fedora/%SUBDIR%/ \ + http://ftp.wsisiz.edu.pl/pub/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.pbone.net/pub/fedora/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.pwr.wroc.pl/pub/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.pwr.wroc.pl/pub/linux/fedora/linux/core/%SUBDIR%/ \ + ftp://mirrors.hpcf.upr.edu/pub/Mirrors/redhat/download.fedora.redhat.com/%SUBDIR%/ \ + http://ftp.astral.ro/mirrors/fedora/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.astral.ro/mirrors/fedora/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.iasi.roedu.net/mirrors/fedora.redhat.com/core/%SUBDIR%/ \ + ftp://ftp.rdsor.ro/pub/Linux/Distributions/Fedora/%SUBDIR%/ \ + http://ftp.chg.ru/pub/Linux/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.chg.ru/pub/Linux/fedora/linux/core/%SUBDIR%/ \ + http://ftp.rhd.ru/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.rhd.ru/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.sunet.se/pub/Linux/distributions/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/core/%SUBDIR%/ \ + http://ftp.port80.se/fedora/core/%SUBDIR%/ \ + ftp://ftp.port80.se/fedora/core/%SUBDIR%/ \ + http://ftp.upjs.sk/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.upjs.sk/pub/fedora/linux/core/%SUBDIR%/ \ + http://ftp.mirror.tw/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.mirror.tw/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.tlk-l.net/pub/mirrors/fedora.redhat.com/linux/core/%SUBDIR%/ \ + http://limestone.uoregon.edu/ftp/fedora/%SUBDIR%/ \ + ftp://limestone.uoregon.edu/fedora/%SUBDIR%/ \ + http://mirrors.tiatera.com/fedora/core/%SUBDIR%/ \ + ftp://mirrors.tiatera.com/fedora/core/%SUBDIR%/ \ + ftp://fedora.bu.edu/core/%SUBDIR%/ \ + http://mirror.anl.gov/pub/fedora-linux-core/%SUBDIR%/ \ + ftp://mirror.anl.gov/pub/fedora-linux-core/%SUBDIR%/ \ + ftp://ftp.cse.buffalo.edu/pub/Linux/fedora/linux/core/%SUBDIR%/ \ + http://coblitz.planet-lab.org/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://ftp.software.umn.edu/linux/fedora/core/%SUBDIR%/ \ + http://fedora.omnispring.com/core/%SUBDIR%/ \ + ftp://fedora.omnispring.com/core/%SUBDIR%/ \ + ftp://ftp.applios.net/pub/fedora/linux/core/%SUBDIR%/ \ + http://fedora.mirror.facebook.com/linux/core/%SUBDIR%/ \ + http://mirror.steadfast.net/fedora/core/%SUBDIR%/ \ + http://mirror.eas.muohio.edu/fedora/linux/core/%SUBDIR%/ \ + http://mirror.engr.sjsu.edu/pub/fedora/linux/core/%SUBDIR%/ \ + ftp://wuarchive.wustl.edu/pub/linux/distributions/fedora/%SUBDIR%/ \ + http://www.gtlib.gatech.edu/pub/fedora.redhat/linux/core/%SUBDIR%/ \ + ftp://ftp.gtlib.gatech.edu/pub/fedora.redhat/linux/core/%SUBDIR%/ \ + http://mirror.cogentco.com/pub/linux/fedora/linux/core/%SUBDIR%/ \ + http://mirrors.tummy.com/pub/fedora.redhat.com/fedora/linux/core/%SUBDIR%/ \ + ftp://mirrors.tummy.com/pub/fedora.redhat.com/fedora/linux/core/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_FESTIVAL) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:40:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FC0D16A41F for ; Wed, 6 Jun 2007 11:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DEFA013C458 for ; Wed, 6 Jun 2007 11:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Be57b081689 for ; Wed, 6 Jun 2007 11:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Be5mJ081688; Wed, 6 Jun 2007 11:40:05 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 11:40:05 GMT Resent-Message-Id: <200706061140.l56Be5mJ081688@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 626BA16A469 for ; Wed, 6 Jun 2007 11:30:29 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay06.ispgateway.de (smtprelay06.ispgateway.de [80.67.18.44]) by mx1.freebsd.org (Postfix) with ESMTP id C73A413C483 for ; Wed, 6 Jun 2007 11:30:28 +0000 (UTC) (envelope-from mail@sysfault.org) Received: (qmail 26721 invoked from network); 6 Jun 2007 11:30:20 -0000 Received: from unknown (HELO medusa.sysfault.org) (936934@[89.182.73.131]) (envelope-sender ) by smtprelay06.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 6 Jun 2007 11:30:20 -0000 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvtjW-00029M-B3; Wed, 06 Jun 2007 13:31:22 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.13.1/8.13.1/Submit) id l56BVLkN008267; Wed, 6 Jun 2007 13:31:21 +0200 (CEST) (envelope-from marcus) Message-Id: <200706061131.l56BVLkN008267@medusa.sysfault.org> Date: Wed, 6 Jun 2007 13:31:21 +0200 (CEST) From: Marcus von Appen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mva@sysfault.org Subject: ports/113415: [Maintainer-update]: audio/linux-mikmod - source rpm fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:40:06 -0000 >Number: 113415 >Category: ports >Synopsis: [Maintainer-update]: audio/linux-mikmod - source rpm fixes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 11:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 6.2-STABLE FreeBSD 6.2-STABLE #1: Sat Apr 7 22:24:16 CEST >Description: As reported by pointyhat the source rpm distinfo entries are wrong for this port. This patch fixes it by using the correct source directory. Skipped PORTREVISION bump as this should not affect existing installations. >How-To-Repeat: >Fix: --- linux-mikmod-3.1.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/linux-mikmod/Makefile /usr/ports/audio/linux-mikmod.new/Makefile --- /usr/ports/audio/linux-mikmod/Makefile Wed Jun 6 13:25:54 2007 +++ /usr/ports/audio/linux-mikmod.new/Makefile Wed Jun 6 13:24:35 2007 @@ -19,7 +19,6 @@ USE_LDCONFIG= yes AUTOMATIC_PLIST=yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr -MASTER_SITE_SRC_SUBDIR= ../extras/${LINUX_DIST_VER}/SRPMS BRANDELF_DIRS= usr/bin .include diff -ruN --exclude=CVS /usr/ports/audio/linux-mikmod/distinfo.i386 /usr/ports/audio/linux-mikmod.new/distinfo.i386 --- /usr/ports/audio/linux-mikmod/distinfo.i386 Wed Jun 6 13:25:29 2007 +++ /usr/ports/audio/linux-mikmod.new/distinfo.i386 Wed Jun 6 13:24:35 2007 @@ -1,7 +1,6 @@ MD5 (rpm/i386/fedora/4/mikmod-3.1.6-34.i386.rpm) = 307e98dd8a18ee8dc9b80b02c947c739 SHA256 (rpm/i386/fedora/4/mikmod-3.1.6-34.i386.rpm) = 6d0e50bc3048584fe3a3ed8289f202eec8a10b2bef3a36cd8263cad3700bfb6b SIZE (rpm/i386/fedora/4/mikmod-3.1.6-34.i386.rpm) = 182645 -MD5 (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 3b8837c5b566440921f4bc1499b3a5b7 -SHA256 (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 144665df79dbff6949fbbff0f7afee4486068e9be9b59184252f31b7408b6bf9 -SIZE (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 868 - +MD5 (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 9c3a0e615349bff86a225136629bfb16 +SHA256 (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = b58986be199e9649a29a2f64c66bbd8edfc956a22e39480b66c3d2c5bfe81399 +SIZE (rpm/i386/fedora/4/mikmod-3.1.6-34.src.rpm) = 775889 --- linux-mikmod-3.1.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 11:50:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 45CDA16A41F for ; Wed, 6 Jun 2007 11:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1BE3613C455 for ; Wed, 6 Jun 2007 11:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Bo9xH082042 for ; Wed, 6 Jun 2007 11:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Bo9id082035; Wed, 6 Jun 2007 11:50:09 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 11:50:09 GMT Message-Id: <200706061150.l56Bo9id082035@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Jonatan B" Cc: Subject: Re: ports/113335: biology/linux-foldingathome needs to run as root? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonatan B List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 11:50:10 -0000 The following reply was made to PR ports/113335; it has been noted by GNATS. From: "Jonatan B" To: bug-followup@freebsd.org Cc: "James Snyder" , "Edwin Groothuis" Subject: Re: ports/113335: biology/linux-foldingathome needs to run as root? Date: Wed, 6 Jun 2007 14:17:54 +0300 > should this be adapted to run from a user account or set up to be able to start at boot? We can't change the binary, so we can't have it run as normal user. I'll have a start-at-boot script when I'll update the port to 5.04. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:15:51 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 782B216A468; Wed, 6 Jun 2007 13:15:51 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4E0BC13C45D; Wed, 6 Jun 2007 13:15:51 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DFphf090099; Wed, 6 Jun 2007 13:15:51 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DFpqO090095; Wed, 6 Jun 2007 13:15:51 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:15:51 GMT From: Pav Lucistnik Message-Id: <200706061315.l56DFpqO090095@freefall.freebsd.org> To: vlm@lionet.info, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112197: [MAINTAINER UPDATE]: devel/libstrfunc upgrade to 8.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:15:51 -0000 Synopsis: [MAINTAINER UPDATE]: devel/libstrfunc upgrade to 8.3 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Jun 6 13:12:47 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=112197 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:18:38 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DA0516A480; Wed, 6 Jun 2007 13:18:38 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3390413C4BA; Wed, 6 Jun 2007 13:18:38 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DIcgT090205; Wed, 6 Jun 2007 13:18:38 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DIcPi090201; Wed, 6 Jun 2007 13:18:38 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:18:38 GMT From: Pav Lucistnik Message-Id: <200706061318.l56DIcPi090201@freefall.freebsd.org> To: bf2006a@yahoo.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113282: [PATCH] update palm/txt2pdbdoc to 1.4.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:18:38 -0000 Synopsis: [PATCH] update palm/txt2pdbdoc to 1.4.4 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Jun 6 13:16:12 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113282 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:20:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC63E16A421 for ; Wed, 6 Jun 2007 13:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9A5CA13C465 for ; Wed, 6 Jun 2007 13:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DK7Dg090283 for ; Wed, 6 Jun 2007 13:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DK7Fa090282; Wed, 6 Jun 2007 13:20:07 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 13:20:07 GMT Message-Id: <200706061320.l56DK7Fa090282@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/112197: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:20:07 -0000 The following reply was made to PR ports/112197; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112197: commit references a PR Date: Wed, 6 Jun 2007 13:15:45 +0000 (UTC) pav 2007-06-06 13:15:39 UTC FreeBSD ports repository Modified files: devel/libstrfunc Makefile distinfo Log: - Update to 8.3 PR: ports/112197 Submitted by: Lev Walkin (maintainer) Revision Changes Path 1.12 +5 -5 ports/devel/libstrfunc/Makefile 1.10 +3 -3 ports/devel/libstrfunc/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:20:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98DA116A421 for ; Wed, 6 Jun 2007 13:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 85E6713C4CC for ; Wed, 6 Jun 2007 13:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DKCe0090316 for ; Wed, 6 Jun 2007 13:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DKCqI090315; Wed, 6 Jun 2007 13:20:12 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 13:20:12 GMT Message-Id: <200706061320.l56DKCqI090315@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113282: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:20:12 -0000 The following reply was made to PR ports/113282; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113282: commit references a PR Date: Wed, 6 Jun 2007 13:18:34 +0000 (UTC) pav 2007-06-06 13:18:25 UTC FreeBSD ports repository Modified files: palm/txt2pdbdoc Makefile distinfo pkg-descr Log: - Update to 1.4.4 PR: ports/113282 Submitted by: bf Revision Changes Path 1.12 +4 -5 ports/palm/txt2pdbdoc/Makefile 1.5 +3 -3 ports/palm/txt2pdbdoc/distinfo 1.2 +4 -2 ports/palm/txt2pdbdoc/pkg-descr _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:30:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49AB816A476 for ; Wed, 6 Jun 2007 13:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EA85413C44C for ; Wed, 6 Jun 2007 13:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DU7W4090882 for ; Wed, 6 Jun 2007 13:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DU7SL090879; Wed, 6 Jun 2007 13:30:07 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 13:30:07 GMT Message-Id: <200706061330.l56DU7SL090879@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Larry Rosenman" Cc: Subject: RE: ports/113335: biology/linux-foldingathome needs to run as root? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Larry Rosenman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:30:08 -0000 The following reply was made to PR ports/113335; it has been noted by GNATS. From: "Larry Rosenman" To: "'Jonatan B'" Cc: Subject: RE: ports/113335: biology/linux-foldingathome needs to run as root? Date: Wed, 6 Jun 2007 08:25:57 -0500 I have the binary running as a normal user (multiple times, even) on both RELENG_6 and -CURRENT. I also have a startup script I wrote if that would help. (Mine is running in subdirectories of my home directory). LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683 E-Mail: ler@lerctr.org US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:32:53 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 286E416A46E; Wed, 6 Jun 2007 13:32:53 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F22E113C46A; Wed, 6 Jun 2007 13:32:52 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DWqXv092227; Wed, 6 Jun 2007 13:32:52 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DWnKK092223; Wed, 6 Jun 2007 13:32:49 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:32:49 GMT From: Pav Lucistnik Message-Id: <200706061332.l56DWnKK092223@freefall.freebsd.org> To: emz@norma.perm.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org Cc: Subject: Re: ports/109160: net/samba3 crashes freebsd when accessing a share residing on a memory disc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:32:53 -0000 Synopsis: net/samba3 crashes freebsd when accessing a share residing on a memory disc State-Changed-From-To: feedback->open State-Changed-By: pav State-Changed-When: Wed Jun 6 13:32:31 UTC 2007 State-Changed-Why: Maintainer is now a committer Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: pav Responsible-Changed-When: Wed Jun 6 13:32:31 UTC 2007 Responsible-Changed-Why: Maintainer is now a committer http://www.freebsd.org/cgi/query-pr.cgi?pr=109160 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:33:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08BAA16A469; Wed, 6 Jun 2007 13:33:19 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D19B913C4BF; Wed, 6 Jun 2007 13:33:18 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DXI4w092306; Wed, 6 Jun 2007 13:33:18 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DXIbA092302; Wed, 6 Jun 2007 13:33:18 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:33:18 GMT From: Pav Lucistnik Message-Id: <200706061333.l56DXIbA092302@freefall.freebsd.org> To: barzog@telecom.by, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org Cc: Subject: Re: ports/113068: net/Samba 3.0.25 broken if force user/force group to local unix user/group name is used X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:33:19 -0000 Synopsis: net/Samba 3.0.25 broken if force user/force group to local unix user/group name is used State-Changed-From-To: feedback->open State-Changed-By: pav State-Changed-When: Wed Jun 6 13:33:01 UTC 2007 State-Changed-Why: Maintainer is now a committer Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: pav Responsible-Changed-When: Wed Jun 6 13:33:01 UTC 2007 Responsible-Changed-Why: Maintainer is now a committer http://www.freebsd.org/cgi/query-pr.cgi?pr=113068 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:33:39 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49BB416A400; Wed, 6 Jun 2007 13:33:39 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2147D13C45D; Wed, 6 Jun 2007 13:33:39 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DXd9D092370; Wed, 6 Jun 2007 13:33:39 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DXcVO092366; Wed, 6 Jun 2007 13:33:38 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:33:38 GMT From: Pav Lucistnik Message-Id: <200706061333.l56DXcVO092366@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org Cc: Subject: Re: ports/113158: net/samba3: 3.0.25: memory disk share don't work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:33:39 -0000 Synopsis: net/samba3: 3.0.25: memory disk share don't work Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: pav Responsible-Changed-When: Wed Jun 6 13:33:27 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113158 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:34:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 878CD16A469; Wed, 6 Jun 2007 13:34:10 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 58FBF13C4B9; Wed, 6 Jun 2007 13:34:10 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DYAf9092436; Wed, 6 Jun 2007 13:34:10 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DYAp0092432; Wed, 6 Jun 2007 13:34:10 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:34:10 GMT From: Pav Lucistnik Message-Id: <200706061334.l56DYAp0092432@freefall.freebsd.org> To: mark@foster.cc, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org Cc: Subject: Re: ports/113198: net/samba3 3.0.25 build failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:34:10 -0000 Synopsis: net/samba3 3.0.25 build failure State-Changed-From-To: feedback->open State-Changed-By: pav State-Changed-When: Wed Jun 6 13:33:48 UTC 2007 State-Changed-Why: Maintainer is now committer Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: pav Responsible-Changed-When: Wed Jun 6 13:33:48 UTC 2007 Responsible-Changed-Why: Maintainer is now committer http://www.freebsd.org/cgi/query-pr.cgi?pr=113198 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:35:23 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BBC416A468; Wed, 6 Jun 2007 13:35:23 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0ED0D13C4D0; Wed, 6 Jun 2007 13:35:23 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DZMdG092506; Wed, 6 Jun 2007 13:35:22 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DZMrW092502; Wed, 6 Jun 2007 13:35:22 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:35:22 GMT From: Pav Lucistnik Message-Id: <200706061335.l56DZMrW092502@freefall.freebsd.org> To: bf2006a@yahoo.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org Cc: Subject: Re: ports/113395: [PATCH] net/samba-libsmbclient handles options incorrectly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:35:23 -0000 Synopsis: [PATCH] net/samba-libsmbclient handles options incorrectly State-Changed-From-To: feedback->open State-Changed-By: pav State-Changed-When: Wed Jun 6 13:34:53 UTC 2007 State-Changed-Why: Maintainer is now committer Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: pav Responsible-Changed-When: Wed Jun 6 13:34:53 UTC 2007 Responsible-Changed-Why: Maintainer is now committer http://www.freebsd.org/cgi/query-pr.cgi?pr=113395 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:40:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DBCCF16A468 for ; Wed, 6 Jun 2007 13:40:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8089B13C4BD for ; Wed, 6 Jun 2007 13:40:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DeDr8092696 for ; Wed, 6 Jun 2007 13:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DeDud092695; Wed, 6 Jun 2007 13:40:13 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 13:40:13 GMT Message-Id: <200706061340.l56DeDud092695@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Valerio Daelli" Cc: Subject: Re: ports/113260: security/ossec-hids-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Valerio Daelli List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:40:13 -0000 The following reply was made to PR ports/113260; it has been noted by GNATS. From: "Valerio Daelli" To: bug-followup@FreeBSD.org, pauls@utdallas.edu Cc: Subject: Re: ports/113260: security/ossec-hids-client Date: Wed, 6 Jun 2007 15:33:10 +0200 Patch approved. Thanks! From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:40:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37F9716A400 for ; Wed, 6 Jun 2007 13:40:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0D71B13C480 for ; Wed, 6 Jun 2007 13:40:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DeHEC092714 for ; Wed, 6 Jun 2007 13:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DeHE1092713; Wed, 6 Jun 2007 13:40:17 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 13:40:17 GMT Message-Id: <200706061340.l56DeHE1092713@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Valerio Daelli" Cc: Subject: Re: ports/113259: security/ossec-hids-server, multiple critical problems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Valerio Daelli List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:40:18 -0000 The following reply was made to PR ports/113259; it has been noted by GNATS. From: "Valerio Daelli" To: bug-followup@FreeBSD.org, pauls@utdallas.edu Cc: Subject: Re: ports/113259: security/ossec-hids-server, multiple critical problems Date: Wed, 6 Jun 2007 15:34:17 +0200 Patch approved. Thanks! From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:46:58 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 94DD816A514; Wed, 6 Jun 2007 13:46:58 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 690BB13C489; Wed, 6 Jun 2007 13:46:58 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DkwLf092914; Wed, 6 Jun 2007 13:46:58 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DkwHS092910; Wed, 6 Jun 2007 13:46:58 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:46:58 GMT From: Pav Lucistnik Message-Id: <200706061346.l56DkwHS092910@freefall.freebsd.org> To: bf2006a@yahoo.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113283: [PATCH] two patches for net/socat X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:46:58 -0000 Synopsis: [PATCH] two patches for net/socat State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Jun 6 13:36:54 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113283 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:49:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C427116A46B; Wed, 6 Jun 2007 13:49:15 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8FFDF13C484; Wed, 6 Jun 2007 13:49:15 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DnFCt093001; Wed, 6 Jun 2007 13:49:15 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DnEX4092997; Wed, 6 Jun 2007 13:49:14 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:49:14 GMT From: Pav Lucistnik Message-Id: <200706061349.l56DnEX4092997@freefall.freebsd.org> To: jw@innerewut.de, ports@logvinov.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112991: [PATCH] devel/rubygem-rake: update to 0.7.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:49:15 -0000 Synopsis: [PATCH] devel/rubygem-rake: update to 0.7.3 State-Changed-From-To: feedback->open State-Changed-By: pav State-Changed-When: Wed Jun 6 13:48:44 UTC 2007 State-Changed-Why: Maintainer approved http://www.freebsd.org/cgi/query-pr.cgi?pr=112991 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:50:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D16516A46B for ; Wed, 6 Jun 2007 13:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B0F7813C4BD for ; Wed, 6 Jun 2007 13:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Do9rj093214 for ; Wed, 6 Jun 2007 13:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Do94c093213; Wed, 6 Jun 2007 13:50:09 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 13:50:09 GMT Message-Id: <200706061350.l56Do94c093213@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113283: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:50:10 -0000 The following reply was made to PR ports/113283; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113283: commit references a PR Date: Wed, 6 Jun 2007 13:46:56 +0000 (UTC) pav 2007-06-06 13:46:45 UTC FreeBSD ports repository Modified files: net/socat Makefile Added files: net/socat/files patch-socat-maxfds patch-socat-servicenames Log: - Incorporate Sainsbury's service name resolution patch: http://www.dest-unreach.org/socat/contrib/socat-servicenames.html - Incorporate Lucq's file descriptor patch: http://www.dest-unreach.org/socat/contrib/socat-maxfds.html PR: ports/113283 Submitted by: bf Approved by: Nils Vogels (maintainer) Revision Changes Path 1.24 +1 -0 ports/net/socat/Makefile 1.1 +442 -0 ports/net/socat/files/patch-socat-maxfds (new) 1.1 +31 -0 ports/net/socat/files/patch-socat-servicenames (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 13:53:39 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A581316A509; Wed, 6 Jun 2007 13:53:39 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 77C7613C4CB; Wed, 6 Jun 2007 13:53:39 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56DrdQv093451; Wed, 6 Jun 2007 13:53:39 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56DrdYG093447; Wed, 6 Jun 2007 13:53:39 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 13:53:39 GMT From: Pav Lucistnik Message-Id: <200706061353.l56DrdYG093447@freefall.freebsd.org> To: jw@innerewut.de, ports@logvinov.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/112991: [PATCH] devel/rubygem-rake: update to 0.7.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 13:53:39 -0000 Synopsis: [PATCH] devel/rubygem-rake: update to 0.7.3 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Jun 6 13:49:29 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=112991 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3203C16A421 for ; Wed, 6 Jun 2007 14:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7FC13C447 for ; Wed, 6 Jun 2007 14:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56E0B49093633 for ; Wed, 6 Jun 2007 14:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56E0BAC093631; Wed, 6 Jun 2007 14:00:11 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 14:00:11 GMT Message-Id: <200706061400.l56E0BAC093631@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/112991: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:00:12 -0000 The following reply was made to PR ports/112991; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112991: commit references a PR Date: Wed, 6 Jun 2007 13:53:33 +0000 (UTC) pav 2007-06-06 13:53:26 UTC FreeBSD ports repository Modified files: devel/rubygem-rake Makefile distinfo pkg-plist Log: - Update to 0.7.3 PR: ports/112991 Submitted by: Alexander Logvinov Approved by: Jonathan Weiss (maintainer) Revision Changes Path 1.12 +1 -1 ports/devel/rubygem-rake/Makefile 1.7 +3 -3 ports/devel/rubygem-rake/distinfo 1.8 +3 -1 ports/devel/rubygem-rake/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:04:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE4F516A473; Wed, 6 Jun 2007 14:04:18 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B328913C48A; Wed, 6 Jun 2007 14:04:18 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56E4IKu093882; Wed, 6 Jun 2007 14:04:18 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56E4IX2093878; Wed, 6 Jun 2007 14:04:18 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 14:04:18 GMT From: Pav Lucistnik Message-Id: <200706061404.l56E4IX2093878@freefall.freebsd.org> To: tota@rtfm.jp, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113284: [MAINTAINER] www/rubygem-scrubyt: update to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:04:19 -0000 Synopsis: [MAINTAINER] www/rubygem-scrubyt: update to 0.3.0 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Jun 6 13:53:51 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113284 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:10:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F8A716A400 for ; Wed, 6 Jun 2007 14:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ED41A13C45D for ; Wed, 6 Jun 2007 14:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EA7Co094049 for ; Wed, 6 Jun 2007 14:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EA7eR094042; Wed, 6 Jun 2007 14:10:07 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 14:10:07 GMT Message-Id: <200706061410.l56EA7eR094042@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113284: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:10:08 -0000 The following reply was made to PR ports/113284; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113284: commit references a PR Date: Wed, 6 Jun 2007 14:04:12 +0000 (UTC) pav 2007-06-06 14:04:05 UTC FreeBSD ports repository Modified files: www/rubygem-scrubyt Makefile distinfo pkg-plist Log: - Update to 0.3.0 PR: ports/113284 Submitted by: TAKATSU Tomonari (maintainer) Revision Changes Path 1.4 +1 -1 ports/www/rubygem-scrubyt/Makefile 1.4 +3 -3 ports/www/rubygem-scrubyt/distinfo 1.4 +125 -106 ports/www/rubygem-scrubyt/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:11:44 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DFB2716A506; Wed, 6 Jun 2007 14:11:44 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B217013C46C; Wed, 6 Jun 2007 14:11:44 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EBiKb094283; Wed, 6 Jun 2007 14:11:44 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EBiNY094279; Wed, 6 Jun 2007 14:11:44 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 14:11:44 GMT From: Pav Lucistnik Message-Id: <200706061411.l56EBiNY094279@freefall.freebsd.org> To: conrads@cox.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113400: games/gnuchess -- fix for broken compile under gcc 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:11:45 -0000 Synopsis: games/gnuchess -- fix for broken compile under gcc 4.2 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Jun 6 14:06:13 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113400 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:20:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30E4616A400 for ; Wed, 6 Jun 2007 14:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1034113C4B8 for ; Wed, 6 Jun 2007 14:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EK737094637 for ; Wed, 6 Jun 2007 14:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EK75Y094636; Wed, 6 Jun 2007 14:20:07 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 14:20:07 GMT Message-Id: <200706061420.l56EK75Y094636@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113400: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:20:08 -0000 The following reply was made to PR ports/113400; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113400: commit references a PR Date: Wed, 6 Jun 2007 14:11:31 +0000 (UTC) pav 2007-06-06 14:11:25 UTC FreeBSD ports repository Added files: games/gnuchess/files patch-input.c Log: - Fix build with gcc42 PR: ports/113400 Submitted by: Conrad J. Sabatier (maintainer) Revision Changes Path 1.1 +11 -0 ports/games/gnuchess/files/patch-input.c (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:20:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B905116A400 for ; Wed, 6 Jun 2007 14:20:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 488E313C480 for ; Wed, 6 Jun 2007 14:20:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EKG8F094702 for ; Wed, 6 Jun 2007 14:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EKGFx094698; Wed, 6 Jun 2007 14:20:16 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 14:20:16 GMT Message-Id: <200706061420.l56EKGFx094698@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Jonatan B" Cc: Subject: Re: ports/113335: biology/linux-foldingathome needs to run as root? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonatan B List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:20:16 -0000 The following reply was made to PR ports/113335; it has been noted by GNATS. From: "Jonatan B" To: bug-followup@freebsd.org Cc: Subject: Re: ports/113335: biology/linux-foldingathome needs to run as root? Date: Wed, 6 Jun 2007 17:14:22 +0300 ------=_Part_38697_15161808.1181139262091 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 6/6/07, Larry Rosenman wrote: > On Wed, 6 Jun 2007, Jonatan B wrote: > > > Cool. I'd like the script, thanks. > > How did you get it to run as a normal user? > I just have the script do the su and cd magic. This diff updates the port to version 5.04, and adds support to running as normal user using ~/.fah directory. Commiter, please commit this update. ------=_Part_38697_15161808.1181139262091 Content-Type: text/x-patch; name=foldingathome-504.diff; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: base64 X-Attachment-Id: f_f2lvin2q Content-Disposition: attachment; filename="foldingathome-504.diff" ZGlmZiAtdXJOIGxpbnV4LWZvbGRpbmdhdGhvbWUub3JpZy9NYWtlZmlsZSBsaW51eC1mb2xkaW5n YXRob21lL01ha2VmaWxlCi0tLSBsaW51eC1mb2xkaW5nYXRob21lLm9yaWcvTWFrZWZpbGUJVHVl IEF1ZyAyOSAwMTozMzo0NSAyMDA2CisrKyBsaW51eC1mb2xkaW5nYXRob21lL01ha2VmaWxlCVdl ZCBKdW4gIDYgMTc6MDE6MjEgMjAwNwpAQCAtNiw3ICs2LDcgQEAKICMKIAogUE9SVE5BTUU9CWZv bGRpbmdhdGhvbWUKLVBPUlRWRVJTSU9OPQk1LjAyCitQT1JUVkVSU0lPTj0JNS4wNAogQ0FURUdP UklFUz0JYmlvbG9neQogTUFTVEVSX1NJVEVTPQlodHRwOi8vd3d3LnN0YW5mb3JkLmVkdS9ncm91 cC9wYW5kZWdyb3VwL3JlbGVhc2UvCiBQS0dOQU1FUFJFRklYPQlsaW51eC0KZGlmZiAtdXJOIGxp bnV4LWZvbGRpbmdhdGhvbWUub3JpZy9kaXN0aW5mbyBsaW51eC1mb2xkaW5nYXRob21lL2Rpc3Rp bmZvCi0tLSBsaW51eC1mb2xkaW5nYXRob21lLm9yaWcvZGlzdGluZm8JVHVlIEF1ZyAyOSAwMToz Mzo0NSAyMDA2CisrKyBsaW51eC1mb2xkaW5nYXRob21lL2Rpc3RpbmZvCVdlZCBKdW4gIDYgMTc6 MDE6NDQgMjAwNwpAQCAtMSwzICsxLDMgQEAKLU1ENSAoRkFINTAyLUxpbnV4LmV4ZSkgPSA0ODU1 ZTgwOGZiOTRlNmQyYzVmZGUzNDVhZWEwY2RjMwotU0hBMjU2IChGQUg1MDItTGludXguZXhlKSA9 IDAyZTJkMzY2NWE2ZThmOGZjODljNzc1MWI4ZmFhZGZmNjg4NWQzNDg2MDY0M2JkZDQxMDdkOTI4 MjU3NTRkMzMKLVNJWkUgKEZBSDUwMi1MaW51eC5leGUpID0gMjQ5MjM2CitNRDUgKEZBSDUwNC1M aW51eC5leGUpID0gMTMxNjg1M2I0MzlkMjVhNGE1NmFkZjgyZmNkOTUzZGIKK1NIQTI1NiAoRkFI NTA0LUxpbnV4LmV4ZSkgPSBjNDkxYjIzYWYxZWRlZTQxZGI0NzQ1NDVjMGEwODRmM2Y0Y2Y0Y2Nm NTBiY2ViNTZkYTQ5OWRmNjNlYjM4NDY0CitTSVpFIChGQUg1MDQtTGludXguZXhlKSA9IDI1MDk2 NApkaWZmIC11ck4gbGludXgtZm9sZGluZ2F0aG9tZS5vcmlnL3NjcmlwdHMvRm9sZGluZ0F0SG9t ZSBsaW51eC1mb2xkaW5nYXRob21lL3NjcmlwdHMvRm9sZGluZ0F0SG9tZQotLS0gbGludXgtZm9s ZGluZ2F0aG9tZS5vcmlnL3NjcmlwdHMvRm9sZGluZ0F0SG9tZQlUdWUgQXVnIDI5IDAxOjMzOjQ1 IDIwMDYKKysrIGxpbnV4LWZvbGRpbmdhdGhvbWUvc2NyaXB0cy9Gb2xkaW5nQXRIb21lCVdlZCBK dW4gIDYgMTc6MDE6MTAgMjAwNwpAQCAtMSw1ICsxLDcgQEAKICMhL2Jpbi9zaAorRkFIRElSPX4v LmZhaAogQ1VSRElSPWBwd2RgCi1jZCBEQVRBRElSCi1uaWNlIC1uIDIwIC4vQklOTkFNRSAtZnJl ZUJTRAorbWtkaXIgJEZBSERJUgorY2QgJEZBSERJUgorbmljZSAtbiAyMCAvREFUQURJUi9CSU5O QU1FIC1mcmVlQlNECiBjZCAkQ1VSRElSCg== ------=_Part_38697_15161808.1181139262091-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:20:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61A3D16A421 for ; Wed, 6 Jun 2007 14:20:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3860F13C487 for ; Wed, 6 Jun 2007 14:20:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EKH1q094715 for ; Wed, 6 Jun 2007 14:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EKHLJ094714; Wed, 6 Jun 2007 14:20:17 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 14:20:17 GMT Resent-Message-Id: <200706061420.l56EKHLJ094714@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Shan Tseng Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5FF416A46B for ; Wed, 6 Jun 2007 14:16:00 +0000 (UTC) (envelope-from tjs@pluto.cdpa.nsysu.edu.tw) Received: from pluto.cdpa.nsysu.edu.tw (Pluto.CDPA.nsysu.edu.tw [140.117.205.30]) by mx1.freebsd.org (Postfix) with ESMTP id 7F8BA13C4AD for ; Wed, 6 Jun 2007 14:16:00 +0000 (UTC) (envelope-from tjs@pluto.cdpa.nsysu.edu.tw) Received: from pluto.cdpa.nsysu.edu.tw (localhost [127.0.0.1]) by pluto.cdpa.nsysu.edu.tw (8.14.1/8.14.1) with ESMTP id l56EFgPp036944; Wed, 6 Jun 2007 22:15:42 +0800 (CST) (envelope-from tjs@pluto.cdpa.nsysu.edu.tw) Received: (from root@localhost) by pluto.cdpa.nsysu.edu.tw (8.14.1/8.14.1/Submit) id l56EFgc6036943; Wed, 6 Jun 2007 22:15:42 +0800 (CST) (envelope-from tjs) Message-Id: <200706061415.l56EFgc6036943@pluto.cdpa.nsysu.edu.tw> Date: Wed, 6 Jun 2007 22:15:42 +0800 (CST) From: Jin-Shan Tseng To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: tjs@cdpa.nsysu.edu.tw Subject: ports/113416: [PATCH] net/p5-Net-Analysis: update to 0.40, reset maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:20:17 -0000 >Number: 113416 >Category: ports >Synopsis: [PATCH] net/p5-Net-Analysis: update to 0.40, reset maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 14:20:16 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Jin-Shan Tseng >Release: FreeBSD 6.2-STABLE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD Pluto.CDPA.nsysu.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #0: Mon May 28 15:48:52 CST 2007 >Description: - Update to 0.40 - Reset maintainership to ports@FreeBSD.org Port maintainer (tjs@cdpa.nsysu.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Net-Analysis-0.40.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-Net-Analysis/Makefile /hd1/p5-Net-Analysis/Makefile --- /usr/ports/net/p5-Net-Analysis/Makefile Sat Dec 23 16:34:24 2006 +++ /hd1/p5-Net-Analysis/Makefile Wed Jun 6 22:14:34 2007 @@ -6,13 +6,14 @@ # PORTNAME= Net-Analysis -PORTVERSION= 0.06 +PORTVERSION= 0.40 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-0.4.0 -MAINTAINER= tjs@cdpa.nsysu.edu.tw +MAINTAINER= ports@FreeBSD.org COMMENT= Modules for analysing network traffic RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/Pcap.pm:${PORTSDIR}/net/p5-Net-Pcap \ diff -ruN --exclude=CVS /usr/ports/net/p5-Net-Analysis/distinfo /hd1/p5-Net-Analysis/distinfo --- /usr/ports/net/p5-Net-Analysis/distinfo Sat Dec 23 16:34:24 2006 +++ /hd1/p5-Net-Analysis/distinfo Wed Jun 6 21:58:51 2007 @@ -1,3 +1,3 @@ -MD5 (Net-Analysis-0.06.tar.gz) = ff3540e8dfebd19459bbf72bf675e343 -SHA256 (Net-Analysis-0.06.tar.gz) = 3a0e30cdbf3c45db02d83b4c77520e716b1c8bb8ee20384d70647442ee4f58d2 -SIZE (Net-Analysis-0.06.tar.gz) = 272691 +MD5 (Net-Analysis-0.4.0.tar.gz) = 24f533c5e9f7b8259a76d7f82afa1317 +SHA256 (Net-Analysis-0.4.0.tar.gz) = 5fae218c3943e4148defb03d00e9193842e40c4acbccbef1caf25b1ac53690b8 +SIZE (Net-Analysis-0.4.0.tar.gz) = 275674 --- p5-Net-Analysis-0.40.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:20:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E20816A469; Wed, 6 Jun 2007 14:20:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 73A3113C4BA; Wed, 6 Jun 2007 14:20:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EKRvL094803; Wed, 6 Jun 2007 14:20:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EKRNk094799; Wed, 6 Jun 2007 14:20:27 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 14:20:27 GMT From: Edwin Groothuis Message-Id: <200706061420.l56EKRNk094799@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113416: [PATCH] net/p5-Net-Analysis: update to 0.40, reset maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:20:27 -0000 Synopsis: [PATCH] net/p5-Net-Analysis: update to 0.40, reset maintainership Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Jun 6 14:20:26 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113416 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:40:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C022216A400 for ; Wed, 6 Jun 2007 14:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 83C7E13C4C5 for ; Wed, 6 Jun 2007 14:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Ee46T096458 for ; Wed, 6 Jun 2007 14:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Ee4cV096455; Wed, 6 Jun 2007 14:40:04 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 14:40:04 GMT Resent-Message-Id: <200706061440.l56Ee4cV096455@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, NAKAJI Hiroyuki Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 113ED16A41F for ; Wed, 6 Jun 2007 14:37:52 +0000 (UTC) (envelope-from nakaji@ra333.heimat.gr.jp) Received: from www.heimat.gr.jp (www.heimat.gr.jp [60.32.13.194]) by mx1.freebsd.org (Postfix) with ESMTP id AC11813C44C for ; Wed, 6 Jun 2007 14:37:51 +0000 (UTC) (envelope-from nakaji@ra333.heimat.gr.jp) Received: from ra333.heimat.gr.jp ([IPv6:2001:3e0:a84:0:200:4cff:fe17:573c]) by www.heimat.gr.jp (8.14.1/8.14.1) with ESMTP id l56EQqIS032130 for ; Wed, 6 Jun 2007 23:26:52 +0900 (JST) (envelope-from nakaji@ra333.heimat.gr.jp) Received: (from nakaji@localhost) by ra333.heimat.gr.jp (8.13.8/8.13.8/Submit) id l56EQqw5001519; Wed, 6 Jun 2007 23:26:52 +0900 (JST) (envelope-from nakaji) Message-Id: <200706061426.l56EQqw5001519@ra333.heimat.gr.jp> Date: Wed, 6 Jun 2007 23:26:52 +0900 (JST) From: NAKAJI Hiroyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113417: [x11/xkeyboard-config] keymap for pc98 is wrong X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: NAKAJI Hiroyuki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:40:04 -0000 >Number: 113417 >Category: ports >Synopsis: [x11/xkeyboard-config] keymap for pc98 is wrong >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 14:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: FreeBSD 7.0-CURRENT pc98 >Organization: >Environment: System: FreeBSD ra333.heimat.gr.jp 7.0-CURRENT FreeBSD 7.0-CURRENT #51: Sun Mar 4 23:13:34 JST 2007 root@ra333.heimat.gr.jp:/usr/obj/usr/src/sys/RA333 pc98 >Description: Xorg 7.2 has a keymap problem on pc98. The directory name for NEC PC-98x1 machines is changed from nec to nec_vndr, but in xkeyboard-config/rules/xfree98, nec is used. >How-To-Repeat: >Fix: A patch for ports/x11/xkeyboard-config. diff -urN -x CVS -x work /usr/ports/x11/xkeyboard-config/files/patch-rules_xfree98 ./files/patch-rules_xfree98 --- /usr/ports/x11/xkeyboard-config/files/patch-rules_xfree98 Thu Jan 1 09:00:00 1970 +++ ./files/patch-rules_xfree98 Wed Jun 6 23:17:07 2007 @@ -0,0 +1,11 @@ +--- rules/xfree98.orig Mon Jun 26 05:44:16 2006 ++++ rules/xfree98 Wed Jun 6 23:16:16 2007 +@@ -10,7 +10,7 @@ + jp106 = xfree98(jp106) pc(jp106) + + ! model layout = symbols +- pc98 nec/jp = nec/jp(pc98) ++ pc98 nec_vndr/jp = nec_vndr/jp(pc98) + jp106 jp = jp + + ! model layout = compat types >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:40:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B216B16A400; Wed, 6 Jun 2007 14:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8884513C4C5; Wed, 6 Jun 2007 14:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56EeBMC096610; Wed, 6 Jun 2007 14:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56EeB2l096606; Wed, 6 Jun 2007 14:40:11 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 14:40:11 GMT From: Edwin Groothuis Message-Id: <200706061440.l56EeB2l096606@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org Cc: Subject: Re: ports/113417: [x11/xkeyboard-config] keymap for pc98 is wrong X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:40:11 -0000 Synopsis: [x11/xkeyboard-config] keymap for pc98 is wrong Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 14:40:10 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113417 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 14:50:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9CF5A16A475 for ; Wed, 6 Jun 2007 14:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2A2AF13C45D for ; Wed, 6 Jun 2007 14:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Eo81C096916 for ; Wed, 6 Jun 2007 14:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Eo8Xf096914; Wed, 6 Jun 2007 14:50:08 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 14:50:08 GMT Resent-Message-Id: <200706061450.l56Eo8Xf096914@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Wesley Shields Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 073D116A468 for ; Wed, 6 Jun 2007 14:47:46 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id D67D313C4C8 for ; Wed, 6 Jun 2007 14:47:45 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 0F6425C2E; Wed, 6 Jun 2007 10:50:15 -0400 (EDT) Message-Id: <20070606145015.0F6425C2E@syn.atarininja.org> Date: Wed, 6 Jun 2007 10:50:15 -0400 (EDT) From: Wesley Shields To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113418: [MAINTAINER]: Update x11-clocks/xdaliclock X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Wesley Shields List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 14:50:09 -0000 >Number: 113418 >Category: ports >Synopsis: [MAINTAINER]: Update x11-clocks/xdaliclock >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 14:50:08 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Wesley Shields >Release: FreeBSD 6.2-RELEASE-p5 amd64 >Organization: >Environment: System: FreeBSD syn.csh.rit.edu 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #7: Thu May 24 09:18:59 EDT 2007 root@syn.csh.rit.edu:/usr/obj/usr/src/sys/SMP amd64 >Description: x11-clocks has a new version out. The attached patch updates the port. >How-To-Repeat: N/A >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11-clocks/xdaliclock/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- Makefile 19 May 2007 20:28:34 -0000 1.31 +++ Makefile 6 Jun 2007 14:12:25 -0000 @@ -6,8 +6,7 @@ # PORTNAME= xdaliclock -PORTVERSION= 2.23 -PORTREVISION= 1 +PORTVERSION= 2.24 CATEGORIES= x11-clocks MASTER_SITES= http://www.jwz.org/xdaliclock/ MASTER_SITE_SUBDIR= applications @@ -17,9 +16,9 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/X11 -USE_X_PREFIX= yes +USE_XLIB= yes GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} --mandir=${PREFIX}/man MAN1= xdaliclock.1 PLIST_FILES= bin/xdaliclock Index: distinfo =================================================================== RCS file: /home/ncvs/ports/x11-clocks/xdaliclock/distinfo,v retrieving revision 1.14 diff -u -r1.14 distinfo --- distinfo 4 Apr 2006 17:27:37 -0000 1.14 +++ distinfo 6 Jun 2007 14:12:25 -0000 @@ -1,3 +1,3 @@ -MD5 (xdaliclock-2.23.tar.gz) = 1c16ce93d8da5c1f10d462108695042c -SHA256 (xdaliclock-2.23.tar.gz) = 99318ace8486f8bf634fdb9677928daf20e7a0d613ad24d12f6f79ae4ab1e4b7 -SIZE (xdaliclock-2.23.tar.gz) = 596113 +MD5 (xdaliclock-2.24.tar.gz) = ec79206a48ec087aed8c6ec71de2ecfa +SHA256 (xdaliclock-2.24.tar.gz) = c9e4ba7662f2626156671c4ed5dc99a118fb59e6bca3d55dae3daa6fac235998 +SIZE (xdaliclock-2.24.tar.gz) = 678405 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 15:37:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06D2616A46B; Wed, 6 Jun 2007 15:37:05 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CF7FD13C4B0; Wed, 6 Jun 2007 15:37:04 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Fb4WD099531; Wed, 6 Jun 2007 15:37:04 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Fb4sX099527; Wed, 6 Jun 2007 15:37:04 GMT (envelope-from pav) Date: Wed, 6 Jun 2007 15:37:04 GMT From: Pav Lucistnik Message-Id: <200706061537.l56Fb4sX099527@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Cc: Subject: Re: ports/112067: ports/paraview 2.4.4 does not compile properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 15:37:05 -0000 Synopsis: ports/paraview 2.4.4 does not compile properly State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Wed Jun 6 14:14:09 UTC 2007 State-Changed-Why: Can't reproduce. Can you send more debugging output, like - unobscured command line (I wonder what cflags are present) - configure output Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Wed Jun 6 14:14:09 UTC 2007 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=112067 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 16:10:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFD1D16A400 for ; Wed, 6 Jun 2007 16:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9E3B713C448 for ; Wed, 6 Jun 2007 16:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56GA5OZ000885 for ; Wed, 6 Jun 2007 16:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56GA5pj000884; Wed, 6 Jun 2007 16:10:05 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 16:10:05 GMT Resent-Message-Id: <200706061610.l56GA5pj000884@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Ali Mashtizadeh" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FD3816A4C9 for ; Wed, 6 Jun 2007 16:06:48 +0000 (UTC) (envelope-from ali@mashtizadeh.org) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.freebsd.org (Postfix) with ESMTP id 4A5E513C54E for ; Wed, 6 Jun 2007 16:06:45 +0000 (UTC) (envelope-from ali@mashtizadeh.org) Received: by py-out-1112.google.com with SMTP id a29so347189pyi for ; Wed, 06 Jun 2007 09:06:44 -0700 (PDT) Received: by 10.65.97.18 with SMTP id z18mr1213545qbl.1181144449470; Wed, 06 Jun 2007 08:40:49 -0700 (PDT) Received: by 10.65.123.10 with HTTP; Wed, 6 Jun 2007 08:40:49 -0700 (PDT) Message-Id: <7c82bf760706060840y5eb52204o844ef7aa13352306@mail.gmail.com> Date: Wed, 6 Jun 2007 11:40:49 -0400 From: "Ali Mashtizadeh" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: ports/113420: New port: mail/p5-GMail-IMAPD Perl module - gmail IMAP proxy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 16:10:05 -0000 >Number: 113420 >Category: ports >Synopsis: New port: mail/p5-GMail-IMAPD Perl module - gmail IMAP proxy >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 16:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ali Mashtizadeh >Release: FreeBSD 7.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD redqueen.mashtizadeh.com 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Tue May 29 11:23:37 UTC 2007 root@:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: A new port for the GMail::IMAPD proxy, its a nice way to check your gmail. Its also my first port :-) but for sure not the last. --- p5-GMail-IMAPD.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-GMail-IMAPD # p5-GMail-IMAPD/Makefile # p5-GMail-IMAPD/pkg-descr # p5-GMail-IMAPD/pkg-plist # echo c - p5-GMail-IMAPD mkdir -p p5-GMail-IMAPD > /dev/null 2>&1 echo x - p5-GMail-IMAPD/Makefile sed 's/^X//' >p5-GMail-IMAPD/Makefile << 'END-of-p5-GMail-IMAPD/Makefile' X# New ports collection makefile for: GMail-IMAPD X# Date created: Jun 4, 2007 X# Whom: Ali Mashtizadeh X# X# $FreeBSD$ X# X XPORTNAME= GMail-IMAPD XPORTVERSION= 0.94 XCATEGORIES= mail perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= GMail XPKGNAMEPREFIX= p5- X XMAINTAINER= mashtizadeh@gmail.com XCOMMENT= Perl IMAP4 gateway to Google's webmail service X XBUILD_DEPENDS= ${SITE_PERL}/Mail/Webmail/Gmail.pm:${PORTSDIR}/mail/p5-Mail-Webmail-Gmail XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= GMail::IMAPD.3 X X.include X Xpost-patch: X.if ${PERL_LEVEL} < 500601 X @${PERL} -pi -e 's/\r//g;s/^our/my/g' ${WRKSRC}/lib/GMail/IMAPD.pm X.endif X X.include END-of-p5-GMail-IMAPD/Makefile echo x - p5-GMail-IMAPD/pkg-descr sed 's/^X//' >p5-GMail-IMAPD/pkg-descr << 'END-of-p5-GMail-IMAPD/pkg-descr' XThis module allows users to access their Gmail messages with an IMAP Xclient by running a server which accepts IMAP connections. X XCurrently this module supports only a subset of the IMAP4 protocol. X XWWW: http://search.cpan.org/dist/GMail-IMAPD/ X X- Ali Mashtizadeh Xali@mashtizadeh.org END-of-p5-GMail-IMAPD/pkg-descr echo x - p5-GMail-IMAPD/pkg-plist sed 's/^X//' >p5-GMail-IMAPD/pkg-plist << 'END-of-p5-GMail-IMAPD/pkg-plist' X%%SITE_PERL%%/GMail/IMAPD.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/GMail/IMAPD/.packlist X@dirrmtry %%SITE_PERL%%/GMail X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/GMail END-of-p5-GMail-IMAPD/pkg-plist exit --- p5-GMail-IMAPD.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 16:50:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4C7F16A46B for ; Wed, 6 Jun 2007 16:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C5B9613C457 for ; Wed, 6 Jun 2007 16:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Go8Rf004807 for ; Wed, 6 Jun 2007 16:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Go8k7004806; Wed, 6 Jun 2007 16:50:08 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 16:50:08 GMT Resent-Message-Id: <200706061650.l56Go8k7004806@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, chinsan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC5C416A477 for ; Wed, 6 Jun 2007 16:44:21 +0000 (UTC) (envelope-from chinsan@blog.homiya.com) Received: from blog.homiya.com (blog.homiya.com [61.67.220.71]) by mx1.freebsd.org (Postfix) with ESMTP id BE2D813C46E for ; Wed, 6 Jun 2007 16:44:21 +0000 (UTC) (envelope-from chinsan@blog.homiya.com) Received: by blog.homiya.com (Postfix, from userid 1001) id 970AE5081D; Thu, 7 Jun 2007 00:44:16 +0800 (CST) Message-Id: <20070606164416.970AE5081D@blog.homiya.com> Date: Thu, 7 Jun 2007 00:44:16 +0800 (CST) From: chinsan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113421: [NEW PORT] www/p5-chklinks: A non-threaded Perl link checker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 16:50:09 -0000 >Number: 113421 >Category: ports >Synopsis: [NEW PORT] www/p5-chklinks: A non-threaded Perl link checker >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 16:50:08 GMT 2007 >Closed-Date: >Last-Modified: >Originator: chinsan >Release: FreeBSD 6.2-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD blog.homiya.com 6.2-STABLE FreeBSD 6.2-STABLE #1: Fri May 11 02:18:47 CST 2007 >Description: chklinks is a Perl link checker. It helps finding broken links on your website. chklinks differs from linkchecker in that chklinks is non- threaded. It does not raises many simultaneously connections for its job. It won't run out of the resources and crash your system in a moment. This is certainly more desirable for most webmasters and users. WWW: http://search.cpan.org/dist/chklinks/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-chklinks-3.04.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-chklinks # p5-chklinks/Makefile # p5-chklinks/distinfo # p5-chklinks/pkg-descr # p5-chklinks/pkg-plist # echo c - p5-chklinks mkdir -p p5-chklinks > /dev/null 2>&1 echo x - p5-chklinks/Makefile sed 's/^X//' >p5-chklinks/Makefile << 'END-of-p5-chklinks/Makefile' X# New ports collection makefile for: p5-chklinks X# Date created: 2007/06/07 X# Whom: chinsan X# X# $FreeBSD$ X# X XPORTNAME= chklinks XPORTVERSION= 3.04 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Locale/IMACAT XPKGNAMEPREFIX= p5- X XMAINTAINER= chinsan@FreeBSD.org XCOMMENT= A non-threaded Perl link checker X XBUILD_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ X ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ X ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes XMAN1= chklinks.1 X X.include END-of-p5-chklinks/Makefile echo x - p5-chklinks/distinfo sed 's/^X//' >p5-chklinks/distinfo << 'END-of-p5-chklinks/distinfo' XMD5 (chklinks-3.04.tar.gz) = f8319382e9733c289c623c066b015a4d XSHA256 (chklinks-3.04.tar.gz) = 1f6e1d5cf3f4bd1cbd7cfad65a0a33f0c52fdeb532a0ad91d78573422b2e57ce XSIZE (chklinks-3.04.tar.gz) = 64917 END-of-p5-chklinks/distinfo echo x - p5-chklinks/pkg-descr sed 's/^X//' >p5-chklinks/pkg-descr << 'END-of-p5-chklinks/pkg-descr' Xchklinks is a Perl link checker. It helps finding broken links on your Xwebsite. X Xchklinks differs from linkchecker in that chklinks is non- threaded. It does Xnot raises many simultaneously connections for its job. It won't run out of Xthe resources and crash your system in a moment. This is certainly more Xdesirable for most webmasters and users. X XWWW: http://search.cpan.org/dist/chklinks/ END-of-p5-chklinks/pkg-descr echo x - p5-chklinks/pkg-plist sed 's/^X//' >p5-chklinks/pkg-plist << 'END-of-p5-chklinks/pkg-plist' Xbin/chklinks X%%SITE_PERL%%/%%PERL_ARCH%%/auto/chklinks/.packlist X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/chklinks END-of-p5-chklinks/pkg-plist exit --- p5-chklinks-3.04.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 16:50:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 993B816A469; Wed, 6 Jun 2007 16:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6C90613C48A; Wed, 6 Jun 2007 16:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56GoFWw004933; Wed, 6 Jun 2007 16:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56GoFDP004929; Wed, 6 Jun 2007 16:50:15 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 16:50:15 GMT From: Edwin Groothuis Message-Id: <200706061650.l56GoFDP004929@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org Cc: Subject: Re: ports/113421: [NEW PORT] www/p5-chklinks: A non-threaded Perl link checker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 16:50:15 -0000 Synopsis: [NEW PORT] www/p5-chklinks: A non-threaded Perl link checker Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 16:50:14 UTC 2007 Responsible-Changed-Why: rafan@ wants this PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113421 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:00:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B074616A46C for ; Wed, 6 Jun 2007 17:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 78A0613C483 for ; Wed, 6 Jun 2007 17:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56H09Ov005198 for ; Wed, 6 Jun 2007 17:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56H09sF005197; Wed, 6 Jun 2007 17:00:09 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 17:00:09 GMT Resent-Message-Id: <200706061700.l56H09sF005197@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, chinsan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D42F716A46B for ; Wed, 6 Jun 2007 16:51:20 +0000 (UTC) (envelope-from chinsan@blog.homiya.com) Received: from blog.homiya.com (blog.homiya.com [61.67.220.71]) by mx1.freebsd.org (Postfix) with ESMTP id A606913C4AD for ; Wed, 6 Jun 2007 16:51:20 +0000 (UTC) (envelope-from chinsan@blog.homiya.com) Received: by blog.homiya.com (Postfix, from userid 1001) id E097A5080C; Thu, 7 Jun 2007 00:21:57 +0800 (CST) Message-Id: <20070606162157.E097A5080C@blog.homiya.com> Date: Thu, 7 Jun 2007 00:21:57 +0800 (CST) From: chinsan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113422: [MAINTAINER] converters/p5-JSON-DWIW: update to 0.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:00:09 -0000 >Number: 113422 >Category: ports >Synopsis: [MAINTAINER] converters/p5-JSON-DWIW: update to 0.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 17:00:08 GMT 2007 >Closed-Date: >Last-Modified: >Originator: chinsan >Release: FreeBSD 6.2-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD blog.homiya.com 6.2-STABLE FreeBSD 6.2-STABLE #1: Fri May 11 02:18:47 CST 2007 >Description: - Update to 0.13 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-JSON-DWIW-0.13.patch begins here --- diff -ruN --exclude=CVS /usr/ports/converters/p5-JSON-DWIW/Makefile /home/chinsan/projects/p5-JSON-DWIW/Makefile --- /usr/ports/converters/p5-JSON-DWIW/Makefile Sun May 27 04:02:33 2007 +++ /home/chinsan/projects/p5-JSON-DWIW/Makefile Wed Jun 6 23:28:15 2007 @@ -6,7 +6,7 @@ # PORTNAME= JSON-DWIW -PORTVERSION= 0.11 +PORTVERSION= 0.13 CATEGORIES= converters perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Apache/DOWENS diff -ruN --exclude=CVS /usr/ports/converters/p5-JSON-DWIW/distinfo /home/chinsan/projects/p5-JSON-DWIW/distinfo --- /usr/ports/converters/p5-JSON-DWIW/distinfo Sun May 27 04:02:33 2007 +++ /home/chinsan/projects/p5-JSON-DWIW/distinfo Wed Jun 6 23:28:29 2007 @@ -1,3 +1,3 @@ -MD5 (JSON-DWIW-0.11.tar.gz) = a271b13e6f59edc5f9e32058d124d93f -SHA256 (JSON-DWIW-0.11.tar.gz) = ebffc7ee4a6a0294d393cd14a61ec54e0cc3592ce9b1e63fcd40ad0f03abb81a -SIZE (JSON-DWIW-0.11.tar.gz) = 22421 +MD5 (JSON-DWIW-0.13.tar.gz) = 6b640304a73bee260b55bb0b87e59dfc +SHA256 (JSON-DWIW-0.13.tar.gz) = 453000a48aedcf243aa2d85eb6f5c9e0aa1481d1d495a209f93f36aba8c06cc3 +SIZE (JSON-DWIW-0.13.tar.gz) = 22972 --- p5-JSON-DWIW-0.13.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:00:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F77F16A421 for ; Wed, 6 Jun 2007 17:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2AD2E13C487 for ; Wed, 6 Jun 2007 17:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56H0ArZ005251 for ; Wed, 6 Jun 2007 17:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56H09Eh005250; Wed, 6 Jun 2007 17:00:09 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 17:00:09 GMT Resent-Message-Id: <200706061700.l56H09Eh005250@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Fechner Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2517816A41F for ; Wed, 6 Jun 2007 16:55:14 +0000 (UTC) (envelope-from root@fechner.net) Received: from michelle.lostinspace.de (michelle.lostinspace.de [62.146.248.226]) by mx1.freebsd.org (Postfix) with ESMTP id 5C0C313C44B for ; Wed, 6 Jun 2007 16:55:13 +0000 (UTC) (envelope-from root@fechner.net) Received: from server.idefix.lan (cl-70.muc-02.de.sixxs.net [IPv6:2001:a60:f000:45::2]) (authenticated bits=0) by michelle.lostinspace.de (8.13.8/8.13.8) with ESMTP id l56GflbD065724 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 6 Jun 2007 18:41:52 +0200 (CEST) (envelope-from root@fechner.net) Received: from root by server.idefix.lan with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1HvyWM-000MNa-9s for FreeBSD-gnats-submit@freebsd.org; Wed, 06 Jun 2007 18:38:06 +0200 Message-Id: Date: Wed, 06 Jun 2007 18:38:06 +0200 From: Matthias Fechner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113423: Update for ports net/freenx to version 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Fechner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:00:10 -0000 >Number: 113423 >Category: ports >Synopsis: Update for ports net/freenx to version 0.6.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 17:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Matthias Fechner >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD server.idefix.lan 6.2-STABLE FreeBSD 6.2-STABLE #21: Tue Apr 24 15:48:46 CEST 2007 root@server.idefix.lan:/usr/obj/usr/src/sys/SERVER2 i386 >Description: Update of freenx to version 0.6.0, someone need to update net/nxserver too. >How-To-Repeat: >Fix: --- update-freenx-0.6.0.patch begins here --- diff -r -u freenx.orig/Makefile freenx/Makefile --- freenx.orig/Makefile Sat May 19 22:18:20 2007 +++ freenx/Makefile Wed Jun 6 17:50:57 2007 @@ -6,8 +6,8 @@ # PORTNAME= freenx -PORTVERSION= 0.4.4 -PORTREVISION= 3 +PORTVERSION= 0.6.0 +#PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://www.iem.pw.edu.pl/ftp/distfiles/ @@ -27,15 +27,15 @@ do-install: ${MKDIR} ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxclient ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxnode ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxnode-login ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxserver ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxsetup ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxkeygen ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxloadconfig ${NXPREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/nxprint ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxclient ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxnode ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxnode-login ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxserver ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxsetup ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxkeygen ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxloadconfig ${NXPREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/nxprint ${NXPREFIX}/bin ${MKDIR} ${NXPREFIX}/etc/nxserver - ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.4.4/node.conf.sample ${NXPREFIX}/etc/nxserver + ${INSTALL_SCRIPT} ${WRKSRC}/freenx-0.6.0/node.conf.sample ${NXPREFIX}/etc/nxserver .include diff -r -u freenx.orig/distinfo freenx/distinfo --- freenx.orig/distinfo Sun Jan 22 22:23:02 2006 +++ freenx/distinfo Wed Jun 6 17:51:58 2007 @@ -1,3 +1,3 @@ -MD5 (freenx-0.4.4.tar.gz) = 4d92f80718edbaacd875404bcb2850b6 -SHA256 (freenx-0.4.4.tar.gz) = 8f661edbf9137e31df4c5e6134cabc89921c0e9a742943264f3d7e9dbeae8674 -SIZE (freenx-0.4.4.tar.gz) = 46111 +MD5 (freenx-0.6.0.tar.gz) = 504aaa2c3c93c36eefab74e2b8a6506e +SHA256 (freenx-0.6.0.tar.gz) = 928a4be2ecdfb560abc93737d049fa5b2459e64c431d4aa43e46c6c4df52b3ca +SIZE (freenx-0.6.0.tar.gz) = 110758 diff -r -u freenx.orig/files/patch-freenx-nxclient freenx/files/patch-freenx-nxclient --- freenx.orig/files/patch-freenx-nxclient Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxclient Wed Jun 6 17:54:44 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxclient.orig Fri Sep 10 10:04:51 2004 -+++ freenx-0.4.4/nxclient Fri Sep 17 12:24:22 2004 +--- freenx-0.6.0/nxclient.orig Fri Sep 10 10:04:51 2004 ++++ freenx-0.6.0/nxclient Fri Sep 17 12:24:22 2004 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash diff -r -u freenx.orig/files/patch-freenx-nxkeygen freenx/files/patch-freenx-nxkeygen --- freenx.orig/files/patch-freenx-nxkeygen Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxkeygen Wed Jun 6 17:54:37 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxkeygen.orig Sun Feb 13 20:52:08 2005 -+++ freenx-0.4.4/nxkeygen Mon Mar 28 15:26:50 2005 +--- freenx-0.6.0/nxkeygen.orig Sun Feb 13 20:52:08 2005 ++++ freenx-0.6.0/nxkeygen Mon Mar 28 15:26:50 2005 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash diff -r -u freenx.orig/files/patch-freenx-nxloadconfig freenx/files/patch-freenx-nxloadconfig --- freenx.orig/files/patch-freenx-nxloadconfig Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxloadconfig Wed Jun 6 17:54:27 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxloadconfig.orig Sat Aug 6 09:53:27 2005 -+++ freenx-0.4.4/nxloadconfig Tue Aug 9 15:15:01 2005 +--- freenx-0.6.0/nxloadconfig.orig Sat Aug 6 09:53:27 2005 ++++ freenx-0.6.0/nxloadconfig Tue Aug 9 15:15:01 2005 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash diff -r -u freenx.orig/files/patch-freenx-nxnode freenx/files/patch-freenx-nxnode --- freenx.orig/files/patch-freenx-nxnode Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxnode Wed Jun 6 17:53:35 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxnode.orig Tue Aug 2 11:20:18 2005 -+++ freenx-0.4.4/nxnode Tue Aug 9 15:08:43 2005 +--- freenx-0.6.0/nxnode.orig Tue Aug 2 11:20:18 2005 ++++ freenx-0.6.0/nxnode Tue Aug 9 15:08:43 2005 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash diff -r -u freenx.orig/files/patch-freenx-nxnode-login freenx/files/patch-freenx-nxnode-login --- freenx.orig/files/patch-freenx-nxnode-login Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxnode-login Wed Jun 6 17:53:28 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxnode-login.orig Tue Jun 28 12:15:43 2005 -+++ freenx-0.4.4/nxnode-login Tue Jun 28 11:53:16 2005 +--- freenx-0.6.0/nxnode-login.orig Tue Jun 28 12:15:43 2005 ++++ freenx-0.6.0/nxnode-login Tue Jun 28 11:53:16 2005 @@ -1,4 +1,4 @@ -#!/usr/bin/expect +#!/usr/local/bin/expect diff -r -u freenx.orig/files/patch-freenx-nxprint freenx/files/patch-freenx-nxprint --- freenx.orig/files/patch-freenx-nxprint Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxprint Wed Jun 6 17:53:18 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxprint.orig Mon Jun 27 13:38:09 2005 -+++ freenx-0.4.4/nxprint Mon Jun 27 13:53:08 2005 +--- freenx-0.6.0/nxprint.orig Mon Jun 27 13:38:09 2005 ++++ freenx-0.6.0/nxprint Mon Jun 27 13:53:08 2005 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash diff -r -u freenx.orig/files/patch-freenx-nxserver freenx/files/patch-freenx-nxserver --- freenx.orig/files/patch-freenx-nxserver Sat Sep 10 01:45:26 2005 +++ freenx/files/patch-freenx-nxserver Wed Jun 6 17:53:09 2007 @@ -1,5 +1,5 @@ ---- freenx-0.4.4/nxserver.orig Fri Aug 5 12:38:44 2005 -+++ freenx-0.4.4/nxserver Tue Aug 9 15:24:19 2005 +--- freenx-0.6.0/nxserver.orig Fri Aug 5 12:38:44 2005 ++++ freenx-0.6.0/nxserver Tue Aug 9 15:24:19 2005 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash diff -r -u freenx.orig/files/patch-freenx-nxsetup freenx/files/patch-freenx-nxsetup --- freenx.orig/files/patch-freenx-nxsetup Mon Mar 27 12:06:23 2006 +++ freenx/files/patch-freenx-nxsetup Wed Jun 6 18:27:02 2007 @@ -1,47 +1,51 @@ ---- freenx-0.4.4/nxsetup.unported Fri Feb 3 20:52:09 2006 -+++ freenx-0.4.4/nxsetup Fri Dec 30 18:29:50 2005 +--- freenx-0.6.0/nxsetup.orig Tue Jan 23 04:22:50 2007 ++++ freenx-0.6.0/nxsetup Wed Jun 6 18:25:57 2007 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash # Coypright (c) 2004-2005 by Fabian Franz . # 2005 by Jon Severinsson . -@@ -96,7 +96,7 @@ +@@ -135,7 +135,7 @@ then egrep "^nx:" /etc/passwd >/dev/null else - getent passwd nx >/dev/null -+ cat /etc/passwd |egrep -q "^nx:" >/dev/null ++ cat /etc/passwd |egrep -q "^nx:" >/dev/nullOB fi } - -@@ -113,6 +113,16 @@ - USERADD_OPTIONS="--system --home $NX_HOME_DIR --shell $PATH_BIN/nxserver" - [ -n "$SETUP_GID" ] && USERADD_OPTIONS="--gid $SETUP_GID $USERADD_OPTIONS" + nx_group_exists() +@@ -166,6 +166,15 @@ + ! nx_group_exists && addgroup --system --quiet $GROUPADD_OPTIONS nx adduser $USERADD_OPTIONS nx -+ -+ # FreeBSD? + ++ # FreeBSD + elif [ "$(uname)" = "FreeBSD" ] -+ then -+ USERADD_OPTIONS="-d $NX_HOME_DIR -s $PATH_BIN/nxserver" -+ [ -n "$SETUP_UID" ] && USERADD_OPTIONS="-u $SETUP_UID $USERADD_OPTIONS" -+ [ -n "$SETUP_GID" ] && USERADD_OPTIONS="-g $SETUP_GID $USERADD_OPTIONS" -+ [ -n "$SETUP_GID" ] && pw groupadd nx -g $SETUP_GID -+ pw useradd nx $USERADD_OPTIONS -+ ++ then ++ USERADD_OPTIONS="-d $NX_HOME_DIR -s $PATH_BIN/nxserver" ++ [ -n "$SETUP_UID" ] && USERADD_OPTIONS="-u $SETUP_UID $USERADD_OPTIONS" ++ [ -n "$SETUP_GID" ] && USERADD_OPTIONS="-g $SETUP_GID $USERADD_OPTIONS" ++ [ -n "$SETUP_GID" ] && pw groupadd nx -g $SETUP_GID ++ pw useradd nx $USERADD_OPTIONS ++ # no, its a "normal" useradd else - USERADD_OPTIONS="-d $NX_HOME_DIR -s $PATH_BIN/nxserver" -@@ -142,15 +152,16 @@ - install_nx() + USERADD_OPTIONS="-g nx -d $NX_HOME_DIR -s $PATH_BIN/nxserver" +@@ -191,7 +200,6 @@ + useradd $USERADD_OPTIONS nx + fi + +- + fi + } + +@@ -199,14 +207,14 @@ { set -e -- + - if [ "$(pidof sshd 2>/dev/null)" = "" ] -+ + [ -f /var/run/sshd.pid ] && MAYBE_PID=`cat /var/run/sshd.pid 2>/dev/null` + if test -z "$MAYBE_PID" -+ then echo -n "Starting ssh service ..." # Generate Host keys if they are not available, yet @@ -53,12 +57,9 @@ echo "done" fi -@@ -248,13 +259,12 @@ - cat /etc/ssh/ssh_host_rsa_key.pub >> $NX_HOME_DIR/.ssh/known_hosts - fi +@@ -322,10 +330,11 @@ + echo "done" -- echo "done" -- echo -n "Setting up permissions ..." - chown -R nx:root $NX_SESS_DIR - chown -R nx:root $NX_ETC_DIR @@ -72,7 +73,7 @@ echo "done" } -@@ -268,7 +278,7 @@ +@@ -389,7 +398,7 @@ then luserdel nx else --- update-freenx-0.6.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:00:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B69CC16A480; Wed, 6 Jun 2007 17:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8D7FE13C45E; Wed, 6 Jun 2007 17:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56H0JHJ005383; Wed, 6 Jun 2007 17:00:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56H0JCj005379; Wed, 6 Jun 2007 17:00:19 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 17:00:19 GMT From: Edwin Groothuis Message-Id: <200706061700.l56H0JCj005379@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org Cc: Subject: Re: ports/113422: [MAINTAINER] converters/p5-JSON-DWIW: update to 0.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:00:19 -0000 Synopsis: [MAINTAINER] converters/p5-JSON-DWIW: update to 0.13 Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 17:00:18 UTC 2007 Responsible-Changed-Why: rafan@ wants this PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113422 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:00:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3385616A421; Wed, 6 Jun 2007 17:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 03B2013C44C; Wed, 6 Jun 2007 17:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56H0QaD005486; Wed, 6 Jun 2007 17:00:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56H0QGK005482; Wed, 6 Jun 2007 17:00:26 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 17:00:26 GMT From: Edwin Groothuis Message-Id: <200706061700.l56H0QGK005482@freefall.freebsd.org> To: idefix@fechner.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113423: Update for ports net/freenx to version 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:00:27 -0000 Synopsis: Update for ports net/freenx to version 0.6.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jun 6 17:00:26 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113423 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:12:51 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85B3716A421; Wed, 6 Jun 2007 17:12:51 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5CCE713C468; Wed, 6 Jun 2007 17:12:51 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from freefall.freebsd.org (ahze@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HCpY6006066; Wed, 6 Jun 2007 17:12:51 GMT (envelope-from ahze@freefall.freebsd.org) Received: (from ahze@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HCprg006062; Wed, 6 Jun 2007 17:12:51 GMT (envelope-from ahze) Date: Wed, 6 Jun 2007 17:12:51 GMT From: Michael Johnson Message-Id: <200706061712.l56HCprg006062@freefall.freebsd.org> To: ahze@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ahze@FreeBSD.org Cc: Subject: Re: ports/113420: New port: mail/p5-GMail-IMAPD Perl module - gmail IMAP proxy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:12:51 -0000 Synopsis: New port: mail/p5-GMail-IMAPD Perl module - gmail IMAP proxy Responsible-Changed-From-To: freebsd-ports-bugs->ahze Responsible-Changed-By: ahze Responsible-Changed-When: Wed Jun 6 17:12:38 UTC 2007 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=113420 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:20:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 761B416A46D for ; Wed, 6 Jun 2007 17:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 521A113C48A for ; Wed, 6 Jun 2007 17:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HKENG006425 for ; Wed, 6 Jun 2007 17:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HKEiN006424; Wed, 6 Jun 2007 17:20:14 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 17:20:14 GMT Message-Id: <200706061720.l56HKEiN006424@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dewey hylton Cc: Subject: Re: ports/113423: Update for ports net/freenx to version 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dewey hylton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:20:14 -0000 The following reply was made to PR ports/113423; it has been noted by GNATS. From: dewey hylton To: bug-followup@FreeBSD.ORG Cc: Subject: Re: ports/113423: Update for ports net/freenx to version 0.6.0 Date: Wed, 6 Jun 2007 13:22:39 -0400 Quoting Edwin Groothuis : > Maintainer of net/freenx, > > Please note that PR ports/113423 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/113423 > > -- > Edwin Groothuis > edwin@FreeBSD.org > the patch comment notes that "someone" needs to update net/nxserver ... net/freenx and net/nxserver go hand-in-hand and updating freenx without updating nxserver is fruitless (will not work). net/freenx has been purposefully left at the old version in the ports tree so that the two work together properly, please do not commit at this time. now, if someone wants to help port the new version of net/nxserver we'll be in business ;) ... i have been unable to get all components working properly so haven't committed it myself. -- dewey hylton freenx@deweyonline.com From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:33:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8E3816A468; Wed, 6 Jun 2007 17:33:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AFEA913C447; Wed, 6 Jun 2007 17:33:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HXKLb008437; Wed, 6 Jun 2007 17:33:20 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HXKru008433; Wed, 6 Jun 2007 17:33:20 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:33:20 GMT From: Martin Wilke Message-Id: <200706061733.l56HXKru008433@freefall.freebsd.org> To: valerio.daelli@gmail.com, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113259: security/ossec-hids-server, multiple critical problems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:33:20 -0000 Synopsis: security/ossec-hids-server, multiple critical problems Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:33:19 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113259 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:33:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78C8816A46C; Wed, 6 Jun 2007 17:33:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5034813C45B; Wed, 6 Jun 2007 17:33:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HXRxJ008502; Wed, 6 Jun 2007 17:33:27 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HXQsb008498; Wed, 6 Jun 2007 17:33:26 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:33:26 GMT From: Martin Wilke Message-Id: <200706061733.l56HXQsb008498@freefall.freebsd.org> To: valerio.daelli@gmail.com, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113260: security/ossec-hids-client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:33:27 -0000 Synopsis: security/ossec-hids-client Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:33:26 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113260 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:33:33 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAD3816A46B; Wed, 6 Jun 2007 17:33:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C2D0713C45D; Wed, 6 Jun 2007 17:33:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HXXkM008567; Wed, 6 Jun 2007 17:33:33 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HXXlB008563; Wed, 6 Jun 2007 17:33:33 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:33:33 GMT From: Martin Wilke Message-Id: <200706061733.l56HXXlB008563@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113251: maintainer update: math/qtiplot and dependencies (part 1) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:33:34 -0000 Synopsis: maintainer update: math/qtiplot and dependencies (part 1) Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:33:32 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113251 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:33:40 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C45D16A4A7; Wed, 6 Jun 2007 17:33:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 743AD13C457; Wed, 6 Jun 2007 17:33:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HXend008632; Wed, 6 Jun 2007 17:33:40 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HXe5D008628; Wed, 6 Jun 2007 17:33:40 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:33:40 GMT From: Martin Wilke Message-Id: <200706061733.l56HXe5D008628@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113252: maintainer update: math/qtiplot and dependencies (part 2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:33:40 -0000 Synopsis: maintainer update: math/qtiplot and dependencies (part 2) Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:33:39 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113252 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:36:44 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25C8716A473; Wed, 6 Jun 2007 17:36:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EE1E613C483; Wed, 6 Jun 2007 17:36:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HahB3008713; Wed, 6 Jun 2007 17:36:43 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Hah4Z008709; Wed, 6 Jun 2007 17:36:43 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:36:43 GMT From: Martin Wilke Message-Id: <200706061736.l56Hah4Z008709@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113254: maintainer update: math/qtiplot and dependencies (part 3) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:36:44 -0000 Synopsis: maintainer update: math/qtiplot and dependencies (part 3) Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:36:43 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113254 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:36:50 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63F3916A46E; Wed, 6 Jun 2007 17:36:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 379C013C468; Wed, 6 Jun 2007 17:36:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HanfA008778; Wed, 6 Jun 2007 17:36:49 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HanQ4008774; Wed, 6 Jun 2007 17:36:49 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:36:49 GMT From: Martin Wilke Message-Id: <200706061736.l56HanQ4008774@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113255: maintainer update: math/qtiplot and dependencies (part 4) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:36:50 -0000 Synopsis: maintainer update: math/qtiplot and dependencies (part 4) Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:36:49 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113255 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:36:56 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38ED216A474; Wed, 6 Jun 2007 17:36:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1101B13C457; Wed, 6 Jun 2007 17:36:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Hat3D008843; Wed, 6 Jun 2007 17:36:55 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Hati4008839; Wed, 6 Jun 2007 17:36:55 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:36:55 GMT From: Martin Wilke Message-Id: <200706061736.l56Hati4008839@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113258: new port: net/iffinder, Tools for find other interfaces for same router X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:36:56 -0000 Synopsis: new port: net/iffinder, Tools for find other interfaces for same router Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:36:55 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113258 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:37:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEF1D16A41F; Wed, 6 Jun 2007 17:37:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C73AA13C44B; Wed, 6 Jun 2007 17:37:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Hb4i1008936; Wed, 6 Jun 2007 17:37:04 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Hb4E5008932; Wed, 6 Jun 2007 17:37:04 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 17:37:04 GMT From: Martin Wilke Message-Id: <200706061737.l56Hb4E5008932@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113288: [MAINTAINER] www/fluxcms: update to latest 1.6.0 snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:37:05 -0000 Synopsis: [MAINTAINER] www/fluxcms: update to latest 1.6.0 snapshot Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 17:37:04 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113288 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:50:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F234F16A421 for ; Wed, 6 Jun 2007 17:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CE41A13C44C for ; Wed, 6 Jun 2007 17:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Ho3E2009279 for ; Wed, 6 Jun 2007 17:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Ho38J009278; Wed, 6 Jun 2007 17:50:03 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 17:50:03 GMT Resent-Message-Id: <200706061750.l56Ho38J009278@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3968D16A46C for ; Wed, 6 Jun 2007 17:44:06 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id A79E413C4AE for ; Wed, 6 Jun 2007 17:44:05 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from clamav by cp65.agava.net with drweb-scanned (Exim 4.44 (FreeBSD)) id 1HvzY7-000KRW-Nm for FreeBSD-gnats-submit@freebsd.org; Wed, 06 Jun 2007 21:43:59 +0400 Received: from [213.148.29.33] (helo=nexii.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.44 (FreeBSD)) id 1HvzY7-000KRH-K5 for FreeBSD-gnats-submit@freebsd.org; Wed, 06 Jun 2007 21:43:59 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id 7EA8717047 for ; Wed, 6 Jun 2007 21:44:04 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 9C153417C; Wed, 6 Jun 2007 21:44:25 +0400 (MSD) Message-Id: <20070606174425.9C153417C@hades.panopticon> Date: Wed, 6 Jun 2007 21:44:25 +0400 (MSD) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113425: [PATCH] bsd.port.mk: make COPYTREE_* work under plain user X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:50:09 -0000 >Number: 113425 >Category: ports >Synopsis: [PATCH] bsd.port.mk: make COPYTREE_* work under plain user >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 17:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 6.1-RELEASE-p12 i386 >Organization: >Environment: System: FreeBSD hades.panopticon 6.1-RELEASE-p12 FreeBSD 6.1-RELEASE-p12 #0: Tue Jan 16 23:12:21 MSK 2007 amdmi3@hades.panopticon:/usr/obj/usr/src/sys/HADES i386 >Description: When using ports as a plain user (not root), INSTALL_* macros don't try to change ownership of installed files, but COPYTREE_* macros do, so an attempt to install a port that uses COPYTREE_* macros under non-root will fail. The patch attached fixes this by adding alternative COPYTREE_* macros to be used when running as non-root. Also COPYTREE_* macros are moved closer to INSTALL_, where they do logically belong. >How-To-Repeat: Try to install any port that uses COPYTREE_* macros as a plain user. >Fix: --- bsd.port.mk.patch begins here --- --- bsd.port.mk.orig Wed Jun 6 21:29:52 2007 +++ bsd.port.mk Wed Jun 6 21:32:28 2007 @@ -2201,18 +2201,6 @@ REINPLACE_ARGS?= -i.bak REINPLACE_CMD?= ${SED} ${REINPLACE_ARGS} -# Macro for coping entire directory tree with correct permissions -COPYTREE_BIN= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ - 2>&1) && \ - ${CHOWN} -R ${BINOWN}:${BINGRP} $$1 && \ - ${FIND} $$1 -type d -exec chmod 755 {} \; && \ - ${FIND} $$1 -type f -exec chmod ${BINMODE} {} \;' -- -COPYTREE_SHARE= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ - 2>&1) && \ - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} $$1 && \ - ${FIND} $$1/ -type d -exec chmod 755 {} \; && \ - ${FIND} $$1/ -type f -exec chmod ${SHAREMODE} {} \;' -- - # Names of cookies used to skip already completed stages EXTRACT_COOKIE?= ${WRKDIR}/.extract_done.${PORTNAME}.${PREFIX:S/\//_/g} CONFIGURE_COOKIE?= ${WRKDIR}/.configure_done.${PORTNAME}.${PREFIX:S/\//_/g} @@ -2380,6 +2368,29 @@ BSD_INSTALL_MAN="${INSTALL_MAN}" MAKE_ENV+= ${INSTALL_MACROS} SCRIPTS_ENV+= ${INSTALL_MACROS} + +# Macro for coping entire directory tree with correct permissions +.if ${UID} == 0 +COPYTREE_BIN= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ + 2>&1) && \ + ${CHOWN} -R ${BINOWN}:${BINGRP} $$1 && \ + ${FIND} $$1 -type d -exec chmod 755 {} \; && \ + ${FIND} $$1 -type f -exec chmod ${BINMODE} {} \;' -- +COPYTREE_SHARE= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ + 2>&1) && \ + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} $$1 && \ + ${FIND} $$1/ -type d -exec chmod 755 {} \; && \ + ${FIND} $$1/ -type f -exec chmod ${SHAREMODE} {} \;' -- +.else +COPYTREE_BIN= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ + 2>&1) && \ + ${FIND} $$1 -type d -exec chmod 755 {} \; && \ + ${FIND} $$1 -type f -exec chmod ${BINMODE} {} \;' -- +COPYTREE_SHARE= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ + 2>&1) && \ + ${FIND} $$1/ -type d -exec chmod 755 {} \; && \ + ${FIND} $$1/ -type f -exec chmod ${SHAREMODE} {} \;' -- +.endif # The user can override the NO_PACKAGE by specifying this from # the make command line --- bsd.port.mk.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 17:50:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9162016A41F; Wed, 6 Jun 2007 17:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6279913C46A; Wed, 6 Jun 2007 17:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56HoGw2009460; Wed, 6 Jun 2007 17:50:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56HoGmc009455; Wed, 6 Jun 2007 17:50:16 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 17:50:16 GMT From: Edwin Groothuis Message-Id: <200706061750.l56HoGmc009455@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Cc: Subject: Re: ports/113425: [PATCH] bsd.port.mk: make COPYTREE_* work under plain user X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 17:50:16 -0000 Synopsis: [PATCH] bsd.port.mk: make COPYTREE_* work under plain user Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 17:50:15 UTC 2007 Responsible-Changed-Why: bsd.port.mk is port manager territory http://www.freebsd.org/cgi/query-pr.cgi?pr=113425 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 18:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 573C516A484 for ; Wed, 6 Jun 2007 18:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 090B313C44B for ; Wed, 6 Jun 2007 18:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56I0AVL009721 for ; Wed, 6 Jun 2007 18:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56I0A4F009720; Wed, 6 Jun 2007 18:00:10 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 18:00:10 GMT Resent-Message-Id: <200706061800.l56I0A4F009720@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stephan Maka Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A87DD16A488 for ; Wed, 6 Jun 2007 17:57:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 9874213C501 for ; Wed, 6 Jun 2007 17:57:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l56HvV3Z063942 for ; Wed, 6 Jun 2007 17:57:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l56HvVct063941; Wed, 6 Jun 2007 17:57:31 GMT (envelope-from nobody) Message-Id: <200706061757.l56HvVct063941@www.freebsd.org> Date: Wed, 6 Jun 2007 17:57:31 GMT From: Stephan Maka To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113426: net-im/ruby-xmpp4r: giving up port maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 18:00:11 -0000 >Number: 113426 >Category: ports >Synopsis: net-im/ruby-xmpp4r: giving up port maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 18:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Stephan Maka >Release: none >Organization: >Environment: Linux hooker 2.6.21-hardened-r2 #2 PREEMPT Mon Jun 4 19:24:53 CEST 2007 i686 Intel(R) Pentium(R) M processor 1.40GHz GenuineIntel GNU/Linux >Description: I hereby relinquish maintainership of the net-im/ruby-xmpp4r port. I'm sorry, but I don't use FreeBSD on my main machine anymore. Until another wants to take care of it, users may chose to use rubygems to install the latest xmpp4r version. >How-To-Repeat: Notify stephan@spaceboyz.net about the new XMPP4R release - ignoring that he himself sent the release's announcement. >Fix: Set the port to unmaintained. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 18:00:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0D6A16A46C; Wed, 6 Jun 2007 18:00:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8721313C483; Wed, 6 Jun 2007 18:00:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56I0LK7009887; Wed, 6 Jun 2007 18:00:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56I0LQ6009881; Wed, 6 Jun 2007 18:00:21 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 18:00:21 GMT From: Edwin Groothuis Message-Id: <200706061800.l56I0LQ6009881@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113426: net-im/ruby-xmpp4r: giving up port maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 18:00:21 -0000 Synopsis: net-im/ruby-xmpp4r: giving up port maintainership Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Jun 6 18:00:20 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113426 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 18:00:34 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5989C16A421; Wed, 6 Jun 2007 18:00:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2797E13C465; Wed, 6 Jun 2007 18:00:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56I0Yl4010001; Wed, 6 Jun 2007 18:00:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56I0XQf009997; Wed, 6 Jun 2007 18:00:33 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 18:00:33 GMT From: Edwin Groothuis Message-Id: <200706061800.l56I0XQf009997@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113426: net-im/ruby-xmpp4r: giving up port maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 18:00:34 -0000 Synopsis: net-im/ruby-xmpp4r: giving up port maintainership Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 18:00:33 UTC 2007 Responsible-Changed-Why: clsung@ wants to have ruby- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113426 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 18:29:49 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8DBD316A400; Wed, 6 Jun 2007 18:29:49 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5F7CC13C455; Wed, 6 Jun 2007 18:29:49 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from freefall.freebsd.org (araujo@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56ITn6e010977; Wed, 6 Jun 2007 18:29:49 GMT (envelope-from araujo@freefall.freebsd.org) Received: (from araujo@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56ITnoo010973; Wed, 6 Jun 2007 18:29:49 GMT (envelope-from araujo) Date: Wed, 6 Jun 2007 18:29:49 GMT From: Marcelo Araujo Message-Id: <200706061829.l56ITnoo010973@freefall.freebsd.org> To: araujo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org Cc: Subject: Re: ports/113416: [PATCH] net/p5-Net-Analysis: update to 0.40, reset maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 18:29:49 -0000 Synopsis: [PATCH] net/p5-Net-Analysis: update to 0.40, reset maintainership Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: araujo Responsible-Changed-When: Wed Jun 6 18:29:48 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113416 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 19:30:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEED916A400 for ; Wed, 6 Jun 2007 19:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 739EB13C48C for ; Wed, 6 Jun 2007 19:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56JU3uH014305 for ; Wed, 6 Jun 2007 19:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56JU3W2014304; Wed, 6 Jun 2007 19:30:03 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 19:30:03 GMT Resent-Message-Id: <200706061930.l56JU3W2014304@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA2C916A46F for ; Wed, 6 Jun 2007 19:20:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 9B1D413C4CB for ; Wed, 6 Jun 2007 19:20:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l56JKCIL094782 for ; Wed, 6 Jun 2007 19:20:12 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l56JKCIN094781; Wed, 6 Jun 2007 19:20:12 GMT (envelope-from nobody) Message-Id: <200706061920.l56JKCIN094781@www.freebsd.org> Date: Wed, 6 Jun 2007 19:20:12 GMT From: Marcus von Appen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113428: [Maintainer-update]: devel/cvs2cl version update to 2.62 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 19:30:03 -0000 >Number: 113428 >Category: ports >Synopsis: [Maintainer-update]: devel/cvs2cl version update to 2.62 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 19:30:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD magenta.linden.home 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 27 19:44:14 CEST 2007 root@magenta.linden.home:/usr/obj/usr/src/sys/MAGENTA i386 >Description: cvs2cl version update to 2.62 >How-To-Repeat: >Fix: diff -Nur cvs2cl/Makefile cvs2cl.new/Makefile --- cvs2cl/Makefile Fri Dec 8 10:01:38 2006 +++ cvs2cl.new/Makefile Wed Jun 6 21:08:59 2007 @@ -6,7 +6,7 @@ # PORTNAME= cvs2cl -PORTVERSION= 2.59 +PORTVERSION= 2.62 CATEGORIES= devel MASTER_SITES= http://www.red-bean.com/cvs2cl/ DISTFILES= ${PORTNAME}.pl diff -Nur cvs2cl/distinfo cvs2cl.new/distinfo --- cvs2cl/distinfo Sat Mar 11 18:47:56 2006 +++ cvs2cl.new/distinfo Wed Jun 6 21:20:05 2007 @@ -1,3 +1,3 @@ -MD5 (cvs2cl.pl) = 2267d1023719f72358d2739e41ca984c -SHA256 (cvs2cl.pl) = a926b4b35f71f74b4d7ad0450407bdd84b366cec56b6b3803d9e205f434fbd25 -SIZE (cvs2cl.pl) = 91774 +MD5 (cvs2cl.pl) = 0a78d96ad76b957090687d0f1538aff5 +SHA256 (cvs2cl.pl) = 48a49738c363504e948f2dfa7bb533cc1c3966aa35068d2b032c1fc6c45d3b76 +SIZE (cvs2cl.pl) = 92096 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 19:30:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FB2F16A421 for ; Wed, 6 Jun 2007 19:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 392D713C4C4 for ; Wed, 6 Jun 2007 19:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56JU4bA014340 for ; Wed, 6 Jun 2007 19:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56JU4dr014339; Wed, 6 Jun 2007 19:30:04 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 19:30:04 GMT Resent-Message-Id: <200706061930.l56JU4dr014339@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA47916A41F for ; Wed, 6 Jun 2007 19:22:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id AB5AB13C483 for ; Wed, 6 Jun 2007 19:22:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l56JMXEU095034 for ; Wed, 6 Jun 2007 19:22:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l56JMXsI095033; Wed, 6 Jun 2007 19:22:33 GMT (envelope-from nobody) Message-Id: <200706061922.l56JMXsI095033@www.freebsd.org> Date: Wed, 6 Jun 2007 19:22:33 GMT From: Marcus von Appen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113429: [Maintainer-update]: games/HeroesOfMightAndMagic maintainer overtake X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 19:30:04 -0000 >Number: 113429 >Category: ports >Synopsis: [Maintainer-update]: games/HeroesOfMightAndMagic maintainer overtake >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 19:30:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD magenta.linden.home 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 27 19:44:14 CEST 2007 root@magenta.linden.home:/usr/obj/usr/src/sys/MAGENTA i386 >Description: I'll take care of this port. >How-To-Repeat: >Fix: diff -Nur HeroesOfMightAndMagic/Makefile HeroesOfMightAndMagic.new/Makefile --- HeroesOfMightAndMagic/Makefile Tue Sep 5 06:49:21 2006 +++ HeroesOfMightAndMagic.new/Makefile Wed Jun 6 21:22:47 2007 @@ -12,7 +12,7 @@ MASTER_SITES= DISTFILES= -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mva@sysfault.org COMMENT= BSD Installation of the Linux game "Heroes of Might and Magic III" RUN_DEPENDS= ${LINUXBASE}/usr/lib/libgtk-1.2.so.0:${PORTSDIR}/x11-toolkits/linux-gtk >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 20:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 897E516A469 for ; Wed, 6 Jun 2007 20:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5158C13C487 for ; Wed, 6 Jun 2007 20:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Ke5rx019306 for ; Wed, 6 Jun 2007 20:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Ke5Ew019305; Wed, 6 Jun 2007 20:40:05 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 20:40:05 GMT Resent-Message-Id: <200706062040.l56Ke5Ew019305@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71D4E16A41F for ; Wed, 6 Jun 2007 20:30:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 6373613C469 for ; Wed, 6 Jun 2007 20:30:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l56KUOYx003555 for ; Wed, 6 Jun 2007 20:30:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l56KUOxC003554; Wed, 6 Jun 2007 20:30:24 GMT (envelope-from nobody) Message-Id: <200706062030.l56KUOxC003554@www.freebsd.org> Date: Wed, 6 Jun 2007 20:30:24 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113430: Kernel Panic with kqemu on AMD64 SMP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 20:40:05 -0000 >Number: 113430 >Category: ports >Synopsis: Kernel Panic with kqemu on AMD64 SMP >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 20:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: FreeBSD 6.2-release-p5 >Organization: ThunderIT Consulting Inc. >Environment: FreeBSD pegasus.serverbolt.net 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #0: Mon Jun 4 14:20:11 EDT 2007 root@pegasus.serverbolt.net:/usr/obj/usr/src/sys/SMP amd64 >Description: When i use ports/emulators/qemu with ports/emulators/kqemu-kmod under an AMD64 SMP kernel, it causes a panic (trap 12, supervisor read, page not present) it works fine under i386 SMP, or AMD64 UP i have tried qemu/kqemu binaries from pkg_add and compiled from source, as well as the latest qemu-devel >How-To-Repeat: start qemu-system-x86_64 with kqemu (either -kernel-kqemu or without -no-kqemu) system will panic immediately. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 21:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B17216A41F for ; Wed, 6 Jun 2007 21:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1488513C48A for ; Wed, 6 Jun 2007 21:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56LA2eS020277 for ; Wed, 6 Jun 2007 21:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56LA2rO020276; Wed, 6 Jun 2007 21:10:02 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 21:10:02 GMT Resent-Message-Id: <200706062110.l56LA2rO020276@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Doug White Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB63F16A468 for ; Wed, 6 Jun 2007 21:01:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id DD57813C45E for ; Wed, 6 Jun 2007 21:01:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l56L1Y4e007207 for ; Wed, 6 Jun 2007 21:01:34 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l56L1YvE007206; Wed, 6 Jun 2007 21:01:34 GMT (envelope-from nobody) Message-Id: <200706062101.l56L1YvE007206@www.freebsd.org> Date: Wed, 6 Jun 2007 21:01:34 GMT From: Doug White To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113431: xorg-server (scanpci) does not compile on HEAD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 21:10:03 -0000 >Number: 113431 >Category: ports >Synopsis: xorg-server (scanpci) does not compile on HEAD >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 21:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Doug White >Release: FreeBSD 7.0-CURRENT #2: Tue Jun 5 17:23:33 PDT >Organization: >Environment: FreeBSD dwpara1.sfo1.bitgravity.com 7.0-CURRENT FreeBSD 7.0-CURRENT #2: Tue Jun 5 17:23:33 PDT 2007 dwhite@dwpara1.sfo1.bitgravity.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: When attempting to compile xf86ScanPci.c during the build of the xorg-server port, gcc grows to consume all memory and swap until killed. As such Xorg 7.2 cannot be built on HEAD with gcc 4.2. I changed CFLAGS to use -O -fno-unit-at-a-time and it still crashes. > gcc -v Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.0 20070514 [FreeBSD] scanpci includes a list of all known PCI vendor and device numbers and strings and gcc probably has issues with dealing with so much static data. Unfortunately other xorg-server components require scanpci code and so just removing scanpci from the build does not address the issue. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 21:20:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A25E16A421 for ; Wed, 6 Jun 2007 21:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 923EB13C4B0 for ; Wed, 6 Jun 2007 21:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56LK8ow020706 for ; Wed, 6 Jun 2007 21:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56LK8Br020705; Wed, 6 Jun 2007 21:20:08 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 21:20:08 GMT Message-Id: <200706062120.l56LK8Br020705@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Allan Jude Cc: Subject: Re: ports/113430: Kernel Panic with kqemu on AMD64 SMP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Allan Jude List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 21:20:09 -0000 The following reply was made to PR ports/113430; it has been noted by GNATS. From: Allan Jude To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113430: Kernel Panic with kqemu on AMD64 SMP Date: Wed, 06 Jun 2007 16:56:56 -0400 I tested the i386 SMP and AMD64 UP on the exact same system, not different systems. And i also tried AMD64 SMP with machdep.hlt_cpus=2 (to halt the second cpu, and leave just the first running) and it still crashed. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 19:34:58 2007 Return-Path: X-Original-To: freebsd-ports-bugs@freebsd.org Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F10216A421; Wed, 6 Jun 2007 19:34:58 +0000 (UTC) (envelope-from mark@foster.cc) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.192.83]) by mx1.freebsd.org (Postfix) with ESMTP id 23CEA13C458; Wed, 6 Jun 2007 19:34:58 +0000 (UTC) (envelope-from mark@foster.cc) Received: from fosgate.dyndns.org ([71.227.137.90]) by comcast.net (rwcrmhc13) with ESMTP id <20070606192321m1300dojcpe>; Wed, 6 Jun 2007 19:23:22 +0000 Received: from localhost (localhost [127.0.0.1]) by fosgate.dyndns.org (Postfix) with ESMTP id DBB8F39836; Wed, 6 Jun 2007 12:21:33 -0700 (PDT) X-Virus-Scanned: amavisd-new at foster.cc Received: from fosgate.dyndns.org ([127.0.0.1]) by localhost (sonar.foster.dmz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EfhqYkurzWDp; Wed, 6 Jun 2007 12:21:30 -0700 (PDT) Received: from [10.1.253.78] (fis-gw1.portseattle.org [198.134.96.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by fosgate.dyndns.org (Postfix) with ESMTP id 6F77839835; Wed, 6 Jun 2007 12:21:30 -0700 (PDT) Message-ID: <466709A3.2050401@foster.cc> Date: Wed, 06 Jun 2007 12:23:15 -0700 From: Mark Foster User-Agent: Thunderbird 1.5.0.10 (X11/20070403) MIME-Version: 1.0 To: Mark Linimon References: <200704240540.l3O5eCQL079342@freefall.freebsd.org> <20070424061305.GC9123@soaustin.net> In-Reply-To: <20070424061305.GC9123@soaustin.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 06 Jun 2007 21:21:05 +0000 Cc: freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/109045: security/xca compile fails: x509rev.cpp:63: error: invalid conversion from ..... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 19:34:58 -0000 Mark Linimon wrote: > Any time that a PR sits this long, please send email to portmgr@ so that > we can determine whether or not the maintainer is still active. In this > case, his last PR is from 2005, so it's possible that he's not. > > I have forwarded this mail to ask about status. > > mcl > (From 5/6)...did you ever hear back? Because I didn't and would like to have 109045 closed by way of ports/113401 if there's no objection. It seems very clear to me that curly@e-card.bg has fallen off the map some time ago. 113401 is now awaiting maintainer feedback which is unlikely given what has transpired so far. Thanks a mil! -- Said one park ranger, 'There is considerable overlap between the intelligence of the smartest bears and the dumbest tourists.' Mark D. Foster, CISSP http://mark.foster.cc/ From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 21:40:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC45E16A46B for ; Wed, 6 Jun 2007 21:40:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BE0D113C44B for ; Wed, 6 Jun 2007 21:40:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56LeEgC022529 for ; Wed, 6 Jun 2007 21:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56LeEWT022528; Wed, 6 Jun 2007 21:40:14 GMT (envelope-from gnats) Resent-Date: Wed, 6 Jun 2007 21:40:14 GMT Resent-Message-Id: <200706062140.l56LeEWT022528@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E06C16A476 for ; Wed, 6 Jun 2007 21:35:42 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id C754413C4BA for ; Wed, 6 Jun 2007 21:35:41 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id 0AA605C1F; Thu, 7 Jun 2007 05:17:30 +0800 (CST) Message-Id: <20070606211730.0AA605C1F@ccreader.NCTU.edu.tw> Date: Thu, 7 Jun 2007 05:17:30 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/113433: [NEW PORT] sysutils/p5-Brackup: Flexible backup tool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 21:40:15 -0000 >Number: 113433 >Category: ports >Synopsis: [NEW PORT] sysutils/p5-Brackup: Flexible backup tool >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 06 21:40:14 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: Flexible backup tool. Slices, dices, encrypts, and sprays across the net. WWW: http://search.cpan.org/~bradfitz/Brackup/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Brackup-1.03.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Brackup # p5-Brackup/pkg-descr # p5-Brackup/Makefile # p5-Brackup/pkg-plist # p5-Brackup/distinfo # echo c - p5-Brackup mkdir -p p5-Brackup > /dev/null 2>&1 echo x - p5-Brackup/pkg-descr sed 's/^X//' >p5-Brackup/pkg-descr << 'END-of-p5-Brackup/pkg-descr' XFlexible backup tool. Slices, dices, encrypts, and sprays across the Xnet. X XWWW: http://search.cpan.org/~bradfitz/Brackup/ END-of-p5-Brackup/pkg-descr echo x - p5-Brackup/Makefile sed 's/^X//' >p5-Brackup/Makefile << 'END-of-p5-Brackup/Makefile' X# New ports collection makefile for: p5-Brackup X# Date created: 2007-06-07 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= Brackup XPORTVERSION= 1.03 XCATEGORIES= sysutils perl5 XMASTER_SITES= CPAN XMASTER_SITE_SUBDIR= ../../authors/id/B/BR/BRADFITZ XPKGNAMEPREFIX= p5- X XMAINTAINER= gslin@gslin.org XCOMMENT= Flexible backup tool X XRUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite \ X ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ X ${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 X XPERL_CONFIGURE= yes X XMAN1= brackup.1 brackup-restore.1 brackup-target.1 XMAN3= Brackup.3 Brackup::Config.3 Brackup::DigestCache.3 \ X Brackup::InventoryDatabase.3 Brackup::Manual::Overview.3 \ X Brackup::Root.3 Brackup::Target.3 Brackup::Target::Amazon.3 \ X Brackup::Target::Filesystem.3 X X.include END-of-p5-Brackup/Makefile echo x - p5-Brackup/pkg-plist sed 's/^X//' >p5-Brackup/pkg-plist << 'END-of-p5-Brackup/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Brackup/.packlist X%%SITE_PERL%%/Brackup.pm X%%SITE_PERL%%/Brackup/Backup.pm X%%SITE_PERL%%/Brackup/BackupStats.pm X%%SITE_PERL%%/Brackup/ChunkIterator.pm X%%SITE_PERL%%/Brackup/CompositeChunk.pm X%%SITE_PERL%%/Brackup/Config.pm X%%SITE_PERL%%/Brackup/ConfigSection.pm X%%SITE_PERL%%/Brackup/Dict/SQLite.pm X%%SITE_PERL%%/Brackup/DigestCache.pm X%%SITE_PERL%%/Brackup/File.pm X%%SITE_PERL%%/Brackup/GPGProcManager.pm X%%SITE_PERL%%/Brackup/GPGProcess.pm X%%SITE_PERL%%/Brackup/InventoryDatabase.pm X%%SITE_PERL%%/Brackup/Manual/Overview.pod X%%SITE_PERL%%/Brackup/PositionedChunk.pm X%%SITE_PERL%%/Brackup/Restore.pm X%%SITE_PERL%%/Brackup/Root.pm X%%SITE_PERL%%/Brackup/StoredChunk.pm X%%SITE_PERL%%/Brackup/Target.pm X%%SITE_PERL%%/Brackup/Target/Amazon.pm X%%SITE_PERL%%/Brackup/Target/Filesystem.pm X%%SITE_PERL%%/Brackup/TargetBackupStatInfo.pm X%%SITE_PERL%%/Brackup/Test.pm X%%SITE_PERL%%/Brackup/Util.pm Xbin/brackup Xbin/brackup-restore Xbin/brackup-target X@dirrmtry %%SITE_PERL%%/Brackup/Target X@dirrmtry %%SITE_PERL%%/Brackup/Manual X@dirrmtry %%SITE_PERL%%/Brackup/Dict X@dirrmtry %%SITE_PERL%%/Brackup X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Brackup END-of-p5-Brackup/pkg-plist echo x - p5-Brackup/distinfo sed 's/^X//' >p5-Brackup/distinfo << 'END-of-p5-Brackup/distinfo' XMD5 (Brackup-1.03.tar.gz) = 51f1133562fb7efd21c6399a6656fba8 XSHA256 (Brackup-1.03.tar.gz) = ccecbb15446a74e97ddbd933c6d615fd7bb2efd327e3e5ec054e87b4fbc9aee4 XSIZE (Brackup-1.03.tar.gz) = 42041 END-of-p5-Brackup/distinfo exit --- p5-Brackup-1.03.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 21:40:22 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92E3416A4A9; Wed, 6 Jun 2007 21:40:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6B90D13C448; Wed, 6 Jun 2007 21:40:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56LeMKP022644; Wed, 6 Jun 2007 21:40:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56LeLAc022640; Wed, 6 Jun 2007 21:40:21 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 21:40:21 GMT From: Edwin Groothuis Message-Id: <200706062140.l56LeLAc022640@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113433: [NEW PORT] sysutils/p5-Brackup: Flexible backup tool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 21:40:22 -0000 Synopsis: [NEW PORT] sysutils/p5-Brackup: Flexible backup tool Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 21:40:21 UTC 2007 Responsible-Changed-Why: clsung@ wants his PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113433 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 21:55:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 472C916A400; Wed, 6 Jun 2007 21:55:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 208AF13C4C8; Wed, 6 Jun 2007 21:55:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56Lt9Wg023443; Wed, 6 Jun 2007 21:55:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56Lt8EM023439; Wed, 6 Jun 2007 21:55:08 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 21:55:08 GMT From: Edwin Groothuis Message-Id: <200706062155.l56Lt8EM023439@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org Cc: Subject: Re: ports/113431: x11-servers/xorg-server (scanpci) does not compile on HEAD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 21:55:09 -0000 Synopsis: x11-servers/xorg-server (scanpci) does not compile on HEAD Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 21:55:08 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113431 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 21:55:26 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2246D16A400; Wed, 6 Jun 2007 21:55:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F09F513C45D; Wed, 6 Jun 2007 21:55:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56LtP6L023552; Wed, 6 Jun 2007 21:55:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56LtPLL023548; Wed, 6 Jun 2007 21:55:25 GMT (envelope-from edwin) Date: Wed, 6 Jun 2007 21:55:25 GMT From: Edwin Groothuis Message-Id: <200706062155.l56LtPLL023548@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nox@FreeBSD.org Cc: Subject: Re: ports/113430: Kernel Panic with emulators/qemu on AMD64 SMP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 21:55:26 -0000 Synopsis: Kernel Panic with emulators/qemu on AMD64 SMP Responsible-Changed-From-To: freebsd-ports-bugs->nox Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jun 6 21:55:25 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113430 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 22:20:24 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C148C16A468; Wed, 6 Jun 2007 22:20:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9B6E613C43E; Wed, 6 Jun 2007 22:20:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56MKOjd024684; Wed, 6 Jun 2007 22:20:24 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56MKOSo024680; Wed, 6 Jun 2007 22:20:24 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 22:20:24 GMT From: Martin Wilke Message-Id: <200706062220.l56MKOSo024680@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/112653: new port: net-mgmt/macroscope User and IP traffic management with Web interface X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 22:20:24 -0000 Synopsis: new port: net-mgmt/macroscope User and IP traffic management with Web interface Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 22:20:23 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=112653 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 22:20:30 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAFF116A421; Wed, 6 Jun 2007 22:20:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A595913C44B; Wed, 6 Jun 2007 22:20:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56MKU0n024791; Wed, 6 Jun 2007 22:20:30 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56MKUHU024786; Wed, 6 Jun 2007 22:20:30 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 22:20:30 GMT From: Martin Wilke Message-Id: <200706062220.l56MKUHU024786@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113205: [NEW PORT] lang/gnat-gcc43 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 22:20:30 -0000 Synopsis: [NEW PORT] lang/gnat-gcc43 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 22:20:29 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113205 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 22:20:37 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1402416A468; Wed, 6 Jun 2007 22:20:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E2B5D13C447; Wed, 6 Jun 2007 22:20:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56MKa4Q024897; Wed, 6 Jun 2007 22:20:36 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56MKabv024893; Wed, 6 Jun 2007 22:20:36 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 22:20:36 GMT From: Martin Wilke Message-Id: <200706062220.l56MKabv024893@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113418: [MAINTAINER]: Update x11-clocks/xdaliclock X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 22:20:37 -0000 Synopsis: [MAINTAINER]: Update x11-clocks/xdaliclock Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 22:20:36 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113418 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 22:20:44 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 455FC16A421; Wed, 6 Jun 2007 22:20:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1FC3B13C469; Wed, 6 Jun 2007 22:20:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56MKhE2024998; Wed, 6 Jun 2007 22:20:44 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56MKhvQ024994; Wed, 6 Jun 2007 22:20:43 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 22:20:43 GMT From: Martin Wilke Message-Id: <200706062220.l56MKhvQ024994@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113428: [Maintainer-update]: devel/cvs2cl version update to 2.62 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 22:20:44 -0000 Synopsis: [Maintainer-update]: devel/cvs2cl version update to 2.62 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 22:20:43 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113428 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 22:20:50 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F50216A46B; Wed, 6 Jun 2007 22:20:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6920B13C4B0; Wed, 6 Jun 2007 22:20:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56MKoee025063; Wed, 6 Jun 2007 22:20:50 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56MKo4d025059; Wed, 6 Jun 2007 22:20:50 GMT (envelope-from miwi) Date: Wed, 6 Jun 2007 22:20:50 GMT From: Martin Wilke Message-Id: <200706062220.l56MKo4d025059@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113429: [Maintainer-update]: games/HeroesOfMightAndMagic maintainer overtake X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 22:20:50 -0000 Synopsis: [Maintainer-update]: games/HeroesOfMightAndMagic maintainer overtake Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jun 6 22:20:49 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113429 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 6 23:20:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC52A16A41F for ; Wed, 6 Jun 2007 23:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A5D2513C43E for ; Wed, 6 Jun 2007 23:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l56NK8jx028005 for ; Wed, 6 Jun 2007 23:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l56NK832028004; Wed, 6 Jun 2007 23:20:08 GMT (envelope-from gnats) Date: Wed, 6 Jun 2007 23:20:08 GMT Message-Id: <200706062320.l56NK832028004@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Fumihiko Kimura Cc: Subject: Re: ports/111966: Clamav-milter no up X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Fumihiko Kimura List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2007 23:20:08 -0000 The following reply was made to PR ports/111966; it has been noted by GNATS. From: Fumihiko Kimura To: bug-followup@FreeBSD.org Cc: rreyes@socofin.cl Subject: Re: ports/111966: Clamav-milter no up Date: Thu, 07 Jun 2007 08:18:30 +0900 As for me, a problem dissolved. /usr/local/etc/clamd.conf --- # Path to a local socket file the daemon will listen on. # Default: disabled (must be specified by a user) #LocalSocket /var/run/clamav/clamd LocalSocket /var/run/clamav/clamd.sock --- security/clamav-devel or security/clamav work fine. tks lots. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/111966 // f.kimura -------------------------------------- Start Yahoo! Auction now! Check out the cool campaign http://pr.mail.yahoo.co.jp/auction/ From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 01:27:21 2007 Return-Path: X-Original-To: freebsd-ports-bugs@freebsd.org Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D64C216A481; Thu, 7 Jun 2007 01:27:21 +0000 (UTC) (envelope-from db@db.net) Received: from diana.db.net (diana.db.net [204.228.229.66]) by mx1.freebsd.org (Postfix) with ESMTP id A6D6113C4E5; Thu, 7 Jun 2007 01:27:15 +0000 (UTC) (envelope-from db@db.net) Received: from diana.db.net ([204.228.229.66] helo=localhost ident=mailnull) by diana.db.net with esmtp (Exim 4.66 (FreeBSD)) (envelope-from ) id 1Hw6mO-000Jpx-IU; Wed, 06 Jun 2007 19:27:12 -0600 Received: from diana.db.net ([127.0.0.1] helo=localhost) (envelope-from ) id 1Hw6mN-000DmF-0g; Wed, 06 Jun 2007 21:27:11 -0400 Date: Wed, 6 Jun 2007 21:27:10 -0400 From: Diane Bruce To: CHAO Shin Message-ID: <20070607012710.GA46296@night.db.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports-bugs@FreeBSD.org, db@FreeBSD.org, ehaupt@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/113227: [UPDATE] math/py-numpy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 01:27:22 -0000 Hi, I had 1.02 ready to go into ports when the great freeze hit. For some reason I missed your original post, did you cc me? This is annoying, I've just finished re-checking py-numpy 1.0.2 with the new ports after the freeze. But it is not your fault, ;-) It appears I only need to update my diff with 1.0.3 as I have the other diffs already. I will review and tinderbox 1.0.3 and commit ASAP. - Diane -- - db@FreeBSD.org db@db.net http://www.db.net/~db From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 01:50:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47EE216A468 for ; Thu, 7 Jun 2007 01:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2884713C45A for ; Thu, 7 Jun 2007 01:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l571o356037510 for ; Thu, 7 Jun 2007 01:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l571o2Ct037509; Thu, 7 Jun 2007 01:50:02 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 01:50:02 GMT Resent-Message-Id: <200706070150.l571o2Ct037509@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tatsuki Makino Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FF2316A525 for ; Thu, 7 Jun 2007 01:44:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 28C7913C457 for ; Thu, 7 Jun 2007 01:44:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l571isH4079750 for ; Thu, 7 Jun 2007 01:44:54 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l571isJB079749; Thu, 7 Jun 2007 01:44:54 GMT (envelope-from nobody) Message-Id: <200706070144.l571isJB079749@www.freebsd.org> Date: Thu, 7 Jun 2007 01:44:54 GMT From: Tatsuki Makino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113434: Update port: audio/libamrnb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 01:50:03 -0000 >Number: 113434 >Category: ports >Synopsis: Update port: audio/libamrnb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 01:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tatsuki Makino >Release: FreeBSD 6.2-RELEASE-p5 i386 >Organization: >Environment: FreeBSD FreeBSD.test 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #0: Thu May 24 16:23:26 JST 2007 root@FreeBSD.test:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update to 6.1.0.4 from 6.1.0.4rc1. >How-To-Repeat: >Fix: Patch it. Patch attached with submission follows: diff -urN audio/libamrnb.orig/Makefile audio/libamrnb/Makefile --- audio/libamrnb.orig/Makefile Tue Jun 5 16:10:40 2007 +++ audio/libamrnb/Makefile Thu Jun 7 10:13:46 2007 @@ -7,13 +7,13 @@ PORTNAME= libamrnb PORTVERSION= 6.1.0.4 +PORTREVISION= 1 CATEGORIES= audio -MASTER_SITES= http://ftp.penguin.cz/pub/users/utx/amr/testing/ \ - http://ftp.penguin.cz/pub/users/utx/amr/ -DISTNAME= amrnb-${DISTVERSION}rc1 +MASTER_SITES= http://ftp.penguin.cz/pub/users/utx/amr/ +DISTNAME= amrnb-${DISTVERSION} MAINTAINER= tatsuki_makino@hotmail.com -COMMENT= The floating-point Adaptive Multi Rate speech codec libraries +COMMENT= Adaptive Multi-Rate (AMR) Speech Codec BUILD_DEPENDS= wget:${PORTSDIR}/ftp/wget \ ${UNZIP_CMD}:${PORTSDIR}/archivers/unzip \ @@ -22,11 +22,11 @@ USE_BZIP2= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool:15 -WRKSRC= ${WRKDIR}/amrnb-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --srcdir=${WRKSRC} CONFIGURE_ENV+= LANG=C USE_LDCONFIG= yes +NO_PACKAGE= See Important legal notice of \ + http://www.penguin.cz/~utx/amr post-patch: @${REINPLACE_CMD} -E \ diff -urN audio/libamrnb.orig/distinfo audio/libamrnb/distinfo --- audio/libamrnb.orig/distinfo Tue Jun 5 16:10:40 2007 +++ audio/libamrnb/distinfo Thu Jun 7 10:15:14 2007 @@ -1,3 +1,3 @@ -MD5 (amrnb-6.1.0.4rc1.tar.bz2) = fec94b263e42e7a20bf7631c823a225c -SHA256 (amrnb-6.1.0.4rc1.tar.bz2) = 517716365c0ac9c056d55aa90429356bdab1f970726fc680360136cbd25b4408 -SIZE (amrnb-6.1.0.4rc1.tar.bz2) = 408797 +MD5 (amrnb-6.1.0.4.tar.bz2) = f482cdd0584469ba23ff33c6b331acbd +SHA256 (amrnb-6.1.0.4.tar.bz2) = 6f2df7089205cd6127d434e8ec8fac4cccc163d4df5ec4437211c884fbd9fe75 +SIZE (amrnb-6.1.0.4.tar.bz2) = 224932 diff -urN audio/libamrnb.orig/pkg-descr audio/libamrnb/pkg-descr --- audio/libamrnb.orig/pkg-descr Tue Jun 5 16:10:40 2007 +++ audio/libamrnb/pkg-descr Thu Jun 7 10:41:59 2007 @@ -1,4 +1,6 @@ -The floating-point Adaptive Multi Rate (AMR) speech codec libraries, based on -the reference implementation. +Adaptive Multi-Rate Narrow-Band decoder and encoder library. +(3GPP TS 26.104 V 6.1.0) + +http://www.3gpp.org/ftp/Specs/html-info/26104.htm WWW: http://www.penguin.cz/~utx/amr >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 01:50:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 192E616A46D for ; Thu, 7 Jun 2007 01:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EEBAE13C46E for ; Thu, 7 Jun 2007 01:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l571o346037563 for ; Thu, 7 Jun 2007 01:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l571o3kI037562; Thu, 7 Jun 2007 01:50:03 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 01:50:03 GMT Resent-Message-Id: <200706070150.l571o3kI037562@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Tom McLaughlin" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4E9616A46B for ; Thu, 7 Jun 2007 01:49:56 +0000 (UTC) (envelope-from tmclaugh@FreeBSD.org) Received: from straycat.dhs.org (c-24-63-86-11.hsd1.ma.comcast.net [24.63.86.11]) by mx1.freebsd.org (Postfix) with ESMTP id 42C6813C45B for ; Thu, 7 Jun 2007 01:49:56 +0000 (UTC) (envelope-from tmclaugh@FreeBSD.org) Received: from bofh.straycat.dhs.org (bofh.straycat.dhs.org [192.168.1.127]) by straycat.dhs.org (8.13.8/8.13.8) with ESMTP id l571nmIW021882; Wed, 6 Jun 2007 21:49:48 -0400 (EDT) Message-Id: <1181180989.9174@bofh.straycat.dhs.org> Date: Wed, 6 Jun 2007 21:49:49 -0400 From: "Tom McLaughlin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.8 Cc: dsledge@appriss.com Subject: ports/113435: [java/eclipse] Update to 3.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 01:50:04 -0000 >Number: 113435 >Category: ports >Synopsis: [java/eclipse] Update to 3.2.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 01:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tom McLaughlin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD 6.2-STABLE #0: Mon Jun 4 19:46:26 EDT 2007 root@:/usr/obj/usr/src/sys/GENERIC_ULE >Description: Attached patch updates eclipse to 3.2.2 which I've been using for months with no issues. I sent emails to eclipse@ and I believe the maintainer but received no response. Can I get a maintainer okay for this and an eclipse@ committer to commit this? For Rick Petty: Can you compare your patch against mine? I saw your message in the archives but the attachment had been stripped. Thanks. Ref: http://lists.freebsd.org/pipermail/freebsd-eclipse/2007-March/000648.html Ref: http://lists.freebsd.org/pipermail/freebsd-eclipse/2007-April/000653.html >How-To-Repeat: >Fix: --- eclipse-3.2.2.diff begins here --- Index: Makefile =================================================================== RCS file: /ncvs/ports/java/eclipse/Makefile,v retrieving revision 1.52 diff -u -r1.52 Makefile --- Makefile 19 May 2007 20:12:35 -0000 1.52 +++ Makefile 7 Jun 2007 01:31:54 -0000 @@ -6,11 +6,10 @@ # PORTNAME= eclipse -PORTVERSION= 3.2.1 -PORTREVISION= 3 +PORTVERSION= 3.2.2 CATEGORIES= java devel MASTER_SITES= ${MASTER_SITE_ECLIPSE} -MASTER_SITE_SUBDIR= R-${PORTVERSION}-200609210945 +MASTER_SITE_SUBDIR= R-${PORTVERSION}-200702121330 DISTNAME= ${PORTNAME}-sourceBuild-srcIncluded-${PORTVERSION} DIST_SUBDIR= eclipse @@ -97,7 +96,6 @@ post-patch: @${PATCH} ${PATCH_DIST_ARGS} "${SWTGTK}/build.sh" ${FILESDIR}/post-patch-plugins-swt-gtk-build.sh @${PATCH} ${PATCH_DIST_ARGS} "${SWTGTK}/make_freebsd.mak" ${FILESDIR}/post-patch-plugins-swt-gtk-make_freebsd.mak - @${PATCH} ${PATCH_DIST_ARGS} "${SWTGTK}/os_custom.h" ${FILESDIR}/post-patch-plugins-swt-gtk-os_custom.h @${PATCH} ${PATCH_DIST_ARGS} "${SWTMOZ}/gtk/org/eclipse/swt/browser/Browser.java" ${FILESDIR}/post-patch-plugins-swt-mozilla-Browser.java @${PATCH} ${PATCH_DIST_ARGS} "${SWTMOZ}/common/org/eclipse/swt/internal/mozilla/XPCOM.java" ${FILESDIR}/post-patch-plugins-swt-mozilla-XPCOM.java @${PATCH} ${PATCH_DIST_ARGS} "${WRKSRC}/plugins/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.mozilla.XPCOM.properties" ${FILESDIR}/post-patch-plugins-swt-mozilla-XPCOM.properties Index: distinfo =================================================================== RCS file: /ncvs/ports/java/eclipse/distinfo,v retrieving revision 1.13 diff -u -r1.13 distinfo --- distinfo 3 Jan 2007 18:13:55 -0000 1.13 +++ distinfo 7 Jun 2007 01:31:54 -0000 @@ -1,3 +1,3 @@ -MD5 (eclipse/eclipse-sourceBuild-srcIncluded-3.2.1.zip) = 0fe89e9c7cf07a56c4fe8e2d7f5a394b -SHA256 (eclipse/eclipse-sourceBuild-srcIncluded-3.2.1.zip) = 2d6a0628333d068b6ab678c42f925d71df1c003035543830a30e3ee80fb855c7 -SIZE (eclipse/eclipse-sourceBuild-srcIncluded-3.2.1.zip) = 82433420 +MD5 (eclipse/eclipse-sourceBuild-srcIncluded-3.2.2.zip) = 5d1b9f6a146ffc59191e513083a6ec86 +SHA256 (eclipse/eclipse-sourceBuild-srcIncluded-3.2.2.zip) = 84759dc6085e68b31228ce2b226778494481be38681dc8ca5b0e2f226bf963a7 +SIZE (eclipse/eclipse-sourceBuild-srcIncluded-3.2.2.zip) = 82487328 Index: files/patch-features-platform-build.xml =================================================================== RCS file: /ncvs/ports/java/eclipse/files/patch-features-platform-build.xml,v retrieving revision 1.4 diff -u -r1.4 patch-features-platform-build.xml --- files/patch-features-platform-build.xml 4 Nov 2006 02:06:49 -0000 1.4 +++ files/patch-features-platform-build.xml 7 Jun 2007 01:31:54 -0000 @@ -1,5 +1,5 @@ ---- features/org.eclipse.platform/build.xml.orig Thu Sep 21 10:55:42 2006 -+++ features/org.eclipse.platform/build.xml Tue Oct 3 14:33:47 2006 +--- features/org.eclipse.platform/build.xml.orig Mon Feb 12 13:45:21 2007 ++++ features/org.eclipse.platform/build.xml Mon Mar 26 12:55:06 2007 @@ -27,6 +27,11 @@ @@ -30,11 +30,11 @@ @@ -391,7 +406,7 @@ - + -- -+ +- ++ Index: files/patch-features-platform-source-build.xml =================================================================== RCS file: /ncvs/ports/java/eclipse/files/patch-features-platform-source-build.xml,v retrieving revision 1.4 diff -u -r1.4 patch-features-platform-source-build.xml --- files/patch-features-platform-source-build.xml 4 Nov 2006 02:06:49 -0000 1.4 +++ files/patch-features-platform-source-build.xml 7 Jun 2007 01:31:54 -0000 @@ -1,5 +1,5 @@ ---- features/org.eclipse.platform.source/build.xml.orig Thu Sep 21 10:55:43 2006 -+++ features/org.eclipse.platform.source/build.xml Tue Oct 3 14:44:24 2006 +--- features/org.eclipse.platform.source/build.xml.orig Mon Feb 12 13:45:20 2007 ++++ features/org.eclipse.platform.source/build.xml Mon Mar 26 13:13:05 2007 @@ -27,6 +27,11 @@ @@ -25,11 +25,11 @@ @@ -131,7 +141,7 @@ - + -- -+ +- ++ Index: files/patch-features-platform-source-feature.xml =================================================================== RCS file: /ncvs/ports/java/eclipse/files/patch-features-platform-source-feature.xml,v retrieving revision 1.3 diff -u -r1.3 patch-features-platform-source-feature.xml --- files/patch-features-platform-source-feature.xml 4 Nov 2006 02:06:49 -0000 1.3 +++ files/patch-features-platform-source-feature.xml 7 Jun 2007 01:31:54 -0000 @@ -1,9 +1,9 @@ ---- features/org.eclipse.platform.source/feature.xml.orig Sat Jul 29 21:49:46 2006 -+++ features/org.eclipse.platform.source/feature.xml Sat Jul 29 21:52:58 2006 +--- features/org.eclipse.platform.source/feature.xml.orig Mon Feb 12 13:45:20 2007 ++++ features/org.eclipse.platform.source/feature.xml Mon Mar 26 17:28:19 2007 @@ -28,4 +28,6 @@ - - - -+ -+ + + + ++ ++ Index: files/patch-features-rcp-build.xml =================================================================== RCS file: /ncvs/ports/java/eclipse/files/patch-features-rcp-build.xml,v retrieving revision 1.4 diff -u -r1.4 patch-features-rcp-build.xml --- files/patch-features-rcp-build.xml 4 Nov 2006 02:06:49 -0000 1.4 +++ files/patch-features-rcp-build.xml 7 Jun 2007 01:31:54 -0000 @@ -1,5 +1,5 @@ ---- features/org.eclipse.rcp/build.xml.orig Thu Sep 21 10:55:42 2006 -+++ features/org.eclipse.rcp/build.xml Tue Oct 3 14:51:03 2006 +--- features/org.eclipse.rcp/build.xml.orig Mon Feb 12 13:45:21 2007 ++++ features/org.eclipse.rcp/build.xml Mon Mar 26 13:28:17 2007 @@ -77,6 +77,11 @@ @@ -25,11 +25,11 @@ @@ -225,7 +235,7 @@ - + -- -+ +- ++ Index: files/patch-features-rcp-source-build.xml =================================================================== RCS file: /ncvs/ports/java/eclipse/files/patch-features-rcp-source-build.xml,v retrieving revision 1.4 diff -u -r1.4 patch-features-rcp-source-build.xml --- files/patch-features-rcp-source-build.xml 4 Nov 2006 02:06:49 -0000 1.4 +++ files/patch-features-rcp-source-build.xml 7 Jun 2007 01:31:54 -0000 @@ -1,5 +1,5 @@ ---- features/org.eclipse.rcp.source/build.xml.orig Thu Sep 21 10:55:42 2006 -+++ features/org.eclipse.rcp.source/build.xml Tue Oct 3 14:56:42 2006 +--- features/org.eclipse.rcp.source/build.xml.orig Mon Feb 12 13:45:21 2007 ++++ features/org.eclipse.rcp.source/build.xml Mon Mar 26 13:32:10 2007 @@ -37,6 +37,11 @@ @@ -25,11 +25,11 @@ @@ -140,7 +150,7 @@ - + -- -+ +- ++ Index: files/post-patch-plugins-swt-gtk-os_custom.h =================================================================== RCS file: files/post-patch-plugins-swt-gtk-os_custom.h diff -N files/post-patch-plugins-swt-gtk-os_custom.h --- files/post-patch-plugins-swt-gtk-os_custom.h 4 Nov 2006 02:06:49 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,97 +0,0 @@ ---- plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h.orig Thu Sep 21 10:57:34 2006 -+++ plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h Tue Oct 3 15:02:26 2006 -@@ -36,50 +36,50 @@ - #define XRenderFreePicture_LIB "libXrender.so" - #define XRenderSetPictureClipRectangles_LIB "libXrender.so" - #define XRenderSetPictureTransform_LIB "libXrender.so" --#define gtk_entry_text_index_to_layout_index_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_add_filter_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_dialog_new_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_get_current_folder_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_get_filename_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_get_filenames_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_set_current_folder_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_set_current_name_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_set_extra_widget_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_set_filename_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_chooser_set_select_multiple_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_filter_add_pattern_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_filter_new_LIB "libgtk-x11-2.0.so.0" --#define gtk_file_filter_set_name_LIB "libgtk-x11-2.0.so.0" --#define gtk_expander_get_expanded_LIB "libgtk-x11-2.0.so.0" --#define gtk_expander_get_label_widget_LIB "libgtk-x11-2.0.so.0" --#define gtk_expander_new_LIB "libgtk-x11-2.0.so.0" --#define gtk_expander_set_expanded_LIB "libgtk-x11-2.0.so.0" --#define gtk_expander_set_label_LIB "libgtk-x11-2.0.so.0" --#define gtk_expander_set_label_widget_LIB "libgtk-x11-2.0.so.0" --#define gtk_tree_selection_count_selected_rows_LIB "libgtk-x11-2.0.so.0" --#define gtk_tree_selection_get_selected_rows_LIB "libgtk-x11-2.0.so.0" --#define gtk_tree_view_column_cell_get_position_LIB "libgtk-x11-2.0.so.0" --#define gtk_entry_set_alignment_LIB "libgtk-x11-2.0.so.0" --#define gdk_draw_pixbuf_LIB "libgdk-x11-2.0.so.0" --#define gdk_screen_get_default_LIB "libgdk-x11-2.0.so.0" --#define gdk_screen_get_monitor_at_window_LIB "libgdk-x11-2.0.so.0" --#define gdk_screen_get_monitor_geometry_LIB "libgdk-x11-2.0.so.0" --#define gdk_screen_get_n_monitors_LIB "libgdk-x11-2.0.so.0" --#define gdk_screen_get_number_LIB "libgdk-x11-2.0.so.0" --#define gdk_window_set_keep_above_LIB "libgdk-x11-2.0.so.0" --#define gdk_window_set_accept_focus_LIB "libgdk-x11-2.0.so.0" --#define gdk_x11_screen_get_window_manager_name_LIB "libgdk-x11-2.0.so.0" --#define gdk_x11_screen_lookup_visual_LIB "libgdk-x11-2.0.so.0" --#define atk_object_add_relationship_LIB "libatk-1.0.so.0" --#define pango_layout_set_auto_dir_LIB "libpango-1.0.so.0" --#define pango_cairo_create_layout_LIB "libpangocairo-1.0.so.0" --#define pango_cairo_layout_path_LIB "libpangocairo-1.0.so.0" --#define pango_cairo_show_layout_LIB "libpangocairo-1.0.so.0" --#define pango_cairo_font_map_create_context_LIB "libpangocairo-1.0.so.0" --#define pango_cairo_font_map_new_LIB "libpangocairo-1.0.so.0" --#define pango_cairo_font_map_get_default_LIB "libpangocairo-1.0.so.0" --#define gdk_cairo_set_source_color_LIB "libgdk-x11-2.0.so.0" --#define gdk_cairo_region_LIB "libgdk-x11-2.0.so.0" -+#define gtk_entry_text_index_to_layout_index_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_add_filter_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_dialog_new_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_get_current_folder_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_get_filename_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_get_filenames_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_set_current_folder_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_set_current_name_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_set_extra_widget_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_set_filename_LIB "libgtk-x11-2.0.so" -+#define gtk_file_chooser_set_select_multiple_LIB "libgtk-x11-2.0.so" -+#define gtk_file_filter_add_pattern_LIB "libgtk-x11-2.0.so" -+#define gtk_file_filter_new_LIB "libgtk-x11-2.0.so" -+#define gtk_file_filter_set_name_LIB "libgtk-x11-2.0.so" -+#define gtk_expander_get_expanded_LIB "libgtk-x11-2.0.so" -+#define gtk_expander_get_label_widget_LIB "libgtk-x11-2.0.so" -+#define gtk_expander_new_LIB "libgtk-x11-2.0.so" -+#define gtk_expander_set_expanded_LIB "libgtk-x11-2.0.so" -+#define gtk_expander_set_label_LIB "libgtk-x11-2.0.so" -+#define gtk_expander_set_label_widget_LIB "libgtk-x11-2.0.so" -+#define gtk_tree_selection_count_selected_rows_LIB "libgtk-x11-2.0.so" -+#define gtk_tree_selection_get_selected_rows_LIB "libgtk-x11-2.0.so" -+#define gtk_tree_view_column_cell_get_position_LIB "libgtk-x11-2.0.so" -+#define gtk_entry_set_alignment_LIB "libgtk-x11-2.0.so" -+#define gdk_draw_pixbuf_LIB "libgdk-x11-2.0.so" -+#define gdk_screen_get_default_LIB "libgdk-x11-2.0.so" -+#define gdk_screen_get_monitor_at_window_LIB "libgdk-x11-2.0.so" -+#define gdk_screen_get_monitor_geometry_LIB "libgdk-x11-2.0.so" -+#define gdk_screen_get_n_monitors_LIB "libgdk-x11-2.0.so" -+#define gdk_screen_get_number_LIB "libgdk-x11-2.0.so" -+#define gdk_window_set_keep_above_LIB "libgdk-x11-2.0.so" -+#define gdk_window_set_accept_focus_LIB "libgdk-x11-2.0.so" -+#define gdk_x11_screen_get_window_manager_name_LIB "libgdk-x11-2.0.so" -+#define gdk_x11_screen_lookup_visual_LIB "libgdk-x11-2.0.so" -+#define atk_object_add_relationship_LIB "libatk-1.0.so" -+#define pango_layout_set_auto_dir_LIB "libpango-1.0.so" -+#define pango_cairo_create_layout_LIB "libpangocairo-1.0.so" -+#define pango_cairo_layout_path_LIB "libpangocairo-1.0.so" -+#define pango_cairo_show_layout_LIB "libpangocairo-1.0.so" -+#define pango_cairo_font_map_create_context_LIB "libpangocairo-1.0.so" -+#define pango_cairo_font_map_new_LIB "libpangocairo-1.0.so" -+#define pango_cairo_font_map_get_default_LIB "libpangocairo-1.0.so" -+#define gdk_cairo_set_source_color_LIB "libgdk-x11-2.0.so" -+#define gdk_cairo_region_LIB "libgdk-x11-2.0.so" - - /* Field accessors */ - #define GTK_ACCEL_LABEL_SET_ACCEL_STRING(arg0, arg1) (arg0)->accel_string = arg1 --- eclipse-3.2.2.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 01:50:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DBEB16A46D; Thu, 7 Jun 2007 01:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EBFB513C4BF; Thu, 7 Jun 2007 01:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l571oFA5037710; Thu, 7 Jun 2007 01:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l571oFrM037706; Thu, 7 Jun 2007 01:50:15 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 01:50:15 GMT From: Edwin Groothuis Message-Id: <200706070150.l571oFrM037706@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tmclaugh@FreeBSD.org Cc: Subject: Re: ports/113435: [java/eclipse] Update to 3.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 01:50:17 -0000 Synopsis: [java/eclipse] Update to 3.2.2 Responsible-Changed-From-To: freebsd-ports-bugs->tmclaugh Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 01:50:14 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113435 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 02:30:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 448A816A46D for ; Thu, 7 Jun 2007 02:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1E48913C4BB for ; Thu, 7 Jun 2007 02:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l572U2wQ039457 for ; Thu, 7 Jun 2007 02:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l572U2b4039456; Thu, 7 Jun 2007 02:30:02 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 02:30:02 GMT Resent-Message-Id: <200706070230.l572U2b4039456@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dave Grochowski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B772E16A468 for ; Thu, 7 Jun 2007 02:22:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id A933713C45B for ; Thu, 7 Jun 2007 02:22:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l572MRsa025818 for ; Thu, 7 Jun 2007 02:22:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l572MRvc025817; Thu, 7 Jun 2007 02:22:27 GMT (envelope-from nobody) Message-Id: <200706070222.l572MRvc025817@www.freebsd.org> Date: Thu, 7 Jun 2007 02:22:27 GMT From: Dave Grochowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113436: Update Port: security/kopete-otr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 02:30:03 -0000 >Number: 113436 >Category: ports >Synopsis: Update Port: security/kopete-otr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 02:30:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dave Grochowski >Release: FreeBSD 6-STABLE >Organization: Rowan University >Environment: FreeBSD berserker 6.2-STABLE FreeBSD 6.2-STABLE #25: Wed May 30 20:07:26 EDT 2007 root@berserker:/usr/obj/usr/src/sys/BERSERKER i386 >Description: Update kopete-otr to 0.4. Changelog: - You can now set a different policy for every contact - Protocol names are now shown in preferences - You can now have enabled both plugins: GPG and OTR - fixed some bugs >How-To-Repeat: >Fix: Patch attached with submission follows: diff -u /usr/ports/security/kopete-otr.bak/Makefile /usr/ports/security/kopete-otr/Makefile --- /usr/ports/security/kopete-otr.bak/Makefile Wed Jun 6 21:40:48 2007 +++ /usr/ports/security/kopete-otr/Makefile Wed Jun 6 21:41:01 2007 @@ -6,7 +6,7 @@ # PORTNAME= otr -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= security net-im kde MASTER_SITES= http://kopete-otr.follefuder.org/ PKGNAMEPREFIX= kopete- diff -u /usr/ports/security/kopete-otr.bak/distinfo /usr/ports/security/kopete-otr/distinfo --- /usr/ports/security/kopete-otr.bak/distinfo Wed Jun 6 21:40:48 2007 +++ /usr/ports/security/kopete-otr/distinfo Wed Jun 6 21:41:06 2007 @@ -1,3 +1,3 @@ -MD5 (KDE/kopete-otr-0.3.tar.bz2) = ac1c6cae3c8db56d8b34521a01ed5edd -SHA256 (KDE/kopete-otr-0.3.tar.bz2) = 16eaee3cb31c001ee6c3d5c851192f10cb9004be61ba7bcaba2df8a4efcc2213 -SIZE (KDE/kopete-otr-0.3.tar.bz2) = 892433 +MD5 (KDE/kopete-otr-0.4.tar.bz2) = 740ed3ae4bbb0c517a0062552e6859c0 +SHA256 (KDE/kopete-otr-0.4.tar.bz2) = 8b988f275983debeb31311da1593140aa2ba7b33199daf22b80488eec27cb657 +SIZE (KDE/kopete-otr-0.4.tar.bz2) = 894511 diff -u /usr/ports/security/kopete-otr.bak/pkg-plist /usr/ports/security/kopete-otr/pkg-plist --- /usr/ports/security/kopete-otr.bak/pkg-plist Wed Jun 6 21:40:48 2007 +++ /usr/ports/security/kopete-otr/pkg-plist Wed Jun 6 22:02:59 2007 @@ -22,6 +22,7 @@ share/apps/kopete_otr/icons/crystalsvg/32x32/actions/otr_private.png share/apps/kopete_otr/icons/crystalsvg/32x32/actions/otr_unverified.png share/apps/kopete_otr/otrchatui.rc +share/apps/kopete_otr/otrui.rc share/config.kcfg/kopete_otr.kcfg share/doc/HTML/en/kopete_otr/common share/doc/HTML/en/kopete_otr/index.cache.bz2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 02:30:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 65B0516A421 for ; Thu, 7 Jun 2007 02:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E9FA613C45A for ; Thu, 7 Jun 2007 02:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l572U9H8039552 for ; Thu, 7 Jun 2007 02:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l572U90R039551; Thu, 7 Jun 2007 02:30:09 GMT (envelope-from gnats) Date: Thu, 7 Jun 2007 02:30:09 GMT Message-Id: <200706070230.l572U90R039551@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dmitry Marakasov Cc: Subject: Re: ports/112118: [PATCH] sysutils/pipemeter: fix crashes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 02:30:10 -0000 The following reply was made to PR ports/112118; it has been noted by GNATS. From: Dmitry Marakasov To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/112118: [PATCH] sysutils/pipemeter: fix crashes Date: Mon, 4 Jun 2007 13:01:50 +0400 * Edwin Groothuis (edwin@FreeBSD.org) wrote: > Awaiting maintainers feedback More than a month have passed... What about a maintainer timeout? -- Best regards, Dmitry Marakasov mailto:amdmi3@amdmi3.ru From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 02:30:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 802A616A4AB; Thu, 7 Jun 2007 02:30:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5953513C45B; Thu, 7 Jun 2007 02:30:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l572UEhQ039752; Thu, 7 Jun 2007 02:30:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l572UEpd039746; Thu, 7 Jun 2007 02:30:14 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 02:30:14 GMT From: Edwin Groothuis Message-Id: <200706070230.l572UEpd039746@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113436: Update Port: security/kopete-otr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 02:30:14 -0000 Synopsis: Update Port: security/kopete-otr Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu Jun 7 02:30:12 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113436 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 03:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC93316A468 for ; Thu, 7 Jun 2007 03:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AF9B213C455 for ; Thu, 7 Jun 2007 03:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l573e46V044159 for ; Thu, 7 Jun 2007 03:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l573e4XW044157; Thu, 7 Jun 2007 03:40:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 03:40:04 GMT Resent-Message-Id: <200706070340.l573e4XW044157@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, CHAO Shin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC80F16A468 for ; Thu, 7 Jun 2007 03:33:38 +0000 (UTC) (envelope-from quakelee@tarsier.delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 32FC713C46E for ; Thu, 7 Jun 2007 03:33:37 +0000 (UTC) (envelope-from quakelee@tarsier.delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id DFC0DEB7DAD for ; Thu, 7 Jun 2007 11:33:36 +0800 (CST) Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id TskadtWXdUPk for ; Thu, 7 Jun 2007 11:33:33 +0800 (CST) Received: from tarsier.delphij.net (tarsier.geekcn.org [210.51.165.229]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id E9A17EB7DAB for ; Thu, 7 Jun 2007 11:33:31 +0800 (CST) Received: from tarsier.delphij.net (localhost [127.0.0.1]) by tarsier.delphij.net (8.13.8/8.13.8) with ESMTP id l573XVSV095396 for ; Thu, 7 Jun 2007 11:33:31 +0800 (CST) (envelope-from quakelee@tarsier.delphij.net) Received: (from quakelee@localhost) by tarsier.delphij.net (8.13.8/8.13.8/Submit) id l573XPKA095395; Thu, 7 Jun 2007 11:33:25 +0800 (CST) (envelope-from quakelee) Message-Id: <200706070333.l573XPKA095395@tarsier.delphij.net> Date: Thu, 7 Jun 2007 11:33:25 +0800 (CST) From: CHAO Shin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113437: [NEW PORT] www/py-postmarkup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: CHAO Shin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 03:40:05 -0000 >Number: 113437 >Category: ports >Synopsis: [NEW PORT] www/py-postmarkup >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 03:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: CHAO Shin >Release: FreeBSD 7.0-current i386 >Organization: The FreeBSD Simplified Chinese Project >Environment: System: FreeBSD portyard.sysdept.sina.com.cn 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Thu Feb 1 19:02:06 CST 2007 root@portyard.sysdept.sina.com.cn:/usr/obj/usr/src/sys/GX270 i386 >Description: Add a lib for parse BBcode with Python. >How-To-Repeat: >Fix: -- py-postmarkup.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-postmarkup # py-postmarkup/pkg-plist # py-postmarkup/pkg-descr # py-postmarkup/distinfo # py-postmarkup/Makefile # echo c - py-postmarkup mkdir -p py-postmarkup > /dev/null 2>&1 echo x - py-postmarkup/pkg-plist sed 's/^X//' >py-postmarkup/pkg-plist << 'END-of-py-postmarkup/pkg-plist' X%%PYTHON_SITELIBDIR%%/postmarkup.py X%%PYTHON_SITELIBDIR%%/postmarkup.pyc X%%PYTHON_SITELIBDIR%%/postmarkup.pyo END-of-py-postmarkup/pkg-plist echo x - py-postmarkup/pkg-descr sed 's/^X//' >py-postmarkup/pkg-descr << 'END-of-py-postmarkup/pkg-descr' XGenerates XHTML snippets from BBCode. X XWWW: http://code.google.com/p/postmarkup/ END-of-py-postmarkup/pkg-descr echo x - py-postmarkup/distinfo sed 's/^X//' >py-postmarkup/distinfo << 'END-of-py-postmarkup/distinfo' XMD5 (postmarkup-1.0.4.zip) = c0a25426783783ed76aec3149c80e737 XSHA256 (postmarkup-1.0.4.zip) = f0588e3b3e2ed39833f79d466e41c25215c36cbd9e9f12f470b9627b04f5e0a2 XSIZE (postmarkup-1.0.4.zip) = 7219 END-of-py-postmarkup/distinfo echo x - py-postmarkup/Makefile sed 's/^X//' >py-postmarkup/Makefile << 'END-of-py-postmarkup/Makefile' X# New ports collection makefile for: py-postmarkup X# Date created: June 7, 2007 X# Whom: Chao Shin X# X# $FreeBSD $ X XPORTNAME= postmarkup XPORTVERSION= 1.0.4 XCATEGORIES= www python XMASTER_SITES= http://postmarkup.googlecode.com/files/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= quakelee@cn.freebsd.org XCOMMENT= A library to parse the BBcode written in Python X XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes XUSE_ZIP= yes X X.include END-of-py-postmarkup/Makefile exit --- py-postmarkup.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 03:40:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24A7E16A41F; Thu, 7 Jun 2007 03:40:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id F193D13C45B; Thu, 7 Jun 2007 03:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l573eBJJ044286; Thu, 7 Jun 2007 03:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l573eBnh044282; Thu, 7 Jun 2007 03:40:11 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 03:40:11 GMT From: Edwin Groothuis Message-Id: <200706070340.l573eBnh044282@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113437: [NEW PORT] www/py-postmarkup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 03:40:12 -0000 Synopsis: [NEW PORT] www/py-postmarkup Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 03:40:11 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113437 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 04:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E6CD16A400 for ; Thu, 7 Jun 2007 04:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D69E213C487 for ; Thu, 7 Jun 2007 04:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5740B1g044909 for ; Thu, 7 Jun 2007 04:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5740B25044908; Thu, 7 Jun 2007 04:00:11 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 04:00:11 GMT Resent-Message-Id: <200706070400.l5740B25044908@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Langille Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7ADC16A421 for ; Thu, 7 Jun 2007 03:55:10 +0000 (UTC) (envelope-from dan@langille.org) Received: from supernews.unixathome.org (supernews.unixathome.org [216.168.29.4]) by mx1.freebsd.org (Postfix) with ESMTP id C971613C4B9 for ; Thu, 7 Jun 2007 03:55:10 +0000 (UTC) (envelope-from dan@langille.org) Received: from localhost (localhost [127.0.0.1]) by supernews.unixathome.org (Postfix) with ESMTP id BAD271702B for ; Wed, 6 Jun 2007 23:33:09 -0400 (EDT) Received: from supernews.unixathome.org ([127.0.0.1]) by localhost (supernews.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8BlDU0k8i75C for ; Wed, 6 Jun 2007 23:33:05 -0400 (EDT) Received: from bast.unixathome.org (bast.unixathome.org [76.110.86.209]) by supernews.unixathome.org (Postfix) with ESMTP id 90C9617027 for ; Wed, 6 Jun 2007 23:33:04 -0400 (EDT) Received: from [10.55.0.99] (wocker.unixathome.org [10.55.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 86FCFB851 for ; Wed, 6 Jun 2007 23:33:07 -0400 (EDT) Received: from ngaio.unixathome.org (ngaio.unixathome.org [10.55.0.67]) by bast.unixathome.org (Postfix) with ESMTP id AC7EDB851; Wed, 6 Jun 2007 18:54:27 -0400 (EDT) Received: by ngaio.unixathome.org (Postfix, from userid 1001) id A908D172FF; Wed, 6 Jun 2007 18:54:27 -0400 (EDT) Message-Id: <20070606225427.A908D172FF@ngaio.unixathome.org> Date: Wed, 6 Jun 2007 18:54:27 -0400 (EDT) From: Dan Langille To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Dan Langille Subject: ports/113438: [MAINTAINER-UPDATE] sysutils/bacula-server-devel upgrade to latest BETA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 04:00:12 -0000 >Number: 113438 >Category: ports >Synopsis: [MAINTAINER-UPDATE] sysutils/bacula-server-devel upgrade to latest BETA >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 04:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dan Langille >Release: FreeBSD 4.9-STABLE i386 >Organization: The FreeBSD Diary >Environment: System: FreeBSD xeon.unixathome.org 4.9-STABLE FreeBSD 4.9-STABLE #2: Wed Mar 3 08:16:24 EST 2004 dan@polo.unixathome.org:/usr/obj/usr/src/sys/XEON i386 >Description: Upgrade to recently released beta: 2.1.12 >How-To-Repeat: >Fix: --- bacula.diff begins here --- diff -ruN /usr/ports/sysutils/bacula-server-devel/Makefile bacula-server-devel/Makefile --- /usr/ports/sysutils/bacula-server-devel/Makefile Wed Mar 7 16:57:59 2007 +++ bacula-server-devel/Makefile Wed Jun 6 18:41:29 2007 @@ -6,7 +6,7 @@ # PORTNAME= bacula -DISTVERSION= 1.39.34 +DISTVERSION= 2.1.12 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bacula @@ -19,9 +19,13 @@ UNIQUENAME?=${PORTNAME}${PKGNAMESUFFIX} -USE_RC_SUBR?= bacula-dir.sh bacula-sd.sh +USE_RC_SUBR?= bacula-dir bacula-sd -SUB_FILES+= pkg-message +.if defined(WITH_CLIENT_ONLY) +SUB_FILES+= pkg-message.client +.else +SUB_FILES+= pkg-message.server +.endif # The user/group IDs below are registered, see # http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html#DADS-UID @@ -53,8 +57,6 @@ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" -ALL_OPTIONS= CLIENT_ONLY WXCONSOLE GNOMECONSOLE SQLITE3 MYSQL POSTGRESQL MTX OPENSSL DOCS - .for opt in ${ALL_OPTIONS} .if defined(WITH_${opt}) BATCH= yes @@ -68,12 +70,12 @@ .if defined(WITH_CLIENT_ONLY) OPTIONS+= WXCONSOLE "Build with wxGTK based GUI console" off OPTIONS+= GNOMECONSOLE "Build with GNOME based GUI console" off -OPTIONS+= DOCS "Install documention" off .else OPTIONS= SQLITE3 "Use SqLite-3 database instead of SqLite-2" off OPTIONS+= MYSQL "Use MySQL database instead of SqLite" off OPTIONS+= POSTGRESQL "Use PostgreSQL database instead of SqLite" off OPTIONS+= MTX "Install mtx for control of autochanger devices" off +OPTIONS+= AUTOSETEOT "Enable auto seteotmodel" off .endif OPTIONS+= NLS "Native Language Support via gettext utilities" on @@ -90,15 +92,6 @@ .include -#DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz -#.if defined(WITH_DOCS) -#DISTFILES+= ${PORTNAME}-docs-${PORTVERSION}.tar.gz -#.endif - -.if defined(WITH_DOCS) -PORTDOCS= ReleaseNotes bacula.pdf developers.pdf kernstodo manual bacula-web -.endif - .if defined(WITH_NLS) USE_GETTEXT= yes CONFIGURE_ARGS+= --enable-nls @@ -150,7 +143,7 @@ SUB_LIST+= REQ_MYSQL="" REQ_PGSQL=postgresql .elif defined(WITH_SQLITE3) CONFIGURE_ARGS+= --with-sqlite3=yes -LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS+= sqlite3-threads>=0:${PORTSDIR}/databases/sqlite3-threads DBTYPE= sqlite3 .else CONFIGURE_ARGS+= --with-sqlite=yes @@ -172,7 +165,7 @@ MAN8=bacula-fd.8 bconsole.8 .else MAN8=bacula.8 bacula-dir.8 bacula-sd.8 bcopy.8 bextract.8 bls.8 bscan.8 btape.8 btraceback.8 dbcheck.8 -MAN1=bsmtp.1 bacula-console-gnome.1 bacula-tray-monitor.1 bacula-wxconsole.1 +MAN1=bsmtp.1 bat.1 .endif MAKE_ARGS+= -E MAN8 -E MAN1 MAKE_ENV+= MAN8="${MAN8}" MAN1="${MAN1}" @@ -199,8 +192,10 @@ @${ECHO_MSG} "" @${ECHO_MSG} "The default DB is SQLite-2!" .endif - @${ECHO_MSG} " WITH_DOCS=yes if you want the documentation installed." @${ECHO_MSG} " WITH_OPENSSL=yes Enable OpenSSL for encrypted communication." +.if !defined(WITH_AUTOSETEOT) + @${ECHO_MSG} " WITH_AUTOSETEOT=yes Enable auto seteotmodel (especially useful with TWO EOF = no.)" +.endif @${ECHO_MSG} "" @${ECHO_MSG} "===> Using ${DBTYPE} as the bacula database." @${ECHO_MSG} "" @@ -220,6 +215,10 @@ # In server port don't install filed @${REINPLACE_CMD} -e '/^fd_subdirs = /s|src/filed||' -e 's|src/console||' ${WRKSRC}/Makefile.in .endif +.if defined(WITH_AUTOSETEOT) + @cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/eotmodel-src-stored-dev.c.patch +.endif + pre-install: if [ ! -d "${BACULA_DIR}" ]; then \ @@ -264,19 +263,6 @@ fi .endif -# Documentation is only installed in -client port -.if !defined(NOPORTDOCS) && defined(WITH_DOCS) - for na in manual bacula-web; do \ - ${MKDIR} ${DOCSDIR}/$$na ;\ - cd ${WRKDIR}/${PORTNAME}-docs-${PORTVERSION} && ${FIND} $$na | \ - ${CPIO} -pdm -L -R root:wheel ${DOCSDIR}; \ - done - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/ReleaseNotes ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-docs-${PORTVERSION}/manual/bacula.pdf ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-docs-${PORTVERSION}/developers/developers.pdf ${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/kernstodo ${DOCSDIR} -.endif - # ensure that users in the bacula group can run bconsole ${CHGRP} bacula ${PREFIX}/sbin/bconsole .else @@ -304,60 +290,6 @@ fi; \ done -# Inform user after install about important things .... - @${ECHO_MSG} "*********************************************************************" - @${ECHO_MSG} "NOTE:" - @${ECHO_MSG} "Sample files are installed in ${PREFIX}/etc:" - @${ECHO_MSG} " bconsole.conf.sample, bacula-barcodes.sample, bacula-fd.conf.sample" -.if !defined(WITH_CLIENT_ONLY) - @${ECHO_MSG} " bacula-sd.conf.sample, bacula-dir.conf.sample" - @${ECHO_MSG} "" - @${ECHO_MSG} "An auto-changer manipulation script based on FreeBSDs" - @${ECHO_MSG} "chio command is included and installed at" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${PREFIX}/sbin/chio-bacula" - @${ECHO_MSG} "" - @${ECHO_MSG} "Please have a look at it if you want to use an" - @${ECHO_MSG} "autochanger. You have to configure the usage in" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${PREFIX}/etc/bacula-dir.conf" - @${ECHO_MSG} "" - @${ECHO_MSG} "Take care of correct permissions for changer and" - @${ECHO_MSG} "tape device (e.g. /dev/ch0 and /dev/n[r]sa0) i.e." - @${ECHO_MSG} "they must be accessible by user bacula." - @${ECHO_MSG} "" - @${ECHO_MSG} "Due to lack of some features in the FreeBSD tape driver" - @${ECHO_MSG} "implementation you MUST add some OS dependent options to" - @${ECHO_MSG} "the bacula-sd.conf file:" - @${ECHO_MSG} "" - @${ECHO_MSG} " Hardware End of Medium = no;" - @${ECHO_MSG} " Backward Space Record = no;" - @${ECHO_MSG} " Backward Space File = no;" - @${ECHO_MSG} "" - @${ECHO_MSG} "With 2 filemarks at EOT (see man mt):" - @${ECHO_MSG} " Fast Forward Space File = no;" - @${ECHO_MSG} " BSF at EOM = yes;" - @${ECHO_MSG} " TWO EOF = yes;" - @${ECHO_MSG} "" - @${ECHO_MSG} "With 1 filemarks at EOT (see man mt):" - @${ECHO_MSG} " Fast Forward Space File = yes;" - @${ECHO_MSG} " BSF at EOM = no;" - @${ECHO_MSG} " TWO EOF = no;" - @${ECHO_MSG} "" - @${ECHO_MSG} "NOTE: YOU CAN SWITCH EOT model ONLY when starting" - @${ECHO_MSG} " from scratch with EMPTY tapes!!!!" - @${ECHO_MSG} "" - @${ECHO_MSG} "It is also important that all the scripts accessed" - @${ECHO_MSG} "by RunBeforeJob and RunAfterJob can be executed by" - @${ECHO_MSG} "the user bacula." - @${ECHO_MSG} "" - @${ECHO_MSG} "For USB support read the bacula manual!! It could be necessary" - @${ECHO_MSG} "to configure/compile a new kernel!" - @${ECHO_MSG} "" - @${ECHO_MSG} "Look at ${PREFIX}/share/bacula/update_bacula_tables for" - @${ECHO_MSG} "database update procedure. Details can be found in the" - @${ECHO_MSG} "ReleaseNotes" -.endif - @${ECHO_MSG} "*********************************************************************" + @${CAT} ${PKGMESSAGE} .include diff -ruN /usr/ports/sysutils/bacula-server-devel/distinfo bacula-server-devel/distinfo --- /usr/ports/sysutils/bacula-server-devel/distinfo Wed Mar 7 16:57:59 2007 +++ bacula-server-devel/distinfo Wed Jun 6 18:42:31 2007 @@ -1,3 +1,3 @@ -MD5 (bacula-1.39.34.tar.gz) = 872e2570a7616e1734128869312030e0 -SHA256 (bacula-1.39.34.tar.gz) = a848fe27113ea713beb79dd21c7c382458fb4cb4b5c5e2f4868e459b5605a050 -SIZE (bacula-1.39.34.tar.gz) = 2487005 +MD5 (bacula-2.1.12.tar.gz) = c0fcb9a38462ee9a2e47fe550a60fcc6 +SHA256 (bacula-2.1.12.tar.gz) = 4cf59985aa2847ba95fc05fd938c655ff191be3c60d28ed8f5c24eb62b045d83 +SIZE (bacula-2.1.12.tar.gz) = 2867285 diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-dir.in bacula-server-devel/files/bacula-dir.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-dir.in Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/bacula-dir.in Wed Jun 6 17:32:15 2007 @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: ports/sysutils/bacula-server/files/bacula-dir.in,v 1.2 2007/01/04 23:22:30 itetcu Exp $ +# +# PROVIDE: utility +# REQUIRE: DAEMON %%REQ_MYSQL%% %%REQ_PGSQL%% +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bacula_dir_enable (bool): Set to NO by default. +# Set it to YES to enable bacula_dir. +# bacula_dir_flags (params): Set params used to start bacula_dir. +# + +. %%RC_SUBR%% + +name="bacula_dir" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bacula-dir + +load_rc_config $name + +pidfile="${bacula_dir_pidfile}" + +: ${bacula_dir_enable="NO"} +: ${bacula_dir_flags=" -u bacula -g bacula -v -c %%PREFIX%%/etc/bacula-dir.conf"} +: ${bacula_dir_pidfile="/var/run/bacula-dir.9101.pid"} + +run_rc_command "$1" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-dir.sh.in bacula-server-devel/files/bacula-dir.sh.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-dir.sh.in Wed Mar 7 16:57:59 2007 +++ bacula-server-devel/files/bacula-dir.sh.in Wed Dec 31 19:00:00 1969 @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: ports/sysutils/bacula-server-devel/files/bacula-dir.sh.in,v 1.3 2006/09/09 20:17:39 itetcu Exp $ -# -# PROVIDE: utility -# REQUIRE: DAEMON %%REQ_MYSQL%% %%REQ_PGSQL%% -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# bacula_dir_enable (bool): Set to NO by default. -# Set it to YES to enable bacula_dir. -# bacula_dir_flags (params): Set params used to start bacula_dir. -# - -. %%RC_SUBR%% - -name="bacula_dir" -rcvar=${name}_enable -command=%%PREFIX%%/sbin/bacula-dir - -load_rc_config $name - -pidfile="${bacula_dir_pidfile}" - -: ${bacula_dir_enable="NO"} -: ${bacula_dir_flags=" -u bacula -g bacula -v -c %%PREFIX%%/etc/bacula-dir.conf"} -: ${bacula_dir_pidfile="/var/run/bacula-dir.9101.pid"} - -run_rc_command "$1" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-fd.in bacula-server-devel/files/bacula-fd.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-fd.in Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/bacula-fd.in Wed Jun 6 17:32:15 2007 @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: ports/sysutils/bacula-server/files/bacula-fd.in,v 1.4 2007/03/01 12:19:01 miwi Exp $ +# +# PROVIDE: utility +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bacula_fd_enable (bool): Set to NO by default. +# Set it to YES to enable bacula_fd. +# bacula_fd_flags (params): Set params used to start bacula_fd. +# + +. %%RC_SUBR%% + +name="bacula_fd" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bacula-fd + +load_rc_config $name + +pidfile="${bacula_fd_pidfile}" + +: ${bacula_fd_enable="NO"} +: ${bacula_fd_flags=" -u root -g wheel -v -c %%PREFIX%%/etc/bacula-fd.conf"} +: ${bacula_fd_pidfile="/var/run/bacula-fd.9102.pid"} + +run_rc_command "$1" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-fd.sh.in bacula-server-devel/files/bacula-fd.sh.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-fd.sh.in Wed Mar 7 16:57:59 2007 +++ bacula-server-devel/files/bacula-fd.sh.in Wed Dec 31 19:00:00 1969 @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: ports/sysutils/bacula-server-devel/files/bacula-fd.sh.in,v 1.2 2006/09/09 20:17:39 itetcu Exp $ -# -# PROVIDE: utility -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# bacula_fd_enable (bool): Set to NO by default. -# Set it to YES to enable bacula_fd. -# bacula_fd_flags (params): Set params used to start bacula_fd. -# - -. %%RC_SUBR%% - -name="bacula_fd" -rcvar=${name}_enable -command=/usr/local/sbin/bacula-fd - -load_rc_config $name - -pidfile="${bacula_fd_pidfile}" - -: ${bacula_fd_enable="NO"} -: ${bacula_fd_flags=" -u root -g wheel -v -c /usr/local/etc/bacula-fd.conf"} -: ${bacula_fd_pidfile="/var/run/bacula-fd.9102.pid"} - -run_rc_command "$1" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-sd.conf.in bacula-server-devel/files/bacula-sd.conf.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-sd.conf.in Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/bacula-sd.conf.in Wed Jun 6 17:32:15 2007 @@ -0,0 +1,20 @@ +--- src/stored/bacula-sd.conf.in.org Tue Feb 13 18:56:09 2007 ++++ src/stored/bacula-sd.conf.in Tue Feb 13 18:56:16 2007 +@@ -152,6 +152,7 @@ + #Device { + # Name = "DVD-Writer" + # Media Type = DVD ++# Device Type = DVD + # Archive Device = /dev/hdc + # LabelMedia = yes; # lets Bacula label unlabeled media + # Random Access = Yes; +@@ -162,7 +163,9 @@ + # RequiresMount = yes; + # MountPoint = /mnt/cdrom; + # MountCommand = "/bin/mount -t iso9660 -o ro %a %m"; ++# MountCommand = "/sbin/mount -t cd9660 -o ro %a %m"; # FreeBSD + # UnmountCommand = "/bin/umount %m"; ++# UnmountCommand = "/sbin/umount %m"; # FreeBSD + # SpoolDirectory = /tmp/backup; + # WritePartCommand = "/etc/bacula/dvd-handler %a write %e %v" + # FreeSpaceCommand = "/etc/bacula/dvd-handler %a free" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-sd.in bacula-server-devel/files/bacula-sd.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-sd.in Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/bacula-sd.in Wed Jun 6 17:32:15 2007 @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: ports/sysutils/bacula-server/files/bacula-sd.in,v 1.3 2007/02/28 21:13:11 laszlof Exp $ +# +# PROVIDE: utility +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bacula_sd_enable (bool): Set to NO by default. +# Set it to YES to enable bacula_sd. +# bacula_sd_flags (params): Set params used to start bacula_sd. +# + +. %%RC_SUBR%% + +name="bacula_sd" +rcvar=`set_rcvar` +command=%%PREFIX%%/sbin/bacula-sd + +load_rc_config $name + +pidfile="${bacula_sd_pidfile}" + +: ${bacula_sd_enable="NO"} +: ${bacula_sd_flags=" -u bacula -g bacula -v -c %%PREFIX%%/etc/bacula-sd.conf"} +: ${bacula_sd_pidfile="/var/run/bacula-sd.9103.pid"} + +run_rc_command "$1" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/bacula-sd.sh.in bacula-server-devel/files/bacula-sd.sh.in --- /usr/ports/sysutils/bacula-server-devel/files/bacula-sd.sh.in Wed Mar 7 16:57:59 2007 +++ bacula-server-devel/files/bacula-sd.sh.in Wed Dec 31 19:00:00 1969 @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: ports/sysutils/bacula-server-devel/files/bacula-sd.sh.in,v 1.3 2006/09/09 20:17:39 itetcu Exp $ -# -# PROVIDE: utility -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# bacula_sd_enable (bool): Set to NO by default. -# Set it to YES to enable bacula_sd. -# bacula_sd_flags (params): Set params used to start bacula_sd. -# - -. %%RC_SUBR%% - -name="bacula_sd" -rcvar=`set_rcvar` -command=/usr/local/sbin/bacula-sd - -load_rc_config $name - -pidfile="${bacula_sd_pidfile}" - -: ${bacula_sd_enable="NO"} -: ${bacula_sd_flags=" -u bacula -g bacula -v -c /usr/local/etc/bacula-sd.conf"} -: ${bacula_sd_pidfile="/var/run/bacula-sd.9103.pid"} - -run_rc_command "$1" diff -ruN /usr/ports/sysutils/bacula-server-devel/files/eotmodel-src-stored-dev.c.patch bacula-server-devel/files/eotmodel-src-stored-dev.c.patch --- /usr/ports/sysutils/bacula-server-devel/files/eotmodel-src-stored-dev.c.patch Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/eotmodel-src-stored-dev.c.patch Wed Jun 6 17:32:15 2007 @@ -0,0 +1,10 @@ +Index: src/stored/dev.c +@@ -2368,7 +2368,7 @@ + } + } + /* Turn this on later when fully tested */ +-#if defined(xxxMTIOCSETEOTMODEL) ++#if defined(MTIOCSETEOTMODEL) + uint32_t neof; + if (dev->has_cap(CAP_TWOEOF)) { + neof = 2; diff -ruN /usr/ports/sysutils/bacula-server-devel/files/pkg-message.client.in bacula-server-devel/files/pkg-message.client.in --- /usr/ports/sysutils/bacula-server-devel/files/pkg-message.client.in Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/pkg-message.client.in Wed Jun 6 17:32:15 2007 @@ -0,0 +1,23 @@ +################################################################################ + +NOTE: +Sample files are installed in ${PREFIX}/etc: +bconsole.conf.sample, bacula-barcodes.sample, bacula-fd.conf.sample + + Please read this file: + + %%DOCSDIR%%/ReleaseNotes + + as installed by docs port for the upgrade procedure. + +IMPORTANT UPGRADE NOTES: + +- A database upgrade is required. +- Your Director and SD must be simultaneously upgraded. +- The "Accept Any Volume" directive has been removed. + +- Lots of new features + +Read the ReleaseNotes for further information. + +################################################################################ diff -ruN /usr/ports/sysutils/bacula-server-devel/files/pkg-message.in bacula-server-devel/files/pkg-message.in --- /usr/ports/sysutils/bacula-server-devel/files/pkg-message.in Wed Mar 7 16:57:59 2007 +++ bacula-server-devel/files/pkg-message.in Wed Dec 31 19:00:00 1969 @@ -1,24 +0,0 @@ -################################################################################ - Please read this file: - - %%DOCSDIR%%/ReleaseNotes - - for the upgrade procedure! - - IF YOU IGNORE THIS you may !! LOSE DATA !! - -IMPORTANT UPGRADE NOTES: - -- A database upgrade is required. -- Your Director and SD must be simultaneously upgraded. -- The "Accept Any Volume" directive has been removed. - -- Lots of new features - -Read the ReleaseNotes for further information. - - Please note that bacula-server no longer installs the client - and that the documentation can be optionally installed with the - client port (sysutils/bacula-client). - -################################################################################ diff -ruN /usr/ports/sysutils/bacula-server-devel/files/pkg-message.server.in bacula-server-devel/files/pkg-message.server.in --- /usr/ports/sysutils/bacula-server-devel/files/pkg-message.server.in Wed Dec 31 19:00:00 1969 +++ bacula-server-devel/files/pkg-message.server.in Wed Jun 6 17:32:15 2007 @@ -0,0 +1,66 @@ +################################################################################ +NOTE: + +An auto-changer manipulation script based on FreeBSDs +chio command is included and installed at + + ${PREFIX}/sbin/chio-bacula + +Please have a look at it if you want to use an +autochanger. You have to configure the usage in + + ${PREFIX}/etc/bacula-dir.conf + +Take care of correct permissions for changer and +tape device (e.g. /dev/ch0 and /dev/n[r]sa0) i.e. +they must be accessible by user bacula. + +Due to lack of some features in the FreeBSD tape driver +implementation you MUST add some OS dependent options to +the bacula-sd.conf file: + + Hardware End of Medium = no; + Backward Space Record = no; + Backward Space File = no; + +With 2 filemarks at EOT (see man mt): + Fast Forward Space File = no; + BSF at EOM = yes; + TWO EOF = yes; + +With 1 filemarks at EOT (see man mt): + Fast Forward Space File = yes; + BSF at EOM = no; + TWO EOF = no; + +NOTE: YOU CAN SWITCH EOT model ONLY when starting + from scratch with EMPTY tapes. + +It is also important that all the scripts accessed +by RunBeforeJob and RunAfterJob will be executed by +the user bacula. Check your permissions. + +For USB support read the bacula manual. It could be necessary +to configure/compile a new kernel. + +Look at ${PREFIX}/share/bacula/update_bacula_tables for +database update procedure. Details can be found in the +ReleaseNotes + + Please read this file: + + %%DOCSDIR%%/ReleaseNotes + + as installed by docs port for the upgrade procedure. + +IMPORTANT UPGRADE NOTES FOR THIS RELEASE: + +- A database upgrade is required. +- Your Director and SD must be simultaneously upgraded. +- The "Accept Any Volume" directive has been removed. + +- Lots of new features + +Read the ReleaseNotes for further information. + +################################################################################ --- bacula.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 05:04:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F20816A421; Thu, 7 Jun 2007 05:04:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 487F713C4AD; Thu, 7 Jun 2007 05:04:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57549Sp049070; Thu, 7 Jun 2007 05:04:09 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57549Xp049066; Thu, 7 Jun 2007 05:04:09 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 05:04:09 GMT From: Martin Wilke Message-Id: <200706070504.l57549Xp049066@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113436: Update Port: security/kopete-otr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 05:04:09 -0000 Synopsis: Update Port: security/kopete-otr Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 05:04:08 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113436 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 05:04:24 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CE0C16A476; Thu, 7 Jun 2007 05:04:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EA50613C4AE; Thu, 7 Jun 2007 05:04:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5754Nq3049200; Thu, 7 Jun 2007 05:04:23 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5754N6T049196; Thu, 7 Jun 2007 05:04:23 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 05:04:23 GMT From: Martin Wilke Message-Id: <200706070504.l5754N6T049196@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113434: Update port: audio/libamrnb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 05:04:24 -0000 Synopsis: Update port: audio/libamrnb Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 05:04:22 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113434 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 06:30:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA00B16A468 for ; Thu, 7 Jun 2007 06:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8AE3213C4B7 for ; Thu, 7 Jun 2007 06:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l576U4jO053834 for ; Thu, 7 Jun 2007 06:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l576U4iK053833; Thu, 7 Jun 2007 06:30:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 06:30:04 GMT Resent-Message-Id: <200706070630.l576U4iK053833@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bf Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35DFF16A41F for ; Thu, 7 Jun 2007 06:24:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 031F613C45E for ; Thu, 7 Jun 2007 06:24:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l576OavO079708 for ; Thu, 7 Jun 2007 06:24:36 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l576Oax7079707; Thu, 7 Jun 2007 06:24:36 GMT (envelope-from nobody) Message-Id: <200706070624.l576Oax7079707@www.freebsd.org> Date: Thu, 7 Jun 2007 06:24:36 GMT From: bf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113441: [PATCH] update textproc/libtre to 0.7.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 06:30:04 -0000 >Number: 113441 >Category: ports >Synopsis: [PATCH] update textproc/libtre to 0.7.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 06:30:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: bf >Release: 6.2-Stable i386 >Organization: - >Environment: >Description: diff -ruN libtre.orig/Makefile libtre/Makefile --- libtre.orig/Makefile Sat May 19 21:07:06 2007 +++ libtre/Makefile Thu Jun 7 02:06:40 2007 @@ -7,8 +7,7 @@ # PORTNAME= libtre -PORTVERSION= 0.7.4 -PORTREVISION= 1 +PORTVERSION= 0.7.5 CATEGORIES= textproc MASTER_SITES= http://laurikari.net/tre/ \ ${MASTER_SITE_LOCAL} @@ -22,22 +21,29 @@ USE_BZIP2= yes USE_GNOME= gnomehack gnometarget pkgconfig -USE_GETOPT_LONG= yes USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +CONFIGURE_ARGS+= --mandir=${PREFIX}/man +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" USE_LDCONFIG= yes -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib MAN1= agrep.1 +MANCOMPRESSED= no -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.else +OPTIONS= NLS "native language support" off \ + OPTIMIZED_CFLAGS "append optimization flags to CFLAGS" off \ + STATIC "build both static and shared libraries" off + +.include + +.if defined(WITH_NLS) USE_GETTEXT= yes PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " .endif .if defined(WITH_OPTIMIZED_CFLAGS) @@ -46,23 +52,19 @@ -fforce-mem -fforce-addr -O3 .endif -pre-everything:: -.ifndef(WITH_OPTIMIZED_CFLAGS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> You can enable extra optimizations by defining WITH_OPTIMIZED_CFLAGS' - @${ECHO_MSG} "===> For example, 'make WITH_OPTIMIZED_CFLAGS=yes'" +.if defined(WITH_STATIC) +CONFIGURE_ARGS+= --enable-static +PLIST_SUB+= STATIC="" +.else +PLIST_SUB+= STATIC="@comment " .endif - @${ECHO_MSG} '===>' - -post-patch: - @${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g' ${WRKSRC}/configure post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for i in tre-api.html tre-syntax.html - ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/doc/${i} ${DOCSDIR} .endfor .endif -.include +.include diff -ruN libtre.orig/distinfo libtre/distinfo --- libtre.orig/distinfo Mon May 22 05:55:44 2006 +++ libtre/distinfo Thu Jun 7 00:19:26 2007 @@ -1,3 +1,3 @@ -MD5 (tre-0.7.4.tar.bz2) = 8b4bfb078f2cc9e01f37d3d251672f75 -SHA256 (tre-0.7.4.tar.bz2) = 0d55b4bc0a9594c433f2657de9bf4610a1553776f42d317a065929d1c4e91f66 -SIZE (tre-0.7.4.tar.bz2) = 387358 +MD5 (tre-0.7.5.tar.bz2) = e72e5c94008865cf720992a0b25d6e89 +SHA256 (tre-0.7.5.tar.bz2) = 030f25e6e4c1714df013105494bc5e24b3e0acc65887158a52a03efd8e0759aa +SIZE (tre-0.7.5.tar.bz2) = 396346 diff -ruN libtre.orig/pkg-plist libtre/pkg-plist --- libtre.orig/pkg-plist Sat May 19 21:07:06 2007 +++ libtre/pkg-plist Thu Jun 7 01:24:47 2007 @@ -1,14 +1,14 @@ -@comment $FreeBSD: ports/textproc/libtre/pkg-plist,v 1.11 2007/05/19 20:24:02 flz Exp $ bin/agrep include/tre/regex.h include/tre/tre-config.h -lib/libtre.a +%%STATIC%%lib/libtre.a lib/libtre.la lib/libtre.so lib/libtre.so.6 libdata/pkgconfig/tre.pc %%NLS%%share/locale/fi/LC_MESSAGES/tre.mo +%%NLS%%share/locale/sv/LC_MESSAGES/tre.mo %%PORTDOCS%%%%DOCSDIR%%/tre-api.html %%PORTDOCS%%%%DOCSDIR%%/tre-syntax.html -@dirrm include/tre %%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm include/tre >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 06:30:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7781916A468; Thu, 7 Jun 2007 06:30:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5020813C455; Thu, 7 Jun 2007 06:30:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l576UGld054332; Thu, 7 Jun 2007 06:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l576UGGw054326; Thu, 7 Jun 2007 06:30:16 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 06:30:16 GMT From: Edwin Groothuis Message-Id: <200706070630.l576UGGw054326@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jkoshy@FreeBSD.org Cc: Subject: Re: ports/113441: [PATCH] update textproc/libtre to 0.7.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 06:30:16 -0000 Synopsis: [PATCH] update textproc/libtre to 0.7.5 Responsible-Changed-From-To: freebsd-ports-bugs->jkoshy Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 06:30:15 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113441 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 06:30:22 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3A9016A46C; Thu, 7 Jun 2007 06:30:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7A36913C4BE; Thu, 7 Jun 2007 06:30:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l576UM08054512; Thu, 7 Jun 2007 06:30:22 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l576UMXk054499; Thu, 7 Jun 2007 06:30:22 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 06:30:22 GMT From: Martin Wilke Message-Id: <200706070630.l576UMXk054499@freefall.freebsd.org> To: bacon@smithers.neuro.mcw.edu, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/112500: New port: math/vtk5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 06:30:22 -0000 Synopsis: New port: math/vtk5 State-Changed-From-To: open->feedback State-Changed-By: miwi State-Changed-When: Thu Jun 7 06:28:17 UTC 2007 State-Changed-Why: Hi, The port does not build. Can you take a look in it? http://tb.miwibox.org/index.php?action=describe_port&id=1296 http://head.miwibox.org/tb/index.php?action=describe_port&id=901 Thanks. Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 06:28:17 UTC 2007 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=112500 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 07:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2753416A469 for ; Thu, 7 Jun 2007 07:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E3CFC13C46C for ; Thu, 7 Jun 2007 07:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5770BPY055869 for ; Thu, 7 Jun 2007 07:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5770B0M055868; Thu, 7 Jun 2007 07:00:11 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 07:00:11 GMT Resent-Message-Id: <200706070700.l5770B0M055868@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Robert Gogolok Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FC9D16A400 for ; Thu, 7 Jun 2007 06:53:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 3009113C458 for ; Thu, 7 Jun 2007 06:53:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l576r3U3087562 for ; Thu, 7 Jun 2007 06:53:03 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l576r362087561; Thu, 7 Jun 2007 06:53:03 GMT (envelope-from nobody) Message-Id: <200706070653.l576r362087561@www.freebsd.org> Date: Thu, 7 Jun 2007 06:53:03 GMT From: Robert Gogolok To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113442: [MAINTAINER UPDATE] sysutils/py-bcfg2: additional MASTER_SITE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 07:00:12 -0000 >Number: 113442 >Category: ports >Synopsis: [MAINTAINER UPDATE] sysutils/py-bcfg2: additional MASTER_SITE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 07:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Robert Gogolok >Release: FreeBSD 6.2 >Organization: http://www.robert-gogolok.de >Environment: FreeBSD desktop.gogolok.de 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: http://mirror.opensysadmin.com/bcfg/ is a mirror for bcfg2 releases. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/py-bcfg2/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 4 Jun 2007 20:07:23 -0000 1.1 +++ Makefile 7 Jun 2007 06:53:22 -0000 @@ -8,7 +8,8 @@ PORTNAME= bcfg2 PORTVERSION= 0.9.3 CATEGORIES= sysutils -MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/bcfg/ +MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/bcfg/ \ + http://mirror.opensysadmin.com/bcfg/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= gogo@cs.uni-sb.de >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 07:00:22 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FF0716A46E; Thu, 7 Jun 2007 07:00:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ECA4B13C455; Thu, 7 Jun 2007 07:00:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5770LF6056028; Thu, 7 Jun 2007 07:00:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5770Lm6056020; Thu, 7 Jun 2007 07:00:21 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 07:00:21 GMT From: Edwin Groothuis Message-Id: <200706070700.l5770Lm6056020@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113442: [MAINTAINER UPDATE] sysutils/py-bcfg2: additional MASTER_SITE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 07:00:22 -0000 Synopsis: [MAINTAINER UPDATE] sysutils/py-bcfg2: additional MASTER_SITE Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 07:00:20 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113442 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 07:40:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0AAC16A469 for ; Thu, 7 Jun 2007 07:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8BC9613C45E for ; Thu, 7 Jun 2007 07:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l577e4OO060290 for ; Thu, 7 Jun 2007 07:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l577e4xe060289; Thu, 7 Jun 2007 07:40:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 07:40:04 GMT Resent-Message-Id: <200706070740.l577e4xe060289@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7D4216A468 for ; Thu, 7 Jun 2007 07:39:28 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 3ABE913C465 for ; Thu, 7 Jun 2007 07:39:28 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from clamav by cp65.agava.net with drweb-scanned (Exim 4.44 (FreeBSD)) id 1HwCac-0003kG-Mm for FreeBSD-gnats-submit@freebsd.org; Thu, 07 Jun 2007 11:39:26 +0400 Received: from [213.148.29.33] (helo=nexii.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.44 (FreeBSD)) id 1HwCac-0003jh-FM for FreeBSD-gnats-submit@freebsd.org; Thu, 07 Jun 2007 11:39:26 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id 003EE17055 for ; Thu, 7 Jun 2007 11:39:29 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id E3A734118; Thu, 7 Jun 2007 11:39:51 +0400 (MSD) Message-Id: <20070607073951.E3A734118@hades.panopticon> Date: Thu, 7 Jun 2007 11:39:51 +0400 (MSD) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113443: [NEW PORT] devel/luabind: Library that helps you create bindings between C++ and Lua X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 07:40:04 -0000 >Number: 113443 >Category: ports >Synopsis: [NEW PORT] devel/luabind: Library that helps you create bindings between C++ and Lua >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 07:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 6.1-RELEASE-p12 i386 >Organization: >Environment: System: FreeBSD hades.panopticon 6.1-RELEASE-p12 FreeBSD 6.1-RELEASE-p12 #0: Tue Jan 16 23:12:21 MSK 2007 amdmi3@hades.panopticon:/usr/obj/usr/src/sys/HADES i386 >Description: Luabind is a library that helps you create bindings between C++ and Lua. It has the ability to expose functions and classes, written in C++, to Lua. It will also supply the functionality to define classes in lua and let them derive from other lua classes or C++ classes. Lua classes can override virtual functions from their C++ baseclasses. It is written towards Lua 5.x, and does not work with Lua 4. It is implemented utilizing template meta programming. That means that you don't need an extra preprocess pass to compile your project (it is done by the compiler). It also means you don't (usually) have to know the exact signature of each function you register, since the library will generate code depending on the compile-time type of the function (which includes the signature). The main drawback of this approach is that the compilation time will increase for the file that does the registration, it is therefore recommended that you register everything in the same cpp-file. WWW: http://www.rasterbar.com/products/luabind.html >How-To-Repeat: >Fix: --- luabind-0.7.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # luabind # luabind/files # luabind/files/patch-src-makefile # luabind/Makefile # luabind/pkg-descr # luabind/pkg-plist # luabind/distinfo # echo c - luabind mkdir -p luabind > /dev/null 2>&1 echo c - luabind/files mkdir -p luabind/files > /dev/null 2>&1 echo x - luabind/files/patch-src-makefile sed 's/^X//' >luabind/files/patch-src-makefile << 'END-of-luabind/files/patch-src-makefile' X--- src/makefile.orig Mon Nov 28 23:55:34 2005 X+++ src/makefile Wed Jun 6 21:18:26 2007 X@@ -1,5 +1,3 @@ X-include ../config X- X SOURCES = \ X wrapper_base.cpp \ X pcall.cpp \ X@@ -37,7 +35,7 @@ X ranlib $@ X X %.o:%.cpp X- $(CXX) -g -ftemplate-depth-100 -Wall -DLUABIND_BUILDING -c $? -o $@ -I$(LUA_PATH)/include -I- -I.. -I$(BOOST_ROOT) $(CONFIG) X+ $(CXX) $(CXXFLAGS) -ftemplate-depth-100 -Wall -DLUABIND_BUILDING -c $? -o $@ -I$(LUA_INCDIR) -I.. -I$(BOOST_ROOT) -DNODEBUG X X clean: X rm -f $(OBJECTS) $(TARGET) END-of-luabind/files/patch-src-makefile echo x - luabind/Makefile sed 's/^X//' >luabind/Makefile << 'END-of-luabind/Makefile' X# New ports collection makefile for: luabind X# Date created: 06 Jun 2007 X# Whom: Dmitry Marakasov X# X# $FreeBSD$ X# X XPORTNAME= luabind XPORTVERSION= 0.7 XCATEGORIES= devel XMASTER_SITES= SF X XMAINTAINER= amdmi3@amdmi3.ru XCOMMENT= Library that helps you create bindings between C++ and Lua X XBUILD_DEPENDS= ${LOCALBASE}/include/boost/python/detail/is_xxx.hpp:${PORTSDIR}/devel/boost-python XRUN_DEPENDS= ${LOCALBASE}/include/boost/python/detail/is_xxx.hpp:${PORTSDIR}/devel/boost-python X XUSE_ZIP= yes XUSE_LUA= 5.0 XUSE_GMAKE= yes X XMAKE_ENV= CXX="${CXX}" LUA_INCDIR="${LUA_INCDIR}" \ X BOOST_ROOT="${LOCALBASE}/include" X XWRKSRC= ${WRKDIR}/${PORTNAME} X XBUILD_WRKSRC= ${WRKSRC}/src X XMAKEFILE= makefile X XPORTDOCS= * X Xpost-patch: X ${MKDIR} ${WRKSRC}/lib X Xdo-install: X ${INSTALL_DATA} ${WRKSRC}/lib/libluabind.a ${PREFIX}/lib X (cd ${WRKSRC} && ${COPYTREE_SHARE} luabind ${PREFIX}/include) X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR}) X.endif X X.include END-of-luabind/Makefile echo x - luabind/pkg-descr sed 's/^X//' >luabind/pkg-descr << 'END-of-luabind/pkg-descr' XLuabind is a library that helps you create bindings between C++ and XLua. It has the ability to expose functions and classes, written Xin C++, to Lua. It will also supply the functionality to define Xclasses in lua and let them derive from other lua classes or C++ Xclasses. Lua classes can override virtual functions from their C++ Xbaseclasses. It is written towards Lua 5.x, and does not work with XLua 4. X XIt is implemented utilizing template meta programming. That means Xthat you don't need an extra preprocess pass to compile your project X(it is done by the compiler). It also means you don't (usually) Xhave to know the exact signature of each function you register, Xsince the library will generate code depending on the compile-time Xtype of the function (which includes the signature). The main Xdrawback of this approach is that the compilation time will increase Xfor the file that does the registration, it is therefore recommended Xthat you register everything in the same cpp-file. X XWWW: http://www.rasterbar.com/products/luabind.html END-of-luabind/pkg-descr echo x - luabind/pkg-plist sed 's/^X//' >luabind/pkg-plist << 'END-of-luabind/pkg-plist' Xinclude/luabind/adopt_policy.hpp Xinclude/luabind/back_reference.hpp Xinclude/luabind/back_reference_fwd.hpp Xinclude/luabind/class.hpp Xinclude/luabind/class_info.hpp Xinclude/luabind/config.hpp Xinclude/luabind/container_policy.hpp Xinclude/luabind/copy_policy.hpp Xinclude/luabind/dependency_policy.hpp Xinclude/luabind/detail/calc_arity.hpp Xinclude/luabind/detail/call.hpp Xinclude/luabind/detail/call_function.hpp Xinclude/luabind/detail/call_member.hpp Xinclude/luabind/detail/call_operator_iterate.hpp Xinclude/luabind/detail/class_cache.hpp Xinclude/luabind/detail/class_registry.hpp Xinclude/luabind/detail/class_rep.hpp Xinclude/luabind/detail/construct_rep.hpp Xinclude/luabind/detail/constructor.hpp Xinclude/luabind/detail/convert_to_lua.hpp Xinclude/luabind/detail/debug.hpp Xinclude/luabind/detail/decorate_type.hpp Xinclude/luabind/detail/enum_maker.hpp Xinclude/luabind/detail/find_best_match.hpp Xinclude/luabind/detail/garbage_collector.hpp Xinclude/luabind/detail/get_overload_signature.hpp Xinclude/luabind/detail/get_signature.hpp Xinclude/luabind/detail/has_get_pointer.hpp Xinclude/luabind/detail/implicit_cast.hpp Xinclude/luabind/detail/is_indirect_const.hpp Xinclude/luabind/detail/link_compatibility.hpp Xinclude/luabind/detail/method_rep.hpp Xinclude/luabind/detail/most_derived.hpp Xinclude/luabind/detail/object_call.hpp Xinclude/luabind/detail/object_funs.hpp Xinclude/luabind/detail/object_rep.hpp Xinclude/luabind/detail/open.hpp Xinclude/luabind/detail/operator_id.hpp Xinclude/luabind/detail/other.hpp Xinclude/luabind/detail/overload_rep.hpp Xinclude/luabind/detail/overload_rep_base.hpp Xinclude/luabind/detail/pcall.hpp Xinclude/luabind/detail/pointee_sizeof.hpp Xinclude/luabind/detail/pointee_typeid.hpp Xinclude/luabind/detail/policy.hpp Xinclude/luabind/detail/primitives.hpp Xinclude/luabind/detail/property.hpp Xinclude/luabind/detail/ref.hpp Xinclude/luabind/detail/signature_match.hpp Xinclude/luabind/detail/stack_utils.hpp Xinclude/luabind/detail/typetraits.hpp Xinclude/luabind/detail/yes_no.hpp Xinclude/luabind/discard_result_policy.hpp Xinclude/luabind/error.hpp Xinclude/luabind/from_stack.hpp Xinclude/luabind/function.hpp Xinclude/luabind/get_pointer.hpp Xinclude/luabind/handle.hpp Xinclude/luabind/iterator_policy.hpp Xinclude/luabind/lua_include.hpp Xinclude/luabind/luabind.hpp Xinclude/luabind/object.hpp Xinclude/luabind/open.hpp Xinclude/luabind/operator.hpp Xinclude/luabind/out_value_policy.hpp Xinclude/luabind/prefix.hpp Xinclude/luabind/raw_policy.hpp Xinclude/luabind/return_reference_to_policy.hpp Xinclude/luabind/scope.hpp Xinclude/luabind/value_wrapper.hpp Xinclude/luabind/weak_ref.hpp Xinclude/luabind/wrapper_base.hpp Xinclude/luabind/yield_policy.hpp Xlib/libluabind.a X@dirrm include/luabind/detail X@dirrm include/luabind END-of-luabind/pkg-plist echo x - luabind/distinfo sed 's/^X//' >luabind/distinfo << 'END-of-luabind/distinfo' XMD5 (luabind-0.7.zip) = f3e8adf1d63785928b043ed377b0e94d XSHA256 (luabind-0.7.zip) = 8a966b5a8b63e5d601eb16bef28bec3ea486bd1f29deb43c5f8fad36ced528f5 XSIZE (luabind-0.7.zip) = 320531 END-of-luabind/distinfo exit --- luabind-0.7.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 07:40:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BCEE16A468; Thu, 7 Jun 2007 07:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 752A213C46C; Thu, 7 Jun 2007 07:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l577eBUh060443; Thu, 7 Jun 2007 07:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l577eB97060439; Thu, 7 Jun 2007 07:40:11 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 07:40:11 GMT From: Edwin Groothuis Message-Id: <200706070740.l577eB97060439@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, philip@FreeBSD.org Cc: Subject: Re: ports/113443: [NEW PORT] devel/luabind: Library that helps you create bindings between C++ and Lua X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 07:40:11 -0000 Synopsis: [NEW PORT] devel/luabind: Library that helps you create bindings between C++ and Lua Responsible-Changed-From-To: freebsd-ports-bugs->philip Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 07:40:10 UTC 2007 Responsible-Changed-Why: philip@ wants to have LUA PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113443 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 07:50:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B74716A469 for ; Thu, 7 Jun 2007 07:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2A61A13C483 for ; Thu, 7 Jun 2007 07:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l577o2LZ060676 for ; Thu, 7 Jun 2007 07:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l577o1pw060675; Thu, 7 Jun 2007 07:50:01 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 07:50:01 GMT Resent-Message-Id: <200706070750.l577o1pw060675@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tatsuki Makino Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39D2116A41F for ; Thu, 7 Jun 2007 07:45:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 1E51B13C455 for ; Thu, 7 Jun 2007 07:45:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l577jXn6094201 for ; Thu, 7 Jun 2007 07:45:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l577jXWP094200; Thu, 7 Jun 2007 07:45:33 GMT (envelope-from nobody) Message-Id: <200706070745.l577jXWP094200@www.freebsd.org> Date: Thu, 7 Jun 2007 07:45:33 GMT From: Tatsuki Makino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113444: New port: audio/libamrwb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 07:50:02 -0000 >Number: 113444 >Category: ports >Synopsis: New port: audio/libamrwb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 07:50:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Tatsuki Makino >Release: FreeBSD 6.2-RELEASE-p5 i386 >Organization: >Environment: FreeBSD FreeBSD.test 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #0: Thu May 24 16:23:26 JST 2007 root@FreeBSD.test:/usr/obj/usr/src/sys/GENERIC i386 >Description: Adaptive Multi-Rate Wideband decoder and encoder library. (3GPP TS 26.204 V7.0.0) And I'll maintain it. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # audio/libamrwb # audio/libamrwb/distinfo # audio/libamrwb/Makefile # audio/libamrwb/pkg-descr # audio/libamrwb/pkg-plist # echo c - audio/libamrwb mkdir -p audio/libamrwb > /dev/null 2>&1 echo x - audio/libamrwb/distinfo sed 's/^X//' >audio/libamrwb/distinfo << 'END-of-audio/libamrwb/distinfo' XMD5 (amrwb-7.0.0.1.tar.bz2) = f823b5e055e1d85142740e225b86ac91 XSHA256 (amrwb-7.0.0.1.tar.bz2) = 16248eac1a909012be577333583d5f4bffaad2b7687c764d7f027ddc11f1ec86 XSIZE (amrwb-7.0.0.1.tar.bz2) = 220644 END-of-audio/libamrwb/distinfo echo x - audio/libamrwb/Makefile sed 's/^X//' >audio/libamrwb/Makefile << 'END-of-audio/libamrwb/Makefile' X# New ports collection makefile for: libamrwb X# Date created: 7 Jun 2007 X# Whom: Hiraga Saito <> X# X# $FreeBSD$ X# X XPORTNAME= libamrwb XPORTVERSION= 7.0.0.1 XCATEGORIES= audio XMASTER_SITES= http://ftp.penguin.cz/pub/users/utx/amr/ XDISTNAME= amrwb-${DISTVERSION} X XMAINTAINER= tatsuki_makino@hotmail.com XCOMMENT= Adaptive Multi-Rate - Wideband (AMR-WB) Speech Codec X XBUILD_DEPENDS= wget:${PORTSDIR}/ftp/wget \ X ${UNZIP_CMD}:${PORTSDIR}/archivers/unzip \ X bash:${PORTSDIR}/shells/bash X XUSE_BZIP2= yes XUSE_GMAKE= yes XUSE_AUTOTOOLS= libtool:15 XGNU_CONFIGURE= yes XCONFIGURE_ENV+= LANG=C XUSE_LDCONFIG= yes XNO_PACKAGE= See Important legal notice of http://www.penguin.cz/~utx/amr.en.html X Xpost-patch: X @${REINPLACE_CMD} -E \ X -e "s!(/bin/bash)!${LOCALBASE}\\1!" \ X ${WRKSRC}/prepare_sources.sh X X.include END-of-audio/libamrwb/Makefile echo x - audio/libamrwb/pkg-descr sed 's/^X//' >audio/libamrwb/pkg-descr << 'END-of-audio/libamrwb/pkg-descr' XAdaptive Multi-Rate Wideband decoder and encoder library. X(3GPP TS 26.204 V7.0.0) X Xhttp://www.3gpp.org/ftp/Specs/html-info/26204.htm X XWWW: http://www.penguin.cz/~utx/amr END-of-audio/libamrwb/pkg-descr echo x - audio/libamrwb/pkg-plist sed 's/^X//' >audio/libamrwb/pkg-plist << 'END-of-audio/libamrwb/pkg-plist' Xbin/amrwb-decoder Xbin/amrwb-decoder-if2 Xbin/amrwb-encoder Xbin/amrwb-encoder-if2 Xinclude/amrwb/dec.h Xinclude/amrwb/dec_acelp.h Xinclude/amrwb/dec_dtx.h Xinclude/amrwb/dec_gain.h Xinclude/amrwb/dec_if.h Xinclude/amrwb/dec_lpc.h Xinclude/amrwb/dec_main.h Xinclude/amrwb/dec_util.h Xinclude/amrwb/enc.h Xinclude/amrwb/enc_acelp.h Xinclude/amrwb/enc_dtx.h Xinclude/amrwb/enc_gain.h Xinclude/amrwb/enc_if.h Xinclude/amrwb/enc_lpc.h Xinclude/amrwb/enc_main.h Xinclude/amrwb/enc_util.h Xinclude/amrwb/if_rom.h Xinclude/amrwb/typedef.h Xlib/libamrwb.a Xlib/libamrwb.la Xlib/libamrwb.so Xlib/libamrwb.so.2 X@dirrm include/amrwb END-of-audio/libamrwb/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 08:00:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C24E016A400 for ; Thu, 7 Jun 2007 08:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6DCEC13C448 for ; Thu, 7 Jun 2007 08:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5780Htc061060 for ; Thu, 7 Jun 2007 08:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5780H51061059; Thu, 7 Jun 2007 08:00:17 GMT (envelope-from gnats) Date: Thu, 7 Jun 2007 08:00:17 GMT Message-Id: <200706070800.l5780H51061059@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthias Fechner Cc: Subject: Re: ports/112887: net/nxserver 1.4.0_1 fails to compile after upgrading to xorg-7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Fechner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 08:00:17 -0000 The following reply was made to PR ports/112887; it has been noted by GNATS. From: Matthias Fechner To: bug-followup@FreeBSD.org, nliviu@gmail.com Cc: Subject: Re: ports/112887: net/nxserver 1.4.0_1 fails to compile after upgrading to xorg-7.2 Date: Thu, 07 Jun 2007 09:13:55 +0200 i found an updated nxserver package on: http://www.deweyonline.com/nx/freebsd.html the nxserver port there in combination with: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/113423 works perfectly for me. Everything compiles fine. Maybe someone can update the port with that package. Best regards, Matthias From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 08:32:54 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4EBCA16A400; Thu, 7 Jun 2007 08:32:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 22CCF13C447; Thu, 7 Jun 2007 08:32:54 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l578WsXI064457; Thu, 7 Jun 2007 08:32:54 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l578Wr7E064453; Thu, 7 Jun 2007 08:32:53 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 08:32:53 GMT From: Martin Wilke Message-Id: <200706070832.l578Wr7E064453@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113444: New port: audio/libamrwb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 08:32:54 -0000 Synopsis: New port: audio/libamrwb Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 08:32:53 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113444 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 10:50:01 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4CEF816A468 for ; Thu, 7 Jun 2007 10:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2EBA313C455 for ; Thu, 7 Jun 2007 10:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Ao1Zp072338 for ; Thu, 7 Jun 2007 10:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57Ao1Ew072337; Thu, 7 Jun 2007 10:50:01 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 10:50:01 GMT Resent-Message-Id: <200706071050.l57Ao1Ew072337@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bf Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F233B16A46D for ; Thu, 7 Jun 2007 10:47:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id D69CB13C468 for ; Thu, 7 Jun 2007 10:47:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l57Al0e4042544 for ; Thu, 7 Jun 2007 10:47:00 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l57Al0gd042543; Thu, 7 Jun 2007 10:47:00 GMT (envelope-from nobody) Message-Id: <200706071047.l57Al0gd042543@www.freebsd.org> Date: Thu, 7 Jun 2007 10:47:00 GMT From: bf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113446: New port: textproc/py-libtre X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 10:50:01 -0000 >Number: 113446 >Category: ports >Synopsis: New port: textproc/py-libtre >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 10:50:00 GMT 2007 >Closed-Date: >Last-Modified: >Originator: bf >Release: 6.2-Stable i386 >Organization: - >Environment: >Description: Make the python interface to textproc/libtre available in the ports system. It was bundled with the rest of libtre, but had previously been neglected. This version is dependent upon some form of the update proposed in PR ports/113441 being committed. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/textproc/py-libtre # /usr/ports/textproc/py-libtre/Makefile # /usr/ports/textproc/py-libtre/pkg-descr # /usr/ports/textproc/py-libtre/distinfo # echo c - /usr/ports/textproc/py-libtre mkdir -p /usr/ports/textproc/py-libtre > /dev/null 2>&1 echo x - /usr/ports/textproc/py-libtre/Makefile sed 's/^X//' >/usr/ports/textproc/py-libtre/Makefile << 'END-of-/usr/ports/textproc/py-libtre/Makefile' X X# Ports collection makefile for: py-libtre X# Date created: 6 June 2007 X# Whom: bf X# X# $FreeBSD$ X# X XPORTNAME= libtre XPORTVERSION= 0.7.5 XCATEGORIES= textproc python XMASTER_SITES= http://laurikari.net/tre/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XDISTNAME= tre-${PORTVERSION} X XMAINTAINER= bf2006a@yahoo.com XCOMMENT= Python interface for the tre regular expressions library X XLIB_DEPENDS= tre.6:${PORTSDIR}/textproc/libtre X XUSE_BZIP2= yes XUSE_PYTHON= yes XUSE_PYDISTUTILS= yes XBUILD_WRKSRC= ${WRKSRC}/python XINSTALL_WRKSRC= ${WRKSRC}/python XCFLAGS+= -I${LOCALBASE}/include/ -L${LOCALBASE}/lib/ XPLIST_FILES= %%PYTHON_SITELIBDIR%%/tre.so X X.if defined(WITH_OPTIMIZED_CFLAGS) XCFLAGS+= -Wuninitialized -ffast-math -finline-functions \ X -fomit-frame-pointer -fexpensive-optimizations \ X -fforce-mem -fforce-addr -O3 X.endif X.include END-of-/usr/ports/textproc/py-libtre/Makefile echo x - /usr/ports/textproc/py-libtre/pkg-descr sed 's/^X//' >/usr/ports/textproc/py-libtre/pkg-descr << 'END-of-/usr/ports/textproc/py-libtre/pkg-descr' XLibtre is an attempt to create a lightweight, robust, and efficient fully XPOSIX compliant regexp matching library. There is still some work left, but Xthe results so far are promising. X XAt the core of Libtre is a new algorithm for regular expression matching with Xsubmatch addressing. The algorithm uses linear worst-case time in the length Xof the text being searched, and quadratic worst-case time in the length of the Xused regular expression. In other words, the time complexity of the algorithm Xis O(M2N), where M is the length of the regular expression and N is the length Xof the text. The used space is also quadratic on the length of the regex, but Xdoes not depend on the searched string. This quadratic behaviour occurs only Xon pathological cases which are probably very rare in practice. X XWWW: http://laurikari.net/tre/ END-of-/usr/ports/textproc/py-libtre/pkg-descr echo x - /usr/ports/textproc/py-libtre/distinfo sed 's/^X//' >/usr/ports/textproc/py-libtre/distinfo << 'END-of-/usr/ports/textproc/py-libtre/distinfo' XMD5 (tre-0.7.5.tar.bz2) = e72e5c94008865cf720992a0b25d6e89 XSHA256 (tre-0.7.5.tar.bz2) = 030f25e6e4c1714df013105494bc5e24b3e0acc65887158a52a03efd8e0759aa XSIZE (tre-0.7.5.tar.bz2) = 396346 END-of-/usr/ports/textproc/py-libtre/distinfo exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 10:50:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3018716A400; Thu, 7 Jun 2007 10:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0975713C4B8; Thu, 7 Jun 2007 10:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57AoDQJ072509; Thu, 7 Jun 2007 10:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57AoDZe072495; Thu, 7 Jun 2007 10:50:13 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 10:50:13 GMT From: Edwin Groothuis Message-Id: <200706071050.l57AoDZe072495@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113446: New port: textproc/py-libtre X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 10:50:14 -0000 Synopsis: New port: textproc/py-libtre Class-Changed-From-To: update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Jun 7 10:50:12 UTC 2007 Class-Changed-Why: Fix category (new ports should be change-requests) http://www.freebsd.org/cgi/query-pr.cgi?pr=113446 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 10:50:23 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7923A16A46C; Thu, 7 Jun 2007 10:50:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5303213C457; Thu, 7 Jun 2007 10:50:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57AoNua072603; Thu, 7 Jun 2007 10:50:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57AoNi3072599; Thu, 7 Jun 2007 10:50:23 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 10:50:23 GMT From: Edwin Groothuis Message-Id: <200706071050.l57AoNi3072599@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113446: New port: textproc/py-libtre X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 10:50:23 -0000 Synopsis: New port: textproc/py-libtre Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 10:50:22 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113446 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 11:00:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9C1616A468 for ; Thu, 7 Jun 2007 11:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AD8CB13C469 for ; Thu, 7 Jun 2007 11:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57B07qw072947 for ; Thu, 7 Jun 2007 11:00:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57B07G6072946; Thu, 7 Jun 2007 11:00:07 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 11:00:07 GMT Resent-Message-Id: <200706071100.l57B07G6072946@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Lars Engels Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F351816A400 for ; Thu, 7 Jun 2007 10:54:11 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: from mail.0x20.net (mail.0x20.net [217.69.67.217]) by mx1.freebsd.org (Postfix) with ESMTP id BE8F913C46E for ; Thu, 7 Jun 2007 10:54:11 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: by mail.0x20.net (Postfix, from userid 1002) id 7DC0A39E38; Thu, 7 Jun 2007 12:29:39 +0200 (CEST) Message-Id: <20070607102939.7DC0A39E38@mail.0x20.net> Date: Thu, 7 Jun 2007 12:29:39 +0200 (CEST) From: Lars Engels To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: lars.engels@0x20.net Subject: ports/113447: [MAINTAINER] sysutils/syslog-ng: Fix MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 11:00:08 -0000 >Number: 113447 >Category: ports >Synopsis: [MAINTAINER] sysutils/syslog-ng: Fix MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 11:00:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Lars Engels >Release: FreeBSD 5.5-RELEASE i386 >Organization: >Environment: System: FreeBSD e.0x20.net 5.5-RELEASE FreeBSD 5.5-RELEASE #1: Fri May 26 20:28:54 CEST 2006 >Description: Fix typo in MASTER_SITES Thanks to Dan Larsson Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- syslog-ng-1.6.12.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/syslog-ng/Makefile,v retrieving revision 1.34 diff -u -u -r1.34 Makefile --- Makefile 30 May 2007 06:42:40 -0000 1.34 +++ Makefile 7 Jun 2007 10:27:58 -0000 @@ -8,7 +8,7 @@ PORTNAME= syslog-ng PORTVERSION= 1.6.12 CATEGORIES= sysutils -MASTER_SITES= http://www.balabit.com/downloads/files/syslog-ng/sources/1.9/src/ +MASTER_SITES= http://www.balabit.com/downloads/files/syslog-ng/sources/1.6/src/ MAINTAINER= lars.engels@0x20.net COMMENT= A powerful syslogd replacement --- syslog-ng-1.6.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 11:00:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A14DA16A421; Thu, 7 Jun 2007 11:00:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7A3B813C45E; Thu, 7 Jun 2007 11:00:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57B0FF0073119; Thu, 7 Jun 2007 11:00:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57B0Fd8073115; Thu, 7 Jun 2007 11:00:15 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 11:00:15 GMT From: Edwin Groothuis Message-Id: <200706071100.l57B0Fd8073115@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113447: [MAINTAINER] sysutils/syslog-ng: Fix MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 11:00:15 -0000 Synopsis: [MAINTAINER] sysutils/syslog-ng: Fix MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 11:00:14 UTC 2007 Responsible-Changed-Why: miwi@ wants this PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113447 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 11:40:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED7EC16A47A for ; Thu, 7 Jun 2007 11:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B829613C4AD for ; Thu, 7 Jun 2007 11:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Be4tr075552 for ; Thu, 7 Jun 2007 11:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57Be4w6075551; Thu, 7 Jun 2007 11:40:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 11:40:04 GMT Resent-Message-Id: <200706071140.l57Be4w6075551@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Beech Rintoul" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA12016A46B for ; Thu, 7 Jun 2007 11:33:44 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from stargate.alaskaparadise.com (181-11-178-69.gci.net [69.178.11.181]) by mx1.freebsd.org (Postfix) with ESMTP id A9A5C13C484 for ; Thu, 7 Jun 2007 11:33:44 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from stargate.alaskaparadise.com (localhost [127.0.0.1]) by stargate.alaskaparadise.com (Postfix) with ESMTP id 644C07FDF; Thu, 7 Jun 2007 03:17:12 -0800 (AKDT) Message-Id: <1181215032.68748@stargate.alaskaparadise.com> Date: Thu, 7 Jun 2007 03:17:12 -0800 From: "Beech Rintoul" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.8 Cc: infofarmer@FreeBSD.org Subject: ports/113448: [Maintainer] irc/bitchx - Fix MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 11:40:05 -0000 >Number: 113448 >Category: ports >Synopsis: [Maintainer] irc/bitchx - Fix MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 11:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Beech Rintoul >Release: FreeBSD 6.2-STABLE i386 >Organization: Alaska Paradise >Environment: System: FreeBSD 6.2-STABLE #0: Tue May 29 23:41:29 AKDT 2007 root@stargate.alaskaparadise.com:/usr/obj/usr/src/sys/STARGATE6 >Description: * Fix path in MASTER_SITES * Update maintainer email >How-To-Repeat: >Fix: diff -ruN --exclude=CVS /usr/ports/irc/bitchx.orig/Makefile /usr/ports/irc/bitchx/Makefile --- /usr/ports/irc/bitchx.orig/Makefile Tue Jun 5 17:20:41 2007 +++ /usr/ports/irc/bitchx/Makefile Thu Jun 7 02:22:57 2007 @@ -9,11 +9,11 @@ PORTVERSION= 1.1 PORTREVISION= 1 CATEGORIES+= irc -MASTER_SITES= ftp://ftp.bitchx.org/pub/BitchX/ \ +MASTER_SITES= ftp://ftp.bitchx.org/pub/BitchX/source/ \ ftp://ftp.cyberpunkz.org/pub/BitchX/ DISTNAME= ircii-pana-${PORTVERSION}-final -MAINTAINER?= beech@alaskaparadise.com +MAINTAINER?= beech@FreeBSD.org COMMENT?= ircII color client with GTK/GNOME support WRKSRC= ${WRKDIR}/BitchX >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 11:40:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B09BF16A41F; Thu, 7 Jun 2007 11:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8771813C465; Thu, 7 Jun 2007 11:40:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57BeBc7075694; Thu, 7 Jun 2007 11:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57BeBMS075688; Thu, 7 Jun 2007 11:40:11 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 11:40:11 GMT From: Edwin Groothuis Message-Id: <200706071140.l57BeBMS075688@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jmelo@FreeBSD.org Cc: Subject: Re: ports/113448: [Maintainer] irc/bitchx - Fix MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 11:40:11 -0000 Synopsis: [Maintainer] irc/bitchx - Fix MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->jmelo Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 11:40:10 UTC 2007 Responsible-Changed-Why: jmelo@ wants to have WWW and MASTER_SITES PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113448 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 12:00:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1F5416A41F for ; Thu, 7 Jun 2007 12:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ABF5513C44B for ; Thu, 7 Jun 2007 12:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57C083j076576 for ; Thu, 7 Jun 2007 12:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57C081K076573; Thu, 7 Jun 2007 12:00:08 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 12:00:08 GMT Resent-Message-Id: <200706071200.l57C081K076573@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, janos.mohacsi@bsd.hu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 070AD16A400 for ; Thu, 7 Jun 2007 11:58:27 +0000 (UTC) (envelope-from mohacsi@skye.ki.iif.hu) Received: from skye.ki.iif.hu (6net.iif.hu [193.225.13.161]) by mx1.freebsd.org (Postfix) with ESMTP id 9351413C480 for ; Thu, 7 Jun 2007 11:58:26 +0000 (UTC) (envelope-from mohacsi@skye.ki.iif.hu) Received: (from mohacsi@localhost) by skye.ki.iif.hu (8.14.1/8.14.1) id l57BwOD4046684; Thu, 7 Jun 2007 13:58:24 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200706071158.l57BwOD4046684@skye.ki.iif.hu> Date: Thu, 7 Jun 2007 13:58:24 +0200 (CEST) From: janos.mohacsi@bsd.hu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113449: [NEW PORT] net/rrdman: Apply Holt-Winters prediction parameters to RRD data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 12:00:08 -0000 >Number: 113449 >Category: ports >Synopsis: [NEW PORT] net/rrdman: Apply Holt-Winters prediction parameters to RRD data >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 12:00:08 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 5.5-STABLE i386 >Organization: >Environment: System: FreeBSD skye.ki.iif.hu 5.5-STABLE FreeBSD 5.5-STABLE #3: Mon May 7 18:11:54 CEST >Description: RRDman is a set of utilities that manipulate the RRDtool database files. Currently it consists of the following utilities: * rrd_hwreapply: Re-apply Holt-Winters prediction parameters to RRD data RRDman is hosted as a subproject of RRFW WWW: http://rrfw.sourceforge.net/rrdman/ Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- rrdman-1.0.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rrdman # rrdman/pkg-descr # rrdman/distinfo # rrdman/Makefile # echo c - rrdman mkdir -p rrdman > /dev/null 2>&1 echo x - rrdman/pkg-descr sed 's/^X//' >rrdman/pkg-descr << 'END-of-rrdman/pkg-descr' XRRDman is a set of utilities that manipulate the RRDtool database files. XCurrently it consists of the following utilities: X X * rrd_hwreapply: Re-apply Holt-Winters prediction parameters to RRD data X XRRDman is hosted as a subproject of RRFW X XWWW: http://rrfw.sourceforge.net/rrdman/ END-of-rrdman/pkg-descr echo x - rrdman/distinfo sed 's/^X//' >rrdman/distinfo << 'END-of-rrdman/distinfo' XMD5 (rrdman-1.0.1.tar.gz) = 5847dbc6e1db86be6e14a18243623a2b XSHA256 (rrdman-1.0.1.tar.gz) = 69b2c7649893c490dcf3b9437094baaacdbce997032b58a0dc10abf27f5d5c12 XSIZE (rrdman-1.0.1.tar.gz) = 85414 END-of-rrdman/distinfo echo x - rrdman/Makefile sed 's/^X//' >rrdman/Makefile << 'END-of-rrdman/Makefile' X# New ports collection makefile for: rrdman X# Date created: 2007-06-07 X# Whom: Janos Mohacsi X# X# $FreeBSD$ X# X XPORTNAME= rrdman XPORTVERSION= 1.0.1 XCATEGORIES= net XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= rrfw X XMAINTAINER= janos.mohacsi@bsd.hu XCOMMENT= Apply Holt-Winters prediction parameters to RRD data X XGNU_CONFIGURE= YES XUSE_PERl5= YES XPLIST_FILES= bin/rrd_hwreapply XMAN1= rrd_hwreapply.1 X X.include END-of-rrdman/Makefile exit --- rrdman-1.0.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 12:10:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 815FD16A421 for ; Thu, 7 Jun 2007 12:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5C25B13C4BA for ; Thu, 7 Jun 2007 12:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57CA6Gf076932 for ; Thu, 7 Jun 2007 12:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57CA6YO076931; Thu, 7 Jun 2007 12:10:06 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 12:10:06 GMT Resent-Message-Id: <200706071210.l57CA6YO076931@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Zhuravlev Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2950816A4E6 for ; Thu, 7 Jun 2007 12:00:21 +0000 (UTC) (envelope-from zaa@zaa.pp.ru) Received: from mx1.ulstu.ru (kernel.ulstu.ru [62.76.34.36]) by mx1.freebsd.org (Postfix) with ESMTP id 3ECFD13C45E for ; Thu, 7 Jun 2007 12:00:15 +0000 (UTC) (envelope-from zaa@zaa.pp.ru) Received: from localhost (localhost [127.0.0.1]) by mx1.ulstu.ru (ulstuMail) with ESMTP id 264C64B321; Thu, 7 Jun 2007 15:37:42 +0400 (MSD) Received: from wave.zaa.local (zaa-pptp.ustu [10.100.2.17]) by mx1.ulstu.ru (ulstuMail) with ESMTP id CB29F4B2B0 for ; Thu, 7 Jun 2007 15:36:53 +0400 (MSD) Received: by wave.zaa.local (Postfix, from userid 3909) id A74A0B834; Thu, 7 Jun 2007 15:36:53 +0400 (MSD) Message-Id: <20070607113653.A74A0B834@wave.zaa.local> Date: Thu, 7 Jun 2007 15:36:53 +0400 (MSD) From: Alexander Zhuravlev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113450: [MAINTAINER UPDATE] databases/mysqlreport to 3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Zhuravlev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 12:10:06 -0000 >Number: 113450 >Category: ports >Synopsis: [MAINTAINER UPDATE] databases/mysqlreport to 3.2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 12:10:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alexander Zhuravlev >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD wave.zaa.local 6.2-STABLE FreeBSD 6.2-STABLE #60: Mon May 21 03:09:55 MSD 2007 root@wave.zaa.local:/usr/obj/usr/src/sys/WAVE i386 >Description: >How-To-Repeat: >Fix: --- mysqlreport.diff begins here --- diff -urbBNp mysqlreport.orig/Makefile mysqlreport/Makefile --- mysqlreport.orig/Makefile Sun Feb 11 15:05:56 2007 +++ mysqlreport/Makefile Thu Jun 7 15:00:00 2007 @@ -5,9 +5,10 @@ # $FreeBSD: ports/databases/mysqlreport/Makefile,v 1.2 2007/02/11 12:05:56 miwi Exp $ PORTNAME= mysqlreport -PORTVERSION= 3.0a +PORTVERSION= 3.2 CATEGORIES= databases -MASTER_SITES= http://hackmysql.com/scripts/ +MASTER_SITES= http://hackmysql.com/scripts/ \ + http://zaa.pp.ru/distfiles/ EXTRACT_SUFX= .tgz MAINTAINER= zaa@zaa.pp.ru diff -urbBNp mysqlreport.orig/distinfo mysqlreport/distinfo --- mysqlreport.orig/distinfo Sun Feb 11 11:58:56 2007 +++ mysqlreport/distinfo Thu Jun 7 15:01:35 2007 @@ -1,3 +1,3 @@ -MD5 (mysqlreport-3.0a.tgz) = 3858ca49ccef1af40228202bf166694d -SHA256 (mysqlreport-3.0a.tgz) = 57ea9d753af8e01d9d013c593f827c98aa1c03d6f6b3834b9bb7873b8aaae59d -SIZE (mysqlreport-3.0a.tgz) = 22125 +MD5 (mysqlreport-3.2.tgz) = cf4d2b1ae1acc4d68e7a6308ae148996 +SHA256 (mysqlreport-3.2.tgz) = 375505c5c55795b0c8a582760089c16f148c6044c14f80029404c090a90da5f2 +SIZE (mysqlreport-3.2.tgz) = 29249 diff -urbBNp mysqlreport.orig/files/patch-mysqlreport mysqlreport/files/patch-mysqlreport --- mysqlreport.orig/files/patch-mysqlreport Thu Nov 23 18:04:34 2006 +++ mysqlreport/files/patch-mysqlreport Thu Jan 1 03:00:00 1970 @@ -1,11 +0,0 @@ ---- mysqlreport.orig Thu Nov 23 17:56:12 2006 -+++ mysqlreport Thu Nov 23 18:03:54 2006 -@@ -76,7 +76,7 @@ $mycnf{'user'} = $op{'user'} if have - # Default values if nothing else - $mycnf{'host'} ||= 'localhost'; - $mycnf{'port'} ||= 3306; --$mycnf{'socket'} ||= '/var/run/mysqld/mysqld.sock'; # Debian default -+$mycnf{'socket'} ||= '/tmp/mysql.sock'; - $mycnf{'user'} ||= $ENV{'USER'}; - - if(exists $op{'password'}) --- mysqlreport.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 12:10:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55B5716A469 for ; Thu, 7 Jun 2007 12:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 371DA13C4AD for ; Thu, 7 Jun 2007 12:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57CA77A076993 for ; Thu, 7 Jun 2007 12:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57CA7Ju076992; Thu, 7 Jun 2007 12:10:07 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 12:10:07 GMT Resent-Message-Id: <200706071210.l57CA7Ju076992@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Henrik Brix Andersen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9478B16A41F for ; Thu, 7 Jun 2007 12:01:28 +0000 (UTC) (envelope-from brix@lothlorien.brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id 61E3413C465 for ; Thu, 7 Jun 2007 12:01:28 +0000 (UTC) (envelope-from brix@lothlorien.brixandersen.dk) Received: from lothlorien.brixandersen.dk (fw2.pil.dk [83.90.227.58]) by solow.pil.dk (Postfix) with ESMTP id 0A52E1CC0AF for ; Thu, 7 Jun 2007 14:01:27 +0200 (CEST) Received: by lothlorien.brixandersen.dk (Postfix, from userid 1001) id 89D6711429; Thu, 7 Jun 2007 14:01:26 +0200 (CEST) Message-Id: <20070607120126.89D6711429@lothlorien.brixandersen.dk> Date: Thu, 7 Jun 2007 14:01:26 +0200 (CEST) From: Henrik Brix Andersen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113451: [maintainer update][patch] Update www/ikiwiki to v2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Henrik Brix Andersen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 12:10:07 -0000 >Number: 113451 >Category: ports >Synopsis: [maintainer update][patch] Update www/ikiwiki to v2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 12:10:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Henrik Brix Andersen >Release: FreeBSD 7.0-CURRENT i386 >Organization: pil.dk >Environment: System: FreeBSD lothlorien.brixandersen.dk 7.0-CURRENT FreeBSD 7.0-CURRENT #41: Wed Jun 6 16:22:53 CEST 2007 root@lothlorien.brixandersen.dk:/usr/obj/usr/src/sys/LOTHLORIEN i386 >Description: Update www/ikiwiki to version 2.1. >How-To-Repeat: >Fix: --- ikiwiki.diff begins here --- diff -u /usr/ports/www/ikiwiki/Makefile www/ikiwiki/Makefile --- /usr/ports/www/ikiwiki/Makefile Wed May 2 01:18:29 2007 +++ www/ikiwiki/Makefile Thu Jun 7 11:26:36 2007 @@ -5,7 +5,7 @@ # $FreeBSD: ports/www/ikiwiki/Makefile,v 1.3 2007/05/01 23:18:29 miwi Exp $ PORTNAME= ikiwiki -PORTVERSION= 2.00 +PORTVERSION= 2.1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION} diff -u /usr/ports/www/ikiwiki/distinfo www/ikiwiki/distinfo --- /usr/ports/www/ikiwiki/distinfo Wed May 2 01:18:29 2007 +++ www/ikiwiki/distinfo Thu Jun 7 11:27:22 2007 @@ -1,3 +1,3 @@ -MD5 (ikiwiki_2.00.tar.gz) = b5b54f606d939e27b0fa3277a4b4ca29 -SHA256 (ikiwiki_2.00.tar.gz) = 0288eae3b43ffd2702100cd14f799e38e3ef83e2d8d5c9522738678f517ae685 -SIZE (ikiwiki_2.00.tar.gz) = 421826 +MD5 (ikiwiki_2.1.tar.gz) = b58413be01c3c1ee557b074b78632d19 +SHA256 (ikiwiki_2.1.tar.gz) = d9944e85d788ba836bcaf7615011d4d2fdb35c1b998cc5878e49d8a81a0d3d92 +SIZE (ikiwiki_2.1.tar.gz) = 432312 --- ikiwiki.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 12:26:26 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 479CC16A46C; Thu, 7 Jun 2007 12:26:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 20D5113C483; Thu, 7 Jun 2007 12:26:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57CQQTb077688; Thu, 7 Jun 2007 12:26:26 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57CQPGV077684; Thu, 7 Jun 2007 12:26:25 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 12:26:25 GMT From: Martin Wilke Message-Id: <200706071226.l57CQPGV077684@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113449: [NEW PORT] net/rrdman: Apply Holt-Winters prediction parameters to RRD data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 12:26:26 -0000 Synopsis: [NEW PORT] net/rrdman: Apply Holt-Winters prediction parameters to RRD data Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 12:26:25 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113449 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 12:26:31 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6B8116A41F; Thu, 7 Jun 2007 12:26:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9FEAE13C458; Thu, 7 Jun 2007 12:26:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57CQVMv077753; Thu, 7 Jun 2007 12:26:31 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57CQVT9077749; Thu, 7 Jun 2007 12:26:31 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 12:26:31 GMT From: Martin Wilke Message-Id: <200706071226.l57CQVT9077749@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113450: [MAINTAINER UPDATE] databases/mysqlreport to 3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 12:26:31 -0000 Synopsis: [MAINTAINER UPDATE] databases/mysqlreport to 3.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 12:26:30 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113450 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 12:26:37 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6657716A400; Thu, 7 Jun 2007 12:26:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3C14C13C468; Thu, 7 Jun 2007 12:26:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57CQb59077818; Thu, 7 Jun 2007 12:26:37 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57CQbPf077814; Thu, 7 Jun 2007 12:26:37 GMT (envelope-from miwi) Date: Thu, 7 Jun 2007 12:26:37 GMT From: Martin Wilke Message-Id: <200706071226.l57CQbPf077814@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113451: [maintainer update][patch] Update www/ikiwiki to v2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 12:26:37 -0000 Synopsis: [maintainer update][patch] Update www/ikiwiki to v2.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jun 7 12:26:36 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113451 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 13:10:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CF4B16A421 for ; Thu, 7 Jun 2007 13:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6C56013C4B8 for ; Thu, 7 Jun 2007 13:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57DA5Qm080375 for ; Thu, 7 Jun 2007 13:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57DA5L6080374; Thu, 7 Jun 2007 13:10:05 GMT (envelope-from gnats) Date: Thu, 7 Jun 2007 13:10:05 GMT Message-Id: <200706071310.l57DA5L6080374@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Michael Scheidell" Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 13:10:06 -0000 The following reply was made to PR ports/112522; it has been noted by GNATS. From: "Michael Scheidell" To: , Cc: Subject: Re: ports/112522: mail/Razor-agents has performance problem with SpamAssassin Date: Thu, 7 Jun 2007 09:02:01 -0400 If not commited, please wait: razor 2.8.4 fixes problems without patches. see perldoc Changes: 2.84 (May 10, 2007) o Update discovery hostname. 2.83 (May 8, 2007) o Remove all uses of $' from code. This removes a global regex engine slowdown. [issues.apache.org #5312] o Comment out or replace shell commands with Perl equivalents. This removes the prerequisites of uname(1) and GNU mkdir(1). here are patches for 2.8.4: (delete the files/* patches I submitted, not needed anymore, already fixed: in 2.8.4) diff -bBru /var/tmp/razor/Makefile ./Makefile --- /var/tmp/razor/Makefile Tue May 8 10:24:03 2007 +++ ./Makefile Thu Jun 7 08:52:21 2007 @@ -6,7 +6,7 @@ # PORTNAME= razor-agents -PORTVERSION= 2.82 +PORTVERSION= 2.84 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= razor diff -bBru /var/tmp/razor/distinfo ./distinfo --- /var/tmp/razor/distinfo Fri Jun 2 20:26:24 2006 +++ ./distinfo Thu Jun 7 08:53:43 2007 @@ -1,3 +1,3 @@ -MD5 (razor-agents-2.82.tar.bz2) = a79a798e52426261c6a2c4089b33872f -SHA256 (razor-agents-2.82.tar.bz2) = e423d6abab60318700573978954b02e1d64f5061e0df762e8688208598ab7a02 -SIZE (razor-agents-2.82.tar.bz2) = 79021 +MD5 (razor-agents-2.84.tar.bz2) = 8b9a11a6ce020383c32c45d1530d77c2 +SHA256 (razor-agents-2.84.tar.bz2) = 1e9eb8e4d562de79f01e059a7885e5e2a87f47688f146310a0400893edf3077c +SIZE (razor-agents-2.84.tar.bz2) = 79196 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 13:20:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A271716A41F for ; Thu, 7 Jun 2007 13:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8338013C4AE for ; Thu, 7 Jun 2007 13:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57DKBQT080996 for ; Thu, 7 Jun 2007 13:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57DKBlw080989; Thu, 7 Jun 2007 13:20:11 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 13:20:11 GMT Resent-Message-Id: <200706071320.l57DKBlw080989@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Altpeter Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B78C916A468 for ; Thu, 7 Jun 2007 13:19:09 +0000 (UTC) (envelope-from frank@altpeter.de) Received: from canismajor.corpex-net.de (canismajor.corpex-net.de [62.67.202.31]) by mx1.freebsd.org (Postfix) with ESMTP id 5F22113C4BE for ; Thu, 7 Jun 2007 13:19:09 +0000 (UTC) (envelope-from frank@altpeter.de) Received: from pegasus.corpex.de ([194.6.192.248]) by canismajor.corpex-net.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HwHd9-000KE3-Ok; Thu, 07 Jun 2007 15:02:23 +0200 Received: by pegasus.corpex.de (sSMTP sendmail emulation); Thu, 7 Jun 2007 15:02:23 +0200 Message-Id: <20070607130223.GE87244@corpex.de> Date: Thu, 7 Jun 2007 15:02:23 +0200 From: Frank Altpeter To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/113452: port update: net-im/centerim X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 13:20:11 -0000 >Number: 113452 >Category: ports >Synopsis: port update: net-im/centerim >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 13:20:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Frank Altpeter >Release: FreeBSD 6.2-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD pegasus.corpex.de 6.2-RELEASE-p3 FreeBSD 6.2-RELEASE-p3 #6: Wed Apr 25 12:13:19 CEST 2007 root@pegasus.corpex.de:/usr/obj/usr/src/sys/kernconf.pegasus i386 >Description: please commit to have an updated port >How-To-Repeat: >Fix: diff -bc centerim.orig/Makefile centerim/Makefile *** centerim.orig/Makefile Thu Apr 19 03:59:48 2007 --- centerim/Makefile Thu Jun 7 13:38:07 2007 *************** *** 8,18 **** PORTNAME= centerim PORTVERSION= 4.22.0 CATEGORIES= net-im MASTER_SITES= http://cim.sbisinger.net/tars/ \ http://www.centerim.org/download/ \ ftp://ftp.centerim.org/ ! DISTNAME= ${PORTNAME}-20070418 MAINTAINER= frank@altpeter.de COMMENT= A text mode menu- and window-driven IM interface --- 8,19 ---- PORTNAME= centerim PORTVERSION= 4.22.0 + PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://cim.sbisinger.net/tars/ \ http://www.centerim.org/download/ \ ftp://ftp.centerim.org/ ! DISTNAME= ${PORTNAME}-20070518 MAINTAINER= frank@altpeter.de COMMENT= A text mode menu- and window-driven IM interface diff -bc centerim.orig/distinfo centerim/distinfo *** centerim.orig/distinfo Thu Apr 19 03:59:48 2007 --- centerim/distinfo Thu Jun 7 13:38:15 2007 *************** *** 1,3 **** ! MD5 (centerim-20070418.tar.gz) = 7c83220cf59a4aef5fd46e3cfea7de42 ! SHA256 (centerim-20070418.tar.gz) = 58d360148c2d34b290b4b70af63054d1d565bbb584c1edd239c4f45922c664be ! SIZE (centerim-20070418.tar.gz) = 2593505 --- 1,3 ---- ! MD5 (centerim-20070518.tar.gz) = 1cef82df35ddb4ef1a4309ea2dd80558 ! SHA256 (centerim-20070518.tar.gz) = 82b6644d66543889242c44e3abcba9c468b5694d7957c5f22d1050b4a3353efd ! SIZE (centerim-20070518.tar.gz) = 2596859 >Release-Note: >Audit-Trail: >Unformatted: SEND-PR: -*- send-pr -*- SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as SEND-PR: will all comments (text enclosed in `<' and `>'). SEND-PR: SEND-PR: Please consult the following URL if you are not sure how to SEND-PR: fill out a problem report: SEND-PR: http://www.freebsd.org/doc/en/articles/problem-reports/ SEND-PR: SEND-PR: Note that the Synopsis field is mandatory. SEND-PR: SEND-PR: Please note that (unless you state otherwise) if your report SEND-PR: includes a patch then it will be taken under the same license as SEND-PR: the one on the file(s) you want to change. SEND-PR: SEND-PR: BE ADVISED THAT FREEBSD PROBLEM REPORTS ARE PUBLIC INFORMATION AND SEND-PR: WILL BE PUBLISHED AS-IS ON THE PROJECT'S MAILING LISTS AND WEB SITES. SEND-PR: DO NOT SUBMIT ANY INFORMATION YOU DO NOT WANT MADE PUBLIC. SEND-PR: SEND-PR: If you wish to submit a problem report confidentially, then contact SEND-PR: the FreeBSD bugmaster (bugmaster@FreeBSD.org) to arrange for a SEND-PR: relevant developer to be contacted. SEND-PR: SEND-PR: For sensitive security issues, consider contacting the FreeBSD SEND-PR: security officer team (security-officer@freebsd.org) directly. SEND-PR: SEND-PR: Choose from the following categories: SEND-PR: SEND-PR: advocacy alpha amd64 bin conf docs SEND-PR: gnu i386 ia64 java kern misc SEND-PR: ports powerpc sparc64 standards sun4v threads SEND-PR: usb www SEND-PR: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 14:40:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6547F16A421 for ; Thu, 7 Jun 2007 14:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 441DD13C45D for ; Thu, 7 Jun 2007 14:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Ee4m5087055 for ; Thu, 7 Jun 2007 14:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57Ee4t4087054; Thu, 7 Jun 2007 14:40:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 14:40:04 GMT Resent-Message-Id: <200706071440.l57Ee4t4087054@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C04EA16A400 for ; Thu, 7 Jun 2007 14:30:46 +0000 (UTC) (envelope-from leeym@utopia.leeym.com) Received: from msr48.hinet.net (msr48.hinet.net [168.95.4.148]) by mx1.freebsd.org (Postfix) with ESMTP id 5D66E13C45A for ; Thu, 7 Jun 2007 14:30:45 +0000 (UTC) (envelope-from leeym@utopia.leeym.com) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by msr48.hinet.net (8.9.3/8.9.3) with ESMTP id WAA03284; Thu, 7 Jun 2007 22:30:39 +0800 (CST) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 75DAA76F52C; Thu, 7 Jun 2007 22:30:38 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r9sTQzzdogmu; Thu, 7 Jun 2007 22:30:34 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 8816C76F4E2; Thu, 7 Jun 2007 22:30:34 +0800 (CST) Message-Id: <20070607143034.8816C76F4E2@utopia.leeym.com> Date: Thu, 7 Jun 2007 22:30:34 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mij@bitchx.it Subject: ports/113453: [PATCH] security/sshguard: update to 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 14:40:05 -0000 >Number: 113453 >Category: ports >Synopsis: [PATCH] security/sshguard: update to 1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 14:40:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 20 13:11:02 CST 2007 >Description: - Update to 1.0 - Add script and make it easier to start/stop the daemon Added file(s): - files/sshguard.in Port maintainer (mij@bitchx.it) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- sshguard-1.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/sshguard/Makefile,v retrieving revision 1.2 diff -u -u -r1.2 Makefile --- Makefile 1 Mar 2007 10:06:13 -0000 1.2 +++ Makefile 7 Jun 2007 14:29:37 -0000 @@ -6,8 +6,7 @@ # PORTNAME= sshguard -PORTVERSION= 0.91 -PORTREVISION= 1 +PORTVERSION= 1.0 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -20,10 +19,16 @@ IS_INTERACTIVE= yes USE_BZIP2= yes HAS_CONFIGURE= yes +USE_RC_SUBR= sshguard OPTIONS= PF "Use PF as firewall backend" off \ IPFW "Use IPFW as firewall backend" off +MAN8= sshguard.8 + +post-patch: + ${REINPLACE_CMD} -e 's/fw add/fw -q add/g' ${WRKSRC}/src/fwalls/ipfw.c + .include .if ! ( (defined(WITH_PF) && !defined(WITH_IPFW)) || !defined(WITH_PF)) @@ -38,12 +43,4 @@ CONFIGURE_ARGS+= --with-firewall=ipfw .endif -post-install: - # spare pkg-message - ${ECHO_MSG} " Sshguard installed successfully." - ${ECHO_MSG} "Make it active by putting in /etc/syslog.conf something like:" - ${ECHO_MSG} " auth.info;authpriv.info |exec ${PREFIX}/sbin/sshguard" - ${ECHO_MSG} "Otherwise, run sshguard standalone with (as root):" - ${ECHO_MSG} " tail -n 0 -f /var/log/auth.log | ${PREFIX}/sbin/sshguard" - .include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/security/sshguard/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 1 Mar 2007 01:36:56 -0000 1.1 +++ distinfo 7 Jun 2007 14:29:37 -0000 @@ -1,3 +1,3 @@ -MD5 (sshguard-0.91.tar.bz2) = e6fb218fe2450f14b38ae5c5b67f0b6a -SHA256 (sshguard-0.91.tar.bz2) = c1e16d1d20ff192e0368bd8ddfe6acede5a90fef10ce0558655bacf62c29c42f -SIZE (sshguard-0.91.tar.bz2) = 63751 +MD5 (sshguard-1.0.tar.bz2) = 77b5a3a9d74542c487b8d5453d53d572 +SHA256 (sshguard-1.0.tar.bz2) = 33a9fe9d2360e9a5c357e269353d4157270171ff975bcf649f5f99b1aa8dcc08 +SIZE (sshguard-1.0.tar.bz2) = 118988 Index: files/sshguard.in =================================================================== RCS file: files/sshguard.in diff -N files/sshguard.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/sshguard.in 7 Jun 2007 14:29:37 -0000 @@ -0,0 +1,19 @@ +#!/bin/sh +# $FreeBSD$ +# PROVIDE: sshguard +# REQUIRE: DAEMON +# KEYWORD: shutdown + +sshguard_enable=${sshguard_enable:-"NO"} + +. %%RC_SUBR%% + +name="sshguard" +procname="%%PREFIX%%/sbin/sshguard" +rcvar=`set_rcvar` +authlog=`grep ^auth /etc/syslog.conf | awk '{print $NF}'` +required_files="$authlog" +command="/usr/bin/tail" +command_args="-n 0 -F $authlog | $procname &" +load_rc_config $name +run_rc_command "$1" --- sshguard-1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 14:40:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50B1E16A46F for ; Thu, 7 Jun 2007 14:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 32C7F13C46E for ; Thu, 7 Jun 2007 14:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Ee6tb087121 for ; Thu, 7 Jun 2007 14:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57Ee6ND087120; Thu, 7 Jun 2007 14:40:06 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 14:40:06 GMT Resent-Message-Id: <200706071440.l57Ee6ND087120@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pol Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F4D716A469 for ; Thu, 7 Jun 2007 14:35:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 5001C13C45E for ; Thu, 7 Jun 2007 14:35:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l57EZ9tX020346 for ; Thu, 7 Jun 2007 14:35:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l57EZ83C020345; Thu, 7 Jun 2007 14:35:08 GMT (envelope-from nobody) Message-Id: <200706071435.l57EZ83C020345@www.freebsd.org> Date: Thu, 7 Jun 2007 14:35:08 GMT From: Pol To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113455: linux-firefox/linux-thunderbird 2.0.0.4 hangs on opening or saving a file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 14:40:06 -0000 >Number: 113455 >Category: ports >Synopsis: linux-firefox/linux-thunderbird 2.0.0.4 hangs on opening or saving a file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 14:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Pol >Release: 6.2-RELEASE-p5 >Organization: >Environment: FreeBSD ***** 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #5: Sun Jun 3 23:34:52 CEST 2007 root@*****:/usr/obj/usr/src/sys/****** i386 >Description: linux-firefox 2.0.0.4 hangs when opening a file: file->Open File... linux-thunderbird 2.0.0.0 hangs when saving or opening an attachment. The problem seems to be the same as decribed in: "ports/91533: ports www/linux-firefox open file problem". System: FreeBSD 6.0-RELEASE #13: Sat Dec 17 00:05:04 EET 2005 root@samm.local:/usr/obj/usr/src/sys/SAMMKRNL Description: With latest gtk when i try to open file in firefox 1.5 it hangs :( How-To-Repeat: 1) Be sure that you use latest linux-gtk2 from ports 2) Run firefox and try to open any file using file dialog. It will hang :( Reply via E-mail From: Alex Samorukov Date: Tue, 13 Jun 2006 13:50:31 +0300 Last comment - after investigations i found that problem was fixed in latest (1.5.0.4) firefox. >How-To-Repeat: Open linux-firefox and try opening a file from the file menu. Open linux-thunderbird and try saving an attachment, after clicking save as (or open) the application freezes. >Fix: same fix as mentioned for previous bug seems to work: It seems that starting linux-firefox out of your home directory (try "cd / && linux-firefox" for example) makes the problem go away, but it's just a dirty workaround. (from:http://lists.freebsd.org/pipermail/freebsd-ports/2005-December/027960.html) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 14:40:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA56C16A468; Thu, 7 Jun 2007 14:40:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C3A8D13C44B; Thu, 7 Jun 2007 14:40:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57EeGLH087268; Thu, 7 Jun 2007 14:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57EeG6w087264; Thu, 7 Jun 2007 14:40:16 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 14:40:16 GMT From: Edwin Groothuis Message-Id: <200706071440.l57EeG6w087264@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, leeym@FreeBSD.org Cc: Subject: Re: ports/113453: [PATCH] security/sshguard: update to 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 14:40:17 -0000 Synopsis: [PATCH] security/sshguard: update to 1.0 Responsible-Changed-From-To: freebsd-ports-bugs->leeym Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 14:40:16 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113453 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 16:00:13 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E21E16A41F for ; Thu, 7 Jun 2007 16:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7FB2013C45A for ; Thu, 7 Jun 2007 16:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57G0DH2092749 for ; Thu, 7 Jun 2007 16:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57G0DhQ092744; Thu, 7 Jun 2007 16:00:13 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 16:00:13 GMT Resent-Message-Id: <200706071600.l57G0DhQ092744@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 702D016A421 for ; Thu, 7 Jun 2007 15:56:16 +0000 (UTC) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (grgw.svzserv.kemerovo.su [213.184.64.166]) by mx1.freebsd.org (Postfix) with ESMTP id 79CF113C489 for ; Thu, 7 Jun 2007 15:56:15 +0000 (UTC) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (localhost [127.0.0.1]) by grosbein.pp.ru (8.14.1/8.14.1) with ESMTP id l57FhCH3002404 for ; Thu, 7 Jun 2007 23:43:12 +0800 (KRAST) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.14.1/8.13.8/Submit) id l57FhAn8002403; Thu, 7 Jun 2007 23:43:10 +0800 (KRAST) (envelope-from eugen) Message-Id: <200706071543.l57FhAn8002403@grosbein.pp.ru> Date: Thu, 7 Jun 2007 23:43:10 +0800 (KRAST) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113458: net-im/vicq does not work with perl5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 16:00:13 -0000 >Number: 113458 >Category: ports >Synopsis: net-im/vicq does not work with perl5.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 16:00:12 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 6.2-STABLE i386 >Organization: Svyaz Service JSC >Environment: System: FreeBSD grosbein.pp.ru 6.2-STABLE FreeBSD 6.2-STABLE #16: Tue Apr 17 23:08:38 KRAST 2007 eu@grosbein.pp.ru:/mnt/home/obj/usr/local/src/sys/DADV i386 perl 5.8, vicq-0.4.2 >Description: Quoting some web page: Perl 5.8 has this wonderful thing called "safe interrupts", which essentially defers them. So the "alarm" that's supposed to interrupt the readline was deferred until AFTER the readline. Beautiful, no? So, vicq doesn't update status nor deliver messages asyncronously with input from keyboard when used with perl 5.8. >How-To-Repeat: Run vicq using perl 5.8 and try to receive a message. >Fix: diff -urN vicq.orig/Makefile vicq/Makefile --- vicq.orig/Makefile Thu Jun 7 23:26:53 2007 +++ vicq/Makefile Thu Jun 7 23:36:18 2007 @@ -30,4 +30,13 @@ ${MKDIR} ${PREFIX}/share/examples/vicq ${INSTALL_DATA} ${WRKSRC}/vicqrc.example ${PREFIX}/share/examples/vicq -.include +.include + +.if ${PERL_LEVEL} >= 500800 +SIGNAL_PATCH=p5.8-patch-sigalrm +post-patch: + @${ECHO_MSG} "===> Applying patch ${SIGNAL_PATCH} for ${PKGNAME}" + @${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/${SIGNAL_PATCH} +.endif + +.include diff -urN vicq.orig/files/p5.8-patch-sigalrm vicq/files/p5.8-patch-sigalrm --- vicq.orig/files/p5.8-patch-sigalrm Thu Jan 1 07:00:00 1970 +++ vicq/files/p5.8-patch-sigalrm Thu Jun 7 23:19:53 2007 @@ -0,0 +1,19 @@ +--- vicq.orig Thu Jun 7 23:15:28 2007 ++++ vicq Thu Jun 7 23:16:41 2007 +@@ -20,6 +20,7 @@ + use Getopt::Std; + use Socket; + use POSIX qw(mktime getcwd); ++use POSIX ':signal_h'; + package main; + use locale; + #use Data::Dumper; +@@ -3347,7 +3348,7 @@ + if(!$err) + { + print "done!\n"; +- $SIG{ALRM} = \&tick_handler; ++ sigaction SIGALRM, new POSIX::SigAction \&tick_handler; + alarm 1; + return 0; + } else Eugene Grosbein >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 16:00:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED95316A400; Thu, 7 Jun 2007 16:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C79EC13C44B; Thu, 7 Jun 2007 16:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57G0JA3092879; Thu, 7 Jun 2007 16:00:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57G0JXO092875; Thu, 7 Jun 2007 16:00:19 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 16:00:19 GMT From: Edwin Groothuis Message-Id: <200706071600.l57G0JXO092875@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kevlo@FreeBSD.org Cc: Subject: Re: ports/113458: net-im/vicq does not work with perl5.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 16:00:20 -0000 Synopsis: net-im/vicq does not work with perl5.8 Responsible-Changed-From-To: freebsd-ports-bugs->kevlo Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 16:00:19 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113458 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 16:30:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 881B316A46C for ; Thu, 7 Jun 2007 16:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5B31813C46C for ; Thu, 7 Jun 2007 16:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57GU7eJ094956 for ; Thu, 7 Jun 2007 16:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57GU7gp094955; Thu, 7 Jun 2007 16:30:07 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 16:30:07 GMT Resent-Message-Id: <200706071630.l57GU7gp094955@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Adam Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CAE416A400 for ; Thu, 7 Jun 2007 16:24:46 +0000 (UTC) (envelope-from david@paradise.ucc.gu.uwa.edu.au) Received: from asclepius2.uwa.edu.au (asclepius3.uwa.edu.au [130.95.128.60]) by mx1.freebsd.org (Postfix) with ESMTP id E694913C45B for ; Thu, 7 Jun 2007 16:24:45 +0000 (UTC) (envelope-from david@paradise.ucc.gu.uwa.edu.au) Received: from panacea.kas (localhost.localdomain [127.0.0.1]) by panacea.uwa.edu.au (Postfix) with SMTP id B62F5883A0 for ; Thu, 7 Jun 2007 23:57:59 +0800 (WST) Received: from panacea (localhost.localdomain [127.0.0.1]) by panacea.prekas (Postfix) with ESMTP id 5752C8837D for ; Thu, 7 Jun 2007 23:57:59 +0800 (WST) Received: from mooneye.ucc.gu.uwa.edu.au (mooneye.ucc.gu.uwa.edu.au [130.95.13.9]) by panacea.extinput (Postfix) with ESMTP id B542B883BE for ; Thu, 7 Jun 2007 23:57:58 +0800 (WST) Received: by mooneye.ucc.gu.uwa.edu.au (Postfix, from userid 801) id 687C4367E6; Thu, 7 Jun 2007 23:57:58 +0800 (WST) Received: from paradise.ucc.gu.uwa.edu.au (paradise.ucc.gu.uwa.edu.au [130.95.13.84]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mooneye.ucc.gu.uwa.edu.au (Postfix) with ESMTP id 91E8C367E4 for ; Thu, 7 Jun 2007 23:57:56 +0800 (WST) Received: from paradise.ucc.gu.uwa.edu.au (localhost.ucc.gu.uwa.edu.au [127.0.0.1]) by paradise.ucc.gu.uwa.edu.au (8.13.8/8.13.8) with ESMTP id l57FvRsi070869 for ; Thu, 7 Jun 2007 23:57:27 +0800 (WST) (envelope-from david@paradise.ucc.gu.uwa.edu.au) Received: (from david@localhost) by paradise.ucc.gu.uwa.edu.au (8.13.8/8.13.8/Submit) id l57FvR4G070868; Thu, 7 Jun 2007 23:57:27 +0800 (WST) (envelope-from david) Message-Id: <200706071557.l57FvR4G070868@paradise.ucc.gu.uwa.edu.au> Date: Thu, 7 Jun 2007 23:57:27 +0800 (WST) From: David Adam To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113460: cups-base chowns to non-existent user X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 16:30:07 -0000 >Number: 113460 >Category: ports >Synopsis: cups-base chowns to non-existent user >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 16:30:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: David Adam >Release: FreeBSD 6.2-STABLE i386 >Organization: University Computer Club, UWA >Environment: System: FreeBSD paradise.ucc.gu.uwa.edu.au 6.2-STABLE FreeBSD 6.2-STABLE #14: Wed Apr 11 23:23:17 WST 2007 david@paradise.ucc.gu.uwa.edu.au:/usr/obj/usr/src/sys/PARADISE i386 >Description: Installation of cups-base 1.2.10 via the package produces the output below. I believe this is due to the order of operations - the cups user is only created for the first time after the attempts to chown the directories. >How-To-Repeat: portinstall -P cups Results in: ---> Installing 'cups-base-1.2.10' from a package ---> Installing the new version via the package chown: cups: Invalid argument pkg_add: command 'chown root:cups /var/cache/cups' failed chown: cups: Invalid argument pkg_add: command 'chown cups:daemon /var/log/cups' failed chgrp: cups: Invalid argument pkg_add: command 'chgrp cups /usr/local/etc/cups' failed Added group "cups". Added user "cups". >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 18:40:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BE2316A474 for ; Thu, 7 Jun 2007 18:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 21CA513C4C8 for ; Thu, 7 Jun 2007 18:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Ie7nH005457 for ; Thu, 7 Jun 2007 18:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57Ie7Wk005456; Thu, 7 Jun 2007 18:40:07 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 18:40:07 GMT Resent-Message-Id: <200706071840.l57Ie7Wk005456@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35FBE16A46C for ; Thu, 7 Jun 2007 18:38:01 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: from sinistar.bluecows.com (sinistar.bluecows.com [205.167.142.250]) by mx1.freebsd.org (Postfix) with ESMTP id 1894A13C4B9 for ; Thu, 7 Jun 2007 18:38:01 +0000 (UTC) (envelope-from erik@sinistar.bluecows.com) Received: by sinistar.bluecows.com (Postfix, from userid 1015) id 16965434001; Thu, 7 Jun 2007 13:38:00 -0500 (CDT) Message-Id: <20070607183800.16965434001@sinistar.bluecows.com> Date: Thu, 7 Jun 2007 13:37:59 -0500 (CDT) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/113462: www/gforge - fix typo in Makefile @echo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 18:40:08 -0000 >Number: 113462 >Category: ports >Synopsis: www/gforge - fix typo in Makefile @echo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 18:40:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD vidar.br0kenland.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jan 13 11:46:43 EST 2007 root@vidar.br0kenland.org:/usr/obj/usr/src/sys/VIDAR i386 >Description: fixes the spelling of my name :) >How-To-Repeat: >Fix: --- www_gforge.patch begins here --- Index: www/gforge/Makefile =================================================================== RCS file: /home/ncvs/ports/www/gforge/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- www/gforge/Makefile 19 May 2007 20:24:54 -0000 1.19 +++ www/gforge/Makefile 7 Jun 2007 18:36:02 -0000 @@ -151,7 +151,7 @@ @${ECHO_MSG} "" @${ECHO_MSG} "If you are having trouble displaying gantt charts," @${ECHO_MSG} "please try increasing PHP's memory limit. Thanks to" - @${ECHO_MSG} "Erik Greenwalk for pointing this issue out." + @${ECHO_MSG} "Erik Greenwald for pointing this issue out." @${ECHO_MSG} "" @${ECHO_MSG} "gforge is a huge project and complex to configure." @${ECHO_MSG} "If you have some great ideas for this port please" --- www_gforge.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 18:40:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5CAB16A46D; Thu, 7 Jun 2007 18:40:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7FE3513C48C; Thu, 7 Jun 2007 18:40:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57IeFla005568; Thu, 7 Jun 2007 18:40:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57IeFu1005564; Thu, 7 Jun 2007 18:40:15 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 18:40:15 GMT From: Edwin Groothuis Message-Id: <200706071840.l57IeFu1005564@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, laszlof@FreeBSD.org Cc: Subject: Re: ports/113462: www/gforge - fix typo in Makefile @echo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 18:40:15 -0000 Synopsis: www/gforge - fix typo in Makefile @echo Responsible-Changed-From-To: freebsd-ports-bugs->laszlof Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 18:40:14 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113462 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 21:35:01 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6415516A400; Thu, 7 Jun 2007 21:35:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3B18E13C43E; Thu, 7 Jun 2007 21:35:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57LZ1g1018781; Thu, 7 Jun 2007 21:35:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57LZ1TK018777; Thu, 7 Jun 2007 21:35:01 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 21:35:01 GMT From: Edwin Groothuis Message-Id: <200706072135.l57LZ1TK018777@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, infofarmer@FreeBSD.org Cc: Subject: Re: ports/113455: linux-firefox/linux-thunderbird 2.0.0.4 hangs on opening or saving a file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 21:35:01 -0000 Synopsis: linux-firefox/linux-thunderbird 2.0.0.4 hangs on opening or saving a file Responsible-Changed-From-To: freebsd-ports-bugs->infofarmer Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 21:35:00 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113455 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 21:35:44 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8DF6816A46B; Thu, 7 Jun 2007 21:35:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 67B7313C45A; Thu, 7 Jun 2007 21:35:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57LZiD9018904; Thu, 7 Jun 2007 21:35:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57LZisx018900; Thu, 7 Jun 2007 21:35:44 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 21:35:44 GMT From: Edwin Groothuis Message-Id: <200706072135.l57LZisx018900@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Cc: Subject: Re: ports/113460: print/cups-base chowns to non-existent user X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 21:35:44 -0000 Synopsis: print/cups-base chowns to non-existent user Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jun 7 21:35:43 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113460 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 22:30:06 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08E5E16A400 for ; Thu, 7 Jun 2007 22:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DECA113C4AD for ; Thu, 7 Jun 2007 22:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57MU5fF021617 for ; Thu, 7 Jun 2007 22:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57MU5jj021616; Thu, 7 Jun 2007 22:30:05 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 22:30:05 GMT Resent-Message-Id: <200706072230.l57MU5jj021616@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ronald Cherry Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A215F16A41F for ; Thu, 7 Jun 2007 22:25:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 7ADED13C44C for ; Thu, 7 Jun 2007 22:25:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l57MPma4073906 for ; Thu, 7 Jun 2007 22:25:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l57MPmhF073905; Thu, 7 Jun 2007 22:25:48 GMT (envelope-from nobody) Message-Id: <200706072225.l57MPmhF073905@www.freebsd.org> Date: Thu, 7 Jun 2007 22:25:48 GMT From: Ronald Cherry To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113465: Documentation handbook refers to a non-existent port. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 22:30:06 -0000 >Number: 113465 >Category: ports >Synopsis: Documentation handbook refers to a non-existent port. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 22:30:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ronald Cherry >Release: 6.2 >Organization: >Environment: >Description: In the handbook for 6.2 the instructions for installing Oracle are to download dev/linux_devtools from the ports collection. Does this port exist? I searched back to 4 and couldn't find it. >How-To-Repeat: >Fix: I found newer linux ports for Oracle 10g that I'm trying to install. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 22:50:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FE6116A421 for ; Thu, 7 Jun 2007 22:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 31A4B13C44C for ; Thu, 7 Jun 2007 22:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Mo4dF023581 for ; Thu, 7 Jun 2007 22:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57Mo4aD023578; Thu, 7 Jun 2007 22:50:04 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jun 2007 22:50:04 GMT Resent-Message-Id: <200706072250.l57Mo4aD023578@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, janos.mohacsi@bsd.hu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CD8716A41F for ; Thu, 7 Jun 2007 22:40:20 +0000 (UTC) (envelope-from mohacsi@skye.ki.iif.hu) Received: from skye.ki.iif.hu (6net.iif.hu [193.225.13.161]) by mx1.freebsd.org (Postfix) with ESMTP id 7EB1613C480 for ; Thu, 7 Jun 2007 22:40:18 +0000 (UTC) (envelope-from mohacsi@skye.ki.iif.hu) Received: (from mohacsi@localhost) by skye.ki.iif.hu (8.14.1/8.14.1) id l57MeGw6095324; Fri, 8 Jun 2007 00:40:16 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200706072240.l57MeGw6095324@skye.ki.iif.hu> Date: Fri, 8 Jun 2007 00:40:16 +0200 (CEST) From: janos.mohacsi@bsd.hu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113466: [NEW PORT] net-mgmt/nfsen-devel: Development version of web based frontend to nfdump X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 22:50:04 -0000 >Number: 113466 >Category: ports >Synopsis: [NEW PORT] net-mgmt/nfsen-devel: Development version of web based frontend to nfdump >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 07 22:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 5.5-STABLE i386 >Organization: >Environment: System: FreeBSD skye.ki.iif.hu 5.5-STABLE FreeBSD 5.5-STABLE #3: Mon May 7 18:11:54 CEST >Description: NfSen is a graphical web based front end for the nfdump netflow tools. NfSen allows you to: * Display your netflow data: Flows, Packets and Bytes using RRD (Round Robin Database). * Easily navigate through the netflow data. * Process the netflow data within the specified time span. * Create history as well as continuous profiles. * Write your own plugins to process netflow data on a regular interval WWW: http://nfsen.sourceforge.net/ Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: It is using nfdump-devel as submitted in http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/112807 >Fix: --- nfsen-devel-20070312.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # nfsen-devel # nfsen-devel/files # nfsen-devel/files/patch-install.pl # nfsen-devel/files/patch-html_alerting.php # nfsen-devel/files/patch-etc_nfsen-dist.conf # nfsen-devel/files/nfsen.sh.in # nfsen-devel/files/patch-bin_testPlugin # nfsen-devel/files/patch-html_nfsen.php # nfsen-devel/pkg-plist # nfsen-devel/pkg-descr # nfsen-devel/distinfo # nfsen-devel/Makefile # echo c - nfsen-devel mkdir -p nfsen-devel > /dev/null 2>&1 echo c - nfsen-devel/files mkdir -p nfsen-devel/files > /dev/null 2>&1 echo x - nfsen-devel/files/patch-install.pl sed 's/^X//' >nfsen-devel/files/patch-install.pl << 'END-of-nfsen-devel/files/patch-install.pl' X X$FreeBSD: ports/net-mgmt/nfsen/files/patch-install.pl,v 1.3 2006/04/25 18:22:23 pav Exp $ X X--- install.pl.orig X+++ install.pl X@@ -1,4 +1,4 @@ X-#!/usr/bin/perl X+#!%%PERL%% -I %%PREFIX%%/libexec/nfsen X # X # X # Copyright (c) 2004, SWITCH - Teleinformatikdienste fuer Lehre und Forschung X@@ -81,33 +81,7 @@ X # Get Perl X sub GetPerl { X X- my $whichperl; X- my $ans; X- $whichperl = FindCommand("perl"); X- if ( defined $whichperl ) { X- print "Perl to use: [$whichperl] "; X- chomp($ans = ); X- if ( length $ans ) { X- $whichperl = $ans; X- } X- } else { X- print "No Perl found in your PATH. Please specify where to find perl [] "; X- chomp($whichperl = ); X- } X- X- while (1) { X- if ( -x $whichperl ) { X- my $err = system("$whichperl -e 'require 5.6.0;'") >> 8; X- last if $err == 0; X- print "Found errors while testing Perl\n"; X- } else { X- print "No executable: '$whichperl'\n"; X- } X- print "Perl to use: [] "; X- chomp($whichperl = ); X- } X- X- return $whichperl; X+ return "%%PERL%%"; X X } # End of GetPerl X END-of-nfsen-devel/files/patch-install.pl echo x - nfsen-devel/files/patch-html_alerting.php sed 's/^X//' >nfsen-devel/files/patch-html_alerting.php << 'END-of-nfsen-devel/files/patch-html_alerting.php' X X$FreeBSD$ X X--- html/alerting.php.orig X+++ html/alerting.php X@@ -449,6 +449,7 @@ X foreach ( $alert_condition_plugin as $plugin) { X $selected = $alert['condition'][0] == $plugin ? 'selected' : ''; X print " \n"; X+ $i++; X } X } X ?> END-of-nfsen-devel/files/patch-html_alerting.php echo x - nfsen-devel/files/patch-etc_nfsen-dist.conf sed 's/^X//' >nfsen-devel/files/patch-etc_nfsen-dist.conf << 'END-of-nfsen-devel/files/patch-etc_nfsen-dist.conf' X X$FreeBSD: ports/net-mgmt/nfsen/files/patch-etc_nfsen-dist.conf,v 1.3 2006/04/25 18:22:23 pav Exp $ X X--- etc/nfsen-dist.conf.orig X+++ etc/nfsen-dist.conf X@@ -26,7 +26,7 @@ X X # X # Required for default layout X-$BASEDIR = "/data/nfsen"; X+$BASEDIR = "%%PREFIX%%"; X X # X # Where to install the NfSen binaries X@@ -34,7 +34,7 @@ X X # X # Where to install the NfSen Perl modules X-$LIBEXECDIR="${BASEDIR}/libexec"; X+$LIBEXECDIR="${BASEDIR}/libexec/%%PORTNAME%%"; X X # X # Where to install the config files X@@ -44,7 +44,7 @@ X # NfSen html pages directory: X # All php scripts will be installed here. X # URL: Entry point for nfsen: http:///nfsen/nfsen.php X-$HTMLDIR = "/var/www/nfsen/"; X+$HTMLDIR = "%%PREFIX%%/www/%%PORTNAME%%/"; X X # X # Where to install the docs X@@ -52,20 +52,20 @@ X X # X # Var space for NfSen X-$VARDIR="${BASEDIR}/var"; X+$VARDIR="${BASEDIR}/var/%%PORTNAME%%"; X X # X # The Profiles stat directory, where all profile information X # RRD DBs and gif pictures of the profile are stored X-$PROFILESTATDIR="${BASEDIR}/profiles"; X+$PROFILESTATDIR="${VARDIR}/profiles"; X X # X # The Profiles directory, where all netflow data is stored X-$PROFILEDATADIR="${BASEDIR}/profiles"; X+$PROFILEDATADIR="${VARDIR}/profiles"; X X # X # Where go all the backend plugins X-$BACKEND_PLUGINDIR="${BASEDIR}/plugins"; X+$BACKEND_PLUGINDIR="${LIBEXECDIR}/plugins"; X X # X # Where go all the frontend plugins X@@ -73,7 +73,7 @@ X X # X # nfdump tools path X-$PREFIX = '/usr/local/bin'; X+$PREFIX = '%%PREFIX%%/bin'; X X # X # BASEDIR unrelated vars: X@@ -82,7 +82,7 @@ X # This may be a different or the same uid than your web server. X # Note: This user must be in group $WWWGROUP, otherwise nfcapd X # is not able to write data files! X-$USER = "netflow"; X+$USER = "www"; X X # user and group of the web server process X # All netflow processing will be done with this user X@@ -106,7 +106,7 @@ X X %sources = ( X 'upstream1' => { 'port' => '9995', 'col' => '#0000ff', 'type' => 'netflow' }, X- 'peer1' => { 'port' => '9996', 'col' => '#ff0000' }, X+# 'peer1' => { 'port' => '9996', 'col' => '#ff0000' }, X ); X X # END-of-nfsen-devel/files/patch-etc_nfsen-dist.conf echo x - nfsen-devel/files/nfsen.sh.in sed 's/^X//' >nfsen-devel/files/nfsen.sh.in << 'END-of-nfsen-devel/files/nfsen.sh.in' X#! /bin/sh X# X XPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin XDAEMON=%%PREFIX%%/bin/nfsen.rc XNAME=nfsen X Xtest -x $DAEMON || exit 0 X Xset -e X Xcase "$1" in X start) X echo -n "Starting $NAME" X $DAEMON start X echo "." X ;; X stop) X echo -n "Stopping $NAME " X $DAEMON stop X echo "." X ;; X restart|force-reload) X # X # If the "reload" option is implemented, move the "force-reload" X # option to the "reload" entry above. If not, "force-reload" is X # just the same as "restart". X # X echo -n "Restarting $NAME" X $DAEMON stop X sleep 1 X $DAEMON start X echo "." X ;; X *) X N=/tmp/nfsen-1.2.4.20060325/etc/rc.d/${NAME}.sh X # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 X echo "Usage: $N {start|stop|restart|force-reload}" >&2 X exit 1 X ;; Xesac X Xexit 0 X#! /bin/sh X# X XPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin XDAEMON=/usr/local/bin/nfsen.rc XNAME=nfsen X Xtest -x $DAEMON || exit 0 X Xset -e X Xcase "$1" in X start) X echo -n "Starting $NAME" X $DAEMON start X echo "." X ;; X stop) X echo -n "Stopping $NAME " X $DAEMON stop X echo "." X ;; X restart|force-reload) X # X # If the "reload" option is implemented, move the "force-reload" X # option to the "reload" entry above. If not, "force-reload" is X # just the same as "restart". X # X echo -n "Restarting $NAME" X $DAEMON stop X sleep 1 X $DAEMON start X echo "." X ;; X *) X N=/tmp/nfsen-1.2.4.20060325/etc/rc.d/${NAME}.sh X # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 X echo "Usage: $N {start|stop|restart|force-reload}" >&2 X exit 1 X ;; Xesac X Xexit 0 END-of-nfsen-devel/files/nfsen.sh.in echo x - nfsen-devel/files/patch-bin_testPlugin sed 's/^X//' >nfsen-devel/files/patch-bin_testPlugin << 'END-of-nfsen-devel/files/patch-bin_testPlugin' X X$FreeBSD$ X X--- bin/testPlugin.orig X+++ bin/testPlugin X@@ -50,6 +50,7 @@ X X use NfConf; X use NfSen; X+use NfProfile; X use Log; X X my $VERSION = '$Id: testPlugin 60 2007-01-09 12:26:47Z peter $'; X@@ -164,7 +165,10 @@ X print "Run plugin '$plugin' with profile '$profile' at '$timeslot'\n"; X my $sub = "${plugin}::run"; X no strict 'refs'; X-&$sub($profile, $timeslot); X+&$sub({ X+ profile => $profile, X+ timeslot => $timeslot, X+}); X use strict 'refs'; X print "Plugin run successfully, at least as far as I can tell ...\n" ; X END-of-nfsen-devel/files/patch-bin_testPlugin echo x - nfsen-devel/files/patch-html_nfsen.php sed 's/^X//' >nfsen-devel/files/patch-html_nfsen.php << 'END-of-nfsen-devel/files/patch-html_nfsen.php' X X$FreeBSD$ X X--- html/nfsen.php.orig X+++ html/nfsen.php X@@ -489,7 +489,8 @@ X if ( count($BookmarkVars) == count($_vars) ) { X for ( $i=0; $infsen-devel/pkg-plist << 'END-of-nfsen-devel/pkg-plist' Xbin/nfsen Xbin/nfsen.rc Xbin/nfsend Xbin/RebuildHierarchy.pl Xbin/testPlugin Xbin/nfcomm.pl X@unexec if cmp -s %D/etc/nfsen.conf %D/etc/nfsen-dist.conf; then rm -f %D/etc/nfsen.conf; fi X@exec [ -f %D/etc/nfsen.conf ] || cp %D/etc/nfsen-dist.conf %D/etc/nfsen.conf Xetc/nfsen-dist.conf Xlibexec/%%PORTNAME%%/CopyRecursive.pm Xlibexec/%%PORTNAME%%/Log.pm Xlibexec/%%PORTNAME%%/Lookup.pm Xlibexec/%%PORTNAME%%/NfAlert.pm Xlibexec/%%PORTNAME%%/NfConf.pm Xlibexec/%%PORTNAME%%/NfProfile.pm Xlibexec/%%PORTNAME%%/NfSen.pm Xlibexec/%%PORTNAME%%/NfSenRC.pm Xlibexec/%%PORTNAME%%/NfSenRRD.pm Xlibexec/%%PORTNAME%%/Nfcomm.pm Xlibexec/%%PORTNAME%%/Nfsources.pm Xlibexec/%%PORTNAME%%/Notification.pm Xlibexec/%%PORTNAME%%/RRDconvertv1.pm Xlibexec/%%PORTNAME%%/plugins/demoplugin.pm Xwww/%%PORTNAME%%/conf.php Xwww/%%PORTNAME%%/EmptyGraph.gif Xwww/%%PORTNAME%%/ErrorGraph.gif Xwww/%%PORTNAME%%/alerting.php Xwww/%%PORTNAME%%/colour_palette.html Xwww/%%PORTNAME%%/colour_palette_custom.php Xwww/%%PORTNAME%%/colour_picker.html Xwww/%%PORTNAME%%/css-admin.html Xwww/%%PORTNAME%%/css.html Xwww/%%PORTNAME%%/details.php Xwww/%%PORTNAME%%/info.php Xwww/%%PORTNAME%%/invisible.gif Xwww/%%PORTNAME%%/lookup.php Xwww/%%PORTNAME%%/navigator.php Xwww/%%PORTNAME%%/nfsen.php Xwww/%%PORTNAME%%/nfsenutil.php Xwww/%%PORTNAME%%/noscript.html Xwww/%%PORTNAME%%/overview.php Xwww/%%PORTNAME%%/pic.php Xwww/%%PORTNAME%%/process.php Xwww/%%PORTNAME%%/profileadmin.php Xwww/%%PORTNAME%%/rrdgraph.php Xwww/%%PORTNAME%%/css/alerting.css Xwww/%%PORTNAME%%/css/detail.css Xwww/%%PORTNAME%%/css/lookup.css Xwww/%%PORTNAME%%/css/nfsen.css Xwww/%%PORTNAME%%/css/profileadmin.css Xwww/%%PORTNAME%%/icons/arrow.blue.down.png Xwww/%%PORTNAME%%/icons/arrow.blue.right.png Xwww/%%PORTNAME%%/icons/arrow.yellow.down.png Xwww/%%PORTNAME%%/icons/arrow.yellow.right.png Xwww/%%PORTNAME%%/icons/close.gif Xwww/%%PORTNAME%%/icons/cursor-line.gif Xwww/%%PORTNAME%%/icons/cursor-start.gif Xwww/%%PORTNAME%%/icons/cursor-stop.gif Xwww/%%PORTNAME%%/icons/edit.png Xwww/%%PORTNAME%%/icons/help.png Xwww/%%PORTNAME%%/icons/invisible.gif Xwww/%%PORTNAME%%/icons/minus.gif Xwww/%%PORTNAME%%/icons/ok.png Xwww/%%PORTNAME%%/icons/plus.gif Xwww/%%PORTNAME%%/icons/plus.png Xwww/%%PORTNAME%%/icons/progress.png Xwww/%%PORTNAME%%/icons/save.png Xwww/%%PORTNAME%%/icons/shade.gif Xwww/%%PORTNAME%%/icons/shadeactive.gif Xwww/%%PORTNAME%%/icons/space.png Xwww/%%PORTNAME%%/icons/spyglas.png Xwww/%%PORTNAME%%/icons/trash.png Xwww/%%PORTNAME%%/js/ColorPicker2.js Xwww/%%PORTNAME%%/js/alerting.js Xwww/%%PORTNAME%%/js/detail.js Xwww/%%PORTNAME%%/js/global.js Xwww/%%PORTNAME%%/js/menu.js Xwww/%%PORTNAME%%/js/profileadmin.js Xwww/%%PORTNAME%%/plugins/demoplugin.php Xwww/%%PORTNAME%%/doc/BSD-license.html Xwww/%%PORTNAME%%/doc/Bookmark.png Xwww/%%PORTNAME%%/doc/BuildingProfile.png Xwww/%%PORTNAME%%/doc/ConfirmDelete.png Xwww/%%PORTNAME%%/doc/DefaultFilter.png Xwww/%%PORTNAME%%/doc/DeleteProfile.png Xwww/%%PORTNAME%%/doc/DisabledSources.png Xwww/%%PORTNAME%%/doc/InputEnd.png Xwww/%%PORTNAME%%/doc/Navigating.png Xwww/%%PORTNAME%%/doc/NewProfile.png Xwww/%%PORTNAME%%/doc/OutOfData.png Xwww/%%PORTNAME%%/doc/ProcessingControls.png Xwww/%%PORTNAME%%/doc/ProcessingOutput.png Xwww/%%PORTNAME%%/doc/ProfileCreated.png Xwww/%%PORTNAME%%/doc/ResetWindow.png Xwww/%%PORTNAME%%/doc/SelectLeft.png Xwww/%%PORTNAME%%/doc/SelectRight.png Xwww/%%PORTNAME%%/doc/StatSummary.png Xwww/%%PORTNAME%%/doc/TimeWindow.png Xwww/%%PORTNAME%%/doc/WinScale.png Xwww/%%PORTNAME%%/doc/bytes.png Xwww/%%PORTNAME%%/doc/cursor_control.png Xwww/%%PORTNAME%%/doc/details-graphs.png Xwww/%%PORTNAME%%/doc/details-processing.png Xwww/%%PORTNAME%%/doc/dirstruct.png Xwww/%%PORTNAME%%/doc/edit.png Xwww/%%PORTNAME%%/doc/exiisting.png Xwww/%%PORTNAME%%/doc/flows.png Xwww/%%PORTNAME%%/doc/index.html Xwww/%%PORTNAME%%/doc/linegraph.png Xwww/%%PORTNAME%%/doc/nfsen-options.png Xwww/%%PORTNAME%%/doc/overview.png Xwww/%%PORTNAME%%/doc/packets.png Xwww/%%PORTNAME%%/doc/plugins.png Xwww/%%PORTNAME%%/doc/processing-1.png Xwww/%%PORTNAME%%/doc/selectprofile.png Xwww/%%PORTNAME%%/doc/stat.png Xwww/%%PORTNAME%%/doc/views-2.png Xwww/%%PORTNAME%%/doc/views.png X@dirrm www/%%PORTNAME%%/css X@dirrm www/%%PORTNAME%%/plugins X@dirrm www/%%PORTNAME%%/icons X@dirrm www/%%PORTNAME%%/js X@dirrm www/%%PORTNAME%%/doc X@dirrm www/%%PORTNAME%% X@exec mkdir -p %D/var/%%PORTNAME%%/profiles/live/upstream1 Xvar/%%PORTNAME%%/profiles/live/upstream1.rrd Xvar/%%PORTNAME%%/profiles/live/profile.dat X@exec mkdir -p %D/var/%%PORTNAME%%/run X@exec mkdir -p %D/var/%%PORTNAME%%/filters X@dirrmtry var/%%PORTNAME%%/run X@dirrm var/%%PORTNAME%%/filters X@dirrmtry var/%%PORTNAME%%/profiles/live/upstream1 X@dirrmtry var/%%PORTNAME%%/profiles/live X@dirrmtry var/%%PORTNAME%%/profiles X@dirrmtry var/%%PORTNAME%% X@dirrm libexec/%%PORTNAME%%/plugins X@dirrm libexec/%%PORTNAME%% END-of-nfsen-devel/pkg-plist echo x - nfsen-devel/pkg-descr sed 's/^X//' >nfsen-devel/pkg-descr << 'END-of-nfsen-devel/pkg-descr' XNfSen is a graphical web based front end for the nfdump netflow tools. X XNfSen allows you to: X X * Display your netflow data: Flows, Packets and Bytes using RRD X (Round Robin Database). X * Easily navigate through the netflow data. X * Process the netflow data within the specified time span. X * Create history as well as continuous profiles. X * Write your own plugins to process netflow data on a regular interval X XWWW: http://nfsen.sourceforge.net/ END-of-nfsen-devel/pkg-descr echo x - nfsen-devel/distinfo sed 's/^X//' >nfsen-devel/distinfo << 'END-of-nfsen-devel/distinfo' XMD5 (nfsen-snapshot-20070312.tar.gz) = 2fc895f020b88f94f1edc9b1d7ccd8b4 XSHA256 (nfsen-snapshot-20070312.tar.gz) = 85aef7c40c1f1e5c4eee97137bb45d02f4c9abc812a5defd0ba7596710586dfd XSIZE (nfsen-snapshot-20070312.tar.gz) = 3478630 END-of-nfsen-devel/distinfo echo x - nfsen-devel/Makefile sed 's/^X//' >nfsen-devel/Makefile << 'END-of-nfsen-devel/Makefile' X# New ports collection makefile for: nfsen-devel X# Date created: 21 May 2007 X# Whom: janos.mohacsi@bsd.hu X# X# $FreeBSD$ X# X XPORTNAME= nfsen XPORTVERSION= 20070312 XCATEGORIES= net-mgmt XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ X http://nfsen.sourceforge.net/ XMASTER_SITE_SUBDIR= nfsen XPKGNAMESUFFIX= -devel XDISTNAME= nfsen-snapshot-${PORTVERSION} X XMAINTAINER= janos.mohacsi@bsd.hu XCOMMENT= Development version of web based frontend to nfdump X XRUN_DEPENDS= nfdump:${PORTSDIR}/net-mgmt/nfdump \ X ${SITE_PERL}/Mail/Header.pm:${PORTSDIR}/mail/p5-Mail-Tools X XCONFLICTS= nfsen-[0-9]* X XUSE_ICONV= yes XUSE_PERL5= yes XUSE_PHP= session pcre sockets XNO_BUILD= yes XPLIST_SUB+= PORTNAME=${PORTNAME} XUSE_RC_SUBR= nfsen.sh X X.include X X.if ${PERL_LEVEL} < 500600 XIGNORE= requires at least perl 5.6.0 X.endif X Xpre-everything:: X @${ECHO_MSG} "" X @${ECHO_MSG} "*****************************************************" X @${ECHO_MSG} "Before upgrading you may backup the original profile " X @${ECHO_MSG} "stat data:" X @${ECHO_MSG} "cd ${WRKSRC}/helpers" X @${ECHO_MSG} "./mk_backup.sh /path/to/your/profilestatdir /path/to/backupdir" X @${ECHO_MSG} "*****************************************************" X @${ECHO_MSG} "" X Xpost-patch: X @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},' -e 's,%%PORTNAME%%,${PORTNAME},' \ X ${WRKSRC}/etc/nfsen-dist.conf X @${RM} ${WRKSRC}/etc/nfsen-dist.conf.* X @${REINPLACE_CMD} -e 's,%%PERL%%,${PERL},' -e 's,%%PREFIX%%,${PREFIX},' ${WRKSRC}/install.pl X Xdo-install: X @${MKDIR} ${PREFIX}/var/${PORTNAME}/profiles/live X @${MKDIR} ${PREFIX}/libexec/${PORTNAME} X ${INSTALL_DATA} ${WRKSRC}/installer-items/CopyRecursive.pm ${PREFIX}/libexec/${PORTNAME}/ X ${INSTALL_DATA} ${WRKSRC}/installer-items/RRDconvertv1.pm ${PREFIX}/libexec/${PORTNAME}/ X @ if [ -f ${PREFIX}/etc/nfsen.conf ] ; then \ X ${ECHO_MSG} "installing with existing nfsen.conf"; \ X cd ${WRKSRC} ;${PERL} ${WRKSRC}/install.pl ${PREFIX}/etc/nfsen.conf; \ X else \ X ${ECHO_MSG} "installing with sample nfsen.conf"; \ X cd ${WRKSRC} ;${PERL} ${WRKSRC}/install.pl ${WRKSRC}/etc/nfsen-dist.conf; \ X fi X @${ECHO_MSG} "Configure your ${LOCALBASE}/etc/nfsen.conf to have necessary sources "; X @${ECHO_MSG} "Then run 'nfsen reconfig' to correctly setup source, RRD, and profile files"; X X.include END-of-nfsen-devel/Makefile exit --- nfsen-devel-20070312.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 7 22:50:41 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 11D0E16A469; Thu, 7 Jun 2007 22:50:41 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DD81813C447; Thu, 7 Jun 2007 22:50:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l57Moe0Q023851; Thu, 7 Jun 2007 22:50:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l57MoeQM023844; Thu, 7 Jun 2007 22:50:40 GMT (envelope-from edwin) Date: Thu, 7 Jun 2007 22:50:40 GMT From: Edwin Groothuis Message-Id: <200706072250.l57MoeQM023844@freefall.freebsd.org> To: rcherry@jam21.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113465: Documentation handbook refers to a non-existent port. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 22:50:41 -0000 Synopsis: Documentation handbook refers to a non-existent port. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Thu Jun 7 22:50:20 UTC 2007 State-Changed-Why: Please discuss this on questions@freebsd.org or ports@freebsd.org http://www.freebsd.org/cgi/query-pr.cgi?pr=113465 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 02:20:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01CEC16A468 for ; Fri, 8 Jun 2007 02:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D46EA13C484 for ; Fri, 8 Jun 2007 02:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l582K2Lj038666 for ; Fri, 8 Jun 2007 02:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l582K2Zc038665; Fri, 8 Jun 2007 02:20:02 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 02:20:02 GMT Resent-Message-Id: <200706080220.l582K2Zc038665@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, parv@pair.com Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF28E16A400 for ; Fri, 8 Jun 2007 02:11:30 +0000 (UTC) (envelope-from parv@chvlva.adelphia.net) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.freebsd.org (Postfix) with ESMTP id A658913C45D for ; Fri, 8 Jun 2007 02:11:30 +0000 (UTC) (envelope-from parv@chvlva.adelphia.net) Received: from default.chvlva.adelphia.net ([24.126.17.68]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20070608021130.WXBB13315.mta11.adelphia.net@default.chvlva.adelphia.net> for ; Thu, 7 Jun 2007 22:11:30 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 7E03DB6FC; Thu, 7 Jun 2007 22:12:12 -0400 (EDT) Message-Id: <20070608021212.7E03DB6FC@default.chvlva.adelphia.net> Date: Thu, 7 Jun 2007 22:12:12 -0400 (EDT) From: parv@pair.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113468: print/acroread7 - PATCH (dirty workaround) - acroread shell script produces error when $version is empty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 02:20:03 -0000 >Number: 113468 >Category: ports >Synopsis: print/acroread7 - PATCH (dirty workaround) - acroread shell script produces error when $version is empty >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 02:20:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Parv >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD holestein.holy.cow 6.2-STABLE FreeBSD 6.2-STABLE #1: Fri May 25 16:16:36 EDT 2007 root@holestein.holy.cow:/work/obj/misc/src-6/sys/BOVINE-T42.6 i386 Installed version is acroread7-7.0.9_1,1. Linux ports (base & such) have been recompiled & reinstalled after installing xorg 7.2. My interactive shell is zsh 4.3.2_1. >Description: acroread (shell script) produces the following message ... /misc/local/Adobe/Acrobat7.0/ENU/bin/acroread: line 486: [: -ge: unary operator expected ... which does not prevent the actual program to be launched). Running with -x option around $version assignment ... 480 set -x 481 version=`get_gtk_file_ver "$ifile"` 482 set +x ... produces ... ++ get_gtk_file_ver /misc/local/lib/libgtk-x11-2.0.so ++ '[' -f /misc/local/lib/libgtk-x11-2.0.so ']' ++ '[' -h /misc/local/lib/libgtk-x11-2.0.so ']' +++ readlink /misc/local/lib/libgtk-x11-2.0.so ++++ /bin/pwd +++ OLDPWD=/misc/home/parv +++ lfile=/misc/local/lib/libgtk-x11-2.0.so +++ '[' -h /misc/local/lib/libgtk-x11-2.0.so -a -f /misc/local/lib/libgtk-x11-2.0.so ']' ++++ dirname /misc/local/lib/libgtk-x11-2.0.so +++ CWD=/misc/local/lib ++++ expr /misc/local/lib : '\.\.' +++ '[' 0 = 2 ']' ++++ basename /misc/local/lib/libgtk-x11-2.0.so +++ lfile=libgtk-x11-2.0.so +++ cd /misc/local/lib ++++ /bin/ls -l libgtk-x11-2.0.so ++++ sed 's/^.*-> *\(.*\) *$/\1/' +++ lfile=libgtk-x11-2.0.so.0 +++ '[' -h libgtk-x11-2.0.so.0 -a -f libgtk-x11-2.0.so.0 ']' +++ '[' -f libgtk-x11-2.0.so.0 ']' ++++ dirname libgtk-x11-2.0.so.0 +++ CWD=. ++++ basename libgtk-x11-2.0.so.0 +++ lfile=libgtk-x11-2.0.so.0 ++++ expr . : '\.\.' +++ '[' 0 = 2 ']' +++ cd . ++++ /bin/pwd +++ echo /misc/local/lib/libgtk-x11-2.0.so.0 +++ cd /misc/local/lib +++ return 0 ++ ifile=/misc/local/lib/libgtk-x11-2.0.so.0 ++ '[' 0 -eq 1 ']' +++ basename /misc/local/lib/libgtk-x11-2.0.so.0 ++ mfile=libgtk-x11-2.0.so.0 ++ echo libgtk-x11-2.0.so.0 ++ grep -q 'libgtk-x11-\([0-9]*\).0.so.0.\([0-9]*\).\([0-9]*\)' ++ '[' 1 -ne 0 ']' ++ return 1 + version= + set +x /misc/local/Adobe/Acrobat7.0/ENU/bin/acroread: line 488: [: -ge: unary operator expected >How-To-Repeat: Try to run above acroread version. >Fix: This is only a dirty workaround around the actual problem, but should be considered to make the script robust ... --- acroread.old Fri Jan 5 14:56:39 2007 +++ acroread Thu Jun 7 16:59:05 2007 @@ -479,6 +479,15 @@ for ifile in `/sbin/ldconfig -p|grep "libgtk-x11-2.0.so$"|sed 's/.*[ \t]*=>[ \t]*\(.*\)/\1/g' 2>/dev/null`; do version=`get_gtk_file_ver "$ifile"` + case "$version" in + "" ) + return 0 + ;; + + *) + ;; + esac + while [ ${#version} -gt ${#base_version} ]; do base_version="${base_version}0" done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 02:20:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CE7916A468; Fri, 8 Jun 2007 02:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6534613C4B8; Fri, 8 Jun 2007 02:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l582KEl3038801; Fri, 8 Jun 2007 02:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l582KEZu038797; Fri, 8 Jun 2007 02:20:14 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 02:20:14 GMT From: Edwin Groothuis Message-Id: <200706080220.l582KEZu038797@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hrs@FreeBSD.org Cc: Subject: Re: ports/113468: print/acroread7 - PATCH (dirty workaround) - acroread shell script produces error when $version is empty X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 02:20:14 -0000 Synopsis: print/acroread7 - PATCH (dirty workaround) - acroread shell script produces error when $version is empty Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 02:20:11 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113468 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 05:40:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D93A816A41F for ; Fri, 8 Jun 2007 05:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A3CF413C44C for ; Fri, 8 Jun 2007 05:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l585e279053178 for ; Fri, 8 Jun 2007 05:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l585e2nP053177; Fri, 8 Jun 2007 05:40:02 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 05:40:02 GMT Resent-Message-Id: <200706080540.l585e2nP053177@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mike Meyer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E24516A46E for ; Fri, 8 Jun 2007 05:32:59 +0000 (UTC) (envelope-from mwm@mired.org) Received: from mired.org (vpn.mired.org [66.92.153.74]) by mx1.freebsd.org (Postfix) with SMTP id 9797513C45E for ; Fri, 8 Jun 2007 05:32:58 +0000 (UTC) (envelope-from mwm@mired.org) Received: (qmail 61884 invoked by uid 1001); 8 Jun 2007 05:04:04 -0000 Message-Id: <20070608050404.61883.qmail@mired.org> Date: 8 Jun 2007 05:04:04 -0000 From: Mike Meyer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113469: Py-BeautifulSoup port update [MAINTAINER] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mike Meyer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 05:40:03 -0000 >Number: 113469 >Category: ports >Synopsis: Py-BeautifulSoup port update [MAINTAINER] >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 05:40:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 6.2-STABLE amd64 >Organization: Meyer Consulting >Environment: System: FreeBSD bhuda.mired.org 6.2-STABLE FreeBSD 6.2-STABLE #6: Sun Jun 3 04:17:59 EDT 2007 mwm@bhuda.mired.org:/usr/src/sys/amd64/compile/BHUDA amd64 >Description: BeautifulSoup is at version 3.04, but the port is still at 3.03 >How-To-Repeat: Check the web page; check the port >Fix: Apply the following patch to the port. diff -ur py-beautifulsoup-old/Makefile py-beautifulsoup/Makefile --- py-beautifulsoup-old/Makefile Sun Aug 20 20:48:44 2006 +++ py-beautifulsoup/Makefile Fri Jun 8 00:57:35 2007 @@ -6,7 +6,7 @@ # PORTNAME= beautifulsoup -PORTVERSION= 3.0.3 +PORTVERSION= 3.0.4 CATEGORIES= www python MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ur py-beautifulsoup-old/distinfo py-beautifulsoup/distinfo --- py-beautifulsoup-old/distinfo Sun Aug 20 20:48:44 2006 +++ py-beautifulsoup/distinfo Fri Jun 8 00:57:35 2007 @@ -1,3 +1,3 @@ -MD5 (BeautifulSoup-3.0.3.tar.gz) = 7b788918e887b6b2c1bfef28ca4eb0d1 -SHA256 (BeautifulSoup-3.0.3.tar.gz) = e5854807854a05da21357c2b88d26866251298beeb8734a0ef7a4b9132b9b048 -SIZE (BeautifulSoup-3.0.3.tar.gz) = 27018 +MD5 (BeautifulSoup-3.0.4.tar.gz) = 13a7a16e7f3b8febaace13b1b2790550 +SHA256 (BeautifulSoup-3.0.4.tar.gz) = cba382a5f3ce2d8085fd7eed44b0f1cc9de5fb868e15b11f5b75f2047a53e59e +SIZE (BeautifulSoup-3.0.4.tar.gz) = 26109 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 06:10:24 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36DE016A468 for ; Fri, 8 Jun 2007 06:10:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1720C13C480 for ; Fri, 8 Jun 2007 06:10:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l586ANO5055098 for ; Fri, 8 Jun 2007 06:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l586ANMu055097; Fri, 8 Jun 2007 06:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 06:10:23 GMT Resent-Message-Id: <200706080610.l586ANMu055097@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Cristian KLEIN Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7487216A41F for ; Fri, 8 Jun 2007 06:06:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 4C3B713C45A for ; Fri, 8 Jun 2007 06:06:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l5866tw1013094 for ; Fri, 8 Jun 2007 06:06:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l5866tGE013093; Fri, 8 Jun 2007 06:06:55 GMT (envelope-from nobody) Message-Id: <200706080606.l5866tGE013093@www.freebsd.org> Date: Fri, 8 Jun 2007 06:06:55 GMT From: Cristian KLEIN To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113470: [patch] print/freetype2 does not compile in (some) jails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 06:10:24 -0000 >Number: 113470 >Category: ports >Synopsis: [patch] print/freetype2 does not compile in (some) jails >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 06:10:23 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Cristian KLEIN >Release: FreeBSD 6.2 >Organization: Technical University of Cluj-Napoca >Environment: FreeBSD mail.xxx.xxx 6.2-RELEASE-p3 FreeBSD 6.2-RELEASE-p3 #5: Fri Apr 27 20:01:20 EEST 2007 cristi@bavaria.xxx.xxx:/usr/obj/usr/src/sys/BAVARIA-SMP i386 >Description: print/freetype2 has a mechanism to autodetect the system it should compile on. (for example, ansi or unix). This autodetection mechanism relies on the fact that '/sbin/init' exists on every unix system. This is not necessarily true for FreeBSD jails, in which a paranoic system administrator would delete '/sbin/init' (it isn't useful in a jail anyway). When attempting to compile print/freetype2 in such a jail, it will incorrectly detect the system as 'ansi' and stop with the following error: ===> Building for freetype2-2.2.1_2 cc -I./objs -I./builds/ansi -I./include -O -pipe -march=pentium4 -DTT_CONFIG_OPTION_BYTECODE_INTERPRETER -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="" -o objs/ftsystem.o src/base/ftsystem.c In file included from ./include/freetype/config/ftconfig.h:43, from src/base/ftsystem.c:29: ./include/freetype/config/ftoption.h:439:1: warning: "TT_CONFIG_OPTION_BYTECODE_INTERPRETER" redefined :2:1: warning: this is the location of the previous definition /usr/lib/crt1.o(.text+0x82): In function `_start': : undefined reference to `main' gmake: *** [objs/ftsystem.o] Error 1 *** Error code 2 Stop in /usr/ports/print/freetype2. >How-To-Repeat: First solution: 1) create a FreeBSD jail, as described in jail(8) 2) delete /sbin/init from the jail 3) install the ports collection 4) install print/freetype2 Dangerous, but should prove the point: 1) chflags noschg /sbin/init 2) mv /sbin/init /sbin/init.0 3) install print/freetype2 4) mv /sbin/init.0 /sbin/init 5) chflags schg /sbin/init >Fix: Workaround: type the following command in the jail environment: touch /sbin/init or, add the attached patch to print/freetype2/files Patch attached with submission follows: --- builds/unix/detect.mk.orig Tue Jan 31 15:12:28 2006 +++ builds/unix/detect.mk Fri Jun 8 08:48:32 2007 @@ -21,6 +21,10 @@ is_unix := $(strip $(wildcard /sbin/init) \ $(wildcard /usr/sbin/init) \ $(wildcard /hurd/auth)) + # Being part of the FreeBSD ports collection + # I'm pretty sure we're on a unix system. + is_unix := true + ifneq ($(is_unix),) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 06:10:34 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6DC4016A421; Fri, 8 Jun 2007 06:10:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3E10713C447; Fri, 8 Jun 2007 06:10:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l586AXSJ055208; Fri, 8 Jun 2007 06:10:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l586AXY5055204; Fri, 8 Jun 2007 06:10:33 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 06:10:33 GMT From: Edwin Groothuis Message-Id: <200706080610.l586AXY5055204@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Cc: Subject: Re: ports/113470: [patch] print/freetype2 does not compile in (some) jails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 06:10:34 -0000 Synopsis: [patch] print/freetype2 does not compile in (some) jails Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 06:10:32 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113470 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 07:40:01 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E90CF16A469 for ; Fri, 8 Jun 2007 07:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C749F13C484 for ; Fri, 8 Jun 2007 07:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l587e1F7063528 for ; Fri, 8 Jun 2007 07:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l587e1hL063527; Fri, 8 Jun 2007 07:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 07:40:01 GMT Resent-Message-Id: <200706080740.l587e1hL063527@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Harald Servat Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B57A16A41F for ; Fri, 8 Jun 2007 07:35:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 68E1513C45E for ; Fri, 8 Jun 2007 07:35:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l587ZK2m028247 for ; Fri, 8 Jun 2007 07:35:20 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l587ZKZ7028246; Fri, 8 Jun 2007 07:35:20 GMT (envelope-from nobody) Message-Id: <200706080735.l587ZKZ7028246@www.freebsd.org> Date: Fri, 8 Jun 2007 07:35:20 GMT From: Harald Servat To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113472: [NEW PORT] devel/papi Gather CPU performance information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 07:40:02 -0000 >Number: 113472 >Category: ports >Synopsis: [NEW PORT] devel/papi Gather CPU performance information >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 07:40:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Harald Servat >Release: FreeBSD 6.2 >Organization: >Environment: FreeBSD BSCIT03.cepba.upc.edu 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Mon Mar 12 20:40:26 CET 2007 root@BSCIT03.cepba.upc.edu:/usr/obj/usr/src/sys/laptop i386 >Description: PAPI aims to provide the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. >How-To-Repeat: >Fix: Patch attached with submission follows: begin 644 papi.shar M(R!4:&ES(&ES(&$@2!Y;W4@86YD"B,@:&%V92!D969A=6QT('!E M"`M('!A<&DO36%K M969I;&4*U=22T1)4GTO4$%022]S&5?:6YF;RXS M(%P*6`E005!)1E]G971?9W)A;G5L87)I='DN,R!<"E@)4$%0249?9V5T7W!R M96QO860N,R!<"E@)4$%0249?"XS(%P*6`E005!)7V=E M=%]R96%L7V-Y8RXS(%P*6`E005!)7V=E=%]R96%L7W5S96,N,R!<"E@)4$%0 M25]G971?2XS(%P*6`E0 M05!)7W-E=%]M=6QT:7!L97@N,R!<"E@)4$%025]S971?;W!T+C,@7`I8"5!! M4$E?3(@7`I8"6YA=&EV92!<"E@)879A:6P@7`I8"6-A'!A<&DR M(%P*6`EF;75L=&EP;&5X,2!<"E@)9FUU;'1I<&QE>#(*6`I84$%025]#7U1% M4U13/0EI<&,@7`I8"6AW:6YF;R!<"E@)8V]D93)N86UE(%P*6`ER97-E="!< M"E@)&5I;F9O M(%P*6`EZ97)O(%P*6`EZ97)O7V9O2!<"E@)>F5R;U]F;&EP(%P*6"`);&]W+6QE=F5L(%P*6`EH:6=H+6QE M=F5L(%P*6`EE=F5N=&YA;64@7`I8"6-A"!<"E@);W9E#$@ M7`I8"6UU;'1I<&QE>#(@7`I8"6UE;F1E"!<"E@)=&ARTE.4U1!3$Q?4%)/1U)!37T@)'M74DM34D-]+W5T:6QS M+R1[9GT@)'M04D5&25A]+V)I;@I8+F5N9&9O<@I8+F9OTE.4U1!3$Q?1$%407T@)'M74DM34D-]+R1[9GT@ M)'M04D5&25A]+VEN8VQU9&4*6"YE;F1F;W(*6"YI9B!D969I;F5D*%=)5$A? M1E1%4U13*0I8"21[34M$25)]("1[4%)%1DE8?2]S:&%R92]F=&5S=',*6"YF M;W(@9B!I;B`D>U!!4$E?1D]25%)!3E]415-44WT*6`DD>TE.4U1!3$Q?4%)/ M1U)!37T@)'M74DM34D-]+V9T97-TV9]("1[4%)%1DE8?2]S:&%R92]F M=&5S=',*6"YE;F1F;W(*6"YE;F1I9@I8+FEF(&1E9FEN960H5TE42%]#5$53 M5%,I"E@))'M-2T1)4GT@)'M04D5&25A]+W-H87)E+V-T97-TU=2 M2U-20WTO8W1EV9]("1[4%)%1DE8?2]L:6(*6"YE M;F1F;W(*6"YF;W(@9B!I;B`D>TU!3C%]"E@))'M)3E-404Q,7TU!3GT@)'M7 M4DM-04Y]+VUA;C$O)'MF?2`D>U!2149)6'TO;6%N+VUA;C$*6"YE;F1F;W(* M6"YF;W(@9B!I;B`D>TU!3C-]"E@))'M)3E-404Q,7TU!3GT@)'M74DM-04Y] M+VUA;C,O)'MF?2`D>U!2149)6'TO;6%N+VUA;C,*6"YE;F1F;W(*6`I8+FEN M8VQU9&4@/&)S9"YP;W)T+G!O"`M('!A<&DO9&ES=&EN9F\*C(I(#T@939F,&8V,#ED8S)D,F%C-V8T M-CDU-V(Q8S,V-S(W8V,*6%-(03(U-B`H<&%P:2TS+C4N,"UFC(I(#T@9#,P9&0U9#`P,C4V9F4T.#,Y.3`V-3DW-CC(I(#T@,S,S,#8S-PI%3D0M;V8M<&%P M:2]D:7-T:6YF;PIE8VAO('@@+2!P87!I+W!K9RUD97-C<@IS960@)W,O7E@O M+R<@/G!A<&DO<&MG+61E"`M('!A<&DO<&MG M+7!L:7-T"G-E9"`G6"\O)R`^<&%P:2]P:V3(*6'-H87)E+V-T97-T#(*6'-H87)E+V-T97-T#$*6'-H87)E+V9T M97-TF5R;PI80&1IRelease-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 08:00:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F1D416A41F for ; Fri, 8 Jun 2007 08:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EE03513C4BB for ; Fri, 8 Jun 2007 08:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58809Cx064517 for ; Fri, 8 Jun 2007 08:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58809Ia064516; Fri, 8 Jun 2007 08:00:09 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 08:00:09 GMT Resent-Message-Id: <200706080800.l58809Ia064516@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Southwell Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8306916A400 for ; Fri, 8 Jun 2007 07:50:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 5A75913C483 for ; Fri, 8 Jun 2007 07:50:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l587oRHK042217 for ; Fri, 8 Jun 2007 07:50:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l587oQui042212; Fri, 8 Jun 2007 07:50:27 GMT (envelope-from nobody) Message-Id: <200706080750.l587oQui042212@www.freebsd.org> Date: Fri, 8 Jun 2007 07:50:27 GMT From: David Southwell To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113473: graphics/graphviz compile error with portupgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 08:00:10 -0000 >Number: 113473 >Category: ports >Synopsis: graphics/graphviz compile error with portupgrade >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 08:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: David Southwell >Release: Freebsd 6.1 >Organization: Vizion Communications >Environment: FreeBSD dns1.vizion2000.net 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:15:57 UTC 2006 root@bloom.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP amd64 >Description:         then mv -f ".deps/gv_lua.Tpo" ".deps/gv_lua.Plo"; else rm -f ".deps/gv_lua.Tpo"; exit 1; fi   c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../lib/gvc -I../../lib/common -I../../lib/graph -I../../lib/cdt -I../../lib/pathplan -I/usr/local/lib/perl5/5.8.8/mach/CORE -I/usr/local/include/python2.4 -I/usr/local/lib/ruby/1.8/amd64-freebsd6 -I/usr/local/include/tcl8.4 -I/usr/local/include/tcl8.4/generic -I/usr/local/include -I/usr/local/include -I/usr/local/include/tcl8.4 -I/usr/local/include/tk8.4 -I/usr/local/include/php/Zend -I/usr/local/include/lua51 -I/usr/local/include -O2 -fno-strict-aliasing -pipe -MT gv_lua.lo -MD -MP -MF .deps/gv_lua.Tpo -c gv_lua.cpp  -fPIC -DPIC -o .libs/gv_lua.o In file included from gv_lua.cpp:711: /usr/include/malloc.h:3:2: #error " has been replaced by " gmake[3]: *** [gv_lua.lo] Error 1 gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.12/tclpkg/gv' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.12/tclpkg' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.12' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/graphics/graphviz. *** Error code 1 Stop in /usr/ports/graphics/graphviz. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.89319.49 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=graphviz-2.12_1 UPGRADE_PORT_VER=2.12_1 make ** Fix the problem and try again. ******************************** Is the file "gv_lua.cpp:711" being created on the fly by swig????? >How-To-Repeat: With graphviz-2.12_1 installed and an up to date ports run # portupgrade -a >Fix: Not known..but it looks as though the file causing the problem might be created on the fly by swig >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 08:00:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B77E816A481; Fri, 8 Jun 2007 08:00:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8EFC313C44B; Fri, 8 Jun 2007 08:00:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5880KKa064691; Fri, 8 Jun 2007 08:00:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5880Kbt064687; Fri, 8 Jun 2007 08:00:20 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 08:00:20 GMT From: Edwin Groothuis Message-Id: <200706080800.l5880Kbt064687@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113473: graphics/graphviz compile error with portupgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 08:00:20 -0000 Synopsis: graphics/graphviz compile error with portupgrade Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Jun 8 08:00:19 UTC 2007 Class-Changed-Why: Fix category (submitter is not maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113473 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 08:00:27 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A72F016A41F; Fri, 8 Jun 2007 08:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7F13613C45B; Fri, 8 Jun 2007 08:00:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5880RYh064803; Fri, 8 Jun 2007 08:00:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5880RfP064799; Fri, 8 Jun 2007 08:00:27 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 08:00:27 GMT From: Edwin Groothuis Message-Id: <200706080800.l5880RfP064799@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Cc: Subject: Re: ports/113473: graphics/graphviz compile error with portupgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 08:00:27 -0000 Synopsis: graphics/graphviz compile error with portupgrade Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 08:00:26 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113473 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 08:40:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A47AC16A41F for ; Fri, 8 Jun 2007 08:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4CC0013C447 for ; Fri, 8 Jun 2007 08:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l588e7cw068611 for ; Fri, 8 Jun 2007 08:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l588e6Ua068609; Fri, 8 Jun 2007 08:40:06 GMT (envelope-from gnats) Date: Fri, 8 Jun 2007 08:40:06 GMT Message-Id: <200706080840.l588e6Ua068609@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthias Fechner Cc: Subject: Re: ports/113423: Update for ports net/freenx to version 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Fechner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 08:40:07 -0000 The following reply was made to PR ports/113423; it has been noted by GNATS. From: Matthias Fechner To: bug-followup@FreeBSD.org, idefix@fechner.net Cc: Subject: Re: ports/113423: Update for ports net/freenx to version 0.6.0 Date: Fri, 08 Jun 2007 10:29:45 +0200 I have committed an update for nxserver, see: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/112887 Best regards, Matthias From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 08:40:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 664F716A468 for ; Fri, 8 Jun 2007 08:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2CBAE13C448 for ; Fri, 8 Jun 2007 08:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l588e863068635 for ; Fri, 8 Jun 2007 08:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l588e8xY068634; Fri, 8 Jun 2007 08:40:08 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 08:40:08 GMT Resent-Message-Id: <200706080840.l588e8xY068634@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Romain LE DISEZ Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B95A16A41F for ; Fri, 8 Jun 2007 08:38:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 5AC7A13C45E for ; Fri, 8 Jun 2007 08:38:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l588cUip090898 for ; Fri, 8 Jun 2007 08:38:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l588cUVR090897; Fri, 8 Jun 2007 08:38:30 GMT (envelope-from nobody) Message-Id: <200706080838.l588cUVR090897@www.freebsd.org> Date: Fri, 8 Jun 2007 08:38:30 GMT From: Romain LE DISEZ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113474: Ports/App depending of devel/boost broken in -CURRENT because of GCC 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 08:40:08 -0000 >Number: 113474 >Category: ports >Synopsis: Ports/App depending of devel/boost broken in -CURRENT because of GCC 4.2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 08:40:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Romain LE DISEZ >Release: 7.0-CURRENT >Organization: >Environment: FreeBSD romain.vannes.ledisez.net 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Mon Jun 4 10:10:48 CEST 2007 romain@romain.vannes.ledisez.net:/usr/obj/usr/src/sys/GENERIC_NODEBUG i386 >Description: Because of a bug in boost 1.33, it's not possible to compile an application depending of net/boost with GCC 4.2 which is the default now in -CURRENT. The bug is described here : http://svn.boost.org/trac/boost/ticket/779 >How-To-Repeat: Install devel/boost and try to compile an application that depend on it (eg: net-p2p/deluge). You get this error : In file included from /usr/local/include/boost/detail/atomic_count.hpp:97, from ./libtorrent/include/libtorrent/peer_connection.hpp:55, from ./libtorrent/include/libtorrent/alert_types.hpp:39, from src/deluge_core.cpp:40: /usr/local/include/boost/detail/atomic_count_gcc.hpp:20:28: error: bits/atomicity.h: No such file or directory >Fix: It seems it is fixed in boost 1.34. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 08:40:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E868C16A47C; Fri, 8 Jun 2007 08:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BFCB913C44C; Fri, 8 Jun 2007 08:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l588eEoS068758; Fri, 8 Jun 2007 08:40:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l588eEhk068754; Fri, 8 Jun 2007 08:40:14 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 08:40:14 GMT From: Edwin Groothuis Message-Id: <200706080840.l588eEhk068754@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, barner@FreeBSD.org Cc: Subject: Re: ports/113474: Ports/App depending of devel/boost broken in -CURRENT because of GCC 4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 08:40:15 -0000 Synopsis: Ports/App depending of devel/boost broken in -CURRENT because of GCC 4.2 Responsible-Changed-From-To: freebsd-ports-bugs->barner Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 08:40:14 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113474 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 09:00:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8438216A46B for ; Fri, 8 Jun 2007 09:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 666F913C4BC for ; Fri, 8 Jun 2007 09:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5890Cwe069707 for ; Fri, 8 Jun 2007 09:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5890CBx069706; Fri, 8 Jun 2007 09:00:12 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 09:00:12 GMT Resent-Message-Id: <200706080900.l5890CBx069706@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0790A16A41F for ; Fri, 8 Jun 2007 08:51:25 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id CD97313C465 for ; Fri, 8 Jun 2007 08:51:24 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id 0D4D55C1F; Fri, 8 Jun 2007 16:51:24 +0800 (CST) Message-Id: <20070608085124.0D4D55C1F@ccreader.NCTU.edu.tw> Date: Fri, 8 Jun 2007 16:51:24 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/113475: [NEW PORT] chinese/p5-Lingua-ZH-Segment: Chinese Text Segmentation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 09:00:12 -0000 >Number: 113475 >Category: ports >Synopsis: [NEW PORT] chinese/p5-Lingua-ZH-Segment: Chinese Text Segmentation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 09:00:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: This module currently only break chinese text into single character (Chinese word), it will not break up any alphabet. WWW: http://search.cpan.org/dist/Lingua-ZH-Segment/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Lingua-ZH-Segment-0.01.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Lingua-ZH-Segment # p5-Lingua-ZH-Segment/pkg-descr # p5-Lingua-ZH-Segment/Makefile # p5-Lingua-ZH-Segment/pkg-plist # p5-Lingua-ZH-Segment/distinfo # echo c - p5-Lingua-ZH-Segment mkdir -p p5-Lingua-ZH-Segment > /dev/null 2>&1 echo x - p5-Lingua-ZH-Segment/pkg-descr sed 's/^X//' >p5-Lingua-ZH-Segment/pkg-descr << 'END-of-p5-Lingua-ZH-Segment/pkg-descr' XThis module currently only break chinese text into single character X(Chinese word), it will not break up any alphabet. X XWWW: http://search.cpan.org/dist/Lingua-ZH-Segment/ END-of-p5-Lingua-ZH-Segment/pkg-descr echo x - p5-Lingua-ZH-Segment/Makefile sed 's/^X//' >p5-Lingua-ZH-Segment/Makefile << 'END-of-p5-Lingua-ZH-Segment/Makefile' X# New ports collection makefile for: p5-Lingua-ZH-Segment X# Date created: 2007-06-08 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= Lingua-ZH-Segment XPORTVERSION= 0.01 XCATEGORIES= chinese perl5 XMASTER_SITES= CPAN XMASTER_SITE_SUBDIR= Lingua XPKGNAMEPREFIX= p5- X XMAINTAINER= gslin@gslin.org XCOMMENT= Chinese Text Segmentation X XPERL_CONFIGURE= yes X XMAN3= Lingua::ZH::Segment.3 X X.include X X.if ${PERL_LEVEL} < 500801 XIGNORE= requires Perl 5.8.1 or newer. Install lang/perl5.8 and try again X.endif X X.include END-of-p5-Lingua-ZH-Segment/Makefile echo x - p5-Lingua-ZH-Segment/pkg-plist sed 's/^X//' >p5-Lingua-ZH-Segment/pkg-plist << 'END-of-p5-Lingua-ZH-Segment/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/ZH/Segment/.packlist X%%SITE_PERL%%/Lingua/ZH/Segment.pm X@dirrmtry %%SITE_PERL%%/Lingua/ZH X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/ZH/Segment X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/ZH END-of-p5-Lingua-ZH-Segment/pkg-plist echo x - p5-Lingua-ZH-Segment/distinfo sed 's/^X//' >p5-Lingua-ZH-Segment/distinfo << 'END-of-p5-Lingua-ZH-Segment/distinfo' XMD5 (Lingua-ZH-Segment-0.01.tar.gz) = 2d8328b3e274514125d00e89da4ebf8a XSHA256 (Lingua-ZH-Segment-0.01.tar.gz) = 9efc9f3c988959d8cd50dab4310a540776efcdd50485bf0bf84990363937ba3d XSIZE (Lingua-ZH-Segment-0.01.tar.gz) = 8238 END-of-p5-Lingua-ZH-Segment/distinfo exit --- p5-Lingua-ZH-Segment-0.01.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 09:00:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44D1716A46C; Fri, 8 Jun 2007 09:00:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1C9F513C487; Fri, 8 Jun 2007 09:00:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5890JCS069879; Fri, 8 Jun 2007 09:00:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5890Jp7069875; Fri, 8 Jun 2007 09:00:19 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 09:00:19 GMT From: Edwin Groothuis Message-Id: <200706080900.l5890Jp7069875@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113475: [NEW PORT] chinese/p5-Lingua-ZH-Segment: Chinese Text Segmentation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 09:00:20 -0000 Synopsis: [NEW PORT] chinese/p5-Lingua-ZH-Segment: Chinese Text Segmentation Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 09:00:19 UTC 2007 Responsible-Changed-Why: clsung@ wants his PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113475 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 09:48:25 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CE1016A469; Fri, 8 Jun 2007 09:48:25 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.freebsd.org (Postfix) with ESMTP id EC68C13C448; Fri, 8 Jun 2007 09:48:24 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id E9C8B17050; Fri, 8 Jun 2007 18:48:23 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 9C94332; Fri, 8 Jun 2007 18:48:23 +0900 (JST) Received: from localhost (half.home.utahime.org [192.168.174.3]) by eastasia.home.utahime.org (Postfix) with ESMTP id 47F6420; Fri, 8 Jun 2007 18:48:23 +0900 (JST) Date: Fri, 08 Jun 2007 18:48:13 +0900 (LDT) Message-Id: <20070608.184813.105487595.yasu@utahime.org> To: nobutaka@FreeBSD.org From: KIMURA Yasuhiro In-Reply-To: <200705201730.l4KHU47U003451@freefall.freebsd.org> References: <20070520172952.1069B20@eastasia.home.utahime.org> <200705201730.l4KHU47U003451@freefall.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.4 / Mule 5.0 =?iso-2022-jp?B?KBskQjgtTFobKEIp?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/112814: [PATCH] x11/mlterm: Chase shlib version bump of libscim-1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 09:48:25 -0000 Hello. Would you please commit this PR? Regards. --- KIMURA Yasuhiro From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 09:50:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86E5516A41F for ; Fri, 8 Jun 2007 09:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 64AC613C45A for ; Fri, 8 Jun 2007 09:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l589o2MN073321 for ; Fri, 8 Jun 2007 09:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l589o2XT073320; Fri, 8 Jun 2007 09:50:02 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 09:50:02 GMT Resent-Message-Id: <200706080950.l589o2XT073320@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A87B916A421 for ; Fri, 8 Jun 2007 09:43:18 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id 4B06413C455 for ; Fri, 8 Jun 2007 09:43:18 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id 7CB975C1F; Fri, 8 Jun 2007 17:43:17 +0800 (CST) Message-Id: <20070608094317.7CB975C1F@ccreader.NCTU.edu.tw> Date: Fri, 8 Jun 2007 17:43:17 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/113476: [NEW PORT] chinese/p5-Lingua-ZH-WordSegmenter: Simplified Chinese Word Segmentation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 09:50:02 -0000 >Number: 113476 >Category: ports >Synopsis: [NEW PORT] chinese/p5-Lingua-ZH-WordSegmenter: Simplified Chinese Word Segmentation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 09:50:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: This is a perl version of simplified Chinese word segmentation. The algorithm for this segmenter is to search the longest word at each point from both left and right directions, and choose the one with higher frequency product. The original program is from the CPAN module Lingua::ZH::WordSegment (http://search.cpan.org/~chenyr/) I did the follwing changes: 1) make the interface object oriented; 2) make the internal string into utf8; 3) using sogou's dictionary (http://www.sogou.com/labs/dl/w.html) as the default dictionary. WWW: http://search.cpan.org/dist/Lingua-ZH-WordSegmenter/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Lingua-ZH-WordSegmenter-0.01.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Lingua-ZH-WordSegmenter # p5-Lingua-ZH-WordSegmenter/pkg-descr # p5-Lingua-ZH-WordSegmenter/Makefile # p5-Lingua-ZH-WordSegmenter/pkg-plist # p5-Lingua-ZH-WordSegmenter/distinfo # echo c - p5-Lingua-ZH-WordSegmenter mkdir -p p5-Lingua-ZH-WordSegmenter > /dev/null 2>&1 echo x - p5-Lingua-ZH-WordSegmenter/pkg-descr sed 's/^X//' >p5-Lingua-ZH-WordSegmenter/pkg-descr << 'END-of-p5-Lingua-ZH-WordSegmenter/pkg-descr' XThis is a perl version of simplified Chinese word segmentation. X XThe algorithm for this segmenter is to search the longest word at each Xpoint from both left and right directions, and choose the one with Xhigher frequency product. X XThe original program is from the CPAN module Lingua::ZH::WordSegment X(http://search.cpan.org/~chenyr/) I did the follwing changes: 1) make Xthe interface object oriented; 2) make the internal string into utf8; X3) using sogou's dictionary (http://www.sogou.com/labs/dl/w.html) as Xthe default dictionary. X XWWW: http://search.cpan.org/dist/Lingua-ZH-WordSegmenter/ END-of-p5-Lingua-ZH-WordSegmenter/pkg-descr echo x - p5-Lingua-ZH-WordSegmenter/Makefile sed 's/^X//' >p5-Lingua-ZH-WordSegmenter/Makefile << 'END-of-p5-Lingua-ZH-WordSegmenter/Makefile' X# New ports collection makefile for: p5-Lingua-ZH-WordSegmenter X# Date created: 2007-06-08 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= Lingua-ZH-WordSegmenter XPORTVERSION= 0.01 XCATEGORIES= chinese perl5 XMASTER_SITES= CPAN XMASTER_SITE_SUBDIR= Lingua XPKGNAMEPREFIX= p5- X XMAINTAINER= gslin@gslin.org XCOMMENT= Simplified Chinese Word Segmentation X XPERL_CONFIGURE= yes X XMAN3= Lingua::ZH::WordSegmenter.3 X X.include END-of-p5-Lingua-ZH-WordSegmenter/Makefile echo x - p5-Lingua-ZH-WordSegmenter/pkg-plist sed 's/^X//' >p5-Lingua-ZH-WordSegmenter/pkg-plist << 'END-of-p5-Lingua-ZH-WordSegmenter/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/ZH/WordSegmenter/.packlist X%%SITE_PERL%%/Lingua/ZH/WordSegmenter.pm X@dirrmtry %%SITE_PERL%%/Lingua/ZH X@dirrmtry %%SITE_PERL%%/Lingua X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/ZH/WordSegmenter X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/ZH X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua END-of-p5-Lingua-ZH-WordSegmenter/pkg-plist echo x - p5-Lingua-ZH-WordSegmenter/distinfo sed 's/^X//' >p5-Lingua-ZH-WordSegmenter/distinfo << 'END-of-p5-Lingua-ZH-WordSegmenter/distinfo' XMD5 (Lingua-ZH-WordSegmenter-0.01.tar.gz) = 033dca8be176cd507c0b7f193ad372f1 XSHA256 (Lingua-ZH-WordSegmenter-0.01.tar.gz) = 8be1f370f3c65b933e0e0b8ca1d2d6267a5fd121d25903bdd388ed8be9d9a932 XSIZE (Lingua-ZH-WordSegmenter-0.01.tar.gz) = 1227001 END-of-p5-Lingua-ZH-WordSegmenter/distinfo exit --- p5-Lingua-ZH-WordSegmenter-0.01.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 09:50:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17B1616A468; Fri, 8 Jun 2007 09:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E27A213C46A; Fri, 8 Jun 2007 09:50:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l589oD0J073497; Fri, 8 Jun 2007 09:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l589oDfC073493; Fri, 8 Jun 2007 09:50:13 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 09:50:13 GMT From: Edwin Groothuis Message-Id: <200706080950.l589oDfC073493@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113476: [NEW PORT] chinese/p5-Lingua-ZH-WordSegmenter: Simplified Chinese Word Segmentation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 09:50:14 -0000 Synopsis: [NEW PORT] chinese/p5-Lingua-ZH-WordSegmenter: Simplified Chinese Word Segmentation Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 09:50:11 UTC 2007 Responsible-Changed-Why: clsung@ wants his PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113476 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 11:10:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 349C416A473 for ; Fri, 8 Jun 2007 11:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 13D4C13C458 for ; Fri, 8 Jun 2007 11:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58BA1N0078624 for ; Fri, 8 Jun 2007 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58BA1sp078623; Fri, 8 Jun 2007 11:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 11:10:01 GMT Resent-Message-Id: <200706081110.l58BA1sp078623@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anton Berezin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 945E416A41F for ; Fri, 8 Jun 2007 11:00:50 +0000 (UTC) (envelope-from tobez@tobez.org) Received: from heechee.tobez.org (heechee.tobez.org [194.255.56.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0169413C447 for ; Fri, 8 Jun 2007 11:00:49 +0000 (UTC) (envelope-from tobez@tobez.org) Received: by heechee.tobez.org (Postfix, from userid 1001) id E2BD112542E; Fri, 8 Jun 2007 12:45:13 +0200 (CEST) Message-Id: <20070608104513.E2BD112542E@heechee.tobez.org> Date: Fri, 8 Jun 2007 12:45:13 +0200 (CEST) From: Anton Berezin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113477: [PATCH] add support for FTS2 in sqlite3 3.3.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anton Berezin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 11:10:02 -0000 >Number: 113477 >Category: ports >Synopsis: [PATCH] add support for FTS2 in sqlite3 3.3.17 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 11:10:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Anton Berezin >Release: FreeBSD 6.2-STABLE amd64 >Organization: >Environment: >Description: While FTS2 is marked as subject to change in sqlite3, FTS1 is marked "experimental". Yet FTS1 is available in the FreeBSD port, and FTS2 is not. This PR is here to fix this horrible injustice. :-P >How-To-Repeat: >Fix: *** Please note new files *** files/fts12_patch-Makefile.in files/fts2_patch-Makefile.in files/patch-ext__fts2__fts2.c files/patch-ext__fts2__fts2_porter.c files/patch-ext__fts2__fts2_tokenizer1.c Here's the diff. diff -u --show-c-function -ruN ../sqlite3/Makefile ./Makefile --- ../sqlite3/Makefile Mon May 28 20:21:27 2007 +++ ./Makefile Fri Jun 8 12:39:35 2007 @@ -7,6 +7,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.3.17 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/ .if defined(USE_THOL) @@ -31,6 +32,7 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH OPTIONS= DEBUG "Enable debugging & verbose explain" off \ DOCS "Building docs (depends on TCL)" on \ FTS1 "Enable FTS1 (Full Text Search) module" off \ + FTS2 "Enable FTS2 (Full Text Search) module" off \ TCLWRAPPER "TCL wrapper for SQLITE" off # Defaults, for building the docs: @@ -62,7 +64,19 @@ PORTDOCS= * .if defined(WITH_FTS1) CFLAGS+= -DSQLITE_ENABLE_FTS1 +.if defined(WITH_FTS2) +EXTRA_PATCHES= ${FILESDIR}/fts12_patch-Makefile.in +.else EXTRA_PATCHES= ${FILESDIR}/fts1_patch-Makefile.in +.endif +.else +.if defined(WITH_FTS2) +EXTRA_PATCHES= ${FILESDIR}/fts2_patch-Makefile.in +.endif +.endif + +.if defined(WITH_FTS2) +CFLAGS+= -DSQLITE_ENABLE_FTS2 .endif .if defined(WITH_TCLWRAPPER) diff -u --show-c-function -ruN ../sqlite3/files/fts12_patch-Makefile.in ./files/fts12_patch-Makefile.in --- ../sqlite3/files/fts12_patch-Makefile.in Thu Jan 1 01:00:00 1970 +++ ./files/fts12_patch-Makefile.in Fri Jun 8 12:37:57 2007 @@ -0,0 +1,71 @@ +--- Makefile.in Fri Jun 8 12:21:29 2007 ++++ /tmp/Makefile.in Fri Jun 8 12:19:53 2007 +@@ -128,7 +128,9 @@ LIBOBJ = alter.lo analyze.lo attach.lo a + select.lo table.lo tokenize.lo trigger.lo update.lo \ + util.lo vacuum.lo \ + vdbe.lo vdbeapi.lo vdbeaux.lo vdbefifo.lo vdbemem.lo \ +- where.lo utf.lo legacy.lo vtab.lo ++ where.lo utf.lo legacy.lo vtab.lo \ ++ fts1.lo fts1_hash.lo fts1_porter.lo fts1_tokenizer1.lo \ ++ fts2.lo fts2_hash.lo fts2_porter.lo fts2_tokenizer1.lo + + # All of the source code files. + # +@@ -196,6 +198,14 @@ SRC += \ + $(TOP)/ext/fts1/fts1_tokenizer.h \ + $(TOP)/ext/fts1/fts1_tokenizer1.c + ++SRC += \ ++ $(TOP)/ext/fts2/fts2.c \ ++ $(TOP)/ext/fts2/fts2.h \ ++ $(TOP)/ext/fts2/fts2_hash.c \ ++ $(TOP)/ext/fts2/fts2_hash.h \ ++ $(TOP)/ext/fts2/fts2_porter.c \ ++ $(TOP)/ext/fts2/fts2_tokenizer.h \ ++ $(TOP)/ext/fts2/fts2_tokenizer1.c + + # Source code to the test files. + # +@@ -254,6 +264,11 @@ HDR += \ + $(TOP)/ext/fts1/fts1_hash.h \ + $(TOP)/ext/fts1/fts1_tokenizer.h + ++HDR += \ ++ $(TOP)/ext/fts2/fts2.h \ ++ $(TOP)/ext/fts2/fts2_hash.h \ ++ $(TOP)/ext/fts2/fts2_tokenizer.h ++ + # Header files used by the VDBE submodule + # + VDBEHDR = \ +@@ -468,6 +483,30 @@ vtab.lo: $(TOP)/src/vtab.c $(VDBEHDR) + + where.lo: $(TOP)/src/where.c $(HDR) + $(LTCOMPILE) -c $(TOP)/src/where.c ++ ++fts1.lo: $(TOP)/ext/fts1/fts1.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1.c ++ ++fts1_hash.lo: $(TOP)/ext/fts1/fts1_hash.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1_hash.c ++ ++fts1_porter.lo: $(TOP)/ext/fts1/fts1_porter.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1_porter.c ++ ++fts1_tokenizer1.lo: $(TOP)/ext/fts1/fts1_tokenizer1.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1_tokenizer1.c ++ ++fts2.lo: $(TOP)/ext/fts2/fts2.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2.c ++ ++fts2_hash.lo: $(TOP)/ext/fts2/fts2_hash.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_hash.c ++ ++fts2_porter.lo: $(TOP)/ext/fts2/fts2_porter.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_porter.c ++ ++fts2_tokenizer1.lo: $(TOP)/ext/fts2/fts2_tokenizer1.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_tokenizer1.c + + tclsqlite-shell.lo: $(TOP)/src/tclsqlite.c $(HDR) + $(LTCOMPILE) -DTCLSH=1 -o $@ -c $(TOP)/src/tclsqlite.c diff -u --show-c-function -ruN ../sqlite3/files/fts2_patch-Makefile.in ./files/fts2_patch-Makefile.in --- ../sqlite3/files/fts2_patch-Makefile.in Thu Jan 1 01:00:00 1970 +++ ./files/fts2_patch-Makefile.in Fri Jun 8 12:37:57 2007 @@ -0,0 +1,58 @@ +--- Makefile.in.x Fri Jun 8 12:22:54 2007 ++++ Makefile.in Fri Jun 8 12:24:03 2007 +@@ -128,7 +128,8 @@ LIBOBJ = alter.lo analyze.lo attach.lo a + select.lo table.lo tokenize.lo trigger.lo update.lo \ + util.lo vacuum.lo \ + vdbe.lo vdbeapi.lo vdbeaux.lo vdbefifo.lo vdbemem.lo \ +- where.lo utf.lo legacy.lo vtab.lo ++ where.lo utf.lo legacy.lo vtab.lo \ ++ fts2.lo fts2_hash.lo fts2_porter.lo fts2_tokenizer1.lo + + # All of the source code files. + # +@@ -196,6 +197,14 @@ SRC += \ + $(TOP)/ext/fts1/fts1_tokenizer.h \ + $(TOP)/ext/fts1/fts1_tokenizer1.c + ++SRC += \ ++ $(TOP)/ext/fts2/fts2.c \ ++ $(TOP)/ext/fts2/fts2.h \ ++ $(TOP)/ext/fts2/fts2_hash.c \ ++ $(TOP)/ext/fts2/fts2_hash.h \ ++ $(TOP)/ext/fts2/fts2_porter.c \ ++ $(TOP)/ext/fts2/fts2_tokenizer.h \ ++ $(TOP)/ext/fts2/fts2_tokenizer1.c + + # Source code to the test files. + # +@@ -254,6 +263,11 @@ HDR += \ + $(TOP)/ext/fts1/fts1_hash.h \ + $(TOP)/ext/fts1/fts1_tokenizer.h + ++HDR += \ ++ $(TOP)/ext/fts2/fts2.h \ ++ $(TOP)/ext/fts2/fts2_hash.h \ ++ $(TOP)/ext/fts2/fts2_tokenizer.h ++ + # Header files used by the VDBE submodule + # + VDBEHDR = \ +@@ -468,6 +482,18 @@ vtab.lo: $(TOP)/src/vtab.c $(VDBEHDR) + + where.lo: $(TOP)/src/where.c $(HDR) + $(LTCOMPILE) -c $(TOP)/src/where.c ++ ++fts2.lo: $(TOP)/ext/fts2/fts2.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2.c ++ ++fts2_hash.lo: $(TOP)/ext/fts2/fts2_hash.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_hash.c ++ ++fts2_porter.lo: $(TOP)/ext/fts2/fts2_porter.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_porter.c ++ ++fts2_tokenizer1.lo: $(TOP)/ext/fts2/fts2_tokenizer1.c $(HDR) ++ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_tokenizer1.c + + tclsqlite-shell.lo: $(TOP)/src/tclsqlite.c $(HDR) + $(LTCOMPILE) -DTCLSH=1 -o $@ -c $(TOP)/src/tclsqlite.c diff -u --show-c-function -ruN ../sqlite3/files/patch-ext__fts2__fts2.c ./files/patch-ext__fts2__fts2.c --- ../sqlite3/files/patch-ext__fts2__fts2.c Thu Jan 1 01:00:00 1970 +++ ./files/patch-ext__fts2__fts2.c Fri Jun 8 12:37:57 2007 @@ -0,0 +1,12 @@ +--- ext/fts2/fts2.c.orig Fri Jun 8 12:31:37 2007 ++++ ext/fts2/fts2.c Fri Jun 8 12:32:16 2007 +@@ -269,9 +269,6 @@ + #endif + + #include +-#if !defined(__APPLE__) +-#include +-#endif + #include + #include + #include diff -u --show-c-function -ruN ../sqlite3/files/patch-ext__fts2__fts2_porter.c ./files/patch-ext__fts2__fts2_porter.c --- ../sqlite3/files/patch-ext__fts2__fts2_porter.c Thu Jan 1 01:00:00 1970 +++ ./files/patch-ext__fts2__fts2_porter.c Fri Jun 8 12:37:57 2007 @@ -0,0 +1,14 @@ +--- ext/fts2/fts2_porter.c.orig Fri Jun 8 12:31:44 2007 ++++ ext/fts2/fts2_porter.c Fri Jun 8 12:32:21 2007 +@@ -26,11 +26,7 @@ + + + #include +-#if !defined(__APPLE__) +-#include +-#else + #include +-#endif + #include + #include + #include diff -u --show-c-function -ruN ../sqlite3/files/patch-ext__fts2__fts2_tokenizer1.c ./files/patch-ext__fts2__fts2_tokenizer1.c --- ../sqlite3/files/patch-ext__fts2__fts2_tokenizer1.c Thu Jan 1 01:00:00 1970 +++ ./files/patch-ext__fts2__fts2_tokenizer1.c Fri Jun 8 12:37:57 2007 @@ -0,0 +1,14 @@ +--- ext/fts2/fts2_tokenizer1.c.orig Fri Jun 8 12:31:51 2007 ++++ ext/fts2/fts2_tokenizer1.c Fri Jun 8 12:32:26 2007 +@@ -18,11 +18,7 @@ + + + #include +-#if !defined(__APPLE__) +-#include +-#else + #include +-#endif + #include + #include + #include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 11:42:51 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9AD0F16A475; Fri, 8 Jun 2007 11:42:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 71D8013C4F4; Fri, 8 Jun 2007 11:42:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58Bgp0R081718; Fri, 8 Jun 2007 11:42:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58Bgped081714; Fri, 8 Jun 2007 11:42:51 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 11:42:51 GMT From: Edwin Groothuis Message-Id: <200706081142.l58Bgped081714@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mnag@FreeBSD.org Cc: Subject: Re: ports/113477: [PATCH] add support for FTS2 in databases/sqlite3 3.3.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 11:42:51 -0000 Synopsis: [PATCH] add support for FTS2 in databases/sqlite3 3.3.17 Responsible-Changed-From-To: freebsd-ports-bugs->mnag Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 11:42:50 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113477 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 07:40:01 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BB1F16A468 for ; Fri, 8 Jun 2007 07:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 59FBE13C469 for ; Fri, 8 Jun 2007 07:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l587e1Qn063515 for ; Fri, 8 Jun 2007 07:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l587e1fc063514; Fri, 8 Jun 2007 07:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 07:40:01 GMT Resent-Message-Id: <200706080740.l587e1fc063514@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Artem V. Kropachev" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B9CD16A400 for ; Fri, 8 Jun 2007 07:35:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 8217C13C46E for ; Fri, 8 Jun 2007 07:35:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l587Z42f028215 for ; Fri, 8 Jun 2007 07:35:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l587Z4Jq028214; Fri, 8 Jun 2007 07:35:04 GMT (envelope-from nobody) Message-Id: <200706080735.l587Z4Jq028214@www.freebsd.org> Date: Fri, 8 Jun 2007 07:35:04 GMT From: "Artem V. Kropachev" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 X-Mailman-Approved-At: Fri, 08 Jun 2007 11:56:37 +0000 Cc: Subject: ports/113471: [MAINTAINER] update games/mangos to 3838 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 07:40:01 -0000 >Number: 113471 >Category: ports >Synopsis: [MAINTAINER] update games/mangos to 3838 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 07:40:00 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Artem V. Kropachev >Release: >Organization: Home >Environment: >Description: [MAINTAINER] update games/mangos to 3838 >How-To-Repeat: >Fix: Patch attached with submission follows: begin 644 mangos-port.tar.gz M'XL(`)<%:48``^U=;5?C.++>K^17Z-#=NS"0X'ZSYR[NAF#IJ9)4*E65),>:T'`<)7_Z MJI>B*+9I$OA4;5/#3[P6G]F-JEBZIMJV;6E$47554_]$S*];K>R:)2F-H2HL M2&:WT=VSN/L;QH(']?S3R`_;5M$"R_S7;5A5#U:'_#4U] M[?]OK`5RD#Y&$9QK/];]J:P<<_Y%J&8F+_`_Y/1/DJM7ET_9?W M_QMRR>[)-(K3A+A1$#`W]:.03.;Z0$91?$P(R=2D](:,G3IG;^&NU+WJ]2_KG>;)SIPG)GQL M]IS6U>7)CE[5JZ5&O=^\N.JUFL[)SIA.6%+JU)U^LS=P6GU,NTG3Z?'1449? MQKI7A@^5>'9$_K>TL\C%TBLWC-ZQ,&0IYLY5O03<6I=]^&GV3K#V.P@=N`\Q M^_Q^0OT`L*7&5:?3O.R?[B<<\W\46EQ,6W[$8I4(^17'@D6A$/D'38SI* M2Z6K;A]:X9PLY.(T>JUN_ZSY4=O9==S8GZ9G[$[;W0$!8TT;[=;.SFXCFD#- M/-+V0T9::=.Z6I>X/(4JGB MAVXP\QCYZS#Q*ES0TYA5)K=_*Y56;>LU/Y[LF$;IK.7TSUMMZ*&WORUZ^4LY M^WO>P5\J,-@JXU^!\PBD.H(F>WN?6OT/@Q6[_1**;LGLX(2L1`?<-LI=\6.A MYX]*3_E"VY\RG&N.-W2UQPRNG>:@?MV_ZE]=M;$CJ1M$+@V.U1H)_&$:18'_ M*R-TED9N%(Z.-4OE-Z!H'HN7MSA\UDB.5;-4;[2O&O7VH-Z[X`I2;I&WO_&D MT[K3_'*4W-"8'MRXR="F[N>XM.);+T),C_S/V5:]YWOH1*,O) M0X*M\OQXE7S$4A>R/)K2S71>X2T2?]R3S1_[O?J@6^\W/G#5X)UPUNI].5KU M:X4KW?.]N-37+2P/-G@N]5C$$@9?QFQ3,@W41>4R7U-,H M2A66T1FB"DO+2+J&* MN1[P7ZDNE.3T&E_(G_\,R4ZSW[SD"K@TA(.U!#1+ZW]SO?^R+]3J/[Q(\HQ6 M+X/9I7J7O*@\G/F!MVK[Z76K?;:HQ/<;5>`EK/V]3.-F=G&')F>9D]4'*MAN M#_IPT^S+"F2C'L^-TZ]4OY5P_"Q26(FG=>GT$?Q,+_T;55AP+B:F1_5Y3E!? MM9ZY(<86LPWA!=D^O#%KO]1M0T@R<*Y/#TXP8#O9W84R@H0]S7CO0HS(PI3L MKM7B:6@&3H;'9D7B_T6%()CTPU'T5>88@OF?JBKZ:OZG\OF?K6NO\[]O<77. M3+(WCX=Q\C6/A_?)":D9KF4--<-U546#GQKS;+=J*=0;*;:NZB7G0UTSK>?( MJR`&3Z,CF!-:J@L<:,USJ]36O)%&%&3:M,4YAEN=[0,(9,9Z9JJJIM M,=JHYED*M-/T;*4V;\.S[`U+->=M>#HGR5J@F2!(HVI6O>%(J^K0!YYN0V.& M\,_P'O?!(_+:R/84UU#U*J55=6B`@.VJZ5&]:M=M4:5-8UH6-J MIJE8IJ>HG@U=PI3-/GC$W%`5NVK8A;7_W^+J4)R-D+WTAI$.31+_CI%+EMY'\2VYH!-&KH;_ M9&Y*'+[PM4_\A-"07$U92)QH%KN,Q&S$8A:ZK.1/I@'#."5;E<)%,DHZG:M> M]X+,%\X2/E&JD&[`:,(@E1$LF2\U-JZZ_VA=7B!=*?!=%B:X\I92/T@JI=*G M3Y^.R7QM[_[^OI(I[C2.L'J5*!X?O1JB%UQKXW\:0!#X-K1B`J-U>`0_/_5O(-6K MT,<)P9.4)'J:4M$6:5EA"8^:5MPV4H/MR2N^CY(K2NG=.UQR@:G9NW='R;^" MHVP78S!Y@)L*_#P!>'$TS'+C97L'V0C>0X=0=1%.TPR)L=:T6?G@'YCN*'P1$56N`&S.#>Y#@#8OS MT9I2Y=5)8PJ39A$8I.*#BQC`SS3`==Q\N*4-*/9C[(_'T("4@I<1-!EI>.W' M,:`?:"SH**VJ#:`J#RS.-`;GR<4I>*L$9#5M$$11*MEV7=?6NNY?,Y:D8,O2 MF4`[=-TJ(F%=KVU(V/53@7;HQB8%*%44W#$O9@$5*R12%QD6FWA)!>9$6,59 MS&3E`"2H-1&/AV2)S$*R-E2U$-RPLVZ7Q5OF@"^##C+[-/"&8H*YE2Q`,8VF MLZ`(C6T6ZG$3I#3OA6*JM4;(Q29)I5G9'`>IE@6@KJE6E;"[,N`-9, M/JQDS9:EJ)F9HYX7A0*C8*GFQIB5+4-?ZSH!U%H?I\F4!=N]ZHK`M@J9Z24^ M98%`YE;5+F)H;<4H,BSM6JW0L*QJ9E9Q-XJGB0AL2JI+U3(E@55%%J@7:E<- M=*J`E&NZ9(5K:+PE1%4S]:=>.+GU18JWG4ZLL#7)KM%@&E1$D)JBZY*,#17L M)W^"YR::)6PP]"4HN.Z)V[?"IC0`)RL"%VRC:4BV$0-6*:!E%;3%0%)HY&J* M79.L"Y@$V1!84Q5;CJNJ2NH%!.POT6B@DVR?JBN%!*?JJB1C'%-2#D93+4D- M`L-4H#,`7"CXUS1-SIYJ6LU>]X@I/C223Z$KBWG%(&!W+)A-Q]"$?-<.1.LS MO"D3#%P=NI(';K@:)(`:^N;D2ZKO=5,KI"NZ:3]57NH*`S<@E-1>W5**6@K] M\;Q3DDIR9.M6T?F)IMO*"V:#0%8T8M5TF-WB<\8Q M#2-:,(Q-<+X"!<2\BB/6U%0'4+C8,S>)VQ[2KTK6I*D6@X$-I&HJ*KQKR M/(T!?Z0J=$5,:R]T;EL)Q=9U*UG,IK-4O!*RG5@\H7J&3AQ^FK6G86L^A:68 MBU4GZKK13#1+L51I/;%4^_'Z!1B)*/"B>X'8+$V3+D33UIR3&`LA;)CP+V\( ML+JD1;-PJOFR5NIV`?N&:/Y=BWR4(3E-L(PB*^<`EXP,+4M6;I;D5,RR93G: M1B&#BOALMTND"V#P9-<%`6S(*V2U8(VKDC$%`M>G/1C7"NM=V'14:X4+6.H]E4,"ZJFG1T5]6K\P5@F!>)5C@Y>!%HRL'7IH<2!$8Q ML1MZ(;@IZ2ZJEJ1+J]JF_.H7@N=!P`W`!>"J6@0LNW.DU=27K+745.F5PQKT M>59Q*0=:,Y07A<$UV95K!,K5Q"Q6\:JDQ:W5Y(R3KBBF`*`6>9Q#QYT1Z2!2 M5R176G5%U^2'=-F]"P#6N,V5##!T17+515=L4[:!MBD;T.E*35:^ MM:(+J)Q$/F('^,*V3./(';`[T0844!1:9@:\5;`$59&+G737["0J`LN"C(:0M8#]58*$F*SQ2*NL^0'+6JI`_6 M5>LE#V1E9++\"_67+=M"N]"^IZ["%++@6*E*>A1\M%`*J"GKPA[[(Y$QU12S MN/9J>J%E35TSS(7&?A:(!*'"B0I'3>F823%LA@*=Y,C0C1?M M]NNZK)W3466DYS"ZCOO19\`\<71@0PM-J+IO$UNGR\J:@B@+YB.(GN^%=T!"0;:PD%EH&!TI"P:K@9 M5G!0FI(/00&PNKEU-DC\L:C6>JU(H&$:9F&)&O8+C+-IZB]6;FO5@F&K+;EO!D!M MSIJ.1L*)M:WSAQUN<3HTBF(9;V0;1:>GMB$I<5M6CVQ0C2%-TX!AA4-/LNMM M2R\B&ZMP0VVU:'QAVX(@S;9?%J39DDML`)2,+G`#HI@\JHH*W136)3;`.5:J M&E6%+\*&%"1,)P*CC&`("WUT4D*H6;AYEC1S?=MNV`Y>SQ+UFO6S3A.S3QOO MWJVCO*%[5`_]"?>]9S2E%4AY%@AJT[UJB2!]_M"G")0M?.?"TI2ZMUB['WSP M\E+(_L.4Y4/7-]UR<*(TF[LN_E,3[D!F=`$S'4;'S'-P3;`4X#]>,+%B4L7^X+:!_F M\6"HA%@G>Q.G&)="D'LU2T=^OB@!VO=!\D*&'VGL4ZFBN=A93(=^``K3B)+\H;B"_GU&`X&*-?&%J[GL,@2. M:SF42#HK))=\+C2\\^,HY._<`*E/Z#A7GLW/-W26\*EC#NI\_ORA&'+!XU8Q MKK_POGG0*$JGL1^F,@82P>!`IGT6XS9VIAYY!!<=9Q;?L8?&+(8@)LUN9`C^ MCN&#R!@NP-EO`;3ON[OU*/TQ_R[?L**VEHD(!''_G5192? M/_(NV`2,]93%J<#Y7O!90Y-/`LZBR*.YNKV.GNM$'OP#"R8LS1SQ1S\1#;(6 M1(00LXA-)@*YCQ&!).6.4+#H+/28AY9*A.5CC!L"80VZ+(6!D2M4A/4@V(\D MNVR%=V:CD?]9A'68L$'.;"@ESP6N0Y-;$18Z'"QYIBM"QADX%]8^OSB;A6,F M&/=M&HYG8',_17%^[RR`^2!_?),K/0XX#R*:GM)\O\"1K5`.UX5(;B*NF7/[ M,(QR%:#M_VOF>R*GWHXHOK;3@8DU"_OTL^],`XBH\BNP3B-`NKG:@OFB&G:H M'\BXK`[-]3D=((=0.LC#7'8;XK%]"4;X@N4Z9(0D4B$S1_88?Q]7KFYT89HH MB">ZD(^F6::E70KFYBP*`AR"YZ!Q^9Q9VHX>:)#?%D!U69Q$H3"*Z\X7#$1= MS]V]R(1SD(.O7,T!H=5$&]N-(*;)[5[H##][MC07EKV!K<.21&1(G!O^6AZN M6!*1LX.+K#QH%CE-CL1S"J1`]2S&EL+*A$,(V(W0V?Z!9!,S*EEUJXB3GD3M+ MLFA;B&VY$G7@02%_0BKE6XD%\8TH]'RIQG88?PS+%0/])/$#UHFDV/;`/<_$ M<@.;F.]0.`HZ83EMQ)!7?!;,AADEHO+U@5$AF(-)H["^A'.!"7,6G_QI;SE9D$>^KHEZZ>O M(;0[#003O"6HS??\\Z`?P45%'VCLW=/\J?5'/))F7L]YP`<+"6B\:W6$)DCA61P8'M3"$`R=?R!?@*(C"8X\M`N1:, MP(#EMPW1#ATQF)=(`&%TL^O<3:5/T7TSCJ-8QEC\!(8")HEQU)DEOBOL-81S M9!YHS!?X7=:/.BQ@K!'GV\\M<-QWD2/)X@?I$I9PB1*BR9"F/1B\`A&.TZM& MO\?&+/S0E<-U!+@Y,YC7.%-!P^;\UJ#O/3^.)V0=NK:W^4SVMN3MS%[?L/S_ M[EH___/)@5Q_4!F"][_KNJ4\>O^[K2NOYW]\DZM<+I/U0Z069R=5Z*1T<'#P M;-[[]Z2LZX=5:WA+^+NEB4?9)`H) MY5^33OF;W[,#M/"@O)C&#Z5R5M8@>Q?UH'U6/SLC)Z1269WV,PM]\,()#;:\ M$QJ!^'3?*@OO*CQ]?E37,@=,(AVB)]B:ZV9G>6W-HS.(4K?F9/?;\\+LK?I9 MY@@7P/!VE;],RA#PWV-3?M#1K_SK+-ZC-VH_$14_TPB$56YO)<_2MXB1O-WC MYPH.VJU39Q]@;_>@)##^^Y#S$R3B9^.JTZWWYS>.T^9_E=EGC'/+WD-()[Y; M.A#WWMHQ7?_=W?=$5L6Z;TV.?US_90.V[F6+"33(3@TE:406ITV!%0Q)/..O M=R)_P>/D"!X=]1<@)*2U`*T/]JPGYHLQ)30WBQ3H.I?;F(T$-"QJ33VTR0%^ MJ`JW+7!MLT1/,C9>4[_(7`IM259^G+,:#4O,P6/,EA/F4D#K^>/GVT0 ME,C/^_-..?,3M*H>60"20S*#F4N`5O2!@*X2U)*'^:D;R^D>5(8K_3,/FY[^;EF+9AH+QGZ:_GO_S3:Z%4>!NEP=P$+@M MC,%&(C<"FG)H@16`#WMAEPF>RSNH7S?P[.M!O]5I'FY)/VMVKYQ6?UM6XQJ2 M#Y;)_*S?=5RG==FZO!C4.U?7E_TM&9?-'Q?)G?J/`\QR2H_CVL>'HSZ.;1_G M8VLU"&VAM?A1XZWE0Z/CH_.KU"?X=#4>1;>9?LD^IU`3GEXZ>%,ZX)E\9/'$ M`S1^#KU#>YU,Z7U(4G_"SUDGBX?8$T)3XN$>WB%/7WU?A>?,$G8435G(?>[B M4LA>@DP7/(Y61)L%`0/\R@X8RB"BWCXR.6,C.@O28Z+*,D&K'\U2>EA5]O>/5&5++:%.&=$0HDG&PF.B5%12)M6* MDHT`*<;D.Y)DHW+,<)&*[:T&SC;9Y)5*5J72*;CPSX-%X=GG=U")C5I4#U6- MUP)*`L89408^)E7E'?`%\_".1",,2((L)RN&[R_SF+WYF;DSJ/=NZ])I]OJD M==F_(K]L?NWG%[+WRWCF>[\<_O+DVQV0QOG")_;1+_OD8[U]W73(WKO9(>$_ M(_SMLT'[JEOO]?_O[$#U]]%U0YO+?(!$W=A_V()%S/>1* MO@?"_OZQ,F=B?Z++JV1N-TR;VPW37K.2$`"SP1T-9BSYGR<6\V"OFBH_F9B+MJS1/,N?[GAIT;\1^/^LJH M_']H&8+X#_RKD<5_BFH:F@[QGZ49YFO\]RVNA76;+W< M#T3#$YJ/5>-8U8FF*/;2_,G16_^51RL;BPN\[E9I?/?/U1 MZ+$1^=2ZU+52>0G]:_*0'*&B#BLW?X,PZTDZ)I,WV6'9P*?+8C_R?)>70+Z; M)%W^5W)R>=UN?Y_%MHJ.JPT'_%-=VFVH`>FVZ_WSJUZ'G)PL_QYD5PT,EHBD M=_-<\/B8%HT@;`&JNT,(V5;07Z.0?;=/L%&9[UJK'119X<';=]`EH*$'F#`! M1^NGDX5E7B#O*NG=(&'N&I8GS3#MB*)^,N:IYSK!,HAKMSL.!!;=&A, M5)CE&<>:=6QH6W5H@=_4'4,_UJIKNL.#1&WA63$"7O;]6K^CT"%S[:CVP0"7 M($Z=L\%@G_S^^UIZO=MM-P>-!F2`AFUC>+"1NJEB9"Z`K9#ANAKR)?,JUS'\ M**9BR&W@AX-)`N[GWU:TKU>K]?K]7J]7J_7Z_5ZO5ZOU^OUC:__`S>($WP`H``` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 11:56:42 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BEE9E16A41F; Fri, 8 Jun 2007 11:56:42 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9662613C4AE; Fri, 8 Jun 2007 11:56:42 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58Bug3F082387; Fri, 8 Jun 2007 11:56:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58BugTX082383; Fri, 8 Jun 2007 11:56:42 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 11:56:42 GMT From: Edwin Groothuis Message-Id: <200706081156.l58BugTX082383@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113471: [MAINTAINER] update games/mangos to 3838 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 11:56:42 -0000 Synopsis: [MAINTAINER] update games/mangos to 3838 Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Jun 8 11:56:41 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113471 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 12:10:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E94D16A46D for ; Fri, 8 Jun 2007 12:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 16E2E13C4BD for ; Fri, 8 Jun 2007 12:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58CA9ZR083148 for ; Fri, 8 Jun 2007 12:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58CA9pJ083147; Fri, 8 Jun 2007 12:10:09 GMT (envelope-from gnats) Date: Fri, 8 Jun 2007 12:10:09 GMT Message-Id: <200706081210.l58CA9pJ083147@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alex Kapranoff Cc: Subject: Re: ports/113235: [patch] dns/maradns problem with startup during boot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Kapranoff List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 12:10:10 -0000 The following reply was made to PR ports/113235; it has been noted by GNATS. From: Alex Kapranoff To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113235: [patch] dns/maradns problem with startup during boot Date: Fri, 8 Jun 2007 15:32:52 +0400 The patch by Simun works great! I as the maintainter for the port would like for someone to commit this to our Ports. Thanks! * Simun Mikecin [June 02 2007, 15:58]: > Here is a patch that should solve all the mentioned problems. > - changed duende source to create PID file by itself > - maradns.sh and zoneserver.sh now use PID file > - changed default MaraDNS UID from 99 to bind(53) > - changed default maraDNS GID from 99 to bind(53) > - changed default duende logger process UID from 66 to nobody(65534) > > > > > ____________________________________________________________________________________ > Be a better Globetrotter. Get better travel answers from someone who knows. Yahoo! Answers - Check it out. > http://answers.yahoo.com/dir/?link=list&sid=396545469 Content-Description: 2334080097-maradns-diff2.txt > diff -urN maradns.old/Makefile maradns/Makefile > --- maradns.old/Makefile Sat May 26 00:11:42 2007 > +++ maradns/Makefile Sat Jun 2 13:42:52 2007 > @@ -7,6 +7,7 @@ > > PORTNAME= maradns > PORTVERSION= 1.2.12.06 > +PORTREVISION= 1 > CATEGORIES= dns > MASTER_SITES= http://www.maradns.org/download/1.2/${PORTVERSION}/ \ > http://kapranoff.ru/~kappa/files/ > @@ -57,6 +58,7 @@ > ${MKDIR} ${PREFIX}/etc/maradns > ${INSTALL_DATA} ${WRKSRC}/doc/en/examples/example_csv2 \ > ${PREFIX}/etc/maradns/example_csv2 > + ${MKDIR} ${PREFIX}/etc/maradns/logger > @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ > '-e s!%%SERVICE%%!maradns!g' \ > ${FILESDIR}/rc_d.sh > ${PREFIX}/etc/rc.d/maradns.sh > diff -urN maradns.old/files/patch-MaraDns.h maradns/files/patch-MaraDns.h > --- maradns.old/files/patch-MaraDns.h Thu Jan 1 01:00:00 1970 > +++ maradns/files/patch-MaraDns.h Sat Jun 2 13:47:33 2007 > @@ -0,0 +1,22 @@ > +--- MaraDns.h.orig Sat Jun 2 13:46:12 2007 > ++++ MaraDns.h Sat Jun 2 13:47:12 2007 > +@@ -75,16 +75,16 @@ > + line to point to Bash > + */ > + > +-#define MARADNS_DEFAULT_UID 99 > ++#define MARADNS_DEFAULT_UID 53 > + > + /* The default GID (Group ID) that MaraDNS has; see the default UID notes > + above. Again: CHANGE THE MARARC MAN PAGE IF YOU CHANGE THIS VALUE */ > +-#define MARADNS_DEFAULT_GID 99 > ++#define MARADNS_DEFAULT_GID 53 > + > + /* The UID that the Duende logging process uses. CHANGE THE DUENDE MAN > + PAGE IF YOU CHANGE THIS VALUE (same general process as changing the > + mararc man page; the source file for the duende man page is duende.ej) */ > +-#define DUENDE_LOGGER_UID 66 > ++#define DUENDE_LOGGER_UID 65534 > + > + /* The directory that Duende runs in. This directory has to exist for > + Duende to be able to run. Again, IF YOU CHANGE THIS, CHANGE THE > diff -urN maradns.old/files/patch-tools_Makefile maradns/files/patch-tools_Makefile > --- maradns.old/files/patch-tools_Makefile Thu Jan 1 01:00:00 1970 > +++ maradns/files/patch-tools_Makefile Sat Jun 2 13:38:29 2007 > @@ -0,0 +1,11 @@ > +--- tools/Makefile.orig Sat Jun 2 13:33:56 2007 > ++++ tools/Makefile Sat Jun 2 13:38:09 2007 > +@@ -27,7 +27,7 @@ > + $(CC) $(FLAGS) -o benchmark benchmark.c $(OBJECTS) $(POBJECTS) > + > + duende: duende.c > +- $(CC) $(FLAGS) -o duende duende.c > ++ $(CC) $(FLAGS) -o duende duende.c -lutil > + > + strip.control: strip.control.c > + $(CC) $(FLAGS) -o strip.control strip.control.c > diff -urN maradns.old/files/patch-tools_duende.c maradns/files/patch-tools_duende.c > --- maradns.old/files/patch-tools_duende.c Thu Jan 1 01:00:00 1970 > +++ maradns/files/patch-tools_duende.c Sat Jun 2 13:41:25 2007 > @@ -0,0 +1,52 @@ > +--- tools/duende.c.orig Sat Jun 2 13:40:35 2007 > ++++ tools/duende.c Sat Jun 2 13:41:01 2007 > +@@ -35,10 +35,13 @@ > + #include > + #include > + #include > ++#include > + #include > ++#include > + #include > + #include > + #include > ++#include > + #include > + #include "../MaraDns.h" > + > +@@ -139,6 +142,9 @@ > + int exit_status; > + pid_t pid, log_pid; > + int stream1[2]; /* Used for piping */ > ++ struct pidfh *pfh; > ++ char *name; > ++ char *pidfile; > + if(argv[0] == NULL || argv[1] == NULL) { > + printf("Usage: duende [program] [arguments]\n"); > + exit(1); > +@@ -202,7 +208,24 @@ > + log_helper(argv[1],stream1[0]); > + syslog(LOG_ALERT,"log_helper finished, terminating\n"); > + exit(1); > +- } > ++ } > ++ > ++ name = strrchr(argv[1], '/'); > ++ if (name && *name != '\0') { > ++ pidfile = malloc(strlen("/var/run/") + strlen(name) + strlen(".pid") + 1); > ++ if (pidfile) { > ++ strcpy(pidfile, "/var/run/"); > ++ strcat(pidfile, name); > ++ strcat(pidfile, ".pid"); > ++ remove(pidfile); > ++ pfh = pidfile_open(pidfile, 0600, &pid); > ++ if (pfh) { > ++ pidfile_write(pfh); > ++ pidfile_close(pfh); > ++ } > ++ free(pidfile); > ++ } > ++ } > + for(;;) { > + /* If we got a HUP signal, send it to the child */ > + if(got_hup_signal == 1) { > diff -urN maradns.old/files/rc_d.sh maradns/files/rc_d.sh > --- maradns.old/files/rc_d.sh Mon Feb 20 21:46:57 2006 > +++ maradns/files/rc_d.sh Sat Jun 2 13:14:49 2007 > @@ -28,11 +28,11 @@ > > name="%%SERVICE%%" > rcvar=`set_rcvar` > -command="${prefix}/sbin/${name}" > -command_args="| /usr/bin/logger -p daemon.notice -t %%SERVICE%% &" > +command="${prefix}/bin/duende" > +pidfile="/var/run/${name}.pid" > > load_rc_config $name > > -flags="${%%SERVICE%%_flags}" > +flags="${prefix}/sbin/${name} ${%%SERVICE%%_flags}" > > run_rc_command "$1" > diff -urN maradns.old/pkg-plist maradns/pkg-plist > --- maradns.old/pkg-plist Thu Dec 14 14:45:02 2006 > +++ maradns/pkg-plist Fri Jun 1 21:51:52 2007 > @@ -7,6 +7,7 @@ > etc/rc.d/maradns.sh > etc/rc.d/zoneserver.sh > etc/maradns/example_csv2 > +@dirrmtry etc/maradns/logger > @dirrmtry etc/maradns > sbin/maradns > sbin/zoneserver -- Alex Kapranoff, $n=["1another7Perl213Just3hacker49"=~/\d|\D*/g]; $$n[0]={grep/\d/,@$n};print"@$n{1..4}\n" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 12:30:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C654416A469 for ; Fri, 8 Jun 2007 12:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9F8DD13C45B for ; Fri, 8 Jun 2007 12:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58CU5Kl084425 for ; Fri, 8 Jun 2007 12:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58CU5Y9084424; Fri, 8 Jun 2007 12:30:05 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 12:30:05 GMT Resent-Message-Id: <200706081230.l58CU5Y9084424@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Petr Holub Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E15BA16A400 for ; Fri, 8 Jun 2007 12:24:48 +0000 (UTC) (envelope-from hopet@evenstar.ics.muni.cz) Received: from minas.ics.muni.cz (minas.ics.muni.cz [147.251.4.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6E5D613C465 for ; Fri, 8 Jun 2007 12:24:47 +0000 (UTC) (envelope-from hopet@evenstar.ics.muni.cz) Received: from evenstar.ics.muni.cz (evenstar.ics.muni.cz [147.251.3.44]) by minas.ics.muni.cz (8.13.8/8.13.8/SuSE Linux 0.8) with ESMTP id l58COitr018387 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 8 Jun 2007 14:24:46 +0200 Received: from evenstar.ics.muni.cz (localhost [127.0.0.1]) by evenstar.ics.muni.cz (8.13.8/8.13.8) with ESMTP id l58COiuE088505 for ; Fri, 8 Jun 2007 14:24:44 +0200 (CEST) (envelope-from hopet@evenstar.ics.muni.cz) Received: (from hopet@localhost) by evenstar.ics.muni.cz (8.13.8/8.13.6/Submit) id l58COi1r088503; Fri, 8 Jun 2007 14:24:44 +0200 (CEST) (envelope-from hopet) Message-Id: <200706081224.l58COi1r088503@evenstar.ics.muni.cz> Date: Fri, 8 Jun 2007 14:24:44 +0200 (CEST) From: Petr Holub To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113479: Gramps 2.2.x needs py-bsddb with db43 on FreeBSD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Petr Holub List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 12:30:05 -0000 >Number: 113479 >Category: ports >Synopsis: Gramps 2.2.x needs py-bsddb with db43 on FreeBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 12:30:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Petr Holub >Release: FreeBSD 6.2-RELEASE-p4 i386 >Organization: Masaryk University >Environment: System: FreeBSD evenstar.ics.muni.cz 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: When Gramps version 2.2.x opens some database using db41 as FreeBSD defaults with py-bsddb, it crashes. Discussion of the problem including possible solution can be found in gramps-bug@ list: http://sourceforge.net/mailarchive/forum.php?thread_name=200706061425.l56EP3Ys023918%40dior.ics.muni.cz&forum_name=gramps-bugs >How-To-Repeat: Open a database (esp. the ones created using Gramps 2.0.x) and you get the following error: 5392: ERROR: DbLoader.py: line 468: Failed to open database. Traceback (most recent call last): File "/usr/local/share/gramps/DbLoader.py", line 447, in read_file self.dbstate.db.load(filename,self.uistate.pulse_progressbar,mode) File "/usr/local/share/gramps/GrampsDb/_GrampsBSDDB.py", line 347, in load self.env.set_flags(db.DB_LOG_AUTOREMOVE,1) # clean up unused logs AttributeError: 'module' object has no attribute 'DB_LOG_AUTOREMOVE'42364: ERROR: DbLoader.py: line 468: Failed to open database. Traceback (most recent call last): File "/usr/local/share/gramps/DbLoader.py", line 447, in read_file self.dbstate.db.load(filename,self.uistate.pulse_progressbar,mode) File "/usr/local/share/gramps/GrampsDb/_GrampsBSDDB.py", line 347, in load self.env.set_flags(db.DB_LOG_AUTOREMOVE,1) # clean up unused logs AttributeError: 'module' object has no attribute 'DB_LOG_AUTOREMOVE' >Fix: Use USE_BDB= 43+ in databases/py-bsddb/Makefile instead of the original USE_BDB= yes and rebuild the py-bsddb. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 12:32:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B540216A46B; Fri, 8 Jun 2007 12:32:07 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8B34613C448; Fri, 8 Jun 2007 12:32:07 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58CW7JF085846; Fri, 8 Jun 2007 12:32:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58CW7Iw085842; Fri, 8 Jun 2007 12:32:07 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 12:32:07 GMT From: Edwin Groothuis Message-Id: <200706081232.l58CW7Iw085842@freefall.freebsd.org> To: hopet@ics.muni.cz, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113479: science/Gramps 2.2.x needs py-bsddb with db43 on FreeBSD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 12:32:07 -0000 Synopsis: science/Gramps 2.2.x needs py-bsddb with db43 on FreeBSD State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Jun 8 12:32:06 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113479 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 14:40:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 490C216A41F for ; Fri, 8 Jun 2007 14:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DB99113C46E for ; Fri, 8 Jun 2007 14:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58Ee9na095635 for ; Fri, 8 Jun 2007 14:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58Ee9WQ095634; Fri, 8 Jun 2007 14:40:09 GMT (envelope-from gnats) Date: Fri, 8 Jun 2007 14:40:09 GMT Message-Id: <200706081440.l58Ee9WQ095634@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Gavin Atkinson Cc: Subject: Re: ports/113217: [patch] ports/deskutils/kuake incorrect dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gavin Atkinson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 14:40:10 -0000 The following reply was made to PR ports/113217; it has been noted by GNATS. From: Gavin Atkinson To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113217: [patch] ports/deskutils/kuake incorrect dependency Date: Fri, 08 Jun 2007 15:38:23 +0100 I don't know if it more correct to have a RUN_DEPEND on konsole in kdebase3, or if setting USE_KDEBASE_VER=3 i(as the patch does) is correct. I'll leave it to the committer to choose :) From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 15:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4877D16A46B for ; Fri, 8 Jun 2007 15:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2BB4E13C465 for ; Fri, 8 Jun 2007 15:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58F0Au2096735 for ; Fri, 8 Jun 2007 15:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58F0AHl096734; Fri, 8 Jun 2007 15:00:10 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 15:00:10 GMT Resent-Message-Id: <200706081500.l58F0AHl096734@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jan Srzednicki Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AF1816A400 for ; Fri, 8 Jun 2007 14:53:16 +0000 (UTC) (envelope-from winfried@oak.pl) Received: from mx.oak.pl (mx.oak.pl [217.96.108.251]) by mx1.freebsd.org (Postfix) with ESMTP id 0768213C483 for ; Fri, 8 Jun 2007 14:53:13 +0000 (UTC) (envelope-from winfried@oak.pl) Received: by oak.pl (Postfix, from userid 1002) id D36D217110; Fri, 8 Jun 2007 16:53:08 +0200 (CEST) Message-Id: <20070608145308.D36D217110@oak.pl> Date: Fri, 8 Jun 2007 16:53:08 +0200 (CEST) From: Jan Srzednicki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: r@robakdesign.com Subject: ports/113480: [PATCH] www/hastymail: fix path for the config file, don't install cruft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 15:00:11 -0000 >Number: 113480 >Category: ports >Synopsis: [PATCH] www/hastymail: fix path for the config file, don't install cruft >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 15:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Jan Srzednicki >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD oak.pl 6.2-STABLE FreeBSD 6.2-STABLE #11: Tue Jun 5 12:04:54 CEST >Description: I have fixed the port, so it does not install cruft CVS directories (and other cruft stuff as well). The sample config file is installed to the correct path, which now defaults do $PREFIX/etc (this required patching lib/constant.php, which has the path hardcoded). Minor fixes: add '-d' option to pax to make it not traverse directories, some style cleanups. Added file(s): - files/patch-lib-constant.php Port maintainer (r@robakdesign.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- hastymail-1.5_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/hastymail/Makefile /srv/home/winfried/tmp/ports/hastymail/Makefile --- /usr/ports/www/hastymail/Makefile Sat May 19 11:06:16 2007 +++ /srv/home/winfried/tmp/ports/hastymail/Makefile Fri Jun 8 16:47:31 2007 @@ -7,7 +7,7 @@ PORTNAME= hastymail PORTVERSION= 1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= hastymail @@ -27,16 +27,30 @@ .include +# Don't install automatically CVS directories, patched files and the default config file. +FIND_SKIP_OPTS= -not -name hastymail.conf-example -not -name '*.orig' \ + -not -name '*.bak' -not -path '*/CVS/*' -not -name CVS + +post-patch: + @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," \ + ${WRKSRC}/lib/constant.php + pre-install: - @${FIND} -s -d ${WRKSRC}/ -type f | ${SED} "s?${WRKSRC}?${INSTALL_DIR}?g" >${PLIST} - @${FIND} -s -d ${WRKSRC}/ -type d | ${SED} "s?${WRKSRC}?@dirrm ${INSTALL_DIR}?g" >> ${PLIST} + @${FIND} -s -d ${WRKSRC}/ -type f ${FIND_SKIP_OPTS} | \ + ${SED} "s?${WRKSRC}?${INSTALL_DIR}?g" >${PLIST} + @${FIND} -s -d ${WRKSRC}/ -type d ${FIND_SKIP_OPTS} | \ + ${SED} "s?${WRKSRC}?@dirrm ${INSTALL_DIR}?g" >> ${PLIST} + @${ECHO_CMD} etc/hastymail.conf.sample >> ${PLIST} do-install: - @${MKDIR} ${PREFIX}/${INSTALL_DIR} - @cd ${WRKSRC} && ${FIND} . | ${PAX} -rw ${PREFIX}/${INSTALL_DIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${INSTALL_DIR} + @${MKDIR} ${PREFIX}/${INSTALL_DIR} + @cd ${WRKSRC} && ${FIND} . ${FIND_SKIP_OPTS} | \ + ${PAX} -rwd ${PREFIX}/${INSTALL_DIR} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${INSTALL_DIR} + @${INSTALL_DATA} ${WRKSRC}/hastymail.conf-example \ + ${PREFIX}/etc/hastymail.conf.sample post-install: - @${CAT} ${PKGMESSAGE} + @${CAT} ${PKGMESSAGE} .include diff -ruN --exclude=CVS /usr/ports/www/hastymail/files/patch-lib-constant.php /srv/home/winfried/tmp/ports/hastymail/files/patch-lib-constant.php --- /usr/ports/www/hastymail/files/patch-lib-constant.php Thu Jan 1 01:00:00 1970 +++ /srv/home/winfried/tmp/ports/hastymail/files/patch-lib-constant.php Fri Jun 8 16:36:03 2007 @@ -0,0 +1,11 @@ +--- lib/constant.php.orig Fri Jun 8 15:15:54 2007 ++++ lib/constant.php Fri Jun 8 15:16:10 2007 +@@ -24,7 +24,7 @@ + */ + + /* absolute path to the configuration file */ +-$config_file = '/etc/hastymail.conf'; ++$config_file = '%%PREFIX%%/etc/hastymail.conf'; + + /* hastymail version */ + $version = '1.5'; diff -ruN --exclude=CVS /usr/ports/www/hastymail/files/pkg-message.in /srv/home/winfried/tmp/ports/hastymail/files/pkg-message.in --- /usr/ports/www/hastymail/files/pkg-message.in Sat Nov 18 23:55:43 2006 +++ /srv/home/winfried/tmp/ports/hastymail/files/pkg-message.in Fri Jun 8 15:36:15 2007 @@ -1,12 +1,13 @@ ****************************************************** You have successfully installed Hastymail webmail client. -Dont forget to move config file to proper directory and -to change that variable in hastymail/lib/constant.php +Don't forget to edit your own config file. A sample config +has been installed in: -$config_file = '/etc/hastymail.conf'; +%%PREFIX%%/etc/hastymail.conf.sample -as needed. After that, follow the instructions in INSTALL -file to configure Hastymail finally. +The proper config file path is: + +%%PREFIX%%/etc/hastymail.conf ****************************************************** --- hastymail-1.5_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 15:00:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F10B116A421; Fri, 8 Jun 2007 15:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C9AFD13C44C; Fri, 8 Jun 2007 15:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58F0HiL096854; Fri, 8 Jun 2007 15:00:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58F0H9p096850; Fri, 8 Jun 2007 15:00:17 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 15:00:17 GMT From: Edwin Groothuis Message-Id: <200706081500.l58F0H9p096850@freefall.freebsd.org> To: w@wrzask.pl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113480: [PATCH] www/hastymail: fix path for the config file, don't install cruft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 15:00:18 -0000 Synopsis: [PATCH] www/hastymail: fix path for the config file, don't install cruft State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Jun 8 15:00:17 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113480 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 15:07:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F13616A400; Fri, 8 Jun 2007 15:07:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EB9BC13C45B; Fri, 8 Jun 2007 15:07:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58F7Ajg097393; Fri, 8 Jun 2007 15:07:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58F7ABm097389; Fri, 8 Jun 2007 15:07:10 GMT (envelope-from linimon) Date: Fri, 8 Jun 2007 15:07:10 GMT From: Mark Linimon Message-Id: <200706081507.l58F7ABm097389@freefall.freebsd.org> To: numisemis@yahoo.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113235: [patch] dns/maradns problem with startup during boot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 15:07:11 -0000 Synopsis: [patch] dns/maradns problem with startup during boot State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Fri Jun 8 15:07:01 UTC 2007 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=113235 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 15:50:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E74F216A469 for ; Fri, 8 Jun 2007 15:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B283013C4BD for ; Fri, 8 Jun 2007 15:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58Fo32i000725 for ; Fri, 8 Jun 2007 15:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58Fo3JF000721; Fri, 8 Jun 2007 15:50:03 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 15:50:03 GMT Resent-Message-Id: <200706081550.l58Fo3JF000721@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nils M Holm Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AF4816A400 for ; Fri, 8 Jun 2007 15:49:02 +0000 (UTC) (envelope-from nmh@T3X.ORG) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.174]) by mx1.freebsd.org (Postfix) with ESMTP id 278DB13C45A for ; Fri, 8 Jun 2007 15:49:02 +0000 (UTC) (envelope-from nmh@T3X.ORG) Received: from [62.227.180.156] (helo=T3X.ORG) by mrelayeu.kundenserver.de (node=mrelayeu3) with ESMTP (Nemesis), id 0MKxQS-1HwgVZ3yeR-0008GQ; Fri, 08 Jun 2007 17:36:20 +0200 Received: (from nmh@localhost) by T3X.ORG (8.11.6/8.11.6) id l58FYhC13742; Fri, 8 Jun 2007 17:34:43 +0200 (CEST) Message-Id: <200706081534.l58FYhC13742@T3X.ORG> Date: Fri, 8 Jun 2007 17:34:43 +0200 (CEST) From: Nils M Holm To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113481: [Maintainer update]: devel/tide X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 15:50:04 -0000 >Number: 113481 >Category: ports >Synopsis: [Maintainer update]: devel/tide >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 15:50:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Nils M Holm >Release: FreeBSD 6.1-RELEASE i386 >Organization: T3X.ORG >Environment: System: FreeBSD Freedom.T3X.ORG 6.1-RELEASE FreeBSD 6.1-RELEASE #2: Thu Feb 22 10:20:53 CET 2007 nmh@NFreedom.T3X.ORG:/usr/src/sys/i386/compile/FREEDOM i386 >Description: Update to 3.2.0. >How-To-Repeat: >Fix: diff -ru devel/tide.old/Makefile devel/tide/Makefile --- devel/tide.old/Makefile Fri Jun 8 17:30:20 2007 +++ devel/tide/Makefile Fri Jun 8 17:32:39 2007 @@ -6,7 +6,7 @@ # PORTNAME= tide -PORTVERSION= 3.1.0 +PORTVERSION= 3.2.0 CATEGORIES= devel MASTER_SITES= http://www.t3x.org/files/ DISTNAME= tide-${PORTVERSION:S/.//g} diff -ru devel/tide.old/distinfo devel/tide/distinfo --- devel/tide.old/distinfo Fri Jun 8 17:30:20 2007 +++ devel/tide/distinfo Fri Jun 8 17:32:39 2007 @@ -1,3 +1,3 @@ -MD5 (tide-310.tar.gz) = 05e149707b17026a6ec1e0f5d34b618d -SHA256 (tide-310.tar.gz) = c1dd6172baecd759553af0a62e0c69d50da27c917b136af058e35d5e6ce9bda2 -SIZE (tide-310.tar.gz) = 58240 +MD5 (tide-320.tar.gz) = 26826a3b6bf3710d854e6f997af04c27 +SHA256 (tide-320.tar.gz) = 426e3d0a43d20d195989d870172f9f765ac8f0b3daa3cbcfaed4458fb7a5e74a +SIZE (tide-320.tar.gz) = 58213 diff -ru devel/tide.old/pkg-descr devel/tide/pkg-descr --- devel/tide.old/pkg-descr Fri Jun 8 17:30:20 2007 +++ devel/tide/pkg-descr Fri Jun 8 17:32:39 2007 @@ -1,3 +1,3 @@ A collection of classes for the T3X language. -WWW: http://www.t3x.org/nmh/comp.html +WWW: http://www.t3x.org/t3x/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 16:30:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20D1816A4C0 for ; Fri, 8 Jun 2007 16:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DF59513C4CA for ; Fri, 8 Jun 2007 16:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58GU9e8003185 for ; Fri, 8 Jun 2007 16:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58GU9HE003184; Fri, 8 Jun 2007 16:30:09 GMT (envelope-from gnats) Resent-Date: Fri, 8 Jun 2007 16:30:09 GMT Resent-Message-Id: <200706081630.l58GU9HE003184@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dominic Fandrey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF83716A468 for ; Fri, 8 Jun 2007 16:20:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id C046113C48A for ; Fri, 8 Jun 2007 16:20:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l58GKfoV064218 for ; Fri, 8 Jun 2007 16:20:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l58GKfW8064217; Fri, 8 Jun 2007 16:20:41 GMT (envelope-from nobody) Message-Id: <200706081620.l58GKfW8064217@www.freebsd.org> Date: Fri, 8 Jun 2007 16:20:41 GMT From: Dominic Fandrey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113482: [maintainer-update][cad/freehdl] add fetchable download location X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 16:30:10 -0000 >Number: 113482 >Category: ports >Synopsis: [maintainer-update][cad/freehdl] add fetchable download location >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 08 16:30:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: releng_6 >Organization: private >Environment: FreeBSD mobileKamikaze.norad 6.2-STABLE FreeBSD 6.2-STABLE #1: Fri Apr 27 13:45:49 CEST 2007 root@homeKamikaze.norad:/usr/obj/TPR40-6/i386/usr/src/sys/TPR40-6 i386 >Description: Fetches a new download mirror, because the original download location is unreachable. >How-To-Repeat: >Fix: --- cad/freehdl/Makefile.orig Fri Jun 8 18:07:15 2007 +++ cad/freehdl/Makefile Fri Jun 8 18:16:09 2007 @@ -9,7 +9,8 @@ PORTVERSION= 0.0.4 PORTREVISION= 1 CATEGORIES= cad -MASTER_SITES= http://cran.mit.edu/~enaroska/ +MASTER_SITES= http://www.home.hs-karlsruhe.de/~fado0011/ \ + http://cran.mit.edu/~enaroska/ MAINTAINER= lon_kamikaze@gmx.de COMMENT= A free VHDL simulator >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 16:30:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E13E16A474; Fri, 8 Jun 2007 16:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0124D13C4C9; Fri, 8 Jun 2007 16:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58GUGe5003504; Fri, 8 Jun 2007 16:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58GUG4N003499; Fri, 8 Jun 2007 16:30:16 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 16:30:16 GMT From: Edwin Groothuis Message-Id: <200706081630.l58GUG4N003499@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113482: [maintainer-update][cad/freehdl] add fetchable download location X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 16:30:17 -0000 Synopsis: [maintainer-update][cad/freehdl] add fetchable download location Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Jun 8 16:30:16 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113482 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 8 21:56:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A92BE16A469; Fri, 8 Jun 2007 21:56:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7F46A13C4B0; Fri, 8 Jun 2007 21:56:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l58Lu5AT027191; Fri, 8 Jun 2007 21:56:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l58Lu4E9027184; Fri, 8 Jun 2007 21:56:05 GMT (envelope-from edwin) Date: Fri, 8 Jun 2007 21:56:05 GMT From: Edwin Groothuis Message-Id: <200706082156.l58Lu4E9027184@freefall.freebsd.org> To: freebsd@troback.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perky@FreeBSD.org Cc: Subject: Re: ports/113479: science/Gramps 2.2.x needs py-bsddb with db43 on FreeBSD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 21:56:05 -0000 Synopsis: science/Gramps 2.2.x needs py-bsddb with db43 on FreeBSD Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 8 21:55:36 UTC 2007 Responsible-Changed-Why: Please negotiate with the maintainers of databases/py-bsddb and science/gramps. http://www.freebsd.org/cgi/query-pr.cgi?pr=113479 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 01:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B644F16A46B for ; Sat, 9 Jun 2007 01:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 78D5113C465 for ; Sat, 9 Jun 2007 01:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l591A3Wa040756 for ; Sat, 9 Jun 2007 01:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l591A38j040755; Sat, 9 Jun 2007 01:10:03 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 01:10:03 GMT Resent-Message-Id: <200706090110.l591A38j040755@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Janos Mohacsi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 188FC16A473 for ; Sat, 9 Jun 2007 01:09:53 +0000 (UTC) (envelope-from mohacsi@scone.ki.iif.hu) Received: from scone.ki.iif.hu (adsl193.adsl.hungarnet.hu [193.6.17.193]) by mx1.freebsd.org (Postfix) with ESMTP id 6C8E813C458 for ; Sat, 9 Jun 2007 01:09:52 +0000 (UTC) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.14.1/8.14.1) id l5807AEQ021127; Fri, 8 Jun 2007 02:07:10 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200706080007.l5807AEQ021127@scone.ki.iif.hu> Date: Fri, 8 Jun 2007 02:07:10 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113483: [MAINTAINER] mail/anomy-sanitizer: remove procmail dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 01:10:03 -0000 >Number: 113483 >Category: ports >Synopsis: [MAINTAINER] mail/anomy-sanitizer: remove procmail dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 01:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 6.2-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 6.2-STABLE FreeBSD 6.2-STABLE #23: Wed May 9 18:23:24 CEST >Description: remove procmail dependency - procmail can be substituted by dropmail Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- anomy-sanitizer-1.76_3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/anomy-sanitizer.orig/Makefile /usr/ports/mail/anomy-sanitizer/Makefile --- /usr/ports/mail/anomy-sanitizer.orig/Makefile Mon Aug 7 10:28:37 2006 +++ /usr/ports/mail/anomy-sanitizer/Makefile Fri Jun 8 01:40:27 2007 @@ -7,7 +7,7 @@ PORTNAME= anomy-sanitizer PORTVERSION= 1.76 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail security MASTER_SITES= http://mailtools.anomy.net/dist/ @@ -15,8 +15,7 @@ COMMENT= Sanitize and clean incoming/outgoing mail RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ - procmail:${PORTSDIR}/mail/procmail + ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 USE_PERL5= yes --- anomy-sanitizer-1.76_3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 01:10:04 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13C8D16A46D for ; Sat, 9 Jun 2007 01:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E7E9813C447 for ; Sat, 9 Jun 2007 01:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l591A3vF040809 for ; Sat, 9 Jun 2007 01:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l591A3CJ040808; Sat, 9 Jun 2007 01:10:03 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 01:10:03 GMT Resent-Message-Id: <200706090110.l591A3CJ040808@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Janos Mohacsi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A13016A421 for ; Sat, 9 Jun 2007 01:09:54 +0000 (UTC) (envelope-from mohacsi@scone.ki.iif.hu) Received: from scone.ki.iif.hu (adsl193.adsl.hungarnet.hu [193.6.17.193]) by mx1.freebsd.org (Postfix) with ESMTP id AB43113C45A for ; Sat, 9 Jun 2007 01:09:53 +0000 (UTC) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.14.1/8.14.1) id l57NdGiA018072; Fri, 8 Jun 2007 01:39:16 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200706072339.l57NdGiA018072@scone.ki.iif.hu> Date: Fri, 8 Jun 2007 01:39:16 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113484: [MAINTAINER UPDATE] games/abridge: fix MASTER_SITES + cleanup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 01:10:04 -0000 >Number: 113484 >Category: ports >Synopsis: [MAINTAINER UPDATE] games/abridge: fix MASTER_SITES + cleanup >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 01:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 6.2-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 6.2-STABLE FreeBSD 6.2-STABLE #23: Wed May 9 18:23:24 CEST >Description: [DESCRIBE CHANGES] - Take maintainership Port maintainer (Janos.Mohacsi@bsd.hu) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- abridge-0.4.0_7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/abridge.orig/Makefile /usr/ports/games/abridge/Makefile --- /usr/ports/games/abridge.orig/Makefile Sun May 20 11:32:15 2007 +++ /usr/ports/games/abridge/Makefile Fri Jun 8 01:36:04 2007 @@ -6,12 +6,12 @@ PORTNAME= abridge PORTVERSION= 0.4.0 -PORTREVISION= 6 -PORTREVISON= 1 +PORTREVISION= 7 CATEGORIES= games -MASTER_SITES= http://www.abridgegame.org/src/ +MASTER_SITES= http://www.abridgegame.org/debian/unstable/ +DISTFILES= ${PORTNAME}_${PORTVERSION}-1${EXTRACT_SUFX} -MAINTAINER= Janos.Mohacsi@bsd.hu +MAINTAINER= janos.mohacsi@bsd.hu COMMENT= Bridge game USE_WX= 2.4 @@ -24,7 +24,7 @@ .include .if ${ARCH} != "i386" -BROKEN= "Does not compile on !i386" +BROKEN= Does not compile on !i386 .endif .include diff -ruN --exclude=CVS /usr/ports/games/abridge.orig/distinfo /usr/ports/games/abridge/distinfo --- /usr/ports/games/abridge.orig/distinfo Mon Jan 23 17:50:24 2006 +++ /usr/ports/games/abridge/distinfo Fri Jun 8 01:08:10 2007 @@ -1,3 +1,3 @@ -MD5 (abridge-0.4.0.tar.gz) = f02c5d4f726ca847e9aba39706bb67e9 -SHA256 (abridge-0.4.0.tar.gz) = 7dbb03aeb5b134603e0348511df90d754adb1a212c8875288299d99969e03505 -SIZE (abridge-0.4.0.tar.gz) = 177242 +MD5 (abridge_0.4.0-1.tar.gz) = bcd1e33441fe79ffd6d9b2109fa78a94 +SHA256 (abridge_0.4.0-1.tar.gz) = 2a4ef67961df4149223380a34f45b42ffd98f9513433e116ec7362a4a40013f4 +SIZE (abridge_0.4.0-1.tar.gz) = 164552 --- abridge-0.4.0_7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 01:10:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0AD2616A468; Sat, 9 Jun 2007 01:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CBBFE13C45B; Sat, 9 Jun 2007 01:10:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l591ABgF040944; Sat, 9 Jun 2007 01:10:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l591AB25040940; Sat, 9 Jun 2007 01:10:11 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 01:10:11 GMT From: Edwin Groothuis Message-Id: <200706090110.l591AB25040940@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jmelo@FreeBSD.org Cc: Subject: Re: ports/113484: [MAINTAINER UPDATE] games/abridge: fix MASTER_SITES + cleanup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 01:10:12 -0000 Synopsis: [MAINTAINER UPDATE] games/abridge: fix MASTER_SITES + cleanup Responsible-Changed-From-To: freebsd-ports-bugs->jmelo Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 01:10:11 UTC 2007 Responsible-Changed-Why: jmelo@ wants to have WWW and MASTER_SITES PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113484 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 01:20:50 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4EF216A46C; Sat, 9 Jun 2007 01:20:50 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AA53313C44B; Sat, 9 Jun 2007 01:20:50 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l591KoWF041690; Sat, 9 Jun 2007 01:20:50 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l591KoGj041686; Sat, 9 Jun 2007 01:20:50 GMT (envelope-from vanilla) Date: Sat, 9 Jun 2007 01:20:50 GMT From: "Vanilla I. Shu" Message-Id: <200706090120.l591KoGj041686@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org Cc: Subject: Re: ports/113472: [NEW PORT] devel/papi Gather CPU performance information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 01:20:50 -0000 Synopsis: [NEW PORT] devel/papi Gather CPU performance information Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Sat Jun 9 01:20:39 UTC 2007 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=113472 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 04:01:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42C1416A496; Sat, 9 Jun 2007 04:01:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1487613C46E; Sat, 9 Jun 2007 04:01:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l594181w053470; Sat, 9 Jun 2007 04:01:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l594185x053466; Sat, 9 Jun 2007 04:01:08 GMT (envelope-from linimon) Date: Sat, 9 Jun 2007 04:01:08 GMT From: Mark Linimon Message-Id: <200706090401.l594185x053466@freefall.freebsd.org> To: mark@foster.cc, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113401: Update port: security/xca to version 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 04:01:09 -0000 Synopsis: Update port: security/xca to version 0.6.3 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sat Jun 9 04:00:02 UTC 2007 State-Changed-Why: With portmgr hat, approve the transfer of maintainership due to maintainer-timeout (see ports/109045). http://www.freebsd.org/cgi/query-pr.cgi?pr=113401 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 04:03:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86AD716A421; Sat, 9 Jun 2007 04:03:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5885013C45D; Sat, 9 Jun 2007 04:03:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59438Z5053562; Sat, 9 Jun 2007 04:03:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59437TX053558; Sat, 9 Jun 2007 04:03:07 GMT (envelope-from linimon) Date: Sat, 9 Jun 2007 04:03:07 GMT From: Mark Linimon Message-Id: <200706090403.l59437TX053558@freefall.freebsd.org> To: curly@e-card.bg, supraexpress@globaleyes.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/109045: security/xca compile fails: x509rev.cpp:63: error: invalid conversion from ..... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 04:03:08 -0000 Synopsis: security/xca compile fails: x509rev.cpp:63: error: invalid conversion from ..... State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sat Jun 9 04:02:04 UTC 2007 State-Changed-Why: With portmgr hat, close this one in favor of ports/113401, which transfers maintainership. Maintainer never responded to this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=109045 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 04:05:24 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35A7F16A421; Sat, 9 Jun 2007 04:05:24 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 1435F13C455; Sat, 9 Jun 2007 04:05:24 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id A1C38B03; Fri, 8 Jun 2007 23:05:23 -0500 (CDT) Date: Fri, 8 Jun 2007 23:05:23 -0500 To: Mark Foster Message-ID: <20070609040523.GB10250@soaustin.net> References: <200704240540.l3O5eCQL079342@freefall.freebsd.org> <20070424061305.GC9123@soaustin.net> <466709A3.2050401@foster.cc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <466709A3.2050401@foster.cc> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: Mark Linimon , edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/109045: security/xca compile fails: x509rev.cpp:63: error: invalid conversion from ..... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 04:05:24 -0000 With portmgr hat, I have closed this PR via maintainer-timeout, and approved ports/113401 which fixes the port and transfers maintainership. I'm sorry that it took me so long to work on this issue; I have been travelling. I was caught up on maintainer-timeouts through March 2007 and hope to get caught back up with the others soon. mcl From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 05:25:40 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C95116A421; Sat, 9 Jun 2007 05:25:40 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5C71513C48A; Sat, 9 Jun 2007 05:25:40 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from freefall.freebsd.org (nobutaka@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l595PeHX059120; Sat, 9 Jun 2007 05:25:40 GMT (envelope-from nobutaka@freefall.freebsd.org) Received: (from nobutaka@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l595PdlU059115; Sat, 9 Jun 2007 05:25:39 GMT (envelope-from nobutaka) Date: Sat, 9 Jun 2007 05:25:39 GMT From: MANTANI Nobutaka Message-Id: <200706090525.l595PdlU059115@freefall.freebsd.org> To: sa2c@sa2c.net, nobutaka@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113356: editors/leim21: use bsd.emacs.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 05:25:40 -0000 Synopsis: editors/leim21: use bsd.emacs.mk State-Changed-From-To: open->closed State-Changed-By: nobutaka State-Changed-When: Sat Jun 9 05:25:17 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113356 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 05:30:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14AC416A421 for ; Sat, 9 Jun 2007 05:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B680913C457 for ; Sat, 9 Jun 2007 05:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l595U8mE059403 for ; Sat, 9 Jun 2007 05:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l595U8cg059398; Sat, 9 Jun 2007 05:30:08 GMT (envelope-from gnats) Date: Sat, 9 Jun 2007 05:30:08 GMT Message-Id: <200706090530.l595U8cg059398@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113356: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 05:30:09 -0000 The following reply was made to PR ports/113356; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113356: commit references a PR Date: Sat, 9 Jun 2007 05:24:28 +0000 (UTC) nobutaka 2007-06-09 05:24:23 UTC FreeBSD ports repository Modified files: editors/leim21 Makefile Log: Use bsd.emacs.mk. PR: ports/113356 Submitted by: NIIMI Satoshi Revision Changes Path 1.10 +2 -3 ports/editors/leim21/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 06:00:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E225416A46E for ; Sat, 9 Jun 2007 06:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5C95613C465 for ; Sat, 9 Jun 2007 06:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5960AOD062426 for ; Sat, 9 Jun 2007 06:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5960A9B062425; Sat, 9 Jun 2007 06:00:10 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 06:00:10 GMT Resent-Message-Id: <200706090600.l5960A9B062425@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Josh Tolbert Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E8C616A400 for ; Sat, 9 Jun 2007 05:54:22 +0000 (UTC) (envelope-from hemi@puresimplicity.net) Received: from just.puresimplicity.net (just.puresimplicity.net [68.77.126.251]) by mx1.freebsd.org (Postfix) with ESMTP id ED4FC13C448 for ; Sat, 9 Jun 2007 05:54:21 +0000 (UTC) (envelope-from hemi@puresimplicity.net) Received: from just.puresimplicity.net (localhost.puresimplicity.net [127.0.0.1]) by just.puresimplicity.net (8.13.8/8.13.6) with ESMTP id l595sL8s077554 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 9 Jun 2007 00:54:21 -0500 (CDT) (envelope-from hemi@just.puresimplicity.net) Received: (from hemi@localhost) by just.puresimplicity.net (8.13.8/8.13.6/Submit) id l595sLIT077553; Sat, 9 Jun 2007 00:54:21 -0500 (CDT) (envelope-from hemi) Message-Id: <200706090554.l595sLIT077553@just.puresimplicity.net> Date: Sat, 9 Jun 2007 00:54:21 -0500 (CDT) From: Josh Tolbert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113486: [maintainer update] Update www/mod_fcgid to 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Josh Tolbert List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 06:00:11 -0000 >Number: 113486 >Category: ports >Synopsis: [maintainer update] Update www/mod_fcgid to 2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 06:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Josh Tolbert >Release: FreeBSD 6.2-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD just.puresimplicity.net 6.2-RELEASE-p1 FreeBSD 6.2-RELEASE-p1 #0: Fri Feb 9 17:14:40 CST 2007 root@just.puresimplicity.net:/usr/obj/usr/src/sys/JUST i386 >Description: Patch to update www/mod_fcgid to 2.1. >How-To-Repeat: Patch! >Fix: --- mod_fcgid.diff begins here --- diff -ruN www/mod_fcgid.old/Makefile www/mod_fcgid/Makefile --- www/mod_fcgid.old/Makefile Sat Jun 9 00:39:49 2007 +++ www/mod_fcgid/Makefile Sat Jun 9 00:40:19 2007 @@ -6,7 +6,7 @@ # PORTNAME= mod_fcgid -PORTVERSION= 2.0 +PORTVERSION= 2.1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/} diff -ruN www/mod_fcgid.old/distinfo www/mod_fcgid/distinfo --- www/mod_fcgid.old/distinfo Sat Jun 9 00:39:49 2007 +++ www/mod_fcgid/distinfo Sat Jun 9 00:41:07 2007 @@ -1,3 +1,3 @@ -MD5 (mod_fcgid.2.0.tar.gz) = 3aa51f1e293e6d881028295a23021dae -SHA256 (mod_fcgid.2.0.tar.gz) = 714e2eac93807e768a8a81c9d157e02fd674eab472302211a137657c9241cef1 -SIZE (mod_fcgid.2.0.tar.gz) = 274974 +MD5 (mod_fcgid.2.1.tar.gz) = 0bc036276e378463c80617ff57e853dc +SHA256 (mod_fcgid.2.1.tar.gz) = 9d847f66f8067c5b8de06088a04356d22cee9ced2db7d04be6d6a7613c6b83df +SIZE (mod_fcgid.2.1.tar.gz) = 54359 diff -ruN www/mod_fcgid.old/files/patch-fcgid_conf.c www/mod_fcgid/files/patch-fcgid_conf.c --- www/mod_fcgid.old/files/patch-fcgid_conf.c Sat Jun 9 00:39:49 2007 +++ www/mod_fcgid/files/patch-fcgid_conf.c Sat Jun 9 00:43:46 2007 @@ -5,7 +5,9 @@ #define DEFAULT_ZOMBIE_SCAN_INTERVAL 3 #define DEFAULT_PROC_LIFETIME (60*60) -#define DEFAULT_SOCKET_PREFIX "logs/fcgidsock" +-#define DEFAULT_SHM_PATH "logs/fcgid_shm" +#define DEFAULT_SOCKET_PREFIX "/var/run/fcgidsock" ++#define DEFAULT_SHM_PATH "/var/run/fcgid_shm" #define DEFAULT_SPAWNSOCRE_UPLIMIT 10 #define DEFAULT_SPAWN_SCORE 1 #define DEFAULT_TERMINATION_SCORE 2 --- mod_fcgid.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 06:30:05 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 87E1416A46C for ; Sat, 9 Jun 2007 06:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 63ACA13C457 for ; Sat, 9 Jun 2007 06:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l596U5wm064144 for ; Sat, 9 Jun 2007 06:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l596U5ro064143; Sat, 9 Jun 2007 06:30:05 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 06:30:05 GMT Resent-Message-Id: <200706090630.l596U5ro064143@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BC1616A46B for ; Sat, 9 Jun 2007 06:20:54 +0000 (UTC) (envelope-from anders@troback.com) Received: from devil.troback.com (c-195-216-040-156.cust.thalamus.net [195.216.40.156]) by mx1.freebsd.org (Postfix) with ESMTP id F08CD13C46C for ; Sat, 9 Jun 2007 06:20:51 +0000 (UTC) (envelope-from anders@troback.com) Received: by devil.troback.com (Postfix, from userid 1001) id 138CC11486; Sat, 9 Jun 2007 00:33:55 +0200 (CEST) Message-Id: <20070608223355.138CC11486@devil.troback.com> Date: Sat, 9 Jun 2007 00:33:55 +0200 (CEST) From: freebsd@troback.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113487: Update port: science/gramps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: anders@troback.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 06:30:05 -0000 >Number: 113487 >Category: ports >Synopsis: Update port: science/gramps >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 06:30:04 GMT 2007 >Closed-Date: >Last-Modified: >Originator: >Release: >Organization: >Environment: >Description: Update Gramps to 2.2.8. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gramps # gramps/files # gramps/files/patch-gmsgfmt # gramps/pkg-descr # gramps/Makefile # gramps/distinfo # gramps/pkg-plist # echo c - gramps mkdir -p gramps > /dev/null 2>&1 echo c - gramps/files mkdir -p gramps/files > /dev/null 2>&1 echo x - gramps/files/patch-gmsgfmt sed 's/^X//' >gramps/files/patch-gmsgfmt << 'END-of-gramps/files/patch-gmsgfmt' X--- po/Makefile.in.in.orig Sat Feb 24 23:37:26 2007 X+++ po/Makefile.in.in Sat Feb 24 23:38:02 2007 X@@ -34,7 +34,7 @@ X datarootdir = @datarootdir@ X libdir = @libdir@ X DATADIRNAME = @DATADIRNAME@ X-itlocaledir = $(prefix)/$(DATADIRNAME)/locale X+itlocaledir = $(prefix)/share/locale X subdir = po X install_sh = @install_sh@ X # Automake >= 1.8 provides @mkdir_p@. X@@ -44,7 +44,7 @@ X INSTALL = @INSTALL@ X INSTALL_DATA = @INSTALL_DATA@ X X-GMSGFMT = @GMSGFMT@ X+GMSGFMT = @INTLTOOL_MSGFMT@ X MSGFMT = @MSGFMT@ X XGETTEXT = @XGETTEXT@ X INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ END-of-gramps/files/patch-gmsgfmt echo x - gramps/pkg-descr sed 's/^X//' >gramps/pkg-descr << 'END-of-gramps/pkg-descr' XGRAMPS (Genealogical Research and Analysis Management Programming System) Xis an open source genealogy program. XTo put it shortly, it allows you to store, edit, and research genealogical Xdata using your computer. Its functionality is somewhat common to other Xgenealogical programs. However, GRAMPS offers some unique features. X XIt is written in Python, using the GTK/GNOME interface. X XWWW: http://gramps-project.org/ X X-Stefan 'Steve' Tell Xstefan.tell@crashmail.de END-of-gramps/pkg-descr echo x - gramps/Makefile sed 's/^X//' >gramps/Makefile << 'END-of-gramps/Makefile' X# New ports collection makefile for: gramps X# Date created: 2003-12-25 X# Whom: Andreas Fehlner X# X# $FreeBSD: ports/science/gramps/Makefile,v 1.27 2007/05/19 20:22:10 flz Exp $ X# $MCom: ports/science/gramps/Makefile,v 1.2 2006/10/10 20:22:19 mezz Exp $ X# X XPORTNAME= gramps XPORTVERSION= 2.2.8 XCATEGORIES= science gnome python XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= gramps X XMAINTAINER= freebsd@troback.com XCOMMENT= A GTK/GNOME-based genealogy program written in Python X XRUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb \ X ${PYTHON_LIBDIR}/site-packages/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml X XUSE_XLIB= yes XUSE_PYTHON= yes XUSE_GETTEXT= yes XUSE_GMAKE= yes XUSE_GNOME= gnomehack pygnome2 pygnomeextras desktopfileutils gnomedocutils XGNU_CONFIGURE= yes XINSTALLS_OMF= yes XINSTALLS_ICONS= yes XCONFIGURE_ARGS= --mandir=${PREFIX}/man X XMAN1= gramps.1 XGCONF_SCHEMAS= gramps.schemas X XUSE_BDB= 42+ XINVALID_BDB_VER= 2 3 40 41 X X.include END-of-gramps/Makefile echo x - gramps/distinfo sed 's/^X//' >gramps/distinfo << 'END-of-gramps/distinfo' XMD5 (gramps-2.2.8.tar.gz) = 9769ee41ec09d7b55a805940ac20894d XSHA256 (gramps-2.2.8.tar.gz) = 7e83568e03a01ed97be9f2c4ee5596b89e962b5bcb85f0514875140f78eff9c0 XSIZE (gramps-2.2.8.tar.gz) = 16942280 END-of-gramps/distinfo echo x - gramps/pkg-plist sed 's/^X//' >gramps/pkg-plist << 'END-of-gramps/pkg-plist' Xbin/gramps Xshare/application-registry/gramps.applications Xshare/applications/gramps.desktop Xshare/gnome/help/gramps/C/figures/bookreport.png Xshare/gnome/help/gramps/C/figures/cfe-ar.png Xshare/gnome/help/gramps/C/figures/cfe-df.png Xshare/gnome/help/gramps/C/figures/child-ref.png Xshare/gnome/help/gramps/C/figures/column-editor.png Xshare/gnome/help/gramps/C/figures/comp-people.png Xshare/gnome/help/gramps/C/figures/date-selection.png Xshare/gnome/help/gramps/C/figures/edit-ad.png Xshare/gnome/help/gramps/C/figures/edit-an.png Xshare/gnome/help/gramps/C/figures/edit-at.png Xshare/gnome/help/gramps/C/figures/edit-bm.png Xshare/gnome/help/gramps/C/figures/edit-ev-ref.png Xshare/gnome/help/gramps/C/figures/edit-ev.png Xshare/gnome/help/gramps/C/figures/edit-family.png Xshare/gnome/help/gramps/C/figures/edit-media.png Xshare/gnome/help/gramps/C/figures/edit-person-addresses.png Xshare/gnome/help/gramps/C/figures/edit-person-assoc.png Xshare/gnome/help/gramps/C/figures/edit-person-attributes.png Xshare/gnome/help/gramps/C/figures/edit-person-gallery.png Xshare/gnome/help/gramps/C/figures/edit-person-internet.png Xshare/gnome/help/gramps/C/figures/edit-person-lds.png Xshare/gnome/help/gramps/C/figures/edit-person-names.png Xshare/gnome/help/gramps/C/figures/edit-person-notes.png Xshare/gnome/help/gramps/C/figures/edit-person-sources.png Xshare/gnome/help/gramps/C/figures/edit-person.png Xshare/gnome/help/gramps/C/figures/edit-plc.png Xshare/gnome/help/gramps/C/figures/edit-rel.png Xshare/gnome/help/gramps/C/figures/edit-si.png Xshare/gnome/help/gramps/C/figures/edit-src.png Xshare/gnome/help/gramps/C/figures/events.png Xshare/gnome/help/gramps/C/figures/export-druid.png Xshare/gnome/help/gramps/C/figures/family-list.png Xshare/gnome/help/gramps/C/figures/family-warn.png Xshare/gnome/help/gramps/C/figures/family.png Xshare/gnome/help/gramps/C/figures/find-people.png Xshare/gnome/help/gramps/C/figures/first-open.png Xshare/gnome/help/gramps/C/figures/gedcom-export.png Xshare/gnome/help/gramps/C/figures/mainwin.png Xshare/gnome/help/gramps/C/figures/media.png Xshare/gnome/help/gramps/C/figures/merge-people.png Xshare/gnome/help/gramps/C/figures/merge-plc.png Xshare/gnome/help/gramps/C/figures/merge-src.png Xshare/gnome/help/gramps/C/figures/noside-nofilt.png Xshare/gnome/help/gramps/C/figures/pedigree-child-cut.png Xshare/gnome/help/gramps/C/figures/pedigree-siblings-cut.png Xshare/gnome/help/gramps/C/figures/pedigree.png Xshare/gnome/help/gramps/C/figures/places.png Xshare/gnome/help/gramps/C/figures/prefs.png Xshare/gnome/help/gramps/C/figures/reorder.png Xshare/gnome/help/gramps/C/figures/repository.png Xshare/gnome/help/gramps/C/figures/researcher.png Xshare/gnome/help/gramps/C/figures/scratch-pad.png Xshare/gnome/help/gramps/C/figures/select-family.png Xshare/gnome/help/gramps/C/figures/select-person.png Xshare/gnome/help/gramps/C/figures/side-filt.png Xshare/gnome/help/gramps/C/figures/sources.png Xshare/gnome/help/gramps/C/gramps.xml Xshare/gnome/help/gramps/de/figures/bookreport.png Xshare/gnome/help/gramps/de/figures/cfe-ar.png Xshare/gnome/help/gramps/de/figures/cfe-df.png Xshare/gnome/help/gramps/de/figures/child-ref.png Xshare/gnome/help/gramps/de/figures/column-editor.png Xshare/gnome/help/gramps/de/figures/comp-people.png Xshare/gnome/help/gramps/de/figures/date-selection.png Xshare/gnome/help/gramps/de/figures/edit-ad.png Xshare/gnome/help/gramps/de/figures/edit-an.png Xshare/gnome/help/gramps/de/figures/edit-at.png Xshare/gnome/help/gramps/de/figures/edit-bm.png Xshare/gnome/help/gramps/de/figures/edit-ev-ref.png Xshare/gnome/help/gramps/de/figures/edit-ev.png Xshare/gnome/help/gramps/de/figures/edit-family.png Xshare/gnome/help/gramps/de/figures/edit-media.png Xshare/gnome/help/gramps/de/figures/edit-person-addresses.png Xshare/gnome/help/gramps/de/figures/edit-person-assoc.png Xshare/gnome/help/gramps/de/figures/edit-person-attributes.png Xshare/gnome/help/gramps/de/figures/edit-person-gallery.png Xshare/gnome/help/gramps/de/figures/edit-person-internet.png Xshare/gnome/help/gramps/de/figures/edit-person-lds.png Xshare/gnome/help/gramps/de/figures/edit-person-names.png Xshare/gnome/help/gramps/de/figures/edit-person-notes.png Xshare/gnome/help/gramps/de/figures/edit-person-sources.png Xshare/gnome/help/gramps/de/figures/edit-person.png Xshare/gnome/help/gramps/de/figures/edit-plc.png Xshare/gnome/help/gramps/de/figures/edit-rel.png Xshare/gnome/help/gramps/de/figures/edit-si.png Xshare/gnome/help/gramps/de/figures/edit-src.png Xshare/gnome/help/gramps/de/figures/events.png Xshare/gnome/help/gramps/de/figures/export-druid.png Xshare/gnome/help/gramps/de/figures/family-list.png Xshare/gnome/help/gramps/de/figures/family-warn.png Xshare/gnome/help/gramps/de/figures/family.png Xshare/gnome/help/gramps/de/figures/find-people.png Xshare/gnome/help/gramps/de/figures/first-open.png Xshare/gnome/help/gramps/de/figures/gedcom-export.png Xshare/gnome/help/gramps/de/figures/mainwin.png Xshare/gnome/help/gramps/de/figures/media.png Xshare/gnome/help/gramps/de/figures/merge-people.png Xshare/gnome/help/gramps/de/figures/merge-plc.png Xshare/gnome/help/gramps/de/figures/merge-src.png Xshare/gnome/help/gramps/de/figures/noside-nofilt.png Xshare/gnome/help/gramps/de/figures/pedigree-child-cut.png Xshare/gnome/help/gramps/de/figures/pedigree-siblings-cut.png Xshare/gnome/help/gramps/de/figures/pedigree.png Xshare/gnome/help/gramps/de/figures/places.png Xshare/gnome/help/gramps/de/figures/prefs.png Xshare/gnome/help/gramps/de/figures/reorder.png Xshare/gnome/help/gramps/de/figures/repository.png Xshare/gnome/help/gramps/de/figures/researcher.png Xshare/gnome/help/gramps/de/figures/scratch-pad.png Xshare/gnome/help/gramps/de/figures/select-family.png Xshare/gnome/help/gramps/de/figures/select-person.png Xshare/gnome/help/gramps/de/figures/side-filt.png Xshare/gnome/help/gramps/de/figures/sources.png Xshare/gnome/help/gramps/de/gramps.xml Xshare/gnome/help/gramps/fr/figures/bookreport.png Xshare/gnome/help/gramps/fr/figures/cfe-ar.png Xshare/gnome/help/gramps/fr/figures/cfe-df.png Xshare/gnome/help/gramps/fr/figures/child-ref.png Xshare/gnome/help/gramps/fr/figures/column-editor.png Xshare/gnome/help/gramps/fr/figures/comp-people.png Xshare/gnome/help/gramps/fr/figures/date-selection.png Xshare/gnome/help/gramps/fr/figures/edit-ad.png Xshare/gnome/help/gramps/fr/figures/edit-an.png Xshare/gnome/help/gramps/fr/figures/edit-at.png Xshare/gnome/help/gramps/fr/figures/edit-bm.png Xshare/gnome/help/gramps/fr/figures/edit-ev-ref.png Xshare/gnome/help/gramps/fr/figures/edit-ev.png Xshare/gnome/help/gramps/fr/figures/edit-family.png Xshare/gnome/help/gramps/fr/figures/edit-media.png Xshare/gnome/help/gramps/fr/figures/edit-person-addresses.png Xshare/gnome/help/gramps/fr/figures/edit-person-assoc.png Xshare/gnome/help/gramps/fr/figures/edit-person-attributes.png Xshare/gnome/help/gramps/fr/figures/edit-person-gallery.png Xshare/gnome/help/gramps/fr/figures/edit-person-internet.png Xshare/gnome/help/gramps/fr/figures/edit-person-lds.png Xshare/gnome/help/gramps/fr/figures/edit-person-names.png Xshare/gnome/help/gramps/fr/figures/edit-person-notes.png Xshare/gnome/help/gramps/fr/figures/edit-person-sources.png Xshare/gnome/help/gramps/fr/figures/edit-person.png Xshare/gnome/help/gramps/fr/figures/edit-plc.png Xshare/gnome/help/gramps/fr/figures/edit-rel.png Xshare/gnome/help/gramps/fr/figures/edit-si.png Xshare/gnome/help/gramps/fr/figures/edit-src.png Xshare/gnome/help/gramps/fr/figures/events.png Xshare/gnome/help/gramps/fr/figures/export-druid.png Xshare/gnome/help/gramps/fr/figures/family-list.png Xshare/gnome/help/gramps/fr/figures/family-warn.png Xshare/gnome/help/gramps/fr/figures/family.png Xshare/gnome/help/gramps/fr/figures/find-people.png Xshare/gnome/help/gramps/fr/figures/first-open.png Xshare/gnome/help/gramps/fr/figures/gedcom-export.png Xshare/gnome/help/gramps/fr/figures/mainwin.png Xshare/gnome/help/gramps/fr/figures/media.png Xshare/gnome/help/gramps/fr/figures/merge-people.png Xshare/gnome/help/gramps/fr/figures/merge-plc.png Xshare/gnome/help/gramps/fr/figures/merge-src.png Xshare/gnome/help/gramps/fr/figures/noside-nofilt.png Xshare/gnome/help/gramps/fr/figures/pedigree-child-cut.png Xshare/gnome/help/gramps/fr/figures/pedigree-siblings-cut.png Xshare/gnome/help/gramps/fr/figures/pedigree.png Xshare/gnome/help/gramps/fr/figures/places.png Xshare/gnome/help/gramps/fr/figures/prefs.png Xshare/gnome/help/gramps/fr/figures/reorder.png Xshare/gnome/help/gramps/fr/figures/repository.png Xshare/gnome/help/gramps/fr/figures/researcher.png Xshare/gnome/help/gramps/fr/figures/scratch-pad.png Xshare/gnome/help/gramps/fr/figures/select-family.png Xshare/gnome/help/gramps/fr/figures/select-person.png Xshare/gnome/help/gramps/fr/figures/side-filt.png Xshare/gnome/help/gramps/fr/figures/sources.png Xshare/gnome/help/gramps/fr/gramps.xml Xshare/gnome/help/gramps/nb/figures/bookreport.png Xshare/gnome/help/gramps/nb/figures/cfe-ar.png Xshare/gnome/help/gramps/nb/figures/cfe-df.png Xshare/gnome/help/gramps/nb/figures/child-ref.png Xshare/gnome/help/gramps/nb/figures/column-editor.png Xshare/gnome/help/gramps/nb/figures/comp-people.png Xshare/gnome/help/gramps/nb/figures/date-selection.png Xshare/gnome/help/gramps/nb/figures/edit-ad.png Xshare/gnome/help/gramps/nb/figures/edit-an.png Xshare/gnome/help/gramps/nb/figures/edit-at.png Xshare/gnome/help/gramps/nb/figures/edit-bm.png Xshare/gnome/help/gramps/nb/figures/edit-ev-ref.png Xshare/gnome/help/gramps/nb/figures/edit-ev.png Xshare/gnome/help/gramps/nb/figures/edit-family.png Xshare/gnome/help/gramps/nb/figures/edit-media.png Xshare/gnome/help/gramps/nb/figures/edit-person-addresses.png Xshare/gnome/help/gramps/nb/figures/edit-person-assoc.png Xshare/gnome/help/gramps/nb/figures/edit-person-attributes.png Xshare/gnome/help/gramps/nb/figures/edit-person-gallery.png Xshare/gnome/help/gramps/nb/figures/edit-person-internet.png Xshare/gnome/help/gramps/nb/figures/edit-person-lds.png Xshare/gnome/help/gramps/nb/figures/edit-person-names.png Xshare/gnome/help/gramps/nb/figures/edit-person-notes.png Xshare/gnome/help/gramps/nb/figures/edit-person-sources.png Xshare/gnome/help/gramps/nb/figures/edit-person.png Xshare/gnome/help/gramps/nb/figures/edit-plc.png Xshare/gnome/help/gramps/nb/figures/edit-rel.png Xshare/gnome/help/gramps/nb/figures/edit-si.png Xshare/gnome/help/gramps/nb/figures/edit-src.png Xshare/gnome/help/gramps/nb/figures/events.png Xshare/gnome/help/gramps/nb/figures/export-druid.png Xshare/gnome/help/gramps/nb/figures/family-list.png Xshare/gnome/help/gramps/nb/figures/family-warn.png Xshare/gnome/help/gramps/nb/figures/family.png Xshare/gnome/help/gramps/nb/figures/find-people.png Xshare/gnome/help/gramps/nb/figures/first-open.png Xshare/gnome/help/gramps/nb/figures/gedcom-export.png Xshare/gnome/help/gramps/nb/figures/mainwin.png Xshare/gnome/help/gramps/nb/figures/media.png Xshare/gnome/help/gramps/nb/figures/merge-people.png Xshare/gnome/help/gramps/nb/figures/merge-plc.png Xshare/gnome/help/gramps/nb/figures/merge-src.png Xshare/gnome/help/gramps/nb/figures/noside-nofilt.png Xshare/gnome/help/gramps/nb/figures/pedigree-child-cut.png Xshare/gnome/help/gramps/nb/figures/pedigree-siblings-cut.png Xshare/gnome/help/gramps/nb/figures/pedigree.png Xshare/gnome/help/gramps/nb/figures/places.png Xshare/gnome/help/gramps/nb/figures/prefs.png Xshare/gnome/help/gramps/nb/figures/reorder.png Xshare/gnome/help/gramps/nb/figures/repository.png Xshare/gnome/help/gramps/nb/figures/researcher.png Xshare/gnome/help/gramps/nb/figures/scratch-pad.png Xshare/gnome/help/gramps/nb/figures/select-family.png Xshare/gnome/help/gramps/nb/figures/select-person.png Xshare/gnome/help/gramps/nb/figures/side-filt.png Xshare/gnome/help/gramps/nb/figures/sources.png Xshare/gnome/help/gramps/nb/gramps.xml Xshare/gnome/help/gramps/nl/figures/bookreport.png Xshare/gnome/help/gramps/nl/figures/cfe-ar.png Xshare/gnome/help/gramps/nl/figures/cfe-df.png Xshare/gnome/help/gramps/nl/figures/child-ref.png Xshare/gnome/help/gramps/nl/figures/column-editor.png Xshare/gnome/help/gramps/nl/figures/comp-people.png Xshare/gnome/help/gramps/nl/figures/date-selection.png Xshare/gnome/help/gramps/nl/figures/edit-ad.png Xshare/gnome/help/gramps/nl/figures/edit-an.png Xshare/gnome/help/gramps/nl/figures/edit-at.png Xshare/gnome/help/gramps/nl/figures/edit-bm.png Xshare/gnome/help/gramps/nl/figures/edit-ev-ref.png Xshare/gnome/help/gramps/nl/figures/edit-ev.png Xshare/gnome/help/gramps/nl/figures/edit-family.png Xshare/gnome/help/gramps/nl/figures/edit-media.png Xshare/gnome/help/gramps/nl/figures/edit-person-addresses.png Xshare/gnome/help/gramps/nl/figures/edit-person-assoc.png Xshare/gnome/help/gramps/nl/figures/edit-person-attributes.png Xshare/gnome/help/gramps/nl/figures/edit-person-gallery.png Xshare/gnome/help/gramps/nl/figures/edit-person-internet.png Xshare/gnome/help/gramps/nl/figures/edit-person-lds.png Xshare/gnome/help/gramps/nl/figures/edit-person-names.png Xshare/gnome/help/gramps/nl/figures/edit-person-notes.png Xshare/gnome/help/gramps/nl/figures/edit-person-sources.png Xshare/gnome/help/gramps/nl/figures/edit-person.png Xshare/gnome/help/gramps/nl/figures/edit-plc.png Xshare/gnome/help/gramps/nl/figures/edit-rel.png Xshare/gnome/help/gramps/nl/figures/edit-si.png Xshare/gnome/help/gramps/nl/figures/edit-src.png Xshare/gnome/help/gramps/nl/figures/events.png Xshare/gnome/help/gramps/nl/figures/export-druid.png Xshare/gnome/help/gramps/nl/figures/family-list.png Xshare/gnome/help/gramps/nl/figures/family-warn.png Xshare/gnome/help/gramps/nl/figures/family.png Xshare/gnome/help/gramps/nl/figures/find-people.png Xshare/gnome/help/gramps/nl/figures/first-open.png Xshare/gnome/help/gramps/nl/figures/gedcom-export.png Xshare/gnome/help/gramps/nl/figures/mainwin.png Xshare/gnome/help/gramps/nl/figures/media.png Xshare/gnome/help/gramps/nl/figures/merge-people.png Xshare/gnome/help/gramps/nl/figures/merge-plc.png Xshare/gnome/help/gramps/nl/figures/merge-src.png Xshare/gnome/help/gramps/nl/figures/noside-nofilt.png Xshare/gnome/help/gramps/nl/figures/pedigree-child-cut.png Xshare/gnome/help/gramps/nl/figures/pedigree-siblings-cut.png Xshare/gnome/help/gramps/nl/figures/pedigree.png Xshare/gnome/help/gramps/nl/figures/places.png Xshare/gnome/help/gramps/nl/figures/prefs.png Xshare/gnome/help/gramps/nl/figures/reorder.png Xshare/gnome/help/gramps/nl/figures/repository.png Xshare/gnome/help/gramps/nl/figures/researcher.png Xshare/gnome/help/gramps/nl/figures/scratch-pad.png Xshare/gnome/help/gramps/nl/figures/select-family.png Xshare/gnome/help/gramps/nl/figures/select-person.png Xshare/gnome/help/gramps/nl/figures/side-filt.png Xshare/gnome/help/gramps/nl/figures/sources.png Xshare/gnome/help/gramps/nl/gramps.xml Xshare/gnome/help/gramps/sk/figures/bookreport.png Xshare/gnome/help/gramps/sk/figures/cfe-ar.png Xshare/gnome/help/gramps/sk/figures/cfe-df.png Xshare/gnome/help/gramps/sk/figures/child-ref.png Xshare/gnome/help/gramps/sk/figures/column-editor.png Xshare/gnome/help/gramps/sk/figures/comp-people.png Xshare/gnome/help/gramps/sk/figures/date-selection.png Xshare/gnome/help/gramps/sk/figures/edit-ad.png Xshare/gnome/help/gramps/sk/figures/edit-an.png Xshare/gnome/help/gramps/sk/figures/edit-at.png Xshare/gnome/help/gramps/sk/figures/edit-bm.png Xshare/gnome/help/gramps/sk/figures/edit-ev-ref.png Xshare/gnome/help/gramps/sk/figures/edit-ev.png Xshare/gnome/help/gramps/sk/figures/edit-family.png Xshare/gnome/help/gramps/sk/figures/edit-media.png Xshare/gnome/help/gramps/sk/figures/edit-person-addresses.png Xshare/gnome/help/gramps/sk/figures/edit-person-assoc.png Xshare/gnome/help/gramps/sk/figures/edit-person-attributes.png Xshare/gnome/help/gramps/sk/figures/edit-person-gallery.png Xshare/gnome/help/gramps/sk/figures/edit-person-internet.png Xshare/gnome/help/gramps/sk/figures/edit-person-lds.png Xshare/gnome/help/gramps/sk/figures/edit-person-names.png Xshare/gnome/help/gramps/sk/figures/edit-person-notes.png Xshare/gnome/help/gramps/sk/figures/edit-person-sources.png Xshare/gnome/help/gramps/sk/figures/edit-person.png Xshare/gnome/help/gramps/sk/figures/edit-plc.png Xshare/gnome/help/gramps/sk/figures/edit-rel.png Xshare/gnome/help/gramps/sk/figures/edit-si.png Xshare/gnome/help/gramps/sk/figures/edit-src.png Xshare/gnome/help/gramps/sk/figures/events.png Xshare/gnome/help/gramps/sk/figures/export-druid.png Xshare/gnome/help/gramps/sk/figures/family-list.png Xshare/gnome/help/gramps/sk/figures/family-warn.png Xshare/gnome/help/gramps/sk/figures/family.png Xshare/gnome/help/gramps/sk/figures/find-people.png Xshare/gnome/help/gramps/sk/figures/first-open.png Xshare/gnome/help/gramps/sk/figures/gedcom-export.png Xshare/gnome/help/gramps/sk/figures/mainwin.png Xshare/gnome/help/gramps/sk/figures/media.png Xshare/gnome/help/gramps/sk/figures/merge-people.png Xshare/gnome/help/gramps/sk/figures/merge-plc.png Xshare/gnome/help/gramps/sk/figures/merge-src.png Xshare/gnome/help/gramps/sk/figures/noside-nofilt.png Xshare/gnome/help/gramps/sk/figures/pedigree-child-cut.png Xshare/gnome/help/gramps/sk/figures/pedigree-siblings-cut.png Xshare/gnome/help/gramps/sk/figures/pedigree.png Xshare/gnome/help/gramps/sk/figures/places.png Xshare/gnome/help/gramps/sk/figures/prefs.png Xshare/gnome/help/gramps/sk/figures/reorder.png Xshare/gnome/help/gramps/sk/figures/repository.png Xshare/gnome/help/gramps/sk/figures/researcher.png Xshare/gnome/help/gramps/sk/figures/scratch-pad.png Xshare/gnome/help/gramps/sk/figures/select-family.png Xshare/gnome/help/gramps/sk/figures/select-person.png Xshare/gnome/help/gramps/sk/figures/side-filt.png Xshare/gnome/help/gramps/sk/figures/sources.png Xshare/gnome/help/gramps/sk/gramps.xml Xshare/gramps/AddMedia.py Xshare/gramps/AddMedia.pyc Xshare/gramps/AddMedia.pyo Xshare/gramps/ArgHandler.py Xshare/gramps/ArgHandler.pyc Xshare/gramps/ArgHandler.pyo Xshare/gramps/Assistant.py Xshare/gramps/Assistant.pyc Xshare/gramps/Assistant.pyo Xshare/gramps/AutoComp.py Xshare/gramps/AutoComp.pyc Xshare/gramps/AutoComp.pyo Xshare/gramps/BaseDoc.py Xshare/gramps/BaseDoc.pyc Xshare/gramps/BaseDoc.pyo Xshare/gramps/BasicUtils.py Xshare/gramps/BasicUtils.pyc Xshare/gramps/BasicUtils.pyo Xshare/gramps/Bookmarks.py Xshare/gramps/Bookmarks.pyc Xshare/gramps/Bookmarks.pyo Xshare/gramps/COPYING Xshare/gramps/ColumnOrder.py Xshare/gramps/ColumnOrder.pyc Xshare/gramps/ColumnOrder.pyo Xshare/gramps/Config/_GrampsConfigKeys.py Xshare/gramps/Config/_GrampsConfigKeys.pyc Xshare/gramps/Config/_GrampsConfigKeys.pyo Xshare/gramps/Config/_GrampsGconfKeys.py Xshare/gramps/Config/_GrampsGconfKeys.pyc Xshare/gramps/Config/_GrampsGconfKeys.pyo Xshare/gramps/Config/_GrampsIniKeys.py Xshare/gramps/Config/_GrampsIniKeys.pyc Xshare/gramps/Config/_GrampsIniKeys.pyo Xshare/gramps/Config/__init__.py Xshare/gramps/Config/__init__.pyc Xshare/gramps/Config/__init__.pyo Xshare/gramps/DataViews/_EventView.py Xshare/gramps/DataViews/_EventView.pyc Xshare/gramps/DataViews/_EventView.pyo Xshare/gramps/DataViews/_FamilyList.py Xshare/gramps/DataViews/_FamilyList.pyc Xshare/gramps/DataViews/_FamilyList.pyo Xshare/gramps/DataViews/_MediaView.py Xshare/gramps/DataViews/_MediaView.pyc Xshare/gramps/DataViews/_MediaView.pyo Xshare/gramps/DataViews/_PedigreeView.py Xshare/gramps/DataViews/_PedigreeView.pyc Xshare/gramps/DataViews/_PedigreeView.pyo Xshare/gramps/DataViews/_PersonView.py Xshare/gramps/DataViews/_PersonView.pyc Xshare/gramps/DataViews/_PersonView.pyo Xshare/gramps/DataViews/_PlaceView.py Xshare/gramps/DataViews/_PlaceView.pyc Xshare/gramps/DataViews/_PlaceView.pyo Xshare/gramps/DataViews/_RelationView.py Xshare/gramps/DataViews/_RelationView.pyc Xshare/gramps/DataViews/_RelationView.pyo Xshare/gramps/DataViews/_RepositoryView.py Xshare/gramps/DataViews/_RepositoryView.pyc Xshare/gramps/DataViews/_RepositoryView.pyo Xshare/gramps/DataViews/_SourceView.py Xshare/gramps/DataViews/_SourceView.pyc Xshare/gramps/DataViews/_SourceView.pyo Xshare/gramps/DataViews/__init__.py Xshare/gramps/DataViews/__init__.pyc Xshare/gramps/DataViews/__init__.pyo Xshare/gramps/Date.py Xshare/gramps/Date.pyc Xshare/gramps/Date.pyo Xshare/gramps/DateEdit.py Xshare/gramps/DateEdit.pyc Xshare/gramps/DateEdit.pyo Xshare/gramps/DateHandler/_DateDisplay.py Xshare/gramps/DateHandler/_DateDisplay.pyc Xshare/gramps/DateHandler/_DateDisplay.pyo Xshare/gramps/DateHandler/_DateHandler.py Xshare/gramps/DateHandler/_DateHandler.pyc Xshare/gramps/DateHandler/_DateHandler.pyo Xshare/gramps/DateHandler/_DateParser.py Xshare/gramps/DateHandler/_DateParser.pyc Xshare/gramps/DateHandler/_DateParser.pyo Xshare/gramps/DateHandler/_DateUtils.py Xshare/gramps/DateHandler/_DateUtils.pyc Xshare/gramps/DateHandler/_DateUtils.pyo Xshare/gramps/DateHandler/_Date_de.py Xshare/gramps/DateHandler/_Date_de.pyc Xshare/gramps/DateHandler/_Date_de.pyo Xshare/gramps/DateHandler/_Date_es.py Xshare/gramps/DateHandler/_Date_es.pyc Xshare/gramps/DateHandler/_Date_es.pyo Xshare/gramps/DateHandler/_Date_fi.py Xshare/gramps/DateHandler/_Date_fi.pyc Xshare/gramps/DateHandler/_Date_fi.pyo Xshare/gramps/DateHandler/_Date_fr.py Xshare/gramps/DateHandler/_Date_fr.pyc Xshare/gramps/DateHandler/_Date_fr.pyo Xshare/gramps/DateHandler/_Date_lt.py Xshare/gramps/DateHandler/_Date_lt.pyc Xshare/gramps/DateHandler/_Date_lt.pyo Xshare/gramps/DateHandler/_Date_nb.py Xshare/gramps/DateHandler/_Date_nb.pyc Xshare/gramps/DateHandler/_Date_nb.pyo Xshare/gramps/DateHandler/_Date_nl.py Xshare/gramps/DateHandler/_Date_nl.pyc Xshare/gramps/DateHandler/_Date_nl.pyo Xshare/gramps/DateHandler/_Date_ru.py Xshare/gramps/DateHandler/_Date_ru.pyc Xshare/gramps/DateHandler/_Date_ru.pyo Xshare/gramps/DateHandler/_Date_sk.py Xshare/gramps/DateHandler/_Date_sk.pyc Xshare/gramps/DateHandler/_Date_sk.pyo Xshare/gramps/DateHandler/_Date_sv.py Xshare/gramps/DateHandler/_Date_sv.pyc Xshare/gramps/DateHandler/_Date_sv.pyo Xshare/gramps/DateHandler/__init__.py Xshare/gramps/DateHandler/__init__.pyc Xshare/gramps/DateHandler/__init__.pyo Xshare/gramps/DbLoader.py Xshare/gramps/DbLoader.pyc Xshare/gramps/DbLoader.pyo Xshare/gramps/DdTargets.py Xshare/gramps/DdTargets.pyc Xshare/gramps/DdTargets.pyo Xshare/gramps/DisplayModels/_BaseModel.py Xshare/gramps/DisplayModels/_BaseModel.pyc Xshare/gramps/DisplayModels/_BaseModel.pyo Xshare/gramps/DisplayModels/_EventModel.py Xshare/gramps/DisplayModels/_EventModel.pyc Xshare/gramps/DisplayModels/_EventModel.pyo Xshare/gramps/DisplayModels/_FamilyModel.py Xshare/gramps/DisplayModels/_FamilyModel.pyc Xshare/gramps/DisplayModels/_FamilyModel.pyo Xshare/gramps/DisplayModels/_MediaModel.py Xshare/gramps/DisplayModels/_MediaModel.pyc Xshare/gramps/DisplayModels/_MediaModel.pyo Xshare/gramps/DisplayModels/_PeopleModel.py Xshare/gramps/DisplayModels/_PeopleModel.pyc Xshare/gramps/DisplayModels/_PeopleModel.pyo Xshare/gramps/DisplayModels/_PlaceModel.py Xshare/gramps/DisplayModels/_PlaceModel.pyc Xshare/gramps/DisplayModels/_PlaceModel.pyo Xshare/gramps/DisplayModels/_RepositoryModel.py Xshare/gramps/DisplayModels/_RepositoryModel.pyc Xshare/gramps/DisplayModels/_RepositoryModel.pyo Xshare/gramps/DisplayModels/_SourceModel.py Xshare/gramps/DisplayModels/_SourceModel.pyc Xshare/gramps/DisplayModels/_SourceModel.pyo Xshare/gramps/DisplayModels/__init__.py Xshare/gramps/DisplayModels/__init__.pyc Xshare/gramps/DisplayModels/__init__.pyo Xshare/gramps/DisplayState.py Xshare/gramps/DisplayState.pyc Xshare/gramps/DisplayState.pyo Xshare/gramps/DisplayTabs/_AddrEmbedList.py Xshare/gramps/DisplayTabs/_AddrEmbedList.pyc Xshare/gramps/DisplayTabs/_AddrEmbedList.pyo Xshare/gramps/DisplayTabs/_AddressModel.py Xshare/gramps/DisplayTabs/_AddressModel.pyc Xshare/gramps/DisplayTabs/_AddressModel.pyo Xshare/gramps/DisplayTabs/_AttrEmbedList.py Xshare/gramps/DisplayTabs/_AttrEmbedList.pyc Xshare/gramps/DisplayTabs/_AttrEmbedList.pyo Xshare/gramps/DisplayTabs/_AttrModel.py Xshare/gramps/DisplayTabs/_AttrModel.pyc Xshare/gramps/DisplayTabs/_AttrModel.pyo Xshare/gramps/DisplayTabs/_BackRefList.py Xshare/gramps/DisplayTabs/_BackRefList.pyc Xshare/gramps/DisplayTabs/_BackRefList.pyo Xshare/gramps/DisplayTabs/_BackRefModel.py Xshare/gramps/DisplayTabs/_BackRefModel.pyc Xshare/gramps/DisplayTabs/_BackRefModel.pyo Xshare/gramps/DisplayTabs/_ButtonTab.py Xshare/gramps/DisplayTabs/_ButtonTab.pyc Xshare/gramps/DisplayTabs/_ButtonTab.pyo Xshare/gramps/DisplayTabs/_ChildModel.py Xshare/gramps/DisplayTabs/_ChildModel.pyc Xshare/gramps/DisplayTabs/_ChildModel.pyo Xshare/gramps/DisplayTabs/_DataEmbedList.py Xshare/gramps/DisplayTabs/_DataEmbedList.pyc Xshare/gramps/DisplayTabs/_DataEmbedList.pyo Xshare/gramps/DisplayTabs/_DataModel.py Xshare/gramps/DisplayTabs/_DataModel.pyc Xshare/gramps/DisplayTabs/_DataModel.pyo Xshare/gramps/DisplayTabs/_EmbeddedList.py Xshare/gramps/DisplayTabs/_EmbeddedList.pyc Xshare/gramps/DisplayTabs/_EmbeddedList.pyo Xshare/gramps/DisplayTabs/_EventBackRefList.py Xshare/gramps/DisplayTabs/_EventBackRefList.pyc Xshare/gramps/DisplayTabs/_EventBackRefList.pyo Xshare/gramps/DisplayTabs/_EventEmbedList.py Xshare/gramps/DisplayTabs/_EventEmbedList.pyc Xshare/gramps/DisplayTabs/_EventEmbedList.pyo Xshare/gramps/DisplayTabs/_EventRefModel.py Xshare/gramps/DisplayTabs/_EventRefModel.pyc Xshare/gramps/DisplayTabs/_EventRefModel.pyo Xshare/gramps/DisplayTabs/_FamilyAttrEmbedList.py Xshare/gramps/DisplayTabs/_FamilyAttrEmbedList.pyc Xshare/gramps/DisplayTabs/_FamilyAttrEmbedList.pyo Xshare/gramps/DisplayTabs/_FamilyLdsEmbedList.py Xshare/gramps/DisplayTabs/_FamilyLdsEmbedList.pyc Xshare/gramps/DisplayTabs/_FamilyLdsEmbedList.pyo Xshare/gramps/DisplayTabs/_GalleryTab.py Xshare/gramps/DisplayTabs/_GalleryTab.pyc Xshare/gramps/DisplayTabs/_GalleryTab.pyo Xshare/gramps/DisplayTabs/_GrampsTab.py Xshare/gramps/DisplayTabs/_GrampsTab.pyc Xshare/gramps/DisplayTabs/_GrampsTab.pyo Xshare/gramps/DisplayTabs/_LdsEmbedList.py Xshare/gramps/DisplayTabs/_LdsEmbedList.pyc Xshare/gramps/DisplayTabs/_LdsEmbedList.pyo Xshare/gramps/DisplayTabs/_LdsModel.py Xshare/gramps/DisplayTabs/_LdsModel.pyc Xshare/gramps/DisplayTabs/_LdsModel.pyo Xshare/gramps/DisplayTabs/_LocationEmbedList.py Xshare/gramps/DisplayTabs/_LocationEmbedList.pyc Xshare/gramps/DisplayTabs/_LocationEmbedList.pyo Xshare/gramps/DisplayTabs/_LocationModel.py Xshare/gramps/DisplayTabs/_LocationModel.pyc Xshare/gramps/DisplayTabs/_LocationModel.pyo Xshare/gramps/DisplayTabs/_MediaBackRefList.py Xshare/gramps/DisplayTabs/_MediaBackRefList.pyc Xshare/gramps/DisplayTabs/_MediaBackRefList.pyo Xshare/gramps/DisplayTabs/_NameEmbedList.py Xshare/gramps/DisplayTabs/_NameEmbedList.pyc Xshare/gramps/DisplayTabs/_NameEmbedList.pyo Xshare/gramps/DisplayTabs/_NameModel.py Xshare/gramps/DisplayTabs/_NameModel.pyc Xshare/gramps/DisplayTabs/_NameModel.pyo Xshare/gramps/DisplayTabs/_NoteTab.py Xshare/gramps/DisplayTabs/_NoteTab.pyc Xshare/gramps/DisplayTabs/_NoteTab.pyo Xshare/gramps/DisplayTabs/_PersonBackRefList.py Xshare/gramps/DisplayTabs/_PersonBackRefList.pyc Xshare/gramps/DisplayTabs/_PersonBackRefList.pyo Xshare/gramps/DisplayTabs/_PersonEventEmbedList.py Xshare/gramps/DisplayTabs/_PersonEventEmbedList.pyc Xshare/gramps/DisplayTabs/_PersonEventEmbedList.pyo Xshare/gramps/DisplayTabs/_PersonRefEmbedList.py Xshare/gramps/DisplayTabs/_PersonRefEmbedList.pyc Xshare/gramps/DisplayTabs/_PersonRefEmbedList.pyo Xshare/gramps/DisplayTabs/_PersonRefModel.py Xshare/gramps/DisplayTabs/_PersonRefModel.pyc Xshare/gramps/DisplayTabs/_PersonRefModel.pyo Xshare/gramps/DisplayTabs/_PlaceBackRefList.py Xshare/gramps/DisplayTabs/_PlaceBackRefList.pyc Xshare/gramps/DisplayTabs/_PlaceBackRefList.pyo Xshare/gramps/DisplayTabs/_RepoEmbedList.py Xshare/gramps/DisplayTabs/_RepoEmbedList.pyc Xshare/gramps/DisplayTabs/_RepoEmbedList.pyo Xshare/gramps/DisplayTabs/_RepoRefModel.py Xshare/gramps/DisplayTabs/_RepoRefModel.pyc Xshare/gramps/DisplayTabs/_RepoRefModel.pyo Xshare/gramps/DisplayTabs/_SourceBackRefList.py Xshare/gramps/DisplayTabs/_SourceBackRefList.pyc Xshare/gramps/DisplayTabs/_SourceBackRefList.pyo Xshare/gramps/DisplayTabs/_SourceEmbedList.py Xshare/gramps/DisplayTabs/_SourceEmbedList.pyc Xshare/gramps/DisplayTabs/_SourceEmbedList.pyo Xshare/gramps/DisplayTabs/_SourceRefModel.py Xshare/gramps/DisplayTabs/_SourceRefModel.pyc Xshare/gramps/DisplayTabs/_SourceRefModel.pyo Xshare/gramps/DisplayTabs/_TextTab.py Xshare/gramps/DisplayTabs/_TextTab.pyc Xshare/gramps/DisplayTabs/_TextTab.pyo Xshare/gramps/DisplayTabs/_WebEmbedList.py Xshare/gramps/DisplayTabs/_WebEmbedList.pyc Xshare/gramps/DisplayTabs/_WebEmbedList.pyo Xshare/gramps/DisplayTabs/_WebModel.py Xshare/gramps/DisplayTabs/_WebModel.pyc Xshare/gramps/DisplayTabs/_WebModel.pyo Xshare/gramps/DisplayTabs/__init__.py Xshare/gramps/DisplayTabs/__init__.pyc Xshare/gramps/DisplayTabs/__init__.pyo Xshare/gramps/Editors/_EditAddress.py Xshare/gramps/Editors/_EditAddress.pyc Xshare/gramps/Editors/_EditAddress.pyo Xshare/gramps/Editors/_EditAttribute.py Xshare/gramps/Editors/_EditAttribute.pyc Xshare/gramps/Editors/_EditAttribute.pyo Xshare/gramps/Editors/_EditChildRef.py Xshare/gramps/Editors/_EditChildRef.pyc Xshare/gramps/Editors/_EditChildRef.pyo Xshare/gramps/Editors/_EditEvent.py Xshare/gramps/Editors/_EditEvent.pyc Xshare/gramps/Editors/_EditEvent.pyo Xshare/gramps/Editors/_EditEventRef.py Xshare/gramps/Editors/_EditEventRef.pyc Xshare/gramps/Editors/_EditEventRef.pyo Xshare/gramps/Editors/_EditFamily.py Xshare/gramps/Editors/_EditFamily.pyc Xshare/gramps/Editors/_EditFamily.pyo Xshare/gramps/Editors/_EditLdsOrd.py Xshare/gramps/Editors/_EditLdsOrd.pyc Xshare/gramps/Editors/_EditLdsOrd.pyo Xshare/gramps/Editors/_EditLocation.py Xshare/gramps/Editors/_EditLocation.pyc Xshare/gramps/Editors/_EditLocation.pyo Xshare/gramps/Editors/_EditMedia.py Xshare/gramps/Editors/_EditMedia.pyc Xshare/gramps/Editors/_EditMedia.pyo Xshare/gramps/Editors/_EditMediaRef.py Xshare/gramps/Editors/_EditMediaRef.pyc Xshare/gramps/Editors/_EditMediaRef.pyo Xshare/gramps/Editors/_EditName.py Xshare/gramps/Editors/_EditName.pyc Xshare/gramps/Editors/_EditName.pyo Xshare/gramps/Editors/_EditPerson.py Xshare/gramps/Editors/_EditPerson.pyc Xshare/gramps/Editors/_EditPerson.pyo Xshare/gramps/Editors/_EditPersonRef.py Xshare/gramps/Editors/_EditPersonRef.pyc Xshare/gramps/Editors/_EditPersonRef.pyo Xshare/gramps/Editors/_EditPlace.py Xshare/gramps/Editors/_EditPlace.pyc Xshare/gramps/Editors/_EditPlace.pyo Xshare/gramps/Editors/_EditPrimary.py Xshare/gramps/Editors/_EditPrimary.pyc Xshare/gramps/Editors/_EditPrimary.pyo Xshare/gramps/Editors/_EditReference.py Xshare/gramps/Editors/_EditReference.pyc Xshare/gramps/Editors/_EditReference.pyo Xshare/gramps/Editors/_EditRepoRef.py Xshare/gramps/Editors/_EditRepoRef.pyc Xshare/gramps/Editors/_EditRepoRef.pyo Xshare/gramps/Editors/_EditRepository.py Xshare/gramps/Editors/_EditRepository.pyc Xshare/gramps/Editors/_EditRepository.pyo Xshare/gramps/Editors/_EditSecondary.py Xshare/gramps/Editors/_EditSecondary.pyc Xshare/gramps/Editors/_EditSecondary.pyo Xshare/gramps/Editors/_EditSource.py Xshare/gramps/Editors/_EditSource.pyc Xshare/gramps/Editors/_EditSource.pyo Xshare/gramps/Editors/_EditSourceRef.py Xshare/gramps/Editors/_EditSourceRef.pyc Xshare/gramps/Editors/_EditSourceRef.pyo Xshare/gramps/Editors/_EditUrl.py Xshare/gramps/Editors/_EditUrl.pyc Xshare/gramps/Editors/_EditUrl.pyo Xshare/gramps/Editors/__init__.py Xshare/gramps/Editors/__init__.pyc Xshare/gramps/Editors/__init__.pyo Xshare/gramps/Errors.py Xshare/gramps/Errors.pyc Xshare/gramps/Errors.pyo Xshare/gramps/Exporter.py Xshare/gramps/Exporter.pyc Xshare/gramps/Exporter.pyo Xshare/gramps/FilterEditor/_EditFilter.py Xshare/gramps/FilterEditor/_EditFilter.pyc Xshare/gramps/FilterEditor/_EditFilter.pyo Xshare/gramps/FilterEditor/_EditRule.py Xshare/gramps/FilterEditor/_EditRule.pyc Xshare/gramps/FilterEditor/_EditRule.pyo Xshare/gramps/FilterEditor/_FilterEditor.py Xshare/gramps/FilterEditor/_FilterEditor.pyc Xshare/gramps/FilterEditor/_FilterEditor.pyo Xshare/gramps/FilterEditor/_ShowResults.py Xshare/gramps/FilterEditor/_ShowResults.pyc Xshare/gramps/FilterEditor/_ShowResults.pyo Xshare/gramps/FilterEditor/__init__.py Xshare/gramps/FilterEditor/__init__.pyc Xshare/gramps/FilterEditor/__init__.pyo Xshare/gramps/Filters/Rules/Event/_AllEvents.py Xshare/gramps/Filters/Rules/Event/_AllEvents.pyc Xshare/gramps/Filters/Rules/Event/_AllEvents.pyo Xshare/gramps/Filters/Rules/Event/_EventPrivate.py Xshare/gramps/Filters/Rules/Event/_EventPrivate.pyc Xshare/gramps/Filters/Rules/Event/_EventPrivate.pyo Xshare/gramps/Filters/Rules/Event/_HasIdOf.py Xshare/gramps/Filters/Rules/Event/_HasIdOf.pyc Xshare/gramps/Filters/Rules/Event/_HasIdOf.pyo Xshare/gramps/Filters/Rules/Event/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Event/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Event/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Event/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/Event/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/Event/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/Event/_HasType.py Xshare/gramps/Filters/Rules/Event/_HasType.pyc Xshare/gramps/Filters/Rules/Event/_HasType.pyo Xshare/gramps/Filters/Rules/Event/_MatchesFilter.py Xshare/gramps/Filters/Rules/Event/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/Event/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/Event/_RegExpIdOf.py Xshare/gramps/Filters/Rules/Event/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/Event/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/Event/__init__.py Xshare/gramps/Filters/Rules/Event/__init__.pyc Xshare/gramps/Filters/Rules/Event/__init__.pyo Xshare/gramps/Filters/Rules/Family/_AllFamilies.py Xshare/gramps/Filters/Rules/Family/_AllFamilies.pyc Xshare/gramps/Filters/Rules/Family/_AllFamilies.pyo Xshare/gramps/Filters/Rules/Family/_ChildHasIdOf.py Xshare/gramps/Filters/Rules/Family/_ChildHasIdOf.pyc Xshare/gramps/Filters/Rules/Family/_ChildHasIdOf.pyo Xshare/gramps/Filters/Rules/Family/_ChildHasNameOf.py Xshare/gramps/Filters/Rules/Family/_ChildHasNameOf.pyc Xshare/gramps/Filters/Rules/Family/_ChildHasNameOf.pyo Xshare/gramps/Filters/Rules/Family/_FamilyPrivate.py Xshare/gramps/Filters/Rules/Family/_FamilyPrivate.pyc Xshare/gramps/Filters/Rules/Family/_FamilyPrivate.pyo Xshare/gramps/Filters/Rules/Family/_FatherHasIdOf.py Xshare/gramps/Filters/Rules/Family/_FatherHasIdOf.pyc Xshare/gramps/Filters/Rules/Family/_FatherHasIdOf.pyo Xshare/gramps/Filters/Rules/Family/_FatherHasNameOf.py Xshare/gramps/Filters/Rules/Family/_FatherHasNameOf.pyc Xshare/gramps/Filters/Rules/Family/_FatherHasNameOf.pyo Xshare/gramps/Filters/Rules/Family/_HasAttribute.py Xshare/gramps/Filters/Rules/Family/_HasAttribute.pyc Xshare/gramps/Filters/Rules/Family/_HasAttribute.pyo Xshare/gramps/Filters/Rules/Family/_HasEvent.py Xshare/gramps/Filters/Rules/Family/_HasEvent.pyc Xshare/gramps/Filters/Rules/Family/_HasEvent.pyo Xshare/gramps/Filters/Rules/Family/_HasIdOf.py Xshare/gramps/Filters/Rules/Family/_HasIdOf.pyc Xshare/gramps/Filters/Rules/Family/_HasIdOf.pyo Xshare/gramps/Filters/Rules/Family/_HasMarkerOf.py Xshare/gramps/Filters/Rules/Family/_HasMarkerOf.pyc Xshare/gramps/Filters/Rules/Family/_HasMarkerOf.pyo Xshare/gramps/Filters/Rules/Family/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Family/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Family/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Family/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/Family/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/Family/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/Family/_HasRelType.py Xshare/gramps/Filters/Rules/Family/_HasRelType.pyc Xshare/gramps/Filters/Rules/Family/_HasRelType.pyo Xshare/gramps/Filters/Rules/Family/_MatchesFilter.py Xshare/gramps/Filters/Rules/Family/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/Family/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/Family/_MemberBase.py Xshare/gramps/Filters/Rules/Family/_MemberBase.pyc Xshare/gramps/Filters/Rules/Family/_MemberBase.pyo Xshare/gramps/Filters/Rules/Family/_MotherHasIdOf.py Xshare/gramps/Filters/Rules/Family/_MotherHasIdOf.pyc Xshare/gramps/Filters/Rules/Family/_MotherHasIdOf.pyo Xshare/gramps/Filters/Rules/Family/_MotherHasNameOf.py Xshare/gramps/Filters/Rules/Family/_MotherHasNameOf.pyc Xshare/gramps/Filters/Rules/Family/_MotherHasNameOf.pyo Xshare/gramps/Filters/Rules/Family/_RegExpChildName.py Xshare/gramps/Filters/Rules/Family/_RegExpChildName.pyc Xshare/gramps/Filters/Rules/Family/_RegExpChildName.pyo Xshare/gramps/Filters/Rules/Family/_RegExpFatherName.py Xshare/gramps/Filters/Rules/Family/_RegExpFatherName.pyc Xshare/gramps/Filters/Rules/Family/_RegExpFatherName.pyo Xshare/gramps/Filters/Rules/Family/_RegExpIdOf.py Xshare/gramps/Filters/Rules/Family/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/Family/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/Family/_RegExpMotherName.py Xshare/gramps/Filters/Rules/Family/_RegExpMotherName.pyc Xshare/gramps/Filters/Rules/Family/_RegExpMotherName.pyo Xshare/gramps/Filters/Rules/Family/_SearchChildName.py Xshare/gramps/Filters/Rules/Family/_SearchChildName.pyc Xshare/gramps/Filters/Rules/Family/_SearchChildName.pyo Xshare/gramps/Filters/Rules/Family/_SearchFatherName.py Xshare/gramps/Filters/Rules/Family/_SearchFatherName.pyc Xshare/gramps/Filters/Rules/Family/_SearchFatherName.pyo Xshare/gramps/Filters/Rules/Family/_SearchMotherName.py Xshare/gramps/Filters/Rules/Family/_SearchMotherName.pyc Xshare/gramps/Filters/Rules/Family/_SearchMotherName.pyo Xshare/gramps/Filters/Rules/Family/__init__.py Xshare/gramps/Filters/Rules/Family/__init__.pyc Xshare/gramps/Filters/Rules/Family/__init__.pyo Xshare/gramps/Filters/Rules/MediaObject/_AllMedia.py Xshare/gramps/Filters/Rules/MediaObject/_AllMedia.pyc Xshare/gramps/Filters/Rules/MediaObject/_AllMedia.pyo Xshare/gramps/Filters/Rules/MediaObject/_HasIdOf.py Xshare/gramps/Filters/Rules/MediaObject/_HasIdOf.pyc Xshare/gramps/Filters/Rules/MediaObject/_HasIdOf.pyo Xshare/gramps/Filters/Rules/MediaObject/_HasMedia.py Xshare/gramps/Filters/Rules/MediaObject/_HasMedia.pyc Xshare/gramps/Filters/Rules/MediaObject/_HasMedia.pyo Xshare/gramps/Filters/Rules/MediaObject/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/MediaObject/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/MediaObject/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/MediaObject/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/MediaObject/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/MediaObject/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/MediaObject/_MatchesFilter.py Xshare/gramps/Filters/Rules/MediaObject/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/MediaObject/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/MediaObject/_MediaPrivate.py Xshare/gramps/Filters/Rules/MediaObject/_MediaPrivate.pyc Xshare/gramps/Filters/Rules/MediaObject/_MediaPrivate.pyo Xshare/gramps/Filters/Rules/MediaObject/_RegExpIdOf.py Xshare/gramps/Filters/Rules/MediaObject/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/MediaObject/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/MediaObject/__init__.py Xshare/gramps/Filters/Rules/MediaObject/__init__.pyc Xshare/gramps/Filters/Rules/MediaObject/__init__.pyo Xshare/gramps/Filters/Rules/Person/_Disconnected.py Xshare/gramps/Filters/Rules/Person/_Disconnected.pyc Xshare/gramps/Filters/Rules/Person/_Disconnected.pyo Xshare/gramps/Filters/Rules/Person/_Everyone.py Xshare/gramps/Filters/Rules/Person/_Everyone.pyc Xshare/gramps/Filters/Rules/Person/_Everyone.pyo Xshare/gramps/Filters/Rules/Person/_FamilyWithIncompleteEvent.py Xshare/gramps/Filters/Rules/Person/_FamilyWithIncompleteEvent.pyc Xshare/gramps/Filters/Rules/Person/_FamilyWithIncompleteEvent.pyo Xshare/gramps/Filters/Rules/Person/_HasAttribute.py Xshare/gramps/Filters/Rules/Person/_HasAttribute.pyc Xshare/gramps/Filters/Rules/Person/_HasAttribute.pyo Xshare/gramps/Filters/Rules/Person/_HasBirth.py Xshare/gramps/Filters/Rules/Person/_HasBirth.pyc Xshare/gramps/Filters/Rules/Person/_HasBirth.pyo Xshare/gramps/Filters/Rules/Person/_HasCommonAncestorWith.py Xshare/gramps/Filters/Rules/Person/_HasCommonAncestorWith.pyc Xshare/gramps/Filters/Rules/Person/_HasCommonAncestorWith.pyo Xshare/gramps/Filters/Rules/Person/_HasCommonAncestorWithFilterMatch.py Xshare/gramps/Filters/Rules/Person/_HasCommonAncestorWithFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_HasCommonAncestorWithFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_HasCompleteRecord.py Xshare/gramps/Filters/Rules/Person/_HasCompleteRecord.pyc Xshare/gramps/Filters/Rules/Person/_HasCompleteRecord.pyo Xshare/gramps/Filters/Rules/Person/_HasDeath.py Xshare/gramps/Filters/Rules/Person/_HasDeath.pyc Xshare/gramps/Filters/Rules/Person/_HasDeath.pyo Xshare/gramps/Filters/Rules/Person/_HasEvent.py Xshare/gramps/Filters/Rules/Person/_HasEvent.pyc Xshare/gramps/Filters/Rules/Person/_HasEvent.pyo Xshare/gramps/Filters/Rules/Person/_HasFamilyAttribute.py Xshare/gramps/Filters/Rules/Person/_HasFamilyAttribute.pyc Xshare/gramps/Filters/Rules/Person/_HasFamilyAttribute.pyo Xshare/gramps/Filters/Rules/Person/_HasFamilyEvent.py Xshare/gramps/Filters/Rules/Person/_HasFamilyEvent.pyc Xshare/gramps/Filters/Rules/Person/_HasFamilyEvent.pyo Xshare/gramps/Filters/Rules/Person/_HasIdOf.py Xshare/gramps/Filters/Rules/Person/_HasIdOf.pyc Xshare/gramps/Filters/Rules/Person/_HasIdOf.pyo Xshare/gramps/Filters/Rules/Person/_HasMarkerOf.py Xshare/gramps/Filters/Rules/Person/_HasMarkerOf.pyc Xshare/gramps/Filters/Rules/Person/_HasMarkerOf.pyo Xshare/gramps/Filters/Rules/Person/_HasNameOf.py Xshare/gramps/Filters/Rules/Person/_HasNameOf.pyc Xshare/gramps/Filters/Rules/Person/_HasNameOf.pyo Xshare/gramps/Filters/Rules/Person/_HasNote.py Xshare/gramps/Filters/Rules/Person/_HasNote.pyc Xshare/gramps/Filters/Rules/Person/_HasNote.pyo Xshare/gramps/Filters/Rules/Person/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Person/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Person/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Person/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/Person/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/Person/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/Person/_HasRelationship.py Xshare/gramps/Filters/Rules/Person/_HasRelationship.pyc Xshare/gramps/Filters/Rules/Person/_HasRelationship.pyo Xshare/gramps/Filters/Rules/Person/_HasSourceOf.py Xshare/gramps/Filters/Rules/Person/_HasSourceOf.pyc Xshare/gramps/Filters/Rules/Person/_HasSourceOf.pyo Xshare/gramps/Filters/Rules/Person/_HasTextMatchingRegexpOf.py Xshare/gramps/Filters/Rules/Person/_HasTextMatchingRegexpOf.pyc Xshare/gramps/Filters/Rules/Person/_HasTextMatchingRegexpOf.pyo Xshare/gramps/Filters/Rules/Person/_HasTextMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Person/_HasTextMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Person/_HasTextMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Person/_HasUnknownGender.py Xshare/gramps/Filters/Rules/Person/_HasUnknownGender.pyc Xshare/gramps/Filters/Rules/Person/_HasUnknownGender.pyo Xshare/gramps/Filters/Rules/Person/_HaveAltFamilies.py Xshare/gramps/Filters/Rules/Person/_HaveAltFamilies.pyc Xshare/gramps/Filters/Rules/Person/_HaveAltFamilies.pyo Xshare/gramps/Filters/Rules/Person/_HaveChildren.py Xshare/gramps/Filters/Rules/Person/_HaveChildren.pyc Xshare/gramps/Filters/Rules/Person/_HaveChildren.pyo Xshare/gramps/Filters/Rules/Person/_HavePhotos.py Xshare/gramps/Filters/Rules/Person/_HavePhotos.pyc Xshare/gramps/Filters/Rules/Person/_HavePhotos.pyo Xshare/gramps/Filters/Rules/Person/_IncompleteNames.py Xshare/gramps/Filters/Rules/Person/_IncompleteNames.pyc Xshare/gramps/Filters/Rules/Person/_IncompleteNames.pyo Xshare/gramps/Filters/Rules/Person/_IsAncestorOf.py Xshare/gramps/Filters/Rules/Person/_IsAncestorOf.pyc Xshare/gramps/Filters/Rules/Person/_IsAncestorOf.pyo Xshare/gramps/Filters/Rules/Person/_IsAncestorOfFilterMatch.py Xshare/gramps/Filters/Rules/Person/_IsAncestorOfFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_IsAncestorOfFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_IsBookmarked.py Xshare/gramps/Filters/Rules/Person/_IsBookmarked.pyc Xshare/gramps/Filters/Rules/Person/_IsBookmarked.pyo Xshare/gramps/Filters/Rules/Person/_IsChildOfFilterMatch.py Xshare/gramps/Filters/Rules/Person/_IsChildOfFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_IsChildOfFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_IsDefaultPerson.py Xshare/gramps/Filters/Rules/Person/_IsDefaultPerson.pyc Xshare/gramps/Filters/Rules/Person/_IsDefaultPerson.pyo Xshare/gramps/Filters/Rules/Person/_IsDescendantFamilyOf.py Xshare/gramps/Filters/Rules/Person/_IsDescendantFamilyOf.pyc Xshare/gramps/Filters/Rules/Person/_IsDescendantFamilyOf.pyo Xshare/gramps/Filters/Rules/Person/_IsDescendantOf.py Xshare/gramps/Filters/Rules/Person/_IsDescendantOf.pyc Xshare/gramps/Filters/Rules/Person/_IsDescendantOf.pyo Xshare/gramps/Filters/Rules/Person/_IsDescendantOfFilterMatch.py Xshare/gramps/Filters/Rules/Person/_IsDescendantOfFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_IsDescendantOfFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_IsFemale.py Xshare/gramps/Filters/Rules/Person/_IsFemale.pyc Xshare/gramps/Filters/Rules/Person/_IsFemale.pyo Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOf.py Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOf.pyc Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOf.pyo Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.pyc Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.pyo Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfDefaultPerson.py Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfDefaultPerson.pyc Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfDefaultPerson.pyo Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationDescendantOf.py Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationDescendantOf.pyc Xshare/gramps/Filters/Rules/Person/_IsLessThanNthGenerationDescendantOf.pyo Xshare/gramps/Filters/Rules/Person/_IsMale.py Xshare/gramps/Filters/Rules/Person/_IsMale.pyc Xshare/gramps/Filters/Rules/Person/_IsMale.pyo Xshare/gramps/Filters/Rules/Person/_IsMoreThanNthGenerationAncestorOf.py Xshare/gramps/Filters/Rules/Person/_IsMoreThanNthGenerationAncestorOf.pyc Xshare/gramps/Filters/Rules/Person/_IsMoreThanNthGenerationAncestorOf.pyo Xshare/gramps/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.py Xshare/gramps/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.pyc Xshare/gramps/Filters/Rules/Person/_IsMoreThanNthGenerationDescendantOf.pyo Xshare/gramps/Filters/Rules/Person/_IsParentOfFilterMatch.py Xshare/gramps/Filters/Rules/Person/_IsParentOfFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_IsParentOfFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_IsSiblingOfFilterMatch.py Xshare/gramps/Filters/Rules/Person/_IsSiblingOfFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_IsSiblingOfFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_IsSpouseOfFilterMatch.py Xshare/gramps/Filters/Rules/Person/_IsSpouseOfFilterMatch.pyc Xshare/gramps/Filters/Rules/Person/_IsSpouseOfFilterMatch.pyo Xshare/gramps/Filters/Rules/Person/_IsWitness.py Xshare/gramps/Filters/Rules/Person/_IsWitness.pyc Xshare/gramps/Filters/Rules/Person/_IsWitness.pyo Xshare/gramps/Filters/Rules/Person/_MatchIdOf.py Xshare/gramps/Filters/Rules/Person/_MatchIdOf.pyc Xshare/gramps/Filters/Rules/Person/_MatchIdOf.pyo Xshare/gramps/Filters/Rules/Person/_MatchesFilter.py Xshare/gramps/Filters/Rules/Person/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/Person/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/Person/_MultipleMarriages.py Xshare/gramps/Filters/Rules/Person/_MultipleMarriages.pyc Xshare/gramps/Filters/Rules/Person/_MultipleMarriages.pyo Xshare/gramps/Filters/Rules/Person/_NeverMarried.py Xshare/gramps/Filters/Rules/Person/_NeverMarried.pyc Xshare/gramps/Filters/Rules/Person/_NeverMarried.pyo Xshare/gramps/Filters/Rules/Person/_NoBirthdate.py Xshare/gramps/Filters/Rules/Person/_NoBirthdate.pyc Xshare/gramps/Filters/Rules/Person/_NoBirthdate.pyo Xshare/gramps/Filters/Rules/Person/_PeoplePrivate.py Xshare/gramps/Filters/Rules/Person/_PeoplePrivate.pyc Xshare/gramps/Filters/Rules/Person/_PeoplePrivate.pyo Xshare/gramps/Filters/Rules/Person/_PersonWithIncompleteEvent.py Xshare/gramps/Filters/Rules/Person/_PersonWithIncompleteEvent.pyc Xshare/gramps/Filters/Rules/Person/_PersonWithIncompleteEvent.pyo Xshare/gramps/Filters/Rules/Person/_ProbablyAlive.py Xshare/gramps/Filters/Rules/Person/_ProbablyAlive.pyc Xshare/gramps/Filters/Rules/Person/_ProbablyAlive.pyo Xshare/gramps/Filters/Rules/Person/_RegExpIdOf.py Xshare/gramps/Filters/Rules/Person/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/Person/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/Person/_RegExpName.py Xshare/gramps/Filters/Rules/Person/_RegExpName.pyc Xshare/gramps/Filters/Rules/Person/_RegExpName.pyo Xshare/gramps/Filters/Rules/Person/_RelationshipPathBetween.py Xshare/gramps/Filters/Rules/Person/_RelationshipPathBetween.pyc Xshare/gramps/Filters/Rules/Person/_RelationshipPathBetween.pyo Xshare/gramps/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.py Xshare/gramps/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.pyc Xshare/gramps/Filters/Rules/Person/_RelationshipPathBetweenBookmarks.pyo Xshare/gramps/Filters/Rules/Person/_SearchName.py Xshare/gramps/Filters/Rules/Person/_SearchName.pyc Xshare/gramps/Filters/Rules/Person/_SearchName.pyo Xshare/gramps/Filters/Rules/Person/__init__.py Xshare/gramps/Filters/Rules/Person/__init__.pyc Xshare/gramps/Filters/Rules/Person/__init__.pyo Xshare/gramps/Filters/Rules/Place/_AllPlaces.py Xshare/gramps/Filters/Rules/Place/_AllPlaces.pyc Xshare/gramps/Filters/Rules/Place/_AllPlaces.pyo Xshare/gramps/Filters/Rules/Place/_HasIdOf.py Xshare/gramps/Filters/Rules/Place/_HasIdOf.pyc Xshare/gramps/Filters/Rules/Place/_HasIdOf.pyo Xshare/gramps/Filters/Rules/Place/_HasNoLatOrLon.py Xshare/gramps/Filters/Rules/Place/_HasNoLatOrLon.pyc Xshare/gramps/Filters/Rules/Place/_HasNoLatOrLon.pyo Xshare/gramps/Filters/Rules/Place/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Place/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Place/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Place/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/Place/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/Place/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/Place/_HasPlace.py Xshare/gramps/Filters/Rules/Place/_HasPlace.pyc Xshare/gramps/Filters/Rules/Place/_HasPlace.pyo Xshare/gramps/Filters/Rules/Place/_InLatLonNeighborhood.py Xshare/gramps/Filters/Rules/Place/_InLatLonNeighborhood.pyc Xshare/gramps/Filters/Rules/Place/_InLatLonNeighborhood.pyo Xshare/gramps/Filters/Rules/Place/_MatchesFilter.py Xshare/gramps/Filters/Rules/Place/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/Place/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/Place/_PlacePrivate.py Xshare/gramps/Filters/Rules/Place/_PlacePrivate.pyc Xshare/gramps/Filters/Rules/Place/_PlacePrivate.pyo Xshare/gramps/Filters/Rules/Place/_RegExpIdOf.py Xshare/gramps/Filters/Rules/Place/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/Place/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/Place/__init__.py Xshare/gramps/Filters/Rules/Place/__init__.pyc Xshare/gramps/Filters/Rules/Place/__init__.pyo Xshare/gramps/Filters/Rules/Repository/_AllRepos.py Xshare/gramps/Filters/Rules/Repository/_AllRepos.pyc Xshare/gramps/Filters/Rules/Repository/_AllRepos.pyo Xshare/gramps/Filters/Rules/Repository/_HasIdOf.py Xshare/gramps/Filters/Rules/Repository/_HasIdOf.pyc Xshare/gramps/Filters/Rules/Repository/_HasIdOf.pyo Xshare/gramps/Filters/Rules/Repository/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Repository/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Repository/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Repository/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/Repository/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/Repository/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/Repository/_HasRepo.py Xshare/gramps/Filters/Rules/Repository/_HasRepo.pyc Xshare/gramps/Filters/Rules/Repository/_HasRepo.pyo Xshare/gramps/Filters/Rules/Repository/_MatchesFilter.py Xshare/gramps/Filters/Rules/Repository/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/Repository/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/Repository/_RegExpIdOf.py Xshare/gramps/Filters/Rules/Repository/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/Repository/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/Repository/_RepoPrivate.py Xshare/gramps/Filters/Rules/Repository/_RepoPrivate.pyc Xshare/gramps/Filters/Rules/Repository/_RepoPrivate.pyo Xshare/gramps/Filters/Rules/Repository/__init__.py Xshare/gramps/Filters/Rules/Repository/__init__.pyc Xshare/gramps/Filters/Rules/Repository/__init__.pyo Xshare/gramps/Filters/Rules/Source/_AllSources.py Xshare/gramps/Filters/Rules/Source/_AllSources.pyc Xshare/gramps/Filters/Rules/Source/_AllSources.pyo Xshare/gramps/Filters/Rules/Source/_HasIdOf.py Xshare/gramps/Filters/Rules/Source/_HasIdOf.pyc Xshare/gramps/Filters/Rules/Source/_HasIdOf.pyo Xshare/gramps/Filters/Rules/Source/_HasNoteMatchingSubstringOf.py Xshare/gramps/Filters/Rules/Source/_HasNoteMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/Source/_HasNoteMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/Source/_HasNoteRegexp.py Xshare/gramps/Filters/Rules/Source/_HasNoteRegexp.pyc Xshare/gramps/Filters/Rules/Source/_HasNoteRegexp.pyo Xshare/gramps/Filters/Rules/Source/_HasSource.py Xshare/gramps/Filters/Rules/Source/_HasSource.pyc Xshare/gramps/Filters/Rules/Source/_HasSource.pyo Xshare/gramps/Filters/Rules/Source/_MatchesFilter.py Xshare/gramps/Filters/Rules/Source/_MatchesFilter.pyc Xshare/gramps/Filters/Rules/Source/_MatchesFilter.pyo Xshare/gramps/Filters/Rules/Source/_RegExpIdOf.py Xshare/gramps/Filters/Rules/Source/_RegExpIdOf.pyc Xshare/gramps/Filters/Rules/Source/_RegExpIdOf.pyo Xshare/gramps/Filters/Rules/Source/_SourcePrivate.py Xshare/gramps/Filters/Rules/Source/_SourcePrivate.pyc Xshare/gramps/Filters/Rules/Source/_SourcePrivate.pyo Xshare/gramps/Filters/Rules/Source/__init__.py Xshare/gramps/Filters/Rules/Source/__init__.pyc Xshare/gramps/Filters/Rules/Source/__init__.pyo Xshare/gramps/Filters/Rules/_Everything.py Xshare/gramps/Filters/Rules/_Everything.pyc Xshare/gramps/Filters/Rules/_Everything.pyo Xshare/gramps/Filters/Rules/_HasAttributeBase.py Xshare/gramps/Filters/Rules/_HasAttributeBase.pyc Xshare/gramps/Filters/Rules/_HasAttributeBase.pyo Xshare/gramps/Filters/Rules/_HasEventBase.py Xshare/gramps/Filters/Rules/_HasEventBase.pyc Xshare/gramps/Filters/Rules/_HasEventBase.pyo Xshare/gramps/Filters/Rules/_HasGrampsId.py Xshare/gramps/Filters/Rules/_HasGrampsId.pyc Xshare/gramps/Filters/Rules/_HasGrampsId.pyo Xshare/gramps/Filters/Rules/_HasMarkerBase.py Xshare/gramps/Filters/Rules/_HasMarkerBase.pyc Xshare/gramps/Filters/Rules/_HasMarkerBase.pyo Xshare/gramps/Filters/Rules/_HasNoteRegexBase.py Xshare/gramps/Filters/Rules/_HasNoteRegexBase.pyc Xshare/gramps/Filters/Rules/_HasNoteRegexBase.pyo Xshare/gramps/Filters/Rules/_HasNoteSubstrBase.py Xshare/gramps/Filters/Rules/_HasNoteSubstrBase.pyc Xshare/gramps/Filters/Rules/_HasNoteSubstrBase.pyo Xshare/gramps/Filters/Rules/_HasTextMatchingRegexpOf.py Xshare/gramps/Filters/Rules/_HasTextMatchingRegexpOf.pyc Xshare/gramps/Filters/Rules/_HasTextMatchingRegexpOf.pyo Xshare/gramps/Filters/Rules/_HasTextMatchingSubstringOf.py Xshare/gramps/Filters/Rules/_HasTextMatchingSubstringOf.pyc Xshare/gramps/Filters/Rules/_HasTextMatchingSubstringOf.pyo Xshare/gramps/Filters/Rules/_IsPrivate.py Xshare/gramps/Filters/Rules/_IsPrivate.pyc Xshare/gramps/Filters/Rules/_IsPrivate.pyo Xshare/gramps/Filters/Rules/_MatchesFilterBase.py Xshare/gramps/Filters/Rules/_MatchesFilterBase.pyc Xshare/gramps/Filters/Rules/_MatchesFilterBase.pyo Xshare/gramps/Filters/Rules/_RegExpIdBase.py Xshare/gramps/Filters/Rules/_RegExpIdBase.pyc Xshare/gramps/Filters/Rules/_RegExpIdBase.pyo Xshare/gramps/Filters/Rules/_Rule.py Xshare/gramps/Filters/Rules/_Rule.pyc Xshare/gramps/Filters/Rules/_Rule.pyo Xshare/gramps/Filters/Rules/_RuleUtils.py Xshare/gramps/Filters/Rules/_RuleUtils.pyc Xshare/gramps/Filters/Rules/_RuleUtils.pyo Xshare/gramps/Filters/Rules/__init__.py Xshare/gramps/Filters/Rules/__init__.pyc Xshare/gramps/Filters/Rules/__init__.pyo Xshare/gramps/Filters/SideBar/_EventSidebarFilter.py Xshare/gramps/Filters/SideBar/_EventSidebarFilter.pyc Xshare/gramps/Filters/SideBar/_EventSidebarFilter.pyo Xshare/gramps/Filters/SideBar/_FamilySidebarFilter.py Xshare/gramps/Filters/SideBar/_FamilySidebarFilter.pyc Xshare/gramps/Filters/SideBar/_FamilySidebarFilter.pyo Xshare/gramps/Filters/SideBar/_MediaSidebarFilter.py Xshare/gramps/Filters/SideBar/_MediaSidebarFilter.pyc Xshare/gramps/Filters/SideBar/_MediaSidebarFilter.pyo Xshare/gramps/Filters/SideBar/_PersonSidebarFilter.py Xshare/gramps/Filters/SideBar/_PersonSidebarFilter.pyc Xshare/gramps/Filters/SideBar/_PersonSidebarFilter.pyo Xshare/gramps/Filters/SideBar/_PlaceSidebarFilter.py Xshare/gramps/Filters/SideBar/_PlaceSidebarFilter.pyc Xshare/gramps/Filters/SideBar/_PlaceSidebarFilter.pyo Xshare/gramps/Filters/SideBar/_RepoSidebarFilter.py Xshare/gramps/Filters/SideBar/_RepoSidebarFilter.pyc Xshare/gramps/Filters/SideBar/_RepoSidebarFilter.pyo Xshare/gramps/Filters/SideBar/_SidebarFilter.py Xshare/gramps/Filters/SideBar/_SidebarFilter.pyc Xshare/gramps/Filters/SideBar/_SidebarFilter.pyo Xshare/gramps/Filters/SideBar/_SourceSidebarFilter.py Xshare/gramps/Filters/SideBar/_SourceSidebarFilter.pyc Xshare/gramps/Filters/SideBar/_SourceSidebarFilter.pyo Xshare/gramps/Filters/SideBar/__init__.py Xshare/gramps/Filters/SideBar/__init__.pyc Xshare/gramps/Filters/SideBar/__init__.pyo Xshare/gramps/Filters/_FilterComboBox.py Xshare/gramps/Filters/_FilterComboBox.pyc Xshare/gramps/Filters/_FilterComboBox.pyo Xshare/gramps/Filters/_FilterList.py Xshare/gramps/Filters/_FilterList.pyc Xshare/gramps/Filters/_FilterList.pyo Xshare/gramps/Filters/_FilterMenu.py Xshare/gramps/Filters/_FilterMenu.pyc Xshare/gramps/Filters/_FilterMenu.pyo Xshare/gramps/Filters/_FilterParser.py Xshare/gramps/Filters/_FilterParser.pyc Xshare/gramps/Filters/_FilterParser.pyo Xshare/gramps/Filters/_FilterStore.py Xshare/gramps/Filters/_FilterStore.pyc Xshare/gramps/Filters/_FilterStore.pyo Xshare/gramps/Filters/_GenericFilter.py Xshare/gramps/Filters/_GenericFilter.pyc Xshare/gramps/Filters/_GenericFilter.pyo Xshare/gramps/Filters/_ParamFilter.py Xshare/gramps/Filters/_ParamFilter.pyc Xshare/gramps/Filters/_ParamFilter.pyo Xshare/gramps/Filters/_SearchBar.py Xshare/gramps/Filters/_SearchBar.pyc Xshare/gramps/Filters/_SearchBar.pyo Xshare/gramps/Filters/_SearchFilter.py Xshare/gramps/Filters/_SearchFilter.pyc Xshare/gramps/Filters/_SearchFilter.pyo Xshare/gramps/Filters/__init__.py Xshare/gramps/Filters/__init__.pyc Xshare/gramps/Filters/__init__.pyo Xshare/gramps/FontScale.py Xshare/gramps/FontScale.pyc Xshare/gramps/FontScale.pyo Xshare/gramps/GrampsCfg.py Xshare/gramps/GrampsCfg.pyc Xshare/gramps/GrampsCfg.pyo Xshare/gramps/GrampsDb/_DbUtils.py Xshare/gramps/GrampsDb/_DbUtils.pyc Xshare/gramps/GrampsDb/_DbUtils.pyo Xshare/gramps/GrampsDb/_GedTokens.py Xshare/gramps/GrampsDb/_GedTokens.pyc Xshare/gramps/GrampsDb/_GedTokens.pyo Xshare/gramps/GrampsDb/_GedcomInfo.py Xshare/gramps/GrampsDb/_GedcomInfo.pyc Xshare/gramps/GrampsDb/_GedcomInfo.pyo Xshare/gramps/GrampsDb/_GrampsBSDDB.py Xshare/gramps/GrampsDb/_GrampsBSDDB.pyc Xshare/gramps/GrampsDb/_GrampsBSDDB.pyo Xshare/gramps/GrampsDb/_GrampsDBCallback.py Xshare/gramps/GrampsDb/_GrampsDBCallback.pyc Xshare/gramps/GrampsDb/_GrampsDBCallback.pyo Xshare/gramps/GrampsDb/_GrampsDbBase.py Xshare/gramps/GrampsDb/_GrampsDbBase.pyc Xshare/gramps/GrampsDb/_GrampsDbBase.pyo Xshare/gramps/GrampsDb/_GrampsDbExceptions.py Xshare/gramps/GrampsDb/_GrampsDbExceptions.pyc Xshare/gramps/GrampsDb/_GrampsDbExceptions.pyo Xshare/gramps/GrampsDb/_GrampsDbFactories.py Xshare/gramps/GrampsDb/_GrampsDbFactories.pyc Xshare/gramps/GrampsDb/_GrampsDbFactories.pyo Xshare/gramps/GrampsDb/_GrampsGEDDB.py Xshare/gramps/GrampsDb/_GrampsGEDDB.pyc Xshare/gramps/GrampsDb/_GrampsGEDDB.pyo Xshare/gramps/GrampsDb/_GrampsInMemDB.py Xshare/gramps/GrampsDb/_GrampsInMemDB.pyc Xshare/gramps/GrampsDb/_GrampsInMemDB.pyo Xshare/gramps/GrampsDb/_GrampsXMLDB.py Xshare/gramps/GrampsDb/_GrampsXMLDB.pyc Xshare/gramps/GrampsDb/_GrampsXMLDB.pyo Xshare/gramps/GrampsDb/_ReadGedcom.py Xshare/gramps/GrampsDb/_ReadGedcom.pyc Xshare/gramps/GrampsDb/_ReadGedcom.pyo Xshare/gramps/GrampsDb/_ReadGrdb.py Xshare/gramps/GrampsDb/_ReadGrdb.pyc Xshare/gramps/GrampsDb/_ReadGrdb.pyo Xshare/gramps/GrampsDb/_ReadXML.py Xshare/gramps/GrampsDb/_ReadXML.pyc Xshare/gramps/GrampsDb/_ReadXML.pyo Xshare/gramps/GrampsDb/_WriteGedcom.py Xshare/gramps/GrampsDb/_WriteGedcom.pyc Xshare/gramps/GrampsDb/_WriteGedcom.pyo Xshare/gramps/GrampsDb/_WriteGrdb.py Xshare/gramps/GrampsDb/_WriteGrdb.pyc Xshare/gramps/GrampsDb/_WriteGrdb.pyo Xshare/gramps/GrampsDb/_WriteXML.py Xshare/gramps/GrampsDb/_WriteXML.pyc Xshare/gramps/GrampsDb/_WriteXML.pyo Xshare/gramps/GrampsDb/__init__.py Xshare/gramps/GrampsDb/__init__.pyc Xshare/gramps/GrampsDb/__init__.pyo Xshare/gramps/GrampsDb/gedcomexport.glade Xshare/gramps/GrampsDb/gedcomimport.glade Xshare/gramps/GrampsDisplay.py Xshare/gramps/GrampsDisplay.pyc Xshare/gramps/GrampsDisplay.pyo Xshare/gramps/GrampsLocale.py Xshare/gramps/GrampsLocale.pyc Xshare/gramps/GrampsLocale.pyo Xshare/gramps/GrampsLogger/_ErrorReportAssistant.py Xshare/gramps/GrampsLogger/_ErrorReportAssistant.pyc Xshare/gramps/GrampsLogger/_ErrorReportAssistant.pyo Xshare/gramps/GrampsLogger/_ErrorView.py Xshare/gramps/GrampsLogger/_ErrorView.pyc Xshare/gramps/GrampsLogger/_ErrorView.pyo Xshare/gramps/GrampsLogger/_GtkHandler.py Xshare/gramps/GrampsLogger/_GtkHandler.pyc Xshare/gramps/GrampsLogger/_GtkHandler.pyo Xshare/gramps/GrampsLogger/_RotateHandler.py Xshare/gramps/GrampsLogger/_RotateHandler.pyc Xshare/gramps/GrampsLogger/_RotateHandler.pyo Xshare/gramps/GrampsLogger/__init__.py Xshare/gramps/GrampsLogger/__init__.pyc Xshare/gramps/GrampsLogger/__init__.pyo Xshare/gramps/GrampsWidgets.py Xshare/gramps/GrampsWidgets.pyc Xshare/gramps/GrampsWidgets.pyo Xshare/gramps/ImgManip.py Xshare/gramps/ImgManip.pyc Xshare/gramps/ImgManip.pyo Xshare/gramps/LdsUtils.py Xshare/gramps/LdsUtils.pyc Xshare/gramps/LdsUtils.pyo Xshare/gramps/ListModel.py Xshare/gramps/ListModel.pyc Xshare/gramps/ListModel.pyo Xshare/gramps/Lru.py Xshare/gramps/Lru.pyc Xshare/gramps/Lru.pyo Xshare/gramps/ManagedWindow.py Xshare/gramps/ManagedWindow.pyc Xshare/gramps/ManagedWindow.pyo Xshare/gramps/Merge/_MergePerson.py Xshare/gramps/Merge/_MergePerson.pyc Xshare/gramps/Merge/_MergePerson.pyo Xshare/gramps/Merge/_MergePlace.py Xshare/gramps/Merge/_MergePlace.pyc Xshare/gramps/Merge/_MergePlace.pyo Xshare/gramps/Merge/_MergeSource.py Xshare/gramps/Merge/_MergeSource.pyc Xshare/gramps/Merge/_MergeSource.pyo Xshare/gramps/Merge/__init__.py Xshare/gramps/Merge/__init__.pyc Xshare/gramps/Merge/__init__.pyo Xshare/gramps/Mime/_GnomeMime.py Xshare/gramps/Mime/_GnomeMime.pyc Xshare/gramps/Mime/_GnomeMime.pyo Xshare/gramps/Mime/_PythonMime.py Xshare/gramps/Mime/_PythonMime.pyc Xshare/gramps/Mime/_PythonMime.pyo Xshare/gramps/Mime/_WinMime.py Xshare/gramps/Mime/_WinMime.pyc Xshare/gramps/Mime/_WinMime.pyo Xshare/gramps/Mime/__init__.py Xshare/gramps/Mime/__init__.pyc Xshare/gramps/Mime/__init__.pyo Xshare/gramps/NameDisplay.py Xshare/gramps/NameDisplay.pyc Xshare/gramps/NameDisplay.pyo Xshare/gramps/Navigation.py Xshare/gramps/Navigation.pyc Xshare/gramps/Navigation.pyo Xshare/gramps/PageView.py Xshare/gramps/PageView.pyc Xshare/gramps/PageView.pyo Xshare/gramps/PlaceUtils.py Xshare/gramps/PlaceUtils.pyc Xshare/gramps/PlaceUtils.pyo Xshare/gramps/PluginUtils/_Options.py Xshare/gramps/PluginUtils/_Options.pyc Xshare/gramps/PluginUtils/_Options.pyo Xshare/gramps/PluginUtils/_PluginMgr.py Xshare/gramps/PluginUtils/_PluginMgr.pyc Xshare/gramps/PluginUtils/_PluginMgr.pyo Xshare/gramps/PluginUtils/_PluginStatus.py Xshare/gramps/PluginUtils/_PluginStatus.pyc Xshare/gramps/PluginUtils/_PluginStatus.pyo Xshare/gramps/PluginUtils/_Plugins.py Xshare/gramps/PluginUtils/_Plugins.pyc Xshare/gramps/PluginUtils/_Plugins.pyo Xshare/gramps/PluginUtils/_Tool.py Xshare/gramps/PluginUtils/_Tool.pyc Xshare/gramps/PluginUtils/_Tool.pyo Xshare/gramps/PluginUtils/__init__.py Xshare/gramps/PluginUtils/__init__.pyc Xshare/gramps/PluginUtils/__init__.pyo Xshare/gramps/QuestionDialog.py Xshare/gramps/QuestionDialog.pyc Xshare/gramps/QuestionDialog.pyo Xshare/gramps/RecentFiles.py Xshare/gramps/RecentFiles.pyc Xshare/gramps/RecentFiles.pyo Xshare/gramps/RelLib/_Address.py Xshare/gramps/RelLib/_Address.pyc Xshare/gramps/RelLib/_Address.pyo Xshare/gramps/RelLib/_AddressBase.py Xshare/gramps/RelLib/_AddressBase.pyc Xshare/gramps/RelLib/_AddressBase.pyo Xshare/gramps/RelLib/_Attribute.py Xshare/gramps/RelLib/_Attribute.pyc Xshare/gramps/RelLib/_Attribute.pyo Xshare/gramps/RelLib/_AttributeBase.py Xshare/gramps/RelLib/_AttributeBase.pyc Xshare/gramps/RelLib/_AttributeBase.pyo Xshare/gramps/RelLib/_AttributeType.py Xshare/gramps/RelLib/_AttributeType.pyc Xshare/gramps/RelLib/_AttributeType.pyo Xshare/gramps/RelLib/_BaseObject.py Xshare/gramps/RelLib/_BaseObject.pyc Xshare/gramps/RelLib/_BaseObject.pyo Xshare/gramps/RelLib/_CalSdn.py Xshare/gramps/RelLib/_CalSdn.pyc Xshare/gramps/RelLib/_CalSdn.pyo Xshare/gramps/RelLib/_ChildRef.py Xshare/gramps/RelLib/_ChildRef.pyc Xshare/gramps/RelLib/_ChildRef.pyo Xshare/gramps/RelLib/_ChildRefType.py Xshare/gramps/RelLib/_ChildRefType.pyc Xshare/gramps/RelLib/_ChildRefType.pyo Xshare/gramps/RelLib/_Date.py Xshare/gramps/RelLib/_Date.pyc Xshare/gramps/RelLib/_Date.pyo Xshare/gramps/RelLib/_DateBase.py Xshare/gramps/RelLib/_DateBase.pyc Xshare/gramps/RelLib/_DateBase.pyo Xshare/gramps/RelLib/_Event.py Xshare/gramps/RelLib/_Event.pyc Xshare/gramps/RelLib/_Event.pyo Xshare/gramps/RelLib/_EventRef.py Xshare/gramps/RelLib/_EventRef.pyc Xshare/gramps/RelLib/_EventRef.pyo Xshare/gramps/RelLib/_EventRoleType.py Xshare/gramps/RelLib/_EventRoleType.pyc Xshare/gramps/RelLib/_EventRoleType.pyo Xshare/gramps/RelLib/_EventType.py Xshare/gramps/RelLib/_EventType.pyc Xshare/gramps/RelLib/_EventType.pyo Xshare/gramps/RelLib/_Family.py Xshare/gramps/RelLib/_Family.pyc Xshare/gramps/RelLib/_Family.pyo Xshare/gramps/RelLib/_FamilyRelType.py Xshare/gramps/RelLib/_FamilyRelType.pyc Xshare/gramps/RelLib/_FamilyRelType.pyo Xshare/gramps/RelLib/_GenderStats.py Xshare/gramps/RelLib/_GenderStats.pyc Xshare/gramps/RelLib/_GenderStats.pyo Xshare/gramps/RelLib/_GrampsType.py Xshare/gramps/RelLib/_GrampsType.pyc Xshare/gramps/RelLib/_GrampsType.pyo Xshare/gramps/RelLib/_LdsOrd.py Xshare/gramps/RelLib/_LdsOrd.pyc Xshare/gramps/RelLib/_LdsOrd.pyo Xshare/gramps/RelLib/_LdsOrdBase.py Xshare/gramps/RelLib/_LdsOrdBase.pyc Xshare/gramps/RelLib/_LdsOrdBase.pyo Xshare/gramps/RelLib/_Location.py Xshare/gramps/RelLib/_Location.pyc Xshare/gramps/RelLib/_Location.pyo Xshare/gramps/RelLib/_LocationBase.py Xshare/gramps/RelLib/_LocationBase.pyc Xshare/gramps/RelLib/_LocationBase.pyo Xshare/gramps/RelLib/_MarkerType.py Xshare/gramps/RelLib/_MarkerType.pyc Xshare/gramps/RelLib/_MarkerType.pyo Xshare/gramps/RelLib/_MediaBase.py Xshare/gramps/RelLib/_MediaBase.pyc Xshare/gramps/RelLib/_MediaBase.pyo Xshare/gramps/RelLib/_MediaObject.py Xshare/gramps/RelLib/_MediaObject.pyc Xshare/gramps/RelLib/_MediaObject.pyo Xshare/gramps/RelLib/_MediaRef.py Xshare/gramps/RelLib/_MediaRef.pyc Xshare/gramps/RelLib/_MediaRef.pyo Xshare/gramps/RelLib/_Name.py Xshare/gramps/RelLib/_Name.pyc Xshare/gramps/RelLib/_Name.pyo Xshare/gramps/RelLib/_NameType.py Xshare/gramps/RelLib/_NameType.pyc Xshare/gramps/RelLib/_NameType.pyo Xshare/gramps/RelLib/_Note.py Xshare/gramps/RelLib/_Note.pyc Xshare/gramps/RelLib/_Note.pyo Xshare/gramps/RelLib/_NoteBase.py Xshare/gramps/RelLib/_NoteBase.pyc Xshare/gramps/RelLib/_NoteBase.pyo Xshare/gramps/RelLib/_Person.py Xshare/gramps/RelLib/_Person.pyc Xshare/gramps/RelLib/_Person.pyo Xshare/gramps/RelLib/_PersonRef.py Xshare/gramps/RelLib/_PersonRef.pyc Xshare/gramps/RelLib/_PersonRef.pyo Xshare/gramps/RelLib/_Place.py Xshare/gramps/RelLib/_Place.pyc Xshare/gramps/RelLib/_Place.pyo Xshare/gramps/RelLib/_PlaceBase.py Xshare/gramps/RelLib/_PlaceBase.pyc Xshare/gramps/RelLib/_PlaceBase.pyo Xshare/gramps/RelLib/_PrimaryObject.py Xshare/gramps/RelLib/_PrimaryObject.pyc Xshare/gramps/RelLib/_PrimaryObject.pyo Xshare/gramps/RelLib/_PrivacyBase.py Xshare/gramps/RelLib/_PrivacyBase.pyc Xshare/gramps/RelLib/_PrivacyBase.pyo Xshare/gramps/RelLib/_PrivateSourceNote.py Xshare/gramps/RelLib/_PrivateSourceNote.pyc Xshare/gramps/RelLib/_PrivateSourceNote.pyo Xshare/gramps/RelLib/_RefBase.py Xshare/gramps/RelLib/_RefBase.pyc Xshare/gramps/RelLib/_RefBase.pyo Xshare/gramps/RelLib/_RepoRef.py Xshare/gramps/RelLib/_RepoRef.pyc Xshare/gramps/RelLib/_RepoRef.pyo Xshare/gramps/RelLib/_Repository.py Xshare/gramps/RelLib/_Repository.pyc Xshare/gramps/RelLib/_Repository.pyo Xshare/gramps/RelLib/_RepositoryType.py Xshare/gramps/RelLib/_RepositoryType.pyc Xshare/gramps/RelLib/_RepositoryType.pyo Xshare/gramps/RelLib/_Researcher.py Xshare/gramps/RelLib/_Researcher.pyc Xshare/gramps/RelLib/_Researcher.pyo Xshare/gramps/RelLib/_SecondaryObject.py Xshare/gramps/RelLib/_SecondaryObject.pyc Xshare/gramps/RelLib/_SecondaryObject.pyo Xshare/gramps/RelLib/_Source.py Xshare/gramps/RelLib/_Source.pyc Xshare/gramps/RelLib/_Source.pyo Xshare/gramps/RelLib/_SourceBase.py Xshare/gramps/RelLib/_SourceBase.pyc Xshare/gramps/RelLib/_SourceBase.pyo Xshare/gramps/RelLib/_SourceMediaType.py Xshare/gramps/RelLib/_SourceMediaType.pyc Xshare/gramps/RelLib/_SourceMediaType.pyo Xshare/gramps/RelLib/_SourceNote.py Xshare/gramps/RelLib/_SourceNote.pyc Xshare/gramps/RelLib/_SourceNote.pyo Xshare/gramps/RelLib/_SourceRef.py Xshare/gramps/RelLib/_SourceRef.pyc Xshare/gramps/RelLib/_SourceRef.pyo Xshare/gramps/RelLib/_Url.py Xshare/gramps/RelLib/_Url.pyc Xshare/gramps/RelLib/_Url.pyo Xshare/gramps/RelLib/_UrlBase.py Xshare/gramps/RelLib/_UrlBase.pyc Xshare/gramps/RelLib/_UrlBase.pyo Xshare/gramps/RelLib/_UrlType.py Xshare/gramps/RelLib/_UrlType.pyc Xshare/gramps/RelLib/_UrlType.pyo Xshare/gramps/RelLib/_Witness.py Xshare/gramps/RelLib/_Witness.pyc Xshare/gramps/RelLib/_Witness.pyo Xshare/gramps/RelLib/__init__.py Xshare/gramps/RelLib/__init__.pyc Xshare/gramps/RelLib/__init__.pyo Xshare/gramps/Relationship.py Xshare/gramps/Relationship.pyc Xshare/gramps/Relationship.pyo Xshare/gramps/Reorder.py Xshare/gramps/Reorder.pyc Xshare/gramps/Reorder.pyo Xshare/gramps/ReportBase/_BareReportDialog.py Xshare/gramps/ReportBase/_BareReportDialog.pyc Xshare/gramps/ReportBase/_BareReportDialog.pyo Xshare/gramps/ReportBase/_BookFormatComboBox.py Xshare/gramps/ReportBase/_BookFormatComboBox.pyc Xshare/gramps/ReportBase/_BookFormatComboBox.pyo Xshare/gramps/ReportBase/_CommandLineReport.py Xshare/gramps/ReportBase/_CommandLineReport.pyc Xshare/gramps/ReportBase/_CommandLineReport.pyo Xshare/gramps/ReportBase/_Constants.py Xshare/gramps/ReportBase/_Constants.pyc Xshare/gramps/ReportBase/_Constants.pyo Xshare/gramps/ReportBase/_DrawFormatComboBox.py Xshare/gramps/ReportBase/_DrawFormatComboBox.pyc Xshare/gramps/ReportBase/_DrawFormatComboBox.pyo Xshare/gramps/ReportBase/_DrawReportDialog.py Xshare/gramps/ReportBase/_DrawReportDialog.pyc Xshare/gramps/ReportBase/_DrawReportDialog.pyo Xshare/gramps/ReportBase/_FileEntry.py Xshare/gramps/ReportBase/_FileEntry.pyc Xshare/gramps/ReportBase/_FileEntry.pyo Xshare/gramps/ReportBase/_PaperMenu.py Xshare/gramps/ReportBase/_PaperMenu.pyc Xshare/gramps/ReportBase/_PaperMenu.pyo Xshare/gramps/ReportBase/_PrintTools.py Xshare/gramps/ReportBase/_PrintTools.pyc Xshare/gramps/ReportBase/_PrintTools.pyo Xshare/gramps/ReportBase/_Report.py Xshare/gramps/ReportBase/_Report.pyc Xshare/gramps/ReportBase/_Report.pyo Xshare/gramps/ReportBase/_ReportDialog.py Xshare/gramps/ReportBase/_ReportDialog.pyc Xshare/gramps/ReportBase/_ReportDialog.pyo Xshare/gramps/ReportBase/_ReportOptions.py Xshare/gramps/ReportBase/_ReportOptions.pyc Xshare/gramps/ReportBase/_ReportOptions.pyo Xshare/gramps/ReportBase/_ReportUtils.py Xshare/gramps/ReportBase/_ReportUtils.pyc Xshare/gramps/ReportBase/_ReportUtils.pyo Xshare/gramps/ReportBase/_StyleComboBox.py Xshare/gramps/ReportBase/_StyleComboBox.pyc Xshare/gramps/ReportBase/_StyleComboBox.pyo Xshare/gramps/ReportBase/_StyleEditor.py Xshare/gramps/ReportBase/_StyleEditor.pyc Xshare/gramps/ReportBase/_StyleEditor.pyo Xshare/gramps/ReportBase/_TemplateParser.py Xshare/gramps/ReportBase/_TemplateParser.pyc Xshare/gramps/ReportBase/_TemplateParser.pyo Xshare/gramps/ReportBase/_TextFormatComboBox.py Xshare/gramps/ReportBase/_TextFormatComboBox.pyc Xshare/gramps/ReportBase/_TextFormatComboBox.pyo Xshare/gramps/ReportBase/_TextReportDialog.py Xshare/gramps/ReportBase/_TextReportDialog.pyc Xshare/gramps/ReportBase/_TextReportDialog.pyo Xshare/gramps/ReportBase/__init__.py Xshare/gramps/ReportBase/__init__.pyc Xshare/gramps/ReportBase/__init__.pyo Xshare/gramps/ScratchPad.py Xshare/gramps/ScratchPad.pyc Xshare/gramps/ScratchPad.pyo Xshare/gramps/Selectors/_BaseSelector.py Xshare/gramps/Selectors/_BaseSelector.pyc Xshare/gramps/Selectors/_BaseSelector.pyo Xshare/gramps/Selectors/_SelectEvent.py Xshare/gramps/Selectors/_SelectEvent.pyc Xshare/gramps/Selectors/_SelectEvent.pyo Xshare/gramps/Selectors/_SelectFamily.py Xshare/gramps/Selectors/_SelectFamily.pyc Xshare/gramps/Selectors/_SelectFamily.pyo Xshare/gramps/Selectors/_SelectObject.py Xshare/gramps/Selectors/_SelectObject.pyc Xshare/gramps/Selectors/_SelectObject.pyo Xshare/gramps/Selectors/_SelectPerson.py Xshare/gramps/Selectors/_SelectPerson.pyc Xshare/gramps/Selectors/_SelectPerson.pyo Xshare/gramps/Selectors/_SelectPlace.py Xshare/gramps/Selectors/_SelectPlace.pyc Xshare/gramps/Selectors/_SelectPlace.pyo Xshare/gramps/Selectors/_SelectRepository.py Xshare/gramps/Selectors/_SelectRepository.pyc Xshare/gramps/Selectors/_SelectRepository.pyo Xshare/gramps/Selectors/_SelectSource.py Xshare/gramps/Selectors/_SelectSource.pyc Xshare/gramps/Selectors/_SelectSource.pyo Xshare/gramps/Selectors/_SelectorExceptions.py Xshare/gramps/Selectors/_SelectorExceptions.pyc Xshare/gramps/Selectors/_SelectorExceptions.pyo Xshare/gramps/Selectors/_SelectorFactory.py Xshare/gramps/Selectors/_SelectorFactory.pyc Xshare/gramps/Selectors/_SelectorFactory.pyo Xshare/gramps/Selectors/__init__.py Xshare/gramps/Selectors/__init__.pyc Xshare/gramps/Selectors/__init__.pyo Xshare/gramps/Sort.py Xshare/gramps/Sort.pyc Xshare/gramps/Sort.pyo Xshare/gramps/Spell.py Xshare/gramps/Spell.pyc Xshare/gramps/Spell.pyo Xshare/gramps/SubstKeywords.py Xshare/gramps/SubstKeywords.pyc Xshare/gramps/SubstKeywords.pyo Xshare/gramps/TipOfDay.py Xshare/gramps/TipOfDay.pyc Xshare/gramps/TipOfDay.pyo Xshare/gramps/ToolTips.py Xshare/gramps/ToolTips.pyc Xshare/gramps/ToolTips.pyo Xshare/gramps/TransUtils.py Xshare/gramps/TransUtils.pyc Xshare/gramps/TransUtils.pyo Xshare/gramps/TreeTips.py Xshare/gramps/TreeTips.pyc Xshare/gramps/TreeTips.pyo Xshare/gramps/UndoHistory.py Xshare/gramps/UndoHistory.pyc Xshare/gramps/UndoHistory.pyo Xshare/gramps/Utils.py Xshare/gramps/Utils.pyc Xshare/gramps/Utils.pyo Xshare/gramps/ViewManager.py Xshare/gramps/ViewManager.pyc Xshare/gramps/ViewManager.pyo Xshare/gramps/ansel_utf8.py Xshare/gramps/ansel_utf8.pyc Xshare/gramps/ansel_utf8.pyo Xshare/gramps/const.py Xshare/gramps/const.pyc Xshare/gramps/const.pyo Xshare/gramps/data/gedcom.xml Xshare/gramps/data/main1.css Xshare/gramps/data/main2.css Xshare/gramps/data/main3.css Xshare/gramps/data/main4.css Xshare/gramps/data/main5.css Xshare/gramps/data/main6.css Xshare/gramps/data/papersize.xml Xshare/gramps/data/system_filters.xml Xshare/gramps/data/tips.xml Xshare/gramps/docgen/AsciiDoc.py Xshare/gramps/docgen/AsciiDoc.pyc Xshare/gramps/docgen/AsciiDoc.pyo Xshare/gramps/docgen/HtmlDoc.py Xshare/gramps/docgen/HtmlDoc.pyc Xshare/gramps/docgen/HtmlDoc.pyo Xshare/gramps/docgen/LPRDoc.py Xshare/gramps/docgen/LPRDoc.pyc Xshare/gramps/docgen/LPRDoc.pyo Xshare/gramps/docgen/LaTeXDoc.py Xshare/gramps/docgen/LaTeXDoc.pyc Xshare/gramps/docgen/LaTeXDoc.pyo Xshare/gramps/docgen/ODFDoc.py Xshare/gramps/docgen/ODFDoc.pyc Xshare/gramps/docgen/ODFDoc.pyo Xshare/gramps/docgen/ODSDoc.py Xshare/gramps/docgen/ODSDoc.pyc Xshare/gramps/docgen/ODSDoc.pyo Xshare/gramps/docgen/PSDrawDoc.py Xshare/gramps/docgen/PSDrawDoc.pyc Xshare/gramps/docgen/PSDrawDoc.pyo Xshare/gramps/docgen/PdfDoc.py Xshare/gramps/docgen/PdfDoc.pyc Xshare/gramps/docgen/PdfDoc.pyo Xshare/gramps/docgen/RTFDoc.py Xshare/gramps/docgen/RTFDoc.pyc Xshare/gramps/docgen/RTFDoc.pyo Xshare/gramps/docgen/SpreadSheetDoc.py Xshare/gramps/docgen/SpreadSheetDoc.pyc Xshare/gramps/docgen/SpreadSheetDoc.pyo Xshare/gramps/docgen/SvgDrawDoc.py Xshare/gramps/docgen/SvgDrawDoc.pyc Xshare/gramps/docgen/SvgDrawDoc.pyo Xshare/gramps/example/O0.jpg Xshare/gramps/example/O1.jpg Xshare/gramps/example/O2.jpg Xshare/gramps/example/O3.jpg Xshare/gramps/example/O4.jpg Xshare/gramps/example/O5.jpg Xshare/gramps/example/data.gramps Xshare/gramps/glade/edit_person.glade Xshare/gramps/glade/gramps.glade Xshare/gramps/glade/mergedata.glade Xshare/gramps/glade/plugins.glade Xshare/gramps/glade/rule.glade Xshare/gramps/glade/scratchpad.glade Xshare/gramps/gramps.py Xshare/gramps/gramps.pyc Xshare/gramps/gramps.pyo Xshare/gramps/gramps_main.py Xshare/gramps/gramps_main.pyc Xshare/gramps/gramps_main.pyo Xshare/gramps/images/bad.png Xshare/gramps/images/caution.png Xshare/gramps/images/document.png Xshare/gramps/images/events.png Xshare/gramps/images/events.svg Xshare/gramps/images/flist.png Xshare/gramps/images/flist.svg Xshare/gramps/images/good.png Xshare/gramps/images/gramps.png Xshare/gramps/images/locked.png Xshare/gramps/images/logo.png Xshare/gramps/images/media.png Xshare/gramps/images/media.svg Xshare/gramps/images/parents.svg Xshare/gramps/images/ped24.png Xshare/gramps/images/person.png Xshare/gramps/images/person.svg Xshare/gramps/images/place.png Xshare/gramps/images/place.svg Xshare/gramps/images/relation.svg Xshare/gramps/images/reports.png Xshare/gramps/images/reports.svg Xshare/gramps/images/repos.png Xshare/gramps/images/share-fam.png Xshare/gramps/images/somerights20.gif Xshare/gramps/images/sources.png Xshare/gramps/images/sources.svg Xshare/gramps/images/splash.jpg Xshare/gramps/images/spouse.svg Xshare/gramps/images/stock_add-bookmark.png Xshare/gramps/images/stock_bookmark.png Xshare/gramps/images/stock_calendar.png Xshare/gramps/images/stock_delete-bookmark.png Xshare/gramps/images/stock_edit-bookmark.png Xshare/gramps/images/stock_export.png Xshare/gramps/images/stock_insert-url.png Xshare/gramps/images/stock_link.png Xshare/gramps/images/stock_lock-open.png Xshare/gramps/images/stock_lock.png Xshare/gramps/images/stock_new-html.png Xshare/gramps/images/stock_notes.png Xshare/gramps/images/stock_undo-history.png Xshare/gramps/images/stock_zoom.png Xshare/gramps/images/tools.png Xshare/gramps/images/tools.svg Xshare/gramps/plugins/AncestorChart2.py Xshare/gramps/plugins/AncestorChart2.pyc Xshare/gramps/plugins/AncestorChart2.pyo Xshare/gramps/plugins/AncestorReport.py Xshare/gramps/plugins/AncestorReport.pyc Xshare/gramps/plugins/AncestorReport.pyo Xshare/gramps/plugins/BookReport.py Xshare/gramps/plugins/BookReport.pyc Xshare/gramps/plugins/BookReport.pyo Xshare/gramps/plugins/Calendar.py Xshare/gramps/plugins/Calendar.pyc Xshare/gramps/plugins/Calendar.pyo Xshare/gramps/plugins/ChangeNames.py Xshare/gramps/plugins/ChangeNames.pyc Xshare/gramps/plugins/ChangeNames.pyo Xshare/gramps/plugins/ChangeTypes.py Xshare/gramps/plugins/ChangeTypes.pyc Xshare/gramps/plugins/ChangeTypes.pyo Xshare/gramps/plugins/Check.py Xshare/gramps/plugins/Check.pyc Xshare/gramps/plugins/Check.pyo Xshare/gramps/plugins/Checkpoint.py Xshare/gramps/plugins/Checkpoint.pyc Xshare/gramps/plugins/Checkpoint.pyo Xshare/gramps/plugins/CountAncestors.py Xshare/gramps/plugins/CountAncestors.pyc Xshare/gramps/plugins/CountAncestors.pyo Xshare/gramps/plugins/CustomBookText.py Xshare/gramps/plugins/CustomBookText.pyc Xshare/gramps/plugins/CustomBookText.pyo Xshare/gramps/plugins/Desbrowser.py Xshare/gramps/plugins/Desbrowser.pyc Xshare/gramps/plugins/Desbrowser.pyo Xshare/gramps/plugins/DescendChart.py Xshare/gramps/plugins/DescendChart.pyc Xshare/gramps/plugins/DescendChart.pyo Xshare/gramps/plugins/DescendReport.py Xshare/gramps/plugins/DescendReport.pyc Xshare/gramps/plugins/DescendReport.pyo Xshare/gramps/plugins/DetAncestralReport.py Xshare/gramps/plugins/DetAncestralReport.pyc Xshare/gramps/plugins/DetAncestralReport.pyo Xshare/gramps/plugins/DetDescendantReport.py Xshare/gramps/plugins/DetDescendantReport.pyc Xshare/gramps/plugins/DetDescendantReport.pyo Xshare/gramps/plugins/Eval.py Xshare/gramps/plugins/Eval.pyc Xshare/gramps/plugins/Eval.pyo Xshare/gramps/plugins/EventCmp.py Xshare/gramps/plugins/EventCmp.pyc Xshare/gramps/plugins/EventCmp.pyo Xshare/gramps/plugins/ExportVCalendar.py Xshare/gramps/plugins/ExportVCalendar.pyc Xshare/gramps/plugins/ExportVCalendar.pyo Xshare/gramps/plugins/ExportVCard.py Xshare/gramps/plugins/ExportVCard.pyc Xshare/gramps/plugins/ExportVCard.pyo Xshare/gramps/plugins/FamilyGroup.py Xshare/gramps/plugins/FamilyGroup.pyc Xshare/gramps/plugins/FamilyGroup.pyo Xshare/gramps/plugins/FanChart.py Xshare/gramps/plugins/FanChart.pyc Xshare/gramps/plugins/FanChart.pyo Xshare/gramps/plugins/FindDupes.py Xshare/gramps/plugins/FindDupes.pyc Xshare/gramps/plugins/FindDupes.pyo Xshare/gramps/plugins/GraphViz.py Xshare/gramps/plugins/GraphViz.pyc Xshare/gramps/plugins/GraphViz.pyo Xshare/gramps/plugins/ImportGeneWeb.py Xshare/gramps/plugins/ImportGeneWeb.pyc Xshare/gramps/plugins/ImportGeneWeb.pyo Xshare/gramps/plugins/ImportvCard.py Xshare/gramps/plugins/ImportvCard.pyc Xshare/gramps/plugins/ImportvCard.pyo Xshare/gramps/plugins/IndivComplete.py Xshare/gramps/plugins/IndivComplete.pyc Xshare/gramps/plugins/IndivComplete.pyo Xshare/gramps/plugins/Leak.py Xshare/gramps/plugins/Leak.pyc Xshare/gramps/plugins/Leak.pyo Xshare/gramps/plugins/MediaManager.py Xshare/gramps/plugins/MediaManager.pyc Xshare/gramps/plugins/MediaManager.pyo Xshare/gramps/plugins/NarrativeWeb.py Xshare/gramps/plugins/NarrativeWeb.pyc Xshare/gramps/plugins/NarrativeWeb.pyo Xshare/gramps/plugins/PatchNames.py Xshare/gramps/plugins/PatchNames.pyc Xshare/gramps/plugins/PatchNames.pyo Xshare/gramps/plugins/ReadPkg.py Xshare/gramps/plugins/ReadPkg.pyc Xshare/gramps/plugins/ReadPkg.pyo Xshare/gramps/plugins/Rebuild.py Xshare/gramps/plugins/Rebuild.pyc Xshare/gramps/plugins/Rebuild.pyo Xshare/gramps/plugins/RebuildRefMap.py Xshare/gramps/plugins/RebuildRefMap.pyc Xshare/gramps/plugins/RebuildRefMap.pyo Xshare/gramps/plugins/RelCalc.py Xshare/gramps/plugins/RelCalc.pyc Xshare/gramps/plugins/RelCalc.pyo Xshare/gramps/plugins/RemoveUnused.py Xshare/gramps/plugins/RemoveUnused.pyc Xshare/gramps/plugins/RemoveUnused.pyo Xshare/gramps/plugins/ReorderIds.py Xshare/gramps/plugins/ReorderIds.pyc Xshare/gramps/plugins/ReorderIds.pyo Xshare/gramps/plugins/SimpleBookTitle.py Xshare/gramps/plugins/SimpleBookTitle.pyc Xshare/gramps/plugins/SimpleBookTitle.pyo Xshare/gramps/plugins/SoundGen.py Xshare/gramps/plugins/SoundGen.pyc Xshare/gramps/plugins/SoundGen.pyo Xshare/gramps/plugins/StatisticsChart.py Xshare/gramps/plugins/StatisticsChart.pyc Xshare/gramps/plugins/StatisticsChart.pyo Xshare/gramps/plugins/Summary.py Xshare/gramps/plugins/Summary.pyc Xshare/gramps/plugins/Summary.pyo Xshare/gramps/plugins/TimeLine.py Xshare/gramps/plugins/TimeLine.pyc Xshare/gramps/plugins/TimeLine.pyo Xshare/gramps/plugins/Verify.py Xshare/gramps/plugins/Verify.pyc Xshare/gramps/plugins/Verify.pyo Xshare/gramps/plugins/WriteCD.py Xshare/gramps/plugins/WriteCD.pyc Xshare/gramps/plugins/WriteCD.pyo Xshare/gramps/plugins/WriteFtree.py Xshare/gramps/plugins/WriteFtree.pyc Xshare/gramps/plugins/WriteFtree.pyo Xshare/gramps/plugins/WriteGeneWeb.py Xshare/gramps/plugins/WriteGeneWeb.pyc Xshare/gramps/plugins/WriteGeneWeb.pyo Xshare/gramps/plugins/WritePkg.py Xshare/gramps/plugins/WritePkg.pyc Xshare/gramps/plugins/WritePkg.pyo Xshare/gramps/plugins/book.glade Xshare/gramps/plugins/cdexport.glade Xshare/gramps/plugins/changenames.glade Xshare/gramps/plugins/changetype.glade Xshare/gramps/plugins/checkpoint.glade Xshare/gramps/plugins/desbrowse.glade Xshare/gramps/plugins/eval.glade Xshare/gramps/plugins/eventcmp.glade Xshare/gramps/plugins/genewebexport.glade Xshare/gramps/plugins/holidays.xml Xshare/gramps/plugins/leak.glade Xshare/gramps/plugins/merge.glade Xshare/gramps/plugins/patchnames.glade Xshare/gramps/plugins/rel_cs.py Xshare/gramps/plugins/rel_cs.pyc Xshare/gramps/plugins/rel_cs.pyo Xshare/gramps/plugins/rel_da.py Xshare/gramps/plugins/rel_da.pyc Xshare/gramps/plugins/rel_da.pyo Xshare/gramps/plugins/rel_de.py Xshare/gramps/plugins/rel_de.pyc Xshare/gramps/plugins/rel_de.pyo Xshare/gramps/plugins/rel_es.py Xshare/gramps/plugins/rel_es.pyc Xshare/gramps/plugins/rel_es.pyo Xshare/gramps/plugins/rel_fi.py Xshare/gramps/plugins/rel_fi.pyc Xshare/gramps/plugins/rel_fi.pyo Xshare/gramps/plugins/rel_fr.py Xshare/gramps/plugins/rel_fr.pyc Xshare/gramps/plugins/rel_fr.pyo Xshare/gramps/plugins/rel_hu.py Xshare/gramps/plugins/rel_hu.pyc Xshare/gramps/plugins/rel_hu.pyo Xshare/gramps/plugins/rel_it.py Xshare/gramps/plugins/rel_it.pyc Xshare/gramps/plugins/rel_it.pyo Xshare/gramps/plugins/rel_no.py Xshare/gramps/plugins/rel_no.pyc Xshare/gramps/plugins/rel_no.pyo Xshare/gramps/plugins/rel_pl.py Xshare/gramps/plugins/rel_pl.pyc Xshare/gramps/plugins/rel_pl.pyo Xshare/gramps/plugins/rel_ru.py Xshare/gramps/plugins/rel_ru.pyc Xshare/gramps/plugins/rel_ru.pyo Xshare/gramps/plugins/rel_sk.py Xshare/gramps/plugins/rel_sk.pyc Xshare/gramps/plugins/rel_sk.pyo Xshare/gramps/plugins/rel_sv.py Xshare/gramps/plugins/rel_sv.pyc Xshare/gramps/plugins/rel_sv.pyo Xshare/gramps/plugins/relcalc.glade Xshare/gramps/plugins/soundex.glade Xshare/gramps/plugins/summary.glade Xshare/gramps/plugins/vcalendarexport.glade Xshare/gramps/plugins/vcardexport.glade Xshare/gramps/plugins/verify.glade Xshare/gramps/plugins/writeftree.glade Xshare/gramps/soundex.py Xshare/gramps/soundex.pyc Xshare/gramps/soundex.pyo Xshare/icons/gnome/48x48/mimetypes/gnome-mime-application-x-gedcom.png Xshare/icons/gnome/48x48/mimetypes/gnome-mime-application-x-geneweb.png Xshare/icons/gnome/48x48/mimetypes/gnome-mime-application-x-gramps-package.png Xshare/icons/gnome/48x48/mimetypes/gnome-mime-application-x-gramps-xml.png Xshare/icons/gnome/48x48/mimetypes/gnome-mime-application-x-gramps.png Xshare/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gedcom.svg Xshare/icons/gnome/scalable/mimetypes/gnome-mime-application-x-geneweb.svg Xshare/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gramps-package.svg Xshare/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gramps-xml.svg Xshare/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gramps.svg Xshare/locale/cs/LC_MESSAGES/gramps.mo Xshare/locale/da/LC_MESSAGES/gramps.mo Xshare/locale/de/LC_MESSAGES/gramps.mo Xshare/locale/eo/LC_MESSAGES/gramps.mo Xshare/locale/es/LC_MESSAGES/gramps.mo Xshare/locale/fi/LC_MESSAGES/gramps.mo Xshare/locale/fr/LC_MESSAGES/gramps.mo Xshare/locale/hu/LC_MESSAGES/gramps.mo Xshare/locale/it/LC_MESSAGES/gramps.mo Xshare/locale/lt/LC_MESSAGES/gramps.mo Xshare/locale/nb/LC_MESSAGES/gramps.mo Xshare/locale/nl/LC_MESSAGES/gramps.mo Xshare/locale/no/LC_MESSAGES/gramps.mo Xshare/locale/pl/LC_MESSAGES/gramps.mo Xshare/locale/pt_BR/LC_MESSAGES/gramps.mo Xshare/locale/ro/LC_MESSAGES/gramps.mo Xshare/locale/ru/LC_MESSAGES/gramps.mo Xshare/locale/sk/LC_MESSAGES/gramps.mo Xshare/locale/sv/LC_MESSAGES/gramps.mo Xshare/locale/tr/LC_MESSAGES/gramps.mo Xshare/locale/zh_CN/LC_MESSAGES/gramps.mo Xshare/mime-info/gramps.keys Xshare/mime-info/gramps.mime Xshare/mime/application/x-gedcom.xml Xshare/mime/application/x-geneweb.xml Xshare/mime/application/x-gramps-package.xml Xshare/mime/application/x-gramps-xml.xml Xshare/mime/application/x-gramps.xml Xshare/mime/packages/gramps.xml Xshare/omf/gramps/gramps-C.omf Xshare/omf/gramps/gramps-de.omf Xshare/omf/gramps/gramps-fr.omf Xshare/omf/gramps/gramps-nb.omf Xshare/omf/gramps/gramps-nl.omf Xshare/omf/gramps/gramps-sk.omf Xshare/pixmaps/gramps.png X@dirrm share/omf/gramps X@dirrm share/gramps/plugins X@dirrm share/gramps/images X@dirrm share/gramps/glade X@dirrm share/gramps/example X@dirrm share/gramps/docgen X@dirrm share/gramps/data X@dirrm share/gramps/Selectors X@dirrm share/gramps/ReportBase X@dirrm share/gramps/RelLib X@dirrm share/gramps/PluginUtils X@dirrm share/gramps/Mime X@dirrm share/gramps/Merge X@dirrm share/gramps/GrampsLogger X@dirrm share/gramps/GrampsDb X@dirrm share/gramps/Filters/SideBar X@dirrm share/gramps/Filters/Rules/Source X@dirrm share/gramps/Filters/Rules/Repository X@dirrm share/gramps/Filters/Rules/Place X@dirrm share/gramps/Filters/Rules/Person X@dirrm share/gramps/Filters/Rules/MediaObject X@dirrm share/gramps/Filters/Rules/Family X@dirrm share/gramps/Filters/Rules/Event X@dirrm share/gramps/Filters/Rules X@dirrm share/gramps/Filters X@dirrm share/gramps/FilterEditor X@dirrm share/gramps/Editors X@dirrm share/gramps/DisplayTabs X@dirrm share/gramps/DisplayModels X@dirrm share/gramps/DateHandler X@dirrm share/gramps/DataViews X@dirrm share/gramps/Config X@dirrm share/gramps X@dirrm share/gnome/help/gramps/sk/figures X@dirrm share/gnome/help/gramps/sk X@dirrm share/gnome/help/gramps/nl/figures X@dirrm share/gnome/help/gramps/nl X@dirrm share/gnome/help/gramps/nb/figures X@dirrm share/gnome/help/gramps/nb X@dirrm share/gnome/help/gramps/fr/figures X@dirrm share/gnome/help/gramps/fr X@dirrm share/gnome/help/gramps/de/figures X@dirrm share/gnome/help/gramps/de X@dirrm share/gnome/help/gramps/C/figures X@dirrm share/gnome/help/gramps/C X@dirrm share/gnome/help/gramps END-of-gramps/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 06:30:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D75216A400; Sat, 9 Jun 2007 06:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 00C2813C44C; Sat, 9 Jun 2007 06:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l596UGTr064515; Sat, 9 Jun 2007 06:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l596UGLt064511; Sat, 9 Jun 2007 06:30:16 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 06:30:16 GMT From: Edwin Groothuis Message-Id: <200706090630.l596UGLt064511@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113487: Update port: science/gramps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 06:30:17 -0000 Synopsis: Update port: science/gramps Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sat Jun 9 06:30:16 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113487 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 06:40:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B650616A476 for ; Sat, 9 Jun 2007 06:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 846D113C46A for ; Sat, 9 Jun 2007 06:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l596e8Oe065658 for ; Sat, 9 Jun 2007 06:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l596e82R065657; Sat, 9 Jun 2007 06:40:08 GMT (envelope-from gnats) Date: Sat, 9 Jun 2007 06:40:08 GMT Message-Id: <200706090640.l596e82R065657@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Josh Tolbert Cc: Subject: Re: ports/113486: [maintainer update] Updat www/mod_fcgid to 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Josh Tolbert List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 06:40:08 -0000 The following reply was made to PR ports/113486; it has been noted by GNATS. From: Josh Tolbert To: bug-followup@FreeBSD.org, hemi@puresimplicity.net Cc: Subject: Re: ports/113486: [maintainer update] Updat www/mod_fcgid to 2.1 Date: Sat, 9 Jun 2007 01:14:55 -0500 Hello, Forgot to note this in the original description, but the original notice about the version bump and patch were sent my way by Michael Sheakoski . Thanks a bunch, Michael. Thanks, Josh -- Josh Tolbert hemi@puresimplicity.net || http://www.puresimplicity.net/~hemi/ From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 07:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A79016A469 for ; Sat, 9 Jun 2007 07:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D8F4F13C46C for ; Sat, 9 Jun 2007 07:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5970A96066629 for ; Sat, 9 Jun 2007 07:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5970APV066628; Sat, 9 Jun 2007 07:00:10 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 07:00:10 GMT Resent-Message-Id: <200706090700.l5970APV066628@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dominic Fandrey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CFBE16A400 for ; Sat, 9 Jun 2007 06:54:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 27C0D13C455 for ; Sat, 9 Jun 2007 06:54:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l596sQ13074326 for ; Sat, 9 Jun 2007 06:54:26 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l596sPGN074325; Sat, 9 Jun 2007 06:54:25 GMT (envelope-from nobody) Message-Id: <200706090654.l596sPGN074325@www.freebsd.org> Date: Sat, 9 Jun 2007 06:54:25 GMT From: Dominic Fandrey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113488: [maintainer update][patch][sysutils/bsdadminscripts] serious update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 07:00:11 -0000 >Number: 113488 >Category: ports >Synopsis: [maintainer update][patch][sysutils/bsdadminscripts] serious update >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 07:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: Releng_6 >Organization: private >Environment: FreeBSD mobileKamikaze.norad 6.2-STABLE FreeBSD 6.2-STABLE #1: Fri Apr 27 13:45:49 CEST 2007 root@homeKamikaze.norad:/usr/obj/TPR40-6/i386/usr/src/sys/TPR40-6 i386 >Description: It has today come to my attention that some FreeBSD ports remember the -j flag from the configure stage and thus break during install, which causes package database corruption. This update forces -j1 for install to solve this. Note that it might take a couple of minutes because the distfile appears on the sf mirrors. So do not report that the file is unfetchable. >How-To-Repeat: >Fix: diff -Pur sysutils/bsdadminscripts.orig/Makefile sysutils/bsdadminscripts/Makefile --- sysutils/bsdadminscripts.orig/Makefile Sat Jun 9 08:47:31 2007 +++ sysutils/bsdadminscripts/Makefile Sat Jun 9 08:47:46 2007 @@ -6,7 +6,7 @@ # PORTNAME= bsdadminscripts -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.4 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -Pur sysutils/bsdadminscripts.orig/distinfo sysutils/bsdadminscripts/distinfo --- sysutils/bsdadminscripts.orig/distinfo Sat Jun 9 08:47:31 2007 +++ sysutils/bsdadminscripts/distinfo Sat Jun 9 08:48:20 2007 @@ -1,3 +1,3 @@ -MD5 (bsdadminscripts-2.1.3.tar.gz) = c396e832dbdfc7f641c77cd6ff345b00 -SHA256 (bsdadminscripts-2.1.3.tar.gz) = 6401acdf2f2fb711f8ef6217cb39e530d6f414922fa04eca08c42a06cf7ab17e -SIZE (bsdadminscripts-2.1.3.tar.gz) = 12538 +MD5 (bsdadminscripts-2.1.4.tar.gz) = 49256f9c92a156be1d93dcf386d90c2b +SHA256 (bsdadminscripts-2.1.4.tar.gz) = a3af9606ab93b3a63c1807e03ab81101cb9d1e749a9e5a406701241bb6c7ca9a +SIZE (bsdadminscripts-2.1.4.tar.gz) = 12725 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 07:30:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 992D716A468 for ; Sat, 9 Jun 2007 07:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5C7D513C46A for ; Sat, 9 Jun 2007 07:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l597U2G2070064 for ; Sat, 9 Jun 2007 07:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l597U2R1070063; Sat, 9 Jun 2007 07:30:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 07:30:02 GMT Resent-Message-Id: <200706090730.l597U2R1070063@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 613B716A400 for ; Sat, 9 Jun 2007 07:24:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 4CEB213C465 for ; Sat, 9 Jun 2007 07:24:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l597OMK4076854 for ; Sat, 9 Jun 2007 07:24:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l597OMsA076853; Sat, 9 Jun 2007 07:24:22 GMT (envelope-from nobody) Message-Id: <200706090724.l597OMsA076853@www.freebsd.org> Date: Sat, 9 Jun 2007 07:24:22 GMT From: Marcus von Appen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113489: [Maintainer-update]: editors/hte - mark BROKEN on ia64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 07:30:02 -0000 >Number: 113489 >Category: ports >Synopsis: [Maintainer-update]: editors/hte - mark BROKEN on ia64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 07:30:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD magenta.linden.home 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun May 27 19:44:14 CEST 2007 root@magenta.linden.home:/usr/obj/usr/src/sys/MAGENTA i386 >Description: As reported by pointyhat hte 2.0.5 does not build on ia64. We silently assume, that this is the case for 2.0.6 as well and mark it broken. >How-To-Repeat: Build it on a ia64 arch. >Fix: diff -Nur /usr/ports/editors/hte/Makefile /usr/ports/editors/hte.new/Makefile --- /usr/ports/editors/hte/Makefile Sat May 26 00:11:44 2007 +++ /usr/ports/editors/hte.new/Makefile Sat Jun 9 09:22:54 2007 @@ -24,6 +24,10 @@ .include +.if ${ARCH} == "ia64" +BROKEN= Does not build on ia64 +.endif + .if defined(WITHOUT_X11) PKGNAMESUFFIX= -nox11 CONFIGURE_ARGS=--disable-x11-textmode >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 07:53:45 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04EBF16A46C; Sat, 9 Jun 2007 07:53:45 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id CD00C13C4C3; Sat, 9 Jun 2007 07:53:44 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (beech@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l597rio4072398; Sat, 9 Jun 2007 07:53:44 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l597riJR072394; Sat, 9 Jun 2007 07:53:44 GMT (envelope-from beech) Date: Sat, 9 Jun 2007 07:53:44 GMT From: Beech Rintoul Message-Id: <200706090753.l597riJR072394@freefall.freebsd.org> To: beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org Cc: Subject: Re: ports/113487: Update port: science/gramps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 07:53:45 -0000 Synopsis: Update port: science/gramps Responsible-Changed-From-To: freebsd-ports-bugs-> beech Responsible-Changed-By: beech Responsible-Changed-When: Sat Jun 9 07:51:20 UTC 2007 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=113487 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 09:08:44 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB46516A400; Sat, 9 Jun 2007 09:08:44 +0000 (UTC) (envelope-from raffaele.delorenzo@libero.it) Received: from smtp-out4.libero.it (smtp-out4.libero.it [212.52.84.46]) by mx1.freebsd.org (Postfix) with ESMTP id 4F6EA13C458; Sat, 9 Jun 2007 09:08:43 +0000 (UTC) (envelope-from raffaele.delorenzo@libero.it) Received: from localhost (172.31.0.52) by smtp-out4.libero.it (7.3.120) id 4611FF5204941F5A; Sat, 9 Jun 2007 10:44:14 +0200 X-Scanned: with antispam and antivirus automated system at libero.it Received: from smtp-out3.libero.it ([172.31.0.39]) by localhost (asav-out11.libero.it [192.168.32.39]) (amavisd-new, port 10024) with ESMTP id KNbJBOI+jQZT; Sat, 9 Jun 2007 10:44:14 +0200 (CEST) Received: from desktopr (151.41.188.245) by smtp-out3.libero.it (7.3.120) id 4611FDB60501B525; Sat, 9 Jun 2007 10:44:14 +0200 From: "Raffaele De Lorenzo" To: "'Anders Nordby'" , References: <200705241113.l4OBDinR053594@freefall.freebsd.org> <20070604205620.GA32573@fupp.net> Date: Sat, 9 Jun 2007 10:44:23 +0200 Message-ID: <000301c7aa72$614cdf50$0400000a@desktopr> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook 11 Thread-Index: Acem6s+rmVaoZIZ6RIasjoZqSwahJQDhvaHQ In-Reply-To: <20070604205620.GA32573@fupp.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 Cc: freebsd-ports-bugs@FreeBSD.org, 'Mark Linimon' Subject: R: ports/112648: net/dante: & net/socks5: Buffer Overflow in some SOCKS Server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 09:08:45 -0000 Hi, that's ok, now i will send my issue to dante-bugs@inet. The same issue afflict the NEC Socks5 Socks Server. Regards Raffaele -----Messaggio originale----- Da: Anders Nordby [mailto:anders@FreeBSD.org]=20 Inviato: luned=EC 4 giugno 2007 22.56 A: bug-followup@FreeBSD.org; raffaele.delorenzo@libero.it Cc: freebsd-ports-bugs@FreeBSD.org; Mark Linimon Oggetto: Re: ports/112648: net/dante: & net/socks5: Buffer Overflow in = some SOCKS Server Hi, Dante developers believe there is no such overflow, and I don't see how = your email shows there is one. If you really think there is an issue, maybe = you should report it to dante-bugs@inet.no. Bye, -- Anders. __________ Informazione NOD32 2319 (20070608) __________ Questo messaggio h stato controllato dal Sistema Antivirus NOD32 http://www.nod32.it From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 09:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 285F916A469 for ; Sat, 9 Jun 2007 09:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E2AE713C487 for ; Sat, 9 Jun 2007 09:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l599A2RQ077990 for ; Sat, 9 Jun 2007 09:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l599A2Em077987; Sat, 9 Jun 2007 09:10:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 09:10:02 GMT Resent-Message-Id: <200706090910.l599A2Em077987@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Rashid N. Achilov" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C2FC16A41F for ; Sat, 9 Jun 2007 09:00:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 7EEA613C44B for ; Sat, 9 Jun 2007 09:00:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l59905Fh045766 for ; Sat, 9 Jun 2007 09:00:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l59905v2045765; Sat, 9 Jun 2007 09:00:05 GMT (envelope-from nobody) Message-Id: <200706090900.l59905v2045765@www.freebsd.org> Date: Sat, 9 Jun 2007 09:00:05 GMT From: "Rashid N. Achilov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113490: Update SMB4K up to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 09:10:03 -0000 >Number: 113490 >Category: ports >Synopsis: Update SMB4K up to latest version >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 09:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Rashid N. Achilov >Release: 6.2-RELEASE >Organization: LLC "AS-System Complex" >Environment: FreeBSD to-495.askd.ru 6.2-RELEASE FreeBSD 6.2-RELEASE #3: Fri Feb 16 18:47:32 NOVT 2007 root@to-495.askd.ru:/usr/obj/usr/src/sys/Sentry i386 >Description: This is a third maintenance release for SMB4K 0.8.x. It fixes some bugs (more info on smb4k.berlios.de). >How-To-Repeat: Read CHANGELOG for 0.8.3 version >Fix: Patch attached with submission follows: diff -ruN smb4k.old/Makefile smb4k/Makefile --- smb4k.old/Makefile Fri May 25 04:09:36 2007 +++ smb4k/Makefile Sat Jun 9 15:24:19 2007 @@ -6,7 +6,7 @@ # PORTNAME= smb4k -PORTVERSION= 0.8.1 +PORTVERSION= 0.8.3 PORTREVISION= 1 CATEGORIES= net kde MASTER_SITES= ${MASTER_SITE_BERLIOS} diff -ruN smb4k.old/distinfo smb4k/distinfo --- smb4k.old/distinfo Wed Apr 18 04:02:21 2007 +++ smb4k/distinfo Sat Jun 9 15:25:06 2007 @@ -1,3 +1,3 @@ -MD5 (smb4k-0.8.1.tar.bz2) = 49d7a58f751d04c6c0697ee5e5912d4d -SHA256 (smb4k-0.8.1.tar.bz2) = 158bd7d9c2333f4c1477e917def055a4def29be04fb0a2beee91a73e168c6f53 -SIZE (smb4k-0.8.1.tar.bz2) = 2041381 +MD5 (smb4k-0.8.3.tar.bz2) = 765fc323338e9cd19d0b285ab414ab71 +SHA256 (smb4k-0.8.3.tar.bz2) = 12b638f54045d4212ea150cd6a385f05c5b1918c3ce6430945f2069500f11a35 +SIZE (smb4k-0.8.3.tar.bz2) = 2042328 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 09:19:51 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 806E316A400; Sat, 9 Jun 2007 09:19:51 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5829D13C469; Sat, 9 Jun 2007 09:19:51 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from freefall.freebsd.org (mm@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l599JpC7078551; Sat, 9 Jun 2007 09:19:51 GMT (envelope-from mm@freefall.freebsd.org) Received: (from mm@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l599Jpgf078547; Sat, 9 Jun 2007 09:19:51 GMT (envelope-from mm) Date: Sat, 9 Jun 2007 09:19:51 GMT From: Martin Matuska Message-Id: <200706090919.l599Jpgf078547@freefall.freebsd.org> To: mm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org Cc: Subject: Re: ports/113486: [maintainer update] Update www/mod_fcgid to 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 09:19:51 -0000 Synopsis: [maintainer update] Update www/mod_fcgid to 2.1 Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: mm Responsible-Changed-When: Sat Jun 9 09:17:41 UTC 2007 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=113486 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 10:00:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E694116A468 for ; Sat, 9 Jun 2007 10:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C642913C448 for ; Sat, 9 Jun 2007 10:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59A0AWc081730 for ; Sat, 9 Jun 2007 10:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59A0Ahu081729; Sat, 9 Jun 2007 10:00:10 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 10:00:10 GMT Resent-Message-Id: <200706091000.l59A0Ahu081729@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Antoine Brodin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB8A716A41F for ; Sat, 9 Jun 2007 09:54:24 +0000 (UTC) (envelope-from antoine@peanut.dreadbsd.org) Received: from peanut.dreadbsd.org (peanut.dreadbsd.org [82.67.196.50]) by mx1.freebsd.org (Postfix) with ESMTP id 2FF7413C483 for ; Sat, 9 Jun 2007 09:54:23 +0000 (UTC) (envelope-from antoine@peanut.dreadbsd.org) Received: from peanut.dreadbsd.org (localhost [127.0.0.1]) by peanut.dreadbsd.org (8.14.1/8.14.1) with ESMTP id l599WJCW002882 for ; Sat, 9 Jun 2007 11:32:19 +0200 (CEST) (envelope-from antoine@peanut.dreadbsd.org) Received: (from antoine@localhost) by peanut.dreadbsd.org (8.14.1/8.14.1/Submit) id l599WJ42002881; Sat, 9 Jun 2007 11:32:19 +0200 (CEST) (envelope-from antoine) Message-Id: <200706090932.l599WJ42002881@peanut.dreadbsd.org> Date: Sat, 9 Jun 2007 11:32:19 +0200 (CEST) From: Antoine Brodin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113492: [maintainer] update devel/py-pefile to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Antoine Brodin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 10:00:11 -0000 >Number: 113492 >Category: ports >Synopsis: [maintainer] update devel/py-pefile to 1.2.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 10:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Antoine Brodin >Release: FreeBSD 7.0-CURRENT i386 >Organization: none >Environment: System: FreeBSD barton.dreadbsd.org. 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat May 19 20:36:40 CEST 2007 root@barton.dreadbsd.org.:/usr/obj/usr/src/sys/BARTON i386 >Description: Changelog: Thu May 17 19:30:41 CEST 2007 ero@dkbza.org * Added parsing error functionality and fixed some parsing issues -Version bumped to 1.2.5 -Added parsing error reporting "get_warnings()" and "show_warnings()" -Fixed issues parsing version information that led to infite loops Tue Mar 13 11:51:30 CET 2007 ero@dkbza.org * Added length check to excape an infinite loop when parsing the version information >How-To-Repeat: >Fix: --- py-pefile.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/py-pefile/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 9 Mar 2007 11:26:07 -0000 1.5 +++ Makefile 9 Jun 2007 09:20:09 -0000 @@ -6,7 +6,7 @@ # PORTNAME= pefile -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.5 CATEGORIES= devel python MASTER_SITES= http://dkbza.org/pefile/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/py-pefile/distinfo,v retrieving revision 1.5 diff -u -r1.5 distinfo --- distinfo 9 Mar 2007 11:26:07 -0000 1.5 +++ distinfo 9 Jun 2007 09:20:25 -0000 @@ -1,3 +1,3 @@ -MD5 (pefile-1.2.4.tar.gz) = 549fc3ee63e039eae9b3692b866bdabf -SHA256 (pefile-1.2.4.tar.gz) = 740d434328d11208431b3664256c4ec8d47937e387f6ab98a7671c4b0017cfdc -SIZE (pefile-1.2.4.tar.gz) = 26419 +MD5 (pefile-1.2.5.tar.gz) = 40c201df0f790716a7e84e07aac16685 +SHA256 (pefile-1.2.5.tar.gz) = 1b70ceefff3ed2b2d1b3c5e3f5f5e924c2a922e1b0fffca262188a08a0efe1cd +SIZE (pefile-1.2.5.tar.gz) = 27528 --- py-pefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 10:00:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59F5E16A468; Sat, 9 Jun 2007 10:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 32B0613C455; Sat, 9 Jun 2007 10:00:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59A0Hw0081853; Sat, 9 Jun 2007 10:00:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59A0Hs5081849; Sat, 9 Jun 2007 10:00:17 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 10:00:17 GMT From: Edwin Groothuis Message-Id: <200706091000.l59A0Hs5081849@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org Cc: Subject: Re: ports/113492: [maintainer] update devel/py-pefile to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 10:00:17 -0000 Synopsis: [maintainer] update devel/py-pefile to 1.2.5 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 10:00:16 UTC 2007 Responsible-Changed-Why: freebsd-python@ wants to have py- PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113492 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 11:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A728916A469 for ; Sat, 9 Jun 2007 11:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8BFA613C44C for ; Sat, 9 Jun 2007 11:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59BA3DD086669 for ; Sat, 9 Jun 2007 11:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59BA3fG086668; Sat, 9 Jun 2007 11:10:03 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 11:10:03 GMT Resent-Message-Id: <200706091110.l59BA3fG086668@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Lars Engels Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B73416A400 for ; Sat, 9 Jun 2007 11:08:59 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: from mail.0x20.net (mail.0x20.net [217.69.67.217]) by mx1.freebsd.org (Postfix) with ESMTP id 46B5513C448 for ; Sat, 9 Jun 2007 11:08:59 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: by mail.0x20.net (Postfix, from userid 1002) id B135F39DDE; Sat, 9 Jun 2007 13:08:57 +0200 (CEST) Message-Id: <20070609110857.B135F39DDE@mail.0x20.net> Date: Sat, 9 Jun 2007 13:08:57 +0200 (CEST) From: Lars Engels To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113493: [PATCH] www/dhttpd: overhaul port, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 11:10:03 -0000 >Number: 113493 >Category: ports >Synopsis: [PATCH] www/dhttpd: overhaul port, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 11:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Lars Engels >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD maggie.bsd-geek.de 7.0-CURRENT FreeBSD 7.0-CURRENT #2: Wed Jun 6 21:12:35 CEST >Description: [DESCRIBE CHANGES] - add backup MASTER_SITES - add USE_RC_SUBR - add RC_SUBR documentation to dhttpd.1 - Take maintainership Added file(s): - files/dhttpd.sh.in - files/patch-dhhtpd.1 Removed file(s): - pkg-plist - files/dhttpd.sh Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- dhttpd-1.02a.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/dhttpd/Makefile,v retrieving revision 1.6 diff -u -u -r1.6 Makefile --- Makefile 13 May 2006 04:41:09 -0000 1.6 +++ Makefile 9 Jun 2007 10:47:48 -0000 @@ -8,26 +8,36 @@ PORTNAME= dhttpd PORTVERSION= 1.02a CATEGORIES= www -MASTER_SITES= http://ccca.nctu.edu.tw/~gslin/Software/ +MASTER_SITES= http://ccca.nctu.edu.tw/~gslin/Software/ \ + http://bsd-geek.de/FreeBSD/distfiles/ EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= lars.engels@0x20.net COMMENT= Minimal secure webserver. Fast and efficient, no cgi-bin support WRKSRC= ${WRKDIR}/${PORTNAME}-1.02-4 BUILD_WRKSRC= ${WRKSRC}/src +PLIST_FILES= sbin/dhttpd + MAN1= dhttpd.1 -STARTUP_SCRIPT= ${PORTNAME}.sh +USE_RC_SUBR= dhttpd.sh + +pre-everything:: + @${ECHO_MSG} "==============================================================" + @${ECHO_MSG} "To change the default document root" + @${ECHO_MSG} "${PREFIX}/www/data edit" + @${ECHO_MSG} "${FILESDIR}/patch-config.hh" + @${ECHO_MSG} "for your needs and re-compile dhhtpd." + @${ECHO_MSG} "==============================================================" post-patch: - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/src/config.hh - @${SED} -e "s,%%PREFIX%%,${PREFIX}," ${FILESDIR}/${STARTUP_SCRIPT} > ${WRKSRC}/${STARTUP_SCRIPT} + @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/src/config.hh \ + ${WRKSRC}/dhttpd.1 do-install: ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/sbin - ${INSTALL_SCRIPT} ${WRKSRC}/${STARTUP_SCRIPT} ${PREFIX}/etc/rc.d .include Index: pkg-plist =================================================================== RCS file: pkg-plist diff -N pkg-plist --- pkg-plist 24 Jun 2002 09:17:18 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,2 +0,0 @@ -etc/rc.d/dhttpd.sh -sbin/dhttpd Index: files/dhttpd.sh =================================================================== RCS file: files/dhttpd.sh diff -N files/dhttpd.sh --- files/dhttpd.sh 24 Jun 2002 09:17:18 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - if [ -x %%PREFIX%%/sbin/dhttpd ]; then - %%PREFIX%%/sbin/dhttpd && echo -n ' dhttpd' - fi - ;; -stop) - killall dhttpd && echo -n ' dhttpd' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 Index: files/dhttpd.sh.in =================================================================== RCS file: files/dhttpd.sh.in diff -N files/dhttpd.sh.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/dhttpd.sh.in 9 Jun 2007 10:47:48 -0000 @@ -0,0 +1,25 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# PROVIDE: dhttpd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable dhttpd: +# +# dhttpd_enable (bool): Set it to "YES" to enable dhttpd +# + +. %%RC_SUBR%% + +name="dhttpd" +rcvar=`set_rcvar` + +load_rc_config $name + +: ${dhttpd_enable="NO"} + +command=%%PREFIX%%/sbin/${name} + +run_rc_command "$1" Index: files/patch-dhhtpd.1 =================================================================== RCS file: files/patch-dhhtpd.1 diff -N files/patch-dhhtpd.1 --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-dhhtpd.1 9 Jun 2007 10:47:48 -0000 @@ -0,0 +1,15 @@ +--- dhttpd.1.orig Tue Mar 4 01:35:54 1997 ++++ dhttpd.1 Sat Jun 9 12:42:17 2007 +@@ -13,6 +13,12 @@ + and it was in working condition, it was realized that it was memory + efficient, low profile, quick, and served the one need for + an HTTP daemon: to transmit files. ++ ++The document root is /usr/local/www/data. ++ ++To enable dhttp, add 'dhttpd_enable="YES"' to /etc/rc.conf. ++If you want to change the default port from 80 to another port, add ++\'dhhtdp_flags="- p "\' to /etc/rc.conf. + .SH OPTIONS + .TP + .B \-h --- dhttpd-1.02a.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 11:10:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 417DF16A469; Sat, 9 Jun 2007 11:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1CABD13C45D; Sat, 9 Jun 2007 11:10:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59BAB6Y086838; Sat, 9 Jun 2007 11:10:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59BABk8086834; Sat, 9 Jun 2007 11:10:11 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 11:10:11 GMT From: Edwin Groothuis Message-Id: <200706091110.l59BABk8086834@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113493: [PATCH] www/dhttpd: overhaul port, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 11:10:12 -0000 Synopsis: [PATCH] www/dhttpd: overhaul port, take maintainership Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 11:10:11 UTC 2007 Responsible-Changed-Why: miwi@ wants this PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113493 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:10:02 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B4D516A469 for ; Sat, 9 Jun 2007 12:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5972413C455 for ; Sat, 9 Jun 2007 12:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CA2Nq091073 for ; Sat, 9 Jun 2007 12:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CA23q091069; Sat, 9 Jun 2007 12:10:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 12:10:02 GMT Resent-Message-Id: <200706091210.l59CA23q091069@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Denis Shaposhnikov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 160BE16A41F for ; Sat, 9 Jun 2007 12:04:04 +0000 (UTC) (envelope-from dsh@vlink.ru) Received: from sagitta.internal.vlink.ru (sagitta.internal.vlink.ru [85.172.168.1]) by mx1.freebsd.org (Postfix) with ESMTP id 8207113C483 for ; Sat, 9 Jun 2007 12:04:03 +0000 (UTC) (envelope-from dsh@vlink.ru) Received: from sagitta.internal.vlink.ru (localhost [127.0.0.1]) by sagitta.internal.vlink.ru (Postfix) with ESMTP id C64F71F456B; Sat, 9 Jun 2007 15:46:46 +0400 (MSD) Received: from neva.vlink.ru (neva.vlink.ru [85.172.168.250]) by sagitta.internal.vlink.ru (Postfix) with ESMTP id 7CE191F455D; Sat, 9 Jun 2007 15:46:46 +0400 (MSD) Received: from neva.vlink.ru (localhost [127.0.0.1]) by neva.vlink.ru (8.13.8/8.13.8) with ESMTP id l59BkjGM051035; Sat, 9 Jun 2007 15:46:45 +0400 (MSD) (envelope-from dsh@neva.vlink.ru) Received: (from dsh@localhost) by neva.vlink.ru (8.13.8/8.13.8/Submit) id l59Bkjir051031; Sat, 9 Jun 2007 15:46:45 +0400 (MSD) (envelope-from dsh) Message-Id: <200706091146.l59Bkjir051031@neva.vlink.ru> Date: Sat, 9 Jun 2007 15:46:45 +0400 (MSD) From: Denis Shaposhnikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113494: Update port: net-im/tkabber-devel (svn snaphot) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Denis Shaposhnikov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:10:02 -0000 >Number: 113494 >Category: ports >Synopsis: Update port: net-im/tkabber-devel (svn snaphot) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 12:10:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD neva.vlink.ru 7.0-CURRENT FreeBSD 7.0-CURRENT #5: Thu May 24 14:16:52 MSD 2007 dsh@neva.vlink.ru:/var/FreeBSD/obj/var/FreeBSD/src/sys/MYNERIC i386 >Description: >How-To-Repeat: >Fix: diff -Nru --exclude=.svn /usr/ports/net-im/tkabber-devel/Makefile tkabber-devel/Makefile --- /usr/ports/net-im/tkabber-devel/Makefile Sun May 20 00:19:41 2007 +++ tkabber-devel/Makefile Sat Jun 9 15:07:33 2007 @@ -6,8 +6,7 @@ # PORTNAME= tkabber -PORTVERSION= 0.9.9.a.20070325 -PORTREVISION= 1 +PORTVERSION= 0.10.0.a.20070529 CATEGORIES= net-im MASTER_SITES= http://ports.internal.vlink.ru/distfiles/ PKGNAMESUFFIX= -devel @@ -26,8 +25,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME} USE_BZIP2= yes -USE_TCL_RUN= yes -USE_TK_RUN= yes +USE_TCL_RUN= 84+ +USE_TK_RUN= 84+ SUBDIRS= emoticons ifacetk jabberlib-tclxml mclistbox msgs pixmaps \ plugins sounds trans diff -Nru --exclude=.svn /usr/ports/net-im/tkabber-devel/distinfo tkabber-devel/distinfo --- /usr/ports/net-im/tkabber-devel/distinfo Mon Mar 26 14:13:39 2007 +++ tkabber-devel/distinfo Sat Jun 9 14:58:11 2007 @@ -1,3 +1,3 @@ -MD5 (tkabber-0.9.9.a.20070325.tar.bz2) = df3e6c3e91d787c58e1d5bbcb45c0d39 -SHA256 (tkabber-0.9.9.a.20070325.tar.bz2) = cd3ecdd65ee2f9398168659eea55b0dac1a8bc44f0fbe0d1d708039f2d086a5f -SIZE (tkabber-0.9.9.a.20070325.tar.bz2) = 725605 +MD5 (tkabber-0.10.0.a.20070529.tar.bz2) = f1854c4187d3dcdbbb513546427da69e +SHA256 (tkabber-0.10.0.a.20070529.tar.bz2) = 0cdc799c5f9c9ace2129b221ed51bb665c7624465347237431c75d0db68eb52f +SIZE (tkabber-0.10.0.a.20070529.tar.bz2) = 741078 diff -Nru --exclude=.svn /usr/ports/net-im/tkabber-devel/files/patch-tkabber.tcl tkabber-devel/files/patch-tkabber.tcl --- /usr/ports/net-im/tkabber-devel/files/patch-tkabber.tcl Mon Mar 26 14:13:40 2007 +++ tkabber-devel/files/patch-tkabber.tcl Sat Jun 9 14:58:39 2007 @@ -4,8 +4,8 @@ return $snapshot } --set tkabber_version "0.9.9-SVN[get_snapshot [fullpath ChangeLog]]" -+set tkabber_version "0.9.9-SVN[get_snapshot [fullpath version]]" +-set tkabber_version "0.10.0-svn[get_snapshot [fullpath ChangeLog]]" ++set tkabber_version "0.10.0-svn[get_snapshot [fullpath version]]" set toolkit_version "Tcl/Tk [info patchlevel]" proc rescmd {id res ls} { diff -Nru --exclude=.svn /usr/ports/net-im/tkabber-devel/pkg-plist tkabber-devel/pkg-plist --- /usr/ports/net-im/tkabber-devel/pkg-plist Mon Mar 26 14:13:39 2007 +++ tkabber-devel/pkg-plist Sat Jun 9 15:24:47 2007 @@ -9,13 +9,13 @@ %%DATADIR%%/datagathering.tcl %%DATADIR%%/default.tcl %%DATADIR%%/disco.tcl -%%DATADIR%%/emoticons/default/FaceIronic.gif -%%DATADIR%%/emoticons/default/FaceStartled.gif -%%DATADIR%%/emoticons/default/FaceStraight.gif %%DATADIR%%/emoticons/default/beer.gif %%DATADIR%%/emoticons/default/facegrinning.gif %%DATADIR%%/emoticons/default/facehappy.gif +%%DATADIR%%/emoticons/default/faceironic.gif %%DATADIR%%/emoticons/default/facesad.gif +%%DATADIR%%/emoticons/default/facestartled.gif +%%DATADIR%%/emoticons/default/facestraight.gif %%DATADIR%%/emoticons/default/facewinking.gif %%DATADIR%%/emoticons/default/faceyukky.gif %%DATADIR%%/emoticons/default/icondef.xml @@ -24,6 +24,7 @@ %%DATADIR%%/gpgme.tcl %%DATADIR%%/hooks.tcl %%DATADIR%%/iface.tcl +%%DATADIR%%/ifacetk/buttonbar.tcl %%DATADIR%%/ifacetk/bwidget_workarounds.tcl %%DATADIR%%/ifacetk/default.xrdb %%DATADIR%%/ifacetk/idefault.tcl @@ -83,11 +84,13 @@ %%DATADIR%%/pixmaps.tcl %%DATADIR%%/pixmaps/default-blue/docking/available-away.gif %%DATADIR%%/pixmaps/default-blue/docking/available-chat.gif +%%DATADIR%%/pixmaps/default-blue/docking/available-dnd.gif %%DATADIR%%/pixmaps/default-blue/docking/available.gif %%DATADIR%%/pixmaps/default-blue/docking/tkabber.ico %%DATADIR%%/pixmaps/default-blue/icondef.xml %%DATADIR%%/pixmaps/default-blue/roster/available-away.gif %%DATADIR%%/pixmaps/default-blue/roster/available-chat.gif +%%DATADIR%%/pixmaps/default-blue/roster/available-dnd.gif %%DATADIR%%/pixmaps/default-blue/roster/available.gif %%DATADIR%%/pixmaps/default/docking/available-away.gif %%DATADIR%%/pixmaps/default/docking/available-chat.gif @@ -144,6 +147,7 @@ %%DATADIR%%/pixmaps/default/services/msn_xa.gif %%DATADIR%%/pixmaps/default/services/rss_offline.gif %%DATADIR%%/pixmaps/default/services/rss_online.gif +%%DATADIR%%/pixmaps/default/services/server.gif %%DATADIR%%/pixmaps/default/services/sms.gif %%DATADIR%%/pixmaps/default/services/weather_away.gif %%DATADIR%%/pixmaps/default/services/weather_chat.gif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:20:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3064816A41F for ; Sat, 9 Jun 2007 12:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id ED11913C46C for ; Sat, 9 Jun 2007 12:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CK20x091654 for ; Sat, 9 Jun 2007 12:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CK2SO091649; Sat, 9 Jun 2007 12:20:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 12:20:02 GMT Resent-Message-Id: <200706091220.l59CK2SO091649@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edwin Groothuis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0521116A400 for ; Sat, 9 Jun 2007 12:16:44 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail4out.barnet.com.au (mail4.barnet.com.au [202.83.178.125]) by mx1.freebsd.org (Postfix) with ESMTP id BFA1613C458 for ; Sat, 9 Jun 2007 12:16:43 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail4out.barnet.com.au (Postfix, from userid 1001) id 1197837D80B; Sat, 9 Jun 2007 22:16:43 +1000 (EST) Received: from mail4auth.barnet.com.au (mail4.barnet.com.au [202.83.178.125]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail4.barnet.com.au (Postfix) with ESMTP id DA5FB423AC4 for ; Sat, 9 Jun 2007 22:16:42 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail4auth.barnet.com.au (Postfix) with ESMTP id 9F5D437D196 for ; Sat, 9 Jun 2007 22:16:42 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id DF922107; Sat, 9 Jun 2007 22:16:42 +1000 (EST) Message-Id: <20070609121642.DF922107@k7.mavetju> Date: Sat, 9 Jun 2007 22:16:42 +1000 (EST) From: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113495: repocopy net/cacti to net-mgmt/cacti X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:20:03 -0000 >Number: 113495 >Category: ports >Synopsis: repocopy net/cacti to net-mgmt/cacti >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 12:20:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 6.2-RELEASE-p4 i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:55:55 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/SMP i386 >Description: Please repocopy net/cacti to net-mgmt/cacti since that is a more appropriate location for it. No other ports need to be changed for this. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:20:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1EE4316A400; Sat, 9 Jun 2007 12:20:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EF63913C45D; Sat, 9 Jun 2007 12:20:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CK9cj091809; Sat, 9 Jun 2007 12:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CK9sl091804; Sat, 9 Jun 2007 12:20:09 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 12:20:09 GMT From: Edwin Groothuis Message-Id: <200706091220.l59CK9sl091804@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Cc: Subject: Re: ports/113495: repocopy net/cacti to net-mgmt/cacti X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:20:10 -0000 Synopsis: repocopy net/cacti to net-mgmt/cacti Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 12:20:09 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113495 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:30:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A20F16A400 for ; Sat, 9 Jun 2007 12:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EA04013C458 for ; Sat, 9 Jun 2007 12:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CU1AZ092271 for ; Sat, 9 Jun 2007 12:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CU1eD092270; Sat, 9 Jun 2007 12:30:01 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 12:30:01 GMT Resent-Message-Id: <200706091230.l59CU1eD092270@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9B8F16A479 for ; Sat, 9 Jun 2007 12:20:54 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id 678CA13C44B for ; Sat, 9 Jun 2007 12:20:54 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id 270365C1F; Sat, 9 Jun 2007 20:20:53 +0800 (CST) Message-Id: <20070609122053.270365C1F@ccreader.NCTU.edu.tw> Date: Sat, 9 Jun 2007 20:20:53 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/113496: [PATCH] www/p5-WebService-CIA: update to 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:30:03 -0000 >Number: 113496 >Category: ports >Synopsis: [PATCH] www/p5-WebService-CIA: update to 1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 12:30:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: - Update to 1.2 Port maintainer (gslin@gslin.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-WebService-CIA-1.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-WebService-CIA/Makefile /home/staff/gslin/work/ports/p5-WebService-CIA/Makefile --- /usr/ports/www/p5-WebService-CIA/Makefile Fri May 4 10:27:40 2007 +++ /home/staff/gslin/work/ports/p5-WebService-CIA/Makefile Sat Jun 9 20:20:34 2007 @@ -6,13 +6,13 @@ # PORTNAME= WebService-CIA -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= WebService PKGNAMEPREFIX= p5- -MAINTAINER= gslin@gslin.org +MAINTAINER= perl@FreeBSD.org COMMENT= Information from the CIA World Factbook RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Crypt/SSLeay.pm:${PORTSDIR}/security/p5-Crypt-SSLeay \ diff -ruN --exclude=CVS /usr/ports/www/p5-WebService-CIA/distinfo /home/staff/gslin/work/ports/p5-WebService-CIA/distinfo --- /usr/ports/www/p5-WebService-CIA/distinfo Fri May 4 10:27:40 2007 +++ /home/staff/gslin/work/ports/p5-WebService-CIA/distinfo Sat Jun 9 20:18:33 2007 @@ -1,3 +1,3 @@ -MD5 (WebService-CIA-1.1.tar.gz) = e3fb775a3281c60c6430970f9555c6d8 -SHA256 (WebService-CIA-1.1.tar.gz) = 1021ad27a51d9980fecc3683d9129e28075ff11ddcd8aaa84581b984d9aecdb9 -SIZE (WebService-CIA-1.1.tar.gz) = 11215 +MD5 (WebService-CIA-1.2.tar.gz) = 16a142a064e08e17f63f09b73b36cdaf +SHA256 (WebService-CIA-1.2.tar.gz) = 5e8b1001e7382d5a81076f35fff80a8b7f69f6a43efdbc440d9838a5d8bb0f2d +SIZE (WebService-CIA-1.2.tar.gz) = 11552 --- p5-WebService-CIA-1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:30:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86ABB16A469; Sat, 9 Jun 2007 12:30:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6433213C46A; Sat, 9 Jun 2007 12:30:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CUCRC092700; Sat, 9 Jun 2007 12:30:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CUCK0092696; Sat, 9 Jun 2007 12:30:12 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 12:30:12 GMT From: Edwin Groothuis Message-Id: <200706091230.l59CUCK0092696@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113496: [PATCH] www/p5-WebService-CIA: update to 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:30:12 -0000 Synopsis: [PATCH] www/p5-WebService-CIA: update to 1.2 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sat Jun 9 12:30:11 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113496 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:30:20 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 82D0C16A400; Sat, 9 Jun 2007 12:30:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6047013C455; Sat, 9 Jun 2007 12:30:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CUKnZ092910; Sat, 9 Jun 2007 12:30:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CUK4V092906; Sat, 9 Jun 2007 12:30:20 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 12:30:20 GMT From: Edwin Groothuis Message-Id: <200706091230.l59CUK4V092906@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/113496: [PATCH] www/p5-WebService-CIA: update to 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:30:20 -0000 Synopsis: [PATCH] www/p5-WebService-CIA: update to 1.2 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 12:30:19 UTC 2007 Responsible-Changed-Why: clsung@ wants his PRs http://www.freebsd.org/cgi/query-pr.cgi?pr=113496 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:50:07 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F05D916A468 for ; Sat, 9 Jun 2007 12:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D64BA13C4BD for ; Sat, 9 Jun 2007 12:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59Co7iQ094754 for ; Sat, 9 Jun 2007 12:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59Co7Vc094753; Sat, 9 Jun 2007 12:50:07 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 12:50:07 GMT Resent-Message-Id: <200706091250.l59Co7Vc094753@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78FE116A468 for ; Sat, 9 Jun 2007 12:47:09 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id 3548113C455 for ; Sat, 9 Jun 2007 12:47:09 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id A10005C1F; Sat, 9 Jun 2007 20:47:08 +0800 (CST) Message-Id: <20070609124708.A10005C1F@ccreader.NCTU.edu.tw> Date: Sat, 9 Jun 2007 20:47:08 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org, gslin@gslin.org Subject: ports/113497: [PATCH] math/p5-Math-Random-MT-Auto: update to 6.03 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:50:08 -0000 >Number: 113497 >Category: ports >Synopsis: [PATCH] math/p5-Math-Random-MT-Auto: update to 6.03 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 12:50:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: - Update to 6.03 Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Math-Random-MT-Auto-6.03.patch begins here --- diff -ruN --exclude=CVS /usr/ports/math/p5-Math-Random-MT-Auto/Makefile /home/staff/gslin/work/ports/p5-Math-Random-MT-Auto/Makefile --- /usr/ports/math/p5-Math-Random-MT-Auto/Makefile Sat May 26 06:47:50 2007 +++ /home/staff/gslin/work/ports/p5-Math-Random-MT-Auto/Makefile Sat Jun 9 20:22:38 2007 @@ -6,7 +6,7 @@ # PORTNAME= Math-Random-MT-Auto -PORTVERSION= 5.06 +PORTVERSION= 6.03 CATEGORIES= math perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Math diff -ruN --exclude=CVS /usr/ports/math/p5-Math-Random-MT-Auto/distinfo /home/staff/gslin/work/ports/p5-Math-Random-MT-Auto/distinfo --- /usr/ports/math/p5-Math-Random-MT-Auto/distinfo Sat May 26 06:47:50 2007 +++ /home/staff/gslin/work/ports/p5-Math-Random-MT-Auto/distinfo Sat Jun 9 20:23:07 2007 @@ -1,3 +1,3 @@ -MD5 (Math-Random-MT-Auto-5.06.tar.gz) = ecfed81b9e28948d7c954795528b8040 -SHA256 (Math-Random-MT-Auto-5.06.tar.gz) = 6941677817607de14898acb1fb4ed59fc452081b33c8263d1b0093f1b1917134 -SIZE (Math-Random-MT-Auto-5.06.tar.gz) = 125311 +MD5 (Math-Random-MT-Auto-6.03.tar.gz) = 98c4ea4f94e3905df8e4433a4a11a008 +SHA256 (Math-Random-MT-Auto-6.03.tar.gz) = dfbbbddb4256560fe0fe5f8eb419104317daabb217d46a4866406805805d2ab4 +SIZE (Math-Random-MT-Auto-6.03.tar.gz) = 123910 --- p5-Math-Random-MT-Auto-6.03.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:50:15 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B25E516A421; Sat, 9 Jun 2007 12:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 901D613C469; Sat, 9 Jun 2007 12:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CoFI9094887; Sat, 9 Jun 2007 12:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CoFGY094883; Sat, 9 Jun 2007 12:50:15 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 12:50:15 GMT From: Edwin Groothuis Message-Id: <200706091250.l59CoFGY094883@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org Cc: Subject: Re: ports/113497: [PATCH] math/p5-Math-Random-MT-Auto: update to 6.03 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:50:15 -0000 Synopsis: [PATCH] math/p5-Math-Random-MT-Auto: update to 6.03 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 12:50:14 UTC 2007 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=113497 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 12:55:45 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF2C816A41F; Sat, 9 Jun 2007 12:55:45 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9C8ED13C45E; Sat, 9 Jun 2007 12:55:45 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from freefall.freebsd.org (rafan@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59CtjSc095350; Sat, 9 Jun 2007 12:55:45 GMT (envelope-from rafan@freefall.freebsd.org) Received: (from rafan@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59CtjE7095346; Sat, 9 Jun 2007 12:55:45 GMT (envelope-from rafan) Date: Sat, 9 Jun 2007 12:55:45 GMT From: Rong-En Fan Message-Id: <200706091255.l59CtjE7095346@freefall.freebsd.org> To: rafan@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org Cc: Subject: Re: ports/113494: Update port: net-im/tkabber-devel (svn snaphot) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 12:55:45 -0000 Synopsis: Update port: net-im/tkabber-devel (svn snaphot) Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: rafan Responsible-Changed-When: Sat Jun 9 12:55:44 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113494 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:00:18 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A00D16A474 for ; Sat, 9 Jun 2007 13:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3F4CE13C458 for ; Sat, 9 Jun 2007 13:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59D0Ibp095598 for ; Sat, 9 Jun 2007 13:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59D0Hga095597; Sat, 9 Jun 2007 13:00:17 GMT (envelope-from gnats) Date: Sat, 9 Jun 2007 13:00:17 GMT Message-Id: <200706091300.l59D0Hga095597@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/113489: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:00:18 -0000 The following reply was made to PR ports/113489; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/113489: commit references a PR Date: Sat, 9 Jun 2007 12:59:40 +0000 (UTC) rafan 2007-06-09 12:59:33 UTC FreeBSD ports repository Modified files: editors/hte Makefile Log: - BROKEN on ia64: does not build PR: ports/113489 Submitted by: Marcus von Appen (maintainer) Revision Changes Path 1.38 +4 -0 ports/editors/hte/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:00:48 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50AD216A46C; Sat, 9 Jun 2007 13:00:48 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2DE0F13C44C; Sat, 9 Jun 2007 13:00:48 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from freefall.freebsd.org (rafan@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59D0meL095805; Sat, 9 Jun 2007 13:00:48 GMT (envelope-from rafan@freefall.freebsd.org) Received: (from rafan@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59D0lC6095801; Sat, 9 Jun 2007 13:00:47 GMT (envelope-from rafan) Date: Sat, 9 Jun 2007 13:00:47 GMT From: Rong-En Fan Message-Id: <200706091300.l59D0lC6095801@freefall.freebsd.org> To: mva@sysfault.org, rafan@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113489: [Maintainer-update]: editors/hte - mark BROKEN on ia64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:00:48 -0000 Synopsis: [Maintainer-update]: editors/hte - mark BROKEN on ia64 State-Changed-From-To: open->closed State-Changed-By: rafan State-Changed-When: Sat Jun 9 13:00:47 UTC 2007 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=113489 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:02:00 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 065FF16A400; Sat, 9 Jun 2007 13:02:00 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D829913C4C1; Sat, 9 Jun 2007 13:01:59 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from freefall.freebsd.org (rafan@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59D1xV5095973; Sat, 9 Jun 2007 13:01:59 GMT (envelope-from rafan@freefall.freebsd.org) Received: (from rafan@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59D1xMK095969; Sat, 9 Jun 2007 13:01:59 GMT (envelope-from rafan) Date: Sat, 9 Jun 2007 13:01:59 GMT From: Rong-En Fan Message-Id: <200706091301.l59D1xMK095969@freefall.freebsd.org> To: rafan@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org Cc: Subject: Re: ports/113490: Update net/SMB4K up to latest version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:02:00 -0000 Synopsis: Update net/SMB4K up to latest version Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: rafan Responsible-Changed-When: Sat Jun 9 13:01:59 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113490 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:11:59 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86A0616A41F; Sat, 9 Jun 2007 13:11:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6577013C4B9; Sat, 9 Jun 2007 13:11:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59DBxXc096528; Sat, 9 Jun 2007 13:11:59 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59DBxkP096524; Sat, 9 Jun 2007 13:11:59 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 13:11:59 GMT From: Martin Wilke Message-Id: <200706091311.l59DBxkP096524@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113471: [MAINTAINER] update games/mangos to 3838 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:11:59 -0000 Synopsis: [MAINTAINER] update games/mangos to 3838 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 13:11:58 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113471 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:12:09 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50FF116A480; Sat, 9 Jun 2007 13:12:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3036613C480; Sat, 9 Jun 2007 13:12:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59DC9Gj096611; Sat, 9 Jun 2007 13:12:09 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59DC9n1096607; Sat, 9 Jun 2007 13:12:09 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 13:12:09 GMT From: Martin Wilke Message-Id: <200706091312.l59DC9n1096607@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113481: [Maintainer update]: devel/tide X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:12:09 -0000 Synopsis: [Maintainer update]: devel/tide Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 13:12:08 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113481 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:12:23 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC65116A481; Sat, 9 Jun 2007 13:12:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AACBF13C45B; Sat, 9 Jun 2007 13:12:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59DCNMI096691; Sat, 9 Jun 2007 13:12:23 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59DCNDu096687; Sat, 9 Jun 2007 13:12:23 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 13:12:23 GMT From: Martin Wilke Message-Id: <200706091312.l59DCNDu096687@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113482: [maintainer-update][cad/freehdl] add fetchable download location X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:12:23 -0000 Synopsis: [maintainer-update][cad/freehdl] add fetchable download location Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 13:12:21 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113482 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:12:35 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8983616A46B; Sat, 9 Jun 2007 13:12:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 67F0B13C4B0; Sat, 9 Jun 2007 13:12:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59DCZRI096779; Sat, 9 Jun 2007 13:12:35 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59DCZ6B096775; Sat, 9 Jun 2007 13:12:35 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 13:12:35 GMT From: Martin Wilke Message-Id: <200706091312.l59DCZ6B096775@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113452: port update: net-im/centerim X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:12:35 -0000 Synopsis: port update: net-im/centerim Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 13:12:34 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113452 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:12:49 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38F1A16A46B; Sat, 9 Jun 2007 13:12:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 15EAE13C4BD; Sat, 9 Jun 2007 13:12:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59DCmoK096848; Sat, 9 Jun 2007 13:12:48 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59DCmpu096844; Sat, 9 Jun 2007 13:12:48 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 13:12:48 GMT From: Martin Wilke Message-Id: <200706091312.l59DCmpu096844@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113466: [NEW PORT] net-mgmt/nfsen-devel: Development version of web based frontend to nfdump X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:12:49 -0000 Synopsis: [NEW PORT] net-mgmt/nfsen-devel: Development version of web based frontend to nfdump Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 13:12:47 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113466 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 13:12:58 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 397D216A469; Sat, 9 Jun 2007 13:12:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1805B13C4B0; Sat, 9 Jun 2007 13:12:58 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59DCvKt096945; Sat, 9 Jun 2007 13:12:57 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59DCvF3096941; Sat, 9 Jun 2007 13:12:57 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 13:12:57 GMT From: Martin Wilke Message-Id: <200706091312.l59DCvF3096941@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113401: Update port: security/xca to version 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 13:12:58 -0000 Synopsis: Update port: security/xca to version 0.6.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 13:12:57 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113401 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 14:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACCD116A41F for ; Sat, 9 Jun 2007 14:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8D88213C457 for ; Sat, 9 Jun 2007 14:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59EA3mw002216 for ; Sat, 9 Jun 2007 14:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59EA3OF002215; Sat, 9 Jun 2007 14:10:03 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 14:10:03 GMT Resent-Message-Id: <200706091410.l59EA3OF002215@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, clemens fischer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 66C8A16A400 for ; Sat, 9 Jun 2007 14:04:56 +0000 (UTC) (envelope-from root@spotteswoode.dnsalias.org) Received: from mail-out01.broadnet-mediascape.de (mail-out01.broadnet-mediascape.de [62.206.1.18]) by mx1.freebsd.org (Postfix) with SMTP id 0076F13C45A for ; Sat, 9 Jun 2007 14:04:55 +0000 (UTC) (envelope-from root@spotteswoode.dnsalias.org) Received: (qmail 13916 invoked by uid 113); 9 Jun 2007 14:04:54 -0000 Received: from 212.99.205.32 by mail-out01 (envelope-from , uid 106) with qmail-scanner-1.25 (trophie: 7.510-1002/521/20835. Clear:RC:1(212.99.205.32):. Processed in 0.250074 secs); 09 Jun 2007 14:04:54 -0000 Received: from d463cd20.datahighways.de (HELO spotteswoode.dnsalias.org) (212.99.205.32) by mail-out01.broadnet-mediascape.de with SMTP; 9 Jun 2007 14:04:53 -0000 Received: by spotteswoode.dnsalias.org (Postfix, from userid 0) id 9F9172A6F9; Sat, 9 Jun 2007 16:03:11 +0200 (CEST) Message-Id: <20070609140311.9F9172A6F9@spotteswoode.dnsalias.org> Date: Sat, 9 Jun 2007 16:03:11 +0200 (CEST) From: clemens fischer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clemens fischer Subject: ports/113498: www/elinks: lua scripting broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 14:10:03 -0000 >Number: 113498 >Category: ports >Synopsis: www/elinks: lua scripting broken >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 14:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: clemens fischer >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD spotteswoode.dnsalias.org 6.2-STABLE FreeBSD 6.2-STABLE #19: Sat May 26 19:53:56 CEST 2007 root@spotteswoode.dnsalias.org:/usr/obj/usr/src/sys/spott i386 >Description: after recent upgrades i noticed that www/elinks doesn't recognize lua scripting prerequisites anymore. the port has "USE_LUA=5.0", but this doesn't seem to work. >How-To-Repeat: cd /usr/ports/www/elinks && make WITH_{88COLORS,256COLORS,BITTORRENT,NNTP,FTP,FINGER,EXMODE,HIGHLIGHT,FASTMEM,LUASCRIPT,LOCAL_CGI,ICONV}=1 and watch. >Fix: the following is a workaround only! after "make ... configure", this patch gets me a lua-scriptable elinks, it is against ./work/elinks*/Makefile.config: # find . -name '*,v' -execdir rcsdiff --unified '{}' \; =================================================================== RCS file: Makefile.config,v retrieving revision 1.1 diff --unified -r1.1 Makefile.config --- Makefile.config 2007/06/09 13:24:16 1.1 +++ Makefile.config 2007/06/09 13:25:35 @@ -64,8 +64,8 @@ JW = LIBDIR = /usr/local/lib LOCALEDIR = /usr/local/share/locale -LUA_CFLAGS = -LUA_LIBS = -llua -llualib -lm +LUA_CFLAGS = -I /l/include/lua50 +LUA_LIBS = -L /l/lib/lua50 -llua -llualib -lm MKINSTALLDIRS = $(PATHPREFIX)config/mkinstalldirs MSGFMT = OPENSSL_CFLAGS = =================================================================== as you can see, the "USE_LUA=..." doesn't carry over correctly. regards, clemens >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 14:10:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D51E916A468; Sat, 9 Jun 2007 14:10:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AFDF213C44B; Sat, 9 Jun 2007 14:10:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59EABCa002379; Sat, 9 Jun 2007 14:10:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59EAB0O002363; Sat, 9 Jun 2007 14:10:11 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 14:10:11 GMT From: Edwin Groothuis Message-Id: <200706091410.l59EAB0O002363@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113498: www/elinks: lua scripting broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 14:10:11 -0000 Synopsis: www/elinks: lua scripting broken State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jun 9 14:10:10 UTC 2007 State-Changed-Why: Awaiting maintainers feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=113498 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 18:00:08 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A4DA16A468 for ; Sat, 9 Jun 2007 18:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D69DC13C46A for ; Sat, 9 Jun 2007 18:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59I07rj019489 for ; Sat, 9 Jun 2007 18:00:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59I07RU019488; Sat, 9 Jun 2007 18:00:07 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 18:00:07 GMT Resent-Message-Id: <200706091800.l59I07RU019488@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Roman Bogorodskiy Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D06A16A47A for ; Sat, 9 Jun 2007 17:53:42 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 74DA913C4C6 for ; Sat, 9 Jun 2007 17:53:42 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from freefall.freebsd.org (novel@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59Hrgns019287 for ; Sat, 9 Jun 2007 17:53:42 GMT (envelope-from novel@freefall.freebsd.org) Received: (from novel@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59Hrgto019286; Sat, 9 Jun 2007 17:53:42 GMT (envelope-from novel) Message-Id: <200706091753.l59Hrgto019286@freefall.freebsd.org> Date: Sat, 9 Jun 2007 17:53:42 GMT From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/113499: [ patch ] x11-wm/openbox: update to 3.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Roman Bogorodskiy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 18:00:08 -0000 >Number: 113499 >Category: ports >Synopsis: [ patch ] x11-wm/openbox: update to 3.4.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 18:00:07 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: >Description: Update x11-wm/openbox to 3.4.0. >How-To-Repeat: >Fix: --- openbox340.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11-wm/openbox/Makefile,v retrieving revision 1.76 diff -u -r1.76 Makefile --- Makefile 19 May 2007 20:32:46 -0000 1.76 +++ Makefile 9 Jun 2007 17:48:04 -0000 @@ -7,8 +7,7 @@ # PORTNAME= openbox -PORTVERSION= 3.3.1 -PORTREVISION= 1 +PORTVERSION= 3.4.0 CATEGORIES= x11-wm MASTER_SITES= http://offload1.icculus.org/openbox/releases/ @@ -19,11 +18,15 @@ GNU_CONFIGURE= yes USE_GMAKE= yes -USE_GNOME= glib20 libxml2 +USE_GNOME= glib20 libxml2 ltverhack +USE_AUTOTOOLS= libtool:15 USE_X_PREFIX= yes USE_LDCONFIG= yes CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS+= --mandir="${PREFIX}/man/" +MAN1= openbox.1 openbox-session.1 \ + openbox-gnome-session.1 openbox-kde-session.1 .if !defined(WITHOUT_NLS) USE_GETTEXT= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/x11-wm/openbox/distinfo,v retrieving revision 1.42 diff -u -r1.42 distinfo --- distinfo 20 Sep 2006 20:01:47 -0000 1.42 +++ distinfo 9 Jun 2007 17:48:04 -0000 @@ -1,3 +1,3 @@ -MD5 (openbox-3.3.1.tar.gz) = 6dc25d5fbff5d6277593b89974f950d8 -SHA256 (openbox-3.3.1.tar.gz) = a70b7bc8c28427dff350aa17882d6916b678fd12d1119e4c3ad4b86f3371f033 -SIZE (openbox-3.3.1.tar.gz) = 603402 +MD5 (openbox-3.4.0.tar.gz) = 216b0ab93520c36bb9ddc6b9bd6a6d71 +SHA256 (openbox-3.4.0.tar.gz) = af95e5fc5c87db286357a67f9525f78122f3003ead0ab0d04b0ddcabe8df3564 +SIZE (openbox-3.4.0.tar.gz) = 720599 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/x11-wm/openbox/pkg-plist,v retrieving revision 1.20 diff -u -r1.20 pkg-plist --- pkg-plist 20 Sep 2006 20:01:47 -0000 1.20 +++ pkg-plist 9 Jun 2007 17:48:04 -0000 @@ -1,34 +1,37 @@ bin/gnome-panel-control -bin/kdetrayproxy bin/openbox +bin/openbox-gnome-session +bin/openbox-kde-session +bin/openbox-session +etc/xdg/openbox/autostart.sh etc/xdg/openbox/menu.xml etc/xdg/openbox/rc.xml -include/openbox/3.3/openbox/color.h -include/openbox/3.3/openbox/font.h -include/openbox/3.3/openbox/geom.h -include/openbox/3.3/openbox/gradient.h -include/openbox/3.3/openbox/image.h -include/openbox/3.3/openbox/instance.h -include/openbox/3.3/openbox/mask.h -include/openbox/3.3/openbox/parse.h -include/openbox/3.3/openbox/render.h -include/openbox/3.3/openbox/theme.h -include/openbox/3.3/openbox/version.h +include/openbox/3.4/openbox/color.h +include/openbox/3.4/openbox/font.h +include/openbox/3.4/openbox/geom.h +include/openbox/3.4/openbox/gradient.h +include/openbox/3.4/openbox/image.h +include/openbox/3.4/openbox/instance.h +include/openbox/3.4/openbox/mask.h +include/openbox/3.4/openbox/parse.h +include/openbox/3.4/openbox/render.h +include/openbox/3.4/openbox/theme.h +include/openbox/3.4/openbox/version.h lib/libobparser.a lib/libobparser.la lib/libobparser.so -lib/libobparser.so.4 +lib/libobparser.so.12 lib/libobrender.a lib/libobrender.la lib/libobrender.so -lib/libobrender.so.4 +lib/libobrender.so.12 libdata/pkgconfig/obparser-3.0.pc libdata/pkgconfig/obrender-3.0.pc share/gnome/wm-properties/openbox.desktop -%%DATADIR%%/menu.xsd -%%DATADIR%%/rc.xsd -%%DATADIR%%/themeupdate.py share/pixmaps/openbox.png +share/themes/Artwiz-boxed/openbox-3/themerc +share/themes/Clearlooks/openbox-3/themerc +share/themes/Clearlooks-Olive/openbox-3/themerc share/themes/Mikachu/openbox-3/bullet.xbm share/themes/Mikachu/openbox-3/close.xbm share/themes/Mikachu/openbox-3/desk.xbm @@ -38,90 +41,109 @@ share/themes/Natura/openbox-3/close.xbm share/themes/Natura/openbox-3/close_hover.xbm share/themes/Natura/openbox-3/desk.xbm +share/themes/Natura/openbox-3/desk_hover.xbm share/themes/Natura/openbox-3/desk_toggled.xbm share/themes/Natura/openbox-3/iconify.xbm -share/themes/Natura/openbox-3/iconify_disabled.xbm share/themes/Natura/openbox-3/iconify_hover.xbm share/themes/Natura/openbox-3/max.xbm -share/themes/Natura/openbox-3/max_disabled.xbm share/themes/Natura/openbox-3/max_hover.xbm share/themes/Natura/openbox-3/max_toggled.xbm share/themes/Natura/openbox-3/shade.xbm +share/themes/Natura/openbox-3/shade_hover.xbm share/themes/Natura/openbox-3/themerc -share/themes/artwiz-boxed/openbox-3/bullet.xbm -share/themes/artwiz-boxed/openbox-3/close.xbm -share/themes/artwiz-boxed/openbox-3/desk.xbm -share/themes/artwiz-boxed/openbox-3/desk_toggled.xbm -share/themes/artwiz-boxed/openbox-3/iconify.xbm -share/themes/artwiz-boxed/openbox-3/max.xbm -share/themes/artwiz-boxed/openbox-3/max_toggled.xbm -share/themes/artwiz-boxed/openbox-3/themerc -share/themes/bear2/openbox-3/close.xbm -share/themes/bear2/openbox-3/close_pressed.xbm -share/themes/bear2/openbox-3/desk.xbm -share/themes/bear2/openbox-3/desk_toggled.xbm -share/themes/bear2/openbox-3/iconify.xbm -share/themes/bear2/openbox-3/iconify_disabled.xbm -share/themes/bear2/openbox-3/iconify_pressed.xbm -share/themes/bear2/openbox-3/max.xbm -share/themes/bear2/openbox-3/max_disabled.xbm -share/themes/bear2/openbox-3/max_pressed.xbm -share/themes/bear2/openbox-3/max_toggled.xbm -share/themes/bear2/openbox-3/shade.xbm -share/themes/bear2/openbox-3/shade_pressed.xbm -share/themes/bear2/openbox-3/themerc -share/themes/orang/openbox-3/themerc -share/themes/syscrash/openbox-3/bullet.xbm -share/themes/syscrash/openbox-3/close.xbm -share/themes/syscrash/openbox-3/close_disabled.xbm -share/themes/syscrash/openbox-3/desk.xbm -share/themes/syscrash/openbox-3/desk_toggled.xbm -share/themes/syscrash/openbox-3/iconify.xbm -share/themes/syscrash/openbox-3/max.xbm -share/themes/syscrash/openbox-3/max_disabled.xbm -share/themes/syscrash/openbox-3/max_pressed.xbm -share/themes/syscrash/openbox-3/max_toggled.xbm -share/themes/syscrash/openbox-3/shade.xbm -share/themes/syscrash/openbox-3/themerc +share/themes/Orang/openbox-3/themerc +share/themes/Syscrash/openbox-3/max_disabled.xbm +share/themes/Syscrash/openbox-3/max_pressed.xbm +share/themes/Syscrash/openbox-3/max_toggled.xbm +share/themes/Syscrash/openbox-3/max.xbm +share/themes/Syscrash/openbox-3/themerc +share/themes/Bear2/openbox-3/close.xbm +share/themes/Bear2/openbox-3/close_pressed.xbm +share/themes/Bear2/openbox-3/desk.xbm +share/themes/Bear2/openbox-3/desk_toggled.xbm +share/themes/Bear2/openbox-3/iconify.xbm +share/themes/Bear2/openbox-3/iconify_pressed.xbm +share/themes/Bear2/openbox-3/max.xbm +share/themes/Bear2/openbox-3/max_pressed.xbm +share/themes/Bear2/openbox-3/max_toggled.xbm +share/themes/Bear2/openbox-3/shade.xbm +share/themes/Bear2/openbox-3/shade_pressed.xbm +share/themes/Bear2/openbox-3/themerc +share/xsessions/openbox.desktop +share/xsessions/openbox-gnome.desktop +share/xsessions/openbox-kde.desktop +%%DOCSDIR%%/COMPLIANCE +%%DOCSDIR%%/README +%%DOCSDIR%%/AUTHORS +%%DOCSDIR%%/CHANGELOG +%%DOCSDIR%%/COPYING +%%DOCSDIR%%/rc.xsd +%%DOCSDIR%%/menu.xsd +%%DOCSDIR%%/rc-mouse-focus.xml +%%DOCSDIR%%/xbm/bullet.xbm +%%DOCSDIR%%/xbm/close.xbm +%%DOCSDIR%%/xbm/desk_toggled.xbm +%%DOCSDIR%%/xbm/desk.xbm +%%DOCSDIR%%/xbm/iconify.xbm +%%DOCSDIR%%/xbm/max_toggled.xbm +%%DOCSDIR%%/xbm/max.xbm +%%DOCSDIR%%/xbm/shade_toggled.xbm +%%DOCSDIR%%/xbm/shade.xbm +%%NLS%%share/locale/ar/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/bn_IN/LC_MESSAGES/openbox.mo %%NLS%%share/locale/ca/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/cr/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/cs/LC_MESSAGES/openbox.mo %%NLS%%share/locale/de/LC_MESSAGES/openbox.mo %%NLS%%share/locale/es/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/et/LC_MESSAGES/openbox.mo %%NLS%%share/locale/fi/LC_MESSAGES/openbox.mo %%NLS%%share/locale/fr/LC_MESSAGES/openbox.mo -%%NLS%%share/locale/hr/LC_MESSAGES/openbox.mo -%%NLS%%share/locale/ja/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/it/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/nl/LC_MESSAGES/openbox.mo %%NLS%%share/locale/no/LC_MESSAGES/openbox.mo %%NLS%%share/locale/pl/LC_MESSAGES/openbox.mo %%NLS%%share/locale/pt/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/openbox.mo %%NLS%%share/locale/ru/LC_MESSAGES/openbox.mo %%NLS%%share/locale/sk/LC_MESSAGES/openbox.mo %%NLS%%share/locale/sv/LC_MESSAGES/openbox.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/openbox.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/openbox.mo %%NLS%%share/locale/en@quot/LC_MESSAGES/openbox.mo %%NLS%%share/locale/en@boldquot/LC_MESSAGES/openbox.mo +%%NLS%%@dirrmtry share/locale/bn_IN/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/bn_IN %%NLS%%@dirrmtry share/locale/en@quot/LC_MESSAGES %%NLS%%@dirrmtry share/locale/en@quot %%NLS%%@dirrmtry share/locale/en@boldquot/LC_MESSAGES %%NLS%%@dirrmtry share/locale/en@boldquot -@dirrm share/themes/syscrash/openbox-3 -@dirrm share/themes/syscrash -@dirrm share/themes/orang/openbox-3 -@dirrm share/themes/orang -@dirrm share/themes/bear2/openbox-3 -@dirrm share/themes/bear2 -@dirrm share/themes/artwiz-boxed/openbox-3 -@dirrm share/themes/artwiz-boxed -@dirrm share/themes/Natura/openbox-3 -@dirrm share/themes/Natura +@dirrm %%DOCSDIR%%/xbm +@dirrm %%DOCSDIR%% +@dirrm share/themes/Artwiz-boxed/openbox-3 +@dirrm share/themes/Artwiz-boxed +@dirrm share/themes/Bear2/openbox-3 +@dirrm share/themes/Bear2 +@dirrm share/themes/Clearlooks/openbox-3 +@dirrm share/themes/Clearlooks +@dirrm share/themes/Clearlooks-Olive/openbox-3 +@dirrm share/themes/Clearlooks-Olive @dirrm share/themes/Mikachu/openbox-3 @dirrm share/themes/Mikachu +@dirrm share/themes/Natura/openbox-3 +@dirrm share/themes/Natura +@dirrm share/themes/Orang/openbox-3 +@dirrm share/themes/Orang +@dirrm share/themes/Syscrash/openbox-3 +@dirrm share/themes/Syscrash @dirrmtry share/themes -@dirrm %%DATADIR%% +@comment @dirrm %%DATADIR%% @dirrmtry share/gnome/wm-properties @dirrmtry share/gnome @dirrmtry libdata/pkgconfig -@dirrm include/openbox/3.3/openbox -@dirrm include/openbox/3.3 +@dirrm include/openbox/3.4/openbox +@dirrm include/openbox/3.4 @dirrm include/openbox @dirrm etc/xdg/openbox -@dirrmtry etc/xdg +@dirrm etc/xdg +@dirrmtry share/xsessions Index: files/patch-openbox-menuframe.c =================================================================== RCS file: files/patch-openbox-menuframe.c diff -N files/patch-openbox-menuframe.c --- files/patch-openbox-menuframe.c 13 Sep 2006 18:14:36 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,18 +0,0 @@ ---- openbox/menuframe.c.orig Tue Sep 12 21:24:28 2006 -+++ openbox/menuframe.c Tue Sep 12 21:24:50 2006 -@@ -675,12 +675,14 @@ - - void menu_frame_hide_all() - { -+ GList *it; -+ - if (config_submenu_show_delay) { - /* remove any submenu open requests */ - ob_main_loop_timeout_remove(ob_main_loop, - menu_entry_frame_submenu_timeout); - } -- GList *it = g_list_last(menu_frame_visible); -+ it = g_list_last(menu_frame_visible); - if (it) - menu_frame_hide(it->data); - } Index: files/patch-render-font.c =================================================================== RCS file: files/patch-render-font.c diff -N files/patch-render-font.c --- files/patch-render-font.c 13 Sep 2006 18:14:36 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,26 +0,0 @@ ---- render/font.c.orig Sat Aug 26 22:15:51 2006 -+++ render/font.c Tue Sep 12 21:14:46 2006 -@@ -92,6 +92,8 @@ - #ifdef USE_PANGO - guchar *tmp_string = NULL; - gint tmp_int; -+ gchar *locale, *p; -+ PangoFontMetrics *metrics; - #endif /* USE_PANGO */ - - if (!(pat = XftNameParse(fontstring))) -@@ -135,13 +137,12 @@ - } - - /* based on gtkmain.c gtk_get_default_language() */ -- gchar *locale, *p; - locale = g_strdup(setlocale(LC_CTYPE, NULL)); - if ((p = strchr(locale, '.'))) - *p = '\0'; - if ((p = strchr(locale, '@'))) - *p = '\0'; -- PangoFontMetrics *metrics = -+ metrics = - pango_context_get_metrics(context, out->pango_font_description, - pango_language_from_string(locale)); - out->pango_ascent = pango_font_metrics_get_ascent(metrics); Index: files/patch-render-gradient.c =================================================================== RCS file: files/patch-render-gradient.c diff -N files/patch-render-gradient.c --- files/patch-render-gradient.c 13 Sep 2006 18:14:36 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,23 +0,0 @@ ---- render/gradient.c.orig Sat Aug 26 22:15:51 2006 -+++ render/gradient.c Tue Sep 12 21:14:46 2006 -@@ -371,6 +371,9 @@ - RrPixel32 current; - RrColor *primary_light, *secondary_light; - -+ VARS(y1); -+ VARS(y3); -+ - r = sf->primary->r; - r += r >> 2; - g = sf->primary->g; -@@ -393,10 +396,8 @@ - if (b > 0xFF) b = 0xFF; - secondary_light = RrColorNew(a->inst, r, g, b); - -- VARS(y1); - SETUP(y1, primary_light, sf->primary, (h / 2) -1); - -- VARS(y3); - SETUP(y3, sf->secondary, secondary_light, (h / 2) -1); - - for (y1 = h - 1; y1 > (h / 2) -1; --y1) { /* 0 -> h-1 */ --- openbox340.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 18:00:19 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0F4116A41F; Sat, 9 Jun 2007 18:00:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BC1D513C489; Sat, 9 Jun 2007 18:00:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59I0Ise019664; Sat, 9 Jun 2007 18:00:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59I0IXs019660; Sat, 9 Jun 2007 18:00:18 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 18:00:18 GMT From: Edwin Groothuis Message-Id: <200706091800.l59I0IXs019660@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, novel@FreeBSD.org Cc: Subject: Re: ports/113499: [ patch ] x11-wm/openbox: update to 3.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 18:00:20 -0000 Synopsis: [ patch ] x11-wm/openbox: update to 3.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->novel Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 9 18:00:17 UTC 2007 Responsible-Changed-Why: Submitter has GNATS access http://www.freebsd.org/cgi/query-pr.cgi?pr=113499 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 20:04:46 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D15B016A46B; Sat, 9 Jun 2007 20:04:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A60CB13C465; Sat, 9 Jun 2007 20:04:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59K4kvH029257; Sat, 9 Jun 2007 20:04:46 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59K4kOg029253; Sat, 9 Jun 2007 20:04:46 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 20:04:46 GMT From: Martin Wilke Message-Id: <200706092004.l59K4kOg029253@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113488: [maintainer update] sysutils/bsdadminscripts: serious update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 20:04:46 -0000 Synopsis: [maintainer update] sysutils/bsdadminscripts: serious update Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 20:04:46 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113488 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 22:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3067016A41F for ; Sat, 9 Jun 2007 22:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 128FD13C4AD for ; Sat, 9 Jun 2007 22:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59MA26i038832 for ; Sat, 9 Jun 2007 22:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59MA2KZ038828; Sat, 9 Jun 2007 22:10:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 22:10:02 GMT Resent-Message-Id: <200706092210.l59MA2KZ038828@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CC6F16A41F; Sat, 9 Jun 2007 22:00:57 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id C244A13C458; Sat, 9 Jun 2007 22:00:56 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id D6C405C1F; Sun, 10 Jun 2007 06:00:55 +0800 (CST) Message-Id: <20070609220055.D6C405C1F@ccreader.NCTU.edu.tw> Date: Sun, 10 Jun 2007 06:00:55 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org, gslin@gslin.org Subject: ports/113500: [PATCH] www/p5-Perlbal: Add documents X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 22:10:03 -0000 >Number: 113500 >Category: ports >Synopsis: [PATCH] www/p5-Perlbal: Add documents >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 22:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: - Add documents Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Perlbal-1.59_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-Perlbal/Makefile /home/staff/gslin/work/ports/perlbal/Makefile --- /usr/ports/www/p5-Perlbal/Makefile Wed May 30 09:38:11 2007 +++ /home/staff/gslin/work/ports/perlbal/Makefile Sun Jun 10 05:58:59 2007 @@ -7,6 +7,7 @@ PORTNAME= Perlbal PORTVERSION= 1.59 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.danga.com/dist/Perlbal/ \ http://www.powertrip.co.za/distfiles/danga/ @@ -15,11 +16,11 @@ MAINTAINER= perl@FreeBSD.org COMMENT= Reverse-proxy load balancer and webserver -BUILD_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ +RUN_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ ${SITE_PERL}/${PERL_ARCH}/BSD/Resource.pm:${PORTSDIR}/devel/p5-BSD-Resource \ ${SITE_PERL}/Danga/Socket.pm:${PORTSDIR}/devel/p5-Danga-Socket \ ${SITE_PERL}/Net/Netmask.pm:${PORTSDIR}/net-mgmt/p5-Net-Netmask -RUN_DEPENDS= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= yes @@ -30,6 +31,12 @@ .if ${PERL_LEVEL} < 500800 RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes +.endif + +post-install: +.ifndef NOPORTDOCS + ${MKDIR} ${DOCSDIR} + ${CP} -R ${WRKSRC}/doc/ ${DOCSDIR} .endif .include diff -ruN --exclude=CVS /usr/ports/www/p5-Perlbal/pkg-plist /home/staff/gslin/work/ports/perlbal/pkg-plist --- /usr/ports/www/p5-Perlbal/pkg-plist Tue Jun 5 02:07:14 2007 +++ /home/staff/gslin/work/ports/perlbal/pkg-plist Sun Jun 10 05:58:49 2007 @@ -1,8 +1,16 @@ -bin/perlbal +@comment $FreeBSD$ +%%PORTDOCS%%%%DOCSDIR%%/config-guide.txt +%%PORTDOCS%%%%DOCSDIR%%/hacking/classes.txt +%%PORTDOCS%%%%DOCSDIR%%/hacking/hooks.txt +%%PORTDOCS%%%%DOCSDIR%%/hacking/todo.txt +%%PORTDOCS%%%%DOCSDIR%%/http-versions.txt +%%PORTDOCS%%%%DOCSDIR%%/reproxying.txt +%%PORTDOCS%%%%DOCSDIR%%/service-parameters.txt %%SITE_PERL%%/Perlbal.pm %%SITE_PERL%%/Perlbal/AIO.pm %%SITE_PERL%%/Perlbal/BackendHTTP.pm %%SITE_PERL%%/Perlbal/Cache.pm +%%SITE_PERL%%/Perlbal/ChunkedUploadState.pm %%SITE_PERL%%/Perlbal/ClientHTTP.pm %%SITE_PERL%%/Perlbal/ClientHTTPBase.pm %%SITE_PERL%%/Perlbal/ClientManage.pm @@ -11,16 +19,15 @@ %%SITE_PERL%%/Perlbal/HTTPHeaders.pm %%SITE_PERL%%/Perlbal/ManageCommand.pm %%SITE_PERL%%/Perlbal/Plugin/AccessControl.pm -%%SITE_PERL%%/Perlbal/ChunkedUploadState.pm +%%SITE_PERL%%/Perlbal/Plugin/AutoRemoveLeadingDir.pm %%SITE_PERL%%/Perlbal/Plugin/EchoService.pm %%SITE_PERL%%/Perlbal/Plugin/Highpri.pm +%%SITE_PERL%%/Perlbal/Plugin/LazyCDN.pm +%%SITE_PERL%%/Perlbal/Plugin/NotModified.pm %%SITE_PERL%%/Perlbal/Plugin/Palimg.pm %%SITE_PERL%%/Perlbal/Plugin/Queues.pm %%SITE_PERL%%/Perlbal/Plugin/Stats.pm %%SITE_PERL%%/Perlbal/Plugin/Vhosts.pm -%%SITE_PERL%%/Perlbal/Plugin/LazyCDN.pm -%%SITE_PERL%%/Perlbal/Plugin/AutoRemoveLeadingDir.pm -%%SITE_PERL%%/Perlbal/Plugin/NotModified.pm %%SITE_PERL%%/Perlbal/Pool.pm %%SITE_PERL%%/Perlbal/ReproxyManager.pm %%SITE_PERL%%/Perlbal/Service.pm @@ -32,7 +39,10 @@ %%SITE_PERL%%/Perlbal/UploadListener.pm %%SITE_PERL%%/Perlbal/Util.pm %%SITE_PERL%%/mach/auto/Perlbal/.packlist -@dirrm %%SITE_PERL%%/Perlbal/Plugin +bin/perlbal +@dirrm %%SITE_PERL%%/mach/auto/Perlbal @dirrm %%SITE_PERL%%/Perlbal/Test +@dirrm %%SITE_PERL%%/Perlbal/Plugin @dirrm %%SITE_PERL%%/Perlbal -@dirrm %%SITE_PERL%%/mach/auto/Perlbal +%%PORTDOCS%%@dirrm %%DOCSDIR%%/hacking +%%PORTDOCS%%@dirrm %%DOCSDIR%% --- p5-Perlbal-1.59_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 22:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC45416A46B for ; Sat, 9 Jun 2007 22:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9A7B513C4B0 for ; Sat, 9 Jun 2007 22:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59MA3I6038883 for ; Sat, 9 Jun 2007 22:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59MA3WQ038882; Sat, 9 Jun 2007 22:10:03 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 22:10:03 GMT Resent-Message-Id: <200706092210.l59MA3WQ038882@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Craig Edwards Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2756E16A400 for ; Sat, 9 Jun 2007 22:09:30 +0000 (UTC) (envelope-from brain@neuron.brainbox.winbot.co.uk) Received: from brainbox.winbot.co.uk (cpc1-mapp3-0-0-cust243.nott.cable.ntl.com [82.20.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id 96CFB13C45A for ; Sat, 9 Jun 2007 22:09:29 +0000 (UTC) (envelope-from brain@neuron.brainbox.winbot.co.uk) Received: from localhost.localdomain ([127.0.0.1] helo=neuron.brainbox.winbot.co.uk) by brainbox.winbot.co.uk with esmtp (Exim 4.60 (FreeBSD)) (envelope-from ) id 1Hx8fW-000Hlk-AM; Sat, 09 Jun 2007 21:40:22 +0000 Received: (from root@localhost) by neuron.brainbox.winbot.co.uk (8.13.3/8.13.3/Submit) id l59LeLdm068307; Sat, 9 Jun 2007 22:40:21 +0100 (BST) (envelope-from brain) Message-Id: <200706092140.l59LeLdm068307@neuron.brainbox.winbot.co.uk> Date: Sat, 9 Jun 2007 22:40:21 +0100 (BST) From: Craig Edwards To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: brain@mail1.chatspike.net Subject: ports/113501: Update port: irc/inspircd to 1.1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Craig Edwards List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 22:10:03 -0000 >Number: 113501 >Category: ports >Synopsis: Update port: irc/inspircd to 1.1.8 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 22:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Craig Edwards >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD neuron.brainbox.winbot.co.uk 5.4-RELEASE FreeBSD 5.4-RELEASE #2: Mon Oct 24 20:39:41 UTC 2005 brain@neuron.brainbox.winbot.co.uk:/usr/src/sys/i386/compile/BRAINBOX i386 >Description: Major version upgrade, fixes many issues. Fixes a floatilla of crashbugs, issues, stability problems and a few security issues. >How-To-Repeat: not applicable >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # irc/inspircd/ # irc/inspircd/distinfo # irc/inspircd/Makefile # irc/inspircd/pkg-descr # irc/inspircd/pkg-plist # irc/inspircd/pkg-message # echo c - irc/inspircd/ mkdir -p irc/inspircd/ > /dev/null 2>&1 echo x - irc/inspircd/distinfo sed 's/^X//' >irc/inspircd/distinfo << 'END-of-irc/inspircd/distinfo' XMD5 (InspIRCd-1.1.8.tar.bz2) = f86b39cef74381434a27508357161fe8 XSIZE (InspIRCd-1.1.8.tar.bz2) = 484433 END-of-irc/inspircd/distinfo echo x - irc/inspircd/Makefile sed 's/^X//' >irc/inspircd/Makefile << 'END-of-irc/inspircd/Makefile' X# New ports collection makefile for: inspircd X# Date created: 25 August 2006 X# Whom: brain X# X# $FreeBSD: ports/irc/inspircd/Makefile,v 1.2 2007/01/11 17:05:18 pav Exp $ X# X XPORTNAME= inspircd XPORTVERSION= 1.1.8 XCATEGORIES= irc XMASTER_SITES= http://www.inspircd.org/downloads/ \ X http://www.chatspike.net/downloads/ XDISTNAME= InspIRCd-${PORTVERSION} XWRKSRC= ${WRKDIR}/inspircd X XMAINTAINER= brain@inspircd.org XCOMMENT= A modular C++ IRC daemon X XUSE_GCC= 3.2+ XUSE_GMAKE= yes XUSE_BZIP2= yes X X# Configure script is written in perl XUSE_PERL5_BUILD=yes X XCONFIGURE_ARGS= --with-cc=${CXX} --config-dir=${PREFIX}/etc/inspircd --module-dir=${PREFIX}/lib/inspircd/modules \ X --library-dir=${PREFIX}/lib/inspircd --prefix=${PREFIX}/inspircd --binary-dir=${PREFIX}/bin \ X --enable-remote-ipv6 --disable-interactive X XHAS_CONFIGURE= yes X X.include X X.if ${OSVERSION} < 500000 XBROKEN= does not compile (old perl) X.endif X X# 1.0.6 Makefile forgets to make these directories X# during install. We make these ourselves. This may X# be fixed in a later version of InspIRCd. Xpre-su-install: X @-${MKDIR} ${PREFIX}/inspircd X @-${MKDIR} ${PREFIX}/lib/inspircd X @-${MKDIR} ${PREFIX}/lib/inspircd/modules X @-${MKDIR} ${PREFIX}/etc/inspircd X Xpost-install: X ${STRIP_CMD} ${PREFIX}/lib/inspircd/modules/*.so X ${STRIP_CMD} ${PREFIX}/lib/inspircd/*.so X ${STRIP_CMD} ${PREFIX}/bin/inspircd X X.include END-of-irc/inspircd/Makefile echo x - irc/inspircd/pkg-descr sed 's/^X//' >irc/inspircd/pkg-descr << 'END-of-irc/inspircd/pkg-descr' XInspIRCd is a highly modular C++ IRC daemon. It supports most features Xof other IRC daemons, and supports FreeBSD kqueue() for connection Xmanagement. X XWWW: http://www.inspircd.org/ END-of-irc/inspircd/pkg-descr echo x - irc/inspircd/pkg-plist sed 's/^X//' >irc/inspircd/pkg-plist << 'END-of-irc/inspircd/pkg-plist' Xbin/inspircd Xinspircd/inspircd Xinspircd/.gdbargs Xlib/inspircd/libIRCDasyncdns.so Xlib/inspircd/libIRCDbase.so Xlib/inspircd/libIRCDchannels.so Xlib/inspircd/libIRCDcommand_parse.so Xlib/inspircd/libIRCDcommands.so Xlib/inspircd/libIRCDconfigreader.so Xlib/inspircd/libIRCDcull_list.so Xlib/inspircd/libIRCDdynamic.so Xlib/inspircd/libIRCDhash.so Xlib/inspircd/libIRCDhelper.so Xlib/inspircd/libIRCDinspsocket.so Xlib/inspircd/libIRCDmode.so Xlib/inspircd/libIRCDmodules.so Xlib/inspircd/libIRCDsnomasks.so Xlib/inspircd/libIRCDsocket.so Xlib/inspircd/libIRCDsocketengine.so Xlib/inspircd/libIRCDstring.so Xlib/inspircd/libIRCDtimer.so Xlib/inspircd/libIRCDuserprocess.so Xlib/inspircd/libIRCDusers.so Xlib/inspircd/libIRCDwildcard.so Xlib/inspircd/libIRCDxline.so Xlib/inspircd/cmd_admin.so Xlib/inspircd/cmd_away.so Xlib/inspircd/cmd_clearcache.so Xlib/inspircd/cmd_commands.so Xlib/inspircd/cmd_connect.so Xlib/inspircd/cmd_die.so Xlib/inspircd/cmd_eline.so Xlib/inspircd/cmd_gline.so Xlib/inspircd/cmd_info.so Xlib/inspircd/cmd_invite.so Xlib/inspircd/cmd_ison.so Xlib/inspircd/cmd_join.so Xlib/inspircd/cmd_kick.so Xlib/inspircd/cmd_kill.so Xlib/inspircd/cmd_kline.so Xlib/inspircd/cmd_links.so Xlib/inspircd/cmd_list.so Xlib/inspircd/cmd_loadmodule.so Xlib/inspircd/cmd_lusers.so Xlib/inspircd/cmd_map.so Xlib/inspircd/cmd_mode.so Xlib/inspircd/cmd_modules.so Xlib/inspircd/cmd_motd.so Xlib/inspircd/cmd_names.so Xlib/inspircd/cmd_nick.so Xlib/inspircd/cmd_notice.so Xlib/inspircd/cmd_oper.so Xlib/inspircd/cmd_part.so Xlib/inspircd/cmd_pass.so Xlib/inspircd/cmd_ping.so Xlib/inspircd/cmd_pong.so Xlib/inspircd/cmd_privmsg.so Xlib/inspircd/cmd_qline.so Xlib/inspircd/cmd_quit.so Xlib/inspircd/cmd_rehash.so Xlib/inspircd/cmd_reloadmodule.so Xlib/inspircd/cmd_restart.so Xlib/inspircd/cmd_rules.so Xlib/inspircd/cmd_server.so Xlib/inspircd/cmd_squit.so Xlib/inspircd/cmd_stats.so Xlib/inspircd/cmd_summon.so Xlib/inspircd/cmd_time.so Xlib/inspircd/cmd_topic.so Xlib/inspircd/cmd_trace.so Xlib/inspircd/cmd_unloadmodule.so Xlib/inspircd/cmd_user.so Xlib/inspircd/cmd_userhost.so Xlib/inspircd/cmd_users.so Xlib/inspircd/cmd_version.so Xlib/inspircd/cmd_wallops.so Xlib/inspircd/cmd_who.so Xlib/inspircd/cmd_whois.so Xlib/inspircd/cmd_whowas.so Xlib/inspircd/cmd_zline.so Xlib/inspircd/modules/m_blockcaps.so Xlib/inspircd/modules/m_blockamsg.so Xlib/inspircd/modules/m_dnsbl.so Xlib/inspircd/modules/m_censor.so Xlib/inspircd/modules/m_hideoper.so Xlib/inspircd/modules/m_conn_waitpong.so Xlib/inspircd/modules/m_vhost.so Xlib/inspircd/modules/m_safelist.so Xlib/inspircd/modules/m_remove.so Xlib/inspircd/modules/m_override.so Xlib/inspircd/modules/m_sapart.so Xlib/inspircd/modules/m_watch.so Xlib/inspircd/modules/m_botmode.so Xlib/inspircd/modules/m_tline.so Xlib/inspircd/modules/m_silence_ext.so Xlib/inspircd/modules/m_xmlsocket.so Xlib/inspircd/modules/m_uhnames.so Xlib/inspircd/modules/m_noinvite.so Xlib/inspircd/modules/m_services.so Xlib/inspircd/modules/m_filter.so Xlib/inspircd/modules/m_invisible.so Xlib/inspircd/modules/m_operjoin.so Xlib/inspircd/modules/m_sha256.so Xlib/inspircd/modules/m_knock.so Xlib/inspircd/modules/m_cban.so Xlib/inspircd/modules/m_noctcp.so Xlib/inspircd/modules/m_oper_hash.so Xlib/inspircd/modules/m_globalload.so Xlib/inspircd/modules/m_userip.so Xlib/inspircd/modules/m_antibottler.so Xlib/inspircd/modules/m_nokicks.so Xlib/inspircd/modules/m_devoice.so Xlib/inspircd/modules/m_showwhois.so Xlib/inspircd/modules/m_ident.so Xlib/inspircd/modules/m_joinflood.so Xlib/inspircd/modules/m_blockcolor.so Xlib/inspircd/modules/m_helpop.so Xlib/inspircd/modules/m_opermotd.so Xlib/inspircd/modules/m_sslmodes.so Xlib/inspircd/modules/m_timedbans.so Xlib/inspircd/modules/m_chanprotect.so Xlib/inspircd/modules/m_nonicks.so Xlib/inspircd/modules/m_connflood.so Xlib/inspircd/modules/m_chanfilter.so Xlib/inspircd/modules/m_opermodes.so Xlib/inspircd/modules/m_md5.so Xlib/inspircd/modules/m_namesx.so Xlib/inspircd/modules/m_restrictmsg.so Xlib/inspircd/modules/m_chghost.so Xlib/inspircd/modules/m_operchans.so Xlib/inspircd/modules/m_uninvite.so Xlib/inspircd/modules/m_services_account.so Xlib/inspircd/modules/m_taxonomy.so Xlib/inspircd/modules/m_banredirect.so Xlib/inspircd/modules/m_sanick.so Xlib/inspircd/modules/m_alias.so Xlib/inspircd/modules/m_inviteexception.so Xlib/inspircd/modules/m_deaf.so Xlib/inspircd/modules/m_lockserv.so Xlib/inspircd/modules/m_banexception.so Xlib/inspircd/modules/m_redirect.so Xlib/inspircd/modules/m_restrictchans.so Xlib/inspircd/modules/m_securelist.so Xlib/inspircd/modules/m_globops.so Xlib/inspircd/modules/m_check.so Xlib/inspircd/modules/m_seenicks.so Xlib/inspircd/modules/m_spy.so Xlib/inspircd/modules/m_spanningtree.so Xlib/inspircd/modules/m_swhois.so Xlib/inspircd/modules/m_setname.so Xlib/inspircd/modules/m_nonotice.so Xlib/inspircd/modules/m_randquote.so Xlib/inspircd/modules/m_httpd_stats.so Xlib/inspircd/modules/m_cgiirc.so Xlib/inspircd/modules/m_cloaking.so Xlib/inspircd/modules/m_setidle.so Xlib/inspircd/modules/m_silence.so Xlib/inspircd/modules/m_http_client.so Xlib/inspircd/modules/m_regonlycreate.so Xlib/inspircd/modules/m_operlevels.so Xlib/inspircd/modules/m_messageflood.so Xlib/inspircd/modules/m_stripcolor.so Xlib/inspircd/modules/m_conn_join.so Xlib/inspircd/modules/m_denychans.so Xlib/inspircd/modules/m_httpd.so Xlib/inspircd/modules/m_foobar.so Xlib/inspircd/modules/m_svshold.so Xlib/inspircd/modules/m_hostchange.so Xlib/inspircd/modules/m_sajoin.so Xlib/inspircd/modules/m_hidechans.so Xlib/inspircd/modules/m_saquit.so Xlib/inspircd/modules/m_dccallow.so Xlib/inspircd/modules/m_samode.so Xlib/inspircd/modules/m_sethost.so Xlib/inspircd/modules/m_nicklock.so Xlib/inspircd/modules/m_ssl_dummy.so Xlib/inspircd/modules/m_jumpserver.so Xlib/inspircd/modules/m_operlog.so Xlib/inspircd/modules/m_kicknorejoin.so Xlib/inspircd/modules/m_conn_umodes.so Xlib/inspircd/modules/m_setident.so Xlib/inspircd/modules/m_testcommand.so Xlib/inspircd/modules/m_clones.so Xlib/inspircd/modules/m_alltime.so Xlib/inspircd/modules/m_auditorium.so Xlib/inspircd/modules/m_chancreate.so Xlib/inspircd/modules/m_chgident.so Xlib/inspircd/modules/m_restrictbanned.so Xlib/inspircd/modules/m_antibear.so X@dirrm inspircd X@dirrm lib/inspircd/modules X@dirrm lib/inspircd X@unexec if cmp -s %D/etc/inspircd/inspircd.conf.example %D/etc/inspircd/inspircd.conf; then rm -f %D/etc/inspircd/inspircd.conf; fi Xetc/inspircd/inspircd.conf.example X@exec if [ ! -f %D/etc/inspircd/inspircd.conf ] ; then cp -p %D/%F %B/inspircd.conf; fi X@unexec if cmp -s %D/etc/inspircd/inspircd.quotes.example %D/etc/inspircd/inspircd.quotes; then rm -f %D/etc/inspircd/inspircd.quotes; fi Xetc/inspircd/inspircd.quotes.example X@exec if [ ! -f %D/etc/inspircd/inspircd.quotes ] ; then cp -p %D/%F %B/inspircd.quotes; fi X@unexec if cmp -s %D/etc/inspircd/inspircd.rules.example %D/etc/inspircd/inspircd.rules; then rm -f %D/etc/inspircd/inspircd.rules; fi Xetc/inspircd/inspircd.rules.example X@exec if [ ! -f %D/etc/inspircd/inspircd.rules ] ; then cp -p %D/%F %B/inspircd.rules; fi X@dirrmtry etc/inspircd END-of-irc/inspircd/pkg-plist echo x - irc/inspircd/pkg-message sed 's/^X//' >irc/inspircd/pkg-message << 'END-of-irc/inspircd/pkg-message' XDon't forget to copy the example configuration file inspircd.conf.example Xas inspircd.conf, or use inspircd -config to start InspIRCd. END-of-irc/inspircd/pkg-message exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 22:10:16 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B72716A400; Sat, 9 Jun 2007 22:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E9CED13C4B8; Sat, 9 Jun 2007 22:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59MAFkP039033; Sat, 9 Jun 2007 22:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59MAFpA039029; Sat, 9 Jun 2007 22:10:15 GMT (envelope-from edwin) Date: Sat, 9 Jun 2007 22:10:15 GMT From: Edwin Groothuis Message-Id: <200706092210.l59MAFpA039029@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/113501: Update port: irc/inspircd to 1.1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 22:10:16 -0000 Synopsis: Update port: irc/inspircd to 1.1.8 Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sat Jun 9 22:10:15 UTC 2007 Class-Changed-Why: Fix category (submitter is maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=113501 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 22:20:01 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52D7E16A46B for ; Sat, 9 Jun 2007 22:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2F9EA13C468 for ; Sat, 9 Jun 2007 22:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59MK1Gw039454 for ; Sat, 9 Jun 2007 22:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59MK1Vd039453; Sat, 9 Jun 2007 22:20:01 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 22:20:01 GMT Resent-Message-Id: <200706092220.l59MK1Vd039453@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Craig Edwards Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0239416A41F for ; Sat, 9 Jun 2007 22:11:58 +0000 (UTC) (envelope-from brain@neuron.brainbox.winbot.co.uk) Received: from brainbox.winbot.co.uk (cpc1-mapp3-0-0-cust243.nott.cable.ntl.com [82.20.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id 5C5A213C480 for ; Sat, 9 Jun 2007 22:11:57 +0000 (UTC) (envelope-from brain@neuron.brainbox.winbot.co.uk) Received: from localhost.localdomain ([127.0.0.1] helo=neuron.brainbox.winbot.co.uk) by brainbox.winbot.co.uk with esmtp (Exim 4.60 (FreeBSD)) (envelope-from ) id 1Hx9A4-000IC9-EW; Sat, 09 Jun 2007 22:11:56 +0000 Received: (from root@localhost) by neuron.brainbox.winbot.co.uk (8.13.3/8.13.3/Submit) id l59MBuGQ069944; Sat, 9 Jun 2007 23:11:56 +0100 (BST) (envelope-from brain) Message-Id: <200706092211.l59MBuGQ069944@neuron.brainbox.winbot.co.uk> Date: Sat, 9 Jun 2007 23:11:56 +0100 (BST) From: Craig Edwards To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: brain@mail1.chatspike.net Subject: ports/113502: Update for 1.1.8 freebsd port, fixes permissions error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Craig Edwards List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 22:20:01 -0000 >Number: 113502 >Category: ports >Synopsis: Update for 1.1.8 freebsd port, fixes permissions error >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 22:20:00 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Craig Edwards >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD neuron.brainbox.winbot.co.uk 5.4-RELEASE FreeBSD 5.4-RELEASE #2: Mon Oct 24 20:39:41 UTC 2005 brain@neuron.brainbox.winbot.co.uk:/usr/src/sys/i386/compile/BRAINBOX i386 >Description: The 1.1.8 port submitted at 22:40 BST changes the permissions on /usr/local/bin to be 0700. This updated shar for the port fixes the issue. This is why this update is marked serious/high, to save devlopers hassle testing this port, and to save users systems being left in odd states by installing said port. >How-To-Repeat: Install older port submitted at 22:40 to see issue. >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # irc/inspircd/ # irc/inspircd/distinfo # irc/inspircd/Makefile # irc/inspircd/pkg-descr # irc/inspircd/pkg-plist # irc/inspircd/pkg-message # irc/inspircd/Makefile~ # echo c - irc/inspircd/ mkdir -p irc/inspircd/ > /dev/null 2>&1 echo x - irc/inspircd/distinfo sed 's/^X//' >irc/inspircd/distinfo << 'END-of-irc/inspircd/distinfo' XMD5 (InspIRCd-1.1.8.tar.bz2) = f86b39cef74381434a27508357161fe8 XSIZE (InspIRCd-1.1.8.tar.bz2) = 484433 END-of-irc/inspircd/distinfo echo x - irc/inspircd/Makefile sed 's/^X//' >irc/inspircd/Makefile << 'END-of-irc/inspircd/Makefile' X# New ports collection makefile for: inspircd X# Date created: 25 August 2006 X# Whom: brain X# X# $FreeBSD: ports/irc/inspircd/Makefile,v 1.2 2007/01/11 17:05:18 pav Exp $ X# X XPORTNAME= inspircd XPORTVERSION= 1.1.8 XCATEGORIES= irc XMASTER_SITES= http://www.inspircd.org/downloads/ \ X http://www.chatspike.net/downloads/ XDISTNAME= InspIRCd-${PORTVERSION} XWRKSRC= ${WRKDIR}/inspircd X XMAINTAINER= brain@inspircd.org XCOMMENT= A modular C++ IRC daemon X XUSE_GCC= 3.2+ XUSE_GMAKE= yes XUSE_BZIP2= yes XMAKE_ENV= INSTMODE=755 X X# Configure script is written in perl XUSE_PERL5_BUILD=yes X XCONFIGURE_ARGS= --with-cc=${CXX} --config-dir=${PREFIX}/etc/inspircd --module-dir=${PREFIX}/lib/inspircd/modules \ X --library-dir=${PREFIX}/lib/inspircd --prefix=${PREFIX}/inspircd --binary-dir=${PREFIX}/bin \ X --enable-remote-ipv6 --disable-interactive X XHAS_CONFIGURE= yes X X.include X X.if ${OSVERSION} < 500000 XBROKEN= does not compile (old perl) X.endif X X# 1.0.6 Makefile forgets to make these directories X# during install. We make these ourselves. This may X# be fixed in a later version of InspIRCd. Xpre-su-install: X @-${MKDIR} ${PREFIX}/inspircd X @-${MKDIR} ${PREFIX}/lib/inspircd X @-${MKDIR} ${PREFIX}/lib/inspircd/modules X @-${MKDIR} ${PREFIX}/etc/inspircd X Xpost-install: X ${STRIP_CMD} ${PREFIX}/lib/inspircd/modules/*.so X ${STRIP_CMD} ${PREFIX}/lib/inspircd/*.so X ${STRIP_CMD} ${PREFIX}/bin/inspircd X X.include END-of-irc/inspircd/Makefile echo x - irc/inspircd/pkg-descr sed 's/^X//' >irc/inspircd/pkg-descr << 'END-of-irc/inspircd/pkg-descr' XInspIRCd is a highly modular C++ IRC daemon. It supports most features Xof other IRC daemons, and supports FreeBSD kqueue() for connection Xmanagement. X XWWW: http://www.inspircd.org/ END-of-irc/inspircd/pkg-descr echo x - irc/inspircd/pkg-plist sed 's/^X//' >irc/inspircd/pkg-plist << 'END-of-irc/inspircd/pkg-plist' Xbin/inspircd Xinspircd/inspircd Xinspircd/.gdbargs Xlib/inspircd/libIRCDasyncdns.so Xlib/inspircd/libIRCDbase.so Xlib/inspircd/libIRCDchannels.so Xlib/inspircd/libIRCDcommand_parse.so Xlib/inspircd/libIRCDcommands.so Xlib/inspircd/libIRCDconfigreader.so Xlib/inspircd/libIRCDcull_list.so Xlib/inspircd/libIRCDdynamic.so Xlib/inspircd/libIRCDhash.so Xlib/inspircd/libIRCDhelper.so Xlib/inspircd/libIRCDinspsocket.so Xlib/inspircd/libIRCDmode.so Xlib/inspircd/libIRCDmodules.so Xlib/inspircd/libIRCDsnomasks.so Xlib/inspircd/libIRCDsocket.so Xlib/inspircd/libIRCDsocketengine.so Xlib/inspircd/libIRCDstring.so Xlib/inspircd/libIRCDtimer.so Xlib/inspircd/libIRCDuserprocess.so Xlib/inspircd/libIRCDusers.so Xlib/inspircd/libIRCDwildcard.so Xlib/inspircd/libIRCDxline.so Xlib/inspircd/cmd_admin.so Xlib/inspircd/cmd_away.so Xlib/inspircd/cmd_clearcache.so Xlib/inspircd/cmd_commands.so Xlib/inspircd/cmd_connect.so Xlib/inspircd/cmd_die.so Xlib/inspircd/cmd_eline.so Xlib/inspircd/cmd_gline.so Xlib/inspircd/cmd_info.so Xlib/inspircd/cmd_invite.so Xlib/inspircd/cmd_ison.so Xlib/inspircd/cmd_join.so Xlib/inspircd/cmd_kick.so Xlib/inspircd/cmd_kill.so Xlib/inspircd/cmd_kline.so Xlib/inspircd/cmd_links.so Xlib/inspircd/cmd_list.so Xlib/inspircd/cmd_loadmodule.so Xlib/inspircd/cmd_lusers.so Xlib/inspircd/cmd_map.so Xlib/inspircd/cmd_mode.so Xlib/inspircd/cmd_modules.so Xlib/inspircd/cmd_motd.so Xlib/inspircd/cmd_names.so Xlib/inspircd/cmd_nick.so Xlib/inspircd/cmd_notice.so Xlib/inspircd/cmd_oper.so Xlib/inspircd/cmd_part.so Xlib/inspircd/cmd_pass.so Xlib/inspircd/cmd_ping.so Xlib/inspircd/cmd_pong.so Xlib/inspircd/cmd_privmsg.so Xlib/inspircd/cmd_qline.so Xlib/inspircd/cmd_quit.so Xlib/inspircd/cmd_rehash.so Xlib/inspircd/cmd_reloadmodule.so Xlib/inspircd/cmd_restart.so Xlib/inspircd/cmd_rules.so Xlib/inspircd/cmd_server.so Xlib/inspircd/cmd_squit.so Xlib/inspircd/cmd_stats.so Xlib/inspircd/cmd_summon.so Xlib/inspircd/cmd_time.so Xlib/inspircd/cmd_topic.so Xlib/inspircd/cmd_trace.so Xlib/inspircd/cmd_unloadmodule.so Xlib/inspircd/cmd_user.so Xlib/inspircd/cmd_userhost.so Xlib/inspircd/cmd_users.so Xlib/inspircd/cmd_version.so Xlib/inspircd/cmd_wallops.so Xlib/inspircd/cmd_who.so Xlib/inspircd/cmd_whois.so Xlib/inspircd/cmd_whowas.so Xlib/inspircd/cmd_zline.so Xlib/inspircd/modules/m_blockcaps.so Xlib/inspircd/modules/m_blockamsg.so Xlib/inspircd/modules/m_dnsbl.so Xlib/inspircd/modules/m_censor.so Xlib/inspircd/modules/m_hideoper.so Xlib/inspircd/modules/m_conn_waitpong.so Xlib/inspircd/modules/m_vhost.so Xlib/inspircd/modules/m_safelist.so Xlib/inspircd/modules/m_remove.so Xlib/inspircd/modules/m_override.so Xlib/inspircd/modules/m_sapart.so Xlib/inspircd/modules/m_watch.so Xlib/inspircd/modules/m_botmode.so Xlib/inspircd/modules/m_tline.so Xlib/inspircd/modules/m_silence_ext.so Xlib/inspircd/modules/m_xmlsocket.so Xlib/inspircd/modules/m_uhnames.so Xlib/inspircd/modules/m_noinvite.so Xlib/inspircd/modules/m_services.so Xlib/inspircd/modules/m_filter.so Xlib/inspircd/modules/m_invisible.so Xlib/inspircd/modules/m_operjoin.so Xlib/inspircd/modules/m_sha256.so Xlib/inspircd/modules/m_knock.so Xlib/inspircd/modules/m_cban.so Xlib/inspircd/modules/m_noctcp.so Xlib/inspircd/modules/m_oper_hash.so Xlib/inspircd/modules/m_globalload.so Xlib/inspircd/modules/m_userip.so Xlib/inspircd/modules/m_antibottler.so Xlib/inspircd/modules/m_nokicks.so Xlib/inspircd/modules/m_devoice.so Xlib/inspircd/modules/m_showwhois.so Xlib/inspircd/modules/m_ident.so Xlib/inspircd/modules/m_joinflood.so Xlib/inspircd/modules/m_blockcolor.so Xlib/inspircd/modules/m_helpop.so Xlib/inspircd/modules/m_opermotd.so Xlib/inspircd/modules/m_sslmodes.so Xlib/inspircd/modules/m_timedbans.so Xlib/inspircd/modules/m_chanprotect.so Xlib/inspircd/modules/m_nonicks.so Xlib/inspircd/modules/m_connflood.so Xlib/inspircd/modules/m_chanfilter.so Xlib/inspircd/modules/m_opermodes.so Xlib/inspircd/modules/m_md5.so Xlib/inspircd/modules/m_namesx.so Xlib/inspircd/modules/m_restrictmsg.so Xlib/inspircd/modules/m_chghost.so Xlib/inspircd/modules/m_operchans.so Xlib/inspircd/modules/m_uninvite.so Xlib/inspircd/modules/m_services_account.so Xlib/inspircd/modules/m_taxonomy.so Xlib/inspircd/modules/m_banredirect.so Xlib/inspircd/modules/m_sanick.so Xlib/inspircd/modules/m_alias.so Xlib/inspircd/modules/m_inviteexception.so Xlib/inspircd/modules/m_deaf.so Xlib/inspircd/modules/m_lockserv.so Xlib/inspircd/modules/m_banexception.so Xlib/inspircd/modules/m_redirect.so Xlib/inspircd/modules/m_restrictchans.so Xlib/inspircd/modules/m_securelist.so Xlib/inspircd/modules/m_globops.so Xlib/inspircd/modules/m_check.so Xlib/inspircd/modules/m_seenicks.so Xlib/inspircd/modules/m_spy.so Xlib/inspircd/modules/m_spanningtree.so Xlib/inspircd/modules/m_swhois.so Xlib/inspircd/modules/m_setname.so Xlib/inspircd/modules/m_nonotice.so Xlib/inspircd/modules/m_randquote.so Xlib/inspircd/modules/m_httpd_stats.so Xlib/inspircd/modules/m_cgiirc.so Xlib/inspircd/modules/m_cloaking.so Xlib/inspircd/modules/m_setidle.so Xlib/inspircd/modules/m_silence.so Xlib/inspircd/modules/m_http_client.so Xlib/inspircd/modules/m_regonlycreate.so Xlib/inspircd/modules/m_operlevels.so Xlib/inspircd/modules/m_messageflood.so Xlib/inspircd/modules/m_stripcolor.so Xlib/inspircd/modules/m_conn_join.so Xlib/inspircd/modules/m_denychans.so Xlib/inspircd/modules/m_httpd.so Xlib/inspircd/modules/m_foobar.so Xlib/inspircd/modules/m_svshold.so Xlib/inspircd/modules/m_hostchange.so Xlib/inspircd/modules/m_sajoin.so Xlib/inspircd/modules/m_hidechans.so Xlib/inspircd/modules/m_saquit.so Xlib/inspircd/modules/m_dccallow.so Xlib/inspircd/modules/m_samode.so Xlib/inspircd/modules/m_sethost.so Xlib/inspircd/modules/m_nicklock.so Xlib/inspircd/modules/m_ssl_dummy.so Xlib/inspircd/modules/m_jumpserver.so Xlib/inspircd/modules/m_operlog.so Xlib/inspircd/modules/m_kicknorejoin.so Xlib/inspircd/modules/m_conn_umodes.so Xlib/inspircd/modules/m_setident.so Xlib/inspircd/modules/m_testcommand.so Xlib/inspircd/modules/m_clones.so Xlib/inspircd/modules/m_alltime.so Xlib/inspircd/modules/m_auditorium.so Xlib/inspircd/modules/m_chancreate.so Xlib/inspircd/modules/m_chgident.so Xlib/inspircd/modules/m_restrictbanned.so Xlib/inspircd/modules/m_antibear.so X@dirrm inspircd X@dirrm lib/inspircd/modules X@dirrm lib/inspircd X@unexec if cmp -s %D/etc/inspircd/inspircd.conf.example %D/etc/inspircd/inspircd.conf; then rm -f %D/etc/inspircd/inspircd.conf; fi Xetc/inspircd/inspircd.conf.example X@exec if [ ! -f %D/etc/inspircd/inspircd.conf ] ; then cp -p %D/%F %B/inspircd.conf; fi X@unexec if cmp -s %D/etc/inspircd/inspircd.quotes.example %D/etc/inspircd/inspircd.quotes; then rm -f %D/etc/inspircd/inspircd.quotes; fi Xetc/inspircd/inspircd.quotes.example X@exec if [ ! -f %D/etc/inspircd/inspircd.quotes ] ; then cp -p %D/%F %B/inspircd.quotes; fi X@unexec if cmp -s %D/etc/inspircd/inspircd.rules.example %D/etc/inspircd/inspircd.rules; then rm -f %D/etc/inspircd/inspircd.rules; fi Xetc/inspircd/inspircd.rules.example X@exec if [ ! -f %D/etc/inspircd/inspircd.rules ] ; then cp -p %D/%F %B/inspircd.rules; fi X@dirrmtry etc/inspircd END-of-irc/inspircd/pkg-plist echo x - irc/inspircd/pkg-message sed 's/^X//' >irc/inspircd/pkg-message << 'END-of-irc/inspircd/pkg-message' XDon't forget to copy the example configuration file inspircd.conf.example Xas inspircd.conf, or use inspircd -config to start InspIRCd. END-of-irc/inspircd/pkg-message echo x - irc/inspircd/Makefile~ sed 's/^X//' >irc/inspircd/Makefile~ << 'END-of-irc/inspircd/Makefile~' X# New ports collection makefile for: inspircd X# Date created: 25 August 2006 X# Whom: brain X# X# $FreeBSD: ports/irc/inspircd/Makefile,v 1.2 2007/01/11 17:05:18 pav Exp $ X# X XPORTNAME= inspircd XPORTVERSION= 1.1.8 XCATEGORIES= irc XMASTER_SITES= http://www.inspircd.org/downloads/ \ X http://www.chatspike.net/downloads/ XDISTNAME= InspIRCd-${PORTVERSION} XWRKSRC= ${WRKDIR}/inspircd X XMAINTAINER= brain@inspircd.org XCOMMENT= A modular C++ IRC daemon X XUSE_GCC= 3.2+ XUSE_GMAKE= yes XUSE_BZIP2= yes X X# Configure script is written in perl XUSE_PERL5_BUILD=yes X XCONFIGURE_ARGS= --with-cc=${CXX} --config-dir=${PREFIX}/etc/inspircd --module-dir=${PREFIX}/lib/inspircd/modules \ X --library-dir=${PREFIX}/lib/inspircd --prefix=${PREFIX}/inspircd --binary-dir=${PREFIX}/bin \ X --enable-remote-ipv6 --disable-interactive X XHAS_CONFIGURE= yes X X.include X X.if ${OSVERSION} < 500000 XBROKEN= does not compile (old perl) X.endif X X# 1.0.6 Makefile forgets to make these directories X# during install. We make these ourselves. This may X# be fixed in a later version of InspIRCd. Xpre-su-install: X @-${MKDIR} ${PREFIX}/inspircd X @-${MKDIR} ${PREFIX}/lib/inspircd X @-${MKDIR} ${PREFIX}/lib/inspircd/modules X @-${MKDIR} ${PREFIX}/etc/inspircd X Xpost-install: X ${STRIP_CMD} ${PREFIX}/lib/inspircd/modules/*.so X ${STRIP_CMD} ${PREFIX}/lib/inspircd/*.so X ${STRIP_CMD} ${PREFIX}/bin/inspircd X X.include END-of-irc/inspircd/Makefile~ exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 23:00:10 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BC8216A468 for ; Sat, 9 Jun 2007 23:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7A21013C465 for ; Sat, 9 Jun 2007 23:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59N0ASQ042472 for ; Sat, 9 Jun 2007 23:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59N0AVT042470; Sat, 9 Jun 2007 23:00:10 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 23:00:10 GMT Resent-Message-Id: <200706092300.l59N0AVT042470@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Logvinov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE42C16A400 for ; Sat, 9 Jun 2007 22:52:05 +0000 (UTC) (envelope-from user@blg.akavia.ru) Received: from blg.akavia.ru (blg.akavia.ru [62.33.174.250]) by mx1.freebsd.org (Postfix) with ESMTP id A06D513C43E for ; Sat, 9 Jun 2007 22:52:02 +0000 (UTC) (envelope-from user@blg.akavia.ru) Received: from blg.akavia.ru (localhost [127.0.0.1]) by blg.akavia.ru (8.13.8/8.13.8) with ESMTP id l59Mq0HF071634; Sun, 10 Jun 2007 08:52:00 +1000 (YAKST) (envelope-from user@blg.akavia.ru) Received: (from root@localhost) by blg.akavia.ru (8.13.8/8.13.8/Submit) id l59Mpx0P071633; Sun, 10 Jun 2007 08:51:59 +1000 (YAKST) (envelope-from user) Message-Id: <200706092251.l59Mpx0P071633@blg.akavia.ru> Date: Sun, 10 Jun 2007 08:51:59 +1000 (YAKST) From: Alexander Logvinov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Alexander Logvinov Subject: ports/113503: [new port] graphics/rubygem-gd2: Ruby binding for Thomas Boutell's gd 2.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Logvinov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 23:00:10 -0000 >Number: 113503 >Category: ports >Synopsis: [new port] graphics/rubygem-gd2: Ruby binding for Thomas Boutell's gd 2.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 23:00:09 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.2-RELEASE-p5 i386 >Organization: >Environment: >Description: Ruby binding for Thomas Boutell's gd 2.x graphics library >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-gd2 # rubygem-gd2/Makefile # rubygem-gd2/distinfo # rubygem-gd2/pkg-descr # rubygem-gd2/pkg-plist # echo c - rubygem-gd2 mkdir -p rubygem-gd2 > /dev/null 2>&1 echo x - rubygem-gd2/Makefile sed 's/^X//' >rubygem-gd2/Makefile << 'END-of-rubygem-gd2/Makefile' X# Ports collection makefile for: rubygem-gd2 X# Date created: 07 June 2007 X# Whom: Alexander Logvinov X# X# $FreeBSD$ X XPORTNAME= gd2 XPORTVERSION= 1.1.1 XCATEGORIES= graphics rubygems XMASTER_SITES= ${MASTER_SITE_RUBYFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= ports@logvinov.com XCOMMENT= Ruby binding for Thomas Boutell's gd 2.x graphics library X XLIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd X XREINPLACE_ARGS= -i "" X Xpost-install: X @${REINPLACE_CMD} 's|so.2|so.4|' ${PREFIX}/${GEM_LIB_DIR}/lib/gd2.rb X X.include X.include "${PORTSDIR}/devel/ruby-gems/Makefile.common" X.include END-of-rubygem-gd2/Makefile echo x - rubygem-gd2/distinfo sed 's/^X//' >rubygem-gd2/distinfo << 'END-of-rubygem-gd2/distinfo' XMD5 (rubygem/gd2-1.1.1.gem) = 421049a6d49a278755a9b4f7b35f8822 XSHA256 (rubygem/gd2-1.1.1.gem) = 09fb48cd9557704516113e1c82bc4c3d14c8750511b81d1efee745b3b3efd6eb XSIZE (rubygem/gd2-1.1.1.gem) = 27648 END-of-rubygem-gd2/distinfo echo x - rubygem-gd2/pkg-descr sed 's/^X//' >rubygem-gd2/pkg-descr << 'END-of-rubygem-gd2/pkg-descr' XRuby binding for Thomas Boutell's gd 2.x graphics library X XWWW: http://gd2.rubyforge.org/ END-of-rubygem-gd2/pkg-descr echo x - rubygem-gd2/pkg-plist sed 's/^X//' >rubygem-gd2/pkg-plist << 'END-of-rubygem-gd2/pkg-plist' X%%GEM_CACHE%% X%%GEM_SPEC%% X%%GEM_LIB_DIR%%/README X%%GEM_LIB_DIR%%/COPYING X%%GEM_LIB_DIR%%/COPYRIGHT X%%GEM_LIB_DIR%%/Rakefile X%%GEM_LIB_DIR%%/lib/gd2.rb X%%GEM_LIB_DIR%%/lib/gd2/canvas.rb X%%GEM_LIB_DIR%%/lib/gd2/color.rb X%%GEM_LIB_DIR%%/lib/gd2/font.rb X%%GEM_LIB_DIR%%/lib/gd2/image.rb X%%GEM_LIB_DIR%%/lib/gd2/palette.rb X%%GEM_LIB_DIR%%/test/image.rb X%%GEM_DOC_DIR%%/rdoc/rdoc-style.css X%%GEM_DOC_DIR%%/rdoc/files/lib/gd2_rb.html X%%GEM_DOC_DIR%%/rdoc/files/lib/gd2/canvas_rb.html X%%GEM_DOC_DIR%%/rdoc/files/lib/gd2/color_rb.html X%%GEM_DOC_DIR%%/rdoc/files/lib/gd2/font_rb.html X%%GEM_DOC_DIR%%/rdoc/files/lib/gd2/image_rb.html X%%GEM_DOC_DIR%%/rdoc/files/lib/gd2/palette_rb.html X%%GEM_DOC_DIR%%/rdoc/files/README.html X%%GEM_DOC_DIR%%/rdoc/files/COPYING.html X%%GEM_DOC_DIR%%/rdoc/classes/Numeric.src/M000001.html X%%GEM_DOC_DIR%%/rdoc/classes/Numeric.src/M000003.html X%%GEM_DOC_DIR%%/rdoc/classes/Numeric.src/M000004.html X%%GEM_DOC_DIR%%/rdoc/classes/Numeric.src/M000005.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000006.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000007.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000008.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000009.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000010.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000011.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000012.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000014.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000016.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000018.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000020.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000022.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000024.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000026.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000028.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000030.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000031.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src/M000032.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000033.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000034.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000035.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000036.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000037.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000038.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000039.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000040.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000042.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000044.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000045.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000046.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000048.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000049.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000050.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000051.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000052.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000053.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000054.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000055.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000056.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000057.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000058.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000059.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000060.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000061.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000062.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000063.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000064.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000065.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000066.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000067.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000068.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000069.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000070.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000071.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000072.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000073.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000074.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000075.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000076.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000077.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000078.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000079.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000080.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000081.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000082.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000083.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000084.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000085.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000086.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000087.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000088.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src/M000089.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image/IndexedColor.src/M000090.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image/UnrecognizedImageTypeError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image/TrueColor.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image/IndexedColor.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000091.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000092.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000093.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000094.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000095.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000096.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000097.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000098.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000099.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000100.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000101.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000102.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000103.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000104.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000105.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000106.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000107.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000108.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000109.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000110.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000111.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000112.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000113.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000114.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000115.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000116.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000117.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src/M000118.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/TextCircle.src/M000119.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/TextCircle.src/M000120.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Text.src/M000121.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Text.src/M000122.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Wedge.src/M000123.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Wedge.src/M000124.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Wedge.src/M000125.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledRectangle.src/M000126.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Polygon.src/M000127.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Polygon.src/M000128.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Polygon.src/M000129.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledEllipse.src/M000130.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledPolygon.src/M000131.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledWedge.src/M000132.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Arc.src/M000133.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Arc.src/M000134.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Ellipse.src/M000135.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Ellipse.src/M000136.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Rectangle.src/M000137.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Rectangle.src/M000138.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Rectangle.src/M000139.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/OpenPolygon.src/M000140.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Line.src/M000141.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Line.src/M000142.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.src/M000143.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.src/M000144.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.src/M000145.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.src/M000146.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.src/M000147.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/TextCircle.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/NoFontSelectedError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/NoColorSelectedError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Text.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Wedge.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledRectangle.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Polygon.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledEllipse.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledPolygon.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledWedge.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Arc.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Ellipse.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Rectangle.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/OpenPolygon.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Line.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType.src/M000148.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType.src/M000149.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType.src/M000150.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType.src/M000151.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/Tiny.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/MediumBold.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/Giant.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/Large.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/Small.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType/FreeTypeError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType/FontconfigError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000152.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000154.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000155.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000156.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000157.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000158.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000159.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000160.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000161.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000162.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000163.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000164.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000165.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src/M000166.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/TrueColor.src/M000167.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/IndexedColor.src/M000168.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/TrueColor.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/ColorNotFoundError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/IndexedColor.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/PaletteFullError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/LibraryError.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Font.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.html X%%GEM_DOC_DIR%%/rdoc/classes/Numeric.html X%%GEM_DOC_DIR%%/rdoc/classes/GD2.html X%%GEM_DOC_DIR%%/rdoc/fr_file_index.html X%%GEM_DOC_DIR%%/rdoc/fr_class_index.html X%%GEM_DOC_DIR%%/rdoc/fr_method_index.html X%%GEM_DOC_DIR%%/rdoc/index.html X%%GEM_DOC_DIR%%/rdoc/created.rid X@dirrm %%GEM_LIB_DIR%%/test X@dirrm %%GEM_LIB_DIR%%/lib/gd2 X@dirrm %%GEM_LIB_DIR%%/lib X@dirrm %%GEM_LIB_DIR%% X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/IndexedColor.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette/TrueColor.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Palette.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Font/TrueType.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Font X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Point.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Line.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/OpenPolygon.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Rectangle.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Ellipse.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Arc.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledWedge.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledPolygon.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledEllipse.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Polygon.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/FilledRectangle.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Wedge.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/Text.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas/TextCircle.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Canvas.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Image/IndexedColor.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Image X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Image.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2/Color.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/GD2 X@dirrm %%GEM_DOC_DIR%%/rdoc/classes/Numeric.src X@dirrm %%GEM_DOC_DIR%%/rdoc/classes X@dirrm %%GEM_DOC_DIR%%/rdoc/files/lib/gd2 X@dirrm %%GEM_DOC_DIR%%/rdoc/files/lib X@dirrm %%GEM_DOC_DIR%%/rdoc/files X@dirrm %%GEM_DOC_DIR%%/rdoc X@dirrm %%GEM_DOC_DIR%% END-of-rubygem-gd2/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 23:05:17 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F7F016A421; Sat, 9 Jun 2007 23:05:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 383B913C447; Sat, 9 Jun 2007 23:05:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (miwi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59N5HZd042879; Sat, 9 Jun 2007 23:05:17 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59N5HFX042875; Sat, 9 Jun 2007 23:05:17 GMT (envelope-from miwi) Date: Sat, 9 Jun 2007 23:05:17 GMT From: Martin Wilke Message-Id: <200706092305.l59N5HFX042875@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org Cc: Subject: Re: ports/113503: [new port] graphics/rubygem-gd2: Ruby binding for Thomas Boutell's gd 2.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 23:05:17 -0000 Synopsis: [new port] graphics/rubygem-gd2: Ruby binding for Thomas Boutell's gd 2.x Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jun 9 23:05:16 UTC 2007 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=113503 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 9 23:10:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09CBD16A421 for ; Sat, 9 Jun 2007 23:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id DF5A113C44C for ; Sat, 9 Jun 2007 23:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l59NA27N043003 for ; Sat, 9 Jun 2007 23:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l59NA28H043002; Sat, 9 Jun 2007 23:10:02 GMT (envelope-from gnats) Resent-Date: Sat, 9 Jun 2007 23:10:02 GMT Resent-Message-Id: <200706092310.l59NA28H043002@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Roome Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3748316A421 for ; Sat, 9 Jun 2007 23:06:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 0FB3B13C447 for ; Sat, 9 Jun 2007 23:06:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l59N5xrO079731 for ; Sat, 9 Jun 2007 23:05:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l59N5x6G079730; Sat, 9 Jun 2007 23:05:59 GMT (envelope-from nobody) Message-Id: <200706092305.l59N5x6G079730@www.freebsd.org> Date: Sat, 9 Jun 2007 23:05:59 GMT From: Steve Roome To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/113504: [maintainer-update]: updates and fixes for graphics/xglurbules X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2007 23:10:03 -0000 >Number: 113504 >Category: ports >Synopsis: [maintainer-update]: updates and fixes for graphics/xglurbules >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jun 09 23:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Steve Roome >Release: 7.0-current >Organization: Pepcross Computing Ltd. >Environment: FreeBSD zebedee.internal.pepcross.com 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Tue May 15 06:21:54 BST 2007 steve@zebedee.internal.pepcross.com:/usr/obj/usr/src/sys/ZEBEDEE i386 >Description: Patch to update xglurbules to version 3.0 and stop it breaking while building on amd64. Includes framerate limiter so as not to eat CPU. New renderer Memory overflow fixes URL change >How-To-Repeat: Install graphics/xglurbules >Fix: Apply the attached patch. Patch attached with submission follows: diff -u xglurbules.old/Makefile xglurbules/Makefile --- xglurbules.old/Makefile Sat May 19 21:11:09 2007 +++ xglurbules/Makefile Sun Jun 10 00:23:22 2007 @@ -6,10 +6,10 @@ # PORTNAME= xglurbules -PORTVERSION= 1.2 -PORTREVISION= 1 +PORTVERSION= 3 +PORTREVISION= 0 CATEGORIES= graphics -MASTER_SITES= http://www.pepcross.com/glurbules/ +MASTER_SITES= http://stephenroome.com/xglurbules/ MAINTAINER= steve@pepcross.com COMMENT= Burning particle system eye candy program thingy for X11 @@ -22,16 +22,8 @@ MANCOMPRESSED= yes PLIST_FILES= bin/xglurbules \ - bin/xglurbules-noshm \ - bin/xglurbules-test + bin/xglurbules-noshm .include - -.if ${ARCH} != "i386" -BROKEN= does not compile on !i386 -.endif - -post-patch: - @${REINPLACE_CMD} -e 's,/usr/X11R6,${X11BASE},' ${WRKSRC}/Makefile .include diff -u xglurbules.old/distinfo xglurbules/distinfo --- xglurbules.old/distinfo Sun Jan 22 12:35:15 2006 +++ xglurbules/distinfo Sun Jun 10 00:26:16 2007 @@ -1,3 +1,3 @@ -MD5 (xglurbules-1.2.tar.gz) = 6571d83be4881842762d6bf7eec3dc90 -SHA256 (xglurbules-1.2.tar.gz) = 3071a1c2f7125aa8235d3d04873f852a2735e47d0d4645f52cf74e335f07fbf4 -SIZE (xglurbules-1.2.tar.gz) = 19856 +MD5 (xglurbules-3.tar.gz) = 0a920f9ac4b20d77b73758a2ff56ad57 +SHA256 (xglurbules-3.tar.gz) = 5346804aae8e81566f8833a01a6597be448523d033bd89274a4a62fca0a5de86 +SIZE (xglurbules-3.tar.gz) = 25094 diff -u xglurbules.old/pkg-descr xglurbules/pkg-descr --- xglurbules.old/pkg-descr Mon Mar 31 23:22:40 2003 +++ xglurbules/pkg-descr Sun Jun 10 00:12:46 2007 @@ -1,6 +1,8 @@ -Gooey looking highly graphical particle system eyecandy program for -X11. There's a screenshot or four at : +An eyecandy particle system for X that can make a nice desktop background - WWW: http://www.pepcross.com/capture.html +Requires X11 and shared memory helps. + +There's a screenshot or four at : + + WWW: http://stephenroome.com/xglurbules/ -(Ignore the version numbers, they're wrong!) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 10 00:00:14 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDF4916A46E for ; Sun, 10 Jun 2007 00:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C18DA13C458 for ; Sun, 10 Jun 2007 00:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5A00EwF046626 for ; Sun, 10 Jun 2007 00:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5A00Eg9046625; Sun, 10 Jun 2007 00:00:14 GMT (envelope-from gnats) Resent-Date: Sun, 10 Jun 2007 00:00:14 GMT Resent-Message-Id: <200706100000.l5A00Eg9046625@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4549916A400 for ; Sat, 9 Jun 2007 23:56:16 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.freebsd.org (Postfix) with ESMTP id DE28813C469 for ; Sat, 9 Jun 2007 23:56:15 +0000 (UTC) (envelope-from gslin@ccreader.NCTU.edu.tw) Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000) id 0DB8D5C1F; Sun, 10 Jun 2007 07:56:15 +0800 (CST) Message-Id: <20070609235615.0DB8D5C1F@ccreader.NCTU.edu.tw> Date: Sun, 10 Jun 2007 07:56:15 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/113505: [NEW PORT] devel/p5-IO-Async: Perl modules that implement asynchronous filehandle IO X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 00:00:15 -0000 >Number: 113505 >Category: ports >Synopsis: [NEW PORT] devel/p5-IO-Async: Perl modules that implement asynchronous filehandle IO >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 10 00:00:13 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun 5 03:26:27 CST >Description: This collection of modules allows programs to be written that perform asynchronous filehandle IO operations. A typical program using them would consist of a single subclass of IO::Async::Set to act as a container for a number of IO::Async::Notifier objects (or subclasses thereof). The set itself is responsible for checking read- or write-readiness, and informing the notifiers of these conditions. The notifiers then perform whatever work is required on these conditions, by using subclass methods or callback functions. WWW: http://search.cpan.org/dist/IO-Async/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-IO-Async-0.07.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-IO-Async # p5-IO-Async/pkg-descr # p5-IO-Async/Makefile # p5-IO-Async/pkg-plist # p5-IO-Async/distinfo # echo c - p5-IO-Async mkdir -p p5-IO-Async > /dev/null 2>&1 echo x - p5-IO-Async/pkg-descr sed 's/^X//' >p5-IO-Async/pkg-descr << 'END-of-p5-IO-Async/pkg-descr' XThis collection of modules allows programs to be written that perform Xasynchronous filehandle IO operations. A typical program using them Xwould consist of a single subclass of IO::Async::Set to act as a Xcontainer for a number of IO::Async::Notifier objects (or subclasses Xthereof). The set itself is responsible for checking read- or Xwrite-readiness, and informing the notifiers of these conditions. The Xnotifiers then perform whatever work is required on these conditions, Xby using subclass methods or callback functions. X XWWW: http://search.cpan.org/dist/IO-Async/ END-of-p5-IO-Async/pkg-descr echo x - p5-IO-Async/Makefile sed 's/^X//' >p5-IO-Async/Makefile << 'END-of-p5-IO-Async/Makefile' X# New ports collection makefile for: p5-IO-Async X# Date created: 2007-06-10 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= IO-Async XPORTVERSION= 0.07 XCATEGORIES= devel perl5 XMASTER_SITES= CPAN XMASTER_SITE_SUBDIR= IO XPKGNAMEPREFIX= p5- X XMAINTAINER= gslin@gslin.org XCOMMENT= Perl modules that implement asynchronous filehandle IO X XRUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/IO/Poll.pm:${PORTSDIR}/devel/p5-IO X XPERL_CONFIGURE= yes X XMAN3= IO::Async.3 IO::Async::Buffer.3 IO::Async::ChildManager.3 \ X IO::Async::Notifier.3 IO::Async::Set.3 \ X IO::Async::Set::GMainLoop.3 IO::Async::Set::IO_Poll.3 \ X IO::Async::Set::Select.3 IO::Async::SignalProxy.3 X X.include END-of-p5-IO-Async/Makefile echo x - p5-IO-Async/pkg-plist sed 's/^X//' >p5-IO-Async/pkg-plist << 'END-of-p5-IO-Async/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Async/.packlist X%%SITE_PERL%%/IO/Async.pod X%%SITE_PERL%%/IO/Async/Buffer.pm X%%SITE_PERL%%/IO/Async/ChildManager.pm X%%SITE_PERL%%/IO/Async/Notifier.pm X%%SITE_PERL%%/IO/Async/Set.pm X%%SITE_PERL%%/IO/Async/Set/GMainLoop.pm X%%SITE_PERL%%/IO/Async/Set/IO_Poll.pm X%%SITE_PERL%%/IO/Async/Set/Select.pm X%%SITE_PERL%%/IO/Async/SignalProxy.pm X@dirrmtry %%SITE_PERL%%/mach/auto/IO/Async X@dirrmtry %%SITE_PERL%%/mach/auto/IO X@dirrmtry %%SITE_PERL%%/IO/Async/Set X@dirrmtry %%SITE_PERL%%/IO/Async X@dirrmtry %%SITE_PERL%%/IO END-of-p5-IO-Async/pkg-plist echo x - p5-IO-Async/distinfo sed 's/^X//' >p5-IO-Async/distinfo << 'END-of-p5-IO-Async/distinfo' XMD5 (IO-Async-0.07.tar.gz) = d0addd5a98b59de0c15f6542937ec7f9 XSHA256 (IO-Async-0.07.tar.gz) = 133efb840a7d8d558de7c875aadc176b6dea4d786a6aa53b7eedfb2b223968d2 XSIZE (IO-Async-0.07.tar.gz) = 30647 END-of-p5-IO-Async/distinfo exit --- p5-IO-Async-0.07.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: