From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 00:40:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93EDD16A4CF for ; Sun, 12 Dec 2004 00:40:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD4343D4C for ; Sun, 12 Dec 2004 00:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC0eJop055517 for ; Sun, 12 Dec 2004 00:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC0eJS8055516; Sun, 12 Dec 2004 00:40:19 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 00:40:19 GMT Message-Id: <200412120040.iBC0eJS8055516@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Slaven Rezic Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Slaven Rezic List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 00:40:19 -0000 The following reply was made to PR ports/74933; it has been noted by GNATS. From: Slaven Rezic To: Sergey Matveychuk Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) Date: 11 Dec 2004 20:53:06 +0100 Sergey Matveychuk writes: > Slaven Rezic wrote: > > > Can you give me more diagnostics, i.e. capturing the configuration and > > installation output and send it to me? > [...] OK, here's the revised port (with a patch file to make some bug fixes in the configure file and with "bash" as a dependency). BTW, is it possible to specify alternatives in the *_DEPENDS variables? It would be nice if I could say BUILD_DEPENDS=(bash:${PORTSDIR}/shells/bash|zsh:${PORTSDIR}/shells/zsh) as lesspipe works with either bash or zsh. The new port 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: # # lesspipe # lesspipe/distinfo # lesspipe/Makefile # lesspipe/pkg-descr # lesspipe/pkg-message # lesspipe/files # lesspipe/files/patch-configure # echo c - lesspipe mkdir -p lesspipe > /dev/null 2>&1 echo x - lesspipe/distinfo sed 's/^X//' >lesspipe/distinfo << 'END-of-lesspipe/distinfo' XMD5 (lesspipe-1.43.tar.gz) = 76c5ce7b45afc3fa7584acb299e0d98f XSIZE (lesspipe-1.43.tar.gz) = 51922 END-of-lesspipe/distinfo echo x - lesspipe/Makefile sed 's/^X//' >lesspipe/Makefile << 'END-of-lesspipe/Makefile' X# New ports collection makefile for: lesspipe X# Date created: 11 December 2004 X# Whom: Slaven Rezic X# X# $FreeBSD$ X# X XPORTNAME= lesspipe XPORTVERSION= 1.43 XCATEGORIES= misc XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= lesspipe X XMAINTAINER= slaven@rezic.de XCOMMENT= A preprocessor for less X XBUILD_DEPENDS= bash:${PORTSDIR}/shells/bash X.if defined(WITH_FANCY) X.if ${WITH_FANCY} == yes XBUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ X rpm:${PORTSDIR}/archivers/rpm \ X dpkg:${PORTSDIR}/archivers/dpkg \ X antiword:${PORTSDIR}/textproc/antiword \ X lynx:${PORTSDIR}/www/lynx \ X pdftotext:${PORTSDIR}/graphics/xpdf \ X unrtf:${PORTSDIR}/textproc/unrtf \ X dvi2tty:${PORTSDIR}/print/dvi2tty \ X pstotext:${PORTSDIR}/print/pstotext \ X mp3info:${PORTSDIR}/audio/mp3info \ X isoinfo:${PORTSDIR}/sysutils/cdrtools \ X cabextract:${PORTSDIR}/archivers/cabextract X.endif X.endif X XUSE_PERL5= yes X XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --default --prefix=${PREFIX} X XPLIST_FILES= bin/lesspipe.sh \ X bin/code2color X Xdo-build: X Xpost-install: X @${CAT} pkg-message X X.include END-of-lesspipe/Makefile echo x - lesspipe/pkg-descr sed 's/^X//' >lesspipe/pkg-descr << 'END-of-lesspipe/pkg-descr' Xlesspipe is a powerful preprocessor for less(1). The features include X X* Reading of various file formats like tar files, word, pdf and X postscript documents X X* Transparent handling of compressed files (gzip, bzip2, zip) X X* Optional syntax highlightning of source files X XWWW: http://sourceforge.net/projects/lesspipe END-of-lesspipe/pkg-descr echo x - lesspipe/pkg-message sed 's/^X//' >lesspipe/pkg-message << 'END-of-lesspipe/pkg-message' XTo use lesspipe.sh, type in the following commands X X LESSOPEN="|lesspipe.sh %s"; export LESSOPEN (sh, bash, ksh, zsh) X X setenv LESSOPEN "|lesspipe.sh %s" (csh, tcsh) X Xor put these commands in your shell's startup file (e.g. .cshrc or .bashrc). X END-of-lesspipe/pkg-message echo c - lesspipe/files mkdir -p lesspipe/files > /dev/null 2>&1 echo x - lesspipe/files/patch-configure sed 's/^X//' >lesspipe/files/patch-configure << 'END-of-lesspipe/files/patch-configure' X--- configure~ Thu Dec 9 09:30:52 2004 X+++ configure Sat Dec 11 20:46:04 2004 X@@ -28,7 +28,7 @@ X The Makefile is of little use (copy lesspipe.sh and code2color to the X install location) X EOF X- exit; X+ exit !$opt_help ? 1 : 0; X } X $opt_prefix ||= '/usr/local'; X open OUT, ">Makefile"; X@@ -188,7 +188,7 @@ X my $rc = system "$have{file} -L ./configure >/dev/null 2>&1"; X if ( $rc ) { X print " found system version of file, looking for GNU file\n"; X- exit unless inpath("Continue anyway", 'gfile'); X+ exit 1 unless inpath("Continue anyway", 'gfile'); X $have{file} = $have{gfile} if $have{gfile}; X } X $rc = system "$have{file} -L ./configure >/dev/null 2>&1"; X@@ -215,7 +215,7 @@ X $have{file} = $rep{file}; X check_file_vers(); X } X- exit if $yesno =~ /^n/i; X+ exit 1 if $yesno =~ /^n/i; X } else { X $have{file} .= ' -L -s'; X print " found GNU file$vers (ok)\n"; X@@ -277,10 +277,10 @@ X print OUT "#!$file$opt\n"; X $selected_shell = $name if ! $selected_shell; X } X- if ( $#bad == 2 ) { X+ if ( !$selected_shell ) { X print "Sorry, no useable shell found, cannot create lesspipe.sh\n", @bad; X print "You could edit lesspipe.sh.in to adjust the path to the shell(s)\n"; X- exit; X+ exit 1; X } else { X print OUT @bad; X } END-of-lesspipe/files/patch-configure exit -- Slaven Rezic - slaven rezic de Tk-AppMaster: a perl/Tk module launcher designed for handhelds http://tk-appmaster.sf.net From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 01:00:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C58716A4CE for ; Sun, 12 Dec 2004 01:00:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D925543D54 for ; Sun, 12 Dec 2004 01:00:51 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC10pSR055953 for ; Sun, 12 Dec 2004 01:00:51 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC10pDp055951; Sun, 12 Dec 2004 01:00:51 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 01:00:51 GMT Resent-Message-Id: <200412120100.iBC10pDp055951@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, Rui Lopes Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAEDA16A4CE for ; Sun, 12 Dec 2004 00:54:02 +0000 (GMT) Received: from griffin.clustercube.com (griffin.clustercube.com [213.201.220.146]) by mx1.FreeBSD.org (Postfix) with SMTP id 2609D43D55 for ; Sun, 12 Dec 2004 00:54:02 +0000 (GMT) (envelope-from rgl@griffin.clustercube.com) Received: (qmail 57971 invoked by uid 1010); 12 Dec 2004 00:54:01 -0000 Message-Id: <20041212005401.57970.qmail@griffin.clustercube.com> Date: 12 Dec 2004 00:54:01 -0000 From: Rui Lopes To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74964: Update port: devel/aap to 1.072 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Rui Lopes List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 01:00:52 -0000 >Number: 74964 >Category: ports >Synopsis: Update port: devel/aap to 1.072 >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 Dec 12 01:00:51 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rui Lopes >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD speedy 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Dec 6 16:05:48 WET 2004 root@speedy:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update devel/aap do 1.072. >How-To-Repeat: >Fix: --- devel::app-update-to-1.072.patch begins here --- diff -u aap.orig/Makefile aap/Makefile --- aap.orig/Makefile Sat Dec 11 16:46:35 2004 +++ aap/Makefile Sat Dec 11 17:50:31 2004 @@ -6,15 +6,13 @@ # PORTNAME= aap -PORTVERSION= 1.069 +PORTVERSION= 1.072 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= a-a-p MAINTAINER= rui@ruilopes.com COMMENT= A build tool alternative to make with internet access and CVS support - -BROKEN= Broken pkg-plist after python 2.4 update MAN1= aap.1 diff -u aap.orig/distinfo aap/distinfo --- aap.orig/distinfo Sat Dec 11 16:46:35 2004 +++ aap/distinfo Sat Dec 11 16:42:12 2004 @@ -1,2 +1,2 @@ -MD5 (aap-1.069.zip) = a43fb93cee09b4db9b86b54b58998851 -SIZE (aap-1.069.zip) = 1631946 +MD5 (aap-1.072.zip) = ba2508b7c5ac33686c571b64484f046a +SIZE (aap-1.072.zip) = 1637683 diff -u aap.orig/pkg-plist aap/pkg-plist --- aap.orig/pkg-plist Sat Dec 11 16:46:35 2004 +++ aap/pkg-plist Sat Dec 11 17:28:41 2004 @@ -83,7 +83,6 @@ lib/aap/Exec-%%PORTVERSION%%/aapnetrc.py lib/aap/Exec-%%PORTVERSION%%/aapnetrc.pyc lib/aap/Exec-%%PORTVERSION%%/aapre.py -lib/aap/Exec-%%PORTVERSION%%/aapre.pyc lib/aap/Exec-%%PORTVERSION%%/default.aap %%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/exec.pdf %%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/appendix.html --- devel::app-update-to-1.072.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 01:52:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C240A16A4CE; Sun, 12 Dec 2004 01:52:19 +0000 (GMT) Received: from mail.halls.colostate.edu (mail.halls.colostate.edu [129.82.88.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5179443D3F; Sun, 12 Dec 2004 01:52:19 +0000 (GMT) (envelope-from end@endif.cjb.net) Received: from zork (inge068179.halls.colostate.edu [129.82.68.179]) iBC1qIM5024034; Sat, 11 Dec 2004 18:52:18 -0700 Date: Sat, 11 Dec 2004 18:52:18 -0700 From: Robin Schoonover To: Pav Lucistnik Message-ID: <20041211185218.67983c5e@zork> In-Reply-To: <200412112334.iBBNYFEB048697@freefall.freebsd.org> References: <200412112334.iBBNYFEB048697@freefall.freebsd.org> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/550/Mon Oct 25 09:39:01 2004, clamav-milter version 0.71 X-Virus-Status: Clean cc: freebsd-ports-bugs@FreeBSD.org cc: pav@FreeBSD.org Subject: Re: ports/74759: Update port: multimedia/xfce4-xmms-controller-plugin (mark broken on 4.x) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 01:52:20 -0000 On Sat, 11 Dec 2004 23:34:15 GMT Pav Lucistnik wrote: > Synopsis: Update port: multimedia/xfce4-xmms-controller-plugin (mark > broken on 4.x) > > State-Changed-From-To: open->feedback > State-Changed-By: pav > State-Changed-When: Sat Dec 11 23:33:42 GMT 2004 > State-Changed-Why: > So it compiles but does not run correctly? Then you need > IGNORE not BROKEN. Right? > According to the porter's handbook: BROKEN is reserved for ports that do not work and should not be installed by users. This will prevent users from installing the port. Even though the port builds, it does not function (at all) on 4.x, so I think it should be marked BROKEN, not IGNORE. If you really believe IGNORE is a better marker to keep users from building it on 4.x, go ahead and commit that instead. I just want to make sure people are clear that it is (for the time being) only usable on 5.x. -- Robin Schoonover # "If mathematicians wanted to write lots of things down, they'd be # englishmajors." -- Prof. Janet Talvacchia From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 01:56:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDC7716A4CE for ; Sun, 12 Dec 2004 01:56:11 +0000 (GMT) Received: from hood.oook.cz (hood.oook.cz [212.27.205.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC76F43D4C for ; Sun, 12 Dec 2004 01:56:10 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from hood.oook.cz (localhost.oook.cz [127.0.0.1]) by hood.oook.cz (8.13.1/8.13.1) with ESMTP id iBC1u78W011562 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 12 Dec 2004 02:56:07 +0100 (CET) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by hood.oook.cz (8.13.1/8.13.1/Submit) id iBC1u7g2011561; Sun, 12 Dec 2004 02:56:07 +0100 (CET) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: hood.oook.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Robin Schoonover In-Reply-To: <20041211185218.67983c5e@zork> References: <200412112334.iBBNYFEB048697@freefall.freebsd.org> <20041211185218.67983c5e@zork> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-o8M9Nl9D2315OwKvd1zt" Date: Sun, 12 Dec 2004 02:56:01 +0100 Message-Id: <1102816566.60420.31.camel@hood.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74759: Update port: multimedia/xfce4-xmms-controller-plugin (mark broken on 4.x) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 01:56:12 -0000 --=-o8M9Nl9D2315OwKvd1zt Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Robin Schoonover p=ED=B9e v so 11. 12. 2004 v 18:52 -0700: > On Sat, 11 Dec 2004 23:34:15 GMT > Pav Lucistnik wrote: > > Synopsis: Update port: multimedia/xfce4-xmms-controller-plugin (mark > > broken on 4.x) > >=20 > > State-Changed-From-To: open->feedback > > State-Changed-By: pav > > State-Changed-When: Sat Dec 11 23:33:42 GMT 2004 > > State-Changed-Why:=20 > > So it compiles but does not run correctly? Then you need > > IGNORE not BROKEN. Right? > >=20 >=20 > According to the porter's handbook: >=20 > BROKEN is reserved for ports that do not work and should not be > installed by users. This will prevent users from installing the port. Hmm, this is misleading. I will update the handbook. > Even though the port builds, it does not function (at all) on 4.x, so I > think it should be marked BROKEN, not IGNORE. >=20 > If you really believe IGNORE is a better marker to keep users > from building it on 4.x, go ahead and commit that instead. I just want > to make sure people are clear that it is (for the time being) only > usable on 5.x. Okay, will do. --=20 Pav Lucistnik No one expects the spanish inquisition. --=-o8M9Nl9D2315OwKvd1zt Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBu6UwntdYP8FOsoIRAq04AJwLbK1YWnBOP+/zHBbgdIxAu0uc+ACdH3rv GVW+MvwefKFidpXjLweSTjM= =Gsk2 -----END PGP SIGNATURE----- --=-o8M9Nl9D2315OwKvd1zt-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 03:20:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F209616A4CE for ; Sun, 12 Dec 2004 03:20:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC53343D48 for ; Sun, 12 Dec 2004 03:20:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC3KLS6080274 for ; Sun, 12 Dec 2004 03:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC3KLoR080270; Sun, 12 Dec 2004 03:20:21 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 03:20:21 GMT Resent-Message-Id: <200412120320.iBC3KLoR080270@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, Serge Gagnon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC4B616A4CE; Sun, 12 Dec 2004 03:17:20 +0000 (GMT) Received: from tomts10-srv.bellnexxia.net (tomts10.bellnexxia.net [209.226.175.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D45D43D41; Sun, 12 Dec 2004 03:17:20 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts10-srv.bellnexxia.netESMTP <20041212031719.OSMY1863.tomts10-srv.bellnexxia.net@quenix1.dyndns.org>; Sat, 11 Dec 2004 22:17:19 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.43 (FreeBSD)) id 1CdKGZ-000BYk-EE; Sat, 11 Dec 2004 22:19:23 -0500 Message-Id: Date: Sat, 11 Dec 2004 22:19:23 -0500 From: Serge Gagnon Sender: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lioux@FreeBSD.org Subject: ports/74965: Patch port: multimedia/ffmpeg fix pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 03:20:22 -0000 >Number: 74965 >Category: ports >Synopsis: Patch port: multimedia/ffmpeg fix pkg-plist >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 Dec 12 03:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.10-STABLE i386 >Organization: me >Environment: System: FreeBSD quenix1.dyndns.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Dec 2 14:23:49 EST 2004 root@quenix1.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: Fix plist. Maintainer is cced >How-To-Repeat: >Fix: --- patch-ffmpeg-Makefile.diff begins here --- --- Makefile.orig Sat Dec 11 22:05:08 2004 +++ Makefile Sat Dec 11 22:13:23 2004 @@ -39,7 +39,7 @@ HEADER_FILES= libavcodec/avcodec.h libavcodec/common.h \ libavcodec/dsputil.h LIB_FILES= libavcodec/libavcodec.a libavformat/libavformat.a -MAN1= ffmpeg.1 ffplay.1 +MAN1= ffmpeg.1 .include @@ -333,6 +333,7 @@ ${WRKSRC}/configure .endif .ifdef(WITH_SDL) +MAN1+= ffplay.1 @${REINPLACE_CMD} -E \ -e 's|sdl-config|${SDL_CONFIG}|g' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} --- patch-ffmpeg-Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 04:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CB6116A4D6 for ; Sun, 12 Dec 2004 04:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7D8743D53 for ; Sun, 12 Dec 2004 04:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC4eOqE092767 for ; Sun, 12 Dec 2004 04:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC4eOwG092763; Sun, 12 Dec 2004 04:40:24 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 04:40:24 GMT Resent-Message-Id: <200412120440.iBC4eOwG092763@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, "Greg J." Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DC2B16A4CF for ; Sun, 12 Dec 2004 04:37:18 +0000 (GMT) Received: from fed1rmmtao01.cox.net (fed1rmmtao01.cox.net [68.230.241.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B64943D1F for ; Sun, 12 Dec 2004 04:37:18 +0000 (GMT) (envelope-from xcas@cox.net) Received: from casper.bsd-unix.org ([68.2.128.106]) by fed1rmmtao01.cox.net (InterMail vM.6.01.04.00 201-2131-117-20041022) with ESMTP <20041212043716.BLVB5137.fed1rmmtao01.cox.net@casper.bsd-unix.org> for ; Sat, 11 Dec 2004 23:37:16 -0500 Message-Id: <1102826247.0@casper.bsd-unix.org> Date: Sat, 11 Dec 2004 21:37:27 -0700 From: "Greg J." To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/74969: [MAINTAINER] x11-wm/kahakai: Fix package list & Mark broken on Alpha 4.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 04:40:25 -0000 >Number: 74969 >Category: ports >Synopsis: [MAINTAINER] x11-wm/kahakai: Fix package list & Mark broken on Alpha 4.x >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 Dec 12 04:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Greg J. >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD 5.3-RELEASE-p2 #0: Mon Dec 6 15:24:47 MST 2004 root@casper.bsd-unix.org:/usr/obj/usr/src/sys/CASX32 >Description: Fix package list & Mark broken on Alpha 4.x >How-To-Repeat: >Fix: --- kahakai.diff begins here --- diff -u kahakai/Makefile.orig kahakai/Makefile --- kahakai/Makefile.orig Sat Dec 11 21:07:44 2004 +++ kahakai/Makefile Sat Dec 11 21:20:10 2004 @@ -23,8 +23,6 @@ DEPRECATED= "Development ceased" -BROKEN= Broken by python 2.4 update - USE_BZIP2= yes USE_GMAKE= yes USE_INC_LIBTOOL_VER=13 @@ -42,6 +40,10 @@ LIBS=${PTHREAD_LIBS} .include + +.if ${ARCH} == "alpha" && ${OSVERSION} < 503001 +BROKEN= "Does not compile on alpha 4.x" +.endif post-patch: @${REINPLACE_CMD} -e 's|/tmp/ktest|${X11BASE}|' \ diff -u kahakai/pkg-plist.orig kahakai/pkg-plist --- kahakai/pkg-plist.orig Sat Dec 11 20:56:23 2004 +++ kahakai/pkg-plist Sat Dec 11 20:56:36 2004 @@ -27,8 +27,6 @@ share/kahakai/scripts/events.pyo share/kahakai/scripts/filelist.pl share/kahakai/scripts/kahakai.py -share/kahakai/scripts/kahakai.pyc -share/kahakai/scripts/kahakai.pyo share/kahakai/scripts/macros.py share/kahakai/scripts/macros.pyc share/kahakai/scripts/macros.pyo --- kahakai.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 09:10:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3E5616A4CE for ; Sun, 12 Dec 2004 09:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7D043D5C for ; Sun, 12 Dec 2004 09:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC9AM1P072462 for ; Sun, 12 Dec 2004 09:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC9AMov072461; Sun, 12 Dec 2004 09:10:22 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 09:10:22 GMT Resent-Message-Id: <200412120910.iBC9AMov072461@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFFB616A4CE for ; Sun, 12 Dec 2004 09:01:32 +0000 (GMT) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 061FB43D41 for ; Sun, 12 Dec 2004 09:01:32 +0000 (GMT) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost.csie.ntu.edu.tw [127.0.0.1]) by svm.csie.ntu.edu.tw (8.13.1/8.13.1) with ESMTP id iBC91Sru026894 for ; Sun, 12 Dec 2004 17:01:28 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from root@localhost) by svm.csie.ntu.edu.tw (8.13.1/8.13.1/Submit) id iBC91N5M026893; Sun, 12 Dec 2004 17:01:23 +0800 (CST) (envelope-from rafan) Message-Id: <200412120901.iBC91N5M026893@svm.csie.ntu.edu.tw> Date: Sun, 12 Dec 2004 17:01:23 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74973: [MAINTAINER] science/libsvm: correct pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 09:10:22 -0000 >Number: 74973 >Category: ports >Synopsis: [MAINTAINER] science/libsvm: correct pkg-plist >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 Dec 12 09:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 5.3-BETA5 i386 >Organization: NTU CSIE >Environment: System: FreeBSD svm.csie.ntu.edu.tw 5.3-BETA5 FreeBSD 5.3-BETA5 #13: Mon Sep 20 02:31:32 CST 2004 >Description: - README.python is not in pkg-plist - add 'python' category to libsvm-python (slave port) Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- libsvm-2.71_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/science/libsvm/Makefile /home/rafan/tmp/ports/science/libsvm/Makefile --- /usr/ports/science/libsvm/Makefile Sun Dec 12 03:35:49 2004 +++ /home/rafan/tmp/ports/science/libsvm/Makefile Sun Dec 12 16:53:43 2004 @@ -7,6 +7,7 @@ PORTNAME= libsvm PORTVERSION= 2.71 +PORTREVISION= 1 CATEGORIES= science math MASTER_SITES= http://www.csie.ntu.edu.tw/~cjlin/libsvm/ \ http://www.csie.ntu.edu.tw/~cjlin/libsvm/oldfiles/ @@ -16,6 +17,7 @@ USE_ZIP= yes .if defined(WITH_PYTHON) +CATEGORIES+= python USE_PYTHON= yes USE_REINPLACE= yes PLIST_SUB+= LIBSVM_PYTHON="" @@ -26,7 +28,7 @@ python/test_cross_validation.py .endif -TXT_DOCS= COPYRIGHT README FAQ.html python/README.python +TXT_DOCS= COPYRIGHT README FAQ.html README.python .if !defined(NOPORTDOCS) PORTDOCS= ${TXT_DOCS} .endif @@ -71,7 +73,7 @@ done .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} - ${CP} ${WRKSRC}/python/README ${WRKSRC}/python/README.python + ${CP} ${WRKSRC}/python/README ${WRKSRC}/README.python for f in ${TXT_DOCS}; do \ ${INSTALL_DATA} ${WRKSRC}/$$f ${DOCSDIR}; \ done --- libsvm-2.71_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 09:20:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D48B16A4CF for ; Sun, 12 Dec 2004 09:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B4E43D39 for ; Sun, 12 Dec 2004 09:20:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC9KJQk073733 for ; Sun, 12 Dec 2004 09:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC9KJcU073732; Sun, 12 Dec 2004 09:20:19 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 09:20:19 GMT Resent-Message-Id: <200412120920.iBC9KJcU073732@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 Brown Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D86516A4CE for ; Sun, 12 Dec 2004 09:16:48 +0000 (GMT) Received: from chilled.skew.org (skew.org [65.101.207.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id D524943D41 for ; Sun, 12 Dec 2004 09:16:47 +0000 (GMT) (envelope-from mike@skew.org) Received: from chilled.skew.org (localhost.skew.org [127.0.0.1]) by chilled.skew.org (8.13.1/8.13.1) with ESMTP id iBC9Glt9076227 for ; Sun, 12 Dec 2004 02:16:47 -0700 (MST) (envelope-from mike@chilled.skew.org) Received: (from root@localhost) by chilled.skew.org (8.13.1/8.13.1/Submit) id iBC9Glue076226; Sun, 12 Dec 2004 02:16:47 -0700 (MST) (envelope-from mike) Message-Id: <200412120916.iBC9Glue076226@chilled.skew.org> Date: Sun, 12 Dec 2004 02:16:47 -0700 (MST) From: Mike Brown To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mike Brown List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 09:20:20 -0000 >Number: 74974 >Category: ports >Synopsis: Update port: textproc/py-xml update to 0.8.4 >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: Sun Dec 12 09:20:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mike Brown >Release: FreeBSD 4.10-STABLE i386 >Organization: Fourthought, Inc. >Environment: System: FreeBSD chilled.skew.org 4.10-STABLE FreeBSD 4.10-STABLE #1: Wed Dec 1 23:33:02 MST 2004 mike@chilled.skew.org:/usr/obj/usr/src/sys/chilled i386 >Description: Attached is a new set of files to replace the entire textproc/py-xml port. I am the port maintainer. This version of the port installs PyXML 0.8.4 rather than 0.8.3, turns off XSLT support by default (it is experimental and may conflict with 4Suite), adds WITHOUT_XPATH and WITH_XSLT options, uses USE_PYTHON with a version spec instead of using a pkg-req file to require the right version of Python, and has an improved pkg-descr. If this new version is accepted, please also clear PR 74568: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/74568 Thanks! >How-To-Repeat: >Fix: begin 644 py-xml.tgz M'XL(`!H&O$$``^Q=;7?B1I;.U^97:))TMCO3YBU^2?M,YL2-<9N);1C`L7?/ MGL,1J&PT%I(B%39DM__[WA(24@EAZ]Z+,Q\VG-,-%O4\>IYZN75+$I*_W%O, MG-I7K_FJU_?K1P<'\!Z]\N_1YT:]<7!4KS>/FH=?U1N-1O/H*^/@557%KWDH MS<`PO@H\3SY7[FDJA/-'"/IC7_ZJ_2T[E+9[Y[W*/NJ->OUP?W]K^S=^.(K: M__"@?G1XT(#RS<.C@Z^,^JNHR;W^G[?_Y>F!\:ZWO+V\V*M7?ZSN5Z$VJO>_ MOS=^,AIWT!H']8/Z1(S'X\/#?6O\\>APOWYP9XW-9OUC9=#YK_8V\-$/^Q\/ M]BO_;GM_OEYXQ>/??[C?LT0X"5YC'R^,_^8/C<,D_M>;]0,U_H]@TY_C_P]X M1:/7L$/#-":>XXB)M#W7\.X,QQX'9F"+T)">X0?>1(2AH-7=$^+YJ`._$#D5I'!F]&(G,.G9J;^H@JS`JBA(#3NO`!LAE)5L3*^VI4B MVC_M7BJ>J"5FOF.;KC1@FW$AH&Z-IF'#1C$34"M1&Q4Y^Y?Y:%K>3%7)/^#C M'L#W=-B>]/:@Q[N6&5A[*YPJ99B6Z4L1`(<_=YR80WV1VZNA!*@&D&WJ:FHYA6+1NY![LV5/GOJL+CZO3&_X(N%/4T MU010:F;"G[8[<>:JGBM&]G5S>GH;U;.:=_J]%GP;WL\*VM%T;:LN(>K$E[LRY(RNJ-\/&JEYW[S]$JE>NA!HDQFW/ MA+X1=;G5"`/&#&OEG6)2O74*8P*Z+51=1.<8MX.+802,VT(3H^R.!;2I!8[M MJ*-5HD)VN&HM&.C6JE_>=(;GHX@,Q-LN;'XGJO=5X^N9^2"2PFFIGY8B_/I] MM5*YN;DY7C7'5$K_N%9[>GJJ^DNE-_3FP42`GGM1=86L509"1%5ZK)>-(@B4 MJH7V?5@#Y!Y\J%4J>WO&I0T[_T?5^!1X3Z[QMQG\^7/X()Y4\;\;[R;S((!J M,")/,P@2*E"(X/V?Z0;Z%<__E]#:=[8C7F4?+\S_^X>-U?KO\.CHH%X_4O/_ MP9_Y_Q_S^L;H19$\,_DG?4&%E.,W48)0^<8XA/\.W-%&8,M?6-"RQF\/-9(,2GP:D:L)5OH,"W\8;C:-"&-0FI@HIYM5P' M_/`(4:UY9#2A7]3JA[7&OE$_/*[O'S<_&A#^'I8J#!K?`F>EU^T/KTXNVS^] M>0,,T9^_MON#3O<*MD3KD4KK9-C^W.UWV@/8E.S26(6>RN7)8-CNCP:=8?3U MM_^3V3`:=*_[K?99M_^Y_:6B?7']Z;33_^E-%.LJO5\^*PF]?ONL-Z]&FE??*F<=@:)UM5Z"0JF>K]48!>=JR'\:P/U&RW>55K=R\OVU3"!'B>S M9II&0>+E3DUW$LTU8:5R/6B/5CH`U*PV_AIO42JNAYT+L`MQO%*IQG.1\;=Q M:%55PU1A2JS.'OY>J;1ZG>Y)_[.JF;V]W^:VD,:>;\UGQEZ_B9D&+PC;-_,JJVO"ETKX]N>Q=M+>@Q<)4,V;X+$7O`ERH9OBKJI&3 MUB\GG]LCQ3=2"2$D:17H;E%-07,_LMMQF;I45:,84:[A.JS[UU0&Z4K6_:^VC_L4NW6]:"*Y!P^ M1077Z5.8)GP>U*D*6I8-:1[LV(`Q_\VZ`:"GSJ/A\@$6)BJEG4S3;4D&!6L0 MJ%R(>"HUC=/2J#YA%TI%W+(@+Z[X#U$CQ_WX0T03<\3I=")&L7AJFS=SA%1` MU>JK-4[&C"*(,K$YU'N\9$@2:&$!B1*5?)'(5W55A7J,J^[=NC[?5S(Q8/3I MNG-QJH8X#*2]/=6A]E2'U,ITK@;#DXN+HE*981@UXD]??ZUO5.DB;*L*)Z=E MW>XOZ?'FWW5:ANM?ONT,QP8%YU66_W=;Y^<7K:_-X;=T^Z*+#8W.CT9 MGBC.F_XO@W[K"X3SF$_?$D7XWOCORMO#.-_ M88.:D[[$[ZH&U>?!^4F_W;VY^G('C3:?R]FVF%98,YD2*`U:F)%)R#HA3GL"C)J^D:*78-0LE< MHS`"(4OM:,GC%.>0&,$Y*$HOH,YL!Q((I-HL#J4U"\0J[4AU',TC M:,T@L6HS4*S>"UC&XK7&**S.&(;32,FK,BB<1E(6U5L=@K3=^XX;RF!.6!%L MH\"HW\:!L=(WW7MD'$L@&*D)!B-M*!;(GAHC,,)B"$I7(,2-Z3Q@XY.&0VG, M`C%*\8O\'`JCDKC8MT3MHC6Z;`\&L'U0B\_0S%`4WBP0]SB3:PS&XAJ$42?< MT?6`[5&HH^#J&C$+V^UR2(S?'!2G5\*Z9-8YR.))'K($-`=F*)@>-`::"XV"[./,GH7GRK"73 MC\9`\Z)1T'S,I?1@6^$/EPT6NB'^<#EGKKO.N>NN<^ZZZUR8%M.# MQD!SH5&0?=CN/=^*1D)VH['0#,$'IAN-@69%HR#YZ.P@A.4Y2%[R)#0W,_.> M:T:GH'G1.6A67'_.#,8Y"IH5G8-F)>RXEE@PS>1):';R+"1#%QV>ERR>9"-+ M0'-@C@4S?N4H:#YT#IH5<2]=X1W^<=4 MNSLXIMK=P3'5;G1C-Z:7'`?-3(Z$YL:7GP-OSHQ;FRPT1QLT5$\V]YQ*GH/J MQV:?4^F9@7D?F/Z49ZB`AN2I@(=LBWDX+$=!ML,](-8+F,LOC8!F(^`NO?XY M]R331HZ"9"3'0;(RF`2VSXS0>0Z2F3P)S8UPV/--GH/F)D="DT=`]Q7>#V8&O#2:ZMPTJFC^QD/S+%C=9:+XV:&B> M;,D>4CH%S8W.0;)RS5]\7^]@\7W-7'S3KCS/0]'2B5>;Q[>MQXE-01B9*0HC M4-TT='7S59Q>1J0&Q2M%5F8*P&FE5*0-3W;/61/XD(`_%BLUB,9+C)R+@ MQ*8@C,P4A1&XF#FD'TYK.(Q,#5A6:?PX"$)L*D"655L`Q>J]5S\BL2=XN2D0 MJS9%8L4^61;B-W8Y%%9F#"NKT0W+*XO*EM43%2ZK(G[B"J$;%B#+*BR`8O4* MW(\_\S"L4H'\J6>"\Y8@6&".:0S#`P;[($]'E&'1T)S0MGA(\V69KD6`/93DI`=9(R M4$V@CWML)Z":P!\'*6+`W*AI*YYC`76KICR!RJ00:=`V.%5_@F?(9W6B!;$!FHEL8>$%6)V&:88988)&>YSS8C"BK<3#LI"04-_X2^B@-86NH&$BD60BHFY=1`2)$QJJS`N;I& MU1*$ZBQ`EI5:`,7JM4/OQQ\//N+EID"LVA2)%3N7=S^.`(Y7FT%BY6:@I?6J M>$;I"GE<::UY($[IV/,<8;KE+^%:P2;)HW\1$T4!$F=2@^+TJHYW6&]@Q:8P MG-(4AY/YFZ_R7*S*-0HG<@U3&F][)\/SMV_+X56&.ZU]FMN.[+CMA3R;NY/, M2<6=<4UV249TV?).FC MC'?`0O24IR%ZZJFK8:R3\3@0C[8IUEW M53=]X0#MXRO5S1;V7=7-%GIFW;Q"9WF-'O(*W6)AAP-?3.P[FQ'`B[EX9G-D M+)C'G>U"T2.CA(8_&7T3O:0XHD64@*B@R6LWL.`'G)3/-%!2A`Y&%P,2^-# M1];4@Q*70S'S83H5H79KFIUQ379)1G,I96"/Y[G;*NZ"AN9MDX=G*__@E!TQ M\+VTF(EDKYB*YF_J>2'768Z#YBE'0G/CS12<:2=/0O.39R$:\I=<-_Z2;<5? M[L!']X[O),M!]I(E(;F)X3P[&R0D/QLL)$-G7M`V)U.>H0T2DJ$-%I(A]72G MF\PE83P"DA&-@62BPQPP'>Y@Z7`'RH6R;SH\&QLD)"\;+!Q#P_3L/X^!8V68 MN0(`2Q&?ZN0US`8)R0=B*9R\&QHY]$QI)^-((2#XT!J*)V5@$ MO"Z6YR!:T4E(;KIR*H+;D!G+-EE(CC9IZ)Z>;&[^7T!#=Z7ST&Q%=SL[S_YR M@LU!,Y0C(;G9?,()EX+DI>`))Q2.4%C9LU[P#R*,2_>UE8]J<8F"\W5!@W- M4^!-(/VRW?N.&\I@OOFDA%U3TMP^S\FQ[I$;,H/GF/+(C=?W9B9U>"58DO($ M3%,M[U@#*(NGJ<\0D!P,O(!Y)$MG(+G0*6@^U+.8PJD09!M9`IJ++`/31#_S M>\%=T#`-];._)T3S[.8,RH[.GNSHS(F:KKA^%MQQHU.0?0R26WV;Q%O[3?\3*8Z"YT"C(/O(__.1RD+UL M_.@32S+:5V]$&VLP2?\:31.N7\[+@-/$YR[EQ>+5`]#"N>][`;7R=0:2"9TB MND5`MS\\[;8&BD:]KPKOGW8OH_^J3V+\?*GV0@IW]=-JT[=+EU6W!GN^<-]T M[T4)TKCM]M8"K7[[M#,<;/W^HM-J/X?OMT].+U_Z MNFIYLY>*Q+?O>ZG8ZD9L6TL-NZ?=K5_.3+=F6L$HNDE]M?%L.6?I+DH5G(6V M*%70#4L56XR%TXSN,_=RN7*$\6U;,675+5ZWEX12>U/O27I5F(7*E%IL;U95 M*A!W+S)%99[GB1XX8`;2?E#G#2=A^&+AL1G:$QB/U7O[[L7"DYGEV*XH53:4 MIFN9@55*Q=-"57<9VOA]+WY2RI[E3;SGQW\>24!(BX!R[`D$1H$"H0J/DN9` M@=('+Z%@+X7W?'DYET6`]NW)9>^B'8,L,?.*PV=!.?6,S'UI6\O55%NB-(8Y M=Y.EEP&F!6%T['D/5:A1)*11792I&0W3+(\9"WC>$@AQ$7/ M*[7=^]+[@7^CNP#^4UUC=&<[`@]=$)"9![>]7%X=Y?660HRD.OQ3LAD'Y'4!H>1A)]?AO&!J/(DEQ2R!E8$[$ M:/U4F)!`2%*B,IM_FGA1A:4UQ\=_DW:Q<:R<`>#-7*]A2P3"& MA2:,-%$NW*B[4Y:UD=SPU1O_7WMGT]NX#83AGO,K?.EQU[$;H-A+L=AN;PEZ M2%OT9C`6G7"C#Y>2$B^P/[X<4I)E2S'GG5PY!\-.YI%$D1S.D"/Q&ZL4G3Y] M1_2?U)9G83M]YQ$UO#[1`8TI-*_M]8#E=H@00X21@K[#T`%C7'4W:S*E$,$V MB*?,FL50],!N4E[Y&#BQCT\#*WLD]D1&3I3[\O'!G$?I460:0;R%C&([]I6- MPCPV,T1\;((^/JP^7O,LR1A9@5AK\QH[T>OA M'Y6;C+PXZ$Q@6^^I/5K#AQ<&03=XN7UZ)G?^QGT@^C33R47(=:/7']VWIHGV MHX%XJ*RM7G7V'E3M-NMK)Y]6G]X!KZ.#V!0NMST<'36G<%L1O+K^=?4+&]:' M1G"GB'HPC_[E5-$`YH0JVMPT'RC_D1.7G:`BB'Z$4-5'NG%G;$H7KH?$HXTI M5]9NY+2FC/KA4S04=:-/GJE'#G#P1?9G!XI,D/^%$YOHD#7'[%WP(#J9U9+S M/:CXR/\&MJN`>ARA>;5]]K&2!*[B,V5SF*#"7>]HFJH4@%OE-W.5D%5T.)NG MC,TQPE*9WSK]IC:@Z$ZG%2#T3NC,ZS6M01A=UB5UF^#S#" MK"HD'$[4&29IFQRG\`UL0PZ9H?D;:C=*V*6,M%),$9UTGJ-* MYZE+N#JL,^-DKB@N%W#Z49>2=I`;$51&X[\9K%![":7+5H3%YSSGL$IR%ZN' M;VZ8D("2RJ[VS:.M6LG-K*3CI^1D>\JWE'!6TL7_$S#UUIJ]I-YJL5=0ZUS6 M5&IZ1$+`A54I`2?I")1C)_27_=*1A).,9"W8[]KAS:L,HM2O(28;7LO/@*!( M*,0E#5#TX,[20A#:=`/9[W[#64HZ0\/[J3"(L[9R1J#.[`GE_(I'.=U\WV,5 M3=Z0T!D2N=\!*ET7X\=X(\;JG;:ZC*\5G<*0NQAZC//N,NHVB*L@ZVN>Z%>Y M<3(W:'$TY/,(+'N)[\U25)CJ7?DI92JD$$?_H'G\"J1O6J%`8 M5/_/GI]3>++\`4SBD3SORW+[$UR!G&/;T[8AA3[P2G7_WMVB-R$@T%FX"5B><;9KXP?8V`**UPXK--WHM;HI,2*;).[& M`:L?,<85J*),JO-4R1AVW!X8`WARR++22%9BF?IG-VQ[,"#;T![S8^NV#QM;V?95['AKNJ.["M? M?["M`#+9Z9T!!9O*UP]/!O#5R9;RU3L[R@#%(NK+22Y"#-`'Z'J&W`X$XNIR]"8962C$ MU^_2("&`K3SSP-U%]3-'[))N&-S9ZB$'G*W.K$_29>C-J]#/<)B+E794*U09 M4[GY^N==1.>J?U)V^!?W@5DBPX8S&$K[SEQ!2/!!,21L%H]!(>L39-1AV8TT M:S$)@QC0Q4Y#PY+`&-3'D1`TV'*8VMGE[>^;NS_N[]W?[R4\SE"65S=C(&$% M4+GY^_Y]Y?2'P+%,O^^T:#\D+'S\6C6WUU4])DB1)DB1)DB1)DB1)DB1)DB1)DB1)DB1)DB1)DB1)DB1) 5DB1)DB1)DB1)DG?)_X=6J\H`0`$` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 09:56:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 060B016A4D4; Sun, 12 Dec 2004 09:56:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D582843D39; Sun, 12 Dec 2004 09:56:09 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC9u912082691; Sun, 12 Dec 2004 09:56:09 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC9u9AT082687; Sun, 12 Dec 2004 09:56:09 GMT (envelope-from krion) Date: Sun, 12 Dec 2004 09:56:09 GMT From: Kirill Ponomarew Message-Id: <200412120956.iBC9u9AT082687@freefall.freebsd.org> To: xcas@cox.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74969: [MAINTAINER] x11-wm/kahakai: Fix package list & Mark broken on Alpha 4.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 09:56:10 -0000 Synopsis: [MAINTAINER] x11-wm/kahakai: Fix package list & Mark broken on Alpha 4.x State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Dec 12 09:56:03 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74969 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 09:58:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC63016A4CE; Sun, 12 Dec 2004 09:58:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C914143D46; Sun, 12 Dec 2004 09:58:21 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBC9wLV8082755; Sun, 12 Dec 2004 09:58:21 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBC9wLWS082751; Sun, 12 Dec 2004 09:58:21 GMT (envelope-from krion) Date: Sun, 12 Dec 2004 09:58:21 GMT From: Kirill Ponomarew Message-Id: <200412120958.iBC9wLWS082751@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/74965: Patch port: multimedia/ffmpeg fix pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 09:58:22 -0000 Synopsis: Patch port: multimedia/ffmpeg fix pkg-plist Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: krion Responsible-Changed-When: Sun Dec 12 09:58:09 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=74965 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 10:00:54 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E268816A4CF for ; Sun, 12 Dec 2004 10:00:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7942443D55 for ; Sun, 12 Dec 2004 10:00:53 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCA0pqs082841 for ; Sun, 12 Dec 2004 10:00:51 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCA0pdU082838; Sun, 12 Dec 2004 10:00:51 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 10:00:51 GMT Resent-Message-Id: <200412121000.iBCA0pdU082838@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-Yves Lefort Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF2016A4CE for ; Sun, 12 Dec 2004 09:55:04 +0000 (GMT) Received: from gateway.lefort.net (212.68.242.35.brutele.be [212.68.242.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 655A443D31 for ; Sun, 12 Dec 2004 09:55:03 +0000 (GMT) (envelope-from jylefort@brutele.be) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 93BD555B7 for ; Sun, 12 Dec 2004 10:55:01 +0100 (CET) Received: by jsite.lefort.net (Postfix, from userid 1000) id 205AA22E22; Sun, 12 Dec 2004 10:55:01 +0100 (CET) Message-Id: <20041212095501.205AA22E22@jsite.lefort.net> Date: Sun, 12 Dec 2004 10:55:01 +0100 (CET) From: Jean-Yves Lefort To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74975: Update port: misc/gnome-osd to 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jean-Yves Lefort List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 10:00:54 -0000 >Number: 74975 >Category: ports >Synopsis: Update port: misc/gnome-osd to 0.6.0 >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: Sun Dec 12 10:00:50 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jean-Yves Lefort >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD jsite.lefort.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Thu Dec 2 15:08:28 CET 2004 jylefort@jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386 >Description: >How-To-Repeat: >Fix: diff -ruN /usr/ports/misc/gnome-osd/Makefile gnome-osd/Makefile --- /usr/ports/misc/gnome-osd/Makefile Mon Nov 8 00:11:32 2004 +++ gnome-osd/Makefile Sun Dec 12 10:42:15 2004 @@ -6,9 +6,9 @@ # PORTNAME= gnome-osd -PORTVERSION= 0.4.0 +PORTVERSION= 0.6.0 CATEGORIES= misc -MASTER_SITES= http://yang.inescn.pt/~gjc/ +MASTER_SITES= http://yang.inescn.pt/~gjc/gnome-osd/ MAINTAINER= jylefort@brutele.be COMMENT= An On-Screen-Display infrastructure using Pango text rendering @@ -24,7 +24,8 @@ LDFLAGS="-L${LOCALBASE}/lib" post-patch: - @${REINPLACE_CMD} -e 's|share/pixmaps|share/gnome/pixmaps|' ${WRKSRC}/gnome-osd-properties + @${REINPLACE_CMD} -e 's/^Icon=gnome-osd$$/&.png/' \ + ${WRKSRC}/gnome-osd-properties.desktop.in post-install: .if !defined(NOPORTDOCS) diff -ruN /usr/ports/misc/gnome-osd/distinfo gnome-osd/distinfo --- /usr/ports/misc/gnome-osd/distinfo Mon Nov 8 00:11:32 2004 +++ gnome-osd/distinfo Sun Dec 12 10:20:50 2004 @@ -1,2 +1,2 @@ -MD5 (gnome-osd-0.4.0.tar.bz2) = 26d4bbaf9c644c6ae722872f63c54f02 -SIZE (gnome-osd-0.4.0.tar.bz2) = 101249 +MD5 (gnome-osd-0.6.0.tar.bz2) = 01c2bf98425a871b577503fef5df8e55 +SIZE (gnome-osd-0.6.0.tar.bz2) = 106548 diff -ruN /usr/ports/misc/gnome-osd/pkg-plist gnome-osd/pkg-plist --- /usr/ports/misc/gnome-osd/pkg-plist Mon Nov 8 00:11:32 2004 +++ gnome-osd/pkg-plist Sun Dec 12 10:25:54 2004 @@ -7,6 +7,9 @@ %%PYTHON_SITELIBDIR%%/gconfsync.py %%PYTHON_SITELIBDIR%%/gconfsync.pyc %%PYTHON_SITELIBDIR%%/gconfsync.pyo +%%PYTHON_SITELIBDIR%%/gnome_osd_conf.py +%%PYTHON_SITELIBDIR%%/gnome_osd_conf.pyc +%%PYTHON_SITELIBDIR%%/gnome_osd_conf.pyo %%PYTHON_SITELIBDIR%%/gosd.py %%PYTHON_SITELIBDIR%%/gosd.pyc %%PYTHON_SITELIBDIR%%/gosd.pyo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 10:40:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD1EF16A4CE for ; Sun, 12 Dec 2004 10:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4AED43D2D for ; Sun, 12 Dec 2004 10:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCAeMLG069184 for ; Sun, 12 Dec 2004 10:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCAeMr0069183; Sun, 12 Dec 2004 10:40:22 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 10:40:22 GMT Message-Id: <200412121040.iBCAeMr0069183@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mike Brown Subject: Re: ports/74568: Update textproc/py-xml to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mike Brown List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 10:40:22 -0000 The following reply was made to PR ports/74568; it has been noted by GNATS. From: Mike Brown To: freebsd-gnats-submit@FreeBSD.org, marcus@corp.grupos.com.br Cc: Subject: Re: ports/74568: Update textproc/py-xml to 0.8.4 Date: Sun, 12 Dec 2004 03:32:36 -0700 I have submitted a new version of the port. Please see PR 74974: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/74974 The tarball submitted in that PR may also be picked up at http://skew.org/tmp/py-xml.tgz From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 10:48:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 985A116A4CF; Sun, 12 Dec 2004 10:48:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AFD543D2D; Sun, 12 Dec 2004 10:48:00 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCAm0wd069392; Sun, 12 Dec 2004 10:48:00 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCAm09Q069388; Sun, 12 Dec 2004 10:48:00 GMT (envelope-from vs) Date: Sun, 12 Dec 2004 10:48:00 GMT From: Volker Stolz Message-Id: <200412121048.iBCAm09Q069388@freefall.freebsd.org> To: gaoj@cpsc.ucalgary.ca, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71350: [patch] databases/mysqlcc broken with mysql41-* after updating to mysql-4.1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 10:48:00 -0000 Synopsis: [patch] databases/mysqlcc broken with mysql41-* after updating to mysql-4.1.4 State-Changed-From-To: feedback->open State-Changed-By: vs State-Changed-When: Sun Dec 12 10:47:32 GMT 2004 State-Changed-Why: Approved by maintainer in ports/74885 http://www.freebsd.org/cgi/query-pr.cgi?pr=71350 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 11:08:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F36A616A4CE; Sun, 12 Dec 2004 11:08:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB9C343D46; Sun, 12 Dec 2004 11:08:09 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCB89JW073828; Sun, 12 Dec 2004 11:08:09 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCB89nd073824; Sun, 12 Dec 2004 11:08:09 GMT (envelope-from vs) Date: Sun, 12 Dec 2004 11:08:09 GMT From: Volker Stolz Message-Id: <200412121108.iBCB89nd073824@freefall.freebsd.org> To: mnriem@gmail.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74694: java/netrexx port in wrong main category, main website has moved X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 11:08:10 -0000 Synopsis: java/netrexx port in wrong main category, main website has moved State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Sun Dec 12 11:07:57 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=74694 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 11:10:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40DAA16A4CE for ; Sun, 12 Dec 2004 11:10:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1765A43D2F for ; Sun, 12 Dec 2004 11:10:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCBATVA073963 for ; Sun, 12 Dec 2004 11:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCBATbX073960; Sun, 12 Dec 2004 11:10:29 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 11:10:29 GMT Message-Id: <200412121110.iBCBATbX073960@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/74694: java/netrexx port in wrong main category, main website has moved X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 11:10:30 -0000 The following reply was made to PR ports/74694; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, mnriem@gmail.com, coop9211@uidaho.edu Cc: Subject: Re: ports/74694: java/netrexx port in wrong main category, main website has moved Date: Sun, 12 Dec 2004 12:07:37 +0100 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 11:10:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04F9216A4CF; Sun, 12 Dec 2004 11:10:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2F9C43D46; Sun, 12 Dec 2004 11:10:51 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCBApR5074051; Sun, 12 Dec 2004 11:10:51 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCBApRY074047; Sun, 12 Dec 2004 11:10:51 GMT (envelope-from vs) Date: Sun, 12 Dec 2004 11:10:51 GMT From: Volker Stolz Message-Id: <200412121110.iBCBApRY074047@freefall.freebsd.org> To: rsmith@xs4all.nl, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74669: The port math/octave is marked BROKEN on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 11:10:52 -0000 Synopsis: The port math/octave is marked BROKEN on amd64 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Sun Dec 12 11:10:28 GMT 2004 State-Changed-Why: David is waiting for feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=74669 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 11:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 118E416A4CF for ; Sun, 12 Dec 2004 11:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D634A43D46 for ; Sun, 12 Dec 2004 11:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCBUTqs074494 for ; Sun, 12 Dec 2004 11:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCBUTkl074493; Sun, 12 Dec 2004 11:30:29 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 11:30:29 GMT Resent-Message-Id: <200412121130.iBCBUTkl074493@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20F6416A4CE for ; Sun, 12 Dec 2004 11:29:41 +0000 (GMT) Received: from muse.csie.ntu.edu.tw (muse.csie.ntu.edu.tw [140.112.28.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id D383E43D49 for ; Sun, 12 Dec 2004 11:29:40 +0000 (GMT) (envelope-from rafan@infor.org) Received: from localhost (localhost.csie.ntu.edu.tw [127.0.0.1]) by muse.csie.ntu.edu.tw (Postfix) with ESMTP id 9A64B53E75 for ; Sun, 12 Dec 2004 19:29:37 +0800 (CST) Received: from muse.csie.ntu.edu.tw ([127.0.0.1]) by localhost (muse.csie.ntu.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31843-86 for ; Sun, 12 Dec 2004 19:29:35 +0800 (CST) Received: from woodstock.csie.org (220-135-116-9.HINET-IP.hinet.net [220.135.116.9]) by muse.csie.ntu.edu.tw (Postfix) with ESMTP id A105E53E69 for ; Sun, 12 Dec 2004 19:29:35 +0800 (CST) Received: (from rafan@localhost) by woodstock.csie.org (8.13.1/8.13.1/Submit) id iBCBTXrV066833; Sun, 12 Dec 2004 19:29:33 +0800 (CST) (envelope-from rafan) Message-Id: <200412121129.iBCBTXrV066833@woodstock.csie.org> Date: Sun, 12 Dec 2004 19:29:33 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74979: [MAINTAINER] devel/PAR: update to 0.86 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 11:30:30 -0000 >Number: 74979 >Category: ports >Synopsis: [MAINTAINER] devel/PAR: update to 0.86 >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 Dec 12 11:30:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 6.0-CURRENT i386 >Organization: NTU CSIE >Environment: System: FreeBSD woodstock.csie.org 6.0-CURRENT FreeBSD 6.0-CURRENT #39: Thu Dec 9 19:22:02 CST >Description: - Update to 0.86 - narrow conflict with nss-3.x - detail changes can be found here: http://search.cpan.org/src/AUTRIJUS/PAR-0.86/ChangeLog Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- p5-PAR-0.86.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-PAR/Makefile /home/rafan/tmp/ports/p5-PAR/Makefile --- /usr/ports/devel/p5-PAR/Makefile Wed Aug 25 01:53:57 2004 +++ /home/rafan/tmp/ports/p5-PAR/Makefile Sun Dec 12 19:28:13 2004 @@ -6,8 +6,8 @@ # PORTNAME= PAR -PORTVERSION= 0.85 -PORTREVISION= 1 +PORTVERSION= 0.86 +PORTREVISION= 0 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/A/AU/AUTRIJUS @@ -33,7 +33,7 @@ PAR::Filter::Obfuscate.3 PAR::Filter::PatchContent.3 \ PAR::Filter::PodStrip.3 PAR::Heavy.3 PAR::Tutorial.3 -CONFLICTS= nss-* +CONFLICTS= nss-3.* .include diff -ruN --exclude=CVS /usr/ports/devel/p5-PAR/distinfo /home/rafan/tmp/ports/p5-PAR/distinfo --- /usr/ports/devel/p5-PAR/distinfo Wed Aug 11 16:46:34 2004 +++ /home/rafan/tmp/ports/p5-PAR/distinfo Sun Dec 12 19:26:15 2004 @@ -1,2 +1,2 @@ -MD5 (PAR-0.85.tar.gz) = c3c1e272561156d713066eb8e01ac88e -SIZE (PAR-0.85.tar.gz) = 198409 +MD5 (PAR-0.86.tar.gz) = bda290134fa53882cf5336706aed80db +SIZE (PAR-0.86.tar.gz) = 180691 --- p5-PAR-0.86.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 11:40:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A293516A4CE for ; Sun, 12 Dec 2004 11:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BA5143D48 for ; Sun, 12 Dec 2004 11:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCBeQfo075782 for ; Sun, 12 Dec 2004 11:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCBeQjU075780; Sun, 12 Dec 2004 11:40:26 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 11:40:26 GMT Resent-Message-Id: <200412121140.iBCBeQjU075780@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FFDA16A4CE for ; Sun, 12 Dec 2004 11:36:28 +0000 (GMT) Received: from muse.csie.ntu.edu.tw (muse.csie.ntu.edu.tw [140.112.28.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1048243D48 for ; Sun, 12 Dec 2004 11:36:28 +0000 (GMT) (envelope-from rafan@infor.org) Received: from localhost (localhost.csie.ntu.edu.tw [127.0.0.1]) by muse.csie.ntu.edu.tw (Postfix) with ESMTP id 6F55853E82 for ; Sun, 12 Dec 2004 19:36:27 +0800 (CST) Received: from muse.csie.ntu.edu.tw ([127.0.0.1]) by localhost (muse.csie.ntu.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 58343-73 for ; Sun, 12 Dec 2004 19:36:25 +0800 (CST) Received: from woodstock.csie.org (220-135-116-9.HINET-IP.hinet.net [220.135.116.9]) by muse.csie.ntu.edu.tw (Postfix) with ESMTP id 8498E53E81 for ; Sun, 12 Dec 2004 19:36:25 +0800 (CST) Received: (from rafan@localhost) by woodstock.csie.org (8.13.1/8.13.1/Submit) id iBCBaOOh079406; Sun, 12 Dec 2004 19:36:24 +0800 (CST) (envelope-from rafan) Message-Id: <200412121136.iBCBaOOh079406@woodstock.csie.org> Date: Sun, 12 Dec 2004 19:36:24 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74980: [MAINTAINER] devel/SVN-Web: update to 0.38 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 11:40:26 -0000 >Number: 74980 >Category: ports >Synopsis: [MAINTAINER] devel/SVN-Web: update to 0.38 >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 Dec 12 11:40:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 6.0-CURRENT i386 >Organization: NTU CSIE >Environment: System: FreeBSD woodstock.csie.org 6.0-CURRENT FreeBSD 6.0-CURRENT #39: Thu Dec 9 19:22:02 CST >Description: - Update to 0.38 [Changes for 0.38 - Nov 21, 2004] * Fix pool mess causing apache to segfault under mod_perl. * Add limit option to log. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- p5-SVN-Web-0.38.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-SVN-Web/Makefile /home/rafan/tmp/ports/p5-SVN-Web/Makefile --- /usr/ports/devel/p5-SVN-Web/Makefile Thu Aug 12 00:47:26 2004 +++ /home/rafan/tmp/ports/p5-SVN-Web/Makefile Sun Dec 12 19:29:55 2004 @@ -6,7 +6,7 @@ # PORTNAME= SVN-Web -PORTVERSION= 0.37 +PORTVERSION= 0.38 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/C/CL/CLKAO diff -ruN --exclude=CVS /usr/ports/devel/p5-SVN-Web/distinfo /home/rafan/tmp/ports/p5-SVN-Web/distinfo --- /usr/ports/devel/p5-SVN-Web/distinfo Thu Aug 12 00:47:26 2004 +++ /home/rafan/tmp/ports/p5-SVN-Web/distinfo Sun Dec 12 19:30:20 2004 @@ -1,2 +1,2 @@ -MD5 (SVN-Web-0.37.tar.gz) = a21a5c4828ad758ea5485d0d78ea418f -SIZE (SVN-Web-0.37.tar.gz) = 27102 +MD5 (SVN-Web-0.38.tar.gz) = 674e821a9384a1e3e0ad0f8903a796f5 +SIZE (SVN-Web-0.38.tar.gz) = 28060 --- p5-SVN-Web-0.38.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 12:20:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 805DE16A4CE for ; Sun, 12 Dec 2004 12:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4856C43D58 for ; Sun, 12 Dec 2004 12:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCKOwA080655 for ; Sun, 12 Dec 2004 12:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCKNpq080654; Sun, 12 Dec 2004 12:20:23 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 12:20:23 GMT Resent-Message-Id: <200412121220.iBCCKNpq080654@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37F4D16A4CE for ; Sun, 12 Dec 2004 12:13:08 +0000 (GMT) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD82D43D5A for ; Sun, 12 Dec 2004 12:13:07 +0000 (GMT) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost.csie.ntu.edu.tw [127.0.0.1]) by svm.csie.ntu.edu.tw (8.13.1/8.13.1) with ESMTP id iBCCD6cJ045826; Sun, 12 Dec 2004 20:13:06 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.13.1/8.13.1/Submit) id iBCCD3hu045825; Sun, 12 Dec 2004 20:13:03 +0800 (CST) (envelope-from rafan) Message-Id: <200412121213.iBCCD3hu045825@svm.csie.ntu.edu.tw> Date: Sun, 12 Dec 2004 20:13:03 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kcwu@csie.org Subject: ports/74981: [PATCH] x11/xorg-clients: luit has synchronization problem with tty setting X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Rong-En Fan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 12:20:24 -0000 >Number: 74981 >Category: ports >Synopsis: [PATCH] x11/xorg-clients: luit has synchronization problem with tty setting >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 Dec 12 12:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 5.3-BETA5 i386 >Organization: NTU CSIE >Environment: System: FreeBSD svm.csie.ntu.edu.tw 5.3-BETA5 FreeBSD 5.3-BETA5 #13: Mon Sep 20 02:31:32 CST 2004 root@svm.csie.ntu.edu.tw:/usr/obj/usr/src/sys/SVM i386 >Description: luit has synchronization problem with tty settings which results in segmentation fault. please see following 2 urls: https://bugs.freedesktop.org/show_bug.cgi?id=1400 http://bugs.xfree86.org/show_bug.cgi?id=867 >How-To-Repeat: >Fix: original patch-luit.c was introduced here: http://www.freebsd.org/cgi/cvsweb.cgi/ports/x11/XFree86-4-libraries/files/patch-luit#rev1.3 It's an workaround, the real problem is that parent and child didn't sync well. This patch is from Kuang-che Wu and has been submitted to XFree86 / X.org. XFree86 has committed this however X.org guys didn't respond to this bug report. Since they haven't fix this yet, this is not in X.org 6.8.1. I think put this in ports is ok. diff -ruN xorg-clients/files/patch-luit.c /usr/ports/x11/xorg-clients/files/patch-luit.c --- xorg-clients/files/patch-luit.c Sun Dec 12 19:23:55 2004 +++ /usr/ports/x11/xorg-clients/files/patch-luit.c Thu Sep 2 11:15:01 2004 @@ -1,80 +1,14 @@ ---- programs/luit/luit.c Fri Mar 5 01:48:51 2004 -+++ programs/luit/luit.c Sun Jul 18 09:01:22 2004 -@@ -45,6 +45,8 @@ - #include "charset.h" - #include "iso2022.h" +--- programs/luit/luit.c.orig Thu Apr 8 05:14:16 2004 ++++ programs/luit/luit.c Thu Apr 8 05:20:18 2004 +@@ -545,9 +545,11 @@ + #endif + installHandler(SIGCHLD, sigchldHandler); + ++/* Disabled, appears to break luit. + rc = copyTermios(0, pty); + if(rc < 0) + FatalError("Couldn't copy terminal settings\n"); ++*/ -+static int p2c_waitpipe[2]; -+static int c2p_waitpipe[2]; - static Iso2022Ptr inputState = NULL, outputState = NULL; - - static char *child_argv0 = NULL; -@@ -462,6 +464,8 @@ - exit(1); - } - -+ pipe(p2c_waitpipe); -+ pipe(c2p_waitpipe); - pid = fork(); - if(pid < 0) { - perror("Couldn't fork"); -@@ -470,8 +474,12 @@ - - if(pid == 0) { - close(pty); -+ close(p2c_waitpipe[1]); -+ close(c2p_waitpipe[0]); - child(line, path, child_argv); - } else { -+ close(p2c_waitpipe[0]); -+ close(c2p_waitpipe[1]); - free(child_argv); - free(path); - free(line); -@@ -486,6 +494,7 @@ - { - int tty; - int pgrp; -+ char tmp[10]; - - close(0); - close(1); -@@ -501,6 +510,7 @@ - kill(getppid(), SIGABRT); - exit(1); - } -+ write(c2p_waitpipe[1],"1",1); - - if(tty != 0) - dup2(tty, 0); -@@ -512,6 +522,9 @@ - if(tty > 2) - close(tty); - -+ read(p2c_waitpipe[0],tmp,1); -+ close(c2p_waitpipe[1]); -+ close(p2c_waitpipe[0]); - execvp(path, argv); - perror("Couldn't exec"); - exit(1); -@@ -535,7 +548,9 @@ - int i; - int val; - int rc; -+ char tmp[10]; - -+ read(c2p_waitpipe[0],tmp,1); - if(verbose) { - reportIso2022(outputState); - } -@@ -564,6 +579,9 @@ - - setWindowSize(0, pty); - -+ write(p2c_waitpipe[1],"1",1); -+ close(c2p_waitpipe[0]); -+ close(p2c_waitpipe[1]); - for(;;) { - rc = waitForInput(0, pty); - - + rc = setRawTermios(); + if(rc < 0) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 12:40:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0822516A4CE for ; Sun, 12 Dec 2004 12:40:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C94E543D4C for ; Sun, 12 Dec 2004 12:40:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCeTMs082333 for ; Sun, 12 Dec 2004 12:40:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCeT5K082332; Sun, 12 Dec 2004 12:40:29 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 12:40:29 GMT Message-Id: <200412121240.iBCCeT5K082332@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Roland Smith Subject: Re: amd64/74669: The port math/octave is marked BROKEN on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Roland Smith List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 12:40:30 -0000 The following reply was made to PR ports/74669; it has been noted by GNATS. From: Roland Smith To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: amd64/74669: The port math/octave is marked BROKEN on amd64 Date: Sun, 12 Dec 2004 13:31:29 +0100 --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I sent the following to David, but I forgot to Cc gnats. :-( ----- Forwarded message from Roland Smith ----- Date: Sat, 4 Dec 2004 23:27:51 +0100 From: Roland Smith Organization: Me, organized? To: David O'Brien Subject: Re: amd64/74669: The port math/octave is marked BROKEN on amd64 On Sat, Dec 04, 2004 at 01:59:26PM -0800, David O'Brien wrote: > On Sat, Dec 04, 2004 at 02:54:23PM +0100, Roland Smith wrote: > > post-install: > > +.if ${ARCH} !=3D "amd64" > > ${RM} ${PREFIX}/bin/octave > > @${CP} ${FILESDIR}/octave ${WRKDIR} > > @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g ; \ > > s,%%OCTAVE_VERSION%%,${OCTAVE_VERSION},g' \ > > ${WRKDIR}/octave > > ${INSTALL_SCRIPT} ${WRKDIR}/octave ${PREFIX}/bin > > +.endif >=20 > Why does building statically vs. dynamically require this change? It is not so much a question of it being required, but this replacement of the octave link by a script that defines the shared library location isn't necessary when there are no shared libraries to load. :-) Meanwhile I've traced the compile problem to the libglob that is included with octave. See my second mail in the PR audit trail for a different and IMHO better fix. Roland --=20 R.F. Smith /"\ ASCII Ribbon Campaign r s m i t h @ x s 4 a l l . n l \ / No HTML/RTF in email http://www.xs4all.nl/~rsmith/ X No Word docs in email / \ Respect for open standards ----- End forwarded message ----- --=20 R.F. Smith /"\ ASCII Ribbon Campaign r s m i t h @ x s 4 a l l . n l \ / No HTML/RTF in email http://www.xs4all.nl/~rsmith/ X No Word docs in email / \ Respect for open standards --pWyiEgJYm5f9v55/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBvDohEnfvsMMhpyURAicJAJwMsgjr4EVNdMOoi6LlImcUID6axgCfXCY+ pFakCN15MXsbMFHC81qylRY= =zxiN -----END PGP SIGNATURE----- --pWyiEgJYm5f9v55/-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 12:40:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFC8516A4CE for ; Sun, 12 Dec 2004 12:40:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73C5F43D54 for ; Sun, 12 Dec 2004 12:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCeUPx082348 for ; Sun, 12 Dec 2004 12:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCeUIV082347; Sun, 12 Dec 2004 12:40:30 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 12:40:30 GMT Resent-Message-Id: <200412121240.iBCCeUIV082347@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, Sergey Skvortsov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6727816A4CE for ; Sun, 12 Dec 2004 12:31:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2934343D1F for ; Sun, 12 Dec 2004 12:31:16 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from freefall.freebsd.org (skv@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCVGOv082165 for ; Sun, 12 Dec 2004 12:31:16 GMT (envelope-from skv@freefall.freebsd.org) Received: (from skv@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCVG6q082164; Sun, 12 Dec 2004 12:31:16 GMT (envelope-from skv) Message-Id: <200412121231.iBCCVG6q082164@freefall.freebsd.org> Date: Sun, 12 Dec 2004 12:31:16 GMT From: Sergey Skvortsov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74982: Update port: mail/gmime2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Skvortsov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 12:40:30 -0000 >Number: 74982 >Category: ports >Synopsis: Update port: mail/gmime2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 12 12:40:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: >Description: Update port: mail/gmime2 Install documentation to DOCSDIR. (Also NOPORTDOCS check should be added). >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/gmime2/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 10 Nov 2004 06:08:36 -0000 1.26 +++ Makefile 10 Dec 2004 11:03:37 -0000 @@ -7,7 +7,7 @@ PORTNAME= gmime PORTVERSION= 2.1.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= http://spruce.sourceforge.net/gmime/sources/v2.1/ @@ -20,7 +20,8 @@ USE_GMAKE= yes USE_GNOME= gnomehack gnometarget glib20 USE_LIBTOOL_VER=15 -CONFIGURE_ARGS+= --with-libiconv=${LOCALBASE} +CONFIGURE_ARGS+= --with-libiconv=${LOCALBASE} \ + --with-html-dir=${PREFIX}/share/doc CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib" INSTALLS_SHLIB= yes Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/mail/gmime2/pkg-plist,v retrieving revision 1.13 diff -u -r1.13 pkg-plist --- pkg-plist 10 Nov 2004 06:08:36 -0000 1.13 +++ pkg-plist 12 Dec 2004 12:27:54 -0000 @@ -55,86 +55,84 @@ lib/libgmime-2.0.so lib/libgmime-2.0.so.3 libdata/pkgconfig/gmime-2.0.pc -share/gtk-doc/html/gmime/CipherContexts.html -share/gtk-doc/html/gmime/DataWrappers.html -share/gtk-doc/html/gmime/Filters.html -share/gtk-doc/html/gmime/Headers.html -share/gtk-doc/html/gmime/InternetAddresses.html -share/gtk-doc/html/gmime/MimeParts.html -share/gtk-doc/html/gmime/Parsers.html -share/gtk-doc/html/gmime/Sessions.html -share/gtk-doc/html/gmime/Streams.html -share/gtk-doc/html/gmime/ch01.html -share/gtk-doc/html/gmime/classes.html -share/gtk-doc/html/gmime/core.html -share/gtk-doc/html/gmime/fundamentals.html -share/gtk-doc/html/gmime/gmime-building.html -share/gtk-doc/html/gmime/gmime-changes-2-0.html -share/gtk-doc/html/gmime/gmime-changes-2-2.html -share/gtk-doc/html/gmime/gmime-compiling.html -share/gtk-doc/html/gmime/gmime-data-wrappers.html -share/gtk-doc/html/gmime/gmime-filters.html -share/gtk-doc/html/gmime/gmime-gmime-charset.html -share/gtk-doc/html/gmime/gmime-gmime-cipher-context.html -share/gtk-doc/html/gmime/gmime-gmime-content-type.html -share/gtk-doc/html/gmime/gmime-gmime-data-wrapper.html -share/gtk-doc/html/gmime/gmime-gmime-disposition.html -share/gtk-doc/html/gmime/gmime-gmime-filter-basic.html -share/gtk-doc/html/gmime/gmime-gmime-filter-best.html -share/gtk-doc/html/gmime/gmime-gmime-filter-charset.html -share/gtk-doc/html/gmime/gmime-gmime-filter-crlf.html -share/gtk-doc/html/gmime/gmime-gmime-filter-enriched.html -share/gtk-doc/html/gmime/gmime-gmime-filter-from.html -share/gtk-doc/html/gmime/gmime-gmime-filter-gzip.html -share/gtk-doc/html/gmime/gmime-gmime-filter-html.html -share/gtk-doc/html/gmime/gmime-gmime-filter-md5.html -share/gtk-doc/html/gmime/gmime-gmime-filter-strip.html -share/gtk-doc/html/gmime/gmime-gmime-filter-windows.html -share/gtk-doc/html/gmime/gmime-gmime-filter-yenc.html -share/gtk-doc/html/gmime/gmime-gmime-filter.html -share/gtk-doc/html/gmime/gmime-gmime-gpg-context.html -share/gtk-doc/html/gmime/gmime-gmime-header.html -share/gtk-doc/html/gmime/gmime-gmime-host-utils.html -share/gtk-doc/html/gmime/gmime-gmime-iconv-utils.html -share/gtk-doc/html/gmime/gmime-gmime-iconv.html -share/gtk-doc/html/gmime/gmime-gmime-message-part.html -share/gtk-doc/html/gmime/gmime-gmime-message-partial.html -share/gtk-doc/html/gmime/gmime-gmime-message.html -share/gtk-doc/html/gmime/gmime-gmime-multipart-encrypted.html -share/gtk-doc/html/gmime/gmime-gmime-multipart-signed.html -share/gtk-doc/html/gmime/gmime-gmime-multipart.html -share/gtk-doc/html/gmime/gmime-gmime-object.html -share/gtk-doc/html/gmime/gmime-gmime-param.html -share/gtk-doc/html/gmime/gmime-gmime-parser.html -share/gtk-doc/html/gmime/gmime-gmime-part.html -share/gtk-doc/html/gmime/gmime-gmime-session-simple.html -share/gtk-doc/html/gmime/gmime-gmime-session.html -share/gtk-doc/html/gmime/gmime-gmime-stream-buffer.html -share/gtk-doc/html/gmime/gmime-gmime-stream-cat.html -share/gtk-doc/html/gmime/gmime-gmime-stream-file.html -share/gtk-doc/html/gmime/gmime-gmime-stream-filter.html -share/gtk-doc/html/gmime/gmime-gmime-stream-fs.html -share/gtk-doc/html/gmime/gmime-gmime-stream-mem.html -share/gtk-doc/html/gmime/gmime-gmime-stream-mmap.html -share/gtk-doc/html/gmime/gmime-gmime-stream-null.html -share/gtk-doc/html/gmime/gmime-gmime-stream.html -share/gtk-doc/html/gmime/gmime-gmime-utils.html -share/gtk-doc/html/gmime/gmime-gmime.html -share/gtk-doc/html/gmime/gmime-internet-address.html -share/gtk-doc/html/gmime/gmime-question-index.html -share/gtk-doc/html/gmime/gmime-resources.html -share/gtk-doc/html/gmime/gmime-streams.html -share/gtk-doc/html/gmime/gmime.devhelp -share/gtk-doc/html/gmime/gmime.html -share/gtk-doc/html/gmime/home.png -share/gtk-doc/html/gmime/index.html -share/gtk-doc/html/gmime/index.sgml -share/gtk-doc/html/gmime/left.png -share/gtk-doc/html/gmime/right.png -share/gtk-doc/html/gmime/style.css -share/gtk-doc/html/gmime/up.png -@dirrm share/gtk-doc/html/gmime -@unexec rmdir %D/share/gtk-doc/html 2>/dev/null || true -@unexec rmdir %D/share/gtk-doc 2>/dev/null || true +%%DOCSDIR%%/CipherContexts.html +%%DOCSDIR%%/DataWrappers.html +%%DOCSDIR%%/Filters.html +%%DOCSDIR%%/Headers.html +%%DOCSDIR%%/InternetAddresses.html +%%DOCSDIR%%/MimeParts.html +%%DOCSDIR%%/Parsers.html +%%DOCSDIR%%/Sessions.html +%%DOCSDIR%%/Streams.html +%%DOCSDIR%%/ch01.html +%%DOCSDIR%%/classes.html +%%DOCSDIR%%/core.html +%%DOCSDIR%%/fundamentals.html +%%DOCSDIR%%/gmime-building.html +%%DOCSDIR%%/gmime-changes-2-0.html +%%DOCSDIR%%/gmime-changes-2-2.html +%%DOCSDIR%%/gmime-compiling.html +%%DOCSDIR%%/gmime-data-wrappers.html +%%DOCSDIR%%/gmime-filters.html +%%DOCSDIR%%/gmime-gmime-charset.html +%%DOCSDIR%%/gmime-gmime-cipher-context.html +%%DOCSDIR%%/gmime-gmime-content-type.html +%%DOCSDIR%%/gmime-gmime-data-wrapper.html +%%DOCSDIR%%/gmime-gmime-disposition.html +%%DOCSDIR%%/gmime-gmime-filter-basic.html +%%DOCSDIR%%/gmime-gmime-filter-best.html +%%DOCSDIR%%/gmime-gmime-filter-charset.html +%%DOCSDIR%%/gmime-gmime-filter-crlf.html +%%DOCSDIR%%/gmime-gmime-filter-enriched.html +%%DOCSDIR%%/gmime-gmime-filter-from.html +%%DOCSDIR%%/gmime-gmime-filter-gzip.html +%%DOCSDIR%%/gmime-gmime-filter-html.html +%%DOCSDIR%%/gmime-gmime-filter-md5.html +%%DOCSDIR%%/gmime-gmime-filter-strip.html +%%DOCSDIR%%/gmime-gmime-filter-windows.html +%%DOCSDIR%%/gmime-gmime-filter-yenc.html +%%DOCSDIR%%/gmime-gmime-filter.html +%%DOCSDIR%%/gmime-gmime-gpg-context.html +%%DOCSDIR%%/gmime-gmime-header.html +%%DOCSDIR%%/gmime-gmime-host-utils.html +%%DOCSDIR%%/gmime-gmime-iconv-utils.html +%%DOCSDIR%%/gmime-gmime-iconv.html +%%DOCSDIR%%/gmime-gmime-message-part.html +%%DOCSDIR%%/gmime-gmime-message-partial.html +%%DOCSDIR%%/gmime-gmime-message.html +%%DOCSDIR%%/gmime-gmime-multipart-encrypted.html +%%DOCSDIR%%/gmime-gmime-multipart-signed.html +%%DOCSDIR%%/gmime-gmime-multipart.html +%%DOCSDIR%%/gmime-gmime-object.html +%%DOCSDIR%%/gmime-gmime-param.html +%%DOCSDIR%%/gmime-gmime-parser.html +%%DOCSDIR%%/gmime-gmime-part.html +%%DOCSDIR%%/gmime-gmime-session-simple.html +%%DOCSDIR%%/gmime-gmime-session.html +%%DOCSDIR%%/gmime-gmime-stream-buffer.html +%%DOCSDIR%%/gmime-gmime-stream-cat.html +%%DOCSDIR%%/gmime-gmime-stream-file.html +%%DOCSDIR%%/gmime-gmime-stream-filter.html +%%DOCSDIR%%/gmime-gmime-stream-fs.html +%%DOCSDIR%%/gmime-gmime-stream-mem.html +%%DOCSDIR%%/gmime-gmime-stream-mmap.html +%%DOCSDIR%%/gmime-gmime-stream-null.html +%%DOCSDIR%%/gmime-gmime-stream.html +%%DOCSDIR%%/gmime-gmime-utils.html +%%DOCSDIR%%/gmime-gmime.html +%%DOCSDIR%%/gmime-internet-address.html +%%DOCSDIR%%/gmime-question-index.html +%%DOCSDIR%%/gmime-resources.html +%%DOCSDIR%%/gmime-streams.html +%%DOCSDIR%%/gmime.devhelp +%%DOCSDIR%%/gmime.html +%%DOCSDIR%%/home.png +%%DOCSDIR%%/index.html +%%DOCSDIR%%/index.sgml +%%DOCSDIR%%/left.png +%%DOCSDIR%%/right.png +%%DOCSDIR%%/style.css +%%DOCSDIR%%/up.png +@dirrm %%DOCSDIR%% @dirrm include/gmime-2.0/gmime @dirrm include/gmime-2.0 Index: files/patch-reference-Makefile.in =================================================================== RCS file: files/patch-reference-Makefile.in diff -N files/patch-reference-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-reference-Makefile.in 10 Dec 2004 11:07:12 -0000 @@ -0,0 +1,11 @@ +--- docs/reference/Makefile.in.orig Fri Dec 10 14:06:17 2004 ++++ docs/reference/Makefile.in Fri Dec 10 14:06:33 2004 +@@ -87,7 +87,7 @@ + GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ + GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + +-HTML_DIR = $(datadir)/gtk-doc/html ++HTML_DIR = @HTML_DIR@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 12:40:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1145816A4CE for ; Sun, 12 Dec 2004 12:40:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C772443D2D for ; Sun, 12 Dec 2004 12:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCeUda082373 for ; Sun, 12 Dec 2004 12:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCeUN3082372; Sun, 12 Dec 2004 12:40:30 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 12:40:30 GMT Resent-Message-Id: <200412121240.iBCCeUN3082372@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, Don Croyle Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A425F16A4CE for ; Sun, 12 Dec 2004 12:38:29 +0000 (GMT) Received: from vertigo.gelemna.org (vertigo.gelemna.org [69.55.236.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 765B743D1D for ; Sun, 12 Dec 2004 12:38:29 +0000 (GMT) (envelope-from croyle@gelemna.org) Received: from cali.gelemna.org (vertigo [69.55.236.156]) by vertigo.gelemna.org (Postfix) with ESMTP id 248FE20B82 for ; Sun, 12 Dec 2004 04:36:21 -0800 (PST) Received: by cali.gelemna.org (Postfix, from userid 1001) id B6D55AB44; Sun, 12 Dec 2004 07:29:57 -0500 (EST) Message-Id: <20041212122957.B6D55AB44@cali.gelemna.org> Date: Sun, 12 Dec 2004 07:29:57 -0500 (EST) From: Don Croyle To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74983: plist fix for news/p5_gateway X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Don Croyle List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 12:40:31 -0000 >Number: 74983 >Category: ports >Synopsis: plist fix for news/p5_gateway >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 Dec 12 12:40:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Don Croyle >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD cali.gelemna.org 5.3-STABLE FreeBSD 5.3-STABLE #11: Sun Dec 5 10:20:09 EST 2004 root@cali.gelemna.org:/usr/obj/usr/src/sys/CALI i386 >Description: Remove stray directories left by news/p5-Gateway. Threatened by: kris@FreeBSD.org >How-To-Repeat: >Fix: Apply this patch: diff -ruN p5-Gateway.orig/Makefile p5-Gateway/Makefile --- p5-Gateway.orig/Makefile Fri Oct 24 15:18:56 2003 +++ p5-Gateway/Makefile Sun Dec 12 07:12:31 2004 @@ -7,6 +7,7 @@ PORTNAME= Gateway PORTVERSION= 0.42 +PORTREVISION= 1 CATEGORIES= news perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= News diff -ruN p5-Gateway.orig/pkg-plist p5-Gateway/pkg-plist --- p5-Gateway.orig/pkg-plist Fri Oct 24 15:18:56 2003 +++ p5-Gateway/pkg-plist Sun Dec 12 07:21:38 2004 @@ -1,5 +1,6 @@ %%SITE_PERL%%/News/Gateway.pm %%SITE_PERL%%/News/Gateway.pod +@unexec rmdir %D/%%SITE_PERL%%/News 2>/dev/null || true %%SITE_PERL%%/auto/News/Gateway/anykeyword.al %%SITE_PERL%%/auto/News/Gateway/bodyheaders.al %%SITE_PERL%%/auto/News/Gateway/cleanbody.al @@ -19,6 +20,8 @@ %%SITE_PERL%%/auto/News/Gateway/post.al %%SITE_PERL%%/auto/News/Gateway/previoushop.al %%SITE_PERL%%/auto/News/Gateway/whitelist.al +@unexec rmdir %D/%%SITE_PERL%%/auto/News/Gateway 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/auto/News 2>/dev/null || true %%SITE_PERL%%/%%PERL_ARCH%%/auto/News/Gateway/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/News/Gateway share/examples/Gateway/listgate >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 12:46:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95EB216A4CE; Sun, 12 Dec 2004 12:46:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FEFC43D31; Sun, 12 Dec 2004 12:46:00 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from freefall.freebsd.org (lesi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCk0Ir082514; Sun, 12 Dec 2004 12:46:00 GMT (envelope-from lesi@freefall.freebsd.org) Received: (from lesi@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCk0FA082510; Sun, 12 Dec 2004 12:46:00 GMT (envelope-from lesi) Date: Sun, 12 Dec 2004 12:46:00 GMT From: Dejan Lesjak Message-Id: <200412121246.iBCCk0FA082510@freefall.freebsd.org> To: lesi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org Subject: Re: ports/74981: [PATCH] x11/xorg-clients: luit has synchronization problem with tty setting X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 12:46:00 -0000 Synopsis: [PATCH] x11/xorg-clients: luit has synchronization problem with tty setting Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: lesi Responsible-Changed-When: Sun Dec 12 12:45:01 GMT 2004 Responsible-Changed-Why: Throw to x11@. http://www.freebsd.org/cgi/query-pr.cgi?pr=74981 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 12:54:05 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 339B516A4CE; Sun, 12 Dec 2004 12:54:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F55243D1D; Sun, 12 Dec 2004 12:54:05 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from freefall.freebsd.org (skv@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCCs4kj082859; Sun, 12 Dec 2004 12:54:04 GMT (envelope-from skv@freefall.freebsd.org) Received: (from skv@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCCs43I082855; Sun, 12 Dec 2004 12:54:04 GMT (envelope-from skv) Date: Sun, 12 Dec 2004 12:54:04 GMT From: Sergey Skvortsov Message-Id: <200412121254.iBCCs43I082855@freefall.freebsd.org> To: skv@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/74982: Update port: mail/gmime2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 12:54:05 -0000 Synopsis: Update port: mail/gmime2 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: skv Responsible-Changed-When: Sun Dec 12 12:53:04 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=74982 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 13:00:57 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B767416A4CE for ; Sun, 12 Dec 2004 13:00:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E79B43D2D for ; Sun, 12 Dec 2004 13:00:57 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCD0vi1083049 for ; Sun, 12 Dec 2004 13:00:57 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCD0vj0083044; Sun, 12 Dec 2004 13:00:57 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 13:00:57 GMT Message-Id: <200412121300.iBCD0vj0083044@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 13:00:57 -0000 The following reply was made to PR ports/74933; it has been noted by GNATS. From: Sergey Matveychuk To: slaven@rezic.de Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) Date: Sun, 12 Dec 2004 16:00:46 +0300 Slaven Rezic wrote: > X.if defined(WITH_FANCY) > X.if ${WITH_FANCY} == yes Please, don't do so. Historicaly the ports system checks if variable is defined. So .if defined(..) is enought. For a negate variable use WITHOUT_FOO form. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 13:20:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97A3D16A4CE; Sun, 12 Dec 2004 13:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F5E43D46; Sun, 12 Dec 2004 13:20:20 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCDKKZb087408; Sun, 12 Dec 2004 13:20:20 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCDKKTV087404; Sun, 12 Dec 2004 13:20:20 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 13:20:20 GMT From: Sergey Matveychuk Message-Id: <200412121320.iBCDKKTV087404@freefall.freebsd.org> To: slaven@rezic.de, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 13:20:20 -0000 Synopsis: new port: misc/lesspipe (a preprocessor for less) State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 13:20:01 GMT 2004 State-Changed-Why: Committed with modifications, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74933 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 13:20:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CE1B16A4CE for ; Sun, 12 Dec 2004 13:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC01F43D1D for ; Sun, 12 Dec 2004 13:20:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCDKTk2087473 for ; Sun, 12 Dec 2004 13:20:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCDKTXc087472; Sun, 12 Dec 2004 13:20:29 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 13:20:29 GMT Message-Id: <200412121320.iBCDKTXc087472@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 13:20:30 -0000 The following reply was made to PR ports/74933; it has been noted by GNATS. From: Sergey Matveychuk To: slaven@rezic.de Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/74933: new port: misc/lesspipe (a preprocessor for less) Date: Sun, 12 Dec 2004 16:17:19 +0300 Slaven Rezic wrote: > X LESSOPEN="|lesspipe.sh %s"; export LESSOPEN (sh, bash, ksh, zsh) > X > X setenv LESSOPEN "|lesspipe.sh %s" (csh, tcsh) It does not work for me. Only if I set a full path to lesspipe.sh. Even when I got /usr/local/bin in my PATH. I've fixed it and will commit. Please take a look and feel free for asking if something is not understandable. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 13:50:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1620916A4CE for ; Sun, 12 Dec 2004 13:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD68343D4C for ; Sun, 12 Dec 2004 13:50:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCDoGjo089047 for ; Sun, 12 Dec 2004 13:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCDoGri089044; Sun, 12 Dec 2004 13:50:16 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 13:50:16 GMT Resent-Message-Id: <200412121350.iBCDoGri089044@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 Ranner Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45C2616A4CE for ; Sun, 12 Dec 2004 13:41:56 +0000 (GMT) Received: from files.jawa.at (jawa.at [213.229.17.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D4DE43D2D for ; Sun, 12 Dec 2004 13:41:55 +0000 (GMT) (envelope-from root@builder.jawa.at) Received: from localhost (localhost [127.0.0.1]) by files.jawa.at (Postfix) with ESMTP id 5AAACFDC6; Sun, 12 Dec 2004 14:41:53 +0100 (CET) Received: from files.jawa.at ([127.0.0.1]) by localhost (files.jawa.at [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17071-02; Sun, 12 Dec 2004 14:41:49 +0100 (CET) Received: by files.jawa.at (Postfix, from userid 60) id D5FD5FDC4; Sun, 12 Dec 2004 14:41:49 +0100 (CET) Received: from builder.jawa.at (builder.jawa.at [192.168.200.11]) by files.jawa.at (Postfix) with ESMTP id C33EBFDA5; Sun, 12 Dec 2004 14:41:41 +0100 (CET) Received: from builder.jawa.at (localhost.jawa.at [127.0.0.1]) by builder.jawa.at (8.12.11/8.12.11) with ESMTP id iBCDffHc051528; Sun, 12 Dec 2004 14:41:41 +0100 (CET) (envelope-from root@builder.jawa.at) Received: (from root@localhost) by builder.jawa.at (8.12.11/8.12.11/Submit) id iBCDfdb1051527; Sun, 12 Dec 2004 14:41:39 +0100 (CET) (envelope-from root) Message-Id: <200412121341.iBCDfdb1051527@builder.jawa.at> Date: Sun, 12 Dec 2004 14:41:39 +0100 (CET) From: Michael Ranner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: jim@corebsd.or.id Subject: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 13:50:20 -0000 >Number: 74984 >Category: ports >Synopsis: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] >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 Dec 12 13:50:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Ranner >Release: FreeBSD 4.10-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD builder.jawa.at 4.10-RELEASE-p3 FreeBSD 4.10-RELEASE-p3 #1: Sat Oct 30 12:19:44 CEST 2004 >Description: Fix ipfw parser on FreeBSD 4 Added file(s): - files/patch-ipfw.l Port maintainer (jim@corebsd.or.id) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- fwlogwatch-1.0_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/fwlogwatch/Makefile /usr/ports/security/fwlogwatch.update/Makefile --- /usr/ports/security/fwlogwatch/Makefile Tue May 25 03:09:34 2004 +++ /usr/ports/security/fwlogwatch.update/Makefile Sat Dec 11 17:07:51 2004 @@ -8,6 +8,7 @@ PORTNAME= fwlogwatch PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.kybs.de/boris/sw/ diff -ruN --exclude=CVS /usr/ports/security/fwlogwatch/files/patch-ipfw.l /usr/ports/security/fwlogwatch.update/files/patch-ipfw.l --- /usr/ports/security/fwlogwatch/files/patch-ipfw.l Thu Jan 1 01:00:00 1970 +++ /usr/ports/security/fwlogwatch.update/files/patch-ipfw.l Sat Dec 11 16:59:52 2004 @@ -0,0 +1,11 @@ +--- ipfw.l.orig Sun Mar 21 10:42:55 2004 ++++ ipfw.l Sat Dec 11 16:57:23 2004 +@@ -33,7 +33,7 @@ + %% + + {MONTH}[ ]{1,2}{DIGIT}{1,2}[ ]{DIGIT}{2}:{DIGIT}{2}:{DIGIT}{2}[ ]{LOGHOST} ipfw_parse_start(ipfwtext); +-" kernel: ipfw: "{NUMBER} { xstrncpy(opt.line->chainlabel, ipfwtext+15, SHORTLEN); opt.parser=opt.parser|IPFW_CHAIN; }; ++" /"?"kernel: ipfw: "{NUMBER} { xstrncpy(opt.line->chainlabel, ipfwtext+15, SHORTLEN); opt.parser=opt.parser|IPFW_CHAIN; }; + "Deny" { xstrncpy(opt.line->branchname, ipfwtext, SHORTLEN); opt.parser=opt.parser|IPFW_BRANCH; }; + {PROTO} ipfw_parse_proto(ipfwtext, IPFW_OPT_NONE); + "ICMP:"{NUMBER}"."{NUMBER} ipfw_parse_proto(ipfwtext+5, IPFW_OPT_ICMP); --- fwlogwatch-1.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 13:50:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 608B216A4CE for ; Sun, 12 Dec 2004 13:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A78D43D4C for ; Sun, 12 Dec 2004 13:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCDoKJk089109 for ; Sun, 12 Dec 2004 13:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCDoK0m089106; Sun, 12 Dec 2004 13:50:20 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 13:50:20 GMT Resent-Message-Id: <200412121350.iBCDoK0m089106@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 Kiesel Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB86716A4CE for ; Sun, 12 Dec 2004 13:45:50 +0000 (GMT) Received: from mxintern.schlund.de (mxintern.kundenserver.de [212.227.126.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28A3743D54 for ; Sun, 12 Dec 2004 13:45:50 +0000 (GMT) (envelope-from kiesel@schlund.de) Received: from [172.17.29.6] (helo=alex.i.schlund.de) by mxintern.kundenserver.de with smtp (Exim 4.34) id 1CdU2m-00022L-RQ for FreeBSD-gnats-submit@freebsd.org; Sun, 12 Dec 2004 14:45:48 +0100 Received: (qmail 94208 invoked by uid 519); 12 Dec 2004 13:45:49 -0000 Message-Id: <20041212134549.94207.qmail@alex.i.schlund.de> Date: 12 Dec 2004 13:45:49 -0000 From: Alex Kiesel To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: nork@FreeBSD.org Subject: ports/74985: Update databases/sqsh to 2.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Kiesel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 13:50:20 -0000 >Number: 74985 >Category: ports >Synopsis: Update databases/sqsh to 2.1.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: Sun Dec 12 13:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alex Kiesel >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: FreeBSD alex.i.schlund.de 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Mon Feb 23 20:45:55 GMT 2004 root@wv1u.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update to latest version of sqsh. >How-To-Repeat: cd /usr/ports/databases/sqsh && patch < sqsh.diff >Fix: --- sqsh.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/sqsh/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- Makefile 4 Feb 2004 04:35:49 -0000 1.22 +++ Makefile 12 Dec 2004 13:35:57 -0000 @@ -5,11 +5,10 @@ # $FreeBSD$ PORTNAME= sqsh -PORTVERSION= 2.1 -PORTREVISION= 7 +PORTVERSION= 2.1.3 CATEGORIES= databases -MASTER_SITES= http://www.sqsh.org/ -EXTRACT_SUFX= -src.tar.gz +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= sqsh MAINTAINER= kiesel@schlund.de COMMENT= Interactive tool for querying Sybase database servers @@ -29,7 +28,7 @@ PKGNAMESUFFIX= -nox11 .else USE_MOTIF= yes -CONFIGURE_ARGS+= --with-motif +CONFIGURE_ARGS+= --with-motif --with-x .endif post-patch: Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/sqsh/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 31 Mar 2004 03:06:44 -0000 1.3 +++ distinfo 12 Dec 2004 13:35:57 -0000 @@ -1,2 +1,2 @@ -MD5 (sqsh-2.1-src.tar.gz) = a9d75ae51eafd94f89640f99ee3a9918 -SIZE (sqsh-2.1-src.tar.gz) = 358874 +MD5 (sqsh-2.1.3.tar.gz) = baa61acdfe04eebf1f2fc7ed27810218 +SIZE (sqsh-2.1.3.tar.gz) = 408940 Index: files/patch-configure =================================================================== RCS file: /home/ncvs/ports/databases/sqsh/files/patch-configure,v retrieving revision 1.1 diff -u -r1.1 patch-configure --- files/patch-configure 6 Nov 2002 16:47:17 -0000 1.1 +++ files/patch-configure 12 Dec 2004 13:35:57 -0000 @@ -1,24 +1,5 @@ --- configure Fri Nov 9 14:58:04 2001 +++ configure Tue Oct 15 13:51:29 2002 -@@ -1106,4 +1106,8 @@ - SYBASE_LIBS= - -+ if test "$SYBASE_VERSION" = "FreeTDS" -+ then -+ SYBASE_LIBS="-lct -ltds" -+ else - # - # Check for -lblk -@@ -1152,9 +1156,4 @@ - fi - -- # -- # Check for -ltds (FreeTDS project) -- # -- if test -f $SYBASE_LIBDIR/libtds.a; then -- SYBASE_LIBS="$SYBASE_LIBS -ltds" - fi - @@ -1196,5 +1195,5 @@ ncr*) SYBASE_OS="-ldl -lm";; --- sqsh.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 14:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8BC516A4CE for ; Sun, 12 Dec 2004 14:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF46543D39 for ; Sun, 12 Dec 2004 14:30:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCEUUCo095016 for ; Sun, 12 Dec 2004 14:30:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCEUUBJ095015; Sun, 12 Dec 2004 14:30:30 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 14:30:30 GMT Message-Id: <200412121430.iBCEUUBJ095015@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Ranner Subject: Re: ports/74954: [PATCH] security/fwlogwatch: [Fix broken ipfw parser on FBSD4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Ranner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 14:30:31 -0000 The following reply was made to PR ports/74954; it has been noted by GNATS. From: Michael Ranner To: freebsd-gnats-submit@freebsd.org, root@builder.jawa.at Cc: Subject: Re: ports/74954: [PATCH] security/fwlogwatch: [Fix broken ipfw parser on FBSD4] Date: Sun, 12 Dec 2004 15:21:54 +0100 Please close, submitted with wrong mail sender address. Use ports/74984 instead. /\/\ichael Ranner From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 14:30:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE75D16A4D7 for ; Sun, 12 Dec 2004 14:30:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C504243D41 for ; Sun, 12 Dec 2004 14:30:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCEUXfB095039 for ; Sun, 12 Dec 2004 14:30:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCEUXAt095037; Sun, 12 Dec 2004 14:30:33 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 14:30:33 GMT Message-Id: <200412121430.iBCEUXAt095037@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Ranner Subject: Re: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Ranner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 14:30:34 -0000 The following reply was made to PR ports/74984; it has been noted by GNATS. From: Michael Ranner To: freebsd-gnats-submit@freebsd.org, mranner@inode.at Cc: Subject: Re: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] Date: Sun, 12 Dec 2004 15:23:19 +0100 Obsoletes ports/74954 (submitted with wrong mail sender) /\/\ichael Ranner From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 15:13:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BC2C16A4CE; Sun, 12 Dec 2004 15:13:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B739143D31; Sun, 12 Dec 2004 15:13:46 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCFDk4J001525; Sun, 12 Dec 2004 15:13:46 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCFDkYZ001521; Sun, 12 Dec 2004 15:13:46 GMT (envelope-from vanilla) Date: Sun, 12 Dec 2004 15:13:46 GMT From: "Vanilla I. Shu" Message-Id: <200412121513.iBCFDkYZ001521@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/74958: Update port: www/lighttpd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 15:13:47 -0000 Synopsis: Update port: www/lighttpd Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Sun Dec 12 15:13:33 GMT 2004 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=74958 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 15:33:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D616716A4CE; Sun, 12 Dec 2004 15:33:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A291343D5A; Sun, 12 Dec 2004 15:33:15 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCFXFGA003326; Sun, 12 Dec 2004 15:33:15 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCFXFSc003322; Sun, 12 Dec 2004 15:33:15 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 15:33:15 GMT From: Sergey Matveychuk Message-Id: <200412121533.iBCFXFSc003322@freefall.freebsd.org> To: jmp@alvorlig.dk, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71684: lang/scm does not compile on FreeBSD 5.3BETA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 15:33:16 -0000 Synopsis: lang/scm does not compile on FreeBSD 5.3BETA State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 15:33:06 GMT 2004 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71684 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 16:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2090E16A4CE for ; Sun, 12 Dec 2004 16:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B62D843D55 for ; Sun, 12 Dec 2004 16:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCGUTZL008813 for ; Sun, 12 Dec 2004 16:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCGUTmX008807; Sun, 12 Dec 2004 16:30:29 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 16:30:29 GMT Resent-Message-Id: <200412121630.iBCGUTmX008807@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, Rudolf Polzer Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A779616A4CE for ; Sun, 12 Dec 2004 16:27:24 +0000 (GMT) Received: from ccc-offenbach.org (pD9EA7644.dip.t-dialin.net [217.234.118.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9684643D55 for ; Sun, 12 Dec 2004 16:27:21 +0000 (GMT) (envelope-from root@durchnull.ath.cx) Received: (qmail 31463 invoked by uid 0); 12 Dec 2004 16:27:19 -0000 Message-Id: <20041212162719.31462.qmail@durchnull.ath.cx> Date: 12 Dec 2004 16:27:19 -0000 From: Rudolf Polzer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74991: Update port: games/pydance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 16:30:30 -0000 >Number: 74991 >Category: ports >Synopsis: Update port: games/pydance >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: Sun Dec 12 16:30:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rudolf Polzer >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD katsuragi.div0.ccc-offenbach.org 5.3-STABLE FreeBSD 5.3-STABLE #3: Thu Dec 2 07:47:37 CET 2004 root@katsuragi.div0.ccc-offenbach.org:/usr/obj/usr/src/sys/DIV0_KERNEL i386 >Description: Just a version bump. Some documentation files I have forgotten to include were added. >How-To-Repeat: >Fix: diff -ru /usr/ports/games/pydance/Makefile ./Makefile --- /usr/ports/games/pydance/Makefile Sat Apr 17 17:34:16 2004 +++ ./Makefile Sun Dec 12 12:58:37 2004 @@ -6,7 +6,7 @@ # PORTNAME= pydance -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 CATEGORIES= games MASTER_SITES= http://www.icculus.org/pyddr/ DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz ${SONGS} @@ -37,7 +37,7 @@ MAN1= findbpm.1 MAN6= pydance.6 -DOCFILES= BUGS CREDITS ChangeLog HACKING INSTALL LICENSE README TODO docs/dance-spec.txt docs/dwi-hall-of-shame.txt docs/ksf-format.txt +DOCFILES= BUGS CREDITS ChangeLog HACKING INSTALL LICENSE README TODO docs/dance-spec.txt docs/dwi-hall-of-shame.txt docs/ksf-format.txt docs/manual.html post-patch: ${REINPLACE_CMD} -e "s,/etc,${LOCALBASE}/etc," ${WRKSRC}/constants.py @@ -64,7 +64,9 @@ post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} + ${MKDIR} ${DOCSDIR}/images cd ${WRKSRC} && ${INSTALL_DATA} ${DOCFILES} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} docs/images/* ${DOCSDIR}/images .endif @${CAT} ${PKGMESSAGE} diff -ru /usr/ports/games/pydance/distinfo ./distinfo --- /usr/ports/games/pydance/distinfo Sat Apr 17 17:34:16 2004 +++ ./distinfo Sun Dec 12 12:39:42 2004 @@ -1,5 +1,5 @@ -MD5 (pydance/pydance-1.0.1.tar.gz) = 9e08b9f8a2b8f75c2393378ef69241d7 -SIZE (pydance/pydance-1.0.1.tar.gz) = 5640158 +MD5 (pydance/pydance-1.0.2.tar.gz) = 9192f15042cfbabb5406f2bbd2e236df +SIZE (pydance/pydance-1.0.2.tar.gz) = 6315594 MD5 (pydance/forkbomb.ogg) = 0ca7527a0b792fe0b597322d69e675d7 SIZE (pydance/forkbomb.ogg) = 1418973 MD5 (pydance/forkbomb.dance) = e62aab2b2d39adf172a74d229acedb23 diff -ru /usr/ports/games/pydance/pkg-plist ./pkg-plist --- /usr/ports/games/pydance/pkg-plist Sat Apr 17 17:34:16 2004 +++ ./pkg-plist Sun Dec 12 12:59:49 2004 @@ -1,4 +1,16 @@ -@unexec rm -f %%PREFIX%%/share/games/pydance/*.pyc +@unexec rm -f %%PREFIX%%/share/games/pydance/*.py[co] +%%SONGS%%share/games/pydance/songs/6jan-banner.png +%%SONGS%%share/games/pydance/songs/6jan-bg.jpg +%%SONGS%%share/games/pydance/songs/6jan.dance +%%SONGS%%share/games/pydance/songs/6jan.ogg +%%SONGS%%share/games/pydance/songs/forkbomb-banner.png +%%SONGS%%share/games/pydance/songs/forkbomb-bg.jpg +%%SONGS%%share/games/pydance/songs/forkbomb.dance +%%SONGS%%share/games/pydance/songs/forkbomb.ogg +%%SONGS%%share/games/pydance/songs/pydance.png +%%SONGS%%share/games/pydance/songs/synrg-bg.png +%%SONGS%%share/games/pydance/songs/synrg.dance +%%SONGS%%share/games/pydance/songs/synrg.ogg bin/findbpm bin/pydance etc/pydance.cfg.sample @@ -20,6 +32,42 @@ share/games/pydance/gfxtheme.py share/games/pydance/grades.py share/games/pydance/gradescreen.py +share/games/pydance/images/bg.png +share/games/pydance/images/button.png +share/games/pydance/images/courseselect-bg.png +share/games/pydance/images/endless-bg.png +share/games/pydance/images/error-bg.png +share/games/pydance/images/gameselect-bg.png +share/games/pydance/images/go.png +share/games/pydance/images/grade-bg.png +share/games/pydance/images/indicator.png +share/games/pydance/images/menu-bg.png +share/games/pydance/images/newss-bg.png +share/games/pydance/images/no-banner.png +share/games/pydance/images/option-bg.png +share/games/pydance/images/rating-a.png +share/games/pydance/images/rating-aa.png +share/games/pydance/images/rating-aaa.png +share/games/pydance/images/rating-b.png +share/games/pydance/images/rating-c.png +share/games/pydance/images/rating-d.png +share/games/pydance/images/rating-ee.png +share/games/pydance/images/rating-f.png +share/games/pydance/images/ready.png +share/games/pydance/images/select-3p.png +share/games/pydance/images/select-4p.png +share/games/pydance/images/select-5p.png +share/games/pydance/images/select-6p.png +share/games/pydance/images/select-8p.png +share/games/pydance/images/select-9p.png +share/games/pydance/images/select-dmx.png +share/games/pydance/images/select-endless.png +share/games/pydance/images/select-ez2.png +share/games/pydance/images/select-ez2real.png +share/games/pydance/images/select-nonstop.png +share/games/pydance/images/select-normal.png +share/games/pydance/images/select-panel.png +share/games/pydance/images/select-para.png share/games/pydance/interface.py share/games/pydance/judge.py share/games/pydance/lifebars.py @@ -30,16 +78,56 @@ share/games/pydance/options.py share/games/pydance/pad.py share/games/pydance/player.py +share/games/pydance/pydance.py share/games/pydance/records.py share/games/pydance/scores.py share/games/pydance/songselect.py +share/games/pydance/sound/assist-d.ogg +share/games/pydance/sound/assist-l.ogg +share/games/pydance/sound/assist-r.ogg +share/games/pydance/sound/assist-u.ogg +share/games/pydance/sound/back.ogg +share/games/pydance/sound/clicked.ogg +share/games/pydance/sound/loselife.ogg +share/games/pydance/sound/menu.ogg +share/games/pydance/sound/move.ogg share/games/pydance/stats.py share/games/pydance/stepfilters.py share/games/pydance/steps.py -share/games/pydance/ui.py -share/games/pydance/util.py -share/games/pydance/pydance.py +share/games/pydance/themes/dj/djenzay/djtheme.cfg +share/games/pydance/themes/dj/djenzay/negative/awful.ogg +share/games/pydance/themes/dj/djenzay/negative/dayjob.ogg +share/games/pydance/themes/dj/djenzay/negative/everyone.ogg +share/games/pydance/themes/dj/djenzay/negative/flailing.ogg +share/games/pydance/themes/dj/djenzay/negative/programming.ogg +share/games/pydance/themes/dj/djenzay/negative/rubber.ogg +share/games/pydance/themes/dj/djenzay/negative/shameus.ogg +share/games/pydance/themes/dj/djenzay/neutral/blur.ogg +share/games/pydance/themes/dj/djenzay/neutral/moves.ogg +share/games/pydance/themes/dj/djenzay/neutral/way.ogg +share/games/pydance/themes/dj/djenzay/positive/flow.ogg +share/games/pydance/themes/dj/djenzay/positive/harder.ogg +share/games/pydance/themes/dj/djenzay/positive/respect.ogg +share/games/pydance/themes/dj/djenzay/positive/scene.ogg +share/games/pydance/themes/dj/djenzay/positive/sunshine.ogg +share/games/pydance/themes/dj/djenzay/rankings/aaa.ogg +share/games/pydance/themes/dj/djenzay/rankings/better.ogg +share/games/pydance/themes/dj/djenzay/rankings/disaster.ogg +share/games/pydance/themes/dj/djenzay/rankings/doing.ogg +share/games/pydance/themes/dj/djenzay/rankings/double.ogg +share/games/pydance/themes/dj/djenzay/rankings/effort.ogg +share/games/pydance/themes/dj/djenzay/rankings/fail.ogg +share/games/pydance/themes/dj/djenzay/rankings/flawless.ogg +share/games/pydance/themes/dj/djenzay/rankings/flawless2.ogg +share/games/pydance/themes/dj/djenzay/rankings/gettingit.ogg +share/games/pydance/themes/dj/djenzay/rankings/high.ogg +share/games/pydance/themes/dj/djenzay/rankings/impressive.ogg +share/games/pydance/themes/dj/djenzay/rankings/respectible.ogg +share/games/pydance/themes/dj/djenzay/rankings/secondchances.ogg +share/games/pydance/themes/dj/djenzay/rankings/sure.ogg +share/games/pydance/themes/dj/djenzay/rankings/tobe.ogg share/games/pydance/themes/dj/none/djtheme.cfg +share/games/pydance/themes/gfx/32x32/ddresque.zip share/games/pydance/themes/gfx/32x32/default/arr_c_c_0.png share/games/pydance/themes/gfx/32x32/default/arr_c_c_1.png share/games/pydance/themes/gfx/32x32/default/arr_c_c_2.png @@ -98,7 +186,7 @@ share/games/pydance/themes/gfx/32x32/ez2/lifebar.png share/games/pydance/themes/gfx/32x32/ez2/oni-bar.png share/games/pydance/themes/gfx/32x32/ez2/oni-empty.png -share/games/pydance/themes/gfx/32x32/ddresque.zip +share/games/pydance/themes/gfx/48x48/ddresque.zip share/games/pydance/themes/gfx/48x48/default/arr_c_c_0.png share/games/pydance/themes/gfx/48x48/default/arr_c_c_1.png share/games/pydance/themes/gfx/48x48/default/arr_c_c_2.png @@ -118,7 +206,6 @@ share/games/pydance/themes/gfx/48x48/default/lifebar.png share/games/pydance/themes/gfx/48x48/default/oni-bar.png share/games/pydance/themes/gfx/48x48/default/oni-empty.png -share/games/pydance/themes/gfx/48x48/ddresque.zip share/games/pydance/themes/gfx/56x56/default/arr_c_c_0.png share/games/pydance/themes/gfx/56x56/default/arr_c_c_1.png share/games/pydance/themes/gfx/56x56/default/arr_c_c_2.png @@ -159,6 +246,8 @@ share/games/pydance/themes/gfx/56x56/ez2/oni-bar.png share/games/pydance/themes/gfx/56x56/ez2/oni-empty.png share/games/pydance/themes/gfx/56x56/pumpesque.zip +share/games/pydance/themes/gfx/64x64/bryan.zip +share/games/pydance/themes/gfx/64x64/ddresque.zip share/games/pydance/themes/gfx/64x64/default/arr_c_c_0.png share/games/pydance/themes/gfx/64x64/default/arr_c_c_1.png share/games/pydance/themes/gfx/64x64/default/arr_c_c_2.png @@ -257,69 +346,10 @@ share/games/pydance/themes/gfx/64x64/oldschool/lifebar.png share/games/pydance/themes/gfx/64x64/oldschool/oni-bar.png share/games/pydance/themes/gfx/64x64/oldschool/oni-empty.png -share/games/pydance/themes/gfx/64x64/bryan.zip -share/games/pydance/themes/gfx/64x64/ddresque.zip share/games/pydance/themes/gfx/64x64/soloesque.zip share/games/pydance/themes/gfx/64x64/vividesque.zip -share/games/pydance/images/button.png -share/games/pydance/images/bg.png -share/games/pydance/images/courseselect-bg.png -share/games/pydance/images/endless-bg.png -share/games/pydance/images/error-bg.png -share/games/pydance/images/gameselect-bg.png -share/games/pydance/images/go.png -share/games/pydance/images/grade-bg.png -share/games/pydance/images/indicator.png -share/games/pydance/images/menu-bg.png -share/games/pydance/images/newss-bg.png -share/games/pydance/images/no-banner.png -share/games/pydance/images/option-bg.png -share/games/pydance/images/rating-a.png -share/games/pydance/images/rating-aa.png -share/games/pydance/images/rating-aaa.png -share/games/pydance/images/rating-b.png -share/games/pydance/images/rating-c.png -share/games/pydance/images/rating-d.png -share/games/pydance/images/rating-ee.png -share/games/pydance/images/rating-f.png -share/games/pydance/images/ready.png -share/games/pydance/images/select-3p.png -share/games/pydance/images/select-4p.png -share/games/pydance/images/select-5p.png -share/games/pydance/images/select-6p.png -share/games/pydance/images/select-8p.png -share/games/pydance/images/select-9p.png -share/games/pydance/images/select-dmx.png -share/games/pydance/images/select-endless.png -share/games/pydance/images/select-ez2.png -share/games/pydance/images/select-ez2real.png -share/games/pydance/images/select-normal.png -share/games/pydance/images/select-nonstop.png -share/games/pydance/images/select-panel.png -share/games/pydance/images/select-para.png -share/games/pydance/sound/assist-d.ogg -share/games/pydance/sound/assist-l.ogg -share/games/pydance/sound/assist-r.ogg -share/games/pydance/sound/assist-u.ogg -share/games/pydance/sound/back.ogg -share/games/pydance/sound/clicked.ogg -share/games/pydance/sound/loselife.ogg -share/games/pydance/sound/menu.ogg -share/games/pydance/sound/move.ogg -%%SONGS%%share/games/pydance/songs/forkbomb.ogg -%%SONGS%%share/games/pydance/songs/forkbomb.dance -%%SONGS%%share/games/pydance/songs/forkbomb-bg.jpg -%%SONGS%%share/games/pydance/songs/forkbomb-banner.png -%%SONGS%%share/games/pydance/songs/6jan.ogg -%%SONGS%%share/games/pydance/songs/6jan.dance -%%SONGS%%share/games/pydance/songs/6jan-bg.jpg -%%SONGS%%share/games/pydance/songs/6jan-banner.png -%%SONGS%%share/games/pydance/songs/synrg.ogg -%%SONGS%%share/games/pydance/songs/synrg.dance -%%SONGS%%share/games/pydance/songs/synrg-bg.png -%%SONGS%%share/games/pydance/songs/pydance.png -@dirrm share/games/pydance/sound -@dirrm share/games/pydance/images +share/games/pydance/ui.py +share/games/pydance/util.py @dirrm share/games/pydance/themes/gfx/64x64/oldschool @dirrm share/games/pydance/themes/gfx/64x64/default @dirrm share/games/pydance/themes/gfx/64x64 @@ -334,9 +364,16 @@ @dirrm share/games/pydance/themes/gfx/32x32 @dirrm share/games/pydance/themes/gfx @dirrm share/games/pydance/themes/dj/none +@dirrm share/games/pydance/themes/dj/djenzay/rankings +@dirrm share/games/pydance/themes/dj/djenzay/positive +@dirrm share/games/pydance/themes/dj/djenzay/neutral +@dirrm share/games/pydance/themes/dj/djenzay/negative +@dirrm share/games/pydance/themes/dj/djenzay @dirrm share/games/pydance/themes/dj @dirrm share/games/pydance/themes +@dirrm share/games/pydance/sound @dirrm share/games/pydance/songs +@dirrm share/games/pydance/images @dirrm share/games/pydance @unexec rmdir %D/share/games 2>/dev/null || true %%PORTDOCS%%%%DOCSDIR%%/BUGS @@ -349,5 +386,20 @@ %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/dance-spec.txt %%PORTDOCS%%%%DOCSDIR%%/dwi-hall-of-shame.txt +%%PORTDOCS%%%%DOCSDIR%%/images/cheappad.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/diff-indicator.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/emsusb2.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/endless.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/gameselect.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/joe-sis.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/keymap.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/menu.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/nonstop-picks.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/nonstop.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/options.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/ss-folder.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/ss-song.jpg %%PORTDOCS%%%%DOCSDIR%%/ksf-format.txt +%%PORTDOCS%%%%DOCSDIR%%/manual.html +%%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%% Only in .: pydance-1.0.2.tbz >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 17:01:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CE3016A4CE; Sun, 12 Dec 2004 17:01:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECE1743D31; Sun, 12 Dec 2004 17:01:28 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCH1SNY010654; Sun, 12 Dec 2004 17:01:28 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCH1S9h010650; Sun, 12 Dec 2004 17:01:28 GMT (envelope-from thierry) Date: Sun, 12 Dec 2004 17:01:28 GMT From: Thierry Thomas Message-Id: <200412121701.iBCH1S9h010650@freefall.freebsd.org> To: kiesel@schlund.de, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74985: Update databases/sqsh to 2.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 17:01:29 -0000 Synopsis: Update databases/sqsh to 2.1.3 State-Changed-From-To: open->closed State-Changed-By: thierry State-Changed-When: Sun Dec 12 17:01:02 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74985 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 17:20:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 007BB16A4D0 for ; Sun, 12 Dec 2004 17:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9C3443D53 for ; Sun, 12 Dec 2004 17:20:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCHKPJg015229 for ; Sun, 12 Dec 2004 17:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCHKPZm015228; Sun, 12 Dec 2004 17:20:25 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 17:20:25 GMT Resent-Message-Id: <200412121720.iBCHKPZm015228@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4663E16A4CE for ; Sun, 12 Dec 2004 17:16:54 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C98E643D31 for ; Sun, 12 Dec 2004 17:16:53 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84117-179.ip.peterstar.net ([84.204.117.179] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1CdXKh-000Nfz-F7 for FreeBSD-gnats-submit@freebsd.org; Sun, 12 Dec 2004 18:16:42 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBCHGGED000687 for ; Sun, 12 Dec 2004 20:16:17 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBCCnW6J008131; Sun, 12 Dec 2004 15:49:32 +0300 (MSK) (envelope-from igor) Message-Id: <200412121249.iBCCnW6J008131@doom.homeunix.org> Date: Sun, 12 Dec 2004 15:49:32 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74992: Update port: graphics/ayam 1.7_1 -> 1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 17:20:26 -0000 >Number: 74992 >Category: ports >Synopsis: Update port: graphics/ayam 1.7_1 -> 1.8 >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: Sun Dec 12 17:20:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Update to 1.8. >How-To-Repeat: >Fix: --- ayam.diff begins here --- diff -ruN /usr/ports/graphics/ayam/Makefile ayam/Makefile --- /usr/ports/graphics/ayam/Makefile Mon Nov 29 17:54:45 2004 +++ ayam/Makefile Sun Dec 12 15:28:47 2004 @@ -6,8 +6,7 @@ # PORTNAME= ayam -PORTVERSION= 1.7 -PORTREVISION= 1 +PORTVERSION= 1.8 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN /usr/ports/graphics/ayam/distinfo ayam/distinfo --- /usr/ports/graphics/ayam/distinfo Thu Apr 1 16:21:01 2004 +++ ayam/distinfo Sun Dec 12 15:28:52 2004 @@ -1,2 +1,2 @@ -MD5 (ayam1.7.src.tar.gz) = f4cd9c2f69304a0b4693a48d2d2b9fc5 -SIZE (ayam1.7.src.tar.gz) = 2135436 +MD5 (ayam1.8.src.tar.gz) = 893f8c533efded07226b1514777d5403 +SIZE (ayam1.8.src.tar.gz) = 2714421 diff -ruN /usr/ports/graphics/ayam/files/patch-Makefile.shared ayam/files/patch-Makefile.shared --- /usr/ports/graphics/ayam/files/patch-Makefile.shared Mon Nov 29 17:54:45 2004 +++ ayam/files/patch-Makefile.shared Sun Dec 12 15:33:16 2004 @@ -1,5 +1,8 @@ ---- Makefile.shared.orig Sat Mar 27 03:17:07 2004 -+++ Makefile.shared Tue Oct 5 21:43:30 2004 + +$FreeBSD$ + +--- Makefile.shared.orig ++++ Makefile.shared @@ -4,7 +4,7 @@ # Makefile for Ayam (shared version) @@ -9,14 +12,23 @@ #PREFIX = /opt/ayam # if you use one of the following, be sure to change LIBDIR # and DOCDIR to a more suitable (Ayam specific) path -@@ -34,14 +34,14 @@ - MKDIR = mkdir -p +@@ -31,21 +31,21 @@ - # the compiler + INSTALL = ./ninstall + #INSTALL = install +-MKDIR = mkdir -p ++#MKDIR = mkdir -p + + # the C compiler -CC = cc +CC ?= cc #CC = gcc + # the C++ compiler (just in use for the Aycsg plugin) +-CXX = CC ++CXX = ${CC} + #CXX = g++-3.0 + # the linker # Starting with BMRT2.5, libribout and libslcargs are in C++, # which forces us to use "CC" or "g++" to link the right libraries @@ -26,7 +38,7 @@ # for Linux, use #LD = g++ # MacOSX -@@ -68,7 +68,8 @@ +@@ -73,7 +73,8 @@ # o add -DAYOLDSLX if you compile with an Aqsis libslxargs prior to 0.7.19 # o add -DUSE_NON_CONST if you compile with Tcl/Tk 8.4.x @@ -36,7 +48,7 @@ # IRIX (-DAYIRIXBUG is needed by ncurve.c to work around a bug in libGLU):: #CFLAGS = -O -fullwarn -DAYIRIXBUG -DAYUSESLCARGS -DAYUSEBMRTRIBOUT # Linux: -@@ -115,49 +116,53 @@ +@@ -120,49 +121,53 @@ TOGLOBJECT = togl/togl.o # OpenGL @@ -99,7 +111,7 @@ #X11LIBS = -L/usr/X11R6/lib -lXmu -lXext -lX11 -@@ -172,18 +177,18 @@ +@@ -177,18 +182,18 @@ # Aqsis @@ -123,7 +135,7 @@ # BMRT -@@ -194,9 +199,9 @@ +@@ -199,9 +204,9 @@ BMRTINCDIR = $(BMRTDIR)/include BMRTLIBDIR = $(BMRTDIR)/lib # if you use BMRT libribout and not Affine: @@ -135,7 +147,7 @@ # if you do not use libslcargs from BMRT: SLCARGSLIB = # if you use Affine as BMRT libribout replacement and libslcargs from BMRT: -@@ -206,9 +211,9 @@ +@@ -211,9 +216,9 @@ # Dynamic Loading # Library for dynamic loading (contains dlopen()) # Linux, IRIX, Solaris, (MacOSX: get libdl from Fink!): @@ -147,7 +159,7 @@ # linker flags to produce shared modules: # Linux, Solaris, IRIX: -@@ -222,8 +227,8 @@ +@@ -227,8 +232,8 @@ RRIBLIBS = -L$(AFFINEDIR)/lib -lribrdr -lribhash -lribnop -lm # Ayslx Plugin (Aqsis) @@ -158,9 +170,9 @@ # Ayso Plugin (RenderDotC, RDC) RDCDIR = /usr/local/rdc -@@ -373,9 +378,9 @@ - .c.o: - $(CC) -c $(CFLAGS) $*.c -o $@ -I. -IMF3D -I$(TOGLINCDIR) $(TCLINC) $(TKINC) -I$(BMRTINCDIR) -I$(GLINCDIR) -I$(AFFINEINCDIR) -I$(AQSISINCDIR) -I$(TIFFINCDIR) +@@ -413,9 +418,9 @@ + .cpp.o: + $(CXX) -c $(CFLAGS) $*.cpp -o $@ -I. -IMF3D -I$(TOGLINCDIR) $(TCLINC) $(TKINC) -I$(BMRTINCDIR) -I$(GLINCDIR) -I$(AFFINEINCDIR) -I$(AQSISINCDIR) -I$(OPENCSGINCDIR) -I$(GLEWINCDIR) -Iplugins -all: ayamsh csphere.so mfio.so metaobj.so +all: ayamsh csphere.so mfio.so metaobj.so ayslx.so @@ -169,4 +181,4 @@ +ayamsh: $(AYAMOBJS) $(TOGLOBJECT) $(LD) $(AYAMOBJS) $(TOGLOBJECT) $(EXLDFLAGS) -o ayamsh $(TKLIB) $(TCLLIB) $(GLLIBS) $(X11LIBS) $(RIBOUTLIB) $(AQSISRI2RIB) $(SLCARGSLIB) $(AFFINEOBJS) $(AQSISOBJS) $(TIFFLIB) -lm $(DL) - csphere.so: $(CSPHEREOBJS) + aycsg.so: $(AYCSGOBJS) $(OPENCSGOBJS) diff -ruN /usr/ports/graphics/ayam/pkg-plist ayam/pkg-plist --- /usr/ports/graphics/ayam/pkg-plist Thu Apr 1 16:21:01 2004 +++ ayam/pkg-plist Sun Dec 12 15:42:49 2004 @@ -14,6 +14,8 @@ lib/ayam/tcl/ai.tcl lib/ayam/tcl/ayam.tcl lib/ayam/tcl/balloon.tcl +lib/ayam/tcl/birail1.tcl +lib/ayam/tcl/birail2.tcl lib/ayam/tcl/box.tcl lib/ayam/tcl/bpatch.tcl lib/ayam/tcl/browser.tcl @@ -27,6 +29,7 @@ lib/ayam/tcl/control.tcl lib/ayam/tcl/cylinder.tcl lib/ayam/tcl/disk.tcl +lib/ayam/tcl/extrnc.tcl lib/ayam/tcl/extrude.tcl lib/ayam/tcl/gordon.tcl lib/ayam/tcl/hyperb.tcl @@ -68,6 +71,8 @@ lib/ayam/tcl/splash.tcl lib/ayam/tcl/sweep.tcl lib/ayam/tcl/tc.tcl +lib/ayam/tcl/text.tcl +lib/ayam/tcl/tgui.tcl lib/ayam/tcl/tmp.tcl lib/ayam/tcl/toolbox.tcl lib/ayam/tcl/torus.tcl @@ -168,10 +173,15 @@ %%PORTDOCS%%%%DOCSDIR%%/html/ayam-8.html %%PORTDOCS%%%%DOCSDIR%%/html/ayam.html %%PORTDOCS%%%%DOCSDIR%%/html/pics/ampick.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/birail1.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/birail1vc.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/birail2.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/birail2vc.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/cap.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/clampnc.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/clone.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/concatnc.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/elevate.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/extrude.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/gordon-hood.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/icurves.gif @@ -180,6 +190,7 @@ %%PORTDOCS%%%%DOCSDIR%%/html/pics/main.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/meta.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/multip.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/ncircle.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/plotcur.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/prefs.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/primitives.gif @@ -192,6 +203,7 @@ %%PORTDOCS%%%%DOCSDIR%%/html/pics/ssweep.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/sweep.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/tce.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/text-ayam.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/tools.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/treeview.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/view.gif --- ayam.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 17:30:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2D7F16A4CE for ; Sun, 12 Dec 2004 17:30:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8063443D5E for ; Sun, 12 Dec 2004 17:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCHULPK015480 for ; Sun, 12 Dec 2004 17:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCHUL85015477; Sun, 12 Dec 2004 17:30:21 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 17:30:21 GMT Resent-Message-Id: <200412121730.iBCHUL85015477@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, Ramiro Aceves Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90AFD16A4CE for ; Sun, 12 Dec 2004 17:27:37 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E8C843D46 for ; Sun, 12 Dec 2004 17:27:37 +0000 (GMT) (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 iBCHRbTG078819 for ; Sun, 12 Dec 2004 17:27:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBCHRbUZ078818; Sun, 12 Dec 2004 17:27:37 GMT (envelope-from nobody) Message-Id: <200412121727.iBCHRbUZ078818@www.freebsd.org> Date: Sun, 12 Dec 2004 17:27:37 GMT From: Ramiro Aceves To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/74993: SVGALIB-1.4.3_4 segfaults with NVIDIA TNT Card (32MB) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 17:30:21 -0000 >Number: 74993 >Category: ports >Synopsis: SVGALIB-1.4.3_4 segfaults with NVIDIA TNT Card (32MB) >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 Dec 12 17:30:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ramiro Aceves >Release: FreeBSD 5.3 from CDROM >Organization: >Environment: System: FreeBSD freebsd-remix 5.3-RELEASE FreeBSD 5.3-RELEASE #6: Tue Dec 7 13:54:49 CET 2004 ea1abz@freebsd-remix:/usr/src/sys/i386/compile/MIKERNEL i386 >Description: I installed SVGALIB-1.4.3_4 from the cvsuped ports collection. SVGALIB only works when selecting "chipset VGA" on the libvga.config file. If I select "chipset NV3" (as I do in Linux) it segfaults. My video card is a Nvidia Riva TNT 32 MB. >How-To-Repeat: Using any program that requires SVGALIB generates the segfaults. For example, this little program produces the same result. It only work if I set "chipset VGA" in the libvga.config file. /*SVGALIB TEST*/ #include void main(void){ int a; vga_init(); vga_setmode(G640x480x16); vga_setcolor(6); for (a=0;a<640;a=a+10){ vga_drawline(0,0,a,480); } sleep(4); } >Fix: I do not know, perhaps it is not a bug and it is my mistake :-( If you need further information please contact my email address. Thank you very much. FreeBSD is nice! >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 17:40:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54B7C16A4CE for ; Sun, 12 Dec 2004 17:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32BF243D58 for ; Sun, 12 Dec 2004 17:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCHeSa8016716 for ; Sun, 12 Dec 2004 17:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCHeSGB016715; Sun, 12 Dec 2004 17:40:28 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 17:40:28 GMT Message-Id: <200412121740.iBCHeSGB016715@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/72090: [patch] math/maxima: Unbreak, upgrade, clean up X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 17:40:28 -0000 The following reply was made to PR ports/72090; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, sf@slappy.org Cc: Subject: Re: ports/72090: [patch] math/maxima: Unbreak, upgrade, clean up Date: Sun, 12 Dec 2004 20:34:36 +0300 Dear maintainer! Please aprove or disprove th PR. --- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 18:30:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E70116A4CE for ; Sun, 12 Dec 2004 18:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8BF43D49 for ; Sun, 12 Dec 2004 18:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCIUOo4022380 for ; Sun, 12 Dec 2004 18:30:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCIUOit022376; Sun, 12 Dec 2004 18:30:24 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 18:30:24 GMT Resent-Message-Id: <200412121830.iBCIUOit022376@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, "Damian" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DBE916A4CE for ; Sun, 12 Dec 2004 18:21:27 +0000 (GMT) Received: from out012.verizon.net (out012pub.verizon.net [206.46.170.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8068643D41 for ; Sun, 12 Dec 2004 18:21:26 +0000 (GMT) (envelope-from res0d26i@verizon.net) Received: from pompey.indignation.org ([4.46.141.148]) by out012.verizon.netESMTP <20041212182125.JSS10436.out012.verizon.net@pompey.indignation.org> for ; Sun, 12 Dec 2004 12:21:25 -0600 Message-Id: <1102875856.0@pompey.indignation.org> Date: Sun, 12 Dec 2004 10:24:16 -0800 From: "Damian" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/74994: beep-media-player 0.9.7 coredump on exit bug/patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 18:30:24 -0000 >Number: 74994 >Category: ports >Synopsis: beep-media-player 0.9.7 coredump on exit bug/patch >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 Dec 12 18:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Damian >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD 5.3-RELEASE #0: Sun Nov 21 10:18:57 PST 2004 damian@pompey.indignation.org:/usr/src/sys/i386/compile/POMPEY >Description: Confirmed bug on freebsd and netbsd; when beep-media-player is closed, instead of exiting properly, it coredumps. http://www.sosdg.org/~larne/bugs/show_bug.cgi?id=201 >How-To-Repeat: Run beep-media-player on a console terminal, then exit. The error and .core file should be outputted. >Fix: --- Makefile.diff begins here --- --- Makefile Sat Dec 11 11:05:11 2004 +++ Makefile.new Sun Dec 12 09:38:06 2004 @@ -25,7 +25,7 @@ USE_GMAKE= yes INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ + LDFLAGS="-L${LOCALBASE}/lib -lstdc++" \ INPUT_PLUGINS="${INPUT_PLUGINS}" \ OUTPUT_PLUGINS="${OUTPUT_PLUGINS}" \ VISUALIZATION_PLUGINS="${VISUALIZATION_PLUGINS}" --- Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 18:30:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C6B516A4CE for ; Sun, 12 Dec 2004 18:30:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B2AF43D49 for ; Sun, 12 Dec 2004 18:30:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCIUOIg022426 for ; Sun, 12 Dec 2004 18:30:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCIUOJ4022423; Sun, 12 Dec 2004 18:30:24 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 18:30:24 GMT Resent-Message-Id: <200412121830.iBCIUOJ4022423@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, Johan van Selst Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66FE916A4CE for ; Sun, 12 Dec 2004 18:29:04 +0000 (GMT) Received: from mailhost.stack.nl (vaak.stack.nl [131.155.140.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E5B743D2D for ; Sun, 12 Dec 2004 18:29:03 +0000 (GMT) (envelope-from johans@stack.nl) Received: by mailhost.stack.nl (Postfix, from userid 65534) id 8C94E1F249; Sun, 12 Dec 2004 19:29:02 +0100 (CET) Received: from mailhost.gletsjer.net (coyote.gletsjer.net [IPv6:2001:610:1108:5202:200:e8ff:fe6a:41db]) by mailhost.stack.nl (Postfix) with ESMTP id 13BE81F229 for ; Sun, 12 Dec 2004 19:29:02 +0100 (CET) Received: by mailhost.gletsjer.net (Postfix, from userid 801) id 1EB663E23; Sun, 12 Dec 2004 19:29:02 +0100 (CET) Message-Id: <20041212182902.1EB663E23@mailhost.gletsjer.net> Date: Sun, 12 Dec 2004 19:29:02 +0100 (CET) From: Johan van Selst To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74995: Update port: dns/dnssecwalker upgrade to 3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Johan van Selst List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 18:30:25 -0000 >Number: 74995 >Category: ports >Synopsis: Update port: dns/dnssecwalker upgrade to 3.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 Dec 12 18:30:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Johan van Selst >Release: FreeBSD 6.0-CURRENT i386 >Organization: >Environment: System: FreeBSD coyote.gletsjer.net 6.0-CURRENT FreeBSD 6.0-CURRENT #19: Sat Dec 11 02:15:22 CET 2004 root@coyote.gletsjer.net:/spare3/obj/spare3/src/sys/coyote i386 >Description: Upgrade: Version 3.5 includes bugfixes and new features - Depends on Net::DNS::SEC as well as Net::DNS (added) - Recent versions include a PGP signature (added) - MASTER_SITES changed - Claim port maintainership >How-To-Repeat: >Fix: diff -uNr dnssecwalker/Makefile dnssecwalker/Makefile --- dnssecwalker/Makefile Mon Feb 16 15:18:28 2004 +++ dnssecwalker/Makefile Sun Dec 12 19:23:23 2004 @@ -7,18 +7,23 @@ # PORTNAME= dnssecwalker -PORTVERSION= 2.0 +PORTVERSION= 3.5 CATEGORIES= dns -MASTER_SITES= http://josefsson.org/walker/ +MASTER_SITES= http://josefsson.org/walker/releases/ DISTNAME= walker-${PORTVERSION} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= johans@stack.nl COMMENT= DNSSEC Walker -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS\ + ${SITE_PERL}/Net/DNS/SEC.pm:${PORTSDIR}/dns/p5-Net-DNS-SEC USE_PERL5= yes NO_BUILD= yes +USE_GPG?= yes +SIG_FILES= ${DISTNAME}${EXTRACT_SUFX}.sig CONFLICTS= walker-1.* diff -uNr dnssecwalker/distinfo dnssecwalker/distinfo --- dnssecwalker/distinfo Sat Jan 31 11:19:54 2004 +++ dnssecwalker/distinfo Sun Dec 12 18:50:56 2004 @@ -1,2 +1,4 @@ -MD5 (walker-2.0.tar.gz) = a3eabced53fc32778fef50354279d879 -SIZE (walker-2.0.tar.gz) = 3189 +MD5 (walker-3.5.tar.gz) = 2633a11a211e48a43d016c6f2c37d4a3 +SIZE (walker-3.5.tar.gz) = 24869 +MD5 (walker-3.5.tar.gz.sig) = 39fa23e79e200f985c12fc757644decc +SIZE (walker-3.5.tar.gz.sig) = 184 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 18:50:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27C4C16A4CE for ; Sun, 12 Dec 2004 18:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC75943D69 for ; Sun, 12 Dec 2004 18:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCIoKql023714 for ; Sun, 12 Dec 2004 18:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCIoK0M023713; Sun, 12 Dec 2004 18:50:20 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 18:50:20 GMT Resent-Message-Id: <200412121850.iBCIoK0M023713@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 Ranner Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F4B816A4CE for ; Sun, 12 Dec 2004 18:44:34 +0000 (GMT) Received: from dwarf.jawa.at (62-99-193-122.static.adsl-line.inode.at [62.99.193.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC7D543D39 for ; Sun, 12 Dec 2004 18:44:31 +0000 (GMT) (envelope-from mranner@dwarf.jawa.at) Received: from dwarf.jawa.at (localhost.jawa.at [127.0.0.1]) by dwarf.jawa.at (8.12.11/8.12.9) with ESMTP id iBCIhFfY003196 for ; Sun, 12 Dec 2004 19:43:15 +0100 (CET) (envelope-from mranner@dwarf.jawa.at) Received: (from root@localhost) by dwarf.jawa.at (8.12.11/8.12.9/Submit) id iBCIhF0Y003195; Sun, 12 Dec 2004 19:43:15 +0100 (CET) (envelope-from mranner) Message-Id: <200412121843.iBCIhF0Y003195@dwarf.jawa.at> Date: Sun, 12 Dec 2004 19:43:15 +0100 (CET) From: Michael Ranner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74996: [NEW PORT] sysutils/logwatch: Logwatch is a customizable log analysis system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 18:50:21 -0000 >Number: 74996 >Category: ports >Synopsis: [NEW PORT] sysutils/logwatch: Logwatch is a customizable log analysis system >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 Dec 12 18:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Ranner >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD dwarf.jawa.at 4.10-RELEASE FreeBSD 4.10-RELEASE #5: Sun Oct 10 14:39:51 CEST 2004 >Description: Logwatch is a customizable log analysis system. Logwatch parses through your system's logs for a given period of time and creates a report analyzing areas that you specify, in as much detail as you require. Logwatch is easy to use and will work right out of the package on most systems. Author: kirk@kaybee.org WWW: http://www.logwatch.org Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- logwatch-5.2.2.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: # # logwatch # logwatch/files # logwatch/files/patch-http.conf # logwatch/files/patch-maillog.conf # logwatch/files/patch-messages.conf # logwatch/files/patch-secure.conf # logwatch/files/patch-clam-update.conf # logwatch/files/patch-logwatch.conf # logwatch/files/patch-sendmail-largeboxes # logwatch/files/patch-logwatch.pl # logwatch/pkg-descr # logwatch/Makefile # logwatch/distinfo # logwatch/pkg-message # logwatch/pkg-plist # echo c - logwatch mkdir -p logwatch > /dev/null 2>&1 echo c - logwatch/files mkdir -p logwatch/files > /dev/null 2>&1 echo x - logwatch/files/patch-http.conf sed 's/^X//' >logwatch/files/patch-http.conf << 'END-of-logwatch/files/patch-http.conf' X--- ./conf/logfiles/http.conf.orig Sun Dec 12 18:24:22 2004 X+++ ./conf/logfiles/http.conf Sun Dec 12 18:26:16 2004 X@@ -3,17 +3,17 @@ X ######################################################## X X # What actual file? Defaults to LogPath if not absolute path.... X-LogFile = httpd/access_log X-LogFile = httpd/*access_log X+LogFile = apache-access.log X+LogFile = httpd-access.log X X # If the archives are searched, here is one or more line X # (optionally containing wildcards) that tell where they are... X # Note: if these are gzipped, you need to end with a .gz even if X # you use wildcards... X-Archive = archiv/httpd/access_log.* X-Archive = archiv/httpd/*access_log.* X-Archive = archiv/httpd/access_log.*.gz X-Archive = archiv/httpd/*access_log.*.gz X+Archive = apache-access_log.* X+Archive = httpd-access_log.* X+Archive = apache-access_log.*.gz X+Archive = httpd-access_log.*.gz X X # Expand the repeats (actually just removes them now) X *ExpandRepeats END-of-logwatch/files/patch-http.conf echo x - logwatch/files/patch-maillog.conf sed 's/^X//' >logwatch/files/patch-maillog.conf << 'END-of-logwatch/files/patch-maillog.conf' X--- ./conf/logfiles/maillog.conf.orig Sun Dec 12 18:27:10 2004 X+++ ./conf/logfiles/maillog.conf Sun Dec 12 18:26:27 2004 X@@ -17,8 +17,8 @@ X # (optionally containing wildcards) that tell where they are... X # Note: if these are gzipped, you need to end with a .gz even if X # you use wildcards... X-Archive = archiv/maillog.* X-Archive = archiv/maillog.*.gz X+Archive = maillog.* X+Archive = maillog.*.gz X X # Expand the repeats (actually just removes them now) X *ExpandRepeats END-of-logwatch/files/patch-maillog.conf echo x - logwatch/files/patch-messages.conf sed 's/^X//' >logwatch/files/patch-messages.conf << 'END-of-logwatch/files/patch-messages.conf' X--- ./conf/logfiles/messages.conf.orig Sun Dec 12 18:28:17 2004 X+++ ./conf/logfiles/messages.conf Sun Dec 12 18:27:42 2004 X@@ -19,8 +19,6 @@ X # you use wildcards... X Archive = messages.* X Archive = messages.*.gz X-Archive = archiv/messages.* X-Archive = archiv/messages.*.gz X X # Expand the repeats (actually just removes them now) X *ExpandRepeats END-of-logwatch/files/patch-messages.conf echo x - logwatch/files/patch-secure.conf sed 's/^X//' >logwatch/files/patch-secure.conf << 'END-of-logwatch/files/patch-secure.conf' X--- ./conf/logfiles/secure.conf.orig Sun Dec 12 18:30:50 2004 X+++ ./conf/logfiles/secure.conf Sun Dec 12 18:32:13 2004 X@@ -12,7 +12,7 @@ X X # What actual file? Defaults to LogPath if not absolute path.... X LogFile = secure X-LogFile = authlog X+LogFile = auth.log X X # If the archives are searched, here is one or more line X # (optionally containing wildcards) that tell where they are... X@@ -20,8 +20,8 @@ X # you use wildcards... X Archive = secure.* X Archive = secure.*.gz X-Archive = archiv/secure.* X-Archive = archiv/secure.*.gz X+Archive = auth.log.* X+Archive = auth.log.*.gz X X # Keep only the lines in the proper date range... X *OnlyHost END-of-logwatch/files/patch-secure.conf echo x - logwatch/files/patch-clam-update.conf sed 's/^X//' >logwatch/files/patch-clam-update.conf << 'END-of-logwatch/files/patch-clam-update.conf' X--- ./conf/logfiles/clam-update.conf.orig Sun Dec 12 18:33:01 2004 X+++ ./conf/logfiles/clam-update.conf Sun Dec 12 18:33:23 2004 X@@ -42,19 +42,15 @@ X ######################################################################### X X # What actual file? Defaults to LogPath if not absolute path.... X-LogFile = clam-update X-LogFile = freshclam.log X+LogFile = clamav/clam-update X+LogFile = clamav/freshclam.log X X # If the archives are searched, here is one or more line X # (optionally containing wildcards) that tell where they are... X # Note: if these are gzipped, you need to end with a .gz even if X # you use wildcards... X-Archive = clam-update.* X-Archive = clam-update.*.gz X-Archive = freshclam.log.* X-Archive = freshclam.log.*.gz X-Archive = archiv/clam-update.* X-Archive = archiv/clam-update.*.gz X-Archive = archiv/freshclam.log.* X-Archive = archiv/freshclam.log.*.gz X+Archive = clamav/clam-update.* X+Archive = clamav/clam-update.*.gz X+Archive = clamav/freshclam.log.* X+Archive = clamav/freshclam.log.*.gz X END-of-logwatch/files/patch-clam-update.conf echo x - logwatch/files/patch-logwatch.conf sed 's/^X//' >logwatch/files/patch-logwatch.conf << 'END-of-logwatch/files/patch-logwatch.conf' X--- ./conf/logwatch.conf.orig Mon Jun 21 16:24:31 2004 X+++ ./conf/logwatch.conf Sun Dec 12 18:20:20 2004 X@@ -35,7 +35,7 @@ X X # If set to 'Yes', the report will be sent to stdout instead of being X # mailed to above person. X-Print = No X+Print = Yes X X # Leave this to 'Yes' if you have the mktemp program and it supports X # the '-d' option. Some older version of mktemp on pre-RH7.X did not X@@ -46,7 +46,7 @@ X # X # Some systems have mktemp in a different place X # X-MkTemp = /bin/mktemp X+MkTemp = /usr/bin/mktemp X X # if set, the results will be saved in instead of mailed X # or displayed. X@@ -69,7 +69,7 @@ X # Low = 0 X # Med = 5 X # High = 10 X-Detail = Low X+Detail = Med X X X # The 'Service' option expects either the name of a filter X@@ -79,6 +79,7 @@ X Service = All X # You can also disable certain services (when specifying all) X #Service = -zz-fortune X+Service = -zz-disk_space X # If you only cared about FTP messages, you could use these 2 lines X # instead of the above: X #Service = ftpd-messages # Processes ftpd messages in /var/log/messages X@@ -98,7 +99,7 @@ X # X # some systems have different locations for mailers X # X-mailer = /bin/mail X+mailer = /usr/bin/mail X X # X # With this option set to 'Yes', only log entries for this particular host END-of-logwatch/files/patch-logwatch.conf echo x - logwatch/files/patch-sendmail-largeboxes sed 's/^X//' >logwatch/files/patch-sendmail-largeboxes << 'END-of-logwatch/files/patch-sendmail-largeboxes' X--- ./scripts/services/sendmail-largeboxes.orig Tue Jun 22 15:48:26 2004 X+++ ./scripts/services/sendmail-largeboxes Sun Dec 12 18:18:45 2004 X@@ -12,9 +12,9 @@ X fi X X if [ "$SPOOLDIR" ]; then X- ls -alSh $SPOOLDIR | \ X+ ls -alh $SPOOLDIR | sort -k 5 -n -r | \ X grep rw | \ X grep -E "([0-9][0-9]|[4-9])+[0-9]+([.][0-9])*[M]" | \ X- gawk -F ' ' ' { print("Warning: Large mailbox: "$9" ("$5")") } ' X+ awk -F ' ' ' { print("Warning: Large mailbox: "$9" ("$5")") } ' X fi X END-of-logwatch/files/patch-sendmail-largeboxes echo x - logwatch/files/patch-logwatch.pl sed 's/^X//' >logwatch/files/patch-logwatch.pl << 'END-of-logwatch/files/patch-logwatch.pl' X--- ./scripts/logwatch.pl.orig Sun Dec 12 18:22:46 2004 X+++ ./scripts/logwatch.pl Sun Dec 12 18:22:55 2004 X@@ -577,7 +577,7 @@ X $Archive = ($Config{'logdir'} . $Archive); X } X if ($Archive =~ m/gz$/) { X- `/bin/zcat $Archive 2>/dev/null >> $DestFile`; X+ `/usr/bin/zcat $Archive 2>/dev/null >> $DestFile`; X } else { X `/bin/cat $Archive 2>/dev/null >> $DestFile`; X } END-of-logwatch/files/patch-logwatch.pl echo x - logwatch/pkg-descr sed 's/^X//' >logwatch/pkg-descr << 'END-of-logwatch/pkg-descr' XLogwatch is a customizable log analysis system. Logwatch parses through your Xsystem's logs for a given period of time and creates a report analyzing areas Xthat you specify, in as much detail as you require. Logwatch is easy to use and Xwill work right out of the package on most systems. X XAuthor: kirk@kaybee.org XWWW: http://www.logwatch.org END-of-logwatch/pkg-descr echo x - logwatch/Makefile sed 's/^X//' >logwatch/Makefile << 'END-of-logwatch/Makefile' X# New ports collection makefile for: logwatch X# Date created: 2004-12-12 X# Whom: Michael Ranner X# X# $FreeBSD$ X# X XPORTNAME= logwatch XPORTVERSION= 5.2.2 XCATEGORIES= sysutils security XMASTER_SITES= ftp://ftp.kaybee.org/pub/linux/ X XMAINTAINER= mranner@inode.at XCOMMENT= Logwatch is a customizable log analysis system X XMAN8= logwatch.8 XPKGMESSAGE= ${WRKDIR}/pkg-message XUSE_PERL5_RUN= yes XUSE_REINPLACE= yes XNO_BUILD= yes X XPORTDOCS= HOWTO-Make-Filter License README XLOGWATCH_LOGFILE_SCRIPTS= autorpm/applydate cron/applydate samba/applydate \ X samba/removeheaders up2date/applydate up2date/removeheaders \ X xferlog/applydate xferlog/removeheaders XLOGWATCH_SERVICE_SCRIPTS= afpd amavis arpwatch automount autorpm cisco \ X clam-update clamav clamav-milter courier cron dhcpd exim ftpd-messages \ X ftpd-xferlog http identd imapd in.qpopper init ipop3d kernel mailscanner \ X modprobe mountd named oidentd pam pam_pwdb pam_unix pluto pop3 portsentry \ X postfix pound proftpd-messages pureftpd qmail raid rt314 samba \ X secure sendmail sendmail-largeboxes shaperd smartd sshd sshd2 \ X stunnel sudo syslogd tac_acc up2date vpopmail vsftpd yum zz-disk_space \ X zz-fortune XLOGWATCH_SHARED_SCRIPTS= applyhttpdate applystddate applyusdate \ X expandrepeats hostlist multiservice onlycontains onlyhost onlyservice \ X remove removeheaders removeservice X Xpost-patch: X @${REINPLACE_CMD} -e "s,^#!/usr/bin/perl,#!${PERL},g" \ X -e 's,BaseDir = "/etc/log.d";,BaseDir = "${PREFIX}";,' \ X -e 's,ConfigDir = ".BaseDir/conf";,ConfigDir = "$$BaseDir/etc/logwatch";,' \ X -e 's,\. "scripts/,. "libexec/logwatch/,g' \ X ${WRKSRC}/scripts/logwatch.pl X @${REINPLACE_CMD} -e "s,/etc/log.d/scripts,${PREFIX}/libexec/logwatch,g" \ X ${WRKSRC}/HOWTO-Make-Filter ${WRKSRC}/conf/logwatch.conf \ X ${WRKSRC}/conf/logfiles/clam-update.conf ${WRKSRC}/conf/services/clam-update.conf \ X ${WRKSRC}/logwatch.8 ${WRKSRC}/scripts/services/clam-update X @${REINPLACE_CMD} -e "s,/etc/log.d,${PREFIX}/etc/logwatch,g" \ X ${WRKSRC}/HOWTO-Make-Filter ${WRKSRC}/logwatch.8 X Xdo-install: X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/etc/logwatch X ${INSTALL_DATA} ${WRKSRC}/conf/logwatch.conf ${PREFIX}/etc/logwatch/logwatch.conf-dist X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/etc/logwatch/logfiles X ${INSTALL_DATA} ${WRKSRC}/conf/logfiles/*.conf ${PREFIX}/etc/logwatch/logfiles X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/etc/logwatch/services X ${INSTALL_DATA} ${WRKSRC}/conf/services/*.conf ${PREFIX}/etc/logwatch/services X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/logfiles X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/logfiles/autorpm X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/logfiles/cron X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/logfiles/samba X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/logfiles/up2date X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/logfiles/xferlog X. for i in ${LOGWATCH_LOGFILE_SCRIPTS} X ${INSTALL_SCRIPT} ${WRKSRC}/scripts/logfiles/${i} ${PREFIX}/libexec/logwatch/logfiles/${i} X. endfor X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/services X. for i in ${LOGWATCH_SERVICE_SCRIPTS} X ${INSTALL_SCRIPT} ${WRKSRC}/scripts/services/${i} ${PREFIX}/libexec/logwatch/services/. X. endfor X ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/libexec/logwatch/shared X. for i in ${LOGWATCH_SHARED_SCRIPTS} X ${INSTALL_SCRIPT} ${WRKSRC}/scripts/shared/${i} ${PREFIX}/libexec/logwatch/shared/. X. endfor X ${INSTALL_DATA} ${WRKSRC}/lib/Logwatch.pm ${PREFIX}/${SITE_PERL_REL} X ${INSTALL_SCRIPT} ${WRKSRC}/scripts/logwatch.pl ${PREFIX}/sbin/logwatch X ${INSTALL_MAN} ${WRKSRC}/logwatch.8 ${MAN8PREFIX}/man/man8/. X.if !defined(NOPORTDOCS) X ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR} X. for i in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} X. endfor X.endif X Xpre-install: X @${SED} -e 's|%%LOCALBASE%%|${PREFIX}|g' \ X -e 's|%%DOCSDIR%%|${DOCSDIR}|g' <${.CURDIR}/pkg-message >${PKGMESSAGE} X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-logwatch/Makefile echo x - logwatch/distinfo sed 's/^X//' >logwatch/distinfo << 'END-of-logwatch/distinfo' XMD5 (logwatch-5.2.2.tar.gz) = d3b676fd15e51a00027ee13b4a5ce486 XSIZE (logwatch-5.2.2.tar.gz) = 116668 END-of-logwatch/distinfo echo x - logwatch/pkg-message sed 's/^X//' >logwatch/pkg-message << 'END-of-logwatch/pkg-message' X***************************************************************************** X XYou have installed the logwatch package. X XEdit %%LOCALBASE%%/etc/logwatch/conf/logwatch.conf X XRead %%DOCSDIR%%/README to learn how to use X X***************************************************************************** END-of-logwatch/pkg-message echo x - logwatch/pkg-plist sed 's/^X//' >logwatch/pkg-plist << 'END-of-logwatch/pkg-plist' Xetc/logwatch/logfiles/autorpm.conf Xetc/logwatch/logfiles/cisco.conf Xetc/logwatch/logfiles/clam-update.conf Xetc/logwatch/logfiles/cron.conf Xetc/logwatch/logfiles/exim.conf Xetc/logwatch/logfiles/http.conf Xetc/logwatch/logfiles/maillog.conf Xetc/logwatch/logfiles/messages.conf Xetc/logwatch/logfiles/pureftp.conf Xetc/logwatch/logfiles/rt314.conf Xetc/logwatch/logfiles/samba.conf Xetc/logwatch/logfiles/secure.conf Xetc/logwatch/logfiles/tac_acc.conf Xetc/logwatch/logfiles/up2date.conf Xetc/logwatch/logfiles/vsftpd.conf Xetc/logwatch/logfiles/xferlog.conf Xetc/logwatch/logfiles/yum.conf Xetc/logwatch/logwatch.conf-dist Xetc/logwatch/services/afpd.conf Xetc/logwatch/services/amavis.conf Xetc/logwatch/services/arpwatch.conf Xetc/logwatch/services/automount.conf Xetc/logwatch/services/autorpm.conf Xetc/logwatch/services/cisco.conf Xetc/logwatch/services/clam-update.conf Xetc/logwatch/services/clamav-milter.conf Xetc/logwatch/services/clamav.conf Xetc/logwatch/services/courier.conf Xetc/logwatch/services/cron.conf Xetc/logwatch/services/dhcpd.conf Xetc/logwatch/services/exim.conf Xetc/logwatch/services/ftpd-messages.conf Xetc/logwatch/services/ftpd-xferlog.conf Xetc/logwatch/services/http.conf Xetc/logwatch/services/identd.conf Xetc/logwatch/services/imapd.conf Xetc/logwatch/services/in.qpopper.conf Xetc/logwatch/services/init.conf Xetc/logwatch/services/ipop3d.conf Xetc/logwatch/services/kernel.conf Xetc/logwatch/services/mailscanner.conf Xetc/logwatch/services/modprobe.conf Xetc/logwatch/services/mountd.conf Xetc/logwatch/services/named.conf Xetc/logwatch/services/oidentd.conf Xetc/logwatch/services/pam.conf Xetc/logwatch/services/pam_pwdb.conf Xetc/logwatch/services/pam_unix.conf Xetc/logwatch/services/pluto.conf Xetc/logwatch/services/pop3.conf Xetc/logwatch/services/portsentry.conf Xetc/logwatch/services/postfix.conf Xetc/logwatch/services/pound.conf Xetc/logwatch/services/proftpd-messages.conf Xetc/logwatch/services/pureftpd.conf Xetc/logwatch/services/qmail.conf Xetc/logwatch/services/raid.conf Xetc/logwatch/services/rt314.conf Xetc/logwatch/services/samba.conf Xetc/logwatch/services/secure.conf Xetc/logwatch/services/sendmail-largeboxes.conf Xetc/logwatch/services/sendmail.conf Xetc/logwatch/services/shaperd.conf Xetc/logwatch/services/smartd.conf Xetc/logwatch/services/sshd.conf Xetc/logwatch/services/sshd2.conf Xetc/logwatch/services/stunnel.conf Xetc/logwatch/services/sudo.conf Xetc/logwatch/services/syslogd.conf Xetc/logwatch/services/tac_acc.conf Xetc/logwatch/services/up2date.conf Xetc/logwatch/services/vpopmail.conf Xetc/logwatch/services/vsftpd.conf Xetc/logwatch/services/yum.conf Xetc/logwatch/services/zz-disk_space.conf Xetc/logwatch/services/zz-fortune.conf Xlibexec/logwatch/logfiles/autorpm/applydate Xlibexec/logwatch/logfiles/cron/applydate Xlibexec/logwatch/logfiles/samba/applydate Xlibexec/logwatch/logfiles/samba/removeheaders Xlibexec/logwatch/logfiles/up2date/applydate Xlibexec/logwatch/logfiles/up2date/removeheaders Xlibexec/logwatch/logfiles/xferlog/applydate Xlibexec/logwatch/logfiles/xferlog/removeheaders Xlibexec/logwatch/services/afpd Xlibexec/logwatch/services/amavis Xlibexec/logwatch/services/arpwatch Xlibexec/logwatch/services/automount Xlibexec/logwatch/services/autorpm Xlibexec/logwatch/services/cisco Xlibexec/logwatch/services/clam-update Xlibexec/logwatch/services/clamav Xlibexec/logwatch/services/clamav-milter Xlibexec/logwatch/services/courier Xlibexec/logwatch/services/cron Xlibexec/logwatch/services/dhcpd Xlibexec/logwatch/services/exim Xlibexec/logwatch/services/ftpd-messages Xlibexec/logwatch/services/ftpd-xferlog Xlibexec/logwatch/services/http Xlibexec/logwatch/services/identd Xlibexec/logwatch/services/imapd Xlibexec/logwatch/services/in.qpopper Xlibexec/logwatch/services/init Xlibexec/logwatch/services/ipop3d Xlibexec/logwatch/services/kernel Xlibexec/logwatch/services/mailscanner Xlibexec/logwatch/services/modprobe Xlibexec/logwatch/services/mountd Xlibexec/logwatch/services/named Xlibexec/logwatch/services/oidentd Xlibexec/logwatch/services/pam Xlibexec/logwatch/services/pam_pwdb Xlibexec/logwatch/services/pam_unix Xlibexec/logwatch/services/pluto Xlibexec/logwatch/services/pop3 Xlibexec/logwatch/services/portsentry Xlibexec/logwatch/services/postfix Xlibexec/logwatch/services/pound Xlibexec/logwatch/services/proftpd-messages Xlibexec/logwatch/services/pureftpd Xlibexec/logwatch/services/qmail Xlibexec/logwatch/services/raid Xlibexec/logwatch/services/rt314 Xlibexec/logwatch/services/samba Xlibexec/logwatch/services/secure Xlibexec/logwatch/services/sendmail Xlibexec/logwatch/services/sendmail-largeboxes Xlibexec/logwatch/services/shaperd Xlibexec/logwatch/services/smartd Xlibexec/logwatch/services/sshd Xlibexec/logwatch/services/sshd2 Xlibexec/logwatch/services/stunnel Xlibexec/logwatch/services/sudo Xlibexec/logwatch/services/syslogd Xlibexec/logwatch/services/tac_acc Xlibexec/logwatch/services/up2date Xlibexec/logwatch/services/vpopmail Xlibexec/logwatch/services/vsftpd Xlibexec/logwatch/services/yum Xlibexec/logwatch/services/zz-disk_space Xlibexec/logwatch/services/zz-fortune Xlibexec/logwatch/shared/applyhttpdate Xlibexec/logwatch/shared/applystddate Xlibexec/logwatch/shared/applyusdate Xlibexec/logwatch/shared/expandrepeats Xlibexec/logwatch/shared/hostlist Xlibexec/logwatch/shared/multiservice Xlibexec/logwatch/shared/onlycontains Xlibexec/logwatch/shared/onlyhost Xlibexec/logwatch/shared/onlyservice Xlibexec/logwatch/shared/remove Xlibexec/logwatch/shared/removeheaders Xlibexec/logwatch/shared/removeservice X%%SITE_PERL%%/Logwatch.pm Xsbin/logwatch X@dirrm libexec/logwatch/shared X@dirrm libexec/logwatch/services X@dirrm libexec/logwatch/logfiles/xferlog X@dirrm libexec/logwatch/logfiles/up2date X@dirrm libexec/logwatch/logfiles/samba X@dirrm libexec/logwatch/logfiles/cron X@dirrm libexec/logwatch/logfiles/autorpm X@dirrm libexec/logwatch/logfiles X@dirrm libexec/logwatch X@dirrm etc/logwatch/services X@dirrm etc/logwatch/logfiles X@dirrm etc/logwatch END-of-logwatch/pkg-plist exit --- logwatch-5.2.2.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 19:02:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDEB816A4CF; Sun, 12 Dec 2004 19:02:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 945F343D45; Sun, 12 Dec 2004 19:02:21 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCJ2LHv024679; Sun, 12 Dec 2004 19:02:21 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCJ2LCk024674; Sun, 12 Dec 2004 19:02:21 GMT (envelope-from pav) Date: Sun, 12 Dec 2004 19:02:21 GMT From: Pav Lucistnik Message-Id: <200412121902.iBCJ2LCk024674@freefall.freebsd.org> To: res0d26i@verizon.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/74994: beep-media-player 0.9.7 coredump on exit bug/patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 19:02:21 -0000 Synopsis: beep-media-player 0.9.7 coredump on exit bug/patch State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Sun Dec 12 19:02:07 GMT 2004 State-Changed-Why: Asked maintainer for opinion. Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Sun Dec 12 19:02:07 GMT 2004 Responsible-Changed-Why: Handle. http://www.freebsd.org/cgi/query-pr.cgi?pr=74994 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 19:40:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42EBD16A4CE for ; Sun, 12 Dec 2004 19:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FC2243D58 for ; Sun, 12 Dec 2004 19:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCJeMt4030408 for ; Sun, 12 Dec 2004 19:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCJeMMW030407; Sun, 12 Dec 2004 19:40:22 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 19:40:22 GMT Resent-Message-Id: <200412121940.iBCJeMMW030407@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, "Arjan van Leeuwen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 235EF16A4CE for ; Sun, 12 Dec 2004 19:34:48 +0000 (GMT) Received: from winston.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id E1F8D43D53 for ; Sun, 12 Dec 2004 19:34:46 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 1844 invoked from network); 12 Dec 2004 19:34:45 -0000 Received: from unknown (HELO vincent.piwebs.com) (192.168.0.73) by winston.piwebs.com with SMTP; 12 Dec 2004 19:34:45 -0000 Message-Id: <1102880090.0@vincent.piwebs.com> Date: Sun, 12 Dec 2004 20:34:50 +0100 From: "Arjan van Leeuwen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4 Subject: ports/74997: Update graphics/ImageMagick to 6.1.6-6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 19:40:23 -0000 >Number: 74997 >Category: ports >Synopsis: Update graphics/ImageMagick to 6.1.6-6 >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 Dec 12 19:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Arjan van Leeuwen >Release: FreeBSD 6.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 6.0-CURRENT #0: Tue Dec 7 18:51:10 CET 2004 root@vincent.piwebs.com:/usr/obj/usr/src/sys/VINCENT >Description: Update ImageMagick to version 6.1.6-6. >How-To-Repeat: >Fix: --- ImageMagick.diff begins here --- diff -urN /usr/ports/graphics/ImageMagick/Makefile ImageMagick/Makefile --- /usr/ports/graphics/ImageMagick/Makefile Sun Dec 12 19:57:00 2004 +++ ImageMagick/Makefile Sun Dec 12 20:14:43 2004 @@ -6,7 +6,7 @@ # PORTNAME= ImageMagick -PORTVERSION= 6.1.6.4 +PORTVERSION= 6.1.6.6 CATEGORIES= graphics perl5 MASTER_SITES= ftp://ftp.imagemagick.org/pub/%SUBDIR%/ \ ftp://gd.tuwien.ac.at/pub/graphics/%SUBDIR%/ \ diff -urN /usr/ports/graphics/ImageMagick/distinfo ImageMagick/distinfo --- /usr/ports/graphics/ImageMagick/distinfo Sun Dec 12 19:57:01 2004 +++ ImageMagick/distinfo Sun Dec 12 20:15:25 2004 @@ -1,2 +1,2 @@ -MD5 (ImageMagick-6.1.6-4.tar.bz2) = 0d16603e0859c7b41a4510965e242443 -SIZE (ImageMagick-6.1.6-4.tar.bz2) = 4560744 +MD5 (ImageMagick-6.1.6-6.tar.bz2) = b832ecc8658687a67ee79413d169651c +SIZE (ImageMagick-6.1.6-6.tar.bz2) = 4558859 --- ImageMagick.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 20:40:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF24416A4CE for ; Sun, 12 Dec 2004 20:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A00AB43D6A for ; Sun, 12 Dec 2004 20:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCKeNoN036793 for ; Sun, 12 Dec 2004 20:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCKeNru036772; Sun, 12 Dec 2004 20:40:23 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 20:40:23 GMT Resent-Message-Id: <200412122040.iBCKeNru036772@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, Serge Gagnon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44ABC16A4CE for ; Sun, 12 Dec 2004 20:36:05 +0000 (GMT) Received: from tomts22-srv.bellnexxia.net (tomts22.bellnexxia.net [209.226.175.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA3C543D5C for ; Sun, 12 Dec 2004 20:36:04 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts22-srv.bellnexxia.netESMTP <20041212203603.SXHF1919.tomts22-srv.bellnexxia.net@quenix1.dyndns.org> for ; Sun, 12 Dec 2004 15:36:03 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.43 (FreeBSD)) id 1CdaTq-000NzR-LZ for FreeBSD-gnats-submit@freebsd.org; Sun, 12 Dec 2004 15:38:10 -0500 Message-Id: Date: Sun, 12 Dec 2004 15:38:10 -0500 From: Serge Gagnon Sender: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/74998: Update port: audio/baudline to 0.99 and fix fetch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 20:40:24 -0000 >Number: 74998 >Category: ports >Synopsis: Update port: audio/baudline to 0.99 and fix fetch >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 Dec 12 20:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.10-STABLE i386 >Organization: me >Environment: System: FreeBSD quenix1.dyndns.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Dec 2 14:23:49 EST 2004 root@quenix1.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: Update to version 0.99 Fix distfile unfetchable >How-To-Repeat: >Fix: --- patch-Makefile begins here --- --- Makefile.orig Sun Dec 12 15:31:32 2004 +++ Makefile Sun Dec 12 15:32:30 2004 @@ -6,7 +6,7 @@ # PORTNAME= baudline -PORTVERSION= 0.98 +PORTVERSION= 0.99 CATEGORIES= audio linux MASTER_SITES= http://www.baudline.com/ PKGNAMEPREFIX= linux- @@ -16,8 +16,6 @@ COMMENT= A real-time signal analysis tool and an offline time-frequency browser RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 - -BROKEN= Unfetchable USE_X_PREFIX= yes ONLY_FOR_ARCHS= i386 --- patch-Makefile ends here --- --- patch-distinfo begins here --- --- distinfo.orig Sun Dec 12 15:31:57 2004 +++ distinfo Sun Dec 12 15:32:43 2004 @@ -1,2 +1,2 @@ -MD5 (baudline_0.98_i686.tar.gz) = ad7b895535e642096616c500e4e0540f -SIZE (baudline_0.98_i686.tar.gz) = 795919 +MD5 (baudline_0.99_i686.tar.gz) = 6a6535edcceb637de525b58216ddf82c +SIZE (baudline_0.99_i686.tar.gz) = 811726 --- patch-distinfo ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 21:41:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 868BF16A4CE; Sun, 12 Dec 2004 21:41:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63BCC43D3F; Sun, 12 Dec 2004 21:41:24 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCLfOLH043294; Sun, 12 Dec 2004 21:41:24 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCLfOUS043290; Sun, 12 Dec 2004 21:41:24 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 21:41:24 GMT From: Sergey Matveychuk Message-Id: <200412122141.iBCLfOUS043290@freefall.freebsd.org> To: johans@stack.nl, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74995: Update port: dns/dnssecwalker upgrade to 3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 21:41:24 -0000 Synopsis: Update port: dns/dnssecwalker upgrade to 3.5 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 21:40:55 GMT 2004 State-Changed-Why: Committed, thanks! You're a maintainer now. http://www.freebsd.org/cgi/query-pr.cgi?pr=74995 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 21:48:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A79FE16A4CE; Sun, 12 Dec 2004 21:48:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FA8C43D49; Sun, 12 Dec 2004 21:48:20 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCLmKe5043446; Sun, 12 Dec 2004 21:48:20 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCLmKCH043442; Sun, 12 Dec 2004 21:48:20 GMT (envelope-from thierry) Date: Sun, 12 Dec 2004 21:48:20 GMT From: Thierry Thomas Message-Id: <200412122148.iBCLmKCH043442@freefall.freebsd.org> To: rui@ruilopes.com, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74964: Update port: devel/aap to 1.072 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 21:48:20 -0000 Synopsis: Update port: devel/aap to 1.072 State-Changed-From-To: open->closed State-Changed-By: thierry State-Changed-When: Sun Dec 12 21:47:58 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74964 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:01:06 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C96816A4CF; Sun, 12 Dec 2004 22:01:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69F8143D54; Sun, 12 Dec 2004 22:01:06 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCM16Rf043933; Sun, 12 Dec 2004 22:01:06 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCM15XX043929; Sun, 12 Dec 2004 22:01:05 GMT (envelope-from linimon) Date: Sun, 12 Dec 2004 22:01:05 GMT From: Mark Linimon Message-Id: <200412122201.iBCM15XX043929@freefall.freebsd.org> To: root@builder.jawa.at, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74954: [PATCH] security/fwlogwatch: [Fix broken ipfw parser on FBSD4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:01:06 -0000 Synopsis: [PATCH] security/fwlogwatch: [Fix broken ipfw parser on FBSD4] State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Dec 12 22:00:40 GMT 2004 State-Changed-Why: Superceeded by ports/74984. http://www.freebsd.org/cgi/query-pr.cgi?pr=74954 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:04:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2085516A4D3; Sun, 12 Dec 2004 22:04:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED73143D1F; Sun, 12 Dec 2004 22:04:24 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCM4OWV044009; Sun, 12 Dec 2004 22:04:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCM4OSM044005; Sun, 12 Dec 2004 22:04:24 GMT (envelope-from edwin) Date: Sun, 12 Dec 2004 22:04:24 GMT From: Edwin Groothuis Message-Id: <200412122204.iBCM4OSM044005@freefall.freebsd.org> To: bogorodskiy@inbox.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74959: [ maintainer ] audio/xmms-wma: turn on iconv support again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:04:25 -0000 Synopsis: [ maintainer ] audio/xmms-wma: turn on iconv support again State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Dec 12 22:04:23 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74959 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:22:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 583BA16A4CE; Sun, 12 Dec 2004 22:22:21 +0000 (GMT) Received: from skynet.stack.nl (skynet.stack.nl [131.155.140.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 925F443D54; Sun, 12 Dec 2004 22:22:20 +0000 (GMT) (envelope-from johans@mailhost.gletsjer.net) Received: by skynet.stack.nl (Postfix, from userid 65534) id 7B0913F29; Sun, 12 Dec 2004 23:22:37 +0100 (CET) Received: from mailhost.gletsjer.net (tunnel03.ipv6.stack.nl [IPv6:2001:610:1108:5001::3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by skynet.stack.nl (Postfix) with ESMTP id 151313F16; Sun, 12 Dec 2004 23:22:37 +0100 (CET) Received: by mailhost.gletsjer.net (Postfix, from userid 801) id B8F5E433C; Sun, 12 Dec 2004 23:22:17 +0100 (CET) Date: Sun, 12 Dec 2004 23:22:17 +0100 From: Johan van Selst To: Sergey Matveychuk Message-ID: <20041212222217.GA63573@taz.gletsjer.net> References: <200412122141.iBCLfOUS043290@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200412122141.iBCLfOUS043290@freefall.freebsd.org> User-Agent: Mutt/1.5.6i X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on skynet.stack.nl X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74995: Update port: dns/dnssecwalker upgrade to 3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:22:21 -0000 Sergey Matveychuk wrote: > Committed, thanks! > You're a maintainer now. Thanks. Argh! Only now I realize that dns/walker refers to exactly the same software (version 3.2). Having two ports for the same thing is obviously nonsense, but I'm not sure how to proceed now. Since the executable is called 'walker', that is probably the best name for the port as well (although less obvious for it's purpose). Either port should be killed and the new version be 3.5. Should I open a new PR for this? Johan From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:27:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2294416A4CE; Sun, 12 Dec 2004 22:27:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0E8E43D2D; Sun, 12 Dec 2004 22:27:12 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMRCn2048464; Sun, 12 Dec 2004 22:27:12 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMRCNC048460; Sun, 12 Dec 2004 22:27:12 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 22:27:12 GMT From: Sergey Matveychuk Message-Id: <200412122227.iBCMRCNC048460@freefall.freebsd.org> To: freebsdpr@cmh.parliant.com, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71314: [feature request] Impossible to know which WITH_* variables are available for a port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:27:13 -0000 Synopsis: [feature request] Impossible to know which WITH_* variables are available for a port State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 22:25:36 GMT 2004 State-Changed-Why: It's a known problem. We're working on a new OPTIONs macro. It's a beta now but a few ports already use it. It fix a problem of undescribed port options. http://www.freebsd.org/cgi/query-pr.cgi?pr=71314 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:28:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F06016A4CF; Sun, 12 Dec 2004 22:28:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE55943D1F; Sun, 12 Dec 2004 22:28:51 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMSpMX048539; Sun, 12 Dec 2004 22:28:51 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMSpxG048535; Sun, 12 Dec 2004 22:28:51 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 22:28:51 GMT From: Sergey Matveychuk Message-Id: <200412122228.iBCMSpxG048535@freefall.freebsd.org> To: gaoj@cpsc.ucalgary.ca, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71350: [patch] databases/mysqlcc broken with mysql41-* after updating to mysql-4.1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:28:52 -0000 Synopsis: [patch] databases/mysqlcc broken with mysql41-* after updating to mysql-4.1.4 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 22:28:37 GMT 2004 State-Changed-Why: Fixed with ports/74885. http://www.freebsd.org/cgi/query-pr.cgi?pr=71350 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:34:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88BF216A4CE; Sun, 12 Dec 2004 22:34:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC3E43D3F; Sun, 12 Dec 2004 22:34:29 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMYTfF049791; Sun, 12 Dec 2004 22:34:29 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMYQGH049783; Sun, 12 Dec 2004 22:34:26 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 22:34:26 GMT From: Sergey Matveychuk Message-Id: <200412122234.iBCMYQGH049783@freefall.freebsd.org> To: tage@ifi.uit.no, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71643: ports/mail/py-mimelib is retired X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:34:29 -0000 Synopsis: ports/mail/py-mimelib is retired State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 22:32:55 GMT 2004 State-Changed-Why: Closed as since the port maintainer reject it. http://www.freebsd.org/cgi/query-pr.cgi?pr=71643 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:40:02 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7728216A4CE; Sun, 12 Dec 2004 22:40:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 522E743D60; Sun, 12 Dec 2004 22:40:02 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMe26b053136; Sun, 12 Dec 2004 22:40:02 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMe2tB053132; Sun, 12 Dec 2004 22:40:02 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 22:40:02 GMT From: Sergey Matveychuk Message-Id: <200412122240.iBCMe2tB053132@freefall.freebsd.org> To: maho@freebsd.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71702: update octave forge X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:40:02 -0000 Synopsis: update octave forge State-Changed-From-To: suspended->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 22:39:53 GMT 2004 State-Changed-Why: Already updated. http://www.freebsd.org/cgi/query-pr.cgi?pr=71702 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:40:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E81416A4CE for ; Sun, 12 Dec 2004 22:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AC9943D5D for ; Sun, 12 Dec 2004 22:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMeQ5D053198 for ; Sun, 12 Dec 2004 22:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMeQHb053197; Sun, 12 Dec 2004 22:40:26 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 22:40:26 GMT Message-Id: <200412122240.iBCMeQHb053197@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/71643: ports/mail/py-mimelib is retired X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:40:26 -0000 The following reply was made to PR ports/71643; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, tage@ifi.uit.no, estartu@augusta.de Cc: Subject: Re: ports/71643: ports/mail/py-mimelib is retired Date: Mon, 13 Dec 2004 01:32:55 +0300 2maintainer: you should check a python version then. I'll close the PR. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:50:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A1E616A4CF for ; Sun, 12 Dec 2004 22:50:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65F6543D49 for ; Sun, 12 Dec 2004 22:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMoGJs053422 for ; Sun, 12 Dec 2004 22:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMoFlk053421; Sun, 12 Dec 2004 22:50:15 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 22:50:15 GMT Message-Id: <200412122250.iBCMoFlk053421@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/71832: Default Valgrind suppresion files for different FreeBSD releases X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:50:16 -0000 The following reply was made to PR ports/71832; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, barner@in.tum.de Cc: Subject: Re: ports/71832: Default Valgrind suppresion files for different FreeBSD releases Date: Mon, 13 Dec 2004 01:43:12 +0300 Dear maintainer! What is the status of the PR? -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 22:50:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1FBE16A4CF for ; Sun, 12 Dec 2004 22:50:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF56F43D53 for ; Sun, 12 Dec 2004 22:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCMoG93053435 for ; Sun, 12 Dec 2004 22:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCMoGci053434; Sun, 12 Dec 2004 22:50:16 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 22:50:16 GMT Resent-Message-Id: <200412122250.iBCMoGci053434@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, Serge Gagnon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 724EB16A4CE for ; Sun, 12 Dec 2004 22:43:47 +0000 (GMT) Received: from tomts16-srv.bellnexxia.net (tomts16.bellnexxia.net [209.226.175.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id C481B43D2F for ; Sun, 12 Dec 2004 22:43:46 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts16-srv.bellnexxia.netESMTP <20041212224346.XAUI1836.tomts16-srv.bellnexxia.net@quenix1.dyndns.org> for ; Sun, 12 Dec 2004 17:43:46 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.43 (FreeBSD)) id 1CdcTR-0006fP-7X for FreeBSD-gnats-submit@freebsd.org; Sun, 12 Dec 2004 17:45:53 -0500 Message-Id: Date: Sun, 12 Dec 2004 17:45:53 -0500 From: Serge Gagnon Sender: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75000: Patch port: audio/wsoundprefs unbroke port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 22:50:17 -0000 >Number: 75000 >Category: ports >Synopsis: Patch port: audio/wsoundprefs unbroke port >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 Dec 12 22:50:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.10-STABLE i386 >Organization: me >Environment: System: FreeBSD quenix1.dyndns.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Dec 2 14:23:49 EST 2004 root@quenix1.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: Unbroke this port: o this port need libXft to link now (patch-Imakefile) o function WMCreateNormalFont disapear somewhere between version 1.50 and 1.21 of WINGs/wfont.c on the wmaker cvs (patch-WSoundPrefs.c) o function RDestroyImage is now renamed RReleaseImage (patch-main.c) Replace file/patch-ab by patch-Imakefile New file: file/patch-Imakefile file/patch-WSoundPrefs.c file/patch-main.c >How-To-Repeat: >Fix: --- patch-Makefile.diff begins here --- --- Makefile.orig Sun Dec 12 15:53:44 2004 +++ Makefile Sun Dec 12 15:54:06 2004 @@ -15,8 +15,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A utility for configuring sounds to play for Window Maker events -BROKEN= "Does not build with new version of windowmaker" - BUILD_DEPENDS= wmaker:${PORTSDIR}/x11-wm/windowmaker LIB_DEPENDS= PropList.2:${PORTSDIR}/devel/libPropList \ wsound.1:${PORTSDIR}/audio/wsoundserver --- patch-Makefile.diff ends here --- --- patch-Imakefile begins here --- --- src/Imakefile.orig Mon Oct 18 04:35:58 1999 +++ src/Imakefile Sun Dec 12 16:48:09 2004 @@ -5,9 +5,9 @@ ICONS = WSoundPrefs.xpm WSoundPrefs.tiff -CC = gcc +XCOMM CC = gcc -BINDIR = /Apps/WSoundPrefs.app +BINDIR = /GNUstep/Apps/WSoundPrefs.app XCOMM EFENCELIB = -lefence EFENCELIB = @@ -18,9 +18,9 @@ WRASTERCFLAGS = `get-wraster-flags --cflags` WRASTERLFLAGS = `get-wraster-flags --lflags` WRASTERLIBS = `get-wraster-flags --libs` -WINGSLIBS = -lWINGs -lPropList - -STD_INCLUDES = $(WRASTERCFLAGS) $(WSOUNDCFLAGS) +WINGSLIBS = -lWINGs -lXft -L/$(LOCALBASE)/lib -lPropList + +STD_INCLUDES = $(WRASTERCFLAGS) -I${LOCALBASE}/include -I${X11BASE}/include -I${X11BASE}/include/WINGs DEPLIBS = $(DEPXLIB) LOCAL_LIBRARIES = $(XLIB) $(WINGSLIBS) $(WSOUNDLFLAGS) $(WSOUNDLIBS) $(WRASTERLFLAGS) $(WRASTERLIBS) $(EFENCELIB) @@ -30,7 +30,7 @@ SRCS = PLFunctions.c SoundEvents.c SoundPaths.c SystemInfo.c WSoundPrefs.c main.c OBJS = PLFunctions.o SoundEvents.o SoundPaths.o SystemInfo.o WSoundPrefs.o main.o -ComplexProgramTarget(WSoundPrefs) +ComplexProgramTargetNoMan(WSoundPrefs) InstallMultiple($(ICONS),$(BINDIR)) --- patch-Imakefile ends here --- --- patch-WSoundPrefs.c begins here --- --- src/WSoundPrefs.c.orig Sun Dec 12 17:17:37 2004 +++ src/WSoundPrefs.c Sun Dec 12 17:24:29 2004 @@ -407,7 +407,7 @@ WMResizeWidget(panel->copyrightL, 448, 20); WMMoveWidget(panel->copyrightL, 8, 178); WMSetLabelTextAlignment(panel->copyrightL, WACenter); - font = WMCreateNormalFont(scr, "-*-helvetica-medium-r-normal-*-10-*-*-*-*-*-*-*"); + font = WMCreateFont(scr, "-*-helvetica-medium-r-normal-*-10-*-*-*-*-*-*-*"); if (font) WMSetLabelText(panel->copyrightL, "Copyright \xa9 1999 The Az\xe5rg-r\xfbh"); else { --- patch-WSoundPrefs.c ends here --- --- patch-main.c begins here --- --- src/main.c.orig Sun Dec 12 16:46:36 2004 +++ src/main.c Sun Dec 12 16:46:57 2004 @@ -109,7 +109,7 @@ wwarning(_("could not load image file %s:%s"), path, RMessageForError(RErrorCode)); else { icon = WMCreatePixmapFromRImage(scr, tmp, 0); - RDestroyImage(tmp); + RReleaseImage(tmp); if (icon) { WMSetApplicationIconImage(scr, icon); WMReleasePixmap(icon); --- patch-main.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:10:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7077716A4CE for ; Sun, 12 Dec 2004 23:10:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A7FA43D46 for ; Sun, 12 Dec 2004 23:10:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNAUfP057880 for ; Sun, 12 Dec 2004 23:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNAUnT057879; Sun, 12 Dec 2004 23:10:30 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 23:10:30 GMT Message-Id: <200412122310.iBCNAUnT057879@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74590: new port request: devel/exiftool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:10:30 -0000 The following reply was made to PR ports/74590; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, bill@lefebvre.org Cc: Subject: Re: ports/74590: new port request: devel/exiftool Date: Mon, 13 Dec 2004 02:05:42 +0300 You can make the port yourself. It's easy. Just read the Porter's Hendbook. You can make your port just after reading of only one chapter (3. Quick Porting)! It's fun! Feel free for asking your questions in port@ maillist. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:10:38 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24CE016A4ED for ; Sun, 12 Dec 2004 23:10:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3ECA43D46 for ; Sun, 12 Dec 2004 23:10:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNAbhB057933 for ; Sun, 12 Dec 2004 23:10:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNAbf7057932; Sun, 12 Dec 2004 23:10:37 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 23:10:37 GMT Message-Id: <200412122310.iBCNAbf7057932@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74603: [Maintainer] Update textproc/scim andtextproc/skim to latest versions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:10:38 -0000 The following reply was made to PR ports/74603; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, gaoj@cpsc.ucalgary.ca Cc: Subject: Re: ports/74603: [Maintainer] Update textproc/scim and textproc/skim to latest versions Date: Mon, 13 Dec 2004 02:09:06 +0300 Read the Audit-Trail message please. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:17:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A54E16A4CF; Sun, 12 Dec 2004 23:17:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A9B243D5E; Sun, 12 Dec 2004 23:17:10 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNHARZ058166; Sun, 12 Dec 2004 23:17:10 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNHAAJ058162; Sun, 12 Dec 2004 23:17:10 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 23:17:10 GMT From: Sergey Matveychuk Message-Id: <200412122317.iBCNHAAJ058162@freefall.freebsd.org> To: lowtech@lowtech.ii2.cc, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72800: Update: deskutils/ksmoothdock X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:17:10 -0000 Synopsis: Update: deskutils/ksmoothdock State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 23:17:03 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=72800 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:26:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5025C16A4CE; Sun, 12 Dec 2004 23:26:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A93C43D4C; Sun, 12 Dec 2004 23:26:20 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNQKsO058533; Sun, 12 Dec 2004 23:26:20 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNQJPd058529; Sun, 12 Dec 2004 23:26:19 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 23:26:19 GMT From: Sergey Matveychuk Message-Id: <200412122326.iBCNQJPd058529@freefall.freebsd.org> To: dmitry@karasik.eu.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74814: Maintainer update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:26:20 -0000 Synopsis: Maintainer update State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 23:24:31 GMT 2004 State-Changed-Why: Committed, thanks! Mention a port name in synopsis line like this: [maintainer] x11-toolkit/p5-Prime: update to 1.16 and reset PORTREVISION when update please. http://www.freebsd.org/cgi/query-pr.cgi?pr=74814 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:32:44 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D154D16A4CE; Sun, 12 Dec 2004 23:32:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAAD043D49; Sun, 12 Dec 2004 23:32:44 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNWiO8062373; Sun, 12 Dec 2004 23:32:44 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNWihk062369; Sun, 12 Dec 2004 23:32:44 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 23:32:44 GMT From: Sergey Matveychuk Message-Id: <200412122332.iBCNWihk062369@freefall.freebsd.org> To: sepherosa@softhome.net, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74550: [FIX] devel/stlport do not utilize latest gcc's c++ feature X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:32:45 -0000 Synopsis: [FIX] devel/stlport do not utilize latest gcc's c++ feature State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sun Dec 12 23:32:38 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74550 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:35:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9467316A4CE; Sun, 12 Dec 2004 23:35:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FF7A43D4C; Sun, 12 Dec 2004 23:35:23 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNZN0n062454; Sun, 12 Dec 2004 23:35:23 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNZNRP062450; Sun, 12 Dec 2004 23:35:23 GMT (envelope-from sem) Date: Sun, 12 Dec 2004 23:35:23 GMT From: Sergey Matveychuk Message-Id: <200412122335.iBCNZNRP062450@freefall.freebsd.org> To: mranner@inode.at, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:35:23 -0000 Synopsis: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Sun Dec 12 23:34:58 GMT 2004 State-Changed-Why: Ask maintainer for approvement http://www.freebsd.org/cgi/query-pr.cgi?pr=74984 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:40:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12AF916A4FD for ; Sun, 12 Dec 2004 23:40:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D10DA43D64 for ; Sun, 12 Dec 2004 23:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNeStO062604 for ; Sun, 12 Dec 2004 23:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNeSh8062603; Sun, 12 Dec 2004 23:40:28 GMT (envelope-from gnats) Date: Sun, 12 Dec 2004 23:40:28 GMT Message-Id: <200412122340.iBCNeSh8062603@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:40:31 -0000 The following reply was made to PR ports/74984; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, jim@corebsd.or.id Cc: Subject: Re: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] Date: Mon, 13 Dec 2004 02:34:41 +0300 Dear maintainer! Take the PR into account please. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:42:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 526F816A4CE; Sun, 12 Dec 2004 23:42:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42C7743D1D; Sun, 12 Dec 2004 23:42:29 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNgTFV062741; Sun, 12 Dec 2004 23:42:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNgTXw062737; Sun, 12 Dec 2004 23:42:29 GMT (envelope-from edwin) Date: Sun, 12 Dec 2004 23:42:29 GMT From: Edwin Groothuis Message-Id: <200412122342.iBCNgTXw062737@freefall.freebsd.org> To: antonio@php.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/74620: New port: sysutils/pear-I18Nv2 PEAR Internationalization X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:42:29 -0000 Synopsis: New port: sysutils/pear-I18Nv2 PEAR Internationalization State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Dec 12 23:41:04 GMT 2004 State-Changed-Why: ===> Checking if sysutils/pear-I18Nv2 already installed ===> Installing examples in /usr/local/share/examples/pear/I18Nv2. 'iconv' PHP extension is not installed I18Nv2: Dependencies failed [/usr/home/edwin/cvs/ports/NEW/pear-I18Nv2] root@k7>php -m [PHP Modules] [...] iconv [...] Suggestions on what I should check further? Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 12 23:41:04 GMT 2004 Responsible-Changed-Why: I'll take it up with maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=74620 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:47:54 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FEAA16A4CE; Sun, 12 Dec 2004 23:47:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEB7443D4C; Sun, 12 Dec 2004 23:47:53 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNlrss062881; Sun, 12 Dec 2004 23:47:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNlrJA062877; Sun, 12 Dec 2004 23:47:53 GMT (envelope-from edwin) Date: Sun, 12 Dec 2004 23:47:53 GMT From: Edwin Groothuis Message-Id: <200412122347.iBCNlrJA062877@freefall.freebsd.org> To: antonio@php.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74611: New port: net/pear-Net_DNSBL PEAR DNSBL Checker X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:47:54 -0000 Synopsis: New port: net/pear-Net_DNSBL PEAR DNSBL Checker State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Dec 12 23:47:52 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74611 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:50:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4850916A4CF for ; Sun, 12 Dec 2004 23:50:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD8E843D68 for ; Sun, 12 Dec 2004 23:50:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNo9KP062988 for ; Sun, 12 Dec 2004 23:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNo9c1062987; Sun, 12 Dec 2004 23:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 23:50:09 GMT Resent-Message-Id: <200412122350.iBCNo9c1062987@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88F8D16A4CE for ; Sun, 12 Dec 2004 23:42:46 +0000 (GMT) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D0943D31 for ; Sun, 12 Dec 2004 23:42:45 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.235.28] (HELO santinel.home.ua) by mail.alkar.net (CommuniGate Pro SMTP 4.2.6) with ESMTP-TLS id 244867165 for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Dec 2004 01:42:41 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1CdcBI-000Ibq-Nb for ; Mon, 13 Dec 2004 00:27:08 +0200 Message-Id: Date: Mon, 13 Dec 2004 00:27:08 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75003: [PATCH] editors/xemacs-mule-packages: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:50:10 -0000 >Number: 75003 >Category: ports >Synopsis: [PATCH] editors/xemacs-mule-packages: update to new version >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: Sun Dec 12 23:50:09 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: Update from version 3.7 to 3.8 >How-To-Repeat: >Fix: --- xemacs-mule-packages.diff begins here --- diff -ru xemacs-mule-packages/Makefile xemacs-mule-packages.new/Makefile --- xemacs-mule-packages/Makefile Thu Jan 22 13:05:54 2004 +++ xemacs-mule-packages.new/Makefile Mon Dec 13 00:23:07 2004 @@ -6,19 +6,18 @@ # PORTNAME= xemacs-mule-packages -PORTVERSION= 3.7 +PORTVERSION= 3.8 CATEGORIES= editors elisp -MASTER_SITES= ${MASTER_SITE_LOCAL:S|%SUBDIR%|kiri/xemacs|} \ - ${MASTER_SITE_XEMACS:S|%SUBDIR%|packages|} +MASTER_SITES= ${MASTER_SITE_XEMACS:S|%SUBDIR%|packages|} DISTFILES= \ edict-1.16-pkg.tar.gz \ egg-its-1.27-pkg.tar.gz \ - latin-unity-1.09-pkg.tar.gz \ + latin-unity-1.10-pkg.tar.gz \ leim-1.22-pkg.tar.gz \ locale-1.21-pkg.tar.gz \ lookup-1.14-pkg.tar.gz \ - mule-base-1.44-pkg.tar.gz \ - mule-ucs-1.05-pkg.tar.gz \ + mule-base-1.46-pkg.tar.gz \ + mule-ucs-1.06-pkg.tar.gz \ skk-1.23-pkg.tar.gz DIST_SUBDIR= xemacs diff -ru xemacs-mule-packages/distinfo xemacs-mule-packages.new/distinfo --- xemacs-mule-packages/distinfo Wed Mar 31 06:07:39 2004 +++ xemacs-mule-packages.new/distinfo Sun Dec 12 19:05:13 2004 @@ -1,18 +1,18 @@ -MD5 (xemacs/edict-1.16-pkg.tar.gz) = 406e55fda150ec0ea22b79580279be95 -SIZE (xemacs/edict-1.16-pkg.tar.gz) = 96111 +MD5 (xemacs/edict-1.16-pkg.tar.gz) = 5f29b38cffce966d9ae0b5fc9d47a100 +SIZE (xemacs/edict-1.16-pkg.tar.gz) = 41992 MD5 (xemacs/egg-its-1.27-pkg.tar.gz) = 6027d90327043f918d8a4ea3143ae7d2 SIZE (xemacs/egg-its-1.27-pkg.tar.gz) = 261339 -MD5 (xemacs/latin-unity-1.09-pkg.tar.gz) = 83b7fd603ad7cd5d9c459a0035501cac -SIZE (xemacs/latin-unity-1.09-pkg.tar.gz) = 106267 -MD5 (xemacs/leim-1.22-pkg.tar.gz) = 942fbcd4d56eb59529bbd15c3b6c0b3b -SIZE (xemacs/leim-1.22-pkg.tar.gz) = 1708319 +MD5 (xemacs/latin-unity-1.10-pkg.tar.gz) = 7f54d420d003e4dffac0b1bfbba36680 +SIZE (xemacs/latin-unity-1.10-pkg.tar.gz) = 109778 +MD5 (xemacs/leim-1.22-pkg.tar.gz) = d41d8cd98f00b204e9800998ecf8427e +SIZE (xemacs/leim-1.22-pkg.tar.gz) = 0 MD5 (xemacs/locale-1.21-pkg.tar.gz) = 2256243bb8cdd282af7b40bc2cf30018 SIZE (xemacs/locale-1.21-pkg.tar.gz) = 36961 MD5 (xemacs/lookup-1.14-pkg.tar.gz) = f48776563d7fbd0852ad73ac9c513260 SIZE (xemacs/lookup-1.14-pkg.tar.gz) = 225996 -MD5 (xemacs/mule-base-1.44-pkg.tar.gz) = 9eaa93208008617bd8f0d34448dcfaa3 -SIZE (xemacs/mule-base-1.44-pkg.tar.gz) = 444749 -MD5 (xemacs/mule-ucs-1.05-pkg.tar.gz) = 772c06a697d0b3b4d7b78e8df76c019c -SIZE (xemacs/mule-ucs-1.05-pkg.tar.gz) = 1314530 +MD5 (xemacs/mule-base-1.46-pkg.tar.gz) = 7cdd7138ecce79c3d2c84546d39d1e50 +SIZE (xemacs/mule-base-1.46-pkg.tar.gz) = 444839 +MD5 (xemacs/mule-ucs-1.06-pkg.tar.gz) = 3633cf6cf72ffaeef445022df788f647 +SIZE (xemacs/mule-ucs-1.06-pkg.tar.gz) = 1292593 MD5 (xemacs/skk-1.23-pkg.tar.gz) = dc35f20896a56c8cf2e7ba16b15e453b SIZE (xemacs/skk-1.23-pkg.tar.gz) = 1506691 --- xemacs-mule-packages.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:50:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 426F816A4CE for ; Sun, 12 Dec 2004 23:50:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ADA943D46 for ; Sun, 12 Dec 2004 23:50:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNo9vU063002 for ; Sun, 12 Dec 2004 23:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNo9mT063000; Sun, 12 Dec 2004 23:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 23:50:09 GMT Resent-Message-Id: <200412122350.iBCNo9mT063000@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE13C16A4CE for ; Sun, 12 Dec 2004 23:42:53 +0000 (GMT) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C00C43D2D for ; Sun, 12 Dec 2004 23:42:53 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.235.28] (HELO santinel.home.ua) by mail.alkar.net (CommuniGate Pro SMTP 4.2.6) with ESMTP-TLS id 244867186 for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Dec 2004 01:42:50 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1Cdc2W-000IYb-97 for ; Mon, 13 Dec 2004 00:18:04 +0200 Message-Id: Date: Mon, 13 Dec 2004 00:18:04 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75004: [MANTAINER] net/kf: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:50:10 -0000 >Number: 75004 >Category: ports >Synopsis: [MANTAINER] net/kf: update to new version >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: Sun Dec 12 23:50:09 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: >How-To-Repeat: >Fix: --- kf.diff begins here --- diff -ru /usr/ports/net/kf/Makefile kf/Makefile --- /usr/ports/net/kf/Makefile Mon Nov 8 07:24:22 2004 +++ kf/Makefile Mon Dec 13 00:14:30 2004 @@ -6,8 +6,7 @@ # PORTNAME= kf -PORTVERSION= 0.1.8 -PORTREVISION= 1 +PORTVERSION= 0.2 CATEGORIES= net MASTER_SITES= http://www.habazie.rams.pl/kf/files/ \ http://www.jabberstudio.org/projects/kf/releases/ diff -ru /usr/ports/net/kf/distinfo kf/distinfo --- /usr/ports/net/kf/distinfo Tue Oct 19 04:28:20 2004 +++ kf/distinfo Tue Dec 7 21:51:05 2004 @@ -1,2 +1,2 @@ -MD5 (kf-0.1.8.tar.gz) = 41838eb68bc84297e9594188fdb9c35a -SIZE (kf-0.1.8.tar.gz) = 274044 +MD5 (kf-0.2.tar.gz) = 61091daffbd03ef4eb3155df3abed0ca +SIZE (kf-0.2.tar.gz) = 294670 diff -ru /usr/ports/net/kf/pkg-plist kf/pkg-plist --- /usr/ports/net/kf/pkg-plist Tue Oct 19 04:56:12 2004 +++ kf/pkg-plist Sun Dec 12 23:59:21 2004 @@ -112,7 +112,10 @@ share/kf/www.png share/kf/xa.png share/locale/pl/LC_MESSAGES/kf.mo +share/locale/ru/LC_MESSAGES/kf.mo @dirrm share/locale/pl/LC_MESSAGES +@dirrm share/locale/ru/LC_MESSAGES @dirrm share/locale/pl +@dirrm share/locale/ru @dirrm share/kf/emoticons @dirrm share/kf --- kf.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 12 23:50:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 797C116A4CF for ; Sun, 12 Dec 2004 23:50:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55F7643D64 for ; Sun, 12 Dec 2004 23:50:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBCNo9fS062936 for ; Sun, 12 Dec 2004 23:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBCNo9M4062931; Sun, 12 Dec 2004 23:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 12 Dec 2004 23:50:09 GMT Resent-Message-Id: <200412122350.iBCNo9M4062931@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58E1816A4CE for ; Sun, 12 Dec 2004 23:42:39 +0000 (GMT) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 134F343D54 for ; Sun, 12 Dec 2004 23:42:38 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.235.28] (HELO santinel.home.ua) by mail.alkar.net (CommuniGate Pro SMTP 4.2.6) with ESMTP-TLS id 244867146 for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Dec 2004 01:42:26 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1Cdcps-000Imi-IR for ; Mon, 13 Dec 2004 01:09:04 +0200 Message-Id: Date: Mon, 13 Dec 2004 01:09:04 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75002: [PATCH] editors/xemacs-packages: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2004 23:50:10 -0000 >Number: 75002 >Category: ports >Synopsis: [PATCH] editors/xemacs-packages: update to new version >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 Dec 12 23:50:08 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: Update 10.0 to 11.0 * new packages: erc-1.12 * remove packages: liece-1.12 (This package is deprecated. Use the riece package) * version up packages: auctex-1.35 --> auctex-1.38 c-support-1.18 --> c-support-1.20 calc-1.24 --> calc-1.25 calendar-1.22 --> calendar-1.23 cc-mode-1.41 --> cc-mode-1.43 ecb-1.13 --> ecb-1.18 ecrypto-0.14 --> ecrypto-0.17 edebug-1.20 --> edebug-1.21 ediff-1.49 --> ediff-1.50 edit-utils-2.10 --> edit-utils-2.14 eshell-1.06 --> eshell-1.07 ess-1.06 --> ess-1.10 fortran-modes-1.03 --> fortran-modes-1.04 fsf-compat-1.13 --> fsf-compat-1.14 gnus-1.73 --> gnus-1.80 haskell-mode-1.06 --> haskell-mode-1.07 hyperbole-1.13 --> hyperbole-1.16 igrep-1.12 --> igrep-1.13 ispell-1.26 --> ispell-1.29 mail-lib-1.63 --> mail-lib-1.67 mailcrypt-2.13 --> mailcrypt-2.14 mh-e-1.27 --> mh-e-1.28 mmm-mode-1.01 --> mmm-mode-1.02 net-utils-1.33 --> net-utils-1.44 os-utils-1.34 --> os-utils-1.35 perl-modes-1.05 --> perl-modes-1.06 prog-modes-1.91 --> prog-modes-2.01 ps-print-1.09 --> ps-print-1.11 psgml-1.41 --> psgml-1.43 python-modes-1.03 --> python-modes-1.06 reftex-1.33 --> reftex-1.34 riece-1.12 --> riece-1.15 sgml-1.10 --> sgml-1.11 sml-mode-0.10 --> sml-mode-0.11 text-modes-1.71 --> text-modes-1.78 tramp-1.16 --> tramp-1.17 vhdl-1.18 --> vhdl-1.19 w3-1.29 --> w3-1.30 x-symbol-1.07 --> x-symbol-1.10 xemacs-base-1.82 --> xemacs-base-1.87 xemacs-devel-1.60 --> xemacs-devel-1.64 zenirc-1.14 --> zenirc-1.15 >How-To-Repeat: >Fix: --- xemacs-packages.diff begins here --- diff -ru xemacs-packages/Makefile xemacs-packages.new/Makefile --- xemacs-packages/Makefile Thu Jan 22 13:05:54 2004 +++ xemacs-packages.new/Makefile Sun Dec 12 23:03:05 2004 @@ -6,21 +6,20 @@ # PORTNAME= xemacs-packages -PORTVERSION= 10.0 +PORTVERSION= 11 CATEGORIES= editors elisp -MASTER_SITES= ${MASTER_SITE_LOCAL:S|%SUBDIR%|kiri/xemacs|} \ - ${MASTER_SITE_XEMACS:S|%SUBDIR%|packages|} +MASTER_SITES= ${MASTER_SITE_XEMACS:S|%SUBDIR%|packages|} DISTFILES= \ Sun-1.15-pkg.tar.gz \ ada-1.14-pkg.tar.gz \ apel-1.27-pkg.tar.gz \ - auctex-1.35-pkg.tar.gz \ + auctex-1.38-pkg.tar.gz \ bbdb-1.24-pkg.tar.gz \ build-1.14-pkg.tar.gz \ - c-support-1.18-pkg.tar.gz \ - calc-1.24-pkg.tar.gz \ - calendar-1.22-pkg.tar.gz \ - cc-mode-1.41-pkg.tar.gz \ + c-support-1.20-pkg.tar.gz \ + calc-1.25-pkg.tar.gz \ + calendar-1.23-pkg.tar.gz \ + cc-mode-1.43-pkg.tar.gz \ clearcase-1.08-pkg.tar.gz \ cookie-1.15-pkg.tar.gz \ crisp-1.14-pkg.tar.gz \ @@ -28,98 +27,98 @@ dictionary-1.12-pkg.tar.gz \ dired-1.15-pkg.tar.gz \ docbookide-0.07-pkg.tar.gz \ - ecb-1.13-pkg.tar.gz \ - ecrypto-0.14-pkg.tar.gz \ - edebug-1.20-pkg.tar.gz \ - ediff-1.49-pkg.tar.gz \ - edit-utils-2.10-pkg.tar.gz \ + ecb-1.18-pkg.tar.gz \ + ecrypto-0.17-pkg.tar.gz \ + edebug-1.21-pkg.tar.gz \ + ediff-1.50-pkg.tar.gz \ + edit-utils-2.14-pkg.tar.gz \ edt-1.13-pkg.tar.gz \ efs-1.32-pkg.tar.gz \ eieio-1.05-pkg.tar.gz \ elib-1.11-pkg.tar.gz \ emerge-1.11-pkg.tar.gz \ - eshell-1.06-pkg.tar.gz \ - ess-1.06-pkg.tar.gz \ + erc-0.12-pkg.tar.gz \ + eshell-1.07-pkg.tar.gz \ + ess-1.10-pkg.tar.gz \ eterm-1.15-pkg.tar.gz \ eudc-1.39-pkg.tar.gz \ footnote-1.16-pkg.tar.gz \ forms-1.15-pkg.tar.gz \ - fortran-modes-1.03-pkg.tar.gz \ + fortran-modes-1.04-pkg.tar.gz \ frame-icon-1.11-pkg.tar.gz \ - fsf-compat-1.13-pkg.tar.gz \ + fsf-compat-1.14-pkg.tar.gz \ games-1.15-pkg.tar.gz \ general-docs-1.01-pkg.tar.gz \ gnats-1.16-pkg.tar.gz \ - gnus-1.73-pkg.tar.gz \ - haskell-mode-1.06-pkg.tar.gz \ + gnus-1.80-pkg.tar.gz \ + haskell-mode-1.07-pkg.tar.gz \ hm--html-menus-1.23-pkg.tar.gz \ - hyperbole-1.13-pkg.tar.gz \ + hyperbole-1.16-pkg.tar.gz \ ibuffer-1.09-pkg.tar.gz \ idlwave-1.31-pkg.tar.gz \ - igrep-1.12-pkg.tar.gz \ + igrep-1.13-pkg.tar.gz \ ilisp-1.33-pkg.tar.gz \ - ispell-1.26-pkg.tar.gz \ + ispell-1.29-pkg.tar.gz \ jde-1.46-pkg.tar.gz \ - liece-1.12-pkg.tar.gz \ - mail-lib-1.63-pkg.tar.gz \ - mailcrypt-2.13-pkg.tar.gz \ + mail-lib-1.67-pkg.tar.gz \ + mailcrypt-2.14-pkg.tar.gz \ mew-1.18-pkg.tar.gz \ - mh-e-1.27-pkg.tar.gz \ + mh-e-1.28-pkg.tar.gz \ mine-1.16-pkg.tar.gz \ misc-games-1.18-pkg.tar.gz \ - mmm-mode-1.01-pkg.tar.gz \ - net-utils-1.33-pkg.tar.gz \ + mmm-mode-1.02-pkg.tar.gz \ + net-utils-1.44-pkg.tar.gz \ ocaml-0.05-pkg.tar.gz \ oo-browser-1.04-pkg.tar.gz \ - os-utils-1.34-pkg.tar.gz \ + os-utils-1.35-pkg.tar.gz \ pc-1.26-pkg.tar.gz \ pcl-cvs-1.65-pkg.tar.gz \ pcomplete-1.03-pkg.tar.gz \ - perl-modes-1.05-pkg.tar.gz \ + perl-modes-1.06-pkg.tar.gz \ pgg-1.04-pkg.tar.gz \ - prog-modes-1.91-pkg.tar.gz \ - ps-print-1.09-pkg.tar.gz \ - psgml-1.41-pkg.tar.gz \ + prog-modes-2.01-pkg.tar.gz \ + ps-print-1.11-pkg.tar.gz \ + psgml-1.43-pkg.tar.gz \ psgml-dtds-1.03-pkg.tar.gz \ - python-modes-1.03-pkg.tar.gz \ - reftex-1.33-pkg.tar.gz \ - riece-1.12-pkg.tar.gz \ + python-modes-1.06-pkg.tar.gz \ + reftex-1.34-pkg.tar.gz \ + riece-1.15-pkg.tar.gz \ rmail-1.14-pkg.tar.gz \ ruby-modes-1.02-pkg.tar.gz \ sasl-1.14-pkg.tar.gz \ scheme-1.14-pkg.tar.gz \ semantic-1.18-pkg.tar.gz \ - sgml-1.10-pkg.tar.gz \ + sgml-1.11-pkg.tar.gz \ sh-script-1.18-pkg.tar.gz \ - sieve-1.14-pkg.tar.gz \ + sieve-1.16-pkg.tar.gz \ slider-1.15-pkg.tar.gz \ - sml-mode-0.10-pkg.tar.gz \ + sml-mode-0.11-pkg.tar.gz \ sounds-au-1.12-pkg.tar.gz \ sounds-wav-1.12-pkg.tar.gz \ speedbar-1.27-pkg.tar.gz \ strokes-1.10-pkg.tar.gz \ supercite-1.20-pkg.tar.gz \ texinfo-1.25-pkg.tar.gz \ - text-modes-1.71-pkg.tar.gz \ + text-modes-1.78-pkg.tar.gz \ textools-1.15-pkg.tar.gz \ time-1.14-pkg.tar.gz \ tm-1.37-pkg.tar.gz \ tooltalk-1.15-pkg.tar.gz \ tpu-1.14-pkg.tar.gz \ - tramp-1.16-pkg.tar.gz \ + tramp-1.17-pkg.tar.gz \ vc-1.38-pkg.tar.gz \ vc-cc-1.22-pkg.tar.gz \ - vhdl-1.18-pkg.tar.gz \ + vhdl-1.19-pkg.tar.gz \ view-process-1.13-pkg.tar.gz \ viper-1.37-pkg.tar.gz \ vm-7.18-pkg.tar.gz \ - w3-1.29-pkg.tar.gz \ - x-symbol-1.07-pkg.tar.gz \ - xemacs-base-1.82-pkg.tar.gz \ - xemacs-devel-1.60-pkg.tar.gz \ + w3-1.30-pkg.tar.gz \ + x-symbol-1.10-pkg.tar.gz \ + xemacs-base-1.87-pkg.tar.gz \ + xemacs-devel-1.64-pkg.tar.gz \ xslide-1.09-pkg.tar.gz \ xslt-process-1.11-pkg.tar.gz \ - zenirc-1.14-pkg.tar.gz + zenirc-1.15-pkg.tar.gz DIST_SUBDIR= xemacs MAINTAINER= kiri@FreeBSD.org diff -ru xemacs-packages/distinfo xemacs-packages.new/distinfo --- xemacs-packages/distinfo Wed Mar 31 06:07:40 2004 +++ xemacs-packages.new/distinfo Sun Dec 12 23:02:33 2004 @@ -4,20 +4,20 @@ SIZE (xemacs/ada-1.14-pkg.tar.gz) = 55836 MD5 (xemacs/apel-1.27-pkg.tar.gz) = 2f35080836afe0730b2fe664f90b01be SIZE (xemacs/apel-1.27-pkg.tar.gz) = 108585 -MD5 (xemacs/auctex-1.35-pkg.tar.gz) = 168e82155e152dab8c7c913bc9a4788b -SIZE (xemacs/auctex-1.35-pkg.tar.gz) = 406466 +MD5 (xemacs/auctex-1.38-pkg.tar.gz) = 5b1a9b7f416fafafc2006e3df2598df4 +SIZE (xemacs/auctex-1.38-pkg.tar.gz) = 409555 MD5 (xemacs/bbdb-1.24-pkg.tar.gz) = bb9a7c33c742e28076643be7fda317ed SIZE (xemacs/bbdb-1.24-pkg.tar.gz) = 373736 MD5 (xemacs/build-1.14-pkg.tar.gz) = 927263daa5b6d8097b916f0be5887a62 SIZE (xemacs/build-1.14-pkg.tar.gz) = 49484 -MD5 (xemacs/c-support-1.18-pkg.tar.gz) = 950c5d610fb614bd418863075cde1c4c -SIZE (xemacs/c-support-1.18-pkg.tar.gz) = 70705 -MD5 (xemacs/calc-1.24-pkg.tar.gz) = 61fa56abe04492e448a8549b5978ca3a -SIZE (xemacs/calc-1.24-pkg.tar.gz) = 1600141 -MD5 (xemacs/calendar-1.22-pkg.tar.gz) = c9f0bdbcb3cbbb9eff338e4edd9d7f95 -SIZE (xemacs/calendar-1.22-pkg.tar.gz) = 253996 -MD5 (xemacs/cc-mode-1.41-pkg.tar.gz) = 31b9f8e38d95e6b5dd079c14f88ef360 -SIZE (xemacs/cc-mode-1.41-pkg.tar.gz) = 513369 +MD5 (xemacs/c-support-1.20-pkg.tar.gz) = 97265a70bb6c3fd1abe8c61dc0733090 +SIZE (xemacs/c-support-1.20-pkg.tar.gz) = 78020 +MD5 (xemacs/calc-1.25-pkg.tar.gz) = 3566b0cad03ee951e56fb449e634b3a7 +SIZE (xemacs/calc-1.25-pkg.tar.gz) = 1600004 +MD5 (xemacs/calendar-1.23-pkg.tar.gz) = de5fd826168913232c48aa88ec0f1d5c +SIZE (xemacs/calendar-1.23-pkg.tar.gz) = 254025 +MD5 (xemacs/cc-mode-1.43-pkg.tar.gz) = 6a8fdf248c2c62a4440eaedb1b5f873d +SIZE (xemacs/cc-mode-1.43-pkg.tar.gz) = 521516 MD5 (xemacs/clearcase-1.08-pkg.tar.gz) = 6fedc7464137eae08c25517276f8a7ab SIZE (xemacs/clearcase-1.08-pkg.tar.gz) = 94543 MD5 (xemacs/cookie-1.15-pkg.tar.gz) = 70b4bde06580ec71df2a23aa95808bb7 @@ -32,16 +32,16 @@ SIZE (xemacs/dired-1.15-pkg.tar.gz) = 198282 MD5 (xemacs/docbookide-0.07-pkg.tar.gz) = 2e83cb54d4c0d9fd4b22a81d8792e9e6 SIZE (xemacs/docbookide-0.07-pkg.tar.gz) = 32091 -MD5 (xemacs/ecb-1.13-pkg.tar.gz) = dbbc4f68db8f2f294b89f0ee11ae6156 -SIZE (xemacs/ecb-1.13-pkg.tar.gz) = 525836 -MD5 (xemacs/ecrypto-0.14-pkg.tar.gz) = 59207e5f5a5300ccf0d21f27b018de91 -SIZE (xemacs/ecrypto-0.14-pkg.tar.gz) = 68741 -MD5 (xemacs/edebug-1.20-pkg.tar.gz) = ff397fa7dba09ab0a52a83649b8a14d8 -SIZE (xemacs/edebug-1.20-pkg.tar.gz) = 115244 -MD5 (xemacs/ediff-1.49-pkg.tar.gz) = de66f77ac38f2df7dd4c5a94d9582f55 -SIZE (xemacs/ediff-1.49-pkg.tar.gz) = 305252 -MD5 (xemacs/edit-utils-2.10-pkg.tar.gz) = 8d3c77a3ae8fb443a608a148e32e0d48 -SIZE (xemacs/edit-utils-2.10-pkg.tar.gz) = 925330 +MD5 (xemacs/ecb-1.18-pkg.tar.gz) = bd5656e4adba8dcf69b23fa38c045ce2 +SIZE (xemacs/ecb-1.18-pkg.tar.gz) = 755711 +MD5 (xemacs/ecrypto-0.17-pkg.tar.gz) = 2fd550be2944acd009989940451c5602 +SIZE (xemacs/ecrypto-0.17-pkg.tar.gz) = 72111 +MD5 (xemacs/edebug-1.21-pkg.tar.gz) = c3807d0c7bf76758b81f4d1837861758 +SIZE (xemacs/edebug-1.21-pkg.tar.gz) = 115585 +MD5 (xemacs/ediff-1.50-pkg.tar.gz) = 7d061f18835414731e4e3aca024f75d7 +SIZE (xemacs/ediff-1.50-pkg.tar.gz) = 305546 +MD5 (xemacs/edit-utils-2.14-pkg.tar.gz) = dd127c38ad0bd67fcf12d43a80478f9b +SIZE (xemacs/edit-utils-2.14-pkg.tar.gz) = 926328 MD5 (xemacs/edt-1.13-pkg.tar.gz) = 1ca337b8b41799394068717d8d716516 SIZE (xemacs/edt-1.13-pkg.tar.gz) = 62754 MD5 (xemacs/efs-1.32-pkg.tar.gz) = 6123c11bc7a9c993429e9976f7bf42c4 @@ -52,10 +52,12 @@ SIZE (xemacs/elib-1.11-pkg.tar.gz) = 73387 MD5 (xemacs/emerge-1.11-pkg.tar.gz) = f47b98cdf120c123bee14ff9d1ff0862 SIZE (xemacs/emerge-1.11-pkg.tar.gz) = 61367 -MD5 (xemacs/eshell-1.06-pkg.tar.gz) = 737f4d5caed7ffe8cb987f0e2459d6e8 -SIZE (xemacs/eshell-1.06-pkg.tar.gz) = 232041 -MD5 (xemacs/ess-1.06-pkg.tar.gz) = 46e105b2fd715790f6358d9f637cdf32 -SIZE (xemacs/ess-1.06-pkg.tar.gz) = 445788 +MD5 (xemacs/erc-0.12-pkg.tar.gz) = b357d4c80ece393b772c73609bde9b14 +SIZE (xemacs/erc-0.12-pkg.tar.gz) = 417927 +MD5 (xemacs/eshell-1.07-pkg.tar.gz) = 641b780a95d44419a1b6233acc65caef +SIZE (xemacs/eshell-1.07-pkg.tar.gz) = 232411 +MD5 (xemacs/ess-1.10-pkg.tar.gz) = 8e6e9ad3f7a7e741cc3de79ffc184889 +SIZE (xemacs/ess-1.10-pkg.tar.gz) = 518973 MD5 (xemacs/eterm-1.15-pkg.tar.gz) = 4821611600abfb6f7e6d2d91b361e5dc SIZE (xemacs/eterm-1.15-pkg.tar.gz) = 109135 MD5 (xemacs/eudc-1.39-pkg.tar.gz) = 1c725e74136dc51c02f4e7b7642140a7 @@ -64,86 +66,84 @@ SIZE (xemacs/footnote-1.16-pkg.tar.gz) = 22152 MD5 (xemacs/forms-1.15-pkg.tar.gz) = 5f5cc842399040018bab20f776cf1cf8 SIZE (xemacs/forms-1.15-pkg.tar.gz) = 48747 -MD5 (xemacs/fortran-modes-1.03-pkg.tar.gz) = 413d2f5ea1497c29b436fee52073563b -SIZE (xemacs/fortran-modes-1.03-pkg.tar.gz) = 66719 +MD5 (xemacs/fortran-modes-1.04-pkg.tar.gz) = 0ffa638d8929a59b81f65394cf4a4ff5 +SIZE (xemacs/fortran-modes-1.04-pkg.tar.gz) = 69002 MD5 (xemacs/frame-icon-1.11-pkg.tar.gz) = 6fbd58bc7f37328aaf31b420c9a2891f SIZE (xemacs/frame-icon-1.11-pkg.tar.gz) = 33800 -MD5 (xemacs/fsf-compat-1.13-pkg.tar.gz) = 270a9deea6166bb38ac00f6191c7e8c0 -SIZE (xemacs/fsf-compat-1.13-pkg.tar.gz) = 21687 +MD5 (xemacs/fsf-compat-1.14-pkg.tar.gz) = 864435dc2ed47d956ff8a5bab7f19189 +SIZE (xemacs/fsf-compat-1.14-pkg.tar.gz) = 21752 MD5 (xemacs/games-1.15-pkg.tar.gz) = e50c1cd9ae0e9d32a022f52e795119b4 SIZE (xemacs/games-1.15-pkg.tar.gz) = 37242 MD5 (xemacs/general-docs-1.01-pkg.tar.gz) = 06c3e4e0aeddd995f2697c91a6b8cc00 SIZE (xemacs/general-docs-1.01-pkg.tar.gz) = 1435 MD5 (xemacs/gnats-1.16-pkg.tar.gz) = 678c190f7cd184426dcccc0f3a6d10b2 SIZE (xemacs/gnats-1.16-pkg.tar.gz) = 188963 -MD5 (xemacs/gnus-1.73-pkg.tar.gz) = a1259caa28482a71bc4dfa1e434f9511 -SIZE (xemacs/gnus-1.73-pkg.tar.gz) = 3245188 -MD5 (xemacs/haskell-mode-1.06-pkg.tar.gz) = 75c3dcb6fbe0a8824c865d8b989866cc -SIZE (xemacs/haskell-mode-1.06-pkg.tar.gz) = 94315 +MD5 (xemacs/gnus-1.80-pkg.tar.gz) = a409e7d596bb893adb7330f80ec702db +SIZE (xemacs/gnus-1.80-pkg.tar.gz) = 3302155 +MD5 (xemacs/haskell-mode-1.07-pkg.tar.gz) = 20d1ff41a4b753a276affd60850b08e7 +SIZE (xemacs/haskell-mode-1.07-pkg.tar.gz) = 97642 MD5 (xemacs/hm--html-menus-1.23-pkg.tar.gz) = c625e8070a7abfed6fb1f13d04a38e51 SIZE (xemacs/hm--html-menus-1.23-pkg.tar.gz) = 179091 -MD5 (xemacs/hyperbole-1.13-pkg.tar.gz) = fed416810d33560f433c4ad0bef605bc -SIZE (xemacs/hyperbole-1.13-pkg.tar.gz) = 634192 +MD5 (xemacs/hyperbole-1.16-pkg.tar.gz) = 64be21a91b7ef00696b19478ccef90f6 +SIZE (xemacs/hyperbole-1.16-pkg.tar.gz) = 636211 MD5 (xemacs/ibuffer-1.09-pkg.tar.gz) = 5132ee34ac4640fdb7a53706ee928e33 SIZE (xemacs/ibuffer-1.09-pkg.tar.gz) = 89926 MD5 (xemacs/idlwave-1.31-pkg.tar.gz) = c5e8e00757efddd5d83d9acb31247102 SIZE (xemacs/idlwave-1.31-pkg.tar.gz) = 520952 -MD5 (xemacs/igrep-1.12-pkg.tar.gz) = a46e749b903ad526dad1a898496e9812 -SIZE (xemacs/igrep-1.12-pkg.tar.gz) = 17316 +MD5 (xemacs/igrep-1.13-pkg.tar.gz) = 9cf5cfc9df0e04706f83fe3840e7b038 +SIZE (xemacs/igrep-1.13-pkg.tar.gz) = 20853 MD5 (xemacs/ilisp-1.33-pkg.tar.gz) = a0edbe80726e199f3cfc7a367c3fd772 SIZE (xemacs/ilisp-1.33-pkg.tar.gz) = 344245 -MD5 (xemacs/ispell-1.26-pkg.tar.gz) = 85a9da0fe8ed41199388b5f41a0f7769 -SIZE (xemacs/ispell-1.26-pkg.tar.gz) = 72869 +MD5 (xemacs/ispell-1.29-pkg.tar.gz) = 04056f2030d7200ab5b01c124943553d +SIZE (xemacs/ispell-1.29-pkg.tar.gz) = 83158 MD5 (xemacs/jde-1.46-pkg.tar.gz) = 60f5d299a53be811f6ef6006f2566c20 SIZE (xemacs/jde-1.46-pkg.tar.gz) = 2403395 -MD5 (xemacs/liece-1.12-pkg.tar.gz) = c7f2aab45f8ada9398d4b0807e80433a -SIZE (xemacs/liece-1.12-pkg.tar.gz) = 199275 -MD5 (xemacs/mail-lib-1.63-pkg.tar.gz) = 99b3f341e8c29ad2dc3fec5196e32549 -SIZE (xemacs/mail-lib-1.63-pkg.tar.gz) = 198134 -MD5 (xemacs/mailcrypt-2.13-pkg.tar.gz) = efe51870b559239cf48a102ea8a89e2f -SIZE (xemacs/mailcrypt-2.13-pkg.tar.gz) = 154111 +MD5 (xemacs/mail-lib-1.67-pkg.tar.gz) = bcf7f3fb1792af185a29c5faa334bf8a +SIZE (xemacs/mail-lib-1.67-pkg.tar.gz) = 197779 +MD5 (xemacs/mailcrypt-2.14-pkg.tar.gz) = df1654138b6a146868bb52addb33bf47 +SIZE (xemacs/mailcrypt-2.14-pkg.tar.gz) = 154180 MD5 (xemacs/mew-1.18-pkg.tar.gz) = 09533ddf67f0948c6b4a40b996d82fbd SIZE (xemacs/mew-1.18-pkg.tar.gz) = 745829 -MD5 (xemacs/mh-e-1.27-pkg.tar.gz) = 5b886efc6e93f97a61237dade2f360ee -SIZE (xemacs/mh-e-1.27-pkg.tar.gz) = 577724 +MD5 (xemacs/mh-e-1.28-pkg.tar.gz) = 349e8d23fdb41334d2bb1040a20adb3c +SIZE (xemacs/mh-e-1.28-pkg.tar.gz) = 577885 MD5 (xemacs/mine-1.16-pkg.tar.gz) = 3875c5eb3c58306db3c875a18ba56ff6 SIZE (xemacs/mine-1.16-pkg.tar.gz) = 67161 MD5 (xemacs/misc-games-1.18-pkg.tar.gz) = c68c91ee7eb296669388645c467fdede SIZE (xemacs/misc-games-1.18-pkg.tar.gz) = 166817 -MD5 (xemacs/mmm-mode-1.01-pkg.tar.gz) = 28cf0136d0d8e59e74a464074a98ef4b -SIZE (xemacs/mmm-mode-1.01-pkg.tar.gz) = 175927 -MD5 (xemacs/net-utils-1.33-pkg.tar.gz) = 9470e0dc21c8dd3c1d859ce7541f31c0 -SIZE (xemacs/net-utils-1.33-pkg.tar.gz) = 137514 +MD5 (xemacs/mmm-mode-1.02-pkg.tar.gz) = f68f90fb1b870f7a8e89c83e9b6c3973 +SIZE (xemacs/mmm-mode-1.02-pkg.tar.gz) = 176072 +MD5 (xemacs/net-utils-1.44-pkg.tar.gz) = a89d33e1f60f41ee555fed5dcb156b9f +SIZE (xemacs/net-utils-1.44-pkg.tar.gz) = 150795 MD5 (xemacs/ocaml-0.05-pkg.tar.gz) = 2ca033386cade4dbdb05abe2e6f324f4 SIZE (xemacs/ocaml-0.05-pkg.tar.gz) = 64887 MD5 (xemacs/oo-browser-1.04-pkg.tar.gz) = 72cb3bbfbe985d8989c564ca53cffe3c SIZE (xemacs/oo-browser-1.04-pkg.tar.gz) = 515713 -MD5 (xemacs/os-utils-1.34-pkg.tar.gz) = 98fa67e0d1b89febd16bfc952d552171 -SIZE (xemacs/os-utils-1.34-pkg.tar.gz) = 225849 +MD5 (xemacs/os-utils-1.35-pkg.tar.gz) = ff2213a2c5f9f1defaebf76b73238836 +SIZE (xemacs/os-utils-1.35-pkg.tar.gz) = 225764 MD5 (xemacs/pc-1.26-pkg.tar.gz) = 47189d077b363012c4b17f527eef2ec7 SIZE (xemacs/pc-1.26-pkg.tar.gz) = 17611 MD5 (xemacs/pcl-cvs-1.65-pkg.tar.gz) = 53b8cbd4d0b7709cfaf9d51e11888324 SIZE (xemacs/pcl-cvs-1.65-pkg.tar.gz) = 161016 MD5 (xemacs/pcomplete-1.03-pkg.tar.gz) = 43bad91be873dd6ae2f9483e90c42226 SIZE (xemacs/pcomplete-1.03-pkg.tar.gz) = 37443 -MD5 (xemacs/perl-modes-1.05-pkg.tar.gz) = cbfc241502bb708e878bcb2d587a78b1 -SIZE (xemacs/perl-modes-1.05-pkg.tar.gz) = 161184 +MD5 (xemacs/perl-modes-1.06-pkg.tar.gz) = 75651f6590cef4d11217f5ea0edf41a4 +SIZE (xemacs/perl-modes-1.06-pkg.tar.gz) = 162251 MD5 (xemacs/pgg-1.04-pkg.tar.gz) = 8f4d77a0e99edbd3040c8d3988109ee8 SIZE (xemacs/pgg-1.04-pkg.tar.gz) = 31307 -MD5 (xemacs/prog-modes-1.91-pkg.tar.gz) = b0203d7e022fdf730845ffbceaf41bf0 -SIZE (xemacs/prog-modes-1.91-pkg.tar.gz) = 715961 -MD5 (xemacs/ps-print-1.09-pkg.tar.gz) = 9055fe7244e253e2a12cc7e4d69df041 -SIZE (xemacs/ps-print-1.09-pkg.tar.gz) = 155737 -MD5 (xemacs/psgml-1.41-pkg.tar.gz) = 33baca4b85d3d9c48df682b748c9a273 -SIZE (xemacs/psgml-1.41-pkg.tar.gz) = 301000 +MD5 (xemacs/prog-modes-2.01-pkg.tar.gz) = 58334d1179eea7beb7f7f2992910f1fa +SIZE (xemacs/prog-modes-2.01-pkg.tar.gz) = 734017 +MD5 (xemacs/ps-print-1.11-pkg.tar.gz) = a9460da8906bbbcbec37f28625b2bbad +SIZE (xemacs/ps-print-1.11-pkg.tar.gz) = 156222 +MD5 (xemacs/psgml-1.43-pkg.tar.gz) = f4da8050a82128b875615c4de1ce071c +SIZE (xemacs/psgml-1.43-pkg.tar.gz) = 301335 MD5 (xemacs/psgml-dtds-1.03-pkg.tar.gz) = 6d2d68e928a540581ef564d1111fcbf2 SIZE (xemacs/psgml-dtds-1.03-pkg.tar.gz) = 367476 -MD5 (xemacs/python-modes-1.03-pkg.tar.gz) = 537b318e5901cfc95ba7dfcce32d24bf -SIZE (xemacs/python-modes-1.03-pkg.tar.gz) = 82105 -MD5 (xemacs/reftex-1.33-pkg.tar.gz) = 4d9a603199ad55c5d3f3cd31413a56de -SIZE (xemacs/reftex-1.33-pkg.tar.gz) = 352053 -MD5 (xemacs/riece-1.12-pkg.tar.gz) = 8859cfde4a93a31407e29c35a35e9669 -SIZE (xemacs/riece-1.12-pkg.tar.gz) = 106360 +MD5 (xemacs/python-modes-1.06-pkg.tar.gz) = ecda2909abf566525b9c2e7bc6c58e54 +SIZE (xemacs/python-modes-1.06-pkg.tar.gz) = 92702 +MD5 (xemacs/reftex-1.34-pkg.tar.gz) = 161d28002e1a7c80bdaf9facb3559fad +SIZE (xemacs/reftex-1.34-pkg.tar.gz) = 352338 +MD5 (xemacs/riece-1.15-pkg.tar.gz) = 32748da3305724450115588a36943d75 +SIZE (xemacs/riece-1.15-pkg.tar.gz) = 124392 MD5 (xemacs/rmail-1.14-pkg.tar.gz) = 4409fc7ff5134ff562ff1357a014a41b SIZE (xemacs/rmail-1.14-pkg.tar.gz) = 96995 MD5 (xemacs/ruby-modes-1.02-pkg.tar.gz) = d2a1ca596592bafba72c76158d26747b @@ -154,16 +154,16 @@ SIZE (xemacs/scheme-1.14-pkg.tar.gz) = 37770 MD5 (xemacs/semantic-1.18-pkg.tar.gz) = bb333c47f371748a1e923893c98d7b3f SIZE (xemacs/semantic-1.18-pkg.tar.gz) = 443092 -MD5 (xemacs/sgml-1.10-pkg.tar.gz) = ab80262877e3547dfb97e80a0a778e09 -SIZE (xemacs/sgml-1.10-pkg.tar.gz) = 27462 +MD5 (xemacs/sgml-1.11-pkg.tar.gz) = 8d1cec5b4b005210507b6fe57e2db9a8 +SIZE (xemacs/sgml-1.11-pkg.tar.gz) = 27506 MD5 (xemacs/sh-script-1.18-pkg.tar.gz) = 4a0e2de6d1006c987dfd9e861b8562cd SIZE (xemacs/sh-script-1.18-pkg.tar.gz) = 37055 -MD5 (xemacs/sieve-1.14-pkg.tar.gz) = 6a9234ad3e59c485869db92a3637d91f -SIZE (xemacs/sieve-1.14-pkg.tar.gz) = 25677 +MD5 (xemacs/sieve-1.16-pkg.tar.gz) = a147b13f4e3792283b1e22d0b355d93d +SIZE (xemacs/sieve-1.16-pkg.tar.gz) = 26273 MD5 (xemacs/slider-1.15-pkg.tar.gz) = 00bb43e4f3997c0c493cb7f29a75494b SIZE (xemacs/slider-1.15-pkg.tar.gz) = 12516 -MD5 (xemacs/sml-mode-0.10-pkg.tar.gz) = 87914cf428610799a98815b17393f6e0 -SIZE (xemacs/sml-mode-0.10-pkg.tar.gz) = 81763 +MD5 (xemacs/sml-mode-0.11-pkg.tar.gz) = c83be3222a366fa3fa177d90ef751436 +SIZE (xemacs/sml-mode-0.11-pkg.tar.gz) = 81807 MD5 (xemacs/sounds-au-1.12-pkg.tar.gz) = 9bf0b5a2ac38a4fe2d710063ddcaadd3 SIZE (xemacs/sounds-au-1.12-pkg.tar.gz) = 126817 MD5 (xemacs/sounds-wav-1.12-pkg.tar.gz) = 3045a90ca53b22ebb7aa52f611bafcd3 @@ -176,8 +176,8 @@ SIZE (xemacs/supercite-1.20-pkg.tar.gz) = 100553 MD5 (xemacs/texinfo-1.25-pkg.tar.gz) = a2755f74e1f4c76ba36d844abc718d3a SIZE (xemacs/texinfo-1.25-pkg.tar.gz) = 133884 -MD5 (xemacs/text-modes-1.71-pkg.tar.gz) = 39be167962dc1a547a13f8bb1788327f -SIZE (xemacs/text-modes-1.71-pkg.tar.gz) = 377506 +MD5 (xemacs/text-modes-1.78-pkg.tar.gz) = bf2b0c44fd0451196de192b8d065d123 +SIZE (xemacs/text-modes-1.78-pkg.tar.gz) = 381237 MD5 (xemacs/textools-1.15-pkg.tar.gz) = 43d33c2e35569a434e7787e7ded2eade SIZE (xemacs/textools-1.15-pkg.tar.gz) = 79966 MD5 (xemacs/time-1.14-pkg.tar.gz) = 8956073a18694a8ad91a52c7374c3d66 @@ -188,31 +188,31 @@ SIZE (xemacs/tooltalk-1.15-pkg.tar.gz) = 9749 MD5 (xemacs/tpu-1.14-pkg.tar.gz) = f3f5ef913e958e5532a2a682288eac05 SIZE (xemacs/tpu-1.14-pkg.tar.gz) = 59529 -MD5 (xemacs/tramp-1.16-pkg.tar.gz) = ec5a21c4462d48ebe8dc01ea0e32373c -SIZE (xemacs/tramp-1.16-pkg.tar.gz) = 251091 +MD5 (xemacs/tramp-1.17-pkg.tar.gz) = b70b43b61d3ba3a4220260dfb45fd94d +SIZE (xemacs/tramp-1.17-pkg.tar.gz) = 251038 MD5 (xemacs/vc-1.38-pkg.tar.gz) = b19fa9b253ec9335829c3289ea1b046b SIZE (xemacs/vc-1.38-pkg.tar.gz) = 93835 MD5 (xemacs/vc-cc-1.22-pkg.tar.gz) = ee4ce6853773d36dd92b53ce2513fd73 SIZE (xemacs/vc-cc-1.22-pkg.tar.gz) = 95028 -MD5 (xemacs/vhdl-1.18-pkg.tar.gz) = 6a38f9e4428754114593b94089c71943 -SIZE (xemacs/vhdl-1.18-pkg.tar.gz) = 273202 +MD5 (xemacs/vhdl-1.19-pkg.tar.gz) = 2d97483e5af1f070dfe1d0b59b3e062d +SIZE (xemacs/vhdl-1.19-pkg.tar.gz) = 296356 MD5 (xemacs/view-process-1.13-pkg.tar.gz) = 05eca7ec61259b47f2a741fc30dcc65f SIZE (xemacs/view-process-1.13-pkg.tar.gz) = 60814 MD5 (xemacs/viper-1.37-pkg.tar.gz) = 5bd6157ea98d1cc9399e91eb3b684c8c SIZE (xemacs/viper-1.37-pkg.tar.gz) = 327719 MD5 (xemacs/vm-7.18-pkg.tar.gz) = 25a353d78f64c2dd2e1001719158a315 SIZE (xemacs/vm-7.18-pkg.tar.gz) = 812340 -MD5 (xemacs/w3-1.29-pkg.tar.gz) = 088e276b855e95b2032aa58160ffeba2 -SIZE (xemacs/w3-1.29-pkg.tar.gz) = 694178 -MD5 (xemacs/x-symbol-1.07-pkg.tar.gz) = c4a1cfc1318d5eb87eb186f0972abad6 -SIZE (xemacs/x-symbol-1.07-pkg.tar.gz) = 679781 -MD5 (xemacs/xemacs-base-1.82-pkg.tar.gz) = 7ba84839d26de61e4cb62741531d59ba -SIZE (xemacs/xemacs-base-1.82-pkg.tar.gz) = 472771 -MD5 (xemacs/xemacs-devel-1.60-pkg.tar.gz) = db789317a15bf3a73bacd7b337ec7a34 -SIZE (xemacs/xemacs-devel-1.60-pkg.tar.gz) = 232116 +MD5 (xemacs/w3-1.30-pkg.tar.gz) = 06946030f8d7cc84b6b3c7cf9ba68e0a +SIZE (xemacs/w3-1.30-pkg.tar.gz) = 694189 +MD5 (xemacs/x-symbol-1.10-pkg.tar.gz) = f213f93f156cc9eb511094292caf6f51 +SIZE (xemacs/x-symbol-1.10-pkg.tar.gz) = 680100 +MD5 (xemacs/xemacs-base-1.87-pkg.tar.gz) = 2daf0b56102f9be9c2815456114517b0 +SIZE (xemacs/xemacs-base-1.87-pkg.tar.gz) = 480268 +MD5 (xemacs/xemacs-devel-1.64-pkg.tar.gz) = 2a9c2e375c0be9a56540cf243134d8ac +SIZE (xemacs/xemacs-devel-1.64-pkg.tar.gz) = 234476 MD5 (xemacs/xslide-1.09-pkg.tar.gz) = 998f787ea80d98cdd7ca06c25ae96647 SIZE (xemacs/xslide-1.09-pkg.tar.gz) = 39199 MD5 (xemacs/xslt-process-1.11-pkg.tar.gz) = 30273cbe2e90ae703ea410879412e68b SIZE (xemacs/xslt-process-1.11-pkg.tar.gz) = 199873 -MD5 (xemacs/zenirc-1.14-pkg.tar.gz) = 9e40efa659a867dae6aac4673b474322 -SIZE (xemacs/zenirc-1.14-pkg.tar.gz) = 277304 +MD5 (xemacs/zenirc-1.15-pkg.tar.gz) = 71b4ac4acf5be468b2ac9698caaf5d94 +SIZE (xemacs/zenirc-1.15-pkg.tar.gz) = 277381 --- xemacs-packages.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 00:00:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8BDE16A4D0; Mon, 13 Dec 2004 00:00:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A520943D5A; Mon, 13 Dec 2004 00:00:35 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD00ZSp063305; Mon, 13 Dec 2004 00:00:35 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD00Zbb063301; Mon, 13 Dec 2004 00:00:35 GMT (envelope-from pav) Date: Mon, 13 Dec 2004 00:00:35 GMT From: Pav Lucistnik Message-Id: <200412130000.iBD00Zbb063301@freefall.freebsd.org> To: avleeuwen@piwebs.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74997: Update graphics/ImageMagick to 6.1.6-6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 00:00:35 -0000 Synopsis: Update graphics/ImageMagick to 6.1.6-6 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Mon Dec 13 00:00:28 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74997 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 00:30:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96FE516A5BC for ; Mon, 13 Dec 2004 00:30:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6150943D5F for ; Mon, 13 Dec 2004 00:30:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD0UYhA068388 for ; Mon, 13 Dec 2004 00:30:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD0UY5e068379; Mon, 13 Dec 2004 00:30:34 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 00:30:34 GMT Resent-Message-Id: <200412130030.iBD0UY5e068379@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, Jon Drews Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0D2116A4CE for ; Mon, 13 Dec 2004 00:23:58 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8204143D69 for ; Mon, 13 Dec 2004 00:23:58 +0000 (GMT) (envelope-from jon.drews@gmail.com) Received: by wproxy.gmail.com with SMTP id 58so417677wri for ; Sun, 12 Dec 2004 16:23:58 -0800 (PST) Received: by 10.54.39.66 with SMTP id m66mr1606663wrm; Sun, 12 Dec 2004 16:23:57 -0800 (PST) Received: by 10.54.54.2 with HTTP; Sun, 12 Dec 2004 16:23:57 -0800 (PST) Message-Id: <8cb27cbf041212162336dbb6ea@mail.gmail.com> Date: Sun, 12 Dec 2004 17:23:57 -0700 From: Jon Drews To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75005: editors/ted: maintainer e-mail change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jon Drews List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 00:30:34 -0000 >Number: 75005 >Category: ports >Synopsis: editors/ted: maintainer e-mail change >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 Dec 13 00:30:33 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jonathan >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD notebook2.silbsd.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Sun Dec 5 22:27:18 MST 2004 root@notebook2.silbsd.org:/usr/obj/usr/src/sys/NOTEBOOK6 i386 >Description: New email address for maintainer >How-To-Repeat: N/A >Fix: Apply the following patch to the Makefile: --- /usr/ports/editors/ted/Makefile Sun Jun 20 10:47:38 2004 +++ Makefile.new Sun Dec 12 17:16:24 2004 @@ -12,7 +12,7 @@ MASTER_SITES= ftp://ftp.nluug.nl/pub/editors/ted/ EXTRACT_SUFX= .src.tar.gz -MAINTAINER= j.e.drews@att.net +MAINTAINER= jon.drews@gmail.com COMMENT= X11 based RTF editor LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ NOTE: Ted 2.17 should be available soon. The developer has made many improvements and bug fixes. This port will be updated to version 2.17 soon >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 01:05:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F16416A4CE; Mon, 13 Dec 2004 01:05:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF95243D41; Mon, 13 Dec 2004 01:05:24 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD15Osi071993; Mon, 13 Dec 2004 01:05:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD15OvX071984; Mon, 13 Dec 2004 01:05:24 GMT (envelope-from linimon) Date: Mon, 13 Dec 2004 01:05:24 GMT From: Mark Linimon Message-Id: <200412130105.iBD15OvX071984@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danfe@FreeBSD.org Subject: Re: ports/74993: graphics/svgalib: SVGALIB-1.4.3_4 segfaults with NVIDIA TNT Card (32MB) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 01:05:25 -0000 Old Synopsis: SVGALIB-1.4.3_4 segfaults with NVIDIA TNT Card (32MB) New Synopsis: graphics/svgalib: SVGALIB-1.4.3_4 segfaults with NVIDIA TNT Card (32MB) Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 13 01:05:00 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=74993 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 01:07:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35D0316A4CE; Mon, 13 Dec 2004 01:07:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1109843D2D; Mon, 13 Dec 2004 01:07:34 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD17Xlm074606; Mon, 13 Dec 2004 01:07:33 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD17X16074602; Mon, 13 Dec 2004 01:07:33 GMT (envelope-from sem) Date: Mon, 13 Dec 2004 01:07:33 GMT From: Sergey Matveychuk Message-Id: <200412130107.iBD17X16074602@freefall.freebsd.org> To: eps+pbug0411@ana.com, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74270: dns/dnsmasq 2.18 upstream changes necessitate port modification X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 01:07:34 -0000 Synopsis: dns/dnsmasq 2.18 upstream changes necessitate port modification State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Mon Dec 13 01:07:00 GMT 2004 State-Changed-Why: Superseded with ports/74704 http://www.freebsd.org/cgi/query-pr.cgi?pr=74270 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 01:07:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3642216A4CF; Mon, 13 Dec 2004 01:07:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1324243D1F; Mon, 13 Dec 2004 01:07:47 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD17kE7074662; Mon, 13 Dec 2004 01:07:46 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD17kUH074658; Mon, 13 Dec 2004 01:07:46 GMT (envelope-from sem) Date: Mon, 13 Dec 2004 01:07:46 GMT From: Sergey Matveychuk Message-Id: <200412130107.iBD17kUH074658@freefall.freebsd.org> To: eps+pbug0411@ana.com, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74338: dns/dnsmasq needs USE_RC_SUBR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 01:07:47 -0000 Synopsis: dns/dnsmasq needs USE_RC_SUBR State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Mon Dec 13 01:07:41 GMT 2004 State-Changed-Why: Superseded with ports/74704 http://www.freebsd.org/cgi/query-pr.cgi?pr=74338 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 01:13:03 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17EAF16A4CE; Mon, 13 Dec 2004 01:13:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5F1843D55; Mon, 13 Dec 2004 01:13:02 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD1D2gD075009; Mon, 13 Dec 2004 01:13:02 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD1D2Tc075005; Mon, 13 Dec 2004 01:13:02 GMT (envelope-from sem) Date: Mon, 13 Dec 2004 01:13:02 GMT From: Sergey Matveychuk Message-Id: <200412130113.iBD1D2Tc075005@freefall.freebsd.org> To: steven@honson.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74704: [maintainer update] dns/dnsmasq to version 2.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 01:13:03 -0000 Synopsis: [maintainer update] dns/dnsmasq to version 2.18 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Mon Dec 13 01:12:56 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74704 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 02:20:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D24A16A4CE for ; Mon, 13 Dec 2004 02:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 375F443D5A for ; Mon, 13 Dec 2004 02:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD2KKeK083608 for ; Mon, 13 Dec 2004 02:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD2KKbw083607; Mon, 13 Dec 2004 02:20:20 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 02:20:20 GMT Resent-Message-Id: <200412130220.iBD2KKbw083607@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, Palle Girgensohn Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7545B16A4CE for ; Mon, 13 Dec 2004 02:12:06 +0000 (GMT) Received: from palle.girgensohn.se (1-2-8-5a.asp.sth.bostream.se [82.182.157.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id C80B043D53 for ; Mon, 13 Dec 2004 02:12:05 +0000 (GMT) (envelope-from girgen@palle.girgensohn.se) Received: from localhost (localhost.girgensohn.se [127.0.0.1]) by palle.girgensohn.se (Postfix) with ESMTP id 272461CF29 for ; Mon, 13 Dec 2004 03:12:32 +0100 (CET) Received: from palle.girgensohn.se ([127.0.0.1]) by localhost (palle.girgensohn.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 07858-03-2 for ; Mon, 13 Dec 2004 03:12:32 +0100 (CET) Received: by palle.girgensohn.se (Postfix, from userid 1000) id F3F1D1CF1A; Mon, 13 Dec 2004 03:12:31 +0100 (CET) Message-Id: <20041213021231.F3F1D1CF1A@palle.girgensohn.se> Date: Mon, 13 Dec 2004 03:12:31 +0100 (CET) From: Palle Girgensohn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75006: repository copy postgresql74-server -> postgresql80-server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Palle Girgensohn List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 02:20:20 -0000 >Number: 75006 >Category: ports >Synopsis: repository copy postgresql74-server -> postgresql80-server >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 Dec 13 02:20:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 5.3-RELEASE-p1 i386 >Organization: Ping Pong AB >Environment: System: FreeBSD palle.girgensohn.se 5.3-RELEASE-p1 FreeBSD 5.3-RELEASE-p1 #16: Sat Nov 20 04:26:58 CET 2004 girgen@palle.girgensohn.se:/usr/obj/4/usr/5src/sys/PALLE i386 >Description: PostgreSQL 8.0 is on its way out, so we need a repository copy: databases/postgresql74-server -> databases/postgresql80-server >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 02:29:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0226216A4D0; Mon, 13 Dec 2004 02:29:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFF9F43D2D; Mon, 13 Dec 2004 02:29:34 +0000 (GMT) (envelope-from girgen@FreeBSD.org) Received: from freefall.freebsd.org (girgen@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD2TYZ3083846; Mon, 13 Dec 2004 02:29:34 GMT (envelope-from girgen@freefall.freebsd.org) Received: (from girgen@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD2TYDf083842; Mon, 13 Dec 2004 02:29:34 GMT (envelope-from girgen) Date: Mon, 13 Dec 2004 02:29:34 GMT From: Palle Girgensohn Message-Id: <200412130229.iBD2TYDf083842@freefall.freebsd.org> To: girgen@FreeBSD.org, girgen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/75006: repository copy postgresql74-server -> postgresql80-server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 02:29:35 -0000 Synopsis: repository copy postgresql74-server -> postgresql80-server State-Changed-From-To: open->repocopy State-Changed-By: girgen State-Changed-When: Mon Dec 13 02:27:12 GMT 2004 State-Changed-Why: Over to portmgr for repocopy Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: girgen Responsible-Changed-When: Mon Dec 13 02:27:12 GMT 2004 Responsible-Changed-Why: Over to portmgr for repocopy http://www.freebsd.org/cgi/query-pr.cgi?pr=75006 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 06:20:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA46816A4CF for ; Mon, 13 Dec 2004 06:20:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D75C43D54 for ; Mon, 13 Dec 2004 06:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD6KFbB043817 for ; Mon, 13 Dec 2004 06:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD6KF1U043815; Mon, 13 Dec 2004 06:20:15 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 06:20:15 GMT Resent-Message-Id: <200412130620.iBD6KF1U043815@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, Jim Shewmaker Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9002D16A4D0 for ; Mon, 13 Dec 2004 06:10:50 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38EAC43D5E for ; Mon, 13 Dec 2004 06:10:50 +0000 (GMT) (envelope-from jimshew@gmail.com) Received: by rproxy.gmail.com with SMTP id z35so614352rne for ; Sun, 12 Dec 2004 22:10:48 -0800 (PST) Received: by 10.38.181.65 with SMTP id d65mr1538844rnf; Sun, 12 Dec 2004 22:10:48 -0800 (PST) Received: by 10.38.66.15 with HTTP; Sun, 12 Dec 2004 22:10:48 -0800 (PST) Message-Id: <820e6586041212221053c017ff@mail.gmail.com> Date: Sun, 12 Dec 2004 22:10:48 -0800 From: Jim Shewmaker To: FreeBSD-gnats-submit@FreeBSD.org In-Reply-To: <200412090226.iB92QZ4O000400@bsdstats.calvarychapel.com> References: <200412090226.iB92QZ4O000400@bsdstats.calvarychapel.com> cc: jims@bluenotch.com Subject: ports/75007: [maintainer-update] sysutils/nagios-statd 3.10 to 3.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jim Shewmaker List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 06:20:16 -0000 >Number: 75007 >Category: ports >Synopsis: [maintainer-update] sysutils/nagios-statd 3.10 to 3.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: Mon Dec 13 06:20:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jim Shewmaker >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: >Description: Update to 3.11 >How-To-Repeat: >Fix: --- nagios-statd.patch begins here --- --- Makefile.orig Wed Dec 8 18:17:38 2004 +++ Makefile Wed Dec 8 18:21:06 2004 @@ -6,8 +6,8 @@ # PORTNAME= nagios-statd -PORTVERSION= 3.10 -CATEGORIES= sysutils python +PORTVERSION= 3.11 +CATEGORIES= sysutils python net-mgmt MASTER_SITES= http://www.twoevils.org/files/netsaint_statd/ MAINTAINER= jims@bluenotch.com --- distinfo.orig Wed Dec 8 18:17:44 2004 +++ distinfo Wed Dec 8 18:21:13 2004 @@ -1,2 +1,2 @@ -MD5 (nagios-statd-3.10.tar.gz) = 6dfa1b78f0b1542e5feb5a87877105d8 -SIZE (nagios-statd-3.10.tar.gz) = 10225 +MD5 (nagios-statd-3.11.tar.gz) = aed145d2df7a261530d91ce23ae52cca +SIZE (nagios-statd-3.11.tar.gz) = 10767 --- nagios-statd.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: >System: FreeBSD bsdstats.calvarychapel.com 4.10-STABLE FreeBSD 4.10-STABLE #0: Fri Dec 3 12:18:41 PST 2004 jimshew@bsdstats.calvarychapel.com:/usr/obj/usr/src/sys/GENERIC i386 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 07:22:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61C816A4CE; Mon, 13 Dec 2004 07:22:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9069C43D2F; Mon, 13 Dec 2004 07:22:10 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD7MAjC049196; Mon, 13 Dec 2004 07:22:10 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD7MAWl049191; Mon, 13 Dec 2004 07:22:10 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 07:22:10 GMT From: Volker Stolz Message-Id: <200412130722.iBD7MAWl049191@freefall.freebsd.org> To: jon.drews@gmail.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75005: editors/ted: maintainer e-mail change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 07:22:10 -0000 Synopsis: editors/ted: maintainer e-mail change State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Dec 13 07:21:50 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75005 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 07:26:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7995716A4CE; Mon, 13 Dec 2004 07:26:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5213B43D53; Mon, 13 Dec 2004 07:26:17 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD7QHVu049336; Mon, 13 Dec 2004 07:26:17 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD7QHxm049332; Mon, 13 Dec 2004 07:26:17 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 07:26:17 GMT From: Volker Stolz Message-Id: <200412130726.iBD7QHxm049332@freefall.freebsd.org> To: david@catwhisker.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74925: GPSMan 6.2 -> 6.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 07:26:17 -0000 Synopsis: GPSMan 6.2 -> 6.2.1 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Dec 13 07:26:01 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74925 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 07:29:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAB7516A4CE; Mon, 13 Dec 2004 07:29:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9435443D1D; Mon, 13 Dec 2004 07:29:52 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD7TqDH049438; Mon, 13 Dec 2004 07:29:52 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD7Tqbr049434; Mon, 13 Dec 2004 07:29:52 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 07:29:52 GMT From: Volker Stolz Message-Id: <200412130729.iBD7Tqbr049434@freefall.freebsd.org> To: marcus@corp.grupos.com.br, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74568: Update textproc/py-xml to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 07:29:52 -0000 Synopsis: Update textproc/py-xml to 0.8.4 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Mon Dec 13 07:29:21 GMT 2004 State-Changed-Why: Superseded by ports/74974 submitted by maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=74568 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 07:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFAA416A4CF for ; Mon, 13 Dec 2004 07:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A49E43D49 for ; Mon, 13 Dec 2004 07:30:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD7UTsm049506 for ; Mon, 13 Dec 2004 07:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD7UTfK049491; Mon, 13 Dec 2004 07:30:29 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 07:30:29 GMT Resent-Message-Id: <200412130730.iBD7UTfK049491@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABA1316A522 for ; Mon, 13 Dec 2004 07:25:58 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDFE043D5C for ; Mon, 13 Dec 2004 07:25:57 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.217] (port=62789 helo=novel.zapto.org) by mx2.mail.ru with esmtp id 1Cdkah-0008Bx-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Dec 2004 10:25:56 +0300 Message-Id: Date: Mon, 13 Dec 2004 10:25:56 +0300 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75009: [ maintainer ] security/scanlogd: install rc script, minor fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 13 Dec 2004 07:30:31 -0000 >Number: 75009 >Category: ports >Synopsis: [ maintainer ] security/scanlogd: install rc script, minor 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: Mon Dec 13 07:30:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #3: Sat Dec 11 21:01:26 MSK 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/MIRRORBOX i386 >Description: - install rc script - do all LIBNIDS stuff in the one "if" block instead of two ones - bump PORTREVISION >How-To-Repeat: >Fix: --- port.scanlogd.rc begins here --- diff -ruN scanlogd.orig/Makefile scanlogd/Makefile --- scanlogd.orig/Makefile Mon Dec 13 09:42:48 2004 +++ scanlogd/Makefile Mon Dec 13 10:18:42 2004 @@ -7,6 +7,7 @@ PORTNAME= scanlogd PORTVERSION= 2.2.5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://openwall.com/scanlogd/ \ ftp://ftp.openwall.com/pub/projects/scanlogd/ \ @@ -15,11 +16,10 @@ MAINTAINER= bogorodskiy@inbox.ru COMMENT= TCP port scan detection tool -.if defined(WITH_LIBNIDS) -BUILD_DEPENDS+= ${LOCALBASE}/lib/libnids.a:${PORTSDIR}/net/libnids -.endif +USE_RC_SUBR= yes .if defined(WITH_LIBNIDS) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libnids.a:${PORTSDIR}/net/libnids ALL_TARGET= libnids .else ALL_TARGET= libpcap @@ -27,13 +27,20 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -c" LD="${CC}" MAN8= scanlogd.8 -PLIST_FILES= bin/scanlogd +PLIST_FILES= bin/scanlogd \ + etc/rc.d/scanlogd.sh + +RC_SCRIPTS_SUB= PREFIX=${PREFIX} \ + RC_SUBR=${RC_SUBR} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/scanlogd ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/scanlogd.8 ${MANPREFIX}/man/man8 post-install: - @${CAT} ${PKGMESSAGE} + @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ + ${FILESDIR}/scanlogd.sh > ${PREFIX}/etc/rc.d/scanlogd.sh + @${CHMOD} ${BINMODE} ${PREFIX}/etc/rc.d/scanlogd.sh + @${CAT} ${PKGMESSAGE} .include diff -ruN scanlogd.orig/files/scanlogd.sh scanlogd/files/scanlogd.sh --- scanlogd.orig/files/scanlogd.sh Thu Jan 1 03:00:00 1970 +++ scanlogd/files/scanlogd.sh Mon Dec 13 09:53:40 2004 @@ -0,0 +1,26 @@ +#!/bin/sh + +# Start or stop scanlogd +# $FreeBSD$ + +# PROVIDE: scanlogd +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: FreeBSD shutdown +# + +prefix=%%PREFIX%% + +scanlogd_enable=${scanlogd_enable:-"NO"} # Enable scanlogd +scanlogd_program="${prefix}/sbin/scanlogd" # Location of scanlogd +scanlogd_flags=${scanlogd_flags:-""} # Flags to scanlogd + +. %%RC_SUBR%% + +name="scanlogd" +rcvar=`set_rcvar` +command="${prefix}/sbin/${name}" +required_files="" + +load_rc_config $name +run_rc_command "$1" --- port.scanlogd.rc ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 07:50:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BD8D16A4CE for ; Mon, 13 Dec 2004 07:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDC6743D45 for ; Mon, 13 Dec 2004 07:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD7oRsO051125 for ; Mon, 13 Dec 2004 07:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD7oRPB051124; Mon, 13 Dec 2004 07:50:27 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 07:50:27 GMT Resent-Message-Id: <200412130750.iBD7oRPB051124@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB0A16A4CE for ; Mon, 13 Dec 2004 07:41:03 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id E93AE43D41 for ; Mon, 13 Dec 2004 07:41:02 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.15] (port=55534 helo=novel.zapto.org) by mx2.mail.ru with esmtp id 1CdkpJ-000BFF-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Dec 2004 10:41:02 +0300 Message-Id: Date: Mon, 13 Dec 2004 10:41:02 +0300 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75010: [ maintainer ] ftp/wzdftpd: fix typo in wzdftpd.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 13 Dec 2004 07:50:28 -0000 >Number: 75010 >Category: ports >Synopsis: [ maintainer ] ftp/wzdftpd: fix typo in wzdftpd.sh >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 Dec 13 07:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #3: Sat Dec 11 21:01:26 MSK 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/MIRRORBOX i386 >Description: Do s/gkrellmd/wzdftpd/ in files/wzdftpd.sh I will not use copy/paste again. I will not use copy/paste again. I will not use copy/paste again. ... >How-To-Repeat: >Fix: --- port.wzd.bugfix begins here --- diff -ru wzdftpd.orig/files/wzdftpd.sh wzdftpd/files/wzdftpd.sh --- wzdftpd.orig/files/wzdftpd.sh Mon Dec 13 10:34:52 2004 +++ wzdftpd/files/wzdftpd.sh Mon Dec 13 10:35:18 2004 @@ -13,7 +13,7 @@ wzdftpd_enable=${wzdftpd_enable:-"NO"} # Enable wzdftpd wzdftpd_program="${prefix}/sbin/wzdftpd" # Location of wzdftpd -wzdftpd_flags=${gkrellmd_flags:-""} # Flags to wzdftpd +wzdftpd_flags=${wzdftpd_flags:-""} # Flags to wzdftpd . %%RC_SUBR%% --- port.wzd.bugfix ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 08:20:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D11716A4CE for ; Mon, 13 Dec 2004 08:20:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDA6E43D6A for ; Mon, 13 Dec 2004 08:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD8KMFJ055981 for ; Mon, 13 Dec 2004 08:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD8KMwS055980; Mon, 13 Dec 2004 08:20:22 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 08:20:22 GMT Resent-Message-Id: <200412130820.iBD8KMwS055980@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17C1016A4CE for ; Mon, 13 Dec 2004 08:17:59 +0000 (GMT) Received: from delight.idiom.com (delight.idiom.com [216.240.32.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2EAB43D5E for ; Mon, 13 Dec 2004 08:17:58 +0000 (GMT) (envelope-from mwm@mired.org) Received: from idiom.com (idiom.com [216.240.32.1]) by delight.idiom.com (Postfix) with ESMTP id 381E31CC66E for ; Mon, 13 Dec 2004 00:17:58 -0800 (PST) Received: from mired.org (mwm@idiom [216.240.32.1]) by idiom.com (8.12.11/8.12.11) with SMTP id iBD8HvUj037462 for ; Mon, 13 Dec 2004 00:17:57 -0800 (PST) (envelope-from mwm@mired.org) Received: (qmail 13558 invoked by uid 1001); 13 Dec 2004 08:17:56 -0000 Message-Id: <20041213081756.13557.qmail@mired.org> Date: 13 Dec 2004 08:17:56 -0000 From: Mike Meyer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75011: [PATCH] math/unixstat port has rotten bits in it X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 13 Dec 2004 08:20:23 -0000 >Number: 75011 >Category: ports >Synopsis: [PATCH] math/unixstat port has rotten bits in it >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 Dec 13 08:20:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 5.3-RELEASE i386 >Organization: Meyer Consulting >Environment: System: FreeBSD guru.mired.org 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: The math/unixstat package has components that don't compile properly on 5.3, as well as a tarball that causes bsdtar to throw up. >How-To-Repeat: Try to install math/unixstat on a 5.3 system. >Fix: Aplly the attached patch to the unixstat port. diff -Nru unixstat-orig/Makefile unixstat/Makefile --- unixstat-orig/Makefile Sun Dec 12 12:12:30 2004 +++ unixstat/Makefile Sun Dec 12 23:18:08 2004 @@ -7,6 +7,7 @@ PORTNAME= unixstat PORTVERSION= 5.4 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= # must fetch manually DISTNAME= stat @@ -16,6 +17,10 @@ COMMENT= A statistics package designed for use with the Unix shell RESTRICTED= "License does not allow redistribution of binaries" + +EXTRACT_CMD= uncompress +EXTRACT_BEFORE_ARGS=-c +EXTRACT_AFTER_ARGS=| gtar -xf - MAN1= abut.1 anova.1 calc.1 colex.1 contab.1 desc.1 dm.1 dprime.1 \ dsort.1 features.1 ff.1 fls.1 fpack.1 linex.1 maketrix.1 \ diff -Nru unixstat-orig/files/patch-Makefile unixstat/files/patch-Makefile --- unixstat-orig/files/patch-Makefile Sun Dec 12 12:12:30 2004 +++ unixstat/files/patch-Makefile Sun Dec 12 23:01:34 2004 @@ -1,5 +1,5 @@ --- src/makefile.orig Tue Jun 22 18:00:21 1993 -+++ src/makefile Thu Aug 23 15:57:48 2001 ++++ src/makefile Sun Dec 12 22:51:48 2004 @@ -14,14 +14,13 @@ ########################################################################## diff -Nru unixstat-orig/files/patch-src unixstat/files/patch-src --- unixstat-orig/files/patch-src Wed Dec 31 18:00:00 1969 +++ unixstat/files/patch-src Sun Dec 12 23:12:51 2004 @@ -0,0 +1,55 @@ +--- src/ff.c.orig Sun Dec 12 22:56:48 2004 ++++ src/ff.c Sun Dec 12 22:59:17 2004 +@@ -911,7 +911,7 @@ + + strcpy (numbuf, oldexpand (title, gpage, page, file)); + if (Needfls) +- fls (file, numbuf, answer); ++ usfls (file, numbuf, answer); + else + strcpy (answer, numbuf); + return (answer); +--- src/fls.c.orig Sun Dec 12 22:59:31 2004 ++++ src/fls.c Sun Dec 12 23:00:12 2004 +@@ -183,7 +183,7 @@ + statstdin (statptr) + struct stat *statptr; + { +- long clock, time (); ++ long clock ; + clock = time (0); + statptr->st_atime = clock; + statptr->st_mtime = clock; +@@ -200,7 +200,7 @@ + + /*FUNCTION fls: formated listing of file */ + Status +-fls (file, format, bptr) /* put formatted file listing in buffer */ ++usfls (file, format, bptr) /* put formatted file listing in buffer */ + char *file; /* name of the file to print */ + char *format; /* print format control string, like printf */ + char *bptr; /* pointer to buffer in which to print stats */ +--- src/calc.c.orig Sun Dec 12 23:08:23 2004 ++++ src/calc.c Sun Dec 12 23:11:21 2004 +@@ -1,4 +1,3 @@ +-extern char *malloc(), *realloc(); + + # line 2 "calc.y" + /* Copyright 1981 Gary Perlman */ +@@ -79,7 +78,7 @@ + double eval (), Answer; + double *Constant; + char *getline (); +-FILE *Outfile = stdout; ++FILE *Outfile; + + # line 83 "calc.y" + typedef union +@@ -222,6 +221,7 @@ + { + int i; + signal (SIGINT, SIG_IGN); ++ Outfile = stdout; + if (isatty (fileno (stdin))) + { + Interactive = 1; diff -Nru unixstat-orig/pkg-plist unixstat/pkg-plist --- unixstat-orig/pkg-plist Sun Dec 12 12:12:30 2004 +++ unixstat/pkg-plist Sun Dec 12 12:52:50 2004 @@ -1,6 +1,7 @@ @comment $FreeBSD: ports/math/unixstat/pkg-plist,v 1.2 2004/10/12 08:14:08 sergei Exp $ bin/abut bin/anova +bin/calc bin/colex bin/contab bin/desc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 09:11:07 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECD1016A4CE; Mon, 13 Dec 2004 09:11:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC97543D5E; Mon, 13 Dec 2004 09:11:07 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from freefall.freebsd.org (kuriyama@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD9B7Pn063830; Mon, 13 Dec 2004 09:11:07 GMT (envelope-from kuriyama@freefall.freebsd.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD9B7EQ063826; Mon, 13 Dec 2004 09:11:07 GMT (envelope-from kuriyama) Date: Mon, 13 Dec 2004 09:11:07 GMT From: Jun Kuriyama Message-Id: <200412130911.iBD9B7EQ063826@freefall.freebsd.org> To: kensmith@cse.Buffalo.EDU, kuriyama@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74711: update for fastest_cvsup port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 09:11:08 -0000 Synopsis: update for fastest_cvsup port State-Changed-From-To: open->closed State-Changed-By: kuriyama State-Changed-When: Mon Dec 13 09:10:56 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74711 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 09:30:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B38FE16A4CE for ; Mon, 13 Dec 2004 09:30:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BC9543D48 for ; Mon, 13 Dec 2004 09:30:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD9UYUI064455 for ; Mon, 13 Dec 2004 09:30:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD9UYAF064451; Mon, 13 Dec 2004 09:30:34 GMT (envelope-from gnats) Date: Mon, 13 Dec 2004 09:30:34 GMT Message-Id: <200412130930.iBD9UYAF064451@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/74539: Update cad/linux-eagle (and german/linux-eagle) to 4.13. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 09:30:34 -0000 The following reply was made to PR ports/74539; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, frank@exit.com, riggs@rrr.de Cc: Subject: Re: ports/74539: Update cad/linux-eagle (and german/linux-eagle) to 4.13. Date: Mon, 13 Dec 2004 10:27:22 +0100 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 09:40:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C08316A4CE for ; Mon, 13 Dec 2004 09:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D2F43D5A for ; Mon, 13 Dec 2004 09:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBD9eQQc065506 for ; Mon, 13 Dec 2004 09:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBD9eQ8x065505; Mon, 13 Dec 2004 09:40:26 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 09:40:26 GMT Resent-Message-Id: <200412130940.iBD9eQ8x065505@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, "Filippo Natali" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A14B216A4CE for ; Mon, 13 Dec 2004 09:36:21 +0000 (GMT) Received: from w1001.widhost.net (w1001.widhost.net [209.235.192.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E36F43D58 for ; Mon, 13 Dec 2004 09:36:21 +0000 (GMT) (envelope-from filippo@widestore.net) Received: from mx0.hq.widestore.net (mx0.hq.widestore.net [212.97.46.42]) by w1001.widhost.net (Postfix) with ESMTP id 2AD17220A4 for ; Mon, 13 Dec 2004 04:36:20 -0500 (EST) Received: from cagnina.hq.widestore.net (cagnina.hq.widestore.net [192.168.1.1]) by mx0.hq.widestore.net (Postfix) with ESMTP id 110A45B for ; Mon, 13 Dec 2004 10:35:54 +0100 (CET) Message-Id: <1102930554.0@cagnina.hq.widestore.net> Date: Mon, 13 Dec 2004 10:35:54 +0100 From: "Filippo Natali" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/75013: [PATCH] bsd.python.mk: force Zope products to use python 2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 09:40:26 -0000 >Number: 75013 >Category: ports >Synopsis: [PATCH] bsd.python.mk: force Zope products to use python 2.3 >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 Dec 13 09:40:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Filippo Natali >Release: FreeBSD 5.3-STABLE i386 >Organization: Widestore srl >Environment: System: FreeBSD 5.3-STABLE #0: Thu Nov 18 16:24:25 CET 2004 filippo@cagnina.hq.widestore.net:/usr/obj/usr/src/sys/CAGNINA >Description: Since the import of python 2.4 as default version, all Zope products (which usually have "USE_ZOPE=yes" and "USE_PYTHON="yes" defined in Makefile) depend both from python 2.3 and 2.4. >How-To-Repeat: # cd /usr/ports/www/zope-cmf # make install ... # pkg_info -r zope-cmf-1.4.7 Information for zope-cmf-1.4.7: Depends on: Dependency: python-2.3.4_3 Dependency: python-2.4 Dependency: zope-2.7.3 >Fix: --- bsd.python.mk.patch begins here --- --- bsd.python.mk Wed Dec 1 16:04:04 2004 +++ bsd.python.mk.new Tue Dec 7 16:19:32 2004 @@ -136,6 +136,10 @@ || ${ECHO_CMD} ${_PYTHON_PORTBRANCH} .endif # defined(PYTHON_VERSION) +.if defined(USE_ZOPE) +USE_PYTHON= 2.3 +.endif + .if !defined(USE_PYTHON) .if defined(USE_PYTHON_BUILD) USE_PYTHON= ${USE_PYTHON_BUILD} --- bsd.python.mk.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:03:40 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4E7E16A4CE; Mon, 13 Dec 2004 10:03:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1A9543D31; Mon, 13 Dec 2004 10:03:40 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDA3ele066466; Mon, 13 Dec 2004 10:03:40 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDA3et3066461; Mon, 13 Dec 2004 10:03:40 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:03:40 GMT From: Kirill Ponomarew Message-Id: <200412131003.iBDA3et3066461@freefall.freebsd.org> To: bogorodskiy@inbox.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75010: [ maintainer ] ftp/wzdftpd: fix typo in wzdftpd.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:03:40 -0000 Synopsis: [ maintainer ] ftp/wzdftpd: fix typo in wzdftpd.sh State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Dec 13 10:03:35 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75010 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:07:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A8D016A4CE; Mon, 13 Dec 2004 10:07:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6743043D48; Mon, 13 Dec 2004 10:07:46 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDA7kVE070516; Mon, 13 Dec 2004 10:07:46 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDA7kUF070512; Mon, 13 Dec 2004 10:07:46 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:07:46 GMT From: Kirill Ponomarew Message-Id: <200412131007.iBDA7kUF070512@freefall.freebsd.org> To: bogorodskiy@inbox.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75009: [ maintainer ] security/scanlogd: install rc script, minor fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:07:46 -0000 Synopsis: [ maintainer ] security/scanlogd: install rc script, minor fixes State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Dec 13 10:07:42 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75009 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:11:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15C7116A4CE; Mon, 13 Dec 2004 10:11:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E73C043D55; Mon, 13 Dec 2004 10:11:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDABTlG070734; Mon, 13 Dec 2004 10:11:29 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDABTRh070730; Mon, 13 Dec 2004 10:11:29 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:11:29 GMT From: Kirill Ponomarew Message-Id: <200412131011.iBDABTRh070730@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perky@FreeBSD.org Subject: Re: ports/75013: [PATCH] bsd.python.mk: force Zope products to use python 2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:11:30 -0000 Synopsis: [PATCH] bsd.python.mk: force Zope products to use python 2.3 Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: krion Responsible-Changed-When: Mon Dec 13 10:11:19 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=75013 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:15:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5473A16A4CE; Mon, 13 Dec 2004 10:15:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F96E43D3F; Mon, 13 Dec 2004 10:15:00 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAF0hP070916; Mon, 13 Dec 2004 10:15:00 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAExin070912; Mon, 13 Dec 2004 10:14:59 GMT (envelope-from vanilla) Date: Mon, 13 Dec 2004 10:14:59 GMT From: "Vanilla I. Shu" Message-Id: <200412131014.iBDAExin070912@freefall.freebsd.org> To: rafan@infor.org, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74980: [MAINTAINER] devel/SVN-Web: update to 0.38 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:15:00 -0000 Synopsis: [MAINTAINER] devel/SVN-Web: update to 0.38 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Dec 13 10:14:53 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=74980 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:15:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B86E316A4CE; Mon, 13 Dec 2004 10:15:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E9E43D58; Mon, 13 Dec 2004 10:15:19 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAFJ2I070965; Mon, 13 Dec 2004 10:15:19 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAFJMO070961; Mon, 13 Dec 2004 10:15:19 GMT (envelope-from vanilla) Date: Mon, 13 Dec 2004 10:15:19 GMT From: "Vanilla I. Shu" Message-Id: <200412131015.iBDAFJMO070961@freefall.freebsd.org> To: rafan@infor.org, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74979: [MAINTAINER] devel/PAR: update to 0.86 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:15:19 -0000 Synopsis: [MAINTAINER] devel/PAR: update to 0.86 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Dec 13 10:15:12 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=74979 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:16:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE45F16A4CE; Mon, 13 Dec 2004 10:16:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB05943D5D; Mon, 13 Dec 2004 10:16:24 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAGOw1071048; Mon, 13 Dec 2004 10:16:24 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAGOWA071044; Mon, 13 Dec 2004 10:16:24 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:16:24 GMT From: Kirill Ponomarew Message-Id: <200412131016.iBDAGOWA071044@freefall.freebsd.org> To: anray@inet.ua, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75004: [MANTAINER] net/kf: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:16:25 -0000 Synopsis: [MANTAINER] net/kf: update to new version State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Dec 13 10:16:20 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75004 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:17:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A16216A4CF; Mon, 13 Dec 2004 10:17:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 381C543D48; Mon, 13 Dec 2004 10:17:55 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAHt1D071126; Mon, 13 Dec 2004 10:17:55 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAHt3P071122; Mon, 13 Dec 2004 10:17:55 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 10:17:55 GMT From: Volker Stolz Message-Id: <200412131017.iBDAHt3P071122@freefall.freebsd.org> To: frank@exit.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74539: Update cad/linux-eagle (and german/linux-eagle) to 4.13. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:17:55 -0000 Synopsis: Update cad/linux-eagle (and german/linux-eagle) to 4.13. State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Dec 13 10:17:46 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74539 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:20:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A31416A4CE; Mon, 13 Dec 2004 10:20:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC06043D5E; Mon, 13 Dec 2004 10:20:18 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAKI1S071231; Mon, 13 Dec 2004 10:20:18 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAKI55071227; Mon, 13 Dec 2004 10:20:18 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:20:18 GMT From: Kirill Ponomarew Message-Id: <200412131020.iBDAKI55071227@freefall.freebsd.org> To: maho@freebsd.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/74937: REPOCOPY REQUEST lang/gcc34 -> lang/gccc-ooo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:20:19 -0000 Synopsis: REPOCOPY REQUEST lang/gcc34 -> lang/gccc-ooo State-Changed-From-To: open->repocopy State-Changed-By: krion State-Changed-When: Mon Dec 13 10:19:35 GMT 2004 State-Changed-Why: portmgr territory Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: krion Responsible-Changed-When: Mon Dec 13 10:19:35 GMT 2004 Responsible-Changed-Why: portmgr territory http://www.freebsd.org/cgi/query-pr.cgi?pr=74937 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:33:58 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D586516A4D1; Mon, 13 Dec 2004 10:33:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B30A843D46; Mon, 13 Dec 2004 10:33:58 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAXwu1072624; Mon, 13 Dec 2004 10:33:58 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAXwu5072620; Mon, 13 Dec 2004 10:33:58 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:33:58 GMT From: Kirill Ponomarew Message-Id: <200412131033.iBDAXwu5072620@freefall.freebsd.org> To: rafan@infor.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74973: [MAINTAINER] science/libsvm: correct pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:33:59 -0000 Synopsis: [MAINTAINER] science/libsvm: correct pkg-plist State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Dec 13 10:33:54 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74973 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:35:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7BFC16A4CF; Mon, 13 Dec 2004 10:35:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B55A543D58; Mon, 13 Dec 2004 10:35:13 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAZDxM072713; Mon, 13 Dec 2004 10:35:13 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAZDQh072709; Mon, 13 Dec 2004 10:35:13 GMT (envelope-from vanilla) Date: Mon, 13 Dec 2004 10:35:13 GMT From: "Vanilla I. Shu" Message-Id: <200412131035.iBDAZDQh072709@freefall.freebsd.org> To: rafan@infor.org, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71572: [PATCH] devel/p5-PPerl: take maintainership & add multiuser support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:35:14 -0000 Synopsis: [PATCH] devel/p5-PPerl: take maintainership & add multiuser support State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Dec 13 10:35:05 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=71572 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:37:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2C8116A4CE; Mon, 13 Dec 2004 10:37:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B5E43D5C; Mon, 13 Dec 2004 10:37:16 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAbGDA072791; Mon, 13 Dec 2004 10:37:16 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAbG8Y072787; Mon, 13 Dec 2004 10:37:16 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:37:16 GMT From: Kirill Ponomarew Message-Id: <200412131037.iBDAbG8Y072787@freefall.freebsd.org> To: ser_gagnon@sympatico.ca, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75000: Patch port: audio/wsoundprefs unbroke port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:37:17 -0000 Synopsis: Patch port: audio/wsoundprefs unbroke port State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Mon Dec 13 10:36:35 GMT 2004 State-Changed-Why: Please submit patches relative to files/ directory. http://www.freebsd.org/cgi/query-pr.cgi?pr=75000 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:39:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 499D916A4D0; Mon, 13 Dec 2004 10:39:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25D1443D31; Mon, 13 Dec 2004 10:39:48 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAdmV9072900; Mon, 13 Dec 2004 10:39:48 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAdm6G072896; Mon, 13 Dec 2004 10:39:48 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 10:39:48 GMT From: Kirill Ponomarew Message-Id: <200412131039.iBDAdm6G072896@freefall.freebsd.org> To: jimshew@gmail.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75007: [maintainer-update] sysutils/nagios-statd 3.10 to 3.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:39:48 -0000 Synopsis: [maintainer-update] sysutils/nagios-statd 3.10 to 3.11 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Dec 13 10:39:44 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75007 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:42:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBB0416A4CE; Mon, 13 Dec 2004 10:42:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A926843D54; Mon, 13 Dec 2004 10:42:21 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAgLMb073113; Mon, 13 Dec 2004 10:42:21 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAgLh0073109; Mon, 13 Dec 2004 10:42:21 GMT (envelope-from vanilla) Date: Mon, 13 Dec 2004 10:42:21 GMT From: "Vanilla I. Shu" Message-Id: <200412131042.iBDAgLh0073109@freefall.freebsd.org> To: tillman@seekingfire.com, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72706: [NEW PORT] devel/p5-List-Group-1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:42:21 -0000 Synopsis: [NEW PORT] devel/p5-List-Group-1.3 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Dec 13 10:42:12 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=72706 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 10:46:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C95BE16A4CE; Mon, 13 Dec 2004 10:46:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A627343D58; Mon, 13 Dec 2004 10:46:37 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDAkbST073216; Mon, 13 Dec 2004 10:46:37 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDAkbUp073212; Mon, 13 Dec 2004 10:46:37 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 10:46:37 GMT From: Volker Stolz Message-Id: <200412131046.iBDAkbUp073212@freefall.freebsd.org> To: oconnell@soe.ucsd.edu, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/74469: mplayer-skins port doesn't build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 10:46:37 -0000 Synopsis: mplayer-skins port doesn't build State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Dec 13 10:46:05 GMT 2004 State-Changed-Why: Does Edwin's solution settle your problem? Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Dec 13 10:46:05 GMT 2004 Responsible-Changed-Why: I'll track this. http://www.freebsd.org/cgi/query-pr.cgi?pr=74469 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 11:02:02 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 559EC16A4CE; Mon, 13 Dec 2004 11:02:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2067743D4C; Mon, 13 Dec 2004 11:02:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDB21le074915; Mon, 13 Dec 2004 11:02:01 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDB21nS074911; Mon, 13 Dec 2004 11:02:01 GMT (envelope-from krion) Date: Mon, 13 Dec 2004 11:02:01 GMT From: Kirill Ponomarew Message-Id: <200412131102.iBDB21nS074911@freefall.freebsd.org> To: greg@codeconcepts.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74953: New port: devel/dits Data Integrity Test Tool. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 11:02:02 -0000 Synopsis: New port: devel/dits Data Integrity Test Tool. State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Dec 13 11:01:54 GMT 2004 State-Changed-Why: New port added, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74953 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 11:02:44 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 857C616A4CE; Mon, 13 Dec 2004 11:02:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61E1D43D1F; Mon, 13 Dec 2004 11:02:44 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDB2iqQ075604; Mon, 13 Dec 2004 11:02:44 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDB2iQ5075600; Mon, 13 Dec 2004 11:02:44 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 11:02:44 GMT From: Volker Stolz Message-Id: <200412131102.iBDB2iQ5075600@freefall.freebsd.org> To: wjw@withagen.FreeBSD.ORG, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74350: [Port update] devel/cocktail corrected for 64bits compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 11:02:44 -0000 Synopsis: [Port update] devel/cocktail corrected for 64bits compilation State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Dec 13 11:02:07 GMT 2004 State-Changed-Why: Still dumps core on ia64: Parser.c:1481: warning: no previous prototype for 'CloseParser' ../../tmp/bin/rex -cd lex.rex; Segmentation fault (core dumped) *** Error code 139 Stop in /dumpster/home/vs/cocktail/work/cocktail-9309/l2r/src. FreeBSD pluto1.freebsd.org 5.3-STABLE FreeBSD 5.3-STABLE #1: Thu Dec 9 07:37:51 UTC 2004 marcel@pluto1.freebsd.org:/p/5.x/src/sys/ia64/compile/PLUTO1 ia64 http://www.freebsd.org/cgi/query-pr.cgi?pr=74350 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 11:10:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7605F16A4CE for ; Mon, 13 Dec 2004 11:10:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51A6743D54 for ; Mon, 13 Dec 2004 11:10:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDBARRa081553 for ; Mon, 13 Dec 2004 11:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDBARe3081551; Mon, 13 Dec 2004 11:10:27 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 11:10:27 GMT Resent-Message-Id: <200412131110.iBDBARe3081551@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, Sergiu Partenie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3023C16A4CE for ; Mon, 13 Dec 2004 11:09:26 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id E271B43D2D for ; Mon, 13 Dec 2004 11:09:25 +0000 (GMT) (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 iBDB9PSg031435 for ; Mon, 13 Dec 2004 11:09:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBDB9PGq031433; Mon, 13 Dec 2004 11:09:25 GMT (envelope-from nobody) Message-Id: <200412131109.iBDB9PGq031433@www.freebsd.org> Date: Mon, 13 Dec 2004 11:09:25 GMT From: Sergiu Partenie To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75015: cvsup on amd64 with runsocks (socks5) coredumps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 11:10:27 -0000 >Number: 75015 >Category: ports >Synopsis: cvsup on amd64 with runsocks (socks5) coredumps >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 Dec 13 11:10:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sergiu Partenie >Release: FreeBSD 5.3-RELEASE amd64 >Organization: >Environment: FreeBSD xenon.connex.ro 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 03:50:01 UTC 2004 root@fanboy.samsco.home:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When trying to run cvsup on 5.3 (installed from official ISOs) on an amd64 trough a socks server we get the following error: ================== xenon# runsocks cvsup -P m -L 1 /usr/share/examples/cvsup/ports-supfile -h cvsup1.ro.freebsd.org @M3novm Connected to cvsup1.ro.freebsd.org *** *** runtime error: *** Subscript out of range *** file "/u2/ports/net/cvsup-without-gui/work/cvsup-snap-16.1h/suplib/src/SupMisc.m3", line 216 *** use option @M3stackdump to get a stack trace Abort (core dumped) ================== here is with the stack dump ================== xenon# runsocks cvsup -P m -L 1 /usr/share/examples/cvsup/ports-supfile -h cvsup1.ro.freebsd.org @M3novm @M3stackdump Connected to cvsup1.ro.freebsd.org *** *** runtime error: *** Subscript out of range *** file "/u2/ports/net/cvsup-without-gui/work/cvsup-snap-16.1h/suplib/src/SupMisc.m3", line 216 *** ------------------ EXCEPTION HANDLER STACK --------------------- 0x7fffffffc410 TRY-FINALLY proc = 0x44f18f frame = 0x7fffffffc460 0x7fffffffc510 TRY-EXCEPT {CVProto.NotSupported, TokScan.Error} 0x7fffffffcb50 TRY-FINALLY proc = 0x41cd8d frame = 0x7fffffffd3e0 0x7fffffffcb70 TRY-FINALLY proc = 0x41cdb6 frame = 0x7fffffffd3e0 0x7fffffffcb90 TRY-FINALLY proc = 0x41cdd4 frame = 0x7fffffffd3e0 0x7fffffffce30 TRY-FINALLY proc = 0x41cebf frame = 0x7fffffffd3e0 0x7fffffffd0e0 TRY-EXCEPT {Wr.Failure, FSClient.TransientFailure, Thread.Alerted, Rd.Failure, Rd.EndOfFile, FSClient.Error} 0x7fffffffd750 TRY-FINALLY proc = 0x4251af frame = 0x7fffffffe950 0x7fffffffda00 TRY-EXCEPT {Main.Error} 0x7fffffffdf10 TRY-EXCEPT {Thread.Alerted} ---------------------------------------------------------------- Abort (core dumped) ================= The socks does work ok with other applications (tested with "runsocks ftp something" and "runsocks telnet somewhere") even "runsocks cvsup /usr/share/examples/cvsup/ports-supfile -h cvsup.freebsd.org" (with no other flags) will give the same error. Unfortunatelly I cannot test in an non-socks environement. Thank you very much. >How-To-Repeat: runsocks cvsup -P m /usr/share/examples/cvsup/ports-supfile your.cvs.server @M3novm >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 11:30:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD4E116A4CF for ; Mon, 13 Dec 2004 11:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D78D43D53 for ; Mon, 13 Dec 2004 11:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDBUSrc083811 for ; Mon, 13 Dec 2004 11:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDBUSfj083805; Mon, 13 Dec 2004 11:30:28 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 11:30:28 GMT Resent-Message-Id: <200412131130.iBDBUSfj083805@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 Eggert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D97C316A4CE for ; Mon, 13 Dec 2004 11:25:25 +0000 (GMT) Received: from kobe.netlab.nec.de (kobe.netlab.nec.de [195.37.70.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0533543D54 for ; Mon, 13 Dec 2004 11:25:25 +0000 (GMT) (envelope-from root@kobe.netlab.nec.de) Received: from kobe.netlab.nec.de (localhost [127.0.0.1]) by kobe.netlab.nec.de (8.13.1/8.13.1) with ESMTP id iBDBQ4RO035345 for ; Mon, 13 Dec 2004 12:26:04 +0100 (CET) (envelope-from root@kobe.netlab.nec.de) Received: (from root@localhost) by kobe.netlab.nec.de (8.13.1/8.13.1/Submit) id iBDBQ3Ji035344; Mon, 13 Dec 2004 12:26:03 +0100 (CET) (envelope-from root) Message-Id: <200412131126.iBDBQ3Ji035344@kobe.netlab.nec.de> Date: Mon, 13 Dec 2004 12:26:03 +0100 (CET) From: Lars Eggert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75016: [MAINTAINER] www/mod_perl2: update to 1.99r18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 11:30:29 -0000 >Number: 75016 >Category: ports >Synopsis: [MAINTAINER] www/mod_perl2: update to 1.99r18 >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 Dec 13 11:30:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD kobe.netlab.nec.de 5.3-STABLE FreeBSD 5.3-STABLE #14: Tue Dec 7 13:32:55 CET >Description: - Update to 1.99r18 Removed file(s): - files/patch-ab - files/patch-ac Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- mod_perl2-1.99r18.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/mod_perl2--/Makefile /usr/ports/www/mod_perl2/Makefile --- /usr/ports/www/mod_perl2--/Makefile Mon Dec 13 12:23:25 2004 +++ /usr/ports/www/mod_perl2/Makefile Mon Dec 13 12:25:13 2004 @@ -6,26 +6,31 @@ # PORTNAME= mod_perl -PORTVERSION= 1.99r17 +PORTVERSION= 1.99r18 CATEGORIES= www perl5 MASTER_SITES= http://perl.apache.org/dist/ \ http://perl.apache.org/dist/old/ PKGNAMESUFFIX= 2 -DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/_/} +DISTNAME= ${PORTNAME}-2.0.0-RC1 MAINTAINER= lars.eggert@gmx.net COMMENT= Embeds a Perl interpreter in the Apache2 server +# no idea why they still call it r18 when the tarball is 2.0.0-RC1 +# PORTVERSION= 2.0.0r1 +# DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/-RC/} + USE_APACHE= yes WITH_APACHE2= yes PERL_CONFIGURE= yes +GMAKE= yes CONFIGURE_ARGS= MP_APXS=${LOCALBASE}/sbin/apxs \ MP_INST_APACHE2=1 PREFIX=${PREFIX} MAN3= Apache::Build.3 Apache::Test.3 Apache::TestConfig.3 \ Apache::TestMB.3 Apache::TestMM.3 Apache::TestReport.3 \ - Apache::TestRequest.3 Apache::TestRun.3 \ + Apache::TestRequest.3 Apache::TestRun.3 Apache::TestRunPHP.3 \ Apache::TestRunPerl.3 Apache::TestSmoke.3 \ Apache::TestTrace.3 Apache::TestUtil.3 Bundle::Apache2.3 \ Bundle::ApacheTest.3 ModPerl::CScan.3 ModPerl::Code.3 \ @@ -37,11 +42,6 @@ .if ${PERL_LEVEL} < 500800 IGNORE= requires perl 5.8.x or later. Install lang/perl5.8 then try again .endif - -# no idea why r16 and r17 require this - the perl build should do this copy -pre-install: - ${CP} ${WRKSRC}/WrapXS/APR/ThreadMutex/ThreadMutex.pm \ - ${WRKSRC}/blib/lib/Apache2/APR/ post-install: ${MKDIR} ${PREFIX}/include/apache2/modules/perl diff -ruN --exclude=CVS /usr/ports/www/mod_perl2--/distinfo /usr/ports/www/mod_perl2/distinfo --- /usr/ports/www/mod_perl2--/distinfo Mon Dec 13 12:23:25 2004 +++ /usr/ports/www/mod_perl2/distinfo Mon Dec 13 11:34:45 2004 @@ -1,2 +1,2 @@ -MD5 (mod_perl-1.99_17.tar.gz) = ffb9d5c825b93d91e6c3a8885f7d5296 -SIZE (mod_perl-1.99_17.tar.gz) = 1368804 +MD5 (mod_perl-2.0.0-RC1.tar.gz) = 6b3453396263cf0cdd3ae433eeadbedf +SIZE (mod_perl-2.0.0-RC1.tar.gz) = 1401333 diff -ruN --exclude=CVS /usr/ports/www/mod_perl2--/files/patch-ab /usr/ports/www/mod_perl2/files/patch-ab --- /usr/ports/www/mod_perl2--/files/patch-ab Mon Dec 13 12:23:16 2004 +++ /usr/ports/www/mod_perl2/files/patch-ab Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- ./xs/APR/aprext/Makefile.PL Wed Sep 1 19:52:04 2004 -+++ ./xs/APR/aprext/Makefile.PL.orig Wed Sep 1 19:51:51 2004 -@@ -19,7 +19,7 @@ - $src{$cfile} = "$srcdir/$cfile"; - } - --my @skip = qw(dynamic test); -+my @skip = qw(test); - push @skip, q{static} - unless (Apache::Build::BUILD_APREXT); - diff -ruN --exclude=CVS /usr/ports/www/mod_perl2--/files/patch-ac /usr/ports/www/mod_perl2/files/patch-ac --- /usr/ports/www/mod_perl2--/files/patch-ac Mon Dec 13 12:23:16 2004 +++ /usr/ports/www/mod_perl2/files/patch-ac Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- c Sat Nov 27 13:42:59 2004 -+++ ./ModPerl-Registry/lib/ModPerl/RegistryCooker.pm Sat Nov 27 13:43:11 2004 -@@ -558,7 +558,7 @@ - - my %switches = ( - 'T' => sub { -- Apache::warn("-T switch is ignored, " . -+ Apache::ServerRec::warn("-T switch is ignored, " . - "enable with 'PerlSwitches -T' in httpd.conf\n") - unless ${^TAINT}; - ""; diff -ruN --exclude=CVS /usr/ports/www/mod_perl2--/pkg-plist /usr/ports/www/mod_perl2/pkg-plist --- /usr/ports/www/mod_perl2--/pkg-plist Mon Dec 13 12:23:25 2004 +++ /usr/ports/www/mod_perl2/pkg-plist Mon Dec 13 11:25:14 2004 @@ -56,6 +56,7 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestCommonPost.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestConfig.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestConfigC.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestConfigPHP.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestConfigParse.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestConfigPerl.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestHandler.pm @@ -67,6 +68,7 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestReportPerl.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestRequest.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestRun.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestRunPHP.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestRunPerl.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestSSLCA.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache/TestServer.pm @@ -93,7 +95,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/Socket.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/String.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/Table.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/ThreadMutex.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/URI.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/UUID.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/APR/Util.pm @@ -120,9 +121,11 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/RequestIO.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/RequestRec.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/RequestUtil.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/Resource.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/Response.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/ServerRec.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/ServerUtil.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/SizeLimit.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/SourceTables.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/Status.pm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/Apache/SubProcess.pm @@ -250,8 +253,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/ModPerl/Global/Global.so %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/ModPerl/Util/Util.bs %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/ModPerl/Util/Util.so -%%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/libaprext/libaprext.bs -%%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/libaprext/libaprext.so %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/mod_perl.pm %%SITE_PERL%%/%%PERL_ARCH%%/Bundle/Apache2.pm %%SITE_PERL%%/%%PERL_ARCH%%/Bundle/ApacheTest.pm @@ -259,7 +260,6 @@ libexec/apache2/mod_perl.so @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/mod_perl @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Bundle 2>/dev/null || true -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/libaprext @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/ModPerl/Util @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/ModPerl/Global @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Apache2/auto/ModPerl/Const --- mod_perl2-1.99r18.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 11:42:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D27116A4CE; Mon, 13 Dec 2004 11:42:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C69543D1F; Mon, 13 Dec 2004 11:42:46 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDBgkbc085571; Mon, 13 Dec 2004 11:42:46 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDBgku0085567; Mon, 13 Dec 2004 11:42:46 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 11:42:46 GMT From: Volker Stolz Message-Id: <200412131142.iBDBgku0085567@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jdp@FreeBSD.org Subject: Re: ports/75015: cvsup on amd64 with runsocks (socks5) coredumps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 11:42:46 -0000 Synopsis: cvsup on amd64 with runsocks (socks5) coredumps Responsible-Changed-From-To: freebsd-ports-bugs->jdp Responsible-Changed-By: vs Responsible-Changed-When: Mon Dec 13 11:42:02 GMT 2004 Responsible-Changed-Why: jdp@ of cvsup/ezm3-fame might want to look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75015 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 12:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D0AB16A4CE for ; Mon, 13 Dec 2004 12:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AA4D43D39 for ; Mon, 13 Dec 2004 12:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDCAPG4090332 for ; Mon, 13 Dec 2004 12:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDCAPmu090331; Mon, 13 Dec 2004 12:10:25 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 12:10:25 GMT Resent-Message-Id: <200412131210.iBDCAPmu090331@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4685816A4CE for ; Mon, 13 Dec 2004 12:07:21 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2F9643D60 for ; Mon, 13 Dec 2004 12:07:20 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.80] (port=55154 helo=novel.zapto.org) by mx1.mail.ru with esmtp id 1Cdoz0-0004TE-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 13 Dec 2004 15:07:18 +0300 Message-Id: Date: Mon, 13 Dec 2004 15:07:18 +0300 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75017: [ patch ] sysutils/roottail: add extra patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 13 Dec 2004 12:10:25 -0000 >Number: 75017 >Category: ports >Synopsis: [ patch ] sysutils/roottail: add extra patch >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 Dec 13 12:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #3: Sat Dec 11 21:01:26 MSK 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/MIRRORBOX i386 >Description: Add an optional patch for root-tail. This patch replaces the standart root-tail code for finding root window with the better one, written by Johannes Jordan and Robin Hogan, which allows root-tail to work with some desktop environments, xfce4 for example. >How-To-Repeat: >Fix: --- port.roottail.patch begins here --- diff -ruN roottail.orig/Makefile roottail/Makefile --- roottail.orig/Makefile Mon Dec 13 10:43:46 2004 +++ roottail/Makefile Mon Dec 13 14:39:37 2004 @@ -11,6 +11,12 @@ MASTER_SITES= http://www.goof.com/pcg/marc/data/ DISTNAME= root-tail-${PORTVERSION} +.if defined(WITH_EXTRA_PATCH) +PATCH_SITES= http://bmp-plugins.berlios.de/misc/patches/ +PATCHFILES= roottail-1.2+xfce.diff +PATCH_DIST_STRIP= -p1 +.endif + MAINTAINER= jedgar@FreeBSD.org COMMENT= Print text directly to X11 root window @@ -18,5 +24,14 @@ PLIST_FILES= bin/root-tail USE_IMAKE= yes MAKE_ARGS= CC="${CC}" + +pre-everything:: +.if defined(WITH_EXTRA_PATCH) + @${ECHO_MSG} + @${ECHO_MSG} "Note: this extra patch is not supported by roottail maintainer." + @${ECHO_MSG} "Before reporting any problems you should build roottail without" + @${ECHO_MSG} "this option." + @${ECHO_MSG} +.endif .include diff -ruN roottail.orig/distinfo roottail/distinfo --- roottail.orig/distinfo Mon Dec 13 10:43:46 2004 +++ roottail/distinfo Mon Dec 13 11:02:29 2004 @@ -1,2 +1,4 @@ MD5 (root-tail-1.2.tar.gz) = 5a4b3c4c7ab3bed1f4575e9688aac5de SIZE (root-tail-1.2.tar.gz) = 20805 +MD5 (roottail-1.2+xfce.diff) = a71d34939024c3e98c68636ad68c5763 +SIZE (roottail-1.2+xfce.diff) = 16326 --- port.roottail.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 12:40:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE66F16A4CE for ; Mon, 13 Dec 2004 12:40:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8EA643D49 for ; Mon, 13 Dec 2004 12:40:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDCeHQ3092452 for ; Mon, 13 Dec 2004 12:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDCeHaQ092451; Mon, 13 Dec 2004 12:40:17 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 12:40:17 GMT Resent-Message-Id: <200412131240.iBDCeHaQ092451@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, Paul Chvostek Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE4F516A4CE for ; Mon, 13 Dec 2004 12:36:27 +0000 (GMT) Received: from foo.it.ca (CPE0000c082467e-CM014070226115.cpe.net.cable.rogers.com [24.156.131.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E2F943D5F for ; Mon, 13 Dec 2004 12:36:27 +0000 (GMT) (envelope-from paul@foo.it.ca) Received: from foo.it.ca (localhost.it.ca [127.0.0.1]) by foo.it.ca (8.13.1/8.12.10) with ESMTP id iBDCaQ43030269; Mon, 13 Dec 2004 07:36:26 -0500 (EST) (envelope-from paul@foo.it.ca) Received: (from paul@localhost) by foo.it.ca (8.13.1/8.12.10/Submit) id iBDCaQjc030268; Mon, 13 Dec 2004 07:36:26 -0500 (EST) (envelope-from paul) Message-Id: <200412131236.iBDCaQjc030268@foo.it.ca> Date: Mon, 13 Dec 2004 07:36:26 -0500 (EST) From: Paul Chvostek To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: paul+ports@it.ca Subject: ports/75018: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paul Chvostek List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 12:40:18 -0000 >Number: 75018 >Category: ports >Synopsis: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... >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 Dec 13 12:40:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Paul Chvostek >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD foo.it.ca 5.3-STABLE FreeBSD 5.3-STABLE #2: Mon Dec 6 03:04:05 EST 2004 paul@foo.it.ca:/usr/obj/a/src/sys/foo i386 >Description: Per notice from the Janitor... the conf file was missing from pkg-plist. It no longer is. No other changes. >How-To-Repeat: n/a >Fix: --- rotorouter-diff-1.0_1 begins here --- diff -ruN /usr/ports/net-mgmt/rotorouter/Makefile rotorouter/Makefile --- /usr/ports/net-mgmt/rotorouter/Makefile Mon Dec 13 07:28:49 2004 +++ rotorouter/Makefile Mon Jun 14 13:56:41 2004 @@ -9,7 +9,6 @@ PORTNAME= rotorouter PORTVERSION= 1.0 -PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= # nada DISTFILES= # nil diff -ruN /usr/ports/net-mgmt/rotorouter/pkg-plist rotorouter/pkg-plist --- /usr/ports/net-mgmt/rotorouter/pkg-plist Mon Dec 13 07:31:39 2004 +++ rotorouter/pkg-plist Mon Dec 13 07:31:56 2004 @@ -1,3 +1,4 @@ sbin/rotorouter etc/rc.d/rotorouter.sh +etc/rotorouter.conf etc/rotorouter.conf-example --- rotorouter-diff-1.0_1 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 14:00:51 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36CFF16A59A for ; Mon, 13 Dec 2004 14:00:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EF1843D62 for ; Mon, 13 Dec 2004 14:00:51 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDE0oNF000904 for ; Mon, 13 Dec 2004 14:00:50 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDE0oHd000903; Mon, 13 Dec 2004 14:00:50 GMT (envelope-from gnats) Date: Mon, 13 Dec 2004 14:00:50 GMT Message-Id: <200412131400.iBDE0oHd000903@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/75011: [PATCH] math/unixstat port has rotten bits in it X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 14:00:51 -0000 The following reply was made to PR ports/75011; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, mwm@mired.org Cc: kientzle@freebsd.org Subject: Re: ports/75011: [PATCH] math/unixstat port has rotten bits in it Date: Mon, 13 Dec 2004 14:54:19 +0100 Did you report the bsdtar-issue? Maybe there's something to fix. I'll cc: Tim. Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 14:01:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18A4916A4CE; Mon, 13 Dec 2004 14:01:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9F8D43D3F; Mon, 13 Dec 2004 14:01:13 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDE1DRj000983; Mon, 13 Dec 2004 14:01:13 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDE1DZt000979; Mon, 13 Dec 2004 14:01:13 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 14:01:13 GMT From: Volker Stolz Message-Id: <200412131401.iBDE1DZt000979@freefall.freebsd.org> To: statue@freebsd.netlab.cse.yzu.edu.tw, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74659: Update port: chinese/cce X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 14:01:14 -0000 Synopsis: Update port: chinese/cce State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Mon Dec 13 14:01:02 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74659 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 14:15:58 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7670D16A4CE; Mon, 13 Dec 2004 14:15:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44C4F43D53; Mon, 13 Dec 2004 14:15:58 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDEFwsL005446; Mon, 13 Dec 2004 14:15:58 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDEFw6S005442; Mon, 13 Dec 2004 14:15:58 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 14:15:58 GMT From: Thierry Thomas Message-Id: <200412131415.iBDEFw6S005442@freefall.freebsd.org> To: rodrigc@crodrigues.org, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org Subject: Re: ports/74229: multimedia/linux-realplayer: Update to Realplayer 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 14:15:58 -0000 Synopsis: multimedia/linux-realplayer: Update to Realplayer 10 State-Changed-From-To: open->feedback State-Changed-By: thierry State-Changed-When: Mon Dec 13 14:10:59 GMT 2004 State-Changed-Why: Sorry for the delay! In the meantime, RealPlayer has been upgraded to 10.0.1, and version 10 is no more fetchable. Could you please update this PR to the newer version? P.S.: dont forget to update pkg-plist! Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: thierry Responsible-Changed-When: Mon Dec 13 14:10:59 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=74229 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 14:50:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B5E316A51B for ; Mon, 13 Dec 2004 14:50:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 053FE43D5A for ; Mon, 13 Dec 2004 14:50:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDEoSg1007425 for ; Mon, 13 Dec 2004 14:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDEoSPi007421; Mon, 13 Dec 2004 14:50:28 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 14:50:28 GMT Resent-Message-Id: <200412131450.iBDEoSPi007421@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 Eggert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8964016A4CE for ; Mon, 13 Dec 2004 14:42:42 +0000 (GMT) Received: from kobe.netlab.nec.de (kobe.netlab.nec.de [195.37.70.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id B041043D58 for ; Mon, 13 Dec 2004 14:42:41 +0000 (GMT) (envelope-from root@kobe.netlab.nec.de) Received: from kobe.netlab.nec.de (localhost [127.0.0.1]) by kobe.netlab.nec.de (8.13.1/8.13.1) with ESMTP id iBDEhL5J090556; Mon, 13 Dec 2004 15:43:21 +0100 (CET) (envelope-from root@kobe.netlab.nec.de) Received: (from root@localhost) by kobe.netlab.nec.de (8.13.1/8.13.1/Submit) id iBDEhK45090547; Mon, 13 Dec 2004 15:43:20 +0100 (CET) (envelope-from root) Message-Id: <200412131443.iBDEhK45090547@kobe.netlab.nec.de> Date: Mon, 13 Dec 2004 15:43:20 +0100 (CET) From: Lars Eggert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kirk@strauser.com Subject: ports/75019: [PATCH] net/jabberd: update to 2.0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 14:50:47 -0000 >Number: 75019 >Category: ports >Synopsis: [PATCH] net/jabberd: update to 2.0.6 >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 Dec 13 14:50:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD kobe.netlab.nec.de 5.3-STABLE FreeBSD 5.3-STABLE #14: Tue Dec 7 13:32:55 CET >Description: - Update to 2.0.6 Port maintainer (kirk@strauser.com) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- jabberd-2.0.6.patch begins here --- ? work Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/jabberd/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 2 Dec 2004 13:42:32 -0000 1.23 +++ Makefile 13 Dec 2004 14:42:26 -0000 @@ -6,10 +6,10 @@ # PORTNAME= jabberd -PORTVERSION= 2.0.5 +PORTVERSION= 2.0.6 CATEGORIES= net MASTER_SITES= http://www.jabberstudio.org/files/jabberd2/ -DISTNAME= ${PORTNAME}-2.0s5 +DISTNAME= ${PORTNAME}-2.0s6 DIST_SUBDIR= jabber MAINTAINER= kirk@strauser.com Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/jabberd/distinfo,v retrieving revision 1.5 diff -u -r1.5 distinfo --- distinfo 2 Dec 2004 13:42:32 -0000 1.5 +++ distinfo 13 Dec 2004 14:42:26 -0000 @@ -1,2 +1,2 @@ -MD5 (jabber/jabberd-2.0s5.tar.gz) = f8d8acba7515e9e6233364a1a4aea467 -SIZE (jabber/jabberd-2.0s5.tar.gz) = 722712 +MD5 (jabber/jabberd-2.0s6.tar.gz) = ca2818885e126181e002949c71603df3 +SIZE (jabber/jabberd-2.0s6.tar.gz) = 724448 --- jabberd-2.0.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:10:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D191316A4CE for ; Mon, 13 Dec 2004 15:10:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB8A843D1F for ; Mon, 13 Dec 2004 15:10:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFAQrq012521 for ; Mon, 13 Dec 2004 15:10:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFAQMJ012520; Mon, 13 Dec 2004 15:10:26 GMT (envelope-from gnats) Date: Mon, 13 Dec 2004 15:10:26 GMT Message-Id: <200412131510.iBDFAQMJ012520@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jie Gao Subject: Re: ports/74603: [Maintainer] Update textproc/scim andtextproc/skim to latest versions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jie Gao List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:10:26 -0000 The following reply was made to PR ports/74603; it has been noted by GNATS. From: Jie Gao To: Sergey Matveychuk Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/74603: [Maintainer] Update textproc/scim and textproc/skim to latest versions Date: Mon, 13 Dec 2004 08:05:34 -0700 (MST) I replied it but for some reason (unknown to me) it did not reach the bug database. I am currently out of office for my wedding. Thus I do not have time and facility to look into the issues until after new year. But skim was compiled successfully on my machine. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:17:44 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B93CD16A4CE; Mon, 13 Dec 2004 15:17:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95F3A43D2D; Mon, 13 Dec 2004 15:17:44 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFHilM013178; Mon, 13 Dec 2004 15:17:44 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFHimv013174; Mon, 13 Dec 2004 15:17:44 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 15:17:44 GMT From: Volker Stolz Message-Id: <200412131517.iBDFHimv013174@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jedgar@FreeBSD.org Subject: Re: ports/75017: [ patch ] sysutils/roottail: add extra patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:17:44 -0000 Synopsis: [ patch ] sysutils/roottail: add extra patch Responsible-Changed-From-To: freebsd-ports-bugs->jedgar Responsible-Changed-By: vs Responsible-Changed-When: Mon Dec 13 15:17:32 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75017 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:18:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E64A916A4CE; Mon, 13 Dec 2004 15:18:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C308843D4C; Mon, 13 Dec 2004 15:18:47 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFIlBU013246; Mon, 13 Dec 2004 15:18:47 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFIlH5013242; Mon, 13 Dec 2004 15:18:47 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 15:18:47 GMT From: Volker Stolz Message-Id: <200412131518.iBDFIlH5013242@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/75002: [PATCH] editors/xemacs-packages: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:18:48 -0000 Synopsis: [PATCH] editors/xemacs-packages: update to new version Responsible-Changed-From-To: freebsd-ports-bugs->kiri Responsible-Changed-By: vs Responsible-Changed-When: Mon Dec 13 15:18:31 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75002 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:19:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2677A16A4CE; Mon, 13 Dec 2004 15:19:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0402543D1F; Mon, 13 Dec 2004 15:19:19 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFJIXj013519; Mon, 13 Dec 2004 15:19:18 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFJIpD013515; Mon, 13 Dec 2004 15:19:18 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 15:19:18 GMT From: Volker Stolz Message-Id: <200412131519.iBDFJIpD013515@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/75003: [PATCH] editors/xemacs-mule-packages: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:19:19 -0000 Synopsis: [PATCH] editors/xemacs-mule-packages: update to new version Responsible-Changed-From-To: freebsd-ports-bugs->kiri Responsible-Changed-By: vs Responsible-Changed-When: Mon Dec 13 15:19:03 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75003 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:20:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D333016A4CE for ; Mon, 13 Dec 2004 15:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C36543D2F for ; Mon, 13 Dec 2004 15:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFKMqc013559 for ; Mon, 13 Dec 2004 15:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFKMxj013558; Mon, 13 Dec 2004 15:20:22 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 15:20:22 GMT Resent-Message-Id: <200412131520.iBDFKMxj013558@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, Brian Clapper Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 741D116A4CE for ; Mon, 13 Dec 2004 15:14:13 +0000 (GMT) Received: from wildbean.clapper.org (wildbean.clapper.org [216.158.26.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9AB043D46 for ; Mon, 13 Dec 2004 15:14:12 +0000 (GMT) (envelope-from bmc@clapper.org) Received: from condor.inside.clapper.org (phantom@condor.inside.clapper.org [172.16.87.5]) by wildbean.clapper.org (8.13.1/8.13.1) with ESMTP id iBDFECgq084409 for ; Mon, 13 Dec 2004 10:14:12 -0500 (EST) Received: from z.inside.clapper.org (z.inside.clapper.org [172.16.87.2]) iBDFEBxg057836; Mon, 13 Dec 2004 10:14:11 -0500 (EST) Received: from z.inside.clapper.org (localhost [127.0.0.1]) by z.inside.clapper.org (8.13.1/8.12.10) with ESMTP id iBDFEBUJ025816; Mon, 13 Dec 2004 10:14:11 -0500 (EST) Received: (from bmc@localhost) by z.inside.clapper.org (8.13.1/8.12.11/Submit) id iBDFEBe8025815; Mon, 13 Dec 2004 10:14:11 -0500 (EST) (envelope-from bmc) Message-Id: <200412131514.iBDFEBe8025815@z.inside.clapper.org> Date: Mon, 13 Dec 2004 10:14:11 -0500 (EST) From: Brian Clapper To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Brian Clapper Subject: ports/75020: Update of pkg-plist for gnuls X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brian Clapper List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:20:22 -0000 >Number: 75020 >Category: ports >Synopsis: Update of pkg-plist for gnuls >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 Dec 13 15:20:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Brian Clapper >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD z.inside.clapper.org 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Mon Aug 23 11:00:34 EDT 2004 root@z.inside.clapper.org:/usr/src/sys/compile/Z i386 >Description: pkg-plist for gnuls port is missing $PREFIX/lib/charset.alias >How-To-Repeat: N/A >Fix: Apply enclosed patch to update pkg-plist diff -uNr gnuls/pkg-plist gnuls.new/pkg-plist --- gnuls/pkg-plist Mon Dec 13 10:11:21 2004 +++ gnuls.new/pkg-plist Mon Dec 13 10:09:51 2004 @@ -2,3 +2,4 @@ bin/dircolors bin/gnuls bin/vdir +lib/charset.alias >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:31:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04F3A16A4CE; Mon, 13 Dec 2004 15:31:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE6A943D1F; Mon, 13 Dec 2004 15:31:58 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFVwUG014819; Mon, 13 Dec 2004 15:31:58 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFVwSG014815; Mon, 13 Dec 2004 15:31:58 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 15:31:58 GMT From: Volker Stolz Message-Id: <200412131531.iBDFVwSG014815@freefall.freebsd.org> To: ser_gagnon@sympatico.ca, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74998: Update port: audio/baudline to 0.99 and fix fetch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:31:59 -0000 Synopsis: Update port: audio/baudline to 0.99 and fix fetch State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Dec 13 15:31:45 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74998 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:41:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C91F16A4CE; Mon, 13 Dec 2004 15:41:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAB8943D48; Mon, 13 Dec 2004 15:41:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFfF7R015061; Mon, 13 Dec 2004 15:41:15 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFfFrs015057; Mon, 13 Dec 2004 15:41:15 GMT (envelope-from vs) Date: Mon, 13 Dec 2004 15:41:15 GMT From: Volker Stolz Message-Id: <200412131541.iBDFfFrs015057@freefall.freebsd.org> To: loox@e-shell.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74956: net/py-bittornado fails checksum on last piece & hard crash on exit on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:41:16 -0000 Synopsis: net/py-bittornado fails checksum on last piece & hard crash on exit on amd64 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Dec 13 15:41:04 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=74956 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 15:50:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6FCA16A4CE for ; Mon, 13 Dec 2004 15:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D1B43D48 for ; Mon, 13 Dec 2004 15:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDFoQRK015255 for ; Mon, 13 Dec 2004 15:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDFoQ77015254; Mon, 13 Dec 2004 15:50:26 GMT (envelope-from gnats) Date: Mon, 13 Dec 2004 15:50:26 GMT Message-Id: <200412131550.iBDFoQ77015254@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/74956: net/py-bittornado fails checksum on last piece & hard crash on exit on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 15:50:26 -0000 The following reply was made to PR ports/74956; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, loox@e-shell.net, janos.mohacsi@bsd.hu Cc: Subject: Re: ports/74956: net/py-bittornado fails checksum on last piece & hard crash on exit on amd64 Date: Mon, 13 Dec 2004 16:40:46 +0100 Dear maintainer, please look into this issue! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 16:18:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1525316A4CE; Mon, 13 Dec 2004 16:18:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E174043D53; Mon, 13 Dec 2004 16:17:59 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDGHxRc021073; Mon, 13 Dec 2004 16:17:59 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDGHxXt021069; Mon, 13 Dec 2004 16:17:59 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 16:17:59 GMT From: Thierry Thomas Message-Id: <200412131617.iBDGHxXt021069@freefall.freebsd.org> To: stefan.schmidt@twest.de, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org Subject: Re: ports/37904: New Port: database/isql-viewer (a JDBC 2.x compliant database front end) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 16:18:00 -0000 Synopsis: New Port: database/isql-viewer (a JDBC 2.x compliant database front end) State-Changed-From-To: open->feedback State-Changed-By: thierry State-Changed-When: Mon Dec 13 16:14:14 GMT 2004 State-Changed-Why: Sorry for the delay! In the meantime, the latest release is iSQL-Viewer 2.1.8 and it depends of JDK-1.4. Could you please update this PR? Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: thierry Responsible-Changed-When: Mon Dec 13 16:14:14 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=37904 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 16:22:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35C6516A4CE; Mon, 13 Dec 2004 16:22:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 108EC43D31; Mon, 13 Dec 2004 16:22:23 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDGMM6u021334; Mon, 13 Dec 2004 16:22:22 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDGMMqs021330; Mon, 13 Dec 2004 16:22:22 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 16:22:22 GMT From: Thierry Thomas Message-Id: <200412131622.iBDGMMqs021330@freefall.freebsd.org> To: thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ahze@FreeBSD.org Subject: Re: ports/64686: [NEW PORTS] x11-toolkits/qtc-qtsharp qtsharp qtsharp-docs -- QT# binding for QT for C# X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 16:22:23 -0000 Synopsis: [NEW PORTS] x11-toolkits/qtc-qtsharp qtsharp qtsharp-docs -- QT# binding for QT for C# Responsible-Changed-From-To: freebsd-ports-bugs->ahze Responsible-Changed-By: thierry Responsible-Changed-When: Mon Dec 13 16:21:46 GMT 2004 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=64686 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 16:23:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB56416A4CE; Mon, 13 Dec 2004 16:23:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7B4D43D53; Mon, 13 Dec 2004 16:23:33 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDGNX8p021410; Mon, 13 Dec 2004 16:23:33 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDGNXmw021406; Mon, 13 Dec 2004 16:23:33 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 16:23:33 GMT From: Thierry Thomas Message-Id: <200412131623.iBDGNXmw021406@freefall.freebsd.org> To: thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ahze@FreeBSD.org Subject: Re: ports/64687: [New Port] games/dotgnu-mahjongg/ -- QT# Mahjongg game X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 16:23:33 -0000 Synopsis: [New Port] games/dotgnu-mahjongg/ -- QT# Mahjongg game Responsible-Changed-From-To: freebsd-ports-bugs->ahze Responsible-Changed-By: thierry Responsible-Changed-When: Mon Dec 13 16:22:55 GMT 2004 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=64687 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 16:50:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C559516A5E7 for ; Mon, 13 Dec 2004 16:50:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8979543D45 for ; Mon, 13 Dec 2004 16:50:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDGoW9v023546 for ; Mon, 13 Dec 2004 16:50:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDGoWoI023543; Mon, 13 Dec 2004 16:50:32 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 16:50:32 GMT Resent-Message-Id: <200412131650.iBDGoWoI023543@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, Renato Botelho Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 524C916A4CE for ; Mon, 13 Dec 2004 16:41:31 +0000 (GMT) Received: from srv1.galle.com.br (srv1.galle.com.br [200.246.25.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0624C43D4C for ; Mon, 13 Dec 2004 16:41:30 +0000 (GMT) (envelope-from root@srv1.galle.com.br) Received: (qmail 29024 invoked by uid 0); 13 Dec 2004 16:41:28 -0000 Message-Id: <20041213164128.29023.qmail@srv1.galle.com.br> Date: 13 Dec 2004 16:41:28 -0000 From: Renato Botelho To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ports@FreeBSD.org Subject: ports/75022: [PATCH] mail/qmailanalog: change perl to ${PERL}, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 16:50:33 -0000 >Number: 75022 >Category: ports >Synopsis: [PATCH] mail/qmailanalog: change perl to ${PERL}, 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: Mon Dec 13 16:50:32 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Renato Botelho >Release: FreeBSD 5.3-RELEASE-p1 i386 >Organization: Galle Folheados >Environment: System: FreeBSD srv1.galle.com.br 5.3-RELEASE-p1 FreeBSD 5.3-RELEASE-p1 #4: Wed Dec 1 17:16:06 BRDT >Description: - change direct use o perl to ${PERL} - Take maintainership Port maintainer (ports@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- qmailanalog-0.70_1.patch begins here --- diff -ruN --exclude=CVS /var/jail/data/usr/ports/mail/qmailanalog.orig/Makefile /var/jail/data/usr/ports/mail/qmailanalog/Makefile --- /var/jail/data/usr/ports/mail/qmailanalog.orig/Makefile Tue Apr 20 09:08:57 2004 +++ /var/jail/data/usr/ports/mail/qmailanalog/Makefile Mon Dec 13 14:36:39 2004 @@ -11,7 +11,7 @@ CATEGORIES= mail MASTER_SITES= ftp://cr.yp.to/software/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= renato@galle.com.br COMMENT= A collection of tools to analyze qmail-send's activity RUN_DEPENDS= ${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail @@ -44,9 +44,9 @@ USE_PERL5_BUILD=yes post-patch: - @perl -pi.bak -e "s|.usr.local.qmailanalog|${QMPREFIX}|" ${WRKSRC}/conf-home - @perl -pi.bak -e "s|-O2|${CFLAGS}|" ${WRKSRC}/conf-cc - @perl -pi.bak -e '$$_ = "" if /cat/' ${WRKSRC}/hier.c + @${PERL} -pi.bak -e "s|.usr.local.qmailanalog|${QMPREFIX}|" ${WRKSRC}/conf-home + @${PERL} -pi.bak -e "s|-O2|${CFLAGS}|" ${WRKSRC}/conf-cc + @${PERL} -pi.bak -e '$$_ = "" if /cat/' ${WRKSRC}/hier.c @${ECHO_CMD} ${PREFIX} > ${WRKDIR}/.PPREFIX @${ECHO_CMD} ${QMAIL_DIR} >> ${WRKDIR}/.PPREFIX --- qmailanalog-0.70_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 17:04:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02E1D16A4CE; Mon, 13 Dec 2004 17:04:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D055B43D1D; Mon, 13 Dec 2004 17:04:34 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDH4YjK024101; Mon, 13 Dec 2004 17:04:34 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDH4Ynu024097; Mon, 13 Dec 2004 17:04:34 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 17:04:34 GMT From: Thierry Thomas Message-Id: <200412131704.iBDH4Ynu024097@freefall.freebsd.org> To: renato@galle.com.br, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75022: [PATCH] mail/qmailanalog: change perl to ${PERL}, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 17:04:35 -0000 Synopsis: [PATCH] mail/qmailanalog: change perl to ${PERL}, take maintainership State-Changed-From-To: open->closed State-Changed-By: thierry State-Changed-When: Mon Dec 13 17:03:49 GMT 2004 State-Changed-Why: Committed, thanks! You are now the maintainer, enjoy :) http://www.freebsd.org/cgi/query-pr.cgi?pr=75022 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 17:20:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E537316A4CE for ; Mon, 13 Dec 2004 17:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4C6143D55 for ; Mon, 13 Dec 2004 17:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDHKKYC028403 for ; Mon, 13 Dec 2004 17:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDHKKmG028402; Mon, 13 Dec 2004 17:20:20 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 17:20:20 GMT Resent-Message-Id: <200412131720.iBDHKKmG028402@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, TAOKA Fumiyoshi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1187616A4CE for ; Mon, 13 Dec 2004 17:12:12 +0000 (GMT) Received: from prime.quad.dyndns.org (12.57.138.210.xn.2iij.net [210.138.57.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5F643D45 for ; Mon, 13 Dec 2004 17:12:11 +0000 (GMT) (envelope-from fmysh@quad.dyndns.org) Received: from localhost (localhost [127.0.0.1]) by prime.quad.dyndns.org (Postfix) with ESMTP id EAF2DF1936 for ; Tue, 14 Dec 2004 02:12:09 +0900 (JST) Received: from prime.quad.dyndns.org ([127.0.0.1]) by localhost (prime.quad.dyndns.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 00836-01 for ; Tue, 14 Dec 2004 02:12:01 +0900 (JST) Received: by prime.quad.dyndns.org (Postfix, from userid 1001) id 132D0F1935; Tue, 14 Dec 2004 02:12:00 +0900 (JST) Message-Id: <20041213171200.132D0F1935@prime.quad.dyndns.org> Date: Tue, 14 Dec 2004 02:12:00 +0900 (JST) From: TAOKA Fumiyoshi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75024: math/vtk-{java,python,tcl}: fix for building problems under FreeBSD 5.X X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: TAOKA Fumiyoshi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 17:20:21 -0000 >Number: 75024 >Category: ports >Synopsis: math/vtk-{java,python,tcl}: fix for building problems under FreeBSD 5.X >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 Dec 13 17:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: TAOKA Fumiyoshi >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: >Description: Building slave ports of math/vtk fail by undefined references to pthread_*. I guess this is the same problem reported by ports/62446. >How-To-Repeat: # cd /usr/ports/math/vtk-java; make (snip) Building executable /usr/ports/math/vtk-java/work/vtk-java-build/bin/VTKJavaExecutable... /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_yield' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_dest /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_gets /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_create' /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_attr_init' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_exit' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_gets /usr/local/lib/libvtkParallel.so: undefined reference to `pthread_equal' /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_attr_setscope' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_resume_np /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_kill' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_sets /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_get_ /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_setc /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_setprio' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_getprio' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_attr_setd /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_suspend_n /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_join' /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so: undefined reference to `pthread_cond_time gmake[2]: *** [/usr/ports/math/vtk-java/work/vtk-java-build/bin/VTKJavaExecutable] Error 1 gmake[1]: *** [default_target] Error 2 gmake: *** [default_target_Wrapping_Java] Error 2 *** Error code 2 Stop in /usr/ports/math/vtk-java. # cd /usr/ports/math/vtk-python; make (snip) Building executable /usr/ports/math/vtk-python/work/vtk-python-build/bin/vtkpython... ... /usr/local/lib/libpython2.4.so: warning: warning: tmpnam() possibly used unsafely; consideru /usr/local/lib/libpython2.4.so: warning: warning: tempnam() possibly used unsafely; consider /usr/local/lib/libpython2.4.so: undefined reference to `pthread_attr_destroy' /usr/local/lib/libpython2.4.so: undefined reference to `pthread_create' /usr/local/lib/libpython2.4.so: undefined reference to `pthread_attr_init' /usr/local/lib/libvtkParallel.so: undefined reference to `pthread_equal' /usr/local/lib/libpython2.4.so: undefined reference to `pthread_detach' /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_attr_setscope' /usr/local/lib/libpython2.4.so: undefined reference to `pthread_attr_setstacksize' /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_join' gmake[2]: *** [/usr/ports/math/vtk-python/work/vtk-python-build/bin/vtkpython] Error 1 gmake[1]: *** [default_target] Error 2 gmake: *** [default_target_Wrapping_Python] Error 2 *** Error code 2 1 error # cd /usr/ports/math/vtk-tcl; make (snip) Building executable /usr/ports/math/vtk-tcl/work/vtk-tcl-build/bin/vtk... /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_attr_init' /usr/local/lib/libvtkParallel.so: undefined reference to `pthread_equal' /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_attr_setscope' /usr/local/lib/libvtkCommon.so: undefined reference to `pthread_join' gmake[2]: *** [/usr/ports/math/vtk-tcl/work/vtk-tcl-build/bin/vtk] Error 1 gmake[1]: *** [default_target] Error 2 gmake: *** [default_target_Wrapping_Tcl] Error 2 *** Error code 2 Stop in /usr/ports/math/vtk-tcl. >Fix: Adding PTHREAD_LIBS fixes the building problem on 5-stable around Dec. 2004. Precise OSVERSION checks may be needed for older systems. --- vtk.orig/Makefile Mon Dec 13 13:43:30 2004 +++ vtk/Makefile Mon Dec 13 19:58:20 2004 @@ -74,9 +74,7 @@ .endif .endif -.if ${OSVERSION} < 500016 ADDITIONAL_EXE_LINKER_FLAGS= ${PTHREAD_LIBS} -.endif CMAKE?= ${LOCALBASE}/bin/cmake CXXFLAGS+= -Wno-deprecated >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 17:40:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 842EF16A4D0 for ; Mon, 13 Dec 2004 17:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4555443D53 for ; Mon, 13 Dec 2004 17:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDHeQjg030148 for ; Mon, 13 Dec 2004 17:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDHeQrs030147; Mon, 13 Dec 2004 17:40:26 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 17:40:26 GMT Resent-Message-Id: <200412131740.iBDHeQrs030147@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, yssu@nospam.ccca.net Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6DA016A4CE for ; Mon, 13 Dec 2004 17:36:48 +0000 (GMT) Received: from GWD.8lanet.com (61-220-61-40.HINET-IP.hinet.net [61.220.61.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B37E43D1D for ; Mon, 13 Dec 2004 17:36:46 +0000 (GMT) (envelope-from michael@GWD.8lanet.com) Received: from GWD.8lanet.com (localhost [127.0.0.1]) by GWD.8lanet.com (8.12.9p2/8.12.9) with ESMTP id iBDHad7G073386 for ; Tue, 14 Dec 2004 01:36:39 +0800 (CST) (envelope-from michael@GWD.8lanet.com) Received: (from root@localhost) by GWD.8lanet.com (8.12.9p2/8.12.9/Submit) id iBDHaccd073385; Tue, 14 Dec 2004 01:36:38 +0800 (CST) (envelope-from michael) Message-Id: <200412131736.iBDHaccd073385@GWD.8lanet.com> Date: Tue, 14 Dec 2004 01:36:38 +0800 (CST) From: yssu@nospam.ccca.net To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75025: Update port: net/jabberd to 2.0.6 (2.0s6) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: yssu@nospam.ccca.net List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 17:40:26 -0000 >Number: 75025 >Category: ports >Synopsis: Update port: net/jabberd to 2.0.6 (2.0s6) >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 Dec 13 17:40:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yen-Shuo Su >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: Campus Computer Communication Association >Environment: System: FreeBSD CCCA.NCTU.edu.tw 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #11: Wed Aug 11 23:35:14 CST 2004 root@GWD.8lanet.com:/services/freebsd/obj/services/freebsd/src/sys/DELL-2650-SMP i386 >Description: Update to 2.0-s6 >How-To-Repeat: >Fix: diff -ruN jabberd.old/Makefile jabberd/Makefile --- jabberd.old/Makefile Tue Dec 14 01:30:51 2004 +++ jabberd/Makefile Tue Dec 14 01:31:10 2004 @@ -6,10 +6,10 @@ # PORTNAME= jabberd -PORTVERSION= 2.0.5 +PORTVERSION= 2.0.6 CATEGORIES= net MASTER_SITES= http://www.jabberstudio.org/files/jabberd2/ -DISTNAME= ${PORTNAME}-2.0s5 +DISTNAME= ${PORTNAME}-2.0s6 DIST_SUBDIR= jabber MAINTAINER= kirk@strauser.com diff -ruN jabberd.old/distinfo jabberd/distinfo --- jabberd.old/distinfo Tue Dec 14 01:30:55 2004 +++ jabberd/distinfo Tue Dec 14 01:31:13 2004 @@ -1,2 +1,2 @@ -MD5 (jabber/jabberd-2.0s5.tar.gz) = f8d8acba7515e9e6233364a1a4aea467 -SIZE (jabber/jabberd-2.0s5.tar.gz) = 722712 +MD5 (jabber/jabberd-2.0s6.tar.gz) = ca2818885e126181e002949c71603df3 +SIZE (jabber/jabberd-2.0s6.tar.gz) = 724448 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 17:43:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 585EC16A4CE; Mon, 13 Dec 2004 17:43:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E6F643D49; Mon, 13 Dec 2004 17:43:10 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDHh97l030545; Mon, 13 Dec 2004 17:43:10 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDHh9c0030541; Mon, 13 Dec 2004 17:43:09 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 17:43:09 GMT From: Thierry Thomas Message-Id: <200412131743.iBDHh9c0030541@freefall.freebsd.org> To: thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org Subject: Re: ports/68145: Update port: multimedia/linux-realplayer to 0.4.0.186,1 (aka RealPlayer 10) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 17:43:10 -0000 Synopsis: Update port: multimedia/linux-realplayer to 0.4.0.186,1 (aka RealPlayer 10) Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: thierry Responsible-Changed-When: Mon Dec 13 17:41:02 GMT 2004 Responsible-Changed-Why: Take it: will be merged with PR ports/74229, which is a duplicate. See . http://www.freebsd.org/cgi/query-pr.cgi?pr=68145 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 17:50:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 884CF16A53B for ; Mon, 13 Dec 2004 17:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41E5643D41 for ; Mon, 13 Dec 2004 17:50:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDHoSOC030658 for ; Mon, 13 Dec 2004 17:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDHoSSp030655; Mon, 13 Dec 2004 17:50:28 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 17:50:28 GMT Resent-Message-Id: <200412131750.iBDHoSSp030655@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, Xavier Beaudouin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A800416A4CE for ; Mon, 13 Dec 2004 17:42:08 +0000 (GMT) Received: from mx2.oav.net (mx2.oav.net [195.154.253.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AFE143D49 for ; Mon, 13 Dec 2004 17:42:08 +0000 (GMT) (envelope-from kiwi@mx2.oav.net) Received: by mx2.oav.net (Postfix, from userid 1000) id 24CBF4AC8C; Mon, 13 Dec 2004 18:42:07 +0100 (CET) Message-Id: <20041213174207.24CBF4AC8C@mx2.oav.net> Date: Mon, 13 Dec 2004 18:42:07 +0100 (CET) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75026: [MAINTAINER] www/mod_vhs: update to 1.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 17:50:28 -0000 >Number: 75026 >Category: ports >Synopsis: [MAINTAINER] www/mod_vhs: update to 1.0.8 >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 Dec 13 17:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Xavier Beaudouin >Release: FreeBSD 5.2.1-RELEASE-p3 i386 >Organization: The Caudium Group / Association Kazar >Environment: System: FreeBSD domu.oav.net 5.2.1-RELEASE-p3 FreeBSD 5.2.1-RELEASE-p3 #0: Thu Mar 18 12:25:33 CET 2004 >Description: - Update to 1.0.8 ChangeLog : o Removed unused code. o Empty VH_ENVIRONMENT variable is removed and replaced by VH_GECOS with values from gecos returned from libhome or system. o Removed DOCUMENT_ROOT "hack" since it doesn't seems to work o Added "lamer mode" option (VHS option vhs_Lamer On/Off) to allow people that always add "www." to an address to be magicaly handled by this module. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- mod_vhs-1.0.8.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/mod_vhs.old/Makefile /usr/ports/www/mod_vhs/Makefile --- /usr/ports/www/mod_vhs.old/Makefile Mon Dec 13 18:40:33 2004 +++ /usr/ports/www/mod_vhs/Makefile Mon Dec 13 18:40:42 2004 @@ -6,7 +6,7 @@ # PORTNAME= mod_vhs -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.8 CATEGORIES= www MASTER_SITES= http://www.oav.net/projects/mod_vhs/ DIST_SUBDIR= apache2 diff -ruN --exclude=CVS /usr/ports/www/mod_vhs.old/distinfo /usr/ports/www/mod_vhs/distinfo --- /usr/ports/www/mod_vhs.old/distinfo Mon Dec 13 18:40:33 2004 +++ /usr/ports/www/mod_vhs/distinfo Mon Dec 13 18:41:28 2004 @@ -1,2 +1,2 @@ -MD5 (apache2/mod_vhs-1.0.6.tar.gz) = c8e3bec7c052afc3515c59c8332ac515 -SIZE (apache2/mod_vhs-1.0.6.tar.gz) = 6133 +MD5 (apache2/mod_vhs-1.0.8.tar.gz) = d9b2d2cfaf28df0460ace25d37d4b379 +SIZE (apache2/mod_vhs-1.0.8.tar.gz) = 6663 --- mod_vhs-1.0.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 18:19:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E77D16A4CE; Mon, 13 Dec 2004 18:19:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 679B243D5C; Mon, 13 Dec 2004 18:19:47 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDIJlA8035637; Mon, 13 Dec 2004 18:19:47 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDIJlYq035633; Mon, 13 Dec 2004 18:19:47 GMT (envelope-from sem) Date: Mon, 13 Dec 2004 18:19:47 GMT From: Sergey Matveychuk Message-Id: <200412131819.iBDIJlYq035633@freefall.freebsd.org> To: mranner@inode.at, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74984: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 18:19:47 -0000 Synopsis: [PATCH] security/fwlogwatch: [Fix ipfw parser on FreeBSD 4] State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Mon Dec 13 18:19:39 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74984 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 18:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5646816A4CE for ; Mon, 13 Dec 2004 18:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FA8443D54 for ; Mon, 13 Dec 2004 18:40:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDIeP4j037730 for ; Mon, 13 Dec 2004 18:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDIeOvQ037729; Mon, 13 Dec 2004 18:40:24 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 18:40:24 GMT Resent-Message-Id: <200412131840.iBDIeOvQ037729@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, Bjoern Engels Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 734A916A4CE; Mon, 13 Dec 2004 18:33:12 +0000 (GMT) Received: from e.0x20.net (e.0x20.net [217.69.67.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85AAC43D5D; Mon, 13 Dec 2004 18:33:11 +0000 (GMT) (envelope-from bj@0x20.net) Received: from e.0x20.net (localhost [127.0.0.1]) by e.0x20.net (8.12.10/8.12.10/Submit) with ESMTP id iBDIX6b7062940 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 13 Dec 2004 19:33:06 +0100 (CET) (envelope-from bj@e.0x20.net) Received: (from bj@localhost) by e.0x20.net (8.12.10/8.12.10/Submit) id iBDIX6Kc062939; Mon, 13 Dec 2004 19:33:06 +0100 (CET) (envelope-from bj) Message-Id: <200412131833.iBDIX6Kc062939@e.0x20.net> Date: Mon, 13 Dec 2004 19:33:06 +0100 (CET) From: Bjoern Engels To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: gnome@FreeBSD.org cc: bj@0x20.net Subject: ports/75029: XFree86-clients-4.4.0_2 will not compile with freetype2-2.1.7_3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bjoern Engels List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 18:40:25 -0000 >Number: 75029 >Category: ports >Synopsis: XFree86-clients-4.4.0_2 will not compile with freetype2-2.1.7_3 >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 Dec 13 18:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Bjoern Engels >Release: FreeBSD 5.2.1-RELEASE-p13 i386 >Organization: OpenIT GmbH >Environment: FreeBSD buildhost.0x20.net 5.2.1-RELEASE-p13 FreeBSD 5.2.1-RELEASE-p13 #0: Thu Dec 2 14:52:04 CET 2004 root@buildhost.0x20.net:/usr/obj/usr/src/sys/NADE_20041202 i386 >Description: XFree86-4 and xorg-x11 won't build with the actual ports version of freetype2, stopping with `ft2build.h' hasn't been included yet! Please always use macros to include FreeType header files. Example: #include #error " #include FT_FREETYPE_H >How-To-Repeat: try to build XFree-4 / xorg-x11 >Fix: For me this patch worked fine --- freetype-2.1.7/include/freetype/freetype.h.orig Mon Dec 13 19:13:45 2004 +++ freetype-2.1.7/include/freetype/freetype.h Mon Dec 13 19:16:35 2004 @@ -16,6 +16,9 @@ /***************************************************************************/ +/***************************************************************************/ +/* commented becaue XFree86-clients will not build with this section */ +/* #ifndef FT_FREETYPE_H #error "`ft2build.h' hasn't been included yet!" #error "Please always use macros to include FreeType header files." @@ -23,7 +26,7 @@ #error " #include " #error " #include FT_FREETYPE_H" #endif - +*/ #ifndef __FREETYPE_H__ #define __FREETYPE_H__ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 18:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0C2416A4CE for ; Mon, 13 Dec 2004 18:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B80A43D54 for ; Mon, 13 Dec 2004 18:40:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDIePrN037770 for ; Mon, 13 Dec 2004 18:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDIePwO037766; Mon, 13 Dec 2004 18:40:25 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 18:40:25 GMT Resent-Message-Id: <200412131840.iBDIePwO037766@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 Elsasser" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C986E16A4CF for ; Mon, 13 Dec 2004 18:38:57 +0000 (GMT) Received: from out004.verizon.net (out004pub.verizon.net [206.46.170.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BA3643D54 for ; Mon, 13 Dec 2004 18:38:57 +0000 (GMT) (envelope-from josh@elsasser.org) Received: from mail.elsasser.org ([141.149.178.169]) by out004.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20041213183856.MJMD8290.out004.verizon.net@mail.elsasser.org> for ; Mon, 13 Dec 2004 12:38:56 -0600 Received: from loki.nat.elsasser.org (loki.nat.elsasser.org [10.40.92.2]) by mail.elsasser.org (Postfix) with ESMTP id 85605F for ; Mon, 13 Dec 2004 13:38:55 -0500 (EST) Received: from loki.nat.elsasser.org (localhost [127.0.0.1]) by loki.nat.elsasser.org (Postfix) with ESMTP id 4FE0121F24 for ; Mon, 13 Dec 2004 13:38:55 -0500 (EST) Message-Id: <1102963135.0@loki.nat.elsasser.org> Date: Mon, 13 Dec 2004 13:38:55 -0500 From: "Josh Elsasser" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/75030: [patch] update port databases/sqlite3 to 3.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 18:40:25 -0000 >Number: 75030 >Category: ports >Synopsis: [patch] update port databases/sqlite3 to 3.0.8 >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 Dec 13 18:40:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Josh Elsasser >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD 5.3-STABLE #1: Tue Nov 16 08:15:32 EST 2004 joshe@loki.nat.elsasser.org:/usr/src/sys/i386/compile/LOKI >Description: This patch updates the databases/sqlite3 port to 3.0.8. Note that as of 3.0.7: "Version 3.0 has now been in use by multiple projects for several months with no major difficulties. We consider it stable and ready for production use." I mailed this patch to the maintainer two weeks ago and received no response, so I am resubmitting it now as a PR. >How-To-Repeat: >Fix: --- sqlite3.diff begins here --- diff -ruN /usr/ports/databases/sqlite3/Makefile sqlite3/Makefile --- /usr/ports/databases/sqlite3/Makefile Tue Aug 31 15:06:39 2004 +++ sqlite3/Makefile Sun Nov 28 11:47:48 2004 @@ -12,7 +12,7 @@ # SQLITE_WITH_TCL83 and SQLITE_WITH_TCL84. PORTNAME= sqlite -PORTVERSION= 3.0.5 +PORTVERSION= 3.0.8 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/ DISTNAME= ${PORTNAME}-${PORTVERSION} diff -ruN /usr/ports/databases/sqlite3/distinfo sqlite3/distinfo --- /usr/ports/databases/sqlite3/distinfo Tue Aug 31 15:06:39 2004 +++ sqlite3/distinfo Sun Nov 28 11:49:49 2004 @@ -1,2 +1,2 @@ -MD5 (sqlite-3.0.5.tar.gz) = 4133cbac9320f6f674700ed15986f4ff -SIZE (sqlite-3.0.5.tar.gz) = 1226021 +MD5 (sqlite-3.0.8.tar.gz) = b7dff1ec9bf4d08928c039b278630ba7 +SIZE (sqlite-3.0.8.tar.gz) = 1288859 diff -ruN /usr/ports/databases/sqlite3/files/patch-Makefile.in sqlite3/files/patch-Makefile.in --- /usr/ports/databases/sqlite3/files/patch-Makefile.in Tue Aug 31 15:06:39 2004 +++ sqlite3/files/patch-Makefile.in Sun Nov 28 11:57:35 2004 @@ -1,15 +1,15 @@ ---- Makefile.in.orig Sat Aug 28 11:22:30 2004 -+++ Makefile.in Tue Aug 31 14:13:52 2004 -@@ -33,7 +33,7 @@ - prefix = @prefix@ +--- Makefile.in.orig Wed Oct 6 11:03:05 2004 ++++ Makefile.in Sun Nov 28 11:57:32 2004 +@@ -34,7 +34,7 @@ exec_prefix = @exec_prefix@ + libdir = @libdir@ INSTALL = @INSTALL@ -LIBTOOL = ./libtool +LIBTOOL = /usr/local/bin/libtool13 RELEASE = @ALLOWRELEASE@ # libtool compile/link/install -@@ -401,25 +401,25 @@ +@@ -396,25 +396,25 @@ # Rules used to build documentation # arch.html: $(TOP)/www/arch.tcl @@ -41,7 +41,7 @@ copyright-release.html: $(TOP)/www/copyright-release.html cp $(TOP)/www/copyright-release.html . -@@ -431,77 +431,76 @@ +@@ -426,77 +426,77 @@ cp $(TOP)/www/common.tcl . conflict.html: $(TOP)/www/conflict.tcl @@ -61,7 +61,7 @@ + $(TCLSH) $(TOP)/www/docs.tcl >docs.html download.html: $(TOP)/www/download.tcl -- mkdir doc + mkdir -p doc - tclsh $(TOP)/www/download.tcl >download.html + $(TCLSH) $(TOP)/www/download.tcl >download.html @@ -142,17 +142,17 @@ # Files to be published on the website. -@@ -548,12 +547,13 @@ +@@ -543,12 +543,13 @@ install: sqlite3 libsqlite3.la sqlite3.h - $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib - $(LTINSTALL) libsqlite3.la $(DESTDIR)$(exec_prefix)/lib -+ rm $(DESTDIR)$(exec_prefix)/lib/libsqlite3.la + $(INSTALL) -d $(DESTDIR)$(libdir) + $(LTINSTALL) libsqlite3.la $(DESTDIR)$(libdir) ++ rm $(DESTDIR)$(libdir)/libsqlite3.la $(INSTALL) -d $(DESTDIR)$(exec_prefix)/bin $(LTINSTALL) sqlite3 $(DESTDIR)$(exec_prefix)/bin $(INSTALL) -d $(DESTDIR)$(prefix)/include $(INSTALL) -m 0644 sqlite3.h $(DESTDIR)$(prefix)/include -- $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib/pkgconfig; -- $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(exec_prefix)/lib/pkgconfig; +- $(INSTALL) -d $(DESTDIR)$(libdir)/pkgconfig; +- $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(libdir)/pkgconfig; + $(INSTALL) -d $(DESTDIR)$(exec_prefix)/libdata/pkgconfig; + $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(exec_prefix)/libdata/pkgconfig; --- sqlite3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 18:43:12 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15D0616A4CE; Mon, 13 Dec 2004 18:43:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A9943D5A; Mon, 13 Dec 2004 18:43:11 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDIhBRD037928; Mon, 13 Dec 2004 18:43:11 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDIhB25037924; Mon, 13 Dec 2004 18:43:11 GMT (envelope-from mezz) Date: Mon, 13 Dec 2004 18:43:11 GMT From: Jeremy Messenger Message-Id: <200412131843.iBDIhB25037924@freefall.freebsd.org> To: bj@0x20.net, mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75029: XFree86-clients-4.4.0_2 will not compile with freetype2-2.1.7_3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 18:43:12 -0000 Synopsis: XFree86-clients-4.4.0_2 will not compile with freetype2-2.1.7_3 State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Mon Dec 13 18:41:31 GMT 2004 State-Changed-Why: The problem is in your side, you need to either upgrade or force reinstall of libXft and freetype. After that, try XFree86-clients or xorg again. http://www.freebsd.org/cgi/query-pr.cgi?pr=75029 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 18:50:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0152616A4CE for ; Mon, 13 Dec 2004 18:50:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D093343D41 for ; Mon, 13 Dec 2004 18:50:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDIoYgX038384 for ; Mon, 13 Dec 2004 18:50:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDIoYTb038383; Mon, 13 Dec 2004 18:50:34 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 18:50:34 GMT Resent-Message-Id: <200412131850.iBDIoYTb038383@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, Jon Nistor Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D140816A4CF for ; Mon, 13 Dec 2004 18:48:52 +0000 (GMT) Received: from spike.snickers.org (snickers.org [66.199.180.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A00043D31 for ; Mon, 13 Dec 2004 18:48:50 +0000 (GMT) (envelope-from nistor@snickers.org) Received: by spike.snickers.org (Postfix, from userid 1000) id 0CFF75D3A; Mon, 13 Dec 2004 13:48:41 -0500 (EST) Message-Id: <20041213184841.0CFF75D3A@spike.snickers.org> Date: Mon, 13 Dec 2004 13:48:41 -0500 (EST) From: Jon Nistor To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75031: New port: net/p5-Net-Rsh P5 Net::Rsh Implementation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jon Nistor List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 18:50:35 -0000 >Number: 75031 >Category: ports >Synopsis: New port: net/p5-Net-Rsh P5 Net::Rsh Implementation >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 Dec 13 18:50:34 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jon Nistor >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD spike.snickers.org 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Mon Oct 25 08:44:47 EDT 2004 nistor@spike.snickers.org:/usr/obj/usr/src/sys/SPIKE i386 >Description: Perl 5 module to implement Net::Rsh >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: # # p5-Net-Rsh # p5-Net-Rsh/Makefile # p5-Net-Rsh/pkg-plist # p5-Net-Rsh/distinfo # p5-Net-Rsh/pkg-descr # echo c - p5-Net-Rsh mkdir -p p5-Net-Rsh > /dev/null 2>&1 echo x - p5-Net-Rsh/Makefile sed 's/^X//' >p5-Net-Rsh/Makefile << 'END-of-p5-Net-Rsh/Makefile' X# New ports collection makefile for: p5-Net-Rsh X# Date created: 13 Dec 2004 X# Whom: Jon Nistor X# X# $FreeBSD$ X# X XPORTNAME= Net-Rsh XPORTVERSION= 0.02 XCATEGORIES= net perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Net XPKGNAMEPREFIX= p5- X XMAINTAINER= nistor@snickers.org XCOMMENT= Perl5 module to access and use rsh protocol X XPERL_CONFIGURE= yes X XMAN3= Net::Rsh.3 X X.include END-of-p5-Net-Rsh/Makefile echo x - p5-Net-Rsh/pkg-plist sed 's/^X//' >p5-Net-Rsh/pkg-plist << 'END-of-p5-Net-Rsh/pkg-plist' X%%SITE_PERL%%/Net/Rsh.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Rsh/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Rsh X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/Net 2>/dev/null || true END-of-p5-Net-Rsh/pkg-plist echo x - p5-Net-Rsh/distinfo sed 's/^X//' >p5-Net-Rsh/distinfo << 'END-of-p5-Net-Rsh/distinfo' XMD5 (Net-Rsh-0.02.tar.gz) = b20118325c0067032783cde6e0770427 XSIZE (Net-Rsh-0.02.tar.gz) = 1940 END-of-p5-Net-Rsh/distinfo echo x - p5-Net-Rsh/pkg-descr sed 's/^X//' >p5-Net-Rsh/pkg-descr << 'END-of-p5-Net-Rsh/pkg-descr' XPerl5 module to access and use rsh protocol END-of-p5-Net-Rsh/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 19:00:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80B2016A4CE for ; Mon, 13 Dec 2004 19:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F73243D31 for ; Mon, 13 Dec 2004 19:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDJ0lhx038734 for ; Mon, 13 Dec 2004 19:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDJ0lXD038729; Mon, 13 Dec 2004 19:00:47 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 19:00:47 GMT Resent-Message-Id: <200412131900.iBDJ0lXD038729@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, Jonathan Chen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9711916A4CE for ; Mon, 13 Dec 2004 18:59:44 +0000 (GMT) Received: from chen.org.nz (chen.org.nz [210.54.19.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E4C43D3F for ; Mon, 13 Dec 2004 18:59:43 +0000 (GMT) (envelope-from jonc@chen.org.nz) Received: by chen.org.nz (Postfix, from userid 1000) id B2B5DC2B4; Tue, 14 Dec 2004 07:59:40 +1300 (NZDT) Message-Id: <20041213185940.B2B5DC2B4@chen.org.nz> Date: Tue, 14 Dec 2004 07:59:40 +1300 (NZDT) From: Jonathan Chen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75032: JBoss4 update. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jonathan Chen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 19:00:47 -0000 >Number: 75032 >Category: ports >Synopsis: JBoss4 update. >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 Dec 13 19:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD grimoire.chen.org.nz 5.3-STABLE FreeBSD 5.3-STABLE #0: Sat Nov 13 19:02:50 NZDT 2004 root@grimoire.chen.org.nz:/usr/obj/usr/src/sys/GENERIC i386 >Description: JBoss4 updates: 1. rcNGify startup. 2. patch to fix table creation for autoincrement feature in Postgresql. >How-To-Repeat: >Fix: Note: new file patch-serial-autoinc is created. diff -ruN /usr/ports/java/jboss4/Makefile ./Makefile --- /usr/ports/java/jboss4/Makefile Sat Dec 4 16:14:15 2004 +++ ./Makefile Tue Dec 14 07:46:38 2004 @@ -7,6 +7,7 @@ PORTNAME= ${APP_TITLE:L} PORTVERSION= 4.0.0 +PORTREVISION= 1 CATEGORIES= java MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -22,17 +23,18 @@ JAVA_VERSION= 1.4+ USE_REINPLACE= YES +USE_RC_SUBR= YES USE_BZIP2= YES .if !defined(NOPORTDOCS) PORTDOCS= * .endif -APP_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION:R} +APP_HOME?= ${PREFIX}/${APP_SHORTNAME} DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}${PORTVERSION:R} LOG_DIR= ${APP_HOME}/log APP_TITLE= JBoss -APP_SHORTNAME= ${PORTNAME}${PORTVERSION:R:R} +APP_SHORTNAME= ${UNIQUENAME} CONTROL_SCRIPT_NAME= ${APP_SHORTNAME}ctl CONTROL_SCRIPT= ${PREFIX}/bin/${CONTROL_SCRIPT_NAME} CONTROL_SCRIPT_MANPAGE_TITLE= ${CONTROL_SCRIPT_NAME:U} @@ -66,6 +68,7 @@ do-configure: @(cd ${DAEMONCTL_DIR} && ${CP} ${DAEMONCTL_FILES} ${WRKDIR}) @(cd ${WRKDIR} && ${REINPLACE_CMD} \ + -e "s|%%RC_SUBR%%|${RC_SUBR}|g;" \ -e "s|%%APP_HOME%%|${APP_HOME}|g;" \ -e "s|%%APP_SHORTNAME%%|${APP_SHORTNAME}|g;" \ -e "s|%%APP_TITLE%%|${APP_TITLE}|g;" \ @@ -73,8 +76,8 @@ -e "s|%%CONTROL_SCRIPT_MANPAGE_TITLE%%|${CONTROL_SCRIPT_MANPAGE_TITLE}|g;" \ -e "s|%%CONTROL_SCRIPT_NAME%%|${CONTROL_SCRIPT_NAME}|g;" \ -e "s|%%GROUP%%|${GROUP}|g;" \ + -e "s|%%JAVA%%|${JAVA}|g;" \ -e "s|%%JAVA_CP%%|${JAVA_CP}|g;" \ - -e "s|%%JAVA_CMD%%|bin/java|g;" \ -e "s|%%JAVA_HOME%%|${JAVA_HOME}|g;" \ -e "s|%%JAVA_MAIN%%|${JAVA_MAIN}|g;" \ -e "s|%%JAVA_OPTS%%|${JAVA_OPTS}|g;" \ diff -ruN /usr/ports/java/jboss4/files/daemonctl.c ./files/daemonctl.c --- /usr/ports/java/jboss4/files/daemonctl.c Tue Jun 22 04:42:59 2004 +++ ./files/daemonctl.c Mon Dec 13 09:25:14 2004 @@ -24,6 +24,9 @@ #include #include +#define TRUE 1 +#define FALSE 0 + /* The maximum size of the PID file, in bytes */ #define MAX_FILE_SIZE 32 @@ -59,6 +62,12 @@ static void start (int optcount, char * opts []); static void stop (void); static void restart (int optcount, char * opts []); +static void logOutput (char *); + +/* + Globals + */ +static int isQuiet = FALSE; /** * Main function. This function is called when this program is executed. @@ -97,7 +106,9 @@ jopt = 0; for (i = 1; i < argc; i++) { - if (*argv [i] == '-') + if (strcmp (argv [i], "-q") == 0) + isQuiet = TRUE; + else if (*argv [i] == '-') jopt++; } if (jopt == 0) @@ -108,7 +119,7 @@ jargs = malloc (sizeof (char *) * jopt); for (i = 0; i < argc; i++) { - if (*argv [i] == '-') + if (strcmp (argv [i], "-q") && *argv [i] == '-') jargs [j++] = argv [i]; } } @@ -163,7 +174,7 @@ /* Attempt to open the PID file */ file = open ("%%PID_FILE%%", O_RDWR); if (file < 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to open %%PID_FILE%% for reading and writing: "); perror (NULL); exit (ERR_PID_FILE_NOT_FOUND); @@ -198,7 +209,7 @@ buffer = (char *) malloc ((MAX_FILE_SIZE + 1) * sizeof (char)); count = read (file, buffer, MAX_FILE_SIZE + 1); if (count > MAX_FILE_SIZE) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: The file %%PID_FILE%% contains more than %d bytes.\n", MAX_FILE_SIZE); exit (ERR_PID_FILE_TOO_LARGE); } @@ -215,12 +226,12 @@ /* XXX: Ignore a newline at the end of the file */ hadNewline = 1; } else { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: The file %%PID_FILE%% contains an illegal character (%d) at position %d.\n", c, i); exit (ERR_PID_FILE_CONTAINS_ILLEGAL_CHAR); } } - printf (" [ DONE ]\n"); + logOutput (" [ DONE ]\n"); if (count == 0 || (count == 1 && hadNewline == 1)) { return -1; @@ -253,13 +264,13 @@ assert (file > 0); assert (pid > 0); - printf (">> Writing PID file..."); + logOutput (">> Writing PID file..."); lseek (file, (off_t) 0, SEEK_SET); ftruncate (file, (off_t) 0); nbytes = asprintf (&buffer, "%d\n", pid); write (file, buffer, nbytes); - printf (" [ DONE ]\n"); + logOutput (" [ DONE ]\n"); } @@ -314,10 +325,11 @@ /* Check preconditions */ assert (pid > 0); - printf (">> Terminating process %d...", pid); + if (!isQuiet) + printf (">> Terminating process %d...", pid); result = kill (pid, SIGTERM); if (result < 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to kill process %d: ", pid); perror (NULL); exit (ERR_KILL_FAILED); @@ -327,8 +339,8 @@ result = existsProcess (pid); for (waited=0; result == 1 && waited < timeout; waited += interval) { - printf ("."); - fflush (NULL); + logOutput ("."); + fflush (stdout); sleep (interval); result = existsProcess (pid); } @@ -341,10 +353,10 @@ result = kill (pid, SIGKILL); if (result == 0) { forced = 1; - printf (" [ DONE ]\n"); + logOutput (" [ DONE ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Process %d did not terminate within %%STOP_TIMEOUT%% sec. Killed.\n", pid); } else if (result != ESRCH) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to kill process %d: ", pid); perror (NULL); exit (ERR_KILL_FAILED); @@ -352,7 +364,7 @@ } if (forced == 0) { - printf (" [ DONE ]\n"); + logOutput (" [ DONE ]\n"); } } @@ -372,17 +384,17 @@ struct stat sb; /* Open and read the PID file */ - printf (">> Reading PID file (%%PID_FILE%%)..."); + logOutput (">> Reading PID file (%%PID_FILE%%)..."); file = openPIDFile (); pid = readPID (file); - printf (">> Starting %%APP_TITLE%% %%PORTVERSION%%..."); + logOutput (">> Starting %%APP_TITLE%% %%PORTVERSION%%..."); if (pid != -1) { /* Check if the process actually exists */ result = existsProcess (pid); if (result == 1) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: %%APP_TITLE%% %%PORTVERSION%% is already running, PID is %d.\n", pid); exit (ERR_ALREADY_RUNNING); } @@ -391,34 +403,34 @@ /* Check if the JDK home directory is actually a directory */ result = stat ("%%JAVA_HOME%%", &sb); if (result != 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to stat %%JAVA_HOME%%: "); perror (NULL); exit (ERR_STAT_JAVA_HOME); } if (!S_ISDIR (sb.st_mode)) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java home directory %%JAVA_HOME%% is not a directory.\n"); exit (ERR_JAVA_HOME_NOT_DIR); } /* Check if the Java command is actually an executable regular file */ - result = stat ("%%JAVA_HOME%%/%%JAVA_CMD%%", &sb); + result = stat ("%%JAVA%%", &sb); if (result != 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to stat %%JAVA_HOME%%/%%JAVA_CMD%%: "); + logOutput (" [ FAILED ]\n"); + fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to stat %%JAVA%%: "); perror (NULL); exit (ERR_STAT_JAVA_CMD); } if (!S_ISREG (sb.st_mode)) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java command %%JAVA_HOME%%/%%JAVA_CMD%% is not a regular file.\n"); + logOutput (" [ FAILED ]\n"); + fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java command %%JAVA%% is not a regular file.\n"); exit (ERR_JAVA_CMD_NOT_FILE); } - result = access ("%%JAVA_HOME%%/%%JAVA_CMD%%", X_OK); + result = access ("%%JAVA%%", X_OK); if (result != 0) { - printf (" [ FAILED ]\n"); - fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java command %%JAVA_HOME%%/%%JAVA_CMD%% is not executable: "); + logOutput (" [ FAILED ]\n"); + fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Java command %%JAVA%% is not executable: "); perror (NULL); exit (ERR_JAVA_CMD_NOT_EXECUTABLE); } @@ -426,7 +438,7 @@ /* Change directory */ result = chdir ("%%APP_HOME%%"); if (result < 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to access directory %%APP_HOME%%: "); perror (NULL); exit (ERR_CHDIR_TO_APP_HOME); @@ -435,7 +447,7 @@ /* See if the JAR file exists */ result = access ("%%APP_HOME%%/%%JAR_FILE%%", R_OK); if (result < 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to access JAR file %%APP_HOME%%/%%JAR_FILE%%: "); perror (NULL); exit (ERR_ACCESS_JAR_FILE); @@ -444,7 +456,7 @@ /* Open the stdout log file */ stdoutLogFile = open ("%%STDOUT_LOG%%", O_WRONLY); if (stdoutLogFile < 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to open %%STDOUT_LOG%% for writing: "); perror (NULL); exit (ERR_STDOUT_LOGFILE_OPEN); @@ -454,7 +466,7 @@ /* Open the stderr log file */ stderrLogFile = open ("%%STDERR_LOG%%", O_WRONLY); if (stderrLogFile < 0) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to open %%STDERR_LOG%% for writing: "); perror (NULL); exit (ERR_STDERR_LOGFILE_OPEN); @@ -464,7 +476,7 @@ /* Split this process in two */ pid = fork (); if (pid == -1) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to fork: "); perror (NULL); exit (ERR_FORK_FAILED); @@ -489,7 +501,7 @@ */ argv = malloc (sizeof (char *) * (optcount + 5)); argc = 0; - argv [argc++] = "%%JAVA_HOME%%/%%JAVA_CMD%%"; + argv [argc++] = "%%JAVA%%"; for (i = 0; i < optcount; i++) argv [argc++] = opts [i]; argv [argc++] = "-cp"; @@ -503,7 +515,7 @@ perror (NULL); } else { - printf (" [ DONE ]\n"); + logOutput (" [ DONE ]\n"); writePID (file, pid); } } @@ -519,11 +531,11 @@ int pid; /* Open and read the PID file */ - printf (">> Reading PID file (%%PID_FILE%%)..."); + logOutput (">> Reading PID file (%%PID_FILE%%)..."); file = openPIDFile (); pid = readPID (file); - printf (">> Checking if %%APP_TITLE%% %%PORTVERSION%% is running..."); + logOutput (">> Checking if %%APP_TITLE%% %%PORTVERSION%% is running..."); /* If there is a PID, see if the process still exists */ if (pid != -1) { @@ -536,11 +548,11 @@ /* If there is no running process, produce an error */ if (pid == -1) { - printf (" [ FAILED ]\n"); + logOutput (" [ FAILED ]\n"); fprintf (stderr, "%%CONTROL_SCRIPT_NAME%%: %%APP_TITLE%% %%PORTVERSION%% is currently not running.\n"); exit (ERR_NOT_RUNNING); } - printf (" [ DONE ]\n"); + logOutput (" [ DONE ]\n"); /* Terminate the process */ killProcess (pid); @@ -560,4 +572,15 @@ { stop (); start (optcount, opts); +} + +/** + Output log to stdout. + */ +static void +logOutput ( + char * string) +{ + if (!isQuiet) + printf (string); } diff -ruN /usr/ports/java/jboss4/files/patch-serial-autoinc ./files/patch-serial-autoinc --- /usr/ports/java/jboss4/files/patch-serial-autoinc Thu Jan 1 12:00:00 1970 +++ ./files/patch-serial-autoinc Mon Dec 13 18:38:38 2004 @@ -0,0 +1,86 @@ +$FreeBSD$ + +This patch allows JBoss to correctly create tables when +using the auto-increment feature with Postgresql. + +diff -r -u ./server/src/etc/conf/default/standardjbosscmp-jdbc.xml /tmp/jboss-4.0.0-src/server/src/etc/conf/default/standardjbosscmp-jdbc.xml +--- ./server/src/etc/conf/default/standardjbosscmp-jdbc.xml Thu Sep 16 03:48:58 2004 ++++ /tmp/jboss-4.0.0-src/server/src/etc/conf/default/standardjbosscmp-jdbc.xml Sun Dec 5 22:21:18 2004 +@@ -1169,7 +1169,7 @@ + SELECT ?1 FROM ?2 WHERE ?3 ORDER BY ?4 FOR UPDATE + CONSTRAINT ?1 PRIMARY KEY (?2) + ALTER TABLE ?1 ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) +- ?1 ++ ?1 serial + t + _ + 32 +@@ -1296,7 +1296,7 @@ + SELECT ?1 FROM ?2 WHERE ?3 ORDER BY ?4 FOR UPDATE + CONSTRAINT ?1 PRIMARY KEY (?2) + ALTER TABLE ?1 ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) +- ?1 ++ ?1 serial + t + _ + 32 +@@ -1423,7 +1423,7 @@ + + CONSTRAINT ?1 PRIMARY KEY (?2) + ALTER TABLE ?1 ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) +- ?1 IDENTITY ++ ?1 ?2 ?3 IDENTITY + ALTER TABLE ?1 ADD COLUMN ?2 ?3 + ALTER TABLE ?1 DROP COLUMN ?2 + t +@@ -1717,7 +1717,7 @@ + ALTER TABLE ?1 ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) + --> + ALTER TABLE ?1 ADD INDEX (?3), ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) +- ?1 auto_increment ++ ?1 ?2 ?3 auto_increment + ALTER TABLE ?1 MODIFY ?2 ?3 + t + _ +@@ -1857,7 +1857,7 @@ + SELECT ?1 FROM ?2 with (updlock) WHERE ?3 ORDER BY ?4 + CONSTRAINT ?1 PRIMARY KEY (?2) + ALTER TABLE ?1 ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) +- ?1 IDENTITY ++ ?1 ?2 ?3 IDENTITY + ALTER TABLE ?1 ALTER COLUMN ?2 ?3 + t + _ +@@ -1989,7 +1989,7 @@ + SELECT ?1 FROM ?2 with (xlock) WHERE ?3 ORDER BY ?4 + CONSTRAINT ?1 PRIMARY KEY (?2) + ALTER TABLE ?1 ADD CONSTRAINT ?2 FOREIGN KEY (?3) REFERENCES ?4 (?5) +- ?1 IDENTITY ++ ?1 ?2 ?3 IDENTITY + t + _ + 32 +diff -r -u ./server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java /tmp/jboss-4.0.0-src/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java +--- ./server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java Tue Sep 14 09:23:02 2004 ++++ /tmp/jboss-4.0.0-src/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java Sun Dec 5 22:04:56 2004 +@@ -916,14 +916,18 @@ + // apply auto-increment template + if(type.getAutoIncrement()[0]) + { +- String columnClause = SQLUtil.getCreateTableColumnsClause(type); + JDBCFunctionMappingMetaData autoIncrement = + manager.getMetaData().getTypeMapping().getAutoIncrementTemplate(); + if(autoIncrement == null) + { + throw new IllegalStateException("auto-increment template not found"); + } +- String[] args = new String[]{columnClause}; ++ String[] args = new String[] ++ { ++ type.getColumnNames () [0], ++ type.getSQLTypes () [0], ++ type.getNotNull () [0] ? " not null " : "" ++ }; + autoIncrement.getFunctionSql(args, sqlBuffer); + } + else diff -ruN /usr/ports/java/jboss4/files/startup.sh ./files/startup.sh --- /usr/ports/java/jboss4/files/startup.sh Tue Jun 22 04:42:59 2004 +++ ./files/startup.sh Mon Dec 13 10:22:23 2004 @@ -7,29 +7,40 @@ # $FreeBSD: ports/java/jboss4/files/startup.sh,v 1.1 2004/06/21 16:42:59 vanilla Exp $ # +# PROVIDE: %%APP_SHORTNAME%% +# REQUIRE: NETWORKING SERVERS -# Set some variables -MYSELF=`basename $0` -JAVA_OPTS="%%JAVA_OPTS%%" - -case "$1" in - start) - echo -n ' ' - truncate -s 0 %%PID_FILE%% - chown %%USER%%:%%GROUP%% %%PID_FILE%% - chmod 600 %%PID_FILE%% - su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% ${JAVA_OPTS} start" >/dev/null && echo -n '%%APP_SHORTNAME%%' - ;; - stop) - echo -n ' ' - chown %%USER%%:%%GROUP%% %%PID_FILE%% - chmod 600 %%PID_FILE%% - su -f -m %%USER%% -c "exec %%CONTROL_SCRIPT%% stop" >/dev/null 2>&1 ; echo -n '%%APP_SHORTNAME%%' - ;; - *) - echo "" - echo "Usage: ${MYSELF} { start | stop }" - echo "" - exit 64 - ;; -esac +# Add the following lines to /etc/rc.conf to enable %%APP_SHORTNAME%%: +# %%APP_SHORTNAME%%_enable (bool): Set to "NO" by default. +# Set it to "YES" to enable %%APP_SHORTNAME%% +# %%APP_SHORTNAME%%_flags (str): Set to "-server" by default. +# Extra JVM flags. +# +. %%RC_SUBR%% + +name="%%APP_SHORTNAME%%" +rcvar=`set_rcvar` + +start_cmd="%%APP_SHORTNAME%%_start" +restart_cmd="%%APP_SHORTNAME%%_restart" +pidfile="%%PID_FILE%%" +procname="%%JAVA%%" + +[ -z "$%%APP_SHORTNAME%%_enable" ] && %%APP_SHORTNAME%%_enable="NO" +[ -z "$%%APP_SHORTNAME%%_flags" ] && %%APP_SHORTNAME%%_flags="-server" + +%%APP_SHORTNAME%%_start () +{ + checkyesno %%APP_SHORTNAME%%_enable && + %%CONTROL_SCRIPT%% -q ${%%APP_SHORTNAME%%_flags} start && + echo -n " %%APP_SHORTNAME%%" +} + +%%APP_SHORTNAME%%_restart () +{ + checkyesno %%APP_SHORTNAME%%_enable && + %%CONTROL_SCRIPT%% -q ${%%APP_SHORTNAME%%_flags} restart +} + +load_rc_config $name +run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 19:50:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54F8116A4D2 for ; Mon, 13 Dec 2004 19:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BE2743D5A for ; Mon, 13 Dec 2004 19:50:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDJoSai044784 for ; Mon, 13 Dec 2004 19:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDJoSL0044783; Mon, 13 Dec 2004 19:50:28 GMT (envelope-from gnats) Date: Mon, 13 Dec 2004 19:50:28 GMT Message-Id: <200412131950.iBDJoSL0044783@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Frank Laszlo Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Frank Laszlo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 19:50:28 -0000 The following reply was made to PR ports/71849; it has been noted by GNATS. From: Frank Laszlo To: freebsd-gnats-submit@FreeBSD.org, cartola@openit.com.br, molter@tin.it Cc: Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures Date: Mon, 13 Dec 2004 14:44:33 -0500 You should submit new ports as a Shell Archive (see shar(1)) And not as a tarball. This will help speed up the process of getting it commited. Hope this helps Regards, Frank Laszlo From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 20:40:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 469DB16A5B4 for ; Mon, 13 Dec 2004 20:40:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0620443D48 for ; Mon, 13 Dec 2004 20:40:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDKeW8I050938 for ; Mon, 13 Dec 2004 20:40:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDKeWjI050937; Mon, 13 Dec 2004 20:40:32 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 20:40:32 GMT Resent-Message-Id: <200412132040.iBDKeWjI050937@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, Jason Harris Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A28D16A4CE for ; Mon, 13 Dec 2004 20:34:02 +0000 (GMT) Received: from wilma.widomaker.com (pm1.ric-35.lft.widomaker.com [209.96.189.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECE2E43D4C for ; Mon, 13 Dec 2004 20:34:00 +0000 (GMT) (envelope-from jason@wilma.widomaker.com) Received: from wilma.widomaker.com (localhost [127.0.0.1]) by wilma.widomaker.com (8.13.1/8.12.10) with ESMTP id iBDKXwAu025408; Mon, 13 Dec 2004 15:33:58 -0500 (EST) Received: (from jason@localhost) by wilma.widomaker.com (8.13.1/8.13.1/Submit) id iBDKXuF9025407; Mon, 13 Dec 2004 15:33:56 -0500 (EST) (envelope-from jason) Message-Id: <200412132033.iBDKXuF9025407@wilma.widomaker.com> Date: Mon, 13 Dec 2004 15:33:56 -0500 (EST) From: Jason Harris To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Jason Harris Subject: ports/75033: ports/archivers/bzip2 - remove IGNORE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jason Harris List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 20:40:33 -0000 >Number: 75033 >Category: ports >Synopsis: ports/archivers/bzip2 - remove IGNORE >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: Mon Dec 13 20:40:32 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 4.3-RELEASE i386 >Organization: none here >Environment: System: FreeBSD 4.3-RELEASE i386 >Description: remove superfluous IGNORE warning that bzip2 is already in the base system - other such ports do not have IGNORE set >How-To-Repeat: apply patch below >Fix: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message cvs server: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/bzip2/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- Makefile 21 Feb 2003 10:42:55 -0000 1.38 +++ Makefile 13 Dec 2004 20:24:30 -0000 @@ -15,10 +15,6 @@ MAINTAINER= jharris@widomaker.com COMMENT= A block-sorting file compressor -.if exists(/usr/bin/bzip2) -IGNORE= bzip2 is in the base system -.endif - INSTALLS_SHLIB= yes MAN1= bzip2.1 bzgrep.1 bzmore.1 cvs server: Diffing files -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBvfqQSypIl9OdoOMRAvzDAKC3Q9li2xQh45LoVQZxx0D2KUXiHgCgpjSB jjTHlnfxq5ar7yPee5punHY= =dCJZ -----END PGP SIGNATURE----- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 21:18:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D471916A4CE; Mon, 13 Dec 2004 21:18:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE4D843D5D; Mon, 13 Dec 2004 21:18:16 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from freefall.freebsd.org (clement@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDLIGWV055842; Mon, 13 Dec 2004 21:18:16 GMT (envelope-from clement@freefall.freebsd.org) Received: (from clement@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDLIGwT055838; Mon, 13 Dec 2004 21:18:16 GMT (envelope-from clement) Date: Mon, 13 Dec 2004 21:18:16 GMT From: Clement Laforet Message-Id: <200412132118.iBDLIGwT055838@freefall.freebsd.org> To: kiwi@oav.net, clement@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75026: [MAINTAINER] www/mod_vhs: update to 1.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 21:18:16 -0000 Synopsis: [MAINTAINER] www/mod_vhs: update to 1.0.8 State-Changed-From-To: open->closed State-Changed-By: clement State-Changed-When: Mon Dec 13 21:17:57 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75026 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 21:50:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B428116A4D0 for ; Mon, 13 Dec 2004 21:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D0C943D5A for ; Mon, 13 Dec 2004 21:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDLoOR0057718 for ; Mon, 13 Dec 2004 21:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDLoOin057717; Mon, 13 Dec 2004 21:50:24 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 21:50:24 GMT Resent-Message-Id: <200412132150.iBDLoOin057717@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, Hilko.Meyer@gmx.de Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C592416A4CE for ; Mon, 13 Dec 2004 21:42:43 +0000 (GMT) Received: from kirk.hochpass.uni-hannover.de (kirk.hochpass.uni-hannover.de [130.75.81.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7FCC43D5D for ; Mon, 13 Dec 2004 21:42:42 +0000 (GMT) (envelope-from hilti@hochpass.uni-hannover.de) Received: from kirk.hochpass.uni-hannover.de (localhost [127.0.0.1]) iBDLgfkh014134 for ; Mon, 13 Dec 2004 22:42:41 +0100 (CET) (envelope-from hilti@kirk.hochpass.uni-hannover.de) Received: (from hilti@localhost)iBDLgewE014133; Mon, 13 Dec 2004 22:42:40 +0100 (CET) (envelope-from hilti) Message-Id: <200412132142.iBDLgewE014133@kirk.hochpass.uni-hannover.de> Date: Mon, 13 Dec 2004 22:42:40 +0100 (CET) From: Hilko.Meyer@gmx.de To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 21:50:24 -0000 >Number: 75034 >Category: ports >Synopsis: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 >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 Dec 13 21:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hilko Meyer >Release: FreeBSD 5.2.1-RELEASE-p13 i386 >Organization: >Environment: System: FreeBSD kirk.hochpass.uni-hannover.de 5.2.1-RELEASE-p13 FreeBSD 5.2.1-RELEASE-p13 #0: Fri Dec 3 01:06:06 CET 2004 hilti@kirk.hochpass.uni-hannover.de:/usr/obj/usr/src/sys/KIRK i386 >Description: The rc-script installed with scanlogd-2.2.5_1 fails to start the daemon, because it tried to start /usr/local/sbin/scanlogd but the program is installed in /usr/local/bin/ and not in sbin. >How-To-Repeat: >Fix: --- diff begins here --- --- /usr/local/etc/rc.d/scanlogd.sh.orig Mon Dec 13 21:55:55 2004 +++ /usr/local/etc/rc.d/scanlogd.sh Mon Dec 13 22:19:53 2004 @@ -12,14 +12,14 @@ prefix=/usr/local scanlogd_enable=${scanlogd_enable:-"NO"} # Enable scanlogd -scanlogd_program="${prefix}/sbin/scanlogd" # Location of scanlogd +scanlogd_program="${prefix}/bin/scanlogd" # Location of scanlogd scanlogd_flags=${scanlogd_flags:-""} # Flags to scanlogd . /etc/rc.subr name="scanlogd" rcvar=`set_rcvar` -command="${prefix}/sbin/${name}" +command="${prefix}/bin/${name}" required_files="" load_rc_config $name --- diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 21:52:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F7ED16A4CE; Mon, 13 Dec 2004 21:52:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2965843D31; Mon, 13 Dec 2004 21:52:18 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDLqIpO057902; Mon, 13 Dec 2004 21:52:18 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDLqHqi057898; Mon, 13 Dec 2004 21:52:17 GMT (envelope-from thierry) Date: Mon, 13 Dec 2004 21:52:17 GMT From: Thierry Thomas Message-Id: <200412132152.iBDLqHqi057898@freefall.freebsd.org> To: ser_gagnon@sympatico.ca, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71438: Update ports: misc/gman add dependency & fix netbrowse option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 21:52:18 -0000 Synopsis: Update ports: misc/gman add dependency & fix netbrowse option State-Changed-From-To: open->closed State-Changed-By: thierry State-Changed-When: Mon Dec 13 21:51:47 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71438 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 23:10:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CC5B16A4CE for ; Mon, 13 Dec 2004 23:10:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35B3C43D5C for ; Mon, 13 Dec 2004 23:10:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBDNA8EH068680 for ; Mon, 13 Dec 2004 23:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBDNA8Y1068679; Mon, 13 Dec 2004 23:10:08 GMT (envelope-from gnats) Resent-Date: Mon, 13 Dec 2004 23:10:08 GMT Resent-Message-Id: <200412132310.iBDNA8Y1068679@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, Serge Gagnon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AF8B16A4CE; Mon, 13 Dec 2004 23:02:52 +0000 (GMT) Received: from tomts22-srv.bellnexxia.net (tomts22.bellnexxia.net [209.226.175.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 311E143D48; Mon, 13 Dec 2004 23:02:51 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts22-srv.bellnexxia.netESMTP <20041213230250.FTTW1919.tomts22-srv.bellnexxia.net@quenix1.dyndns.org>; Mon, 13 Dec 2004 18:02:50 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.43 (FreeBSD)) id 1CdzFV-000Aio-D5; Mon, 13 Dec 2004 18:05:01 -0500 Message-Id: Date: Mon, 13 Dec 2004 18:05:01 -0500 From: Serge Gagnon Sender: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kwm@FreeBSD.org Subject: ports/75035: Patch port: deskutils/drivel fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 23:10:09 -0000 >Number: 75035 >Category: ports >Synopsis: Patch port: deskutils/drivel fix plist >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 Dec 13 23:10:08 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.10-STABLE i386 >Organization: me >Environment: System: FreeBSD quenix1.dyndns.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Dec 2 14:23:49 EST 2004 root@quenix1.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: Fix pkg-plist file >How-To-Repeat: >Fix: --- patch-pkg-plist.diff begins here --- --- pkg-plist.orig Mon Dec 13 17:50:05 2004 +++ pkg-plist Mon Dec 13 17:56:37 2004 @@ -5,6 +5,7 @@ share/gnome/drivel/languages/livejournal.lang share/gnome/help/drivel/C/drivel.xml share/gnome/help/drivel/C/legal.xml +share/gnome/mime/packages/drivel.xml share/gnome/mime-info/drivel.keys share/gnome/mime-info/drivel.mime share/gnome/omf/drivel/drivel-C.omf @@ -46,8 +47,6 @@ share/locale/sr@Latn/LC_MESSAGES/drivel.mo share/locale/sv/LC_MESSAGES/drivel.mo share/locale/zh_CN/LC_MESSAGES/drivel.mo -share/mime/application/x-drivel.xml -share/mime/packages/drivel.xml @dirrm share/gnome/pixmaps/drivel @dirrm share/gnome/omf/drivel @dirrm share/gnome/help/drivel/C --- patch-pkg-plist.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 13 23:31:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6C7E16A4CE; Mon, 13 Dec 2004 23:31:20 +0000 (GMT) Received: from tomts13-srv.bellnexxia.net (tomts13-srv.bellnexxia.net [209.226.175.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 206C643D2D; Mon, 13 Dec 2004 23:31:20 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts13-srv.bellnexxia.netESMTP <20041213233119.DIKL1899.tomts13-srv.bellnexxia.net@quenix1.dyndns.org>; Mon, 13 Dec 2004 18:31:19 -0500 Received: from localhost.dyndns.org ([127.0.0.1] helo=quenix1.dyndns.org) by quenix1.dyndns.org with esmtp (Exim 4.43 (FreeBSD)) id 1Cdzh4-0004NT-AR; Mon, 13 Dec 2004 18:33:30 -0500 From: Serge Gagnon X-operating-system: FreeBSD 4.10-STABLE i386 X-location: Quebec, Qc, Canada; lat 46.820 lon -71.230 X-gpg-fingerprint: E489 112A 3564 2F80 3B06 16C9 A026 A3FA 633D 1726 X-ggp-public-key: http://quenix1.dyndns.org/users/serge/GnuPG.html X-gpg-key-ID: 0x633D1726 Serge Gagnon X-Face: 22hG-S23Un!fw[I:kZ_K7I+f60+dloy!5F:r?K6cz<'"^"PLy1GDD@PRPqG%TAIgFsdu0~6PSZaVqf+|36?En?&l+XNZnp:f-%c#&a=)Ho7qey#PYD+X~>X'A`4nv*{d+t1b%fk>X1nJ?R}&en;\;kLrH In-Reply-To: Message from Kirill Ponomarew <200412131037.iBDAbG8Y072787@freefall.freebsd.org> Date: Mon, 13 Dec 2004 18:33:30 -0500 Sender: serge@quenix1.dyndns.org Message-Id: <20041213233119.DIKL1899.tomts13-srv.bellnexxia.net@quenix1.dyndns.org> cc: freebsd-ports-bugs@FreeBSD.org cc: ser_gagnon@sympatico.ca Subject: Re: ports/75000: Patch port: audio/wsoundprefs unbroke port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 23:31:20 -0000 >>>>> On Mon, 13 Dec 2004, >>>>> "Kirill" == Kirill Ponomarew wrote: Kirill> Synopsis: Patch port: audio/wsoundprefs unbroke port Kirill> State-Changed-From-To: open->feedback Kirill> State-Changed-By: krion Kirill> State-Changed-When: Mon Dec 13 10:36:35 GMT 2004 Kirill> State-Changed-Why: Kirill> Please submit patches relative to files/ directory. Kirill> http://www.freebsd.org/cgi/query-pr.cgi?pr=75000 Sorry, but I'm not sure about what exactly you want (I dont speak english) You want that I change the name of the file ex: patch-src::main.c ? Again, I'm sorry to ask you such a stupid thing! -- Serge Gagnon Quebec, Qc, Canada From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 00:00:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6DC16A4D0 for ; Tue, 14 Dec 2004 00:00:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00A2943D5D for ; Tue, 14 Dec 2004 00:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE00eFI070981 for ; Tue, 14 Dec 2004 00:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE00ejn070980; Tue, 14 Dec 2004 00:00:40 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 00:00:40 GMT Resent-Message-Id: <200412140000.iBE00ejn070980@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, Serge Gagnon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5079216A4CE for ; Mon, 13 Dec 2004 23:54:46 +0000 (GMT) Received: from tomts22-srv.bellnexxia.net (tomts22-srv.bellnexxia.net [209.226.175.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3C9743D67 for ; Mon, 13 Dec 2004 23:54:45 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts22-srv.bellnexxia.netESMTP <20041213235444.GIDI1919.tomts22-srv.bellnexxia.net@quenix1.dyndns.org>; Mon, 13 Dec 2004 18:54:44 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.43 (FreeBSD)) id 1Ce03j-00086h-W4; Mon, 13 Dec 2004 18:56:55 -0500 Message-Id: Date: Mon, 13 Dec 2004 18:56:55 -0500 From: Serge Gagnon Sender: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: jylefort@brutele.be Subject: ports/75037: Patch port: games/urban fix compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 00:00:41 -0000 >Number: 75037 >Category: ports >Synopsis: Patch port: games/urban fix compile >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 Dec 14 00:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.10-STABLE i386 >Organization: me >Environment: System: FreeBSD quenix1.dyndns.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Dec 2 14:23:49 EST 2004 root@quenix1.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: Fix compile MAINTAINER is cced >How-To-Repeat: >Fix: --- patch-urban.diff begins here --- diff -urN /usr/ports/games/urban/files/patch-src::gfx::ggidrv.cc games/urban/files/patch-src::gfx::ggidrv.cc --- /usr/ports/games/urban/files/patch-src::gfx::ggidrv.cc Sun Jan 25 18:02:00 2004 +++ games/urban/files/patch-src::gfx::ggidrv.cc Mon Dec 13 18:45:42 2004 @@ -1,6 +1,34 @@ ---- src/gfx/ggidrv.cc.orig Sun Jan 25 03:56:28 2004 -+++ src/gfx/ggidrv.cc Sun Jan 25 03:57:34 2004 -@@ -383,7 +383,7 @@ +--- src/gfx/ggidrv.cc.orig Fri Jul 2 05:20:29 1999 ++++ src/gfx/ggidrv.cc Mon Dec 13 18:44:15 2004 +@@ -1,7 +1,7 @@ + /****************************************************************************** + + Libggi gfx driver. +- Copyright (C) 1999 Jonas Borgstr€m ++ Copyright (C) 1999 Jonas Borgstr€m + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by +@@ -19,8 +19,8 @@ + + Contact the author my mail: + +- Jonas Borgstr€m +- Bondev€gen 6 ++ Jonas Borgstr€m ++ Bondev€gen 6 + 92332 Storuman + Sweden + +@@ -34,6 +34,7 @@ + #include + #include + #include ++#include + /**************************************************************************/ + /* BITMAP *create_bitmap(int w, int h); */ + /**************************************************************************/ +@@ -383,7 +384,7 @@ } /**************************************************************************/ int set_palette(PALETTE p) { @@ -9,7 +37,7 @@ int i; for(i=0;i<256;i++) { -@@ -398,7 +398,7 @@ +@@ -398,7 +399,7 @@ }; /**************************************************************************/ void get_palette(PALETTE p) { @@ -18,7 +46,7 @@ int i; ggiGetPalette(screen->vis, 0, 1 << 8, pal); -@@ -715,7 +715,7 @@ +@@ -715,7 +716,7 @@ } /**************************************************************************/ int set_color(int i, RGB *rgb) { diff -urN /usr/ports/games/urban/files/patch-src::sound::sound.cc games/urban/files/patch-src::sound::sound.cc --- /usr/ports/games/urban/files/patch-src::sound::sound.cc Sun Jan 25 18:02:00 2004 +++ games/urban/files/patch-src::sound::sound.cc Mon Dec 13 18:48:34 2004 @@ -1,6 +1,34 @@ ---- src/sound/sound.cc.orig Sun Jan 25 03:58:51 2004 -+++ src/sound/sound.cc Sun Jan 25 04:00:00 2004 -@@ -90,7 +90,7 @@ +--- src/sound/sound.cc.orig Mon Jun 7 12:27:29 1999 ++++ src/sound/sound.cc Mon Dec 13 18:48:12 2004 +@@ -1,7 +1,7 @@ + /****************************************************************************** + + URBAN +- Copyright (C) 1999 Thomas Nyberg and Jonas Borgstr€m ++ Copyright (C) 1999 Thomas Nyberg and Jonas Borgstr€m + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by +@@ -19,8 +19,8 @@ + + Contact the authors: + Snailmail: +- Thomas Nyberg Jonas Borgstr€m +- Br€nnbergsv€gen 21b Bondev€gen 6 ++ Thomas Nyberg Jonas Borgstr€m ++ Br€nnbergsv€gen 21b Bondev€gen 6 + 92136 Lycksele 92332 Storuman + Sweden Sweden + +@@ -39,6 +39,7 @@ + #include "sound.h" + #include "config.h" + #include "scache.h" ++#include + + extern Config *config; + #ifndef DJGPP +@@ -90,7 +91,7 @@ md_mode = DMODE_SOFT_SNDFX | DMODE_SOFT_MUSIC | DMODE_16BITS; md_mixfreq = 22050; --- patch-urban.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 01:46:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 512C516A566; Tue, 14 Dec 2004 01:45:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B44A43D53; Tue, 14 Dec 2004 01:45:59 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE1jxJd086132; Tue, 14 Dec 2004 01:45:59 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE1jwgP086128; Tue, 14 Dec 2004 01:45:58 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 01:45:58 GMT From: Sergey Matveychuk Message-Id: <200412140145.iBE1jwgP086128@freefall.freebsd.org> To: lupe@lupe-christoph.de, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74165: Update port: sysutils/munin-main 1.0.3 -> 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 01:46:00 -0000 Synopsis: Update port: sysutils/munin-main 1.0.3 -> 1.0.4 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 01:45:52 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74165 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 01:46:12 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6005D16A4CF; Tue, 14 Dec 2004 01:46:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3880B43D5C; Tue, 14 Dec 2004 01:46:12 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE1kCnf086192; Tue, 14 Dec 2004 01:46:12 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE1kCCd086188; Tue, 14 Dec 2004 01:46:12 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 01:46:12 GMT From: Sergey Matveychuk Message-Id: <200412140146.iBE1kCCd086188@freefall.freebsd.org> To: lupe@lupe-christoph.de, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74166: Update port: sysutils/munin-node 1.0.3 -> 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 01:46:12 -0000 Synopsis: Update port: sysutils/munin-node 1.0.3 -> 1.0.4 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 01:46:05 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74166 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 01:50:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D37A816A4D1 for ; Tue, 14 Dec 2004 01:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52E5E43D55 for ; Tue, 14 Dec 2004 01:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE1oOut086274 for ; Tue, 14 Dec 2004 01:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE1oOt2086267; Tue, 14 Dec 2004 01:50:24 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 01:50:24 GMT Resent-Message-Id: <200412140150.iBE1oOt2086267@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3E7216A4CE; Tue, 14 Dec 2004 01:49:11 +0000 (GMT) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 392C343D53; Tue, 14 Dec 2004 01:49:10 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.238.150] (HELO santinel.home.ua) by mail.alkar.net (CommuniGate Pro SMTP 4.2.6) with ESMTP-TLS id 245291333; Tue, 14 Dec 2004 03:49:04 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1Ce1oG-000IFk-Vo; Tue, 14 Dec 2004 03:49:04 +0200 Message-Id: Date: Tue, 14 Dec 2004 03:49:04 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kiri@FreeBSD.org Subject: ports/75038: [PATCH] editors/xemacs-devel-mule: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 01:50:29 -0000 >Number: 75038 >Category: ports >Synopsis: [PATCH] editors/xemacs-devel-mule: update to new version >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: Tue Dec 14 01:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: Update 21.5.16 to 21.5.18 >How-To-Repeat: >Fix: --- xemacs-devel-mule.diff begins here --- diff -ruN editors/xemacs-devel-mule/Makefile editors/xemacs-devel-mule.new/Makefile --- editors/xemacs-devel-mule/Makefile Tue Dec 14 00:38:16 2004 +++ editors/xemacs-devel-mule.new/Makefile Tue Dec 14 00:37:30 2004 @@ -7,10 +7,8 @@ PORTNAME= xemacs-devel-mule PORTVERSION= ${XEMACS_VER:S/-/./} -PORTREVISION= 1 CATEGORIES+= editors -MASTER_SITES= ${MASTER_SITE_LOCAL:S|%SUBDIR%|kiri/xemacs|} \ - ${MASTER_SITE_XEMACS:S|%SUBDIR%|xemacs-${XEMACS_REL}|} +MASTER_SITES= ${MASTER_SITE_XEMACS:S|%SUBDIR%|xemacs-${XEMACS_REL}|} DISTNAME= xemacs-${XEMACS_VER:S/-b/./} DIST_SUBDIR= xemacs @@ -38,7 +36,7 @@ XEMACS_MAJOR_VER?= 21 XEMACS_REL= ${XEMACS_MAJOR_VER}.5 -XEMACS_VER= ${XEMACS_MAJOR_VER}.5-b16 +XEMACS_VER= ${XEMACS_MAJOR_VER}.5-b18 XEMACS_ARCH= ${CONFIGURE_TARGET} WRKSRC= ${WRKDIR}/xemacs-${XEMACS_VER:S/-b/./} diff -ruN editors/xemacs-devel-mule/distinfo editors/xemacs-devel-mule.new/distinfo --- editors/xemacs-devel-mule/distinfo Tue Dec 14 00:38:16 2004 +++ editors/xemacs-devel-mule.new/distinfo Tue Dec 14 00:37:23 2004 @@ -1,2 +1,2 @@ -MD5 (xemacs/xemacs-21.5.16.tar.gz) = 09f532e91cda52d9a4e9239c8909e631 -SIZE (xemacs/xemacs-21.5.16.tar.gz) = 12915530 +MD5 (xemacs/xemacs-21.5.18.tar.gz) = 979c2db1b6851e2496e837a14b805373 +SIZE (xemacs/xemacs-21.5.18.tar.gz) = 14985234 diff -ruN editors/xemacs-devel-mule/files/patch-emacs.c editors/xemacs-devel-mule.new/files/patch-emacs.c --- editors/xemacs-devel-mule/files/patch-emacs.c Thu Jan 1 03:00:00 1970 +++ editors/xemacs-devel-mule.new/files/patch-emacs.c Tue Dec 14 00:37:23 2004 @@ -0,0 +1,11 @@ +--- src/emacs.c.orig Thu Nov 25 01:38:32 2004 ++++ src/emacs.c Thu Nov 25 01:38:54 2004 +@@ -537,7 +537,7 @@ + + /* Number of bytes of writable memory we can expect to be able to get: + Leave this as an unsigned int because it could potentially be 4G */ +-unsigned long lim_data; ++rlim_t lim_data; + + /* WARNING! + diff -ruN editors/xemacs-devel-mule/files/patch-malloc.c editors/xemacs-devel-mule.new/files/patch-malloc.c --- editors/xemacs-devel-mule/files/patch-malloc.c Thu Jan 1 03:00:00 1970 +++ editors/xemacs-devel-mule.new/files/patch-malloc.c Tue Dec 14 00:37:23 2004 @@ -0,0 +1,20 @@ +--- src/malloc.c.orig Tue Dec 14 00:35:45 2004 ++++ src/malloc.c Tue Dec 14 00:36:15 2004 +@@ -285,7 +285,7 @@ + static char busy[30]; + + /* Number of bytes of writable memory we can expect to be able to get */ +-extern unsigned long lim_data; ++extern rlim_t lim_data; + + /* Level number of warnings already issued. + 0 -- no warnings issued. +@@ -339,7 +339,7 @@ + { + char *cp; + int nblks; +- unsigned long siz; ++ rlim_t siz; + int oldmask; + + #ifdef BSD diff -ruN editors/xemacs-devel-mule/files/patch-mem-limits.h editors/xemacs-devel-mule.new/files/patch-mem-limits.h --- editors/xemacs-devel-mule/files/patch-mem-limits.h Thu Mar 25 12:59:14 2004 +++ editors/xemacs-devel-mule.new/files/patch-mem-limits.h Tue Dec 14 00:37:23 2004 @@ -1,11 +1,11 @@ ---- src/mem-limits.h.bak Thu Mar 18 13:08:19 2004 -+++ src/mem-limits.h Thu Mar 18 13:08:42 2004 -@@ -108,7 +108,7 @@ +--- src/mem-limits.h.orig Sat Sep 11 08:28:41 2004 ++++ src/mem-limits.h Tue Dec 14 00:12:42 2004 +@@ -80,7 +80,7 @@ static POINTER data_space_start; /* Number of bytes of writable memory we can expect to be able to get */ --extern unsigned int lim_data; +-extern unsigned long lim_data; +extern rlim_t lim_data; - #if defined (HEAP_IN_DATA) && !defined(PDUMP) - extern unsigned long static_heap_size; + /* The implementation of get_lim_data() is very machine dependent. */ + diff -ruN editors/xemacs-devel-mule/pkg-plist editors/xemacs-devel-mule.new/pkg-plist --- editors/xemacs-devel-mule/pkg-plist Tue Dec 14 00:38:16 2004 +++ editors/xemacs-devel-mule.new/pkg-plist Tue Dec 14 00:37:23 2004 @@ -46,6 +46,7 @@ lib/xemacs-%%XEMACS_VER%%/etc/ChangeLog lib/xemacs-%%XEMACS_VER%%/etc/DEBUG lib/xemacs-%%XEMACS_VER%%/etc/DISTRIB +lib/xemacs-%%XEMACS_VER%%/etc/ETAGS.EBNF lib/xemacs-%%XEMACS_VER%%/etc/Emacs.ad lib/xemacs-%%XEMACS_VER%%/etc/FTP lib/xemacs-%%XEMACS_VER%%/etc/GNU @@ -157,6 +158,7 @@ lib/xemacs-%%XEMACS_VER%%/etc/gnuserv.1 lib/xemacs-%%XEMACS_VER%%/etc/gnuserv.README lib/xemacs-%%XEMACS_VER%%/etc/gray1.xbm +lib/xemacs-%%XEMACS_VER%%/etc/gtkrc lib/xemacs-%%XEMACS_VER%%/etc/idd/drop lib/xemacs-%%XEMACS_VER%%/etc/idd/dropmsk lib/xemacs-%%XEMACS_VER%%/etc/ms-kermit @@ -241,8 +243,6 @@ lib/xemacs-%%XEMACS_VER%%/etc/photos/vladimirm.png lib/xemacs-%%XEMACS_VER%%/etc/photos/wmperry.png lib/xemacs-%%XEMACS_VER%%/etc/photos/wmperrym.png -lib/xemacs-%%XEMACS_VER%%/etc/photos/youngs.png -lib/xemacs-%%XEMACS_VER%%/etc/photos/youngsm.png lib/xemacs-%%XEMACS_VER%%/etc/recycle.xpm lib/xemacs-%%XEMACS_VER%%/etc/recycle2.xpm lib/xemacs-%%XEMACS_VER%%/etc/refcard.ps.gz @@ -547,6 +547,7 @@ lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/cm.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/coding-system-slots.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/commands.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/compiler.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/config.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/conslots.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/console-gtk-impl.h @@ -567,6 +568,7 @@ lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/device.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/devslots.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/dragdrop.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/dump-data.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/dumper.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/elhash.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/emodules.h @@ -714,6 +716,9 @@ lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/mule-ccl.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/ndir.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/nt.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/number-gmp.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/number-mp.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/number.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/objects-gtk-impl.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/objects-gtk.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/objects-impl.h @@ -918,6 +923,7 @@ lib/xemacs-%%XEMACS_VER%%/info/lispref.info-7 lib/xemacs-%%XEMACS_VER%%/info/lispref.info-8 lib/xemacs-%%XEMACS_VER%%/info/lispref.info-9 +lib/xemacs-%%XEMACS_VER%%/info/lispref.info-10 lib/xemacs-%%XEMACS_VER%%/info/new-users-guide.info lib/xemacs-%%XEMACS_VER%%/info/standards.info lib/xemacs-%%XEMACS_VER%%/info/term.info diff -ruN editors/xemacs-devel-mule/pkg-plist.arch-dep editors/xemacs-devel-mule.new/pkg-plist.arch-dep --- editors/xemacs-devel-mule/pkg-plist.arch-dep Tue Dec 14 00:38:16 2004 +++ editors/xemacs-devel-mule.new/pkg-plist.arch-dep Tue Dec 14 00:37:23 2004 @@ -43,6 +43,7 @@ lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/cm.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/coding-system-slots.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/commands.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/compiler.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/config.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/conslots.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/console-gtk-impl.h @@ -63,6 +64,7 @@ lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/device.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/devslots.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/dragdrop.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/dump-data.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/dumper.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/elhash.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/emodules.h @@ -210,6 +212,9 @@ lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/mule-ccl.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/ndir.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/nt.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/number-gmp.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/number-mp.h +lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/number.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/objects-gtk-impl.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/objects-gtk.h lib/xemacs-%%XEMACS_VER%%/%%XEMACS_ARCH%%/include/objects-impl.h --- xemacs-devel-mule.diff ends here --- --- bsd.emacs.mk.diff begins here --- --- Mk/bsd.emacs.mk.old Sat Dec 11 02:55:23 2004 +++ bsd.emacs.mk Tue Dec 14 03:39:41 2004 @@ -183,7 +183,7 @@ # XEmacs-21 development version with Mule .elif (${EMACS_PORT_NAME} == "xemacs-devel-mule") EMACS_NAME= xemacs -EMACS_VER= 21.5-b16 +EMACS_VER= 21.5-b18 EMACS_MAJOR_VER= 21 EMACS_LIBDIR?= lib/${EMACS_NAME} EMACS_LIBDIR_WITH_VER?= lib/${EMACS_NAME}-${EMACS_VER} --- bsd.emacs.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 01:55:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6259416A4CE; Tue, 14 Dec 2004 01:55:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 299EA43D1D; Tue, 14 Dec 2004 01:55:25 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE1tPhj086466; Tue, 14 Dec 2004 01:55:25 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE1tONs086462; Tue, 14 Dec 2004 01:55:25 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 01:55:25 GMT From: Sergey Matveychuk Message-Id: <200412140155.iBE1tONs086462@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kwm@FreeBSD.org Subject: Re: ports/75035: Patch port: deskutils/drivel fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 01:55:25 -0000 Synopsis: Patch port: deskutils/drivel fix plist Responsible-Changed-From-To: freebsd-ports-bugs->kwm Responsible-Changed-By: sem Responsible-Changed-When: Tue Dec 14 01:55:08 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75035 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 01:56:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 535A816A4CE; Tue, 14 Dec 2004 01:56:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17EE743D48; Tue, 14 Dec 2004 01:56:34 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE1uXPH086521; Tue, 14 Dec 2004 01:56:33 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE1uXw4086517; Tue, 14 Dec 2004 01:56:33 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 01:56:33 GMT From: Sergey Matveychuk Message-Id: <200412140156.iBE1uXw4086517@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: ports/75030: [patch] update port databases/sqlite3 to 3.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 01:56:34 -0000 Synopsis: [patch] update port databases/sqlite3 to 3.0.8 Responsible-Changed-From-To: freebsd-ports-bugs->green Responsible-Changed-By: sem Responsible-Changed-When: Tue Dec 14 01:56:16 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75030 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 01:58:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B89116A4CE; Tue, 14 Dec 2004 01:58:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E6D43D2F; Tue, 14 Dec 2004 01:58:59 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE1wxwS086621; Tue, 14 Dec 2004 01:58:59 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE1wwBt086617; Tue, 14 Dec 2004 01:58:58 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 01:58:58 GMT From: Sergey Matveychuk Message-Id: <200412140158.iBE1wwBt086617@freefall.freebsd.org> To: yssu@nospam.ccca.net, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75025: Update port: net/jabberd to 2.0.6 (2.0s6) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 01:58:59 -0000 Synopsis: Update port: net/jabberd to 2.0.6 (2.0s6) State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Tue Dec 14 01:58:15 GMT 2004 State-Changed-Why: Wait for a maintainer approval. http://www.freebsd.org/cgi/query-pr.cgi?pr=75025 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:00:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6756C16A4E4 for ; Tue, 14 Dec 2004 02:00:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D3D143D54 for ; Tue, 14 Dec 2004 02:00:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE20YRd086733 for ; Tue, 14 Dec 2004 02:00:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE20Yk8086732; Tue, 14 Dec 2004 02:00:34 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 02:00:34 GMT Message-Id: <200412140200.iBE20Yk8086732@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/75025: Update port: net/jabberd to 2.0.6 (2.0s6) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:00:35 -0000 The following reply was made to PR ports/75025; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, kirk@strauser.com Cc: Subject: Re: ports/75025: Update port: net/jabberd to 2.0.6 (2.0s6) Date: Tue, 14 Dec 2004 04:58:13 +0300 Dear maintainer! Take the PR into account please. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:09:12 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C2B616A4CE; Tue, 14 Dec 2004 02:09:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 015F943D4C; Tue, 14 Dec 2004 02:09:12 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE29Bv5091102; Tue, 14 Dec 2004 02:09:11 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE29Bo8091098; Tue, 14 Dec 2004 02:09:11 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 02:09:11 GMT From: Sergey Matveychuk Message-Id: <200412140209.iBE29Bo8091098@freefall.freebsd.org> To: bmc@clapper.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75020: Update of pkg-plist for gnuls X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:09:12 -0000 Synopsis: Update of pkg-plist for gnuls State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 02:07:32 GMT 2004 State-Changed-Why: Committed, thanks! Please, set Class: maintainer-update in PRs for your ports and mark them with [maintainer] in synopsis. http://www.freebsd.org/cgi/query-pr.cgi?pr=75020 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:09:57 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 903B816A4CF; Tue, 14 Dec 2004 02:09:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54F6043D48; Tue, 14 Dec 2004 02:09:56 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE29uRm091159; Tue, 14 Dec 2004 02:09:56 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE29ucs091155; Tue, 14 Dec 2004 02:09:56 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 02:09:56 GMT From: Sergey Matveychuk Message-Id: <200412140209.iBE29ucs091155@freefall.freebsd.org> To: yssu@nospam.ccca.net, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75025: Update port: net/jabberd to 2.0.6 (2.0s6) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:09:57 -0000 Synopsis: Update port: net/jabberd to 2.0.6 (2.0s6) State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 02:09:29 GMT 2004 State-Changed-Why: It's a duplicate to ports/75019 http://www.freebsd.org/cgi/query-pr.cgi?pr=75025 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:15:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D5216A531; Tue, 14 Dec 2004 02:15:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F4243D3F; Tue, 14 Dec 2004 02:15:23 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2FNH7091419; Tue, 14 Dec 2004 02:15:23 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2FNJX091415; Tue, 14 Dec 2004 02:15:23 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 02:15:23 GMT From: Sergey Matveychuk Message-Id: <200412140215.iBE2FNJX091415@freefall.freebsd.org> To: paul+ports@it.ca, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75018: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:15:25 -0000 Synopsis: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Tue Dec 14 02:15:00 GMT 2004 State-Changed-Why: Ask submitter for feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=75018 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:20:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E97E216A4CE for ; Tue, 14 Dec 2004 02:20:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C068743D2F for ; Tue, 14 Dec 2004 02:20:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2KJp9091548 for ; Tue, 14 Dec 2004 02:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2KJ82091547; Tue, 14 Dec 2004 02:20:19 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 02:20:19 GMT Message-Id: <200412140220.iBE2KJ82091547@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/75018: [maintainer update]: net-mgmt/rotorouter wasmissing a file from its plist... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:20:20 -0000 The following reply was made to PR ports/75018; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, paul+ports@it.ca Cc: Subject: Re: ports/75018: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... Date: Tue, 14 Dec 2004 05:15:06 +0300 I don't think it's a good idea to remove conf file this way. Use something like this instead: @unexec if cmp -s %D/etc/rotorouter.conf %D/etc/rotorouter.conf-example; then rm -f %D/etc/rotorouter.conf; fi -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:35:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4CAF16A4CE; Tue, 14 Dec 2004 02:35:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEA9743D1F; Tue, 14 Dec 2004 02:35:32 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2ZWwX094257; Tue, 14 Dec 2004 02:35:32 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2ZW12094253; Tue, 14 Dec 2004 02:35:32 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 02:35:32 GMT From: Sergey Matveychuk Message-Id: <200412140235.iBE2ZW12094253@freefall.freebsd.org> To: lars.eggert@gmx.net, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75016: [MAINTAINER] www/mod_perl2: update to 1.99r18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:35:32 -0000 Synopsis: [MAINTAINER] www/mod_perl2: update to 1.99r18 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 02:33:19 GMT 2004 State-Changed-Why: Committed, thanks! I cant belive it's RC1 already! But how many RCs they plan? 20? ;-) http://www.freebsd.org/cgi/query-pr.cgi?pr=75016 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:50:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C63D216A4CE for ; Tue, 14 Dec 2004 02:50:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D3D243D4C for ; Tue, 14 Dec 2004 02:50:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2oHOS094531 for ; Tue, 14 Dec 2004 02:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2oHfd094530; Tue, 14 Dec 2004 02:50:17 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 02:50:17 GMT Resent-Message-Id: <200412140250.iBE2oHfd094530@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, Jason Bacon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72D3B16A4CE for ; Tue, 14 Dec 2004 02:41:17 +0000 (GMT) Received: from smithers.neuro.mcw.edu (smithers.neuro.mcw.edu [141.106.106.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2362443D45 for ; Tue, 14 Dec 2004 02:41:17 +0000 (GMT) (envelope-from bacon@smithers.neuro.mcw.edu) Received: from smithers.neuro.mcw.edu (localhost [127.0.0.1]) iBE2fGE9071564 for ; Mon, 13 Dec 2004 20:41:16 -0600 (CST) (envelope-from bacon@smithers.neuro.mcw.edu) Received: (from bacon@localhost) by smithers.neuro.mcw.edu (8.13.1/8.13.1/Submit) id iBE2fFpY071563; Mon, 13 Dec 2004 20:41:15 -0600 (CST) (envelope-from bacon) Message-Id: <200412140241.iBE2fFpY071563@smithers.neuro.mcw.edu> Date: Mon, 13 Dec 2004 20:41:15 -0600 (CST) From: Jason Bacon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75039: OpenOffice 1.1.2 javaldx crashes at startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jason Bacon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:50:17 -0000 >Number: 75039 >Category: ports >Synopsis: OpenOffice 1.1.2 javaldx crashes at startup >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: Tue Dec 14 02:50:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: FreeBSD 5.3-RELEASE i386 >Organization: Medical College of Wisconsin >Environment: FreeBSD sculpin.tds.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 System is an AMD K6-2 500Mhz, 256Meg RAM, fresh install, generic kernel. >Description: Cannot start openoffice-1.1.2 under FreeBSD 5.3-RELEASE: sculpin bacon ~ 204: openoffice-1.1.2 Segmentation fault (core dumped) Segmentation fault (core dumped) sculpin bacon ~ 205: ls *.core javaldx.core soffice.bin.core sculpin bacon ~ 206: gdb /usr/local/OpenOffice.org1.1.2/program/javaldx javaldx.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"...(no debugging symbols found)... Core was generated by `javaldx'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/local/OpenOffice.org1.1.2/program/libsal.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/OpenOffice.org1.1.2/program/libsal.so.3 Reading symbols from /usr/local/OpenOffice.org1.1.2/program/libcppu.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/OpenOffice.org1.1.2/program/libcppu.so.3 Reading symbols from /usr/local/OpenOffice.org1.1.2/program/libjvmaccessgcc3.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/OpenOffice.org1.1.2/program/libjvmaccessgcc3.so.3 Reading symbols from /usr/lib/libpthread.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libpthread.so.1 Reading symbols from /lib/libm.so.3...(no debugging symbols found)...done. Loaded symbols for /lib/libm.so.3 Reading symbols from /lib/libc.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libc.so.5 Reading symbols from /usr/local/OpenOffice.org1.1.2/program/libstlport_gcc.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/OpenOffice.org1.1.2/program/libstlport_gcc.so Reading symbols from /usr/local/OpenOffice.org1.1.2/program/libsalhelpergcc3.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/OpenOffice.org1.1.2/program/libsalhelpergcc3.so.3 Reading symbols from /usr/libexec/ld-elf.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/libexec/ld-elf.so.1 #0 0x2827646c in pthread_setconcurrency () from /usr/lib/libpthread.so.1 (gdb) where #0 0x2827646c in pthread_setconcurrency () from /usr/lib/libpthread.so.1 #1 0x282759a6 in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 #2 0x2827684f in pthread_setconcurrency () from /usr/lib/libpthread.so.1 #3 0x28279e76 in pthread_testcancel () from /usr/lib/libpthread.so.1 #4 0x2827afee in __error () from /usr/lib/libpthread.so.1 #5 0x28262792 in ?? () from /usr/lib/libpthread.so.1 #6 0x28053fc9 in find_symdef () from /usr/libexec/ld-elf.so.1 #7 0x28052d73 in _rtld () from /usr/libexec/ld-elf.so.1 #8 0x28052836 in .rtld_start () from /usr/libexec/ld-elf.so.1 (gdb) >How-To-Repeat: Install openoffice package. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:50:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36E3E16A4CE for ; Tue, 14 Dec 2004 02:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C6F243D1F for ; Tue, 14 Dec 2004 02:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2oKBI094584 for ; Tue, 14 Dec 2004 02:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2oK8R094583; Tue, 14 Dec 2004 02:50:20 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 02:50:20 GMT Message-Id: <200412140250.iBE2oK8R094583@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:50:21 -0000 The following reply was made to PR ports/74974; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, mike@skew.org Cc: Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 Date: Tue, 14 Dec 2004 05:49:25 +0300 Why dont you use 'diff -u' for updates as described in Porter's Handbook? Please do so. And you should set PR class to maintainer-update for your ports. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:55:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E297616A4CE; Tue, 14 Dec 2004 02:55:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE17243D2F; Tue, 14 Dec 2004 02:55:35 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2tZER094824; Tue, 14 Dec 2004 02:55:35 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2tZnP094820; Tue, 14 Dec 2004 02:55:35 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 02:55:35 GMT From: Sergey Matveychuk Message-Id: <200412140255.iBE2tZnP094820@freefall.freebsd.org> To: ehaupt@critical.ch, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74684: new port: irc/netwalker-ircc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:55:36 -0000 Synopsis: new port: irc/netwalker-ircc State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Tue Dec 14 02:55:12 GMT 2004 State-Changed-Why: Ask submtter for fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=74684 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 02:59:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6901D16A4CE; Tue, 14 Dec 2004 02:59:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4238B43D4C; Tue, 14 Dec 2004 02:59:14 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE2xEQa094909; Tue, 14 Dec 2004 02:59:14 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE2xEdP094905; Tue, 14 Dec 2004 02:59:14 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 02:59:14 GMT From: Sergey Matveychuk Message-Id: <200412140259.iBE2xEdP094905@freefall.freebsd.org> To: ip@doom.homeunix.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74992: Update port: graphics/ayam 1.7_1 -> 1.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 02:59:14 -0000 Synopsis: Update port: graphics/ayam 1.7_1 -> 1.8 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 02:59:07 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74992 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 03:00:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D6516A4CE for ; Tue, 14 Dec 2004 03:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FBD643D2D for ; Tue, 14 Dec 2004 03:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE30l4g095039 for ; Tue, 14 Dec 2004 03:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE30l6h095038; Tue, 14 Dec 2004 03:00:47 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 03:00:47 GMT Message-Id: <200412140300.iBE30l6h095038@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74684: new port: irc/netwalker-ircc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 03:00:47 -0000 The following reply was made to PR ports/74684; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, ehaupt@critical.ch Cc: Subject: Re: ports/74684: new port: irc/netwalker-ircc Date: Tue, 14 Dec 2004 05:55:10 +0300 Does not build on 4.x: c++ -lncurses -lpthread main.o functions.o screen.o server.o user.o messages.o signals.o parameter.o userdb.o -o netwalker /usr/libexec/elf/ld: cannot find -lpthread *** Error code 1 Stop in /usr/build/usr/home/sem/prs/netwalker-ircc/work/netwalker-ircc-0.5.0. *** Error code 1 Stop in /usr/home/sem/prs/netwalker-ircc. Hint: use $PTHREAD_LIBS macro for changing of -lpthread. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 04:40:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7908216A4CE for ; Tue, 14 Dec 2004 04:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 500F443D48 for ; Tue, 14 Dec 2004 04:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE4eOuM013859 for ; Tue, 14 Dec 2004 04:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE4eOoT013856; Tue, 14 Dec 2004 04:40:24 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 04:40:24 GMT Resent-Message-Id: <200412140440.iBE4eOoT013856@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, Serge Gagnon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D24D16A4CE; Tue, 14 Dec 2004 04:33:15 +0000 (GMT) Received: from tomts13-srv.bellnexxia.net (tomts13.bellnexxia.net [209.226.175.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7208943D4C; Tue, 14 Dec 2004 04:33:14 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts13-srv.bellnexxia.netESMTP <20041214043313.GWBW1899.tomts13-srv.bellnexxia.net@quenix1.dyndns.org>; Mon, 13 Dec 2004 23:33:13 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.43 (FreeBSD)) id 1Ce4PF-000KQb-JR; Mon, 13 Dec 2004 23:35:25 -0500 Message-Id: Date: Mon, 13 Dec 2004 23:35:25 -0500 From: Serge Gagnon Sender: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lioux@FreeBSD.org Subject: ports/75040: Patch port: multimedia/goggles fix install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 04:40:24 -0000 >Number: 75040 >Category: ports >Synopsis: Patch port: multimedia/goggles fix 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: Tue Dec 14 04:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.10-STABLE i386 >Organization: me >Environment: System: FreeBSD quenix1.dyndns.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Dec 2 14:23:49 EST 2004 root@quenix1.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: o Fix install problem In fact, it was not an install problem, but a build problem. The program was unable to install an executable that was never built. It seems that we do not have -mtune flag in g++ on FreeBSD 4. Just replace the ${FILESDIR}/patch-build-config.linux by the one below. Btw, this little app seems to be cool ;) >How-To-Repeat: >Fix: --- patch-build-config.linux begins here --- --- build/config.linux.orig Tue Nov 2 00:32:38 2004 +++ build/config.linux Mon Dec 13 23:22:19 2004 @@ -2,7 +2,7 @@ #------------------------------------------------------------------------------- CONFIG_XV=${CONFIG_XV:-1} CONFIG_DXR3=${CONFIG_DXR3:-0} -CONFIG_DVD_DEVICE="/dev/dvd" +CONFIG_DVD_DEVICE="%%DVDDEVICE%%" # Possible defaults for other platforms. #CONFIG_DVD_DEVICE="/cdrom/cdrom0" # Solaris @@ -15,13 +15,13 @@ # Search and Installation Directories #------------------------------------------------------------------------------- -FOX_PREFIX="${FOX_PREFIX:-/usr}" -OGLE_PREFIX="${OGLE_PREFIX:-/usr}" -GOGGLES_PREFIX="${GOGGLES_PREFIX:-/usr}" -XLIB_PREFIX="/usr/X11R6" -MENU_FILE_DIR="/usr/share/applications" -MENU_ICON_DIR="/usr/share/icons" -MENU_LINK_DIR="/usr/share/applnk-mdk/Multimedia/Video" +FOX_PREFIX="%%LOCALBASE%%" +OGLE_PREFIX="%%LOCALBASE%%" +GOGGLES_PREFIX="%%PREFIX%%" +XLIB_PREFIX="%%X11BASE%%" +MENU_FILE_DIR="%%PREFIX%%/share/gnome/applications" +MENU_ICON_DIR="%%PREFIX%%/share/icons" +MENU_LINK_DIR="%%PREFIX%%/share/applnk-mdk/Multimedia/Video" # Libraries we need #---------------------------------------------------------------------------------------------------------------- @@ -89,10 +89,10 @@ # General Linker Flags (probably need to distinguish between Libs and Executables. export LDFLAGS="" -export CFLAGS="-Wall -O2 -march=i586 -mtune=i586" -export CXXFLAGS="-Wall -O2 -march=i586 -mtune=i586" -export CPPFLAGS="-I../include $OGLE_INCLUDE $FOX_INCLUDE" -export LIBS="$OGLE_LIB $XV_LIBS $FOX_LIB" +export CFLAGS="-Wall -O2 -march=i586" +export CXXFLAGS="-Wall -O2 -march=i586" +export CPPFLAGS="-I../include $OGLE_INCLUDE $FOX_INCLUDE -I%%X11BASE%%/include" +export LIBS="$OGLE_LIB $XV_LIBS $FOX_LIB %%PTHREADLIBS%%" export DEFS="-DLINUX $DXR3_DEFS $XV_DEFS" #---------------------------------------------------------------------------------------------------------------- --- patch-build-config.linux ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 04:50:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE41516A4CE for ; Tue, 14 Dec 2004 04:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 936A243D1F for ; Tue, 14 Dec 2004 04:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE4oRNS014118 for ; Tue, 14 Dec 2004 04:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE4oRA8014117; Tue, 14 Dec 2004 04:50:27 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 04:50:27 GMT Message-Id: <200412140450.iBE4oRA8014117@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Serge Gagnon Subject: Re: ports/75040: Patch port: multimedia/goggles fix install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Serge Gagnon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 04:50:27 -0000 The following reply was made to PR ports/75040; it has been noted by GNATS. From: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/75040: Patch port: multimedia/goggles fix install Date: Mon, 13 Dec 2004 23:49:21 -0500 I just forgot this little detail: --- /usr/ports/multimedia/goggles/Makefile Tue Nov 23 20:15:46 2004 +++ multimedia/goggles/Makefile Mon Dec 13 22:50:29 2004 @@ -36,8 +36,6 @@ #BROKEN= "Does not compile on alpha 5.x" #.endif -BROKEN= "Install fails" - .ifdef(WITH_DVD_DEVICE) DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE} .else From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 05:50:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D96716A4CE for ; Tue, 14 Dec 2004 05:50:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE00543D49 for ; Tue, 14 Dec 2004 05:50:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE5oTTr035363 for ; Tue, 14 Dec 2004 05:50:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE5oTD5035362; Tue, 14 Dec 2004 05:50:29 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 05:50:29 GMT Resent-Message-Id: <200412140550.iBE5oTD5035362@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-Yves Lefort Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57DB216A4CE for ; Tue, 14 Dec 2004 05:45:59 +0000 (GMT) Received: from gateway.lefort.net (212.68.242.35.brutele.be [212.68.242.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D33343D39 for ; Tue, 14 Dec 2004 05:45:58 +0000 (GMT) (envelope-from jylefort@brutele.be) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id B84F85510; Tue, 14 Dec 2004 06:45:56 +0100 (CET) Received: by jsite.lefort.net (Postfix, from userid 1000) id 4D2A322E22; Tue, 14 Dec 2004 06:45:56 +0100 (CET) Message-Id: <20041214054556.4D2A322E22@jsite.lefort.net> Date: Tue, 14 Dec 2004 06:45:56 +0100 (CET) From: Jean-Yves Lefort To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Serge Gagnon Subject: ports/75042: Update port: games/urban and games/urban-sounds to 1.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jean-Yves Lefort List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 05:50:30 -0000 >Number: 75042 >Category: ports >Synopsis: Update port: games/urban and games/urban-sounds to 1.5.3 >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 Dec 14 05:50:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jean-Yves Lefort >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD jsite.lefort.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Thu Dec 2 15:08:28 CET 2004 jylefort@jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386 >Description: * Update to 1.5.3 * Incorporate build fixes from Serge Gagnon (PR 75037) >How-To-Repeat: >Fix: diff -ruN /usr/ports/games/urban/Makefile urban/Makefile --- /usr/ports/games/urban/Makefile Mon Jan 26 00:01:59 2004 +++ urban/Makefile Tue Dec 14 06:22:59 2004 @@ -6,9 +6,9 @@ # PORTNAME= urban -PORTVERSION= 1.5.2 +PORTVERSION= 1.5.3 CATEGORIES= games -MASTER_SITES= http://urban.worldonline.nl/files/linux/ +MASTER_SITES= http://urban.bengburken.net/files/linux/ DIST_SUBDIR= urban MAINTAINER= jylefort@brutele.be diff -ruN /usr/ports/games/urban/distinfo urban/distinfo --- /usr/ports/games/urban/distinfo Sat Apr 3 05:16:34 2004 +++ urban/distinfo Tue Dec 14 06:25:04 2004 @@ -1,2 +1,2 @@ -MD5 (urban/urban-1.5.2.tar.gz) = 4d394e70866db944ffff0901d75535b0 -SIZE (urban/urban-1.5.2.tar.gz) = 809513 +MD5 (urban/urban-1.5.3.tar.gz) = dbbecc021a204e4c41fee5c876d7585d +SIZE (urban/urban-1.5.3.tar.gz) = 808662 diff -ruN /usr/ports/games/urban/files/patch-src::gfx::ggidrv.cc urban/files/patch-src::gfx::ggidrv.cc --- /usr/ports/games/urban/files/patch-src::gfx::ggidrv.cc Mon Jan 26 00:02:00 2004 +++ urban/files/patch-src::gfx::ggidrv.cc Tue Dec 14 06:27:09 2004 @@ -1,29 +1,10 @@ ---- src/gfx/ggidrv.cc.orig Sun Jan 25 03:56:28 2004 -+++ src/gfx/ggidrv.cc Sun Jan 25 03:57:34 2004 -@@ -383,7 +383,7 @@ - } +--- src/gfx/ggidrv.cc.orig Tue Dec 14 06:26:36 2004 ++++ src/gfx/ggidrv.cc Tue Dec 14 06:26:45 2004 +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + #include + #include /**************************************************************************/ - int set_palette(PALETTE p) { -- struct ggi_color pal[256]; -+ ggi_color pal[256]; - int i; - - for(i=0;i<256;i++) { -@@ -398,7 +398,7 @@ - }; - /**************************************************************************/ - void get_palette(PALETTE p) { -- struct ggi_color pal[256]; -+ ggi_color pal[256]; - int i; - - ggiGetPalette(screen->vis, 0, 1 << 8, pal); -@@ -715,7 +715,7 @@ - } - /**************************************************************************/ - int set_color(int i, RGB *rgb) { -- struct ggi_color Color; -+ ggi_color Color; - - Color.r = rgb->r << 10; - Color.g = rgb->g << 10; diff -ruN /usr/ports/games/urban/files/patch-src::highscor::highscor.cc urban/files/patch-src::highscor::highscor.cc --- /usr/ports/games/urban/files/patch-src::highscor::highscor.cc Mon Jan 26 00:02:00 2004 +++ urban/files/patch-src::highscor::highscor.cc Tue Dec 14 06:31:43 2004 @@ -1,5 +1,5 @@ ---- src/highscor/highscor.cc.orig Sun Jan 25 03:58:07 2004 -+++ src/highscor/highscor.cc Sun Jan 25 03:58:30 2004 +--- src/highscor/highscor.cc.orig Tue Dec 14 06:30:56 2004 ++++ src/highscor/highscor.cc Tue Dec 14 06:31:19 2004 @@ -75,7 +75,7 @@ if(highscore[i].Level) @@ -17,7 +17,7 @@ + if(score > highscore[i].Skore) { memmove(&highscore[i + 1], &highscore[i], - sizeof(Score) * (NUM_HIGHSCORES - i - 1)); + sizeof(Score_t) * (NUM_HIGHSCORES - i - 1)); strcpy(highscore[i].Name, GetName()); - highscore[i].Score = score; diff -ruN /usr/ports/games/urban/files/patch-src::sound::sound.cc urban/files/patch-src::sound::sound.cc --- /usr/ports/games/urban/files/patch-src::sound::sound.cc Mon Jan 26 00:02:00 2004 +++ urban/files/patch-src::sound::sound.cc Tue Dec 14 06:29:39 2004 @@ -1,11 +1,10 @@ ---- src/sound/sound.cc.orig Sun Jan 25 03:58:51 2004 -+++ src/sound/sound.cc Sun Jan 25 04:00:00 2004 -@@ -90,7 +90,7 @@ - md_mode = DMODE_SOFT_SNDFX | DMODE_SOFT_MUSIC | DMODE_16BITS; - md_mixfreq = 22050; - -- if(MikMod_Init()) { -+ if(MikMod_Init(NULL)) { - fprintf(stderr,"Could not initialize sound, reason: %s\n", - MikMod_strerror(MikMod_errno)); - +--- src/sound/sound.cc.orig Tue Dec 14 06:29:12 2004 ++++ src/sound/sound.cc Tue Dec 14 06:29:21 2004 +@@ -28,6 +28,7 @@ + + thomas.nyberg@usa.net jonas_b@bitsmart.com + *****************************************************************************/ ++#include + #include + #ifdef DJGPP + #include diff -ruN /usr/ports/games/urban/pkg-descr urban/pkg-descr --- /usr/ports/games/urban/pkg-descr Mon Jan 26 00:01:59 2004 +++ urban/pkg-descr Tue Dec 14 06:23:39 2004 @@ -2,7 +2,7 @@ renegade military cyborg fighting your way out of the military base where you were created. -WWW: http://urban.worldonline.nl/ +WWW: http://urban.bengburken.net/ - Jean-Yves Lefort jylefort@brutele.be diff -ruN /usr/ports/games/urban-sounds/Makefile urban-sounds/Makefile --- /usr/ports/games/urban-sounds/Makefile Mon Jan 26 00:21:13 2004 +++ urban-sounds/Makefile Tue Dec 14 06:34:00 2004 @@ -6,9 +6,9 @@ # PORTNAME= urban-sounds -PORTVERSION= 1.5.2 +PORTVERSION= 1.5.3 CATEGORIES= games -MASTER_SITES= http://urban.worldonline.nl/files/linux/ +MASTER_SITES= http://urban.bengburken.net/files/linux/ DISTNAME= sound DIST_SUBDIR= urban diff -ruN /usr/ports/games/urban-sounds/pkg-descr urban-sounds/pkg-descr --- /usr/ports/games/urban-sounds/pkg-descr Mon Jan 26 00:21:13 2004 +++ urban-sounds/pkg-descr Tue Dec 14 06:34:30 2004 @@ -4,7 +4,7 @@ This port contains the sound effects of the game. -WWW: http://urban.worldonline.nl/ +WWW: http://urban.bengburken.net/ - Jean-Yves Lefort jylefort@brutele.be >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 06:00:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20B6316A4CE for ; Tue, 14 Dec 2004 06:00:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED1C543D48 for ; Tue, 14 Dec 2004 06:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE60lDo045705 for ; Tue, 14 Dec 2004 06:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE60lO0045704; Tue, 14 Dec 2004 06:00:47 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 06:00:47 GMT Message-Id: <200412140600.iBE60lO0045704@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jean-Yves Lefort Subject: Re: ports/75037: Patch port: games/urban fix compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jean-Yves Lefort List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 06:00:48 -0000 The following reply was made to PR ports/75037; it has been noted by GNATS. From: Jean-Yves Lefort To: freebsd-gnats-submit@FreeBSD.org, ser%5Fgagnon@sympatico.ca Cc: Subject: Re: ports/75037: Patch port: games/urban fix compile Date: Tue, 14 Dec 2004 06:52:22 +0100 Incorporated into 75042, thanks. -- Jean-Yves Lefort jylefort@brutele.be http://lefort.be.eu.org/ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 06:48:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9A6716A4CE; Tue, 14 Dec 2004 06:48:56 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D3F043D1D; Tue, 14 Dec 2004 06:48:56 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id A5DDB752D; Tue, 14 Dec 2004 07:48:52 +0100 (CET) Date: Tue, 14 Dec 2004 07:48:52 +0100 From: Thierry Thomas To: Serge Gagnon Message-ID: <20041214064852.GA12508@graf.pompo.net> Mail-Followup-To: Serge Gagnon , Kirill Ponomarew , freebsd-ports-bugs@FreeBSD.org References: <200412131037.iBDAbG8Y072787@freefall.freebsd.org> <20041213233119.DIKL1899.tomts13-srv.bellnexxia.net@quenix1.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20041213233119.DIKL1899.tomts13-srv.bellnexxia.net@quenix1.dyndns.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: freebsd-ports-bugs@FreeBSD.org cc: Kirill Ponomarew Subject: Re: ports/75000: Patch port: audio/wsoundprefs unbroke port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 06:48:56 -0000 Le Mar 14 déc 04 à 0:33:30 +0100, Serge Gagnon écrivait : > > >>>>> On Mon, 13 Dec 2004, > >>>>> "Kirill" == Kirill Ponomarew wrote: > > Kirill> Synopsis: Patch port: audio/wsoundprefs unbroke port > > Kirill> State-Changed-From-To: open->feedback > Kirill> State-Changed-By: krion > Kirill> State-Changed-When: Mon Dec 13 10:36:35 GMT 2004 > Kirill> State-Changed-Why: > Kirill> Please submit patches relative to files/ directory. > > Kirill> http://www.freebsd.org/cgi/query-pr.cgi?pr=75000 > > Sorry, but I'm not sure about what exactly you want (I dont speak > english) > You want that I change the name of the file ex: > patch-src::main.c ? Hello Serge, I don't speak a better english than yours ;-) , but I'm sure that Kirill prefers a `diff -urN audio/wsoundprefs.orig audio/wsoundprefs'. Regards, -- Th. Thomas. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 08:52:45 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48AF316A4CE; Tue, 14 Dec 2004 08:52:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2320843D2D; Tue, 14 Dec 2004 08:52:45 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE8qixv068756; Tue, 14 Dec 2004 08:52:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE8qiRj068752; Tue, 14 Dec 2004 08:52:44 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 08:52:44 GMT From: Mark Linimon Message-Id: <200412140852.iBE8qiRj068752@freefall.freebsd.org> To: ser_gagnon@sympatico.ca, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75037: Patch port: games/urban fix compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 08:52:45 -0000 Synopsis: Patch port: games/urban fix compile State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Tue Dec 14 08:52:18 GMT 2004 State-Changed-Why: Changes have been incorporated into the patch in ports/75042. http://www.freebsd.org/cgi/query-pr.cgi?pr=75037 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 09:00:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AFA916A4CE for ; Tue, 14 Dec 2004 09:00:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5312243D54 for ; Tue, 14 Dec 2004 09:00:50 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE90oXM069176 for ; Tue, 14 Dec 2004 09:00:50 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE90ndB069175; Tue, 14 Dec 2004 09:00:49 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 09:00:49 GMT Resent-Message-Id: <200412140900.iBE90ndB069175@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, Gerhard Schmidt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DB9016A4CE for ; Tue, 14 Dec 2004 08:56:21 +0000 (GMT) Received: from etustar.ze.tum.de (etustar.ze.tum.de [129.187.39.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89BB743D64 for ; Tue, 14 Dec 2004 08:56:20 +0000 (GMT) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (estartu@localhost.ze.tu-muenchen.de [127.0.0.1]) by etustar.ze.tum.de (8.12.11/8.12.11) with ESMTP id iBE8uIkR065319 for ; Tue, 14 Dec 2004 09:56:18 +0100 (CET) (envelope-from estartu@etustar.ze.tum.de) Received: (from estartu@localhost) by etustar.ze.tum.de (8.12.11/8.12.11/Submit) id iBE8uIn5065318; Tue, 14 Dec 2004 09:56:18 +0100 (CET) (envelope-from estartu) Message-Id: <200412140856.iBE8uIn5065318@etustar.ze.tum.de> Date: Tue, 14 Dec 2004 09:56:18 +0100 (CET) From: Gerhard Schmidt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75044: [UPDATE] Version Check added to prevent build on python version >= 2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 09:00:50 -0000 >Number: 75044 >Category: ports >Synopsis: [UPDATE] Version Check added to prevent build on python version >= 2.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: Tue Dec 14 09:00:49 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Gerhard Schmidt >Release: FreeBSD 4.10-STABLE i386 >Organization: Augsburger Computer Forum e.V. >Environment: System: FreeBSD etustar.ze.tum.de 4.10-STABLE FreeBSD 4.10-STABLE #26: Wed May 26 11:31:00 CEST 2004 root@etustar.ze.tum.de:/usr/src/sys/compile/ETUSTAR i386 >Description: The E-Mail package is part of the python base distribution since python 2.2. It shouldn't be installed on systems running python 2.2 or above. I've change the makefile to ignore the port if python version is 2.2 or higher. >How-To-Repeat: >Fix: diff -ruN /usr/ports/mail/py-mimelib/Makefile py-mimelib/Makefile --- /usr/ports/mail/py-mimelib/Makefile Mon Oct 6 14:22:25 2003 +++ py-mimelib/Makefile Tue Dec 14 09:48:15 2004 @@ -20,4 +20,10 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes +.include + +.if ${PYTHON_REL} >= 220 +IGNORE= "The E-Mail package is part of the Python base distribution since python 2.2" +.endif + .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 09:20:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC2D816A4CF for ; Tue, 14 Dec 2004 09:20:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C05BC43D1F for ; Tue, 14 Dec 2004 09:20:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE9KH6A073810 for ; Tue, 14 Dec 2004 09:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE9KHBH073809; Tue, 14 Dec 2004 09:20:17 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 09:20:17 GMT Resent-Message-Id: <200412140920.iBE9KHBH073809@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F94D16A4CE for ; Tue, 14 Dec 2004 09:11:14 +0000 (GMT) Received: from mx1.corpex-net.de (mx1.corpex-net.de [213.61.99.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E2DF43D55 for ; Tue, 14 Dec 2004 09:11:14 +0000 (GMT) (envelope-from freddy@pegasus.staff-hh.corpex.de) Received: from [213.61.99.41] (helo=pegasus.staff-hh.corpex.de) by mx1.corpex-net.de with asmtp (Exim 4.24; FreeBSD) id 1Ce8i8-0002P4-5u for FreeBSD-gnats-submit@freebsd.org; Tue, 14 Dec 2004 10:11:12 +0100 Received: (from freddy@localhost)iBE9BAQ7001453; Tue, 14 Dec 2004 10:11:10 +0100 (CET) (envelope-from freddy) Message-Id: <200412140911.iBE9BAQ7001453@pegasus.staff-hh.corpex.de> Date: Tue, 14 Dec 2004 10:11:10 +0100 (CET) From: Frank Altpeter To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75045: www/firefox still crashing upon print X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Frank Altpeter List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 09:20:18 -0000 >Number: 75045 >Category: ports >Synopsis: www/firefox still crashing upon print >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: Tue Dec 14 09:20:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Frank Altpeter >Release: FreeBSD 5.3-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD pegasus.staff-hh.corpex.de 5.3-RELEASE-p1 FreeBSD 5.3-RELEASE-p1 #26: Wed Dec 1 10:54:19 CET 2004 root@pegasus.staff-hh.corpex.de:/usr/obj/usr/src/sys/kernconf.pegasus i386 >Description: Although this bug should be gone since 1.0_3, it still happens with the current 1.0_4,1 port version. But not allways, though. I wasn't yet able to find out, on which constellation firefox does crash when trying to print something, but mostly it does work again for some time after restart. I thought it would have to do with extensions but even with a clean fresh $HOME/.mozilla it still does crash sporadically. Since strace and truss are not very suitable here, i'm willing to test further when someone can tell me how to gather more information on that topic. The first 10 lines of gdb backtrace on the core tells: #0 0x2899af17 in pthread_testcancel () from /usr/lib/libpthread.so.1 #1 0x2898c0b5 in sigaction () from /usr/lib/libpthread.so.1 #2 0x289861e1 in pthread_kill () from /usr/lib/libpthread.so.1 #3 0x28985bb0 in raise () from /usr/lib/libpthread.so.1 #4 0x080554a3 in nsProfileLock::FatalSignalHandler () #5 0x2898ac16 in sigaction () from /usr/lib/libpthread.so.1 #6 0x2898aa97 in sigaction () from /usr/lib/libpthread.so.1 #7 0x2898b619 in sigaction () from /usr/lib/libpthread.so.1 #8 0x28993b3f in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 #9 0x28993a2e in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 #10 0x28a41c5f in _ctx_start () from /lib/libc.so.5 If of interest, my system is an intel centrino notebook (ibm thinkpad t40) and my print suite is CUPS-1.1.22 (all ports up-to-date) I considered this a critical bug, since you can run in great problems for example if you try to print out a train ticket online (or any other important only-once-generated dta) and your browser does crash, and your ticket is lost. >How-To-Repeat: Don't know, just surf around a bit and then try to print something - sometimes it happens, sometimes not. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 09:32:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5111B16A4CE; Tue, 14 Dec 2004 09:32:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4146543D45; Tue, 14 Dec 2004 09:32:10 +0000 (GMT) (envelope-from niels@FreeBSD.org) Received: from freefall.freebsd.org (niels@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE9WA7m075282; Tue, 14 Dec 2004 09:32:10 GMT (envelope-from niels@freefall.freebsd.org) Received: (from niels@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE9WANv075278; Tue, 14 Dec 2004 09:32:10 GMT (envelope-from niels) Date: Tue, 14 Dec 2004 09:32:10 GMT From: Niels Heinen Message-Id: <200412140932.iBE9WANv075278@freefall.freebsd.org> To: cykyc@yahoo.com, niels@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, niels@FreeBSD.org Subject: Re: ports/72752: new port: security/unicornscan X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 09:32:10 -0000 Synopsis: new port: security/unicornscan State-Changed-From-To: open->feedback State-Changed-By: niels State-Changed-When: Tue Dec 14 09:07:56 GMT 2004 State-Changed-Why: Thanks for the submission ! I have tested the port and it looks fine except for a few minor bugs. I fixed them and would like to ask if you can test the port and let me know if it still works fine. A document describing the issues I fixed and a tarball containing the updated port can be found here: http://people.freebsd.org/~niels/ports/unicornscan/ Thanks! Responsible-Changed-From-To: freebsd-ports-bugs->niels Responsible-Changed-By: niels Responsible-Changed-When: Tue Dec 14 09:07:56 GMT 2004 Responsible-Changed-Why: Thanks for the submission ! I have tested the port and it looks fine except for a few minor bugs. I fixed them and would like to ask if you can test the port and let me know if it still works fine. A document describing the issues I fixed and a tarball containing the updated port can be found here: http://people.freebsd.org/~niels/ports/unicornscan/ Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=72752 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 09:49:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FA1716A4CE; Tue, 14 Dec 2004 09:49:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D07643D5C; Tue, 14 Dec 2004 09:49:35 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE9nZr4076139; Tue, 14 Dec 2004 09:49:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE9nZvZ076135; Tue, 14 Dec 2004 09:49:35 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 09:49:35 GMT From: Mark Linimon Message-Id: <200412140949.iBE9nZvZ076135@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org Subject: Re: ports/75039: OpenOffice 1.1.2 javaldx crashes at startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 09:49:35 -0000 Synopsis: OpenOffice 1.1.2 javaldx crashes at startup Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 14 09:49:24 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=75039 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 09:53:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF63216A4CE; Tue, 14 Dec 2004 09:53:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B51143D5D; Tue, 14 Dec 2004 09:53:13 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE9rDwH076368; Tue, 14 Dec 2004 09:53:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE9rD8e076364; Tue, 14 Dec 2004 09:53:13 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 09:53:13 GMT From: Mark Linimon Message-Id: <200412140953.iBE9rD8e076364@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/75038: [PATCH] editors/xemacs-devel-mule: update to new version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 09:53:13 -0000 Synopsis: [PATCH] editors/xemacs-devel-mule: update to new version Responsible-Changed-From-To: freebsd-ports-bugs->kiri Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 14 09:52:24 GMT 2004 Responsible-Changed-Why: kiri is still the maintainer, although IIRC someone else has requested to take it over? http://www.freebsd.org/cgi/query-pr.cgi?pr=75038 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 09:53:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C797C16A4D0; Tue, 14 Dec 2004 09:53:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A47BB43D5C; Tue, 14 Dec 2004 09:53:33 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBE9rXVw076440; Tue, 14 Dec 2004 09:53:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBE9rXOI076436; Tue, 14 Dec 2004 09:53:33 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 09:53:33 GMT From: Mark Linimon Message-Id: <200412140953.iBE9rXOI076436@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/75040: Patch port: multimedia/goggles fix install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 09:53:33 -0000 Synopsis: Patch port: multimedia/goggles fix install Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 14 09:53:26 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=75040 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 10:00:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 104FC16A4CF for ; Tue, 14 Dec 2004 10:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D446643D41 for ; Tue, 14 Dec 2004 10:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEA0k3R076631 for ; Tue, 14 Dec 2004 10:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEA0kZQ076615; Tue, 14 Dec 2004 10:00:46 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 10:00:46 GMT Resent-Message-Id: <200412141000.iBEA0kZQ076615@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, Markus Seifert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F32C16A4CE for ; Tue, 14 Dec 2004 09:56:28 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01AF743D1F for ; Tue, 14 Dec 2004 09:56:28 +0000 (GMT) (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 iBE9uRlH076332 for ; Tue, 14 Dec 2004 09:56:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBE9uRGt076331; Tue, 14 Dec 2004 09:56:27 GMT (envelope-from nobody) Message-Id: <200412140956.iBE9uRGt076331@www.freebsd.org> Date: Tue, 14 Dec 2004 09:56:27 GMT From: Markus Seifert To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75046: pear & pear2 cmds will fail if libaries are already loaded X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 10:00:47 -0000 >Number: 75046 >Category: ports >Synopsis: pear & pear2 cmds will fail if libaries are already loaded >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: Tue Dec 14 10:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Markus Seifert >Release: 5.3 >Organization: macnews.de >Environment: >Description: The pear and pear2 scripts will fail if 'prce.so' and/or 'xml.so' are already loaded. The Problem is in the patch for pearcmd (patch-scripts::pearcmd.php). No checking is done if the libaries are already loaded. >How-To-Repeat: >Fix: It should look something like this: if(!function_exists('preg_match')){ @dl('pcre.so'); } if(!function_exists('utf8_decode')){ @dl('xml.so'); } Maybe with some additional Errorhandling if the Libaries do not exist :) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 10:10:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36BC716A4CE for ; Tue, 14 Dec 2004 10:10:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8EFF43D45 for ; Tue, 14 Dec 2004 10:10:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEAACAD080970 for ; Tue, 14 Dec 2004 10:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEAACNR080969; Tue, 14 Dec 2004 10:10:12 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 10:10:12 GMT Resent-Message-Id: <200412141010.iBEAACNR080969@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 Middleton Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C01B116A4CE for ; Tue, 14 Dec 2004 10:03:56 +0000 (GMT) Received: from smaug.vex.net (smaug.vex.net [66.96.28.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BDFE43D53 for ; Tue, 14 Dec 2004 10:03:56 +0000 (GMT) (envelope-from root@xxvii.net) Received: from bee.xxvii.x (H140.C18.B96.tor.eicat.ca [66.96.18.140]) by smaug.vex.net (Postfix) with ESMTP id DEC4F27AD4; Tue, 14 Dec 2004 05:03:53 -0500 (EST) Received: by bee.xxvii.x (Postfix, from userid 0) id 91B80114B3; Tue, 14 Dec 2004 05:03:54 -0500 (EST) Message-Id: <20041214100354.91B80114B3@bee.xxvii.x> Date: Tue, 14 Dec 2004 05:03:54 -0500 (EST) From: Tim Middleton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: shelton@granch.ru Subject: ports/75047: [PATCH] graphics/showimg: update to 0.9.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 10:10:15 -0000 >Number: 75047 >Category: ports >Synopsis: [PATCH] graphics/showimg: update to 0.9.4 >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 Dec 14 10:10:12 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tim Middleton >Release: FreeBSD 5.3-RELEASE i386 >Organization: Vex.Net >Environment: System: FreeBSD bee.xxvii.x 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Mon Dec 6 21:58:53 EST >Description: - Update to 0.9.4 - Depends on kipi plugins (who wouldn't want them?) - Digicam options are gone Port maintainer (shelton@granch.ru) is cc'd. >How-To-Repeat: >Fix: --- showimg-0.9.4,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/showimg/Makefile,v retrieving revision 1.19 diff -c -u -r1.19 Makefile --- Makefile 29 Jul 2004 08:12:04 -0000 1.19 +++ Makefile 14 Dec 2004 10:01:13 -0000 @@ -7,7 +7,7 @@ # PORTNAME= showimg -PORTVERSION= 0.9.3 +PORTVERSION= 0.9.4 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= http://www.jalix.org/projects/showimg/download/${PORTVERSION}/ @@ -15,6 +15,8 @@ MAINTAINER= shelton@granch.ru COMMENT= A picture viewer designed to run under KDE 3.x +LIB_DEPENDS= kipi:${PORTSDIR}/graphics/libkipi + USE_BZIP2= yes USE_KDEBASE_VER= 3 USE_GMAKE= yes @@ -23,8 +25,6 @@ MAN1= showimg.1 -OPTIONS= DIGIKAM "Digikam plugins support" off - post-extract: @${TOUCH} ${WRKSRC}/config.h.in @@ -32,11 +32,4 @@ @${REINPLACE_CMD} -e 's|-O2||g' -e "s,-lpthread,${PTHREAD_LIBS},g" \ ${WRKSRC}/${CONFIGURE_SCRIPT} -.include - -.if defined(WITH_DIGIKAM) -LIB_DEPENDS+= digikam:${PORTSDIR}/graphics/digikam -CONFIGURE_ARGS+= --enable-digiKam-plugin -.endif - -.include +.include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/graphics/showimg/distinfo,v retrieving revision 1.10 diff -c -u -r1.10 distinfo --- distinfo 29 Jul 2004 08:05:07 -0000 1.10 +++ distinfo 14 Dec 2004 10:01:13 -0000 @@ -1,2 +1,2 @@ -MD5 (showimg-0.9.3.tar.bz2) = 8d9a579f929ea89f0a5ba1ec327acd70 -SIZE (showimg-0.9.3.tar.bz2) = 1393429 +MD5 (showimg-0.9.4.tar.bz2) = 40a8cc597a328b490806dba343d2e36d +SIZE (showimg-0.9.4.tar.bz2) = 1573010 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/graphics/showimg/pkg-plist,v retrieving revision 1.9 diff -c -u -r1.9 pkg-plist --- pkg-plist 29 Jul 2004 08:05:07 -0000 1.9 +++ pkg-plist 14 Dec 2004 10:01:13 -0000 @@ -1,4 +1,9 @@ bin/showimg +lib/kde3/libshowimgpart.la +lib/kde3/libshowimgpart.so +lib/libshowimgcore.la +lib/libshowimgcore.so +lib/libshowimgcore.so.0 share/applnk/Graphics/showimg.desktop share/apps/konqueror/servicemenus/konqshowimg.desktop share/apps/showimg/convert2png.pl @@ -61,6 +66,7 @@ share/apps/showimg/icons/hicolor/32x32/mimetypes/psd.png share/apps/showimg/icons/hicolor/48x48/mimetypes/psd.png share/apps/showimg/icons/hicolor/64x64/mimetypes/psd.png +share/apps/showimg/pics/No-Ones-Laughing-3.jpg share/apps/showimg/pics/bgxpm.png share/apps/showimg/pics/border.png share/apps/showimg/pics/gradient.png @@ -71,59 +77,10 @@ share/apps/showimg/pics/logo.png share/apps/showimg/showimgui.rc share/apps/showimg/tips -share/doc/HTML/da/showimg/but-back.png -share/doc/HTML/da/showimg/but-copy.png -share/doc/HTML/da/showimg/but-cut.png -share/doc/HTML/da/showimg/but-forward.png -share/doc/HTML/da/showimg/but-fullscreen.png -share/doc/HTML/da/showimg/but-go_up.png -share/doc/HTML/da/showimg/but-home.png -share/doc/HTML/da/showimg/but-horizontal_flip.png -share/doc/HTML/da/showimg/but-next_image.png -share/doc/HTML/da/showimg/but-original_size.png -share/doc/HTML/da/showimg/but-paste.png -share/doc/HTML/da/showimg/but-previous_image.png -share/doc/HTML/da/showimg/but-refresh.png -share/doc/HTML/da/showimg/but-rotate_left.png -share/doc/HTML/da/showimg/but-rotate_right.png -share/doc/HTML/da/showimg/but-slide_show.png -share/doc/HTML/da/showimg/but-stop.png -share/doc/HTML/da/showimg/but-toggle_thumbnails.png -share/doc/HTML/da/showimg/but-vertical_flip.png -share/doc/HTML/da/showimg/but-zoom_in.png -share/doc/HTML/da/showimg/but-zoom_out.png -share/doc/HTML/da/showimg/but-zoom_to_fit.png +share/apps/showimgpart/showimgpart.rc share/doc/HTML/da/showimg/common -share/doc/HTML/da/showimg/comparison.png share/doc/HTML/da/showimg/index.cache.bz2 share/doc/HTML/da/showimg/index.docbook -share/doc/HTML/da/showimg/main-window.png -share/doc/HTML/de/showimg/but-back.png -share/doc/HTML/de/showimg/but-copy.png -share/doc/HTML/de/showimg/but-cut.png -share/doc/HTML/de/showimg/but-forward.png -share/doc/HTML/de/showimg/but-fullscreen.png -share/doc/HTML/de/showimg/but-go_up.png -share/doc/HTML/de/showimg/but-home.png -share/doc/HTML/de/showimg/but-horizontal_flip.png -share/doc/HTML/de/showimg/but-next_image.png -share/doc/HTML/de/showimg/but-original_size.png -share/doc/HTML/de/showimg/but-paste.png -share/doc/HTML/de/showimg/but-previous_image.png -share/doc/HTML/de/showimg/but-refresh.png -share/doc/HTML/de/showimg/but-rotate_left.png -share/doc/HTML/de/showimg/but-rotate_right.png -share/doc/HTML/de/showimg/but-slide_show.png -share/doc/HTML/de/showimg/but-stop.png -share/doc/HTML/de/showimg/but-toggle_thumbnails.png -share/doc/HTML/de/showimg/but-vertical_flip.png -share/doc/HTML/de/showimg/but-zoom_in.png -share/doc/HTML/de/showimg/but-zoom_out.png -share/doc/HTML/de/showimg/but-zoom_to_fit.png -share/doc/HTML/de/showimg/comparison.png -share/doc/HTML/de/showimg/index.cache.bz2 -share/doc/HTML/de/showimg/index.docbook -share/doc/HTML/de/showimg/main-window.png share/doc/HTML/en/showimg/but-back.png share/doc/HTML/en/showimg/but-copy.png share/doc/HTML/en/showimg/but-cut.png @@ -131,178 +88,79 @@ share/doc/HTML/en/showimg/but-fullscreen.png share/doc/HTML/en/showimg/but-go_up.png share/doc/HTML/en/showimg/but-home.png +share/doc/HTML/en/showimg/but-horiz-flip.png share/doc/HTML/en/showimg/but-horizontal_flip.png +share/doc/HTML/en/showimg/but-next-image.png share/doc/HTML/en/showimg/but-next_image.png share/doc/HTML/en/showimg/but-original_size.png share/doc/HTML/en/showimg/but-paste.png +share/doc/HTML/en/showimg/but-prev-image.png share/doc/HTML/en/showimg/but-previous_image.png share/doc/HTML/en/showimg/but-refresh.png +share/doc/HTML/en/showimg/but-reload.png +share/doc/HTML/en/showimg/but-rotate-left.png +share/doc/HTML/en/showimg/but-rotate-right.png share/doc/HTML/en/showimg/but-rotate_left.png share/doc/HTML/en/showimg/but-rotate_right.png +share/doc/HTML/en/showimg/but-slide-show.png share/doc/HTML/en/showimg/but-slide_show.png +share/doc/HTML/en/showimg/but-stop-thumbs.png share/doc/HTML/en/showimg/but-stop.png +share/doc/HTML/en/showimg/but-toggle-thumbs.png share/doc/HTML/en/showimg/but-toggle_thumbnails.png +share/doc/HTML/en/showimg/but-vert-flip.png share/doc/HTML/en/showimg/but-vertical_flip.png +share/doc/HTML/en/showimg/but-zoom-fit-screen.png +share/doc/HTML/en/showimg/but-zoom-in.png +share/doc/HTML/en/showimg/but-zoom-original.png +share/doc/HTML/en/showimg/but-zoom-out.png share/doc/HTML/en/showimg/but-zoom_in.png share/doc/HTML/en/showimg/but-zoom_out.png share/doc/HTML/en/showimg/but-zoom_to_fit.png +share/doc/HTML/en/showimg/common share/doc/HTML/en/showimg/comparison.png share/doc/HTML/en/showimg/index.cache.bz2 share/doc/HTML/en/showimg/index.docbook share/doc/HTML/en/showimg/main-window.png -share/doc/HTML/es/showimg/but-back.png -share/doc/HTML/es/showimg/but-copy.png -share/doc/HTML/es/showimg/but-cut.png -share/doc/HTML/es/showimg/but-forward.png -share/doc/HTML/es/showimg/but-fullscreen.png -share/doc/HTML/es/showimg/but-go_up.png -share/doc/HTML/es/showimg/but-home.png -share/doc/HTML/es/showimg/but-horizontal_flip.png -share/doc/HTML/es/showimg/but-next_image.png -share/doc/HTML/es/showimg/but-original_size.png -share/doc/HTML/es/showimg/but-paste.png -share/doc/HTML/es/showimg/but-previous_image.png -share/doc/HTML/es/showimg/but-refresh.png -share/doc/HTML/es/showimg/but-rotate_left.png -share/doc/HTML/es/showimg/but-rotate_right.png -share/doc/HTML/es/showimg/but-slide_show.png -share/doc/HTML/es/showimg/but-stop.png -share/doc/HTML/es/showimg/but-toggle_thumbnails.png -share/doc/HTML/es/showimg/but-vertical_flip.png -share/doc/HTML/es/showimg/but-zoom_in.png -share/doc/HTML/es/showimg/but-zoom_out.png -share/doc/HTML/es/showimg/but-zoom_to_fit.png -share/doc/HTML/es/showimg/comparison.png +share/doc/HTML/es/showimg/common share/doc/HTML/es/showimg/index.cache.bz2 share/doc/HTML/es/showimg/index.docbook -share/doc/HTML/es/showimg/main-window.png -share/doc/HTML/et/showimg/but-back.png -share/doc/HTML/et/showimg/but-copy.png -share/doc/HTML/et/showimg/but-cut.png -share/doc/HTML/et/showimg/but-forward.png -share/doc/HTML/et/showimg/but-fullscreen.png -share/doc/HTML/et/showimg/but-go_up.png -share/doc/HTML/et/showimg/but-home.png -share/doc/HTML/et/showimg/but-horizontal_flip.png -share/doc/HTML/et/showimg/but-next_image.png -share/doc/HTML/et/showimg/but-original_size.png -share/doc/HTML/et/showimg/but-paste.png -share/doc/HTML/et/showimg/but-previous_image.png -share/doc/HTML/et/showimg/but-refresh.png -share/doc/HTML/et/showimg/but-rotate_left.png -share/doc/HTML/et/showimg/but-rotate_right.png -share/doc/HTML/et/showimg/but-slide_show.png -share/doc/HTML/et/showimg/but-stop.png -share/doc/HTML/et/showimg/but-toggle_thumbnails.png -share/doc/HTML/et/showimg/but-vertical_flip.png -share/doc/HTML/et/showimg/but-zoom_in.png -share/doc/HTML/et/showimg/but-zoom_out.png -share/doc/HTML/et/showimg/but-zoom_to_fit.png -share/doc/HTML/et/showimg/comparison.png +share/doc/HTML/et/showimg/common share/doc/HTML/et/showimg/index.cache.bz2 share/doc/HTML/et/showimg/index.docbook -share/doc/HTML/et/showimg/main-window.png -share/doc/HTML/fr/showimg/but-back.png -share/doc/HTML/fr/showimg/but-copy.png -share/doc/HTML/fr/showimg/but-cut.png -share/doc/HTML/fr/showimg/but-forward.png -share/doc/HTML/fr/showimg/but-fullscreen.png -share/doc/HTML/fr/showimg/but-go_up.png -share/doc/HTML/fr/showimg/but-home.png -share/doc/HTML/fr/showimg/but-horizontal_flip.png -share/doc/HTML/fr/showimg/but-next_image.png -share/doc/HTML/fr/showimg/but-original_size.png -share/doc/HTML/fr/showimg/but-paste.png -share/doc/HTML/fr/showimg/but-previous_image.png -share/doc/HTML/fr/showimg/but-refresh.png -share/doc/HTML/fr/showimg/but-rotate_left.png -share/doc/HTML/fr/showimg/but-rotate_right.png -share/doc/HTML/fr/showimg/but-slide_show.png -share/doc/HTML/fr/showimg/but-stop.png -share/doc/HTML/fr/showimg/but-toggle_thumbnails.png -share/doc/HTML/fr/showimg/but-vertical_flip.png -share/doc/HTML/fr/showimg/but-zoom_in.png -share/doc/HTML/fr/showimg/but-zoom_out.png -share/doc/HTML/fr/showimg/but-zoom_to_fit.png -share/doc/HTML/fr/showimg/comparison.png +share/doc/HTML/fr/showimg/common share/doc/HTML/fr/showimg/index.cache.bz2 share/doc/HTML/fr/showimg/index.docbook -share/doc/HTML/fr/showimg/main-window.png -share/doc/HTML/it/showimg/but-back.png -share/doc/HTML/it/showimg/but-copy.png -share/doc/HTML/it/showimg/but-cut.png -share/doc/HTML/it/showimg/but-forward.png -share/doc/HTML/it/showimg/but-fullscreen.png -share/doc/HTML/it/showimg/but-go_up.png -share/doc/HTML/it/showimg/but-home.png -share/doc/HTML/it/showimg/but-horizontal_flip.png -share/doc/HTML/it/showimg/but-next_image.png -share/doc/HTML/it/showimg/but-original_size.png -share/doc/HTML/it/showimg/but-paste.png -share/doc/HTML/it/showimg/but-previous_image.png -share/doc/HTML/it/showimg/but-refresh.png -share/doc/HTML/it/showimg/but-rotate_left.png -share/doc/HTML/it/showimg/but-rotate_right.png -share/doc/HTML/it/showimg/but-slide_show.png -share/doc/HTML/it/showimg/but-stop.png -share/doc/HTML/it/showimg/but-toggle_thumbnails.png -share/doc/HTML/it/showimg/but-vertical_flip.png -share/doc/HTML/it/showimg/but-zoom_in.png -share/doc/HTML/it/showimg/but-zoom_out.png -share/doc/HTML/it/showimg/but-zoom_to_fit.png -share/doc/HTML/it/showimg/comparison.png +share/doc/HTML/it/showimg/common share/doc/HTML/it/showimg/index.cache.bz2 share/doc/HTML/it/showimg/index.docbook -share/doc/HTML/it/showimg/main-window.png -share/doc/HTML/sv/showimg/but-back.png -share/doc/HTML/sv/showimg/but-copy.png -share/doc/HTML/sv/showimg/but-cut.png -share/doc/HTML/sv/showimg/but-forward.png -share/doc/HTML/sv/showimg/but-fullscreen.png -share/doc/HTML/sv/showimg/but-go_up.png -share/doc/HTML/sv/showimg/but-home.png -share/doc/HTML/sv/showimg/but-horizontal_flip.png -share/doc/HTML/sv/showimg/but-next_image.png -share/doc/HTML/sv/showimg/but-original_size.png -share/doc/HTML/sv/showimg/but-paste.png -share/doc/HTML/sv/showimg/but-previous_image.png -share/doc/HTML/sv/showimg/but-refresh.png -share/doc/HTML/sv/showimg/but-rotate_left.png -share/doc/HTML/sv/showimg/but-rotate_right.png -share/doc/HTML/sv/showimg/but-slide_show.png -share/doc/HTML/sv/showimg/but-stop.png -share/doc/HTML/sv/showimg/but-toggle_thumbnails.png -share/doc/HTML/sv/showimg/but-vertical_flip.png -share/doc/HTML/sv/showimg/but-zoom_in.png -share/doc/HTML/sv/showimg/but-zoom_out.png -share/doc/HTML/sv/showimg/but-zoom_to_fit.png -share/doc/HTML/sv/showimg/comparison.png +share/doc/HTML/pt/showimg/common +share/doc/HTML/pt/showimg/index.cache.bz2 +share/doc/HTML/pt/showimg/index.docbook +share/doc/HTML/sv/showimg/common share/doc/HTML/sv/showimg/index.cache.bz2 share/doc/HTML/sv/showimg/index.docbook -share/doc/HTML/sv/showimg/main-window.png -share/doc/HTML/de/showimg/common -share/doc/HTML/en/showimg/common -share/doc/HTML/es/showimg/common -share/doc/HTML/et/showimg/common -share/doc/HTML/fr/showimg/common -share/doc/HTML/it/showimg/common -share/doc/HTML/sv/showimg/common share/icons/hicolor/32x32/apps/showimg.png share/icons/hicolor/48x48/apps/showimg.png share/icons/hicolor/64x64/apps/showimg.png +share/locale/br/LC_MESSAGES/showimg.mo share/locale/cs/LC_MESSAGES/showimg.mo +share/locale/cy/LC_MESSAGES/showimg.mo share/locale/da/LC_MESSAGES/showimg.mo share/locale/de/LC_MESSAGES/showimg.mo share/locale/en_GB/LC_MESSAGES/showimg.mo share/locale/es/LC_MESSAGES/showimg.mo share/locale/et/LC_MESSAGES/showimg.mo share/locale/fr/LC_MESSAGES/showimg.mo +share/locale/ga/LC_MESSAGES/showimg.mo +share/locale/hu/LC_MESSAGES/showimg.mo share/locale/it/LC_MESSAGES/showimg.mo share/locale/ja/LC_MESSAGES/showimg.mo share/locale/nl/LC_MESSAGES/showimg.mo share/locale/pl/LC_MESSAGES/showimg.mo share/locale/pt/LC_MESSAGES/showimg.mo share/locale/pt_BR/LC_MESSAGES/showimg.mo +share/locale/ro/LC_MESSAGES/showimg.mo share/locale/ru/LC_MESSAGES/showimg.mo share/locale/sk/LC_MESSAGES/showimg.mo share/locale/sr/LC_MESSAGES/showimg.mo @@ -312,6 +170,7 @@ share/locale/zh_CN/LC_MESSAGES/showimg.mo share/mimelnk/image/x-psd.desktop share/mimelnk/image/x-sia.desktop +share/services/showimgpart.desktop @unexec rmdir %D/share/mimelnk/image 2>/dev/null || true @unexec rmdir %D/share/mimelnk 2>/dev/null || true @unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true @@ -326,18 +185,18 @@ @unexec rmdir %D/share/doc/HTML/en 2>/dev/null || true @dirrm share/doc/HTML/da/showimg @unexec rmdir %D/share/doc/HTML/da 2>/dev/null || true -@dirrm share/doc/HTML/de/showimg -@unexec rmdir %D/share/doc/HTML/de 2>/dev/null || true @dirrm share/doc/HTML/es/showimg -@unexec rmdir %D/share/doc/HTML/es>/dev/null || true +@unexec rmdir %D/share/doc/HTML/es 2>/dev/null || true @dirrm share/doc/HTML/et/showimg -@unexec rmdir %D/share/doc/HTML/et>/dev/null || true +@unexec rmdir %D/share/doc/HTML/et 2>/dev/null || true @dirrm share/doc/HTML/fr/showimg -@unexec rmdir %D/share/doc/HTML/fr>/dev/null || true +@unexec rmdir %D/share/doc/HTML/fr 2>/dev/null || true @dirrm share/doc/HTML/it/showimg -@unexec rmdir %D/share/doc/HTML/it>/dev/null || true +@unexec rmdir %D/share/doc/HTML/it 2>/dev/null || true +@dirrm share/doc/HTML/pt/showimg +@unexec rmdir %D/share/doc/HTML/pt 2>/dev/null || true @dirrm share/doc/HTML/sv/showimg -@unexec rmdir %D/share/doc/HTML/sv>/dev/null || true +@unexec rmdir %D/share/doc/HTML/sv 2>/dev/null || true @unexec rmdir %D/share/doc/HTML 2>/dev/null || true @dirrm share/apps/showimg/pics @dirrm share/apps/showimg/icons/hicolor/64x64/mimetypes @@ -364,6 +223,8 @@ @dirrm share/apps/showimg @unexec rmdir %D/share/apps/konqueror/servicemenus 2>/dev/null || true @unexec rmdir %D/share/apps/konqueror 2>/dev/null || true +@unexec rmdir %D/share/apps/showimgpart 2>/dev/null || true @unexec rmdir %D/share/apps 2>/dev/null || true @unexec rmdir %D/share/applnk/Graphics 2>/dev/null || true + @unexec rmdir %D/share/applnk 2>/dev/null || true --- showimg-0.9.4,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 10:44:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80D8B16A4CE; Tue, 14 Dec 2004 10:44:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9D543D5D; Tue, 14 Dec 2004 10:44:20 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEAiK0q085635; Tue, 14 Dec 2004 10:44:20 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEAiJ9U085631; Tue, 14 Dec 2004 10:44:19 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 10:44:19 GMT From: Volker Stolz Message-Id: <200412141044.iBEAiJ9U085631@freefall.freebsd.org> To: cartola@openit.com.br, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 10:44:20 -0000 Synopsis: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures State-Changed-From-To: open->suspended State-Changed-By: vs State-Changed-When: Tue Dec 14 10:43:10 GMT 2004 State-Changed-Why: Suspend this one until ports/71846 graphics/libpano12 ports/71847 graphics/vigra ports/71848 graphics/linux-panorama-tools are imported. http://www.freebsd.org/cgi/query-pr.cgi?pr=71849 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 10:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 945A116A4CF for ; Tue, 14 Dec 2004 10:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75BDD43D31 for ; Tue, 14 Dec 2004 10:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEAoNA6085802 for ; Tue, 14 Dec 2004 10:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEAoNWv085798; Tue, 14 Dec 2004 10:50:23 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 10:50:23 GMT Resent-Message-Id: <200412141050.iBEAoNWv085798@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, Marius van Witzenburg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED62D16A4CE for ; Tue, 14 Dec 2004 10:47:01 +0000 (GMT) Received: from megaworld.concepts.nl (megaworld.concepts.nl [213.197.11.24]) by mx1.FreeBSD.org (Postfix) with SMTP id 1E88443D39 for ; Tue, 14 Dec 2004 10:47:01 +0000 (GMT) (envelope-from marius@megaworld.concepts.nl) Received: (qmail 55817 invoked by uid 1001); 14 Dec 2004 10:46:59 -0000 Message-Id: <20041214104659.55816.qmail@megaworld.concepts.nl> Date: 14 Dec 2004 10:46:59 -0000 From: Marius van Witzenburg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75050: X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marius van Witzenburg List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 10:50:23 -0000 >Number: 75050 >Category: ports >Synopsis: >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 10:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Marius van Witzenburg >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: New port: ventrilo. see http://www.ventrilo.com/ for more info. # 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: # # ventrilo # ventrilo/Makefile # ventrilo/pkg-descr # ventrilo/distinfo # echo c - ventrilo mkdir -p ventrilo > /dev/null 2>&1 echo x - ventrilo/Makefile sed 's/^X//' >ventrilo/Makefile << 'END-of-ventrilo/Makefile' X# Ports collection makefile for: ventrilo X# Date created: Mon Dec 13, 2004 X# Whom: Marius van Witzenburg (info@wokkel.com) X# X# $FreeBSD$ X# X XPORTNAME= ventrilo XPORTVERSION= 2.2.0 XPORTREVISION= 1 XCATEGORIES= net XMASTER_SITES= http://www.wokkel.com/ventrilo/ XDISTNAME= ventrilo_srv-${PORTVERSION}-FreeBSD-i386 XEXTRACT_SUFX= .tar.gz X XMAINTAINER= info@wokkel.com XCOMMENT= Scalable Voice Communication Software X XPLIST_FILES= ventrilo/LICENSE \ X ventrilo/ventrilo_srv \ X ventrilo/ventrilo_srv.htm \ X ventrilo/ventrilo_srv.ini \ X ventrilo/ventrilo_status XPLIST_DIRS= ventrilo X XNO_BUILD= yes XNO_WRKSUBDIR= yes X Xdo-extract: X ${MKDIR} ${WRKDIR}/${DISTNAME} X ${TAR} xfvz ${DISTDIR}/${DISTFILES} \ X -C ${WRKDIR}/${DISTNAME} X Xdo-install: X ${MKDIR} ${PREFIX}/${PORTNAME} X ${CP} ${WRKDIR}/${DISTNAME}/* ${PREFIX}/${PORTNAME} X X.include END-of-ventrilo/Makefile echo x - ventrilo/pkg-descr sed 's/^X//' >ventrilo/pkg-descr << 'END-of-ventrilo/pkg-descr' XVentrilo is a scalable Voice over IP (VoIP) communications system Xthat solves a lot of the problems associated with network latency, Xpacket loss, uptime and administration. X XVentrilo can be used for home / personal applications like Xtalking to friends and family, or playing organized online games Xwhere Voice Comm can make them more exciting and productive. XIt can also be used in an enterprise environment Xas a productivity tool for conducting long distance group discussions. X XWWW: http://www.ventrilo.com/ X X- Marius van Witzenburg END-of-ventrilo/pkg-descr echo x - ventrilo/distinfo sed 's/^X//' >ventrilo/distinfo << 'END-of-ventrilo/distinfo' XMD5 (ventrilo_srv-2.2.0-FreeBSD-i386.tar.gz) = a0331d9a828e53db87d4055cd7ade32f XSIZE (ventrilo_srv-2.2.0-FreeBSD-i386.tar.gz) = 109886 END-of-ventrilo/distinfo exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 11:26:05 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D20616A4CE; Tue, 14 Dec 2004 11:26:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A67D43D2D; Tue, 14 Dec 2004 11:26:05 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEBQ5ZI091250; Tue, 14 Dec 2004 11:26:05 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEBQ5gv091246; Tue, 14 Dec 2004 11:26:05 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 11:26:05 GMT From: Volker Stolz Message-Id: <200412141126.iBEBQ5gv091246@freefall.freebsd.org> To: cartola@openit.com.br, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71846: New port: graphics/libpano12 - program to mount panorama pictures - also a dependency to hugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 11:26:05 -0000 Synopsis: New port: graphics/libpano12 - program to mount panorama pictures - also a dependency to hugin State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Dec 14 10:51:32 GMT 2004 State-Changed-Why: - Please use portlint, it will tell you that you must use tabs, not spaces - Please use MASTER_SITES=${MASTER_SITE_SOURCEFORGE} / MASTER_SITE_SUBDIR=panotools - USE_BZIP=yes since that distfile is smaller - LDCONFIG_DIRS already contains the right value! - You could use %%DOCSDIR%% in pkg-plist - Why don't you use the included "configure"? - Hardcoded CC/CFLAGS in your custom makefile - -fPIC doesn't look right - trivial upgrade to recent version 2.7.0.8 - Please use bsd.java.mk v2.0, i.e. USE_JAVA=yes JAVA_VERSION=1.3+ - Missing file/dependency? PTDialogs.c:35:21: sys_x11.h: No such file or directory Looks like a typo for sys_X11. Why do you only want to build the ANSI-version anyway? Please review my modifications at http://www.foldr.org/~stolz/FreeBSD/libpano12.Makefile You might want to surgically replace parts of Makefile.* with 'patch' to limit what will actually be built instead of your hand-crafted Makefile. Better yet: find out why it's falling over at all -- is there a way to disable X11 instead of setting -D__ANSI__? Cheers, Volker http://www.freebsd.org/cgi/query-pr.cgi?pr=71846 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 11:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F03E616A4CE; Tue, 14 Dec 2004 11:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8EE643D4C; Tue, 14 Dec 2004 11:40:25 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEBeP6k093080; Tue, 14 Dec 2004 11:40:25 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEBePmi093076; Tue, 14 Dec 2004 11:40:25 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 11:40:25 GMT From: Volker Stolz Message-Id: <200412141140.iBEBePmi093076@freefall.freebsd.org> To: cartola@openit.com.br, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71847: New port: graphics/vigra - another program to mount panoramic images - also a dependency of hugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 11:40:26 -0000 Synopsis: New port: graphics/vigra - another program to mount panoramic images - also a dependency of hugin State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Dec 14 11:38:57 GMT 2004 State-Changed-Why: - let's pretend there never was a "script"-subdirectory, shall we? :) DISTFILES= ${PORTNAME}${PORTVERSION}${EXTRACT_SUFX} WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION} - Use ${DOCSDIR} / %%DOCSDIR%% - Please update to 1.3.0 I think this one is ready for commit once this is done. http://www.freebsd.org/cgi/query-pr.cgi?pr=71847 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 11:50:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1531B16A4CE for ; Tue, 14 Dec 2004 11:50:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE53743D5D for ; Tue, 14 Dec 2004 11:50:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEBoSxW093326 for ; Tue, 14 Dec 2004 11:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEBoSE2093324; Tue, 14 Dec 2004 11:50:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 11:50:28 GMT Resent-Message-Id: <200412141150.iBEBoSE2093324@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, Gavin Mu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 197CE16A4CE for ; Tue, 14 Dec 2004 11:49:30 +0000 (GMT) Received: from smtp.tju.edu.cn (smtp.tju.edu.cn [202.113.15.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AE2143D41 for ; Tue, 14 Dec 2004 11:49:27 +0000 (GMT) (envelope-from gavin@freebsdchina.org) Received: from localhost (localhost [127.0.0.1]) by smtp.tju.edu.cn (CA-JinChen KSG) with SMTP id 0EC2A2242C5; Tue, 14 Dec 2004 19:49:14 +0800 (CST) Received: from mscenter.tju.edu.cn (mscenter.tju.edu.cn [202.113.13.35]) by smtp.tju.edu.cn (CA-JinChen KSG) with SMTP id 628412242BE; Tue, 14 Dec 2004 19:49:12 +0800 (CST) Received: by mscenter.tju.edu.cn (sSMTP sendmail emulation); Tue, 14 Dec 2004 19:47:59 +0800 Message-Id: <20041214114912.628412242BE@smtp.tju.edu.cn> Date: Tue, 14 Dec 2004 19:47:59 +0800 From: Gavin Mu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Gavin Mu Subject: ports/75052: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gavin Mu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 11:50:29 -0000 >Number: 75052 >Category: ports >Synopsis: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 >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 Dec 14 11:50:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Gavin Mu >Release: FreeBSD 5.3-STABLE i386 >Organization: Tianjin University, China >Environment: System: FreeBSD mscenter.tju.edu.cn 5.3-STABLE FreeBSD 5.3-STABLE #2: Sun Nov 21 11:47:44 CST 2004 root@mscenter.tju.edu.cn:/usr/obj/usr/src/sys/gavin-CNPROJ i386 >Description: new feature: display IP location in StatusBar "pkg-message" has been added to tell howto. python script: getArticle modify python's version to avoid python 2.3 depends. some bug fix. >How-To-Repeat: N/A >Fix: --- qterm.diff begins here --- diff -ruN qterm.orig/Makefile qterm/Makefile --- qterm.orig/Makefile Fri Dec 10 10:19:08 2004 +++ qterm/Makefile Fri Dec 10 10:49:54 2004 @@ -6,11 +6,11 @@ # PORTNAME= qterm -PORTVERSION= 0.4.0.p1 +PORTVERSION= 0.4.0.p2 CATEGORIES= chinese MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-0.4.0pre1 +DISTNAME= ${PORTNAME}-0.4.0pre2 MAINTAINER= gavin@FreeBSDChina.org COMMENT= QTerm is a BBS client in Unix @@ -22,16 +22,10 @@ --x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include .if !defined(WITHOUT_PYTHON) -USE_PYTHON= -2.3 +USE_PYTHON= 2.3+ CONFIGURE_ARGS+= --with-pythondir=${LOCALBASE} .endif -.include - -.if ${OSVERSION} >= 600000 && ${ARCH} != "i386" -BROKEN= "Does not compile on FreeBSD >= 6.x on !i386" -.endif - pre-everything:: .if !defined(WITHOUT_PYTHON) @${ECHO_MSG} "Define WITHOUT_PYTHON to disable Python scripts support." @@ -41,4 +35,7 @@ @${REINPLACE_CMD} -e 's,-lssl,-lssl -lcrypto,' \ ${WRKSRC}/configure -.include +post-install: + @${CAT} ${PKGMESSAGE} + +.include diff -ruN qterm.orig/distinfo qterm/distinfo --- qterm.orig/distinfo Fri Dec 10 10:19:08 2004 +++ qterm/distinfo Fri Dec 10 10:27:51 2004 @@ -1,2 +1,2 @@ -MD5 (qterm-0.4.0pre1.tar.gz) = dbd80ec692e4603f7775ffbdb1d52bff -SIZE (qterm-0.4.0pre1.tar.gz) = 1077778 +MD5 (qterm-0.4.0pre2.tar.gz) = 379a5932ee282bedcfa70d3f16e3e91e +SIZE (qterm-0.4.0pre2.tar.gz) = 895907 diff -ruN qterm.orig/files/patch-qterm_qtermiplocation.cpp qterm/files/patch-qterm_qtermiplocation.cpp --- qterm.orig/files/patch-qterm_qtermiplocation.cpp Thu Jan 1 08:00:00 1970 +++ qterm/files/patch-qterm_qtermiplocation.cpp Tue Dec 14 18:47:48 2004 @@ -0,0 +1,18 @@ +--- qterm/qtermiplocation.cpp.orig Tue Dec 14 18:45:37 2004 ++++ qterm/qtermiplocation.cpp Tue Dec 14 18:46:21 2004 +@@ -79,13 +79,13 @@ + if( fseek( fp, (long)offset, SEEK_SET ) ==-1 ) + { + qDebug( " readLineFrom error 1 " ); +- ret_str = QCString(NULL); ++ ret_str = QCString(); + return -1; + } + if( fgets( (char *) str, 512, fp ) == NULL ) + { + qDebug( " readLineFrom error 2 " ); +- ret_str = QCString(NULL); ++ ret_str = QCString(); + return -1; + } + ret_str = str; diff -ruN qterm.orig/pkg-message qterm/pkg-message --- qterm.orig/pkg-message Thu Jan 1 08:00:00 1970 +++ qterm/pkg-message Fri Dec 10 11:12:00 2004 @@ -0,0 +1,6 @@ +************************************************************************* + You can't modify the SITE definition until setting +QTerm's config file privilege in your ~/.qterm directory to 0644 at least + To display IP location when using QTerm +you must get file "QQWry.dat" and put it into your ~/.qterm directory +************************************************************************* --- qterm.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 14:25:49 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5442816A4CE; Tue, 14 Dec 2004 14:25:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F3E243D46; Tue, 14 Dec 2004 14:25:49 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEEPnbK014174; Tue, 14 Dec 2004 14:25:49 GMT (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEEPjBx014170; Tue, 14 Dec 2004 14:25:45 GMT (envelope-from simon) Date: Tue, 14 Dec 2004 14:25:45 GMT From: "Simon L. Nielsen" Message-Id: <200412141425.iBEEPjBx014170@freefall.freebsd.org> To: dryice@liu.com.cn, simon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74039: [update]irc/erc: add dependency and byte-compile more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 14:25:49 -0000 Synopsis: [update]irc/erc: add dependency and byte-compile more State-Changed-From-To: feedback->open State-Changed-By: simon State-Changed-When: Tue Dec 14 14:25:26 GMT 2004 State-Changed-Why: Feedback received. http://www.freebsd.org/cgi/query-pr.cgi?pr=74039 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 14:34:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2329C16A4CE; Tue, 14 Dec 2004 14:34:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F37E243D1F; Tue, 14 Dec 2004 14:34:12 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEEYCcM015349; Tue, 14 Dec 2004 14:34:12 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEEYCAa015345; Tue, 14 Dec 2004 14:34:12 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 14:34:12 GMT From: Volker Stolz Message-Id: <200412141434.iBEEYCAa015345@freefall.freebsd.org> To: sw@gegenunendlich.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71759: [NEW PORT] graphics/py-pydot: A Python interface to the Graphviz Dot language X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 14:34:13 -0000 Synopsis: [NEW PORT] graphics/py-pydot: A Python interface to the Graphviz Dot language State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Tue Dec 14 14:34:00 GMT 2004 State-Changed-Why: Port added, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71759 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 14:39:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B57B16A4CE; Tue, 14 Dec 2004 14:39:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6763E43D46; Tue, 14 Dec 2004 14:39:00 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEEd0tN015481; Tue, 14 Dec 2004 14:39:00 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEEd07Z015477; Tue, 14 Dec 2004 14:39:00 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 14:39:00 GMT From: Volker Stolz Message-Id: <200412141439.iBEEd07Z015477@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/75047: [PATCH] graphics/showimg: update to 0.9.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 14:39:00 -0000 Synopsis: [PATCH] graphics/showimg: update to 0.9.4 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: vs Responsible-Changed-When: Tue Dec 14 14:38:27 GMT 2004 Responsible-Changed-Why: Over to GNOME-team http://www.freebsd.org/cgi/query-pr.cgi?pr=75047 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 14:50:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E60F16A4CE for ; Tue, 14 Dec 2004 14:50:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1587643D5C for ; Tue, 14 Dec 2004 14:50:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEEoVAs016102 for ; Tue, 14 Dec 2004 14:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEEoVdh016101; Tue, 14 Dec 2004 14:50:31 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 14:50:31 GMT Message-Id: <200412141450.iBEEoVdh016101@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/74983: plist fix for news/p5_gateway X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 14:50:32 -0000 The following reply was made to PR ports/74983; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, croyle@gelemna.org Cc: Subject: Re: ports/74983: plist fix for news/p5_gateway Date: Tue, 14 Dec 2004 15:46:51 +0100 Hm, at least with perl 5.6.1 on 4.X %D/%%SITE_PERL%%/News doesn't exist anyway... Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 14:50:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B71316A4DB for ; Tue, 14 Dec 2004 14:50:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0520043D1D for ; Tue, 14 Dec 2004 14:50:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEEoYEp016115 for ; Tue, 14 Dec 2004 14:50:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEEoYbD016114; Tue, 14 Dec 2004 14:50:34 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 14:50:34 GMT Message-Id: <200412141450.iBEEoYbD016114@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stefan Midjich Subject: Re: ports/68064: Firefox crashes with BadShmSeg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stefan Midjich List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 14:50:35 -0000 The following reply was made to PR ports/68064; it has been noted by GNATS. From: Stefan Midjich To: freebsd-gnats-submit@FreeBSD.org, bohra@cs.rutgers.edu Cc: Subject: Re: ports/68064: Firefox crashes with BadShmSeg Date: Tue, 14 Dec 2004 15:43:18 +0100 Hi I'm getting the same error using firefox-1.0_4,1 from ports on FreeBSD 4.10 using my IBM Thinkpad R40. Actually i've noticed that firefox is extremly unstable on freebsd as it crashes almost all the time when i try to use it for day to day browsing. It gives me no problems when i develop(thank god) but heavy sites like aftonbladet.se or other large news sites might make it crash. I can always crash it with a number of events and the most recent i've found is the following. Go to http://mff-fans.com and try to "view image" on the Swebase logo to the right. -- Med vänliga hälsningar Stefan Midjich, Swebase AB Tel: 042-20 15 00 Fax: 042-20 15 03 E-post: stefan@swebase.com Webb: http://swebase.com From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:03:51 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B746916A4CE; Tue, 14 Dec 2004 15:03:51 +0000 (GMT) Received: from tomts36-srv.bellnexxia.net (tomts36.bellnexxia.net [209.226.175.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id C692F43D2F; Tue, 14 Dec 2004 15:03:50 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix1.dyndns.org ([69.159.142.11]) by tomts36-srv.bellnexxia.netESMTP <20041214150348.PZFR1694.tomts36-srv.bellnexxia.net@quenix1.dyndns.org>; Tue, 14 Dec 2004 10:03:48 -0500 Received: from localhost.dyndns.org ([127.0.0.1] helo=quenix1.dyndns.org) by quenix1.dyndns.org with esmtp (Exim 4.43 (FreeBSD)) id 1CeEFV-0002qR-PT; Tue, 14 Dec 2004 10:06:01 -0500 From: Serge Gagnon X-operating-system: FreeBSD 4.10-STABLE i386 X-location: Quebec, Qc, Canada; lat 46.820 lon -71.230 X-gpg-fingerprint: E489 112A 3564 2F80 3B06 16C9 A026 A3FA 633D 1726 X-ggp-public-key: http://quenix1.dyndns.org/users/serge/GnuPG.html X-gpg-key-ID: 0x633D1726 Serge Gagnon X-Face: 22hG-S23Un!fw[I:kZ_K7I+f60+dloy!5F:r?K6cz<'"^"PLy1GDD@PRPqG%TAIgFsdu0~6PSZaVqf+|36?En?&l+XNZnp:f-%c#&a=)Ho7qey#PYD+X~>X'A`4nv*{d+t1b%fk>X1nJ?R}&en;\;kLrH In-Reply-To: Message from Thierry Thomas <20041214064852.GA12508@graf.pompo.net> Date: Tue, 14 Dec 2004 10:06:01 -0500 Sender: serge@quenix1.dyndns.org Message-Id: <20041214150348.PZFR1694.tomts36-srv.bellnexxia.net@quenix1.dyndns.org> cc: Thierry Thomas cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75000: Patch port: audio/wsoundprefs unbroke port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:03:51 -0000 >>>>> On Tue, 14 Dec 2004, >>>>> "Thierry" == Thierry Thomas wrote: Thierry> Le Mar 14 d€c 04 € 0:33:30 +0100, Serge Gagnon Thierry> €crivait€: +> > >>>> On Mon, 13 Dec 2004, +> > >>>> "Kirill" == Kirill Ponomarew wrote: Kirill> Synopsis: Patch port: audio/wsoundprefs unbroke port Kirill> State-Changed-From-To: open->feedback Kirill> State-Changed-By: krion Kirill> State-Changed-When: Mon Dec 13 10:36:35 GMT 2004 Kirill> State-Changed-Why: Kirill> Please submit patches relative to files/ directory. Kirill> http://www.freebsd.org/cgi/query-pr.cgi?pr=75000 +> Sorry, but I'm not sure about what exactly you want (I dont speak +> english) +> You want that I change the name of the file ex: +> patch-src::main.c ? Thierry> Hello Serge, Thierry> I don't speak a better english than yours ;-) , but I'm sure that Kirill Thierry> prefers a `diff -urN audio/wsoundprefs.orig audio/wsoundprefs'. Ahhh! I think that your english is better than the Kirill's one ;) Thank you! diff -urN audio/wsoundprefs.orig/Makefile audio/wsoundprefs/Makefile --- audio/wsoundprefs.orig/Makefile Tue Dec 14 10:00:36 2004 +++ audio/wsoundprefs/Makefile Sun Dec 12 15:54:06 2004 @@ -15,8 +15,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A utility for configuring sounds to play for Window Maker events -BROKEN= "Does not build with new version of windowmaker" - BUILD_DEPENDS= wmaker:${PORTSDIR}/x11-wm/windowmaker LIB_DEPENDS= PropList.2:${PORTSDIR}/devel/libPropList \ wsound.1:${PORTSDIR}/audio/wsoundserver diff -urN audio/wsoundprefs.orig/files/patch-Imakefile audio/wsoundprefs/files/patch-Imakefile --- audio/wsoundprefs.orig/files/patch-Imakefile Wed Dec 31 19:00:00 1969 +++ audio/wsoundprefs/files/patch-Imakefile Sun Dec 12 17:28:34 2004 @@ -0,0 +1,36 @@ +--- src/Imakefile.orig Mon Oct 18 04:35:58 1999 ++++ src/Imakefile Sun Dec 12 16:48:09 2004 +@@ -5,9 +5,9 @@ + + ICONS = WSoundPrefs.xpm WSoundPrefs.tiff + +-CC = gcc ++XCOMM CC = gcc + +-BINDIR = /Apps/WSoundPrefs.app ++BINDIR = /GNUstep/Apps/WSoundPrefs.app + + XCOMM EFENCELIB = -lefence + EFENCELIB = +@@ -18,9 +18,9 @@ + WRASTERCFLAGS = `get-wraster-flags --cflags` + WRASTERLFLAGS = `get-wraster-flags --lflags` + WRASTERLIBS = `get-wraster-flags --libs` +-WINGSLIBS = -lWINGs -lPropList +- +-STD_INCLUDES = $(WRASTERCFLAGS) $(WSOUNDCFLAGS) ++WINGSLIBS = -lWINGs -lXft -L/$(LOCALBASE)/lib -lPropList ++ ++STD_INCLUDES = $(WRASTERCFLAGS) -I${LOCALBASE}/include -I${X11BASE}/include -I${X11BASE}/include/WINGs + DEPLIBS = $(DEPXLIB) + + LOCAL_LIBRARIES = $(XLIB) $(WINGSLIBS) $(WSOUNDLFLAGS) $(WSOUNDLIBS) $(WRASTERLFLAGS) $(WRASTERLIBS) $(EFENCELIB) +@@ -30,7 +30,7 @@ + SRCS = PLFunctions.c SoundEvents.c SoundPaths.c SystemInfo.c WSoundPrefs.c main.c + OBJS = PLFunctions.o SoundEvents.o SoundPaths.o SystemInfo.o WSoundPrefs.o main.o + +-ComplexProgramTarget(WSoundPrefs) ++ComplexProgramTargetNoMan(WSoundPrefs) + + InstallMultiple($(ICONS),$(BINDIR)) + diff -urN audio/wsoundprefs.orig/files/patch-WSoundPrefs.c audio/wsoundprefs/files/patch-WSoundPrefs.c --- audio/wsoundprefs.orig/files/patch-WSoundPrefs.c Wed Dec 31 19:00:00 1969 +++ audio/wsoundprefs/files/patch-WSoundPrefs.c Sun Dec 12 17:25:01 2004 @@ -0,0 +1,11 @@ +--- src/WSoundPrefs.c.orig Sun Dec 12 17:17:37 2004 ++++ src/WSoundPrefs.c Sun Dec 12 17:24:29 2004 +@@ -407,7 +407,7 @@ + WMResizeWidget(panel->copyrightL, 448, 20); + WMMoveWidget(panel->copyrightL, 8, 178); + WMSetLabelTextAlignment(panel->copyrightL, WACenter); +- font = WMCreateNormalFont(scr, "-*-helvetica-medium-r-normal-*-10-*-*-*-*-*-*-*"); ++ font = WMCreateFont(scr, "-*-helvetica-medium-r-normal-*-10-*-*-*-*-*-*-*"); + if (font) + WMSetLabelText(panel->copyrightL, "Copyright \xa9 1999 The Az\xe5rg-r\xfbh"); + else { diff -urN audio/wsoundprefs.orig/files/patch-ab audio/wsoundprefs/files/patch-ab --- audio/wsoundprefs.orig/files/patch-ab Tue Dec 14 10:00:36 2004 +++ audio/wsoundprefs/files/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,36 +0,0 @@ ---- src/Imakefile.orig Mon Oct 18 17:35:58 1999 -+++ src/Imakefile Sun Dec 10 17:09:01 2000 -@@ -5,9 +5,9 @@ - - ICONS = WSoundPrefs.xpm WSoundPrefs.tiff - --CC = gcc -+XCOMM CC = gcc - --BINDIR = /Apps/WSoundPrefs.app -+BINDIR = /GNUstep/Apps/WSoundPrefs.app - - XCOMM EFENCELIB = -lefence - EFENCELIB = -@@ -18,9 +18,9 @@ - WRASTERCFLAGS = `get-wraster-flags --cflags` - WRASTERLFLAGS = `get-wraster-flags --lflags` - WRASTERLIBS = `get-wraster-flags --libs` --WINGSLIBS = -lWINGs -lPropList -- --STD_INCLUDES = $(WRASTERCFLAGS) $(WSOUNDCFLAGS) -+WINGSLIBS = -lWINGs -L/$(LOCALBASE)/lib -lPropList -+ -+STD_INCLUDES = $(WRASTERCFLAGS) -I${LOCALBASE}/include -I${X11BASE}/include -I${X11BASE}/include/WINGs - DEPLIBS = $(DEPXLIB) - - LOCAL_LIBRARIES = $(XLIB) $(WINGSLIBS) $(WSOUNDLFLAGS) $(WSOUNDLIBS) $(WRASTERLFLAGS) $(WRASTERLIBS) $(EFENCELIB) -@@ -30,7 +30,7 @@ - SRCS = PLFunctions.c SoundEvents.c SoundPaths.c SystemInfo.c WSoundPrefs.c main.c - OBJS = PLFunctions.o SoundEvents.o SoundPaths.o SystemInfo.o WSoundPrefs.o main.o - --ComplexProgramTarget(WSoundPrefs) -+ComplexProgramTargetNoMan(WSoundPrefs) - - InstallMultiple($(ICONS),$(BINDIR)) - diff -urN audio/wsoundprefs.orig/files/patch-main.c audio/wsoundprefs/files/patch-main.c --- audio/wsoundprefs.orig/files/patch-main.c Wed Dec 31 19:00:00 1969 +++ audio/wsoundprefs/files/patch-main.c Sun Dec 12 17:28:12 2004 @@ -0,0 +1,11 @@ +--- src/main.c.orig Sun Dec 12 16:46:36 2004 ++++ src/main.c Sun Dec 12 16:46:57 2004 +@@ -109,7 +109,7 @@ + wwarning(_("could not load image file %s:%s"), path, RMessageForError(RErrorCode)); + else { + icon = WMCreatePixmapFromRImage(scr, tmp, 0); +- RDestroyImage(tmp); ++ RReleaseImage(tmp); + if (icon) { + WMSetApplicationIconImage(scr, icon); + WMReleasePixmap(icon); From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:05:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6951616A4CF; Tue, 14 Dec 2004 15:05:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B7F443D39; Tue, 14 Dec 2004 15:05:36 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEF5aAn020603; Tue, 14 Dec 2004 15:05:36 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEF5ZZ7020599; Tue, 14 Dec 2004 15:05:35 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 15:05:35 GMT From: Volker Stolz Message-Id: <200412141505.iBEF5ZZ7020599@freefall.freebsd.org> To: Hilko.Meyer@gmx.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:05:36 -0000 Synopsis: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Dec 14 15:05:23 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75034 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:10:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C66A16A4CE for ; Tue, 14 Dec 2004 15:10:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D797443D2D for ; Tue, 14 Dec 2004 15:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFAMZ8021050 for ; Tue, 14 Dec 2004 15:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFAM5h021049; Tue, 14 Dec 2004 15:10:22 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 15:10:22 GMT Message-Id: <200412141510.iBEFAM5h021049@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:10:23 -0000 The following reply was made to PR ports/75034; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, Hilko.Meyer@gmx.de, bogorodskiy@inbox.ru Cc: Subject: Re: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 Date: Tue, 14 Dec 2004 16:04:43 +0100 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:30:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30BB116A4CE for ; Tue, 14 Dec 2004 15:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13AC543D53 for ; Tue, 14 Dec 2004 15:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFUNuN021615 for ; Tue, 14 Dec 2004 15:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFUNot021614; Tue, 14 Dec 2004 15:30:23 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 15:30:23 GMT Resent-Message-Id: <200412141530.iBEFUNot021614@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, Matt Mills Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B91216A4CE for ; Tue, 14 Dec 2004 15:21:23 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA85E43D54 for ; Tue, 14 Dec 2004 15:21:22 +0000 (GMT) (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 iBEFLM27007618 for ; Tue, 14 Dec 2004 15:21:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBEFLMLP007617; Tue, 14 Dec 2004 15:21:22 GMT (envelope-from nobody) Message-Id: <200412141521.iBEFLMLP007617@www.freebsd.org> Date: Tue, 14 Dec 2004 15:21:22 GMT From: Matt Mills To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75054: Take maintainership of ports/irc/nethirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:30:24 -0000 >Number: 75054 >Category: ports >Synopsis: Take maintainership of ports/irc/nethirc >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 Dec 14 15:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matt Mills >Release: 5.3-STABLE >Organization: >Environment: FreeBSD titan 5.3-STABLE FreeBSD 5.3-STABLE #6: Thu Dec 2 11:24:11 GMT 2004 matt@titan:/usr/src/sys/i386/compile/titan i386 >Description: I'll take this port. It seems to be unmaintained, way out of date, and now has a devel version; I will work on this shortly. >How-To-Repeat: N/A >Fix: http://www.btinternet.com/~matt_mills/fbsd_diffs/Makefile.diff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:49:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1009016A4CE; Tue, 14 Dec 2004 15:49:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C97AF43D45; Tue, 14 Dec 2004 15:49:36 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFnaVk023411; Tue, 14 Dec 2004 15:49:36 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFnaXc023407; Tue, 14 Dec 2004 15:49:36 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 15:49:36 GMT From: Volker Stolz Message-Id: <200412141549.iBEFnaXc023407@freefall.freebsd.org> To: x@vex.net, vs@FreeBSD.org, gnome@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75047: [PATCH] graphics/showimg: update to 0.9.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:49:37 -0000 Synopsis: [PATCH] graphics/showimg: update to 0.9.4 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Dec 14 15:48:56 GMT 2004 State-Changed-Why: Waiting for maintainer feedback Responsible-Changed-From-To: gnome->freebsd-ports-bugs Responsible-Changed-By: vs Responsible-Changed-When: Tue Dec 14 15:48:56 GMT 2004 Responsible-Changed-Why: Looks like I edited the wrong PR, so reset to ports@ http://www.freebsd.org/cgi/query-pr.cgi?pr=75047 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:50:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9559A16A4CE for ; Tue, 14 Dec 2004 15:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A38343D5A for ; Tue, 14 Dec 2004 15:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFoReo023531 for ; Tue, 14 Dec 2004 15:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFoRJu023530; Tue, 14 Dec 2004 15:50:27 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 15:50:27 GMT Message-Id: <200412141550.iBEFoRJu023530@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Clive Lin Subject: Re: ports/75052: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Clive Lin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:50:27 -0000 The following reply was made to PR ports/75052; it has been noted by GNATS. From: Clive Lin To: Gavin Mu Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/75052: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 Date: Tue, 14 Dec 2004 23:42:15 +0800 On Tue, Dec 14, 2004 at 07:47:59PM +0800, Gavin Mu wrote: > +QTerm's config file privilege in your ~/.qterm directory to 0644 at least Shouldn't this be 0755 ? Other part looks good. -- Clive Tong-I Lin | http://tongi.org | PGP KeyID: A008C03E From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:50:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07D2016A4CE for ; Tue, 14 Dec 2004 15:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C858343D5C for ; Tue, 14 Dec 2004 15:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFoRXH023546 for ; Tue, 14 Dec 2004 15:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFoRFT023545; Tue, 14 Dec 2004 15:50:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 15:50:27 GMT Resent-Message-Id: <200412141550.iBEFoRFT023545@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4529E16A4CE for ; Tue, 14 Dec 2004 15:44:55 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1091843D1F for ; Tue, 14 Dec 2004 15:44:55 +0000 (GMT) (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 iBEFis01026503 for ; Tue, 14 Dec 2004 15: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 iBEFisRx026502; Tue, 14 Dec 2004 15:44:54 GMT (envelope-from nobody) Message-Id: <200412141544.iBEFisRx026502@www.freebsd.org> Date: Tue, 14 Dec 2004 15:44:54 GMT From: Ed Schouten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75058: emulators/hfsutils - You need TCL/TK? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:50:28 -0000 >Number: 75058 >Category: ports >Synopsis: emulators/hfsutils - You need TCL/TK? >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: Tue Dec 14 15:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: 5.3-STABLE >Organization: >Environment: FreeBSD flierp.fxq.nl 5.3-STABLE FreeBSD 5.3-STABLE #1: Sat Dec 4 10:47:21 CET 2004 root@flierp.fxq.nl:/usr/obj/usr/src/sys/FLIERP i386 >Description: When looking in emulators/hfsutils/Makefile, you see: LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84 CONFIGURE_ARGS= --with-tcl --with-tk So you can't choose to *not* use TCL and TK. Quote from the website: "Use of the Tcl and Tk interfaces is optional; you may build only the command-line tools if desired." >How-To-Repeat: cd /usr/ports/emulators/hfsutils make install clean >Fix: Make --with-tcl and --with-tk as an option? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:50:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C20416A4CE; Tue, 14 Dec 2004 15:50:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 197A043D73; Tue, 14 Dec 2004 15:50:31 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFoUvB023589; Tue, 14 Dec 2004 15:50:30 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFoULm023582; Tue, 14 Dec 2004 15:50:30 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 15:50:30 GMT From: Volker Stolz Message-Id: <200412141550.iBEFoULm023582@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/75045: www/firefox still crashing upon print X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:50:31 -0000 Synopsis: www/firefox still crashing upon print Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: vs Responsible-Changed-When: Tue Dec 14 15:49:54 GMT 2004 Responsible-Changed-Why: Over to GNOME-team http://www.freebsd.org/cgi/query-pr.cgi?pr=75045 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:54:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50FC816A4CE; Tue, 14 Dec 2004 15:54:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2899243D58; Tue, 14 Dec 2004 15:54:27 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFsRM2023875; Tue, 14 Dec 2004 15:54:27 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFsQUO023871; Tue, 14 Dec 2004 15:54:26 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 15:54:26 GMT From: Volker Stolz Message-Id: <200412141554.iBEFsQUO023871@freefall.freebsd.org> To: bacon@smithers.neuro.mcw.edu, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/74904: VTK success on AMD64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:54:27 -0000 Synopsis: VTK success on AMD64 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Dec 14 15:54:01 GMT 2004 State-Changed-Why: Forwarded PR to maintainer Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Tue Dec 14 15:54:01 GMT 2004 Responsible-Changed-Why: I'll track this. http://www.freebsd.org/cgi/query-pr.cgi?pr=74904 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 15:55:01 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C386D16A4CF; Tue, 14 Dec 2004 15:55:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BB0643D4C; Tue, 14 Dec 2004 15:55:01 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEFt1jO023940; Tue, 14 Dec 2004 15:55:01 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEFt1av023936; Tue, 14 Dec 2004 15:55:01 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 15:55:01 GMT From: Volker Stolz Message-Id: <200412141555.iBEFt1av023936@freefall.freebsd.org> To: fmysh@iijmio-mail.jp, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/75024: math/vtk-{java,python,tcl}: fix for building problems under FreeBSD 5.X X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 15:55:01 -0000 Synopsis: math/vtk-{java,python,tcl}: fix for building problems under FreeBSD 5.X State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Dec 14 15:54:36 GMT 2004 State-Changed-Why: Forwarded PR to maintainer Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Tue Dec 14 15:54:36 GMT 2004 Responsible-Changed-Why: I'll track this http://www.freebsd.org/cgi/query-pr.cgi?pr=75024 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 16:07:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D980116A4CE; Tue, 14 Dec 2004 16:07:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B272D43D2D; Tue, 14 Dec 2004 16:07:20 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEG7KdU028315; Tue, 14 Dec 2004 16:07:20 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEG7KFT028311; Tue, 14 Dec 2004 16:07:20 GMT (envelope-from vs) Date: Tue, 14 Dec 2004 16:07:20 GMT From: Volker Stolz Message-Id: <200412141607.iBEG7KFT028311@freefall.freebsd.org> To: charles@idealso.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/73972: [patch] sysutils/rdiff-backup: exception raised on EDEADLK X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 16:07:21 -0000 Synopsis: [patch] sysutils/rdiff-backup: exception raised on EDEADLK State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Tue Dec 14 16:07:09 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=73972 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 16:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28AD516A4CF for ; Tue, 14 Dec 2004 16:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D956E43D58 for ; Tue, 14 Dec 2004 16:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEGeOwZ030486 for ; Tue, 14 Dec 2004 16:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEGeORE030485; Tue, 14 Dec 2004 16:40:24 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 16:40:24 GMT Resent-Message-Id: <200412141640.iBEGeORE030485@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 516F016A4CE for ; Tue, 14 Dec 2004 16:30:31 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 215CE43D45 for ; Tue, 14 Dec 2004 16:30:30 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBEGURZO092065 for ; Tue, 14 Dec 2004 14:30:28 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBEGUPst092064; Tue, 14 Dec 2004 14:30:25 -0200 (BRST) Message-Id: <200412141630.iBEGUPst092064@digitalsign.com> Date: Tue, 14 Dec 2004 14:30:25 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75059: Update port: sysutils/pear-Cache_Lite to 1.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 16:40:25 -0000 >Number: 75059 >Category: ports >Synopsis: Update port: sysutils/pear-Cache_Lite to 1.4.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 Dec 14 16:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: + update sysutils/pear-Cache_Lite to 1.4.0 >How-To-Repeat: >Fix: diff -ruN pear-Cache_Lite.orig/Makefile pear-Cache_Lite/Makefile --- pear-Cache_Lite.orig/Makefile Tue Dec 14 10:36:54 2004 +++ pear-Cache_Lite/Makefile Tue Dec 14 10:38:11 2004 @@ -6,8 +6,9 @@ # PORTNAME= Cache_Lite -PORTVERSION= 1.3.1 +PORTVERSION= 1.4.0 CATEGORIES= sysutils www pear +DISTNAME= ${PORTNAME}-${PORTVERSION}beta1 MAINTAINER= antonio@php.net COMMENT= PEAR fast and safe little cache system diff -ruN pear-Cache_Lite.orig/distinfo pear-Cache_Lite/distinfo --- pear-Cache_Lite.orig/distinfo Tue Dec 14 10:36:54 2004 +++ pear-Cache_Lite/distinfo Tue Dec 14 10:38:19 2004 @@ -1,2 +1,2 @@ -MD5 (PEAR/Cache_Lite-1.3.1.tgz) = 678b9ac6267fb6b18b1b1c7a53316fbd -SIZE (PEAR/Cache_Lite-1.3.1.tgz) = 20921 +MD5 (PEAR/Cache_Lite-1.4.0beta1.tgz) = e0001e7b46b47fb8fa8d083a2fe02b5b +SIZE (PEAR/Cache_Lite-1.4.0beta1.tgz) = 20009 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 16:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AA8216A4CE for ; Tue, 14 Dec 2004 16:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DAC743D53 for ; Tue, 14 Dec 2004 16:40:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEGePoH030544 for ; Tue, 14 Dec 2004 16:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEGePas030542; Tue, 14 Dec 2004 16:40:25 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 16:40:25 GMT Resent-Message-Id: <200412141640.iBEGePas030542@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 Matuska Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 850AE16A4CE for ; Tue, 14 Dec 2004 16:38:47 +0000 (GMT) Received: from mail.vx.sk (mail.vx.sk [81.0.229.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D7343D53 for ; Tue, 14 Dec 2004 16:38:47 +0000 (GMT) (envelope-from martin@tradex.sk) Received: from localhost (mail [81.0.229.34]) by mail.vx.sk (Postfix) with ESMTP id 7BF4B54D9 for ; Tue, 14 Dec 2004 17:38:45 +0100 (CET) Received: from mail.vx.sk ([81.0.229.34]) by localhost (mail.vx.sk [127.0.0.34]) (amavisd-new, port 10024) with LMTP id 50311-06 for ; Tue, 14 Dec 2004 17:38:42 +0100 (CET) Received: from tradex.sk (tradex.sk [81.0.229.33]) by mail.vx.sk (Postfix) with SMTP id F24F254D1 for ; Tue, 14 Dec 2004 17:38:41 +0100 (CET) Received: by tradex.sk (sSMTP sendmail emulation); Tue, 14 Dec 2004 17:38:41 +0100 Message-Id: <20041214163841.F24F254D1@mail.vx.sk> Date: Tue, 14 Dec 2004 17:38:41 +0100 From: "Martin Matuska" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75060: [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Martin Matuska List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 16:40:25 -0000 >Number: 75060 >Category: ports >Synopsis: [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 >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 Dec 14 16:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD 4.10-RELEASE-p2 >Description: update of net/p5-RPC-XML from 0.53 to 0.54 request for maintainership takeover, current maintainer inactive for 18 months >How-To-Repeat: >Fix: diff -bur p5-RPC-XML.orig/Makefile p5-RPC-XML/Makefile --- p5-RPC-XML.orig/Makefile Tue Dec 14 17:29:06 2004 +++ p5-RPC-XML/Makefile Tue Dec 14 17:30:23 2004 @@ -6,7 +6,7 @@ # PORTNAME= RPC-XML -PORTVERSION= 0.53 +PORTVERSION= 0.54 PORTREVISION= 1 CATEGORIES= net www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} diff -bur p5-RPC-XML.orig/distinfo p5-RPC-XML/distinfo --- p5-RPC-XML.orig/distinfo Tue Dec 14 17:29:06 2004 +++ p5-RPC-XML/distinfo Tue Dec 14 17:31:15 2004 @@ -1,2 +1,2 @@ -MD5 (RPC-XML-0.53.tar.gz) = aca56b9abe71f52acf7e046f407f0b42 -SIZE (RPC-XML-0.53.tar.gz) = 111557 +MD5 (RPC-XML-0.54.tar.gz) = 54d98d6d39806e51cb7e6c118b34ed50 +SIZE (RPC-XML-0.54.tar.gz) = 114482 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 17:10:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2199516A4CE for ; Tue, 14 Dec 2004 17:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD84543D31 for ; Tue, 14 Dec 2004 17:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEHASOa035296 for ; Tue, 14 Dec 2004 17:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEHASbs035294; Tue, 14 Dec 2004 17:10:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 17:10:28 GMT Resent-Message-Id: <200412141710.iBEHASbs035294@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 Haro Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE9FD16A4CE for ; Tue, 14 Dec 2004 17:04:55 +0000 (GMT) Received: from burrito.bitsurf.net (dcn235-229.dcn.davis.ca.us [168.150.235.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FC3943D1F for ; Tue, 14 Dec 2004 17:04:55 +0000 (GMT) (envelope-from mharo@bitsurf.net) Received: from burrito.bitsurf.net (localhost [127.0.0.1]) by burrito.bitsurf.net (8.13.1/8.13.1) with ESMTP id iBEH8O82010163 for ; Tue, 14 Dec 2004 09:08:24 -0800 (PST) (envelope-from mharo@burrito.bitsurf.net) Received: (from mharo@localhost) by burrito.bitsurf.net (8.13.1/8.13.1/Submit) id iBEH8Ot3010162; Tue, 14 Dec 2004 09:08:24 -0800 (PST) (envelope-from mharo) Message-Id: <200412141708.iBEH8Ot3010162@burrito.bitsurf.net> Date: Tue, 14 Dec 2004 09:08:24 -0800 (PST) From: Michael Haro To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75061: nagios-plugins uses wrong ps arguments on FreBSD 5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Haro List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 17:10:29 -0000 >Number: 75061 >Category: ports >Synopsis: nagios-plugins uses wrong ps arguments on FreBSD 5.3 >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 17:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Haro >Release: FreeBSD 5.3-RELEASE-p1 i386 >Organization: >Environment: >Description: check_procs appears to be using the wrong ps command. >From make configure... checking for ps... /bin/ps checking for ps syntax... /bin/ps -weo 'stat uid ppid vsz rss pcpu comm args' This impacts process reporting: # ps -ax|wc -l 132 # /usr/local/libexec/nagios/check_procs PROCS OK: 11 processes # ps | wc -l 13 >How-To-Repeat: cd /usr/ports/net-mgmt/nagios-plugins make configure # ident Makefile Makefile: $FreeBSD: ports/net-mgmt/nagios-plugins/Makefile,v 1.36 2004/12/04 17:23:31 arved Exp $ >Fix: Something in configure, but I'm not sure how to change it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 17:30:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EBF116A4CE for ; Tue, 14 Dec 2004 17:30:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5B7D43D2F for ; Tue, 14 Dec 2004 17:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEHUSja036020 for ; Tue, 14 Dec 2004 17:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEHUSN7036013; Tue, 14 Dec 2004 17:30:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 17:30:28 GMT Resent-Message-Id: <200412141730.iBEHUSN7036013@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, "J.R. Oldroyd" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5015716A4CE for ; Tue, 14 Dec 2004 17:27:10 +0000 (GMT) Received: from smtp.vzavenue.net (smtp.vzavenue.net [66.171.59.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78AA243D46 for ; Tue, 14 Dec 2004 17:27:09 +0000 (GMT) (envelope-from jr@opal.com) Received: from linwhf.opal.com (126.79.171.66.subscriber.vzavenue.net [66.171.79.126]) by smtp.vzavenue.net (MOS 3.4.3-CR) with ESMTP id BNI20968; Tue, 14 Dec 2004 12:17:21 -0500 (EST) Received: from linwhf.opal.com (localhost [127.0.0.1]) by linwhf.opal.com (8.13.1/8.13.1) with ESMTP id iBEHHLQ0016834 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Tue, 14 Dec 2004 12:17:21 -0500 (EST) (envelope-from jr@linwhf.opal.com) Received: (from root@localhost) by linwhf.opal.com (8.13.1/8.13.1/Submit) id iBEHHLtF016833; Tue, 14 Dec 2004 12:17:21 -0500 (EST) (envelope-from jr) Message-Id: <200412141717.iBEHHLtF016833@linwhf.opal.com> Date: Tue, 14 Dec 2004 12:17:21 -0500 (EST) From: "J.R. Oldroyd" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75062: update port: net/boinc-client - fixes for FreeBSD 4.X and for 64-bit archs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "J.R. Oldroyd" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 17:30:29 -0000 >Number: 75062 >Category: ports >Synopsis: update port: net/boinc-client - fixes for FreeBSD 4.X and for 64-bit archs >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 Dec 14 17:30:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: J.R. Oldroyd >Release: FreeBSD 6.0-CURRENT i386 >Organization: >Environment: System: FreeBSD linwhf.opal.com 6.0-CURRENT FreeBSD 6.0-CURRENT #67: Fri Oct 8 14:11:54 EDT 2004 jr@linwhf.opal.com:/usr/src-current/sys/i386/compile/LINWHF i386 >Description: Update of boinc-client port to address issues with reentrancy problems on FreeBSD 4.x (malloc() called recursively) and also to address differences in rc.d files on 4.X. Update also fixes compilation problems on 64-bit architectures. Files added to port: files/boinc.sh-4.x files/extra-patch-api::boinc_api.C files/patch-client::gui_rpc_server.C files/patch-client::net_xfer.C >How-To-Repeat: >Fix: diff -ruN /usr/ports/net/boinc-client/Makefile boinc-client/Makefile --- /usr/ports/net/boinc-client/Makefile Thu Oct 21 09:05:46 2004 +++ boinc-client/Makefile Tue Dec 14 11:55:48 2004 @@ -7,6 +7,7 @@ PORTNAME= boinc-client PORTVERSION= 4.13 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://boinc.berkeley.edu/source/nightly/ DISTNAME= boinc_public-cvs-2004-10-14 @@ -25,7 +26,7 @@ MAN1= boinc-client.1 -FIND_BOINC_BINARY=(cd ${WRKDIR}/boinc_public/client; make -V CLIENT_BIN_FILENAME)) +FIND_BOINC_BINARY=(cd ${WRKDIR}/boinc_public/client; make -V CLIENT_BIN_FILENAME) BOINC_USER= boinc BOINC_GROUP= nobody @@ -34,8 +35,8 @@ .include -.if ${ARCH} != "i386" -BROKEN= Does not compile on 64-bit architectures +.if ${OSVERSION} < 500000 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-api::boinc_api.C .endif post-patch: @@ -61,17 +62,28 @@ -e "s:%%BOINC_GROUP%%:${BOINC_GROUP}:g" \ < ${FILESDIR}/boinc-client.1 > ${WRKDIR}/boinc-client.1; \ ${SED} -e "s:%%BOINC_BINARY%%:$$BBIN:g" \ + -e "s:%%BOINC_DATADIR%%:${PREFIX}/boinc:g" \ + -e "s:%%BOINC_HOME%%:${BOINC_HOME}:g" \ + -e "s:%%BOINC_USER%%:${BOINC_USER}:g" \ + -e "s:%%BOINC_GROUP%%:${BOINC_GROUP}:g" \ + < ${PKGDIR}/pkg-install > ${WRKDIR}/pkg-install +.if ${OSVERSION} >= 500000 + BBIN=`${FIND_BOINC_BINARY}`; \ + ${SED} -e "s:%%BOINC_BINARY%%:$$BBIN:g" \ -e "s:%%BOINC_DATADIR%%:${BOINC_DATADIR}:g" \ -e "s:%%BOINC_HOME%%:${BOINC_HOME}:g" \ -e "s:%%BOINC_USER%%:${BOINC_USER}:g" \ -e "s:%%BOINC_GROUP%%:${BOINC_GROUP}:g" \ < ${FILESDIR}/boinc.sh > ${WRKDIR}/boinc.sh +.else + BBIN=`${FIND_BOINC_BINARY}`; \ ${SED} -e "s:%%BOINC_BINARY%%:$$BBIN:g" \ - -e "s:%%BOINC_DATADIR%%:${PREFIX}/boinc:g" \ + -e "s:%%BOINC_DATADIR%%:${BOINC_DATADIR}:g" \ -e "s:%%BOINC_HOME%%:${BOINC_HOME}:g" \ -e "s:%%BOINC_USER%%:${BOINC_USER}:g" \ -e "s:%%BOINC_GROUP%%:${BOINC_GROUP}:g" \ - < ${PKGDIR}/pkg-install > ${WRKDIR}/pkg-install + < ${FILESDIR}/boinc.sh-4.x > ${WRKDIR}/boinc.sh +.endif do-install: ${INSTALL_SCRIPT} ${WRKDIR}/boinc-client ${PREFIX}/bin @@ -90,7 +102,7 @@ ${MKDIR} ${PREFIX}/boinc/projects ${MKDIR} ${PREFIX}/etc/rc.d ${INSTALL_SCRIPT} ${WRKDIR}/boinc.sh ${PREFIX}/etc/rc.d - ${CAT} pkg-message + ${CAT} ${PKGMESSAGE} post-install: ${REINPLACE_CMD} \ diff -ruN /usr/ports/net/boinc-client/files/boinc.sh-4.x boinc-client/files/boinc.sh-4.x --- /usr/ports/net/boinc-client/files/boinc.sh-4.x Wed Dec 31 19:00:00 1969 +++ boinc-client/files/boinc.sh-4.x Thu Dec 9 10:50:23 2004 @@ -0,0 +1,61 @@ +#!/bin/sh +# +# $FreeBSD: ports/net/boinc-client/files/boinc.sh,v 1.1 2004/10/16 19:29:30 pav Exp $ +# +# Start or stop BOINC +# + +. /usr/local/etc/rc.subr + +name="boinc" +rcvar=`set_rcvar` + +boinc_user=%%BOINC_USER%% +boinc_home=%%BOINC_HOME%% +program_file=%%BOINC_BINARY%% +program_path=%%BOINC_DATADIR%%/client/${program_file} + +[ -z "$boinc_enable" ] && boinc_enable="NO" + +load_rc_config $name + +case "$1" in +start) + if checkyesno boinc_enable + then + if [ ! -x ${program_path} ] + then + logger -sp ${syslog_facility} -t ${program_file} \ + "unable to start: ${program_path} is missing." + exit 72 + fi + if ps axo ucomm | egrep ${program_file}; then + logger -sp ${syslog_facility} -t ${program_file} \ + "unable to start: ${program_file} is already running." + exit 72 + fi + echo -n "BOINC " + idprio 31 su - ${boinc_user} -c "${program_path} >/dev/null &" + fi + ;; + +stop) + program=`expr ${program_file} : '^\(................\).*$'` + killall ${program} 2> /dev/null + ;; + +restart) + $0 stop + $0 start + ;; + +status) + ps auxww | egrep ${program_file} | egrep -v "($0|egrep)" + ;; + +*) + echo "usage: ${name} {start|stop|restart|status}" >&2 + exit 64 + ;; +esac + diff -ruN /usr/ports/net/boinc-client/files/extra-patch-api::boinc_api.C boinc-client/files/extra-patch-api::boinc_api.C --- /usr/ports/net/boinc-client/files/extra-patch-api::boinc_api.C Wed Dec 31 19:00:00 1969 +++ boinc-client/files/extra-patch-api::boinc_api.C Thu Dec 9 10:24:14 2004 @@ -0,0 +1,11 @@ +--- api/boinc_api.C.orig Sun Sep 5 19:28:46 2004 ++++ api/boinc_api.C Thu Dec 9 10:22:30 2004 +@@ -116,7 +116,7 @@ + options.handle_trickle_ups = true; + options.handle_trickle_downs = true; + options.handle_process_control = true; +- options.send_status_msgs = true; ++ options.send_status_msgs = false; + options.direct_process_action = true; + return boinc_init_options(options); + } diff -ruN /usr/ports/net/boinc-client/files/patch-client::gui_rpc_server.C boinc-client/files/patch-client::gui_rpc_server.C --- /usr/ports/net/boinc-client/files/patch-client::gui_rpc_server.C Wed Dec 31 19:00:00 1969 +++ boinc-client/files/patch-client::gui_rpc_server.C Thu Dec 2 21:08:31 2004 @@ -0,0 +1,17 @@ +--- client/gui_rpc_server.C.orig Mon Sep 27 15:07:29 2004 ++++ client/gui_rpc_server.C Thu Dec 2 20:59:58 2004 +@@ -47,12 +47,10 @@ + + #if defined(_WIN32) + typedef int socklen_t; +-#elif defined ( __APPLE__) ++#elif defined(__APPLE__) + typedef int32_t socklen_t; +-#elif !GETSOCKOPT_SOCKLEN_T +-#ifndef socklen_t ++#elif !defined(GETSOCKOPT_SOCKLEN_T) && !defined(_SOCKLEN_T_DECLARED) && !defined(socklen_t) + typedef size_t socklen_t; +-#endif + #endif + + static void boinc_close_socket(int sock) { diff -ruN /usr/ports/net/boinc-client/files/patch-client::net_xfer.C boinc-client/files/patch-client::net_xfer.C --- /usr/ports/net/boinc-client/files/patch-client::net_xfer.C Wed Dec 31 19:00:00 1969 +++ boinc-client/files/patch-client::net_xfer.C Thu Dec 2 21:08:37 2004 @@ -0,0 +1,17 @@ +--- client/net_xfer.C.orig Mon Sep 27 15:07:30 2004 ++++ client/net_xfer.C Thu Dec 2 21:00:11 2004 +@@ -78,12 +78,10 @@ + + #if defined(_WIN32) + typedef int socklen_t; +-#elif defined ( __APPLE__) ++#elif defined(__APPLE__) + typedef int32_t socklen_t; +-#elif !GETSOCKOPT_SOCKLEN_T +-#ifndef socklen_t ++#elif !defined(GETSOCKOPT_SOCKLEN_T) && !defined(_SOCKLEN_T_DECLARED) && !defined(socklen_t) + typedef size_t socklen_t; +-#endif + #endif + + using std::vector; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 17:40:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7615D16A4CE for ; Tue, 14 Dec 2004 17:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46CBE43D5C for ; Tue, 14 Dec 2004 17:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEHeS12037072 for ; Tue, 14 Dec 2004 17:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEHeS4S037071; Tue, 14 Dec 2004 17:40:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 17:40:28 GMT Resent-Message-Id: <200412141740.iBEHeS4S037071@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6E9A16A4CE for ; Tue, 14 Dec 2004 17:31:54 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id C81E343D58 for ; Tue, 14 Dec 2004 17:31:53 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBEHVpZO092244 for ; Tue, 14 Dec 2004 15:31:51 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBEHVnhm092243; Tue, 14 Dec 2004 15:31:49 -0200 (BRST) Message-Id: <200412141731.iBEHVnhm092243@digitalsign.com> Date: Tue, 14 Dec 2004 15:31:49 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75063: Update port: devel/pear-PEAR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 17:40:28 -0000 >Number: 75063 >Category: ports >Synopsis: Update port: devel/pear-PEAR >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 Dec 14 17:40:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: + fix patch-scripts::pearcmd.php >How-To-Repeat: >Fix: diff -ruN pear-PEAR.orig/Makefile pear-PEAR/Makefile --- pear-PEAR.orig/Makefile Tue Dec 14 14:44:14 2004 +++ pear-PEAR/Makefile Tue Dec 14 14:52:51 2004 @@ -7,7 +7,7 @@ PORTNAME= PEAR PORTVERSION= 1.3.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel www pear MAINTAINER= antonio@php.net diff -ruN pear-PEAR.orig/files/patch-scripts::pearcmd.php pear-PEAR/files/patch-scripts::pearcmd.php --- pear-PEAR.orig/files/patch-scripts::pearcmd.php Tue Dec 14 14:44:14 2004 +++ pear-PEAR/files/patch-scripts::pearcmd.php Tue Dec 14 14:56:55 2004 @@ -1,16 +1,20 @@ ---- scripts/pearcmd.php.orig Thu Oct 28 14:37:56 2004 -+++ scripts/pearcmd.php Thu Nov 11 11:21:39 2004 +--- scripts/pearcmd.php.orig Wed Oct 27 02:58:21 2004 ++++ scripts/pearcmd.php Tue Dec 14 14:56:46 2004 @@ -1,3 +1,4 @@ +#!@php_bin@ -q -dsafe_mode=0 -doutput_buffering=1 Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:10:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB54E16A4CE; Tue, 14 Dec 2004 18:10:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 819B543D5F; Tue, 14 Dec 2004 18:10:56 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEIAuRp042014; Tue, 14 Dec 2004 18:10:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEIAuMs042010; Tue, 14 Dec 2004 18:10:56 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 18:10:56 GMT From: Mark Linimon Message-Id: <200412141810.iBEIAuMs042010@freefall.freebsd.org> To: m.seifert@macnews.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75046: pear & pear2 cmds will fail if libaries are already loaded X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 18:10:56 -0000 Synopsis: pear & pear2 cmds will fail if libaries are already loaded State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Tue Dec 14 18:10:33 GMT 2004 State-Changed-Why: To which port(s) does this PR apply? http://www.freebsd.org/cgi/query-pr.cgi?pr=75046 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:20:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A39616A4CE for ; Tue, 14 Dec 2004 18:20:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14ACA43D53 for ; Tue, 14 Dec 2004 18:20:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEIKUPU042252 for ; Tue, 14 Dec 2004 18:20:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEIKUNi042251; Tue, 14 Dec 2004 18:20:30 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 18:20:30 GMT Message-Id: <200412141820.iBEIKUNi042251@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Roman Bogorodskiy Subject: Re: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Tue, 14 Dec 2004 18:20:31 -0000 The following reply was made to PR ports/75034; it has been noted by GNATS. From: Roman Bogorodskiy To: Volker Stolz Cc: freebsd-gnats-submit@freebsd.org, Hilko.Meyer@gmx.de Subject: Re: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 Date: Tue, 14 Dec 2004 21:17:39 +0300 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Volker wrote: > Dear maintainer, please review the proposed patch! Oh, finally I broke something. Approved, thanks Hilko! -Roman Bogorodskiy --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iQCVAwUBQb8uQ4B0WzgdqspGAQJb7wP/TRRLxn8qRDiqhZAR/GCxhgnNuOa6SUau CwsSq5x2893ZIkTlfCAhep7sZUMCTq44QlKeJIr9/czR8o/2apMQ0rIM3c8eeiFY c8N72OghL1d1jAAvHUGA0/qmRdkiLxhxTnFUtj9t6uv+89C74h8tdR+Nqw6qGx7c X9HIpoNjAzA= =ZXvQ -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:28:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42E2E16A4CE; Tue, 14 Dec 2004 18:28:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B0443D5D; Tue, 14 Dec 2004 18:28:19 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEISIjP042446; Tue, 14 Dec 2004 18:28:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEISIn4042442; Tue, 14 Dec 2004 18:28:18 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 18:28:18 GMT From: Mark Linimon Message-Id: <200412141828.iBEISIn4042442@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, simon@FreeBSD.org Subject: Re: ports/65793: SEGV in isakmpd, esp when associating with W2K ipsec client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 18:28:19 -0000 Synopsis: SEGV in isakmpd, esp when associating with W2K ipsec client Responsible-Changed-From-To: freebsd-ports-bugs->simon Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 14 18:27:55 GMT 2004 Responsible-Changed-Why: Assign to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=65793 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:28:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A5EB16A4CE; Tue, 14 Dec 2004 18:28:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7365E43D1F; Tue, 14 Dec 2004 18:28:55 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEISt8l042491; Tue, 14 Dec 2004 18:28:55 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEIStLm042487; Tue, 14 Dec 2004 18:28:55 GMT (envelope-from linimon) Date: Tue, 14 Dec 2004 18:28:55 GMT From: Mark Linimon Message-Id: <200412141828.iBEIStLm042487@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, simon@FreeBSD.org Subject: Re: ports/69065: Some security fixes (Backported the fix from OpenBSD) security/isakmpd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 18:28:55 -0000 Synopsis: Some security fixes (Backported the fix from OpenBSD) security/isakmpd Responsible-Changed-From-To: freebsd-ports-bugs->simon Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 14 18:28:39 GMT 2004 Responsible-Changed-Why: Assign to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69065 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:40:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A35F316A4CE for ; Tue, 14 Dec 2004 18:40:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CC6C43D1D for ; Tue, 14 Dec 2004 18:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEIeUbS043697 for ; Tue, 14 Dec 2004 18:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEIeT1i043696; Tue, 14 Dec 2004 18:40:29 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 18:40:29 GMT Message-Id: <200412141840.iBEIeT1i043696@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Emanuel Haupt Subject: Re: ports/74684: new port: irc/netwalker-ircc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 18:40:30 -0000 The following reply was made to PR ports/74684; it has been noted by GNATS. From: Emanuel Haupt To: freebsd-gnats-submit@FreeBSD.org, ehaupt@critical.ch Cc: Subject: Re: ports/74684: new port: irc/netwalker-ircc Date: Tue, 14 Dec 2004 19:37:52 +0100 here is a corrected version of the new port: ---shar start--- # 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: # # netwalker-ircc # netwalker-ircc/Makefile # netwalker-ircc/pkg-descr # netwalker-ircc/distinfo # netwalker-ircc/files # netwalker-ircc/files/patch-config.h # netwalker-ircc/files/patch-netwalker.1 # netwalker-ircc/pkg-plist # echo c - netwalker-ircc mkdir -p netwalker-ircc > /dev/null 2>&1 echo x - netwalker-ircc/Makefile sed 's/^X//' >netwalker-ircc/Makefile << 'END-of-netwalker-ircc/Makefile' X# New ports collection makefile for: netwalker-ircc X# Date created: 4 December 2004 X# Whom: Emanuel Haupt X# X# $FreeBSD$ X# X XPORTNAME= netwalker-ircc XPORTVERSION= 0.5.0 XCATEGORIES= irc XMASTER_SITES= http://www.bind.ch/projects/netwalker/netwalker-src/ XEXTRACT_SUFX= .tgz X XMAINTAINER= ehaupt@critical.ch XCOMMENT= A lightweight curses-based IRC client X XMAN1= netwalker.1 X XLDFLAGS= -lncurses ${PTHREAD_LIBS} XCFLAGS?= -O2 -Wall X X.include X X.if ${OSVERSION} < 400010 XLIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses X.endif X Xpost-patch: X @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" \ X ${WRKSRC}/config.h > ${WRKSRC}/config.h.freebsd X ${MV} ${WRKSRC}/config.h.freebsd ${WRKSRC}/config.h X Xdo-build: X.for file in main functions screen server user messages signals parameter userdb X ${CXX} ${CFLAGS} -c ${WRKSRC}/${file}.cc -o ${WRKSRC}/${file}.o X.endfor X ${CXX} ${LDFLAGS} -L${WRKSRC}/ ${WRKSRC}/*.o -o ${WRKSRC}/netwalker X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/netwalker ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/netwalker.1 ${MANPREFIX}/man/man1 X @${MKDIR} ${DATADIR} X ${CP} ${WRKSRC}/help/* ${PREFIX}/share/netwalker-ircc X X.include END-of-netwalker-ircc/Makefile echo x - netwalker-ircc/pkg-descr sed 's/^X//' >netwalker-ircc/pkg-descr << 'END-of-netwalker-ircc/pkg-descr' XNetwalker is a tiny curses-based IRC client. The current version is written in Xc/cpp. Future releases are planed to be written in plain cpp. Netwalker aims to Xbe a slim IRC client. X XWWW: http://www.bind.ch/projects/netwalker/ END-of-netwalker-ircc/pkg-descr echo x - netwalker-ircc/distinfo sed 's/^X//' >netwalker-ircc/distinfo << 'END-of-netwalker-ircc/distinfo' XMD5 (netwalker-ircc-0.5.0.tgz) = 1f5a7cc0fb54142c6306651105aedd68 XSIZE (netwalker-ircc-0.5.0.tgz) = 54768 END-of-netwalker-ircc/distinfo echo c - netwalker-ircc/files mkdir -p netwalker-ircc/files > /dev/null 2>&1 echo x - netwalker-ircc/files/patch-config.h sed 's/^X//' >netwalker-ircc/files/patch-config.h << 'END-of-netwalker-ircc/files/patch-config.h' X--- config.h.orig Sat Dec 4 17:43:47 2004 X+++ config.h Sat Dec 4 17:44:04 2004 X@@ -47,9 +47,9 @@ X #define PART_QUIT_MSG_LEN 256 X #define CTCP_VERSION_REPLY "Netwalker IRC-Client" X X-#define FILES_HELP_DIRECTORY "/usr/share/netwalker-ircc/" X+#define FILES_HELP_DIRECTORY "%%PREFIX%%/share/netwalker-ircc/" X #define FILES_HELP_INDEX_FILE "/helpindex.asc" X-#define FILES_CONFIG_FILE "/.netwalkerircc.conf" X+#define FILES_CONFIG_FILE "/.netwalkerircc" X X /* some default values */ X #define DEFAULT_NICKNAME "ABC" END-of-netwalker-ircc/files/patch-config.h echo x - netwalker-ircc/files/patch-netwalker.1 sed 's/^X//' >netwalker-ircc/files/patch-netwalker.1 << 'END-of-netwalker-ircc/files/patch-netwalker.1' X--- netwalker.1.orig Sat Dec 4 17:44:31 2004 X+++ netwalker.1 Sat Dec 4 17:44:58 2004 X@@ -33,7 +33,7 @@ X .SH CONFIGURATION FILE X after you used the command 'netwalker -c' there will be a X .br X-default configuration-file (atm called: '.netwalkerircc.conf') in your home directory. X+default configuration-file (atm called: '.netwalkerircc') in your home directory. X .br X Available config-file options: X .br END-of-netwalker-ircc/files/patch-netwalker.1 echo x - netwalker-ircc/pkg-plist sed 's/^X//' >netwalker-ircc/pkg-plist << 'END-of-netwalker-ircc/pkg-plist' Xbin/netwalker X%%DATADIR%%/help_connect.asc X%%DATADIR%%/help_ctcp.asc X%%DATADIR%%/help_disconnect.asc X%%DATADIR%%/help_help.asc X%%DATADIR%%/help_join.asc X%%DATADIR%%/help_me.asc X%%DATADIR%%/help_msg.asc X%%DATADIR%%/help_nick.asc X%%DATADIR%%/help_part.asc X%%DATADIR%%/help_quit.asc X%%DATADIR%%/help_reconnect.asc X%%DATADIR%%/help_screen.asc X%%DATADIR%%/help_topic.asc X%%DATADIR%%/help_who.asc X%%DATADIR%%/helpindex.asc X@dirrm %%DATADIR%% END-of-netwalker-ircc/pkg-plist exit ---shar stop--- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:44:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 613B616A4CE; Tue, 14 Dec 2004 18:44:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3691543D39; Tue, 14 Dec 2004 18:44:37 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEIibV4043852; Tue, 14 Dec 2004 18:44:37 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEIibEA043848; Tue, 14 Dec 2004 18:44:37 GMT (envelope-from thierry) Date: Tue, 14 Dec 2004 18:44:37 GMT From: Thierry Thomas Message-Id: <200412141844.iBEIibEA043848@freefall.freebsd.org> To: m.seifert@macnews.de, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75046: pear & pear2 cmds will fail if libaries are already loaded X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 18:44:37 -0000 Synopsis: pear & pear2 cmds will fail if libaries are already loaded State-Changed-From-To: feedback->closed State-Changed-By: thierry State-Changed-When: Tue Dec 14 18:42:47 GMT 2004 State-Changed-Why: Committed with PR ports/75063 from the maintainer. Thanks for your notification! Mark: this was devel/pear-PEAR and affected every pear-* ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=75046 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 18:45:08 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8F6516A4E9; Tue, 14 Dec 2004 18:45:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 829AC43D46; Tue, 14 Dec 2004 18:45:08 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEIj89J043899; Tue, 14 Dec 2004 18:45:08 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEIj8vW043895; Tue, 14 Dec 2004 18:45:08 GMT (envelope-from thierry) Date: Tue, 14 Dec 2004 18:45:08 GMT From: Thierry Thomas Message-Id: <200412141845.iBEIj8vW043895@freefall.freebsd.org> To: antonio@php.net, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75063: Update port: devel/pear-PEAR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 18:45:08 -0000 Synopsis: Update port: devel/pear-PEAR State-Changed-From-To: open->closed State-Changed-By: thierry State-Changed-When: Tue Dec 14 18:44:49 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75063 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 19:00:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1420716A4CF for ; Tue, 14 Dec 2004 19:00:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBED743D46 for ; Tue, 14 Dec 2004 19:00:49 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEJ0nNg044260 for ; Tue, 14 Dec 2004 19:00:49 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEJ0nOe044245; Tue, 14 Dec 2004 19:00:49 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 19:00:49 GMT Resent-Message-Id: <200412141900.iBEJ0nOe044245@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, tjs Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D316F16A4CF; Tue, 14 Dec 2004 19:00:25 +0000 (GMT) Received: from Pluto.CDPA.nsysu.edu.tw (Pluto.CDPA.nsysu.edu.tw [140.117.205.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4257E43D45; Tue, 14 Dec 2004 19:00:25 +0000 (GMT) (envelope-from tjs@Pluto.CDPA.nsysu.edu.tw) Received: from Pluto.CDPA.nsysu.edu.tw (localhost [127.0.0.1]) iBEJ0LJ8098471; Wed, 15 Dec 2004 03:00:21 +0800 (CST) (envelope-from tjs@Pluto.CDPA.nsysu.edu.tw) Received: (from tjs@localhost) by Pluto.CDPA.nsysu.edu.tw (8.13.1/8.13.1/Submit) id iBEJ0KRJ098470; Wed, 15 Dec 2004 03:00:20 +0800 (CST) (envelope-from tjs) Message-Id: <200412141900.iBEJ0KRJ098470@Pluto.CDPA.nsysu.edu.tw> Date: Wed, 15 Dec 2004 03:00:20 +0800 (CST) From: tjs To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dd@FreeBSD.org Subject: ports/75064: Update port: net/http_ping update to 20020403 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tjs List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 19:00:50 -0000 >Number: 75064 >Category: ports >Synopsis: Update port: net/http_ping update to 20020403 >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 Dec 14 19:00:49 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jin-Shan Tseng >Release: FreeBSD 5.3-STABLE i386 >Organization: NSYSU-CDPA >Environment: System: FreeBSD Pluto.CDPA.nsysu.edu.tw 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Nov 29 17:36:06 CST 2004 tjs@Pluto.CDPA.nsysu.edu.tw:/usr/obj/usr/src/sys/Pluto i386 >Description: Update port: net/http_ping update to 20020403 >How-To-Repeat: >Fix: --- Makefile.orig Wed Dec 15 02:46:01 2004 +++ Makefile Wed Dec 15 02:48:48 2004 @@ -6,10 +6,10 @@ # PORTNAME= http_ping -PORTVERSION= 20010709 +PORTVERSION= 20020403 CATEGORIES= net www MASTER_SITES= http://www.acme.com/software/http_ping/ -DISTNAME= ${PORTNAME}_09jul2001 +DISTNAME= ${PORTNAME}_03apr2002 MAINTAINER= dd@FreeBSD.org COMMENT= Sends HTTP requests every few seconds and times how long they take --- distinfo.orig Wed Dec 15 02:46:06 2004 +++ distinfo Wed Dec 15 02:49:34 2004 @@ -1,2 +1,2 @@ -MD5 (http_ping_09jul2001.tar.gz) = b8420963e72282691b11efc2983e4dd3 -SIZE (http_ping_09jul2001.tar.gz) = 7037 +MD5 (http_ping_03apr2002.tar.gz) = a90fda389a2e1048d666afa54eb85385 +SIZE (http_ping_03apr2002.tar.gz) = 7622 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 19:09:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AD0D16A4CE; Tue, 14 Dec 2004 19:09:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7C8A43D46; Tue, 14 Dec 2004 19:09:20 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEJ9KZF048445; Tue, 14 Dec 2004 19:09:20 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEJ9Kmf048441; Tue, 14 Dec 2004 19:09:20 GMT (envelope-from sem) Date: Tue, 14 Dec 2004 19:09:20 GMT From: Sergey Matveychuk Message-Id: <200412141909.iBEJ9Kmf048441@freefall.freebsd.org> To: ehaupt@critical.ch, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74684: new port: irc/netwalker-ircc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 19:09:21 -0000 Synopsis: new port: irc/netwalker-ircc State-Changed-From-To: feedback->closed State-Changed-By: sem State-Changed-When: Tue Dec 14 19:09:08 GMT 2004 State-Changed-Why: New port added, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74684 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 19:30:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B109516A4D2 for ; Tue, 14 Dec 2004 19:30:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E0DF43D5C for ; Tue, 14 Dec 2004 19:30:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEJUVZZ049203 for ; Tue, 14 Dec 2004 19:30:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEJUUiH049194; Tue, 14 Dec 2004 19:30:31 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 19:30:31 GMT Resent-Message-Id: <200412141930.iBEJUUiH049194@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, "Arjan van Leeuwen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4D6916A4CE for ; Tue, 14 Dec 2004 19:26:54 +0000 (GMT) Received: from winston.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id 7540543D68 for ; Tue, 14 Dec 2004 19:26:53 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 39928 invoked from network); 14 Dec 2004 19:26:52 -0000 Received: from unknown (HELO vincent.piwebs.com) (192.168.0.73) by winston.piwebs.com with SMTP; 14 Dec 2004 19:26:52 -0000 Message-Id: <1103052418.0@vincent.piwebs.com> Date: Tue, 14 Dec 2004 20:26:58 +0100 From: "Arjan van Leeuwen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4 Subject: ports/75065: Update ImageMagick to 6.1.6-7; fix pthreads issue X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 19:30:31 -0000 >Number: 75065 >Category: ports >Synopsis: Update ImageMagick to 6.1.6-7; fix pthreads issue >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 Dec 14 19:30:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Arjan van Leeuwen >Release: FreeBSD 6.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 6.0-CURRENT #1: Sun Dec 12 21:29:34 CET 2004 root@vincent.piwebs.com:/usr/obj/usr/src/sys/VINCENT >Description: - Update ImageMagick to version 6.1.6-7 - Fix a problem where ImageMagick would always link with -lc_r if WITH_IMAGEMAGICK_THREADS was defined [1] [1] Reported by Jacob Meuser >How-To-Repeat: >Fix: --- ImageMagick.diff begins here --- diff -urN /usr/ports/graphics/ImageMagick/Makefile ImageMagick/Makefile --- /usr/ports/graphics/ImageMagick/Makefile Tue Dec 14 19:00:31 2004 +++ ImageMagick/Makefile Tue Dec 14 20:04:52 2004 @@ -2,11 +2,11 @@ # Date created: 15 November 1994 # Whom: torstenb # -# $FreeBSD: ports/graphics/ImageMagick/Makefile,v 1.200 2004/12/12 23:59:05 pav Exp $ +# $FreeBSD: ports/graphics/ImageMagick/Makefile,v 1.199 2004/12/11 18:12:39 pav Exp $ # PORTNAME= ImageMagick -PORTVERSION= 6.1.6.6 +PORTVERSION= 6.1.6.7 CATEGORIES= graphics perl5 MASTER_SITES= ftp://ftp.imagemagick.org/pub/%SUBDIR%/ \ ftp://gd.tuwien.ac.at/pub/graphics/%SUBDIR%/ \ @@ -65,8 +65,7 @@ (!defined(WITHOUT_IMAGEMAGICK_PERL) && \ defined(PERL_THREADED) && ${PERL_THREADED} == "true") CONFIGURE_ARGS+= --with-threads -CPPFLAGS+= ${PTHREAD_CFLAGS} -LDFLAGS+= ${PTHREAD_LIBS} +CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" PTHREAD_LIBS="${PTHREAD_LIBS}" .else CONFIGURE_ARGS+= --without-threads .endif diff -urN /usr/ports/graphics/ImageMagick/distinfo ImageMagick/distinfo --- /usr/ports/graphics/ImageMagick/distinfo Tue Dec 14 19:00:31 2004 +++ ImageMagick/distinfo Tue Dec 14 20:05:09 2004 @@ -1,2 +1,2 @@ -MD5 (ImageMagick-6.1.6-6.tar.bz2) = b832ecc8658687a67ee79413d169651c -SIZE (ImageMagick-6.1.6-6.tar.bz2) = 4558859 +MD5 (ImageMagick-6.1.6-7.tar.bz2) = cb88563e9428562515cfdc9285d51812 +SIZE (ImageMagick-6.1.6-7.tar.bz2) = 4558405 --- ImageMagick.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 19:40:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6EC916A4D1 for ; Tue, 14 Dec 2004 19:40:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9285E43D6D for ; Tue, 14 Dec 2004 19:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEJeRra050244 for ; Tue, 14 Dec 2004 19:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEJeRlL050243; Tue, 14 Dec 2004 19:40:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 19:40:27 GMT Resent-Message-Id: <200412141940.iBEJeRlL050243@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, "KONDOU, Kazuhiro" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FDBE16A4CE for ; Tue, 14 Dec 2004 19:35:24 +0000 (GMT) Received: from reah.alib.jp (tky3-ppp-195-144.alib.jp [202.224.195.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F8E543D48 for ; Tue, 14 Dec 2004 19:35:23 +0000 (GMT) (envelope-from kazuhiro@alib.jp) Received: from reah.alib.jp (kazuhiro@localhost.alib.jp [IPv6:::1]) by reah.alib.jp (8.13.1/8.13.1) with ESMTP id iBEJZAte025323 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 15 Dec 2004 04:35:10 +0900 (JST) (envelope-from kazuhiro@reah.alib.jp) Received: (from kazuhiro@localhost) by reah.alib.jp (8.13.1/8.13.1/Submit) id iBEJZApx025322; Wed, 15 Dec 2004 04:35:10 +0900 (JST) (envelope-from kazuhiro) Message-Id: <200412141935.iBEJZApx025322@reah.alib.jp> Date: Wed, 15 Dec 2004 04:35:10 +0900 (JST) From: "KONDOU, Kazuhiro" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75066: mbone/vic is broken on FreeBSD 5.3 and 6-CURRENT. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "KONDOU, Kazuhiro" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 19:40:34 -0000 >Number: 75066 >Category: ports >Synopsis: mbone/vic is broken on FreeBSD 5.3 and 6-CURRENT. >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: Tue Dec 14 19:40:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KONDOU, Kazuhiro >Release: FreeBSD 6.0-CURRENT i386 >Organization: >Environment: System: FreeBSD feena.alib.jp 6.0-CURRENT FreeBSD 6.0-CURRENT #3: Wed Dec 15 00:19:38 JST 2004 root@feena.alib.jp:/usr/obj/usr/src/sys/FEENA i386 >Description: vic cannot build on FreeBSD 5.3 and 6-CURRENT. (GCC 3.4) >How-To-Repeat: fails in `make build'. >Fix: patch-encoder-jpeg.cpp changes following patch. --- codec/encoder-jpeg.cpp.old Fri Nov 5 20:36:07 1999 +++ codec/encoder-jpeg.cpp Wed Dec 15 02:08:17 2004 @@ -132,6 +132,10 @@ u_short val; u_short nb; }; + static huffentry ldht[]; + static huffentry cdht[]; + static huffentry laht[]; + static huffentry caht[]; int command(int argc, const char*const* argv); @@ -194,15 +198,15 @@ 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99 }; -static struct JpegEncoder::huffentry ldht[] = { +JpegEncoder::huffentry JpegEncoder::ldht[] = { {0x0, 2}, {0x2, 3}, {0x3, 3}, {0x4, 3}, {0x5, 3}, {0x6, 3}, {0xe, 4}, {0x1e, 5}, {0x3e, 6}, {0x7e, 7}, {0xfe, 8}, {0x1fe, 9}}; -static struct JpegEncoder::huffentry cdht[] = { +JpegEncoder::huffentry JpegEncoder::cdht[] = { {0x0, 2}, {0x1, 2}, {0x2, 2}, {0x6, 3}, {0xe, 4}, {0x1e, 5}, {0x3e, 6}, {0x7e, 7}, {0xfe, 8}, {0x1fe, 9}, {0x3fe, 10}, {0x7fe, 11}}; -static struct JpegEncoder::huffentry laht[] = { +JpegEncoder::huffentry JpegEncoder::laht[] = { {0x0a, 4}, {0x00, 2}, {0x01, 2}, {0x04, 3}, {0x0b, 4}, {0x1a, 5}, {0x78, 7}, {0xf8, 8}, {0x3f6, 10}, {0xff82, 16}, {0xff83, 16}, {0x00, 0}, @@ -268,7 +272,7 @@ {0xfffc, 16}, {0xfffd, 16}, {0xfffe, 16}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0}, {0x00, 0} }; -static struct JpegEncoder::huffentry caht[] = { +JpegEncoder::huffentry JpegEncoder::caht[] = { {0x00, 2}, {0x01, 2}, {0x04, 3}, {0x0a, 4}, {0x18, 5}, {0x19, 5}, {0x38, 6}, {0x78, 7}, {0x1f4, 9}, {0x3f6, 10}, {0xff4, 12}, {0x00, 0}, apply following some patches. --- codec/tmndec/global.h.old Fri Dec 3 00:52:26 2004 +++ codec/tmndec/global.h Thu Dec 2 02:14:14 2004 @@ -62,6 +62,7 @@ * defined) GLOBAL is defined in exactly one file (tmndec.c) */ #include +#include "tmndec.h" #ifndef GLOBAL #define EXTERN extern --- render/color-true.cpp.old Thu Sep 9 21:38:14 1999 +++ render/color-true.cpp Thu Dec 2 02:22:07 2004 @@ -216,7 +216,7 @@ } protected: virtual void update(); - virtual void disable() { method_ = True24Method(&WindowRenderer::dither_null); } + virtual void disable() { method_ = True24Method(&TrueWindowRenderer24::dither_null); } True24Method method_; void map_422(const u_char* frm, u_int off, u_int x, @@ -264,7 +264,7 @@ } protected: virtual void update(); - virtual void disable() { method_ = True32Method(&WindowRenderer::dither_null); } + virtual void disable() { method_ = True32Method(&TrueWindowRenderer32::dither_null); } True32Method method_; void map_422(const u_char* frm, u_int off, u_int x, --- render/color-dither.cpp.old Thu Sep 9 21:38:10 1999 +++ render/color-dither.cpp Thu Dec 2 02:22:42 2004 @@ -177,7 +177,7 @@ protected: DitherColorModel& cm_; virtual void update(); - virtual void disable() { method_ = &PseudoWindowRenderer::dither_null; } + virtual void disable() { method_ = &DitherWindowRenderer::dither_null; } DitherMethod method_; void dither_422(const u_char* frm, u_int off, u_int x, u_int width, u_int height) const; --- render/color-ed.cpp.old Thu Sep 9 21:38:11 1999 +++ render/color-ed.cpp Thu Dec 2 02:23:19 2004 @@ -180,7 +180,7 @@ protected: EDColorModel& cm_; virtual void update(); - virtual void disable() { method_ = &PseudoWindowRenderer::dither_null; } + virtual void disable() { method_ = &EDWindowRenderer::dither_null; } EDMethod method_; void dither_422(const u_char* frm, u_int off, u_int x, u_int width, u_int height) const; --- render/color-gray.cpp.old Thu Sep 9 21:38:11 1999 +++ render/color-gray.cpp Thu Dec 2 02:25:43 2004 @@ -82,7 +82,7 @@ } protected: virtual void update(); - virtual void disable() { method_ = &PseudoWindowRenderer::dither_null; } + virtual void disable() { method_ = &GrayWindowRenderer::dither_null; } GrayMethod method_; }; --- render/color-hi.cpp.old Thu Sep 9 21:38:11 1999 +++ render/color-hi.cpp Thu Dec 2 02:25:28 2004 @@ -196,7 +196,7 @@ protected: HiColorModel& cm_; virtual void update(); - virtual void disable() { method_ = HiMethod(&WindowRenderer::dither_null); } + virtual void disable() { method_ = HiMethod(&HiWindowRenderer::dither_null); } HiMethod method_; void map_422(const u_char* frm, u_int off, u_int x, u_int width, u_int height) const; --- render/color-mono.cpp.old Thu Sep 9 21:38:12 1999 +++ render/color-mono.cpp Thu Dec 2 02:25:57 2004 @@ -250,7 +250,7 @@ protected: MonoColorModel& cm_; virtual void update(); - virtual void disable() { method_ = &WindowDitherer::dither_null; } + virtual void disable() { method_ = &MonoWindowRenderer::dither_null; } MonoMethod method_; void dither(const u_char* frm, u_int off, u_int x, u_int width, u_int height) const; --- render/color-quant.cpp.old Thu Sep 9 21:38:13 1999 +++ render/color-quant.cpp Thu Dec 2 02:24:39 2004 @@ -92,7 +92,7 @@ protected: QuantColorModel& cm_; virtual void update(); - virtual void disable() { method_ = &PseudoWindowRenderer::dither_null; } + virtual void disable() { method_ = &QuantWindowRenderer::dither_null; } QuantMethod method_; void map_422(const u_char* frm, u_int off, u_int x, u_int width, u_int height) const; --- render/rgb-converter.h.old Fri Dec 3 00:52:26 2004 +++ render/rgb-converter.h Thu Dec 2 16:25:31 2004 @@ -37,7 +37,7 @@ #ifndef rgb_converter_h #define rgb_converter_h -#include "config.h" +#include "../config.h" class Converter { public: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 19:40:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBAED16A4D0 for ; Tue, 14 Dec 2004 19:40:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9021143D31 for ; Tue, 14 Dec 2004 19:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEJeUj4050295 for ; Tue, 14 Dec 2004 19:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEJeULA050294; Tue, 14 Dec 2004 19:40:30 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 19:40:30 GMT Message-Id: <200412141940.iBEJeULA050294@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mike Brown Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mike Brown List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 19:40:34 -0000 The following reply was made to PR ports/74974; it has been noted by GNATS. From: Mike Brown To: Sergey Matveychuk Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 Date: Tue, 14 Dec 2004 12:38:45 -0700 (MST) Sergey Matveychuk wrote: > Why dont you use 'diff -u' for updates as described in Porter's > Handbook? Please do so. In this case, I needed to remove a file from the port. How would I do that with a diff? The differences in the pkg-plist and pkg-descr were also drastic as to make a diff relatively useless to a human. > And you should set PR class to maintainer-update for your ports. That info was not in the Porter's Handbook, send-pr(1), or anywhere else that I looked, and I looked at the previous PRs for this port and saw that the previous maintainer used update, not maintainer-update, so I followed that precedent. I surmised that perhaps maintainer-update meant that this was a change of who is the maintainer of the port. I apologize for any confusion caused by my update. I am new to porting and this is my first attempt at it. I will have an update for textproc/py-4suite ready soon, but need to know what the preferred manner is of telling you that I need to remove the entire 'files' subdirectory from the old version of the port. Thanks, Mike From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 19:54:38 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 501FA16A4CE for ; Tue, 14 Dec 2004 19:54:38 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1342543D58 for ; Tue, 14 Dec 2004 19:54:38 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 1F10F148D9; Tue, 14 Dec 2004 13:54:37 -0600 (CST) Date: Tue, 14 Dec 2004 13:54:37 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: Mike Brown In-Reply-To: <200412141940.iBEJeULA050294@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 19:54:38 -0000 On Tue, 14 Dec 2004, Mike Brown wrote: > In this case, I needed to remove a file from the port. > How would I do that with a diff? diff -ruN is what you want. > The differences in the pkg-plist and pkg-descr were also > drastic as to make a diff relatively useless to a human. Nevertheless, it is more informative to see that output than to see a completely new file, and then have to generate that output oneself to confirm it. > > And you should set PR class to maintainer-update for your ports. > > That info was not in the Porter's Handbook, send-pr(1), or anywhere else > that I looked Interested parties should check out http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/article.html. > but need to know what the preferred manner is of telling you that I need > to remove the entire 'files' subdirectory from the old version of the port. Although diff -ruN should do it, it never hurts to simply mention any files or directories that should be added or deleted, in the Fix section. mcl From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 20:20:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23EA916A544 for ; Tue, 14 Dec 2004 20:20:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1AC743D5A for ; Tue, 14 Dec 2004 20:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEKKSIC055578 for ; Tue, 14 Dec 2004 20:20:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEKKSK5055576; Tue, 14 Dec 2004 20:20:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 20:20:28 GMT Resent-Message-Id: <200412142020.iBEKKSK5055576@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, Jose M Rodriguez Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF6D16A56C; Tue, 14 Dec 2004 20:12:32 +0000 (GMT) Received: from smtp2.jazztel.es (smtp2.jazztel.es [62.14.3.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBDF43D5E; Tue, 14 Dec 2004 20:12:31 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp2.jazztel.es with antivirus id 1CeJ21-00029y-00 Tue, 14 Dec 2004 21:12:25 +0100 Received: from [212.106.236.248] (helo=rguez.homeunix.net) by smtp2.jazztel.es with esmtp id 1CeJ1Y-0001QI-00 Tue, 14 Dec 2004 21:11:56 +0100 Received: from orion.redesjm.local (localhost.redesjm.local [127.0.0.1]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id iBEKBsmb000775; Tue, 14 Dec 2004 21:11:54 +0100 (CET) (envelope-from freebsd@orion.redesjm.local) Received: (from freebsd@localhost) by orion.redesjm.local (8.13.1/8.13.1/Submit) id iBEKBrrS000774; Tue, 14 Dec 2004 21:11:53 +0100 (CET) (envelope-from freebsd) Message-Id: <200412142011.iBEKBrrS000774@orion.redesjm.local> Date: Tue, 14 Dec 2004 21:11:53 +0100 (CET) From: Jose M Rodriguez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: gnome@FreeBSD.org Subject: ports/75067: update of mozilla default apps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jose M Rodriguez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 20:20:47 -0000 >Number: 75067 >Category: ports >Synopsis: update of mozilla default apps >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 Dec 14 20:20:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jose M Rodriguez >Release: FreeBSD 5.3-STABLE i386 >Organization: Redes JM >Environment: System: FreeBSD orion.redesjm.local 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Dec 13 17:11:14 CET 2004 root@orion.redesjm.local:/usr/obj/usr/src/sys/ORION i386 >Description: use the firefox/thunderbird/mozilla apps with their current commands >How-To-Repeat: >Fix: --- patch-gnomecontrolcenter2 begins here --- diff -Nru /usr/ports/sysutils/gnomecontrolcenter2/files/patch-capplets_default-applications_gnome-default-applications-properies-structs.c sysutils/gnomecontrolcenter2/files/patch-capplets_default-applications_gnome-default-applications-properies-structs.c --- /usr/ports/sysutils/gnomecontrolcenter2/files/patch-capplets_default-applications_gnome-default-applications-properies-structs.c Thu Jan 1 01:00:00 1970 +++ sysutils/gnomecontrolcenter2/files/patch-capplets_default-applications_gnome-default-applications-properies-structs.c Mon Dec 13 22:49:27 2004 @@ -0,0 +1,24 @@ +--- capplets/default-applications/gnome-default-applications-properties-structs.c.orig Mon Dec 13 22:37:25 2004 ++++ capplets/default-applications/gnome-default-applications-properties-structs.c Mon Dec 13 22:45:16 2004 +@@ -9,11 +9,8 @@ + { N_("Epiphany"), "epiphany", "epiphany %s", FALSE, FALSE }, + { N_("Galeon"), "galeon", "galeon %s", FALSE, FALSE }, + { N_("Encompass"), "encompass", "encompass %s", FALSE, FALSE }, +- { N_("Firebird/FireFox"), "mozilla-firebird", "mozilla-firebird %s", FALSE, FALSE }, +- { N_("Firebird/FireFox"), "mozilla-firefox", "mozilla-firebird %s", FALSE, FALSE }, +- { N_("Firebird/FireFox"), "firefox", "mozilla-firebird %s", FALSE, FALSE }, +- { N_("Mozilla/Netscape 6"), "mozilla-1.6", "mozilla-1.6 %s", FALSE, FALSE }, +- { N_("Mozilla/Netscape 6"), "mozilla", "mozilla %s", FALSE, FALSE }, ++ { N_("FireFox"), "firefox", "firefox %s", FALSE, FALSE }, ++ { N_("Mozilla"), "mozilla", "mozilla %s", FALSE, FALSE }, + { N_("Netscape Communicator"), "netscape", "netscape %s", FALSE, FALSE }, + { N_("Konqueror"), "konqueror", "konqueror %s", FALSE, FALSE }, + { N_("W3M Text Browser"), "w3n", "w3m %s", TRUE, FALSE }, +@@ -40,6 +37,7 @@ + { N_("Balsa"), "balsa", "balsa -m %s", FALSE, FALSE }, + { N_("KMail"), "kmail", "kmail %s", FALSE, FALSE }, + { N_("Mozilla Mail"), "mozilla", "mozilla -mail %s", FALSE, FALSE}, ++ { N_("Thunderbird"), "thunderbird", "thunderbird %s", FALSE, FALSE}, + { N_("Mutt") , "mutt", "mutt %s", TRUE, FALSE }, + + }; --- patch-gnomecontrolcenter2 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 20:30:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EE4E16A4CE for ; Tue, 14 Dec 2004 20:30:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B4A43D49 for ; Tue, 14 Dec 2004 20:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEKUSHV055867 for ; Tue, 14 Dec 2004 20:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEKUSFj055866; Tue, 14 Dec 2004 20:30:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 20:30:28 GMT Resent-Message-Id: <200412142030.iBEKUSFj055866@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B2FA16A4CE for ; Tue, 14 Dec 2004 20:29:18 +0000 (GMT) Received: from mx5.kent.ac.uk (mx5.kent.ac.uk [129.12.21.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D72143D1D for ; Tue, 14 Dec 2004 20:29:17 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from hathor.ukc.ac.uk ([129.12.4.12]) by mx5.kent.ac.uk with esmtp (Exim 4.42) id 1CeJIB-0003J9-IC; Tue, 14 Dec 2004 20:29:07 +0000 Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by hathor.ukc.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.42) id 1CeJIB-0004d2-Fo; Tue, 14 Dec 2004 20:29:07 +0000 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.42 (FreeBSD)) id 1CeJIB-000CMt-Bg; Tue, 14 Dec 2004 20:29:07 +0000 Message-Id: Date: Tue, 14 Dec 2004 20:29:07 +0000 From: Tim Bishop Sender: "T.D.Bishop" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: tim@bishnet.net Subject: ports/75069: [MAINTAINER] security/f-prot-sig: update to 20041214 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 20:30:29 -0000 >Number: 75069 >Category: ports >Synopsis: [MAINTAINER] security/f-prot-sig: update to 20041214 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 20:30:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tim Bishop >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD pendennis.ukc.ac.uk 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Sun Jul 18 15:23:54 BST 2004 >Description: - Update to 20041214 - W32/Zafi.D@mm Note: W32/Zafi.D@mm is marked as "High Risk" by Frisk, so I've set the priority of this PR to high. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- f-prot-sig-20041214.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/security/f-prot-sig/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 20 Nov 2004 16:29:12 -0000 1.26 +++ Makefile 14 Dec 2004 20:27:12 -0000 @@ -6,7 +6,7 @@ # PORTNAME= f-prot-sig -PORTVERSION= 20041119 +PORTVERSION= 20041214 CATEGORIES= security MASTER_SITES= ftp://ftp.f-prot.com/pub/ \ http://updates.f-prot.com/files/ Index: distinfo =================================================================== RCS file: /u1/freebsd/cvs/ports/security/f-prot-sig/distinfo,v retrieving revision 1.22 diff -u -r1.22 distinfo --- distinfo 20 Nov 2004 16:29:12 -0000 1.22 +++ distinfo 14 Dec 2004 20:27:20 -0000 @@ -1,2 +1,2 @@ -MD5 (f-prot-sig-20041119/fp-def.zip) = IGNORE -MD5 (f-prot-sig-20041119/macrdef2.zip) = IGNORE +MD5 (f-prot-sig-20041214/fp-def.zip) = IGNORE +MD5 (f-prot-sig-20041214/macrdef2.zip) = IGNORE --- f-prot-sig-20041214.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 20:50:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97B4316A53C for ; Tue, 14 Dec 2004 20:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D3B843D64 for ; Tue, 14 Dec 2004 20:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEKoRWd059553 for ; Tue, 14 Dec 2004 20:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEKoRT2059524; Tue, 14 Dec 2004 20:50:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 20:50:27 GMT Resent-Message-Id: <200412142050.iBEKoRT2059524@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, Tobias Roth Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3EF716A4CE for ; Tue, 14 Dec 2004 20:43:02 +0000 (GMT) Received: from secure.socket.ch (secure.socket.ch [212.254.206.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B5B343D5F for ; Tue, 14 Dec 2004 20:43:00 +0000 (GMT) (envelope-from roth@secure.socket.ch) Received: from secure.socket.ch (localhost [127.0.0.1]) by secure.socket.ch (8.12.10/8.12.5) with ESMTP id iBEKgv8d024240 for ; Tue, 14 Dec 2004 21:42:57 +0100 (CET) (envelope-from roth@secure.socket.ch) Received: (from roth@localhost) by secure.socket.ch (8.12.10/8.12.5/Submit) id iBEKgqn9024239; Tue, 14 Dec 2004 21:42:52 +0100 (CET) Message-Id: <200412142042.iBEKgqn9024239@secure.socket.ch> Date: Tue, 14 Dec 2004 21:42:52 +0100 (CET) From: Tobias Roth To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tobias Roth List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 20:50:27 -0000 >Number: 75072 >Category: ports >Synopsis: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 >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 Dec 14 20:50:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tobias Roth >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD localhost 5.3-STABLE FreeBSD 5.3-STABLE #8: Tue Dec 14 07:43:17 CET 2004 roth@localhost:/opt/obj/usr/src/sys/FOOBAR i386 >Description: This updates x11/fbpanel from version 3.12_1 to 3.18 Added files: files/patch-plugins::Makefile pkg-message Removed files: none >How-To-Repeat: >Fix: diff -ruN fbpanel.orig/Makefile fbpanel/Makefile --- fbpanel.orig/Makefile Tue Dec 14 18:41:35 2004 +++ fbpanel/Makefile Tue Dec 14 21:14:58 2004 @@ -6,8 +6,7 @@ # PORTNAME= fbpanel -PORTVERSION= 3.12 -PORTREVISION= 1 +PORTVERSION= 3.18 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,10 +18,15 @@ USE_X_PREFIX= yes USE_GNOME= gtk20 HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} +CONFIGURE_ARGS= --prefix=${PREFIX} --transparency USE_GMAKE= yes MAN1= fbpanel.1 MANCOMPRESSED= yes + +post-install: + @${ECHO_MSG} "" + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} "" .include diff -ruN fbpanel.orig/distinfo fbpanel/distinfo --- fbpanel.orig/distinfo Tue Dec 14 18:41:35 2004 +++ fbpanel/distinfo Tue Dec 14 19:29:01 2004 @@ -1,2 +1,2 @@ -MD5 (fbpanel-3.12.tgz) = 73e4f4d2062c6bca39958166ea7403b5 -SIZE (fbpanel-3.12.tgz) = 73021 +MD5 (fbpanel-3.18.tgz) = 4dcbfb690e230ccb12a2c9cef71b0ef8 +SIZE (fbpanel-3.18.tgz) = 84037 diff -ruN fbpanel.orig/files/patch-Makefile.common fbpanel/files/patch-Makefile.common --- fbpanel.orig/files/patch-Makefile.common Tue Dec 14 18:41:35 2004 +++ fbpanel/files/patch-Makefile.common Tue Dec 14 18:53:54 2004 @@ -1,14 +1,16 @@ ---- Makefile.common.orig Sat Jun 26 14:00:42 2004 -+++ Makefile.common Sat Jun 26 14:03:02 2004 -@@ -15,10 +15,9 @@ +--- Makefile.common.orig Tue Dec 14 18:52:32 2004 ++++ Makefile.common Tue Dec 14 18:53:15 2004 +@@ -15,12 +15,10 @@ endif endif -CC = gcc +CC ?= gcc LIBS = $(shell pkg-config --libs gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0) -L/usr/X11R6/lib -lXmu - INCS = $(shell pkg-config --cflags gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0) --CFLAGS = -O2 # overwriten by command line or env. variable - CFLAGS += -Wall # always nice to have + INCS2 = $(shell pkg-config --cflags gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0) + INCS := $(INCS2:-I%=-isystem%) +-# first = may be overwriten by command line or env. variable +-CFLAGS = -O2 + # this one always applays + CFLAGS += -Wall ifneq (,$(DEVEL)) - CFLAGS := -g -Wall diff -ruN fbpanel.orig/files/patch-plugins::Makefile fbpanel/files/patch-plugins::Makefile --- fbpanel.orig/files/patch-plugins::Makefile Thu Jan 1 01:00:00 1970 +++ fbpanel/files/patch-plugins::Makefile Tue Dec 14 20:00:19 2004 @@ -0,0 +1,11 @@ +--- plugins/Makefile.orig Tue Dec 14 19:59:15 2004 ++++ plugins/Makefile Tue Dec 14 19:59:23 2004 +@@ -7,7 +7,7 @@ + INCS += -I../ + SRC = image.c menu.c separator.c taskbar.c wincmd.c \ + dclock.c launchbar.c pager.c space.c test.c \ +- icons.c cpu.c deskno.c ++ icons.c deskno.c + + SOBJ = $(SRC:%.c=%.so) + OBJ = $(SRC:%.c=%.o) diff -ruN fbpanel.orig/pkg-message fbpanel/pkg-message --- fbpanel.orig/pkg-message Thu Jan 1 01:00:00 1970 +++ fbpanel/pkg-message Tue Dec 14 21:12:05 2004 @@ -0,0 +1 @@ +Please note that the cpu plugin has not been built due to compatibility reasons. diff -ruN fbpanel.orig/pkg-plist fbpanel/pkg-plist --- fbpanel.orig/pkg-plist Tue Dec 14 18:41:35 2004 +++ fbpanel/pkg-plist Tue Dec 14 21:06:30 2004 @@ -1,15 +1,29 @@ bin/fbpanel -share/fbpanel/default -share/fbpanel/pager -share/fbpanel/images/Desktop2.png -share/fbpanel/images/Editor.png -share/fbpanel/images/Emacs.png -share/fbpanel/images/GNOME-Terminal.png -share/fbpanel/images/Menu.png -share/fbpanel/images/Networking.png -share/fbpanel/images/bottom-left.xpm -share/fbpanel/images/bottom-right.xpm -share/fbpanel/images/top-left.xpm -share/fbpanel/images/top-right.xpm -@dirrm share/fbpanel/images -@dirrm share/fbpanel +%%DATADIR%%/default +%%DATADIR%%/images/Desktop2.png +%%DATADIR%%/images/Editor.png +%%DATADIR%%/images/Emacs.png +%%DATADIR%%/images/GNOME-Terminal.png +%%DATADIR%%/images/Menu.png +%%DATADIR%%/images/Networking.png +%%DATADIR%%/images/bottom-left.xpm +%%DATADIR%%/images/bottom-right.xpm +%%DATADIR%%/images/top-left.xpm +%%DATADIR%%/images/top-right.xpm +%%DATADIR%%/pager +%%DATADIR%%/plugins/dclock.so +%%DATADIR%%/plugins/deskno.so +%%DATADIR%%/plugins/icons.so +%%DATADIR%%/plugins/image.so +%%DATADIR%%/plugins/launchbar.so +%%DATADIR%%/plugins/menu.so +%%DATADIR%%/plugins/pager.so +%%DATADIR%%/plugins/separator.so +%%DATADIR%%/plugins/space.so +%%DATADIR%%/plugins/taskbar.so +%%DATADIR%%/plugins/test.so +%%DATADIR%%/plugins/tray.so +%%DATADIR%%/plugins/wincmd.so +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%%/plugins +@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 20:50:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D36B416A53D for ; Tue, 14 Dec 2004 20:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BE8C43D5D for ; Tue, 14 Dec 2004 20:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEKoRqC059579 for ; Tue, 14 Dec 2004 20:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEKoRUv059578; Tue, 14 Dec 2004 20:50:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 20:50:27 GMT Resent-Message-Id: <200412142050.iBEKoRUv059578@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE72216A4CE for ; Tue, 14 Dec 2004 20:43:20 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7382643D3F for ; Tue, 14 Dec 2004 20:43:20 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84126-94.ip.peterstar.net ([84.204.126.94] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1CeJVk-000DKR-6i for FreeBSD-gnats-submit@freebsd.org; Tue, 14 Dec 2004 21:43:10 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBEKgsqT003502 for ; Tue, 14 Dec 2004 23:42:55 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBEKgscN003501; Tue, 14 Dec 2004 23:42:54 +0300 (MSK) (envelope-from igor) Message-Id: <200412142042.iBEKgscN003501@doom.homeunix.org> Date: Tue, 14 Dec 2004 23:42:54 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75073: Update port: games/tenebrae fix problems with xorg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 20:50:28 -0000 >Number: 75073 >Category: ports >Synopsis: Update port: games/tenebrae fix problems with xorg >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 Dec 14 20:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Should fix problems when building against xorg GL. New files: files/patch-glquake.h >How-To-Repeat: >Fix: --- tenebrae.diff begins here --- diff -ruN /usr/ports/games/tenebrae/files/patch-glquake.h tenebrae/files/patch-glquake.h --- /usr/ports/games/tenebrae/files/patch-glquake.h Thu Jan 1 03:00:00 1970 +++ tenebrae/files/patch-glquake.h Tue Dec 14 23:35:22 2004 @@ -0,0 +1,49 @@ + +$FreeBSD$ + +--- glquake.h.orig ++++ glquake.h +@@ -419,8 +419,8 @@ + void R_TranslatePlayerSkin (int playernum); + void GL_Bind (int texnum); + +-#ifndef _WIN32 +-#define APIENTRY /* */ ++#ifndef APIENTRY ++#define APIENTRY + #endif + + #if !defined (__APPLE__) && !defined (MACOSX) +@@ -470,6 +470,9 @@ + // ARB_texture_compression defines + #define GL_COMPRESSED_RGBA_ARB 0x84EE + ++#ifndef GL_ATI_separate_stencil ++#define GL_ATI_separate_stencil 1 ++ + #define GL_STENCIL_BACK_FUNC_ATI 0x8800 + #define GL_STENCIL_BACK_FAIL_ATI 0x8801 + #define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +@@ -478,6 +481,8 @@ + typedef void (APIENTRY *PFNGLSTENCILOPSEPARATEATIPROC)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); + typedef void (APIENTRY *PFNGLSTENCILFUNCSEPARATEATIPROC)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); + ++#endif ++ + extern PFNGLSTENCILOPSEPARATEATIPROC qglStencilOpSeparateATI; + extern PFNGLSTENCILFUNCSEPARATEATIPROC qglStencilFuncSeparateATI; + +@@ -1134,8 +1139,13 @@ + // There are some diffs with the function parameters. wgl stuff not present with MacOS X. -DC- and SDL + #if defined (__APPLE__) || defined (MACOSX) || defined(SDL) || defined (__glx__) + ++#ifndef GL_APPLE_vertex_array_range ++#define GL_APPLE_vertex_array_range 1 ++ + typedef void (APIENTRY * PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, const GLvoid *pointer); + typedef void (APIENTRY * PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei size, const GLvoid *pointer); ++ ++#endif + + extern PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC qglFlushVertexArrayRangeAPPLE; + extern PFNGLVERTEXARRAYRANGEAPPLEPROC qglVertexArrayRangeAPPLE; --- tenebrae.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 20:50:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BDA616A53C for ; Tue, 14 Dec 2004 20:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3A9043D67 for ; Tue, 14 Dec 2004 20:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEKoRfb059592 for ; Tue, 14 Dec 2004 20:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEKoRVn059591; Tue, 14 Dec 2004 20:50:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 20:50:27 GMT Resent-Message-Id: <200412142050.iBEKoRVn059591@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, Jose M Rodriguez Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED0A816A4CE; Tue, 14 Dec 2004 20:47:20 +0000 (GMT) Received: from smtp1.jazztel.es (smtp1.jazztel.es [62.14.3.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id A51C743D67; Tue, 14 Dec 2004 20:47:20 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp1.jazztel.es with antivirus id 1CeJa6-0008Pl-00 Tue, 14 Dec 2004 21:47:38 +0100 Received: from [212.106.236.248] (helo=rguez.homeunix.net) by smtp1.jazztel.es with esmtp id 1CeJa5-0008OG-00 Tue, 14 Dec 2004 21:47:37 +0100 Received: from orion.redesjm.local (localhost.redesjm.local [127.0.0.1]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id iBEKlH2n058202; Tue, 14 Dec 2004 21:47:17 +0100 (CET) (envelope-from freebsd@orion.redesjm.local) Received: (from freebsd@localhost) by orion.redesjm.local (8.13.1/8.13.1/Submit) id iBEKlHCx058201; Tue, 14 Dec 2004 21:47:17 +0100 (CET) (envelope-from freebsd) Message-Id: <200412142047.iBEKlHCx058201@orion.redesjm.local> Date: Tue, 14 Dec 2004 21:47:17 +0100 (CET) From: Jose M Rodriguez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kuriyama@FreeBSD.org Subject: ports/75074: fight against -O2 compilers problems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jose M Rodriguez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 20:50:28 -0000 >Number: 75074 >Category: ports >Synopsis: fight against -O2 compilers problems >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 Dec 14 20:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jose M Rodriguez >Release: FreeBSD 5.3-STABLE i386 >Organization: Redes JM >Environment: System: FreeBSD orion.redesjm.local 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Dec 13 17:11:14 CET 2004 root@orion.redesjm.local:/usr/obj/usr/src/sys/ORION i386 >Description: >How-To-Repeat: >Fix: --- patch-jade begins here --- --- textproc/jade/Makefile.orig Tue Nov 16 22:25:24 2004 +++ textproc/jade/Makefile Tue Nov 16 22:26:55 2004 @@ -52,4 +52,9 @@ ${INSTALL_DATA} ${WRKSRC}/pubtext/xml* ${PREFIX}/share/xml/jade @${XMLCATMGR} -sc ${CATALOG_PORTS_SGML} add CATALOG ${PORTNAME}/catalog -.include +.include + +# don't use more that -O with this port +CFLAGS:= -O ${CFLAGS:N-O*} + +.include --- patch-jade ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 21:10:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E572316A4CE for ; Tue, 14 Dec 2004 21:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A24743D31 for ; Tue, 14 Dec 2004 21:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBELATDu064170 for ; Tue, 14 Dec 2004 21:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBELATTp064169; Tue, 14 Dec 2004 21:10:29 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 21:10:29 GMT Message-Id: <200412142110.iBELATTp064169@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marcus Grando Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcus Grando List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 21:10:30 -0000 The following reply was made to PR ports/74974; it has been noted by GNATS. From: Marcus Grando To: freebsd-gnats-submit@FreeBSD.org, mike@skew.org, sem@FreeBSD.org Cc: Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 Date: Tue, 14 Dec 2004 19:08:57 -0200 * apply patch * rm pkg-req -- begin patch -- diff -ruN py-xml.old/Makefile py-xml/Makefile --- py-xml.old/Makefile Mon Jun 14 03:04:29 2004 +++ py-xml/Makefile Sun Dec 12 05:57:59 2004 @@ -6,7 +6,7 @@ # PORTNAME= xml -PORTVERSION= 0.8.3 +PORTVERSION= 0.8.4 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pyxml @@ -14,22 +14,50 @@ DISTNAME= PyXML-${PORTVERSION} MAINTAINER= mike@skew.org -COMMENT= The Python XML package, including parser, SAX, DOM, and Expat +COMMENT= PyXML: Python XML library enhancements -USE_PYTHON= yes +USE_PYTHON= 2.1+ USE_PYDISTUTILS= yes .include -CPIO= cpio --quiet -pdum -R +CPIOARGS= --quiet -pdum -R DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} PLIST_SUB+= PACKAGE_DIR=_xmlplus + +# PyXML's XPath support for minidom (xml.xpath) is functional and is +# installed by default, unless WITHOUT_XPATH is defined. +# +# PyXML's XSLT support for minidom (xml.xslt) is experimental, and may +# render PyXML incompatible with modern versions of 4Suite. Therefore, +# this port will not install it by default, unless WITH_XSLT is defined. +# These defaults are the same as when PyXML is installed independently. +# +# WITHOUT_XPATH is ignored if WITH_XSLT is defined. +# +# There are no mature XSLT processors that can operate directly on +# minidom documents, but such documents can be converted to formats +# that are supported. 4Suite, for example, can convert a DOM directly +# to a Domlette, and other processors can make use of the serialized +# form of the document. +# +.if defined(WITH_XSLT) PYDISTUTILS_BUILDARGS+= --with-xslt PYDISTUTILS_INSTALLARGS+= --with-xslt - -pre-install: - @ ${SH} ${PKGREQ} INSTALL +PLIST_SUB+= XPATH="" +PLIST_SUB+= XSLT="" +.elif defined(WITHOUT_XPATH) +PYDISTUTILS_BUILDARGS+= --without-xpath --without-xslt +PYDISTUTILS_INSTALLARGS+= --without-xpath --without-xslt +PLIST_SUB+= XPATH="@comment " +PLIST_SUB+= XSLT="@comment " +.else +PYDISTUTILS_BUILDARGS+= --with-xpath --without-xslt +PYDISTUTILS_INSTALLARGS+= --with-xpath --without-xslt +PLIST_SUB+= XPATH="" +PLIST_SUB+= XSLT="@comment " +.endif post-install: .if !defined(NOPORTDOCS) @@ -38,10 +66,10 @@ @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} .endfor @ cd ${WRKSRC}/doc && ${FIND} * \ - | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} + | ${CPIO} ${CPIOARGS} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} @ ${MKDIR} ${EXAMPLESDIR} @ cd ${WRKSRC} && ${FIND} demo test \ - | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} + | ${CPIO} ${CPIOARGS} ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} .endif .include diff -ruN py-xml.old/distinfo py-xml/distinfo --- py-xml.old/distinfo Wed Mar 31 00:12:02 2004 +++ py-xml/distinfo Sat Dec 11 04:11:53 2004 @@ -1,2 +1,2 @@ -MD5 (PyXML-0.8.3.tar.gz) = 7083d950064ce90840d9ed48c818dc85 -SIZE (PyXML-0.8.3.tar.gz) = 729172 +MD5 (PyXML-0.8.4.tar.gz) = 1f7655050cebbb664db976405fdba209 +SIZE (PyXML-0.8.4.tar.gz) = 734954 diff -ruN py-xml.old/pkg-descr py-xml/pkg-descr --- py-xml.old/pkg-descr Tue May 7 06:34:39 2002 +++ py-xml/pkg-descr Sun Dec 12 06:25:41 2004 @@ -1,23 +1,23 @@ -From the website: +PyXML is a collection of libraries to process XML with Python. +It effectively extends and updates Python's built-in XML libraries +(the xml.* modules). It contains, among other things: - The PyXML package is a collection of libraries to process XML with Python. - It contains, among other things + xmlproc: a validating XML 1.0 parser written in Python + Expat: a nonvalidating XML 1.0 parser written in C, plus Python bindings + PySAX: SAX 1 and SAX2 libraries with drivers for most of the parsers + 4DOM: a compliant DOM Level 2 implementation written in Python + javadom: a Java-DOM-implementation-to-standard-Python-DOM adapter + pulldom: a DOM implementation that supports lazy instantiation of nodes + marshal: a module for serializing Python objects to XML formats including + WDDX and XML-RPC + sgmlop: a C helper module that can speed up xmllib (deprecated) & sgmllib - - xmlproc: a validating XML parser - - sgmlop: a C helper module that can speed-up xmllib.py and sgmllib.py by - a factor of 5 - - PySAX: SAX 1 and SAX2 libraries with drivers for most of the parsers - - 4DOM: A fully compliant DOM Level 2 implementation - - javadom: An adapter from Java DOM implementations to the standard Python - DOM binding - - pulldom: a DOM implementation that supports lazy instantiation of nodes - - marshal: a module with several options for serializing Python objects to - XML, including WDDX and XML-RPC - - unicode: a helper module for Python 1.5 users who need conversions - between UTF-8 and ISO-8859-? +It also provides the latest updates/fixes for minidom (the default +xml.dom.implementation), and includes an XPath 1.0 processor for minidom +(xml.xpath). Experimental XSLT 1.0 support for minidom can be added if the +port is installed with WITH_XSLT defined (e.g. "make install WITH_XSLT=yes"). WWW: http://www.pyxml.sourceforge.net/ See also: http://www.python.org/sigs/xml-sig/ --- Jacques Vidrine (original port) --- Johann Visagie (current maintainer) +-- Mike J. Brown (current port maintainer) diff -ruN py-xml.old/pkg-plist py-xml/pkg-plist --- py-xml.old/pkg-plist Wed Aug 6 06:26:03 2003 +++ py-xml/pkg-plist Sun Dec 12 06:16:41 2004 @@ -1,278 +1,3 @@ -%%PORTDOCS%%%%DOCSDIR%%/4DOM/4DOM.web -%%PORTDOCS%%%%DOCSDIR%%/4DOM/Extensions.api -%%PORTDOCS%%%%DOCSDIR%%/4DOM/Extensions.html -%%PORTDOCS%%%%DOCSDIR%%/4DOM/Ranges.api -%%PORTDOCS%%%%DOCSDIR%%/4DOM/Ranges.html -%%PORTDOCS%%%%DOCSDIR%%/4DOM/index.html -%%PORTDOCS%%%%DOCSDIR%%/ANNOUNCE -%%PORTDOCS%%%%DOCSDIR%%/CREDITS -%%PORTDOCS%%%%DOCSDIR%%/LICENCE -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/README.dom -%%PORTDOCS%%%%DOCSDIR%%/README.pyexpat -%%PORTDOCS%%%%DOCSDIR%%/README.sgmlop -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%PORTDOCS%%%%DOCSDIR%%/man/adr_parse.1 -%%PORTDOCS%%%%DOCSDIR%%/man/lynx_parse.1 -%%PORTDOCS%%%%DOCSDIR%%/man/msie_parse.1 -%%PORTDOCS%%%%DOCSDIR%%/man/ns_parse.1 -%%PORTDOCS%%%%DOCSDIR%%/man/xbel2html.1 -%%PORTDOCS%%%%DOCSDIR%%/man/xbel_parse.1 -%%PORTDOCS%%%%DOCSDIR%%/man/xmlproc_parse.1 -%%PORTDOCS%%%%DOCSDIR%%/man/xmlproc_val.1 -%%PORTDOCS%%%%DOCSDIR%%/xml-howto.tex -%%PORTDOCS%%%%DOCSDIR%%/xml-howto.txt -%%PORTDOCS%%%%DOCSDIR%%/xml-ref.tex -%%PORTDOCS%%%%DOCSDIR%%/xml-ref.txt -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/artikler.css -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/basicapi.gif -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/cmdline.gif -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/standard.css -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/wxval.gif -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-catalog-doco.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-doco.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-dtd-doco.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-license.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_cmdline.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_dtdparser.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_ns.html -%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_tut.html -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/README -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/4tidy.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/README -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/__init__.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/addr_book.dtd -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/addr_book1.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/addr_book2.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/benchmark.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/book_catalog1.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/building.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/dom_from_html_file.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/dom_from_xml_file.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/domconv.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/employee_table.html -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/generate_html1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/generate_xml1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/html2html -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/iterator1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/link_title_invert.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/trace_ns.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/visitor1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/xll_replace.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/xpointer_query.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/xptr.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/genxml/README -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/genxml/data.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/genxml/loaddata.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/README -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/qtfmt.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/quotations.dtd -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/sample.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/README -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/sax2obj.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxdemo.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxhack.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxstats.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxtimer.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxtrace.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/benchsgml.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/benchxml.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/test2.htm -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/testxml1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/testxml2.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/README -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/adr_parse.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/bookmark.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/doc/xbel.bib -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/doc/xbel.tex -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/lynx_parse.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/msie_parse.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/ns_parse.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel-1.0.dtd -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel-1.1.dtd -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel2html.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel_parse.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/catalog.soc -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/doctree.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtd2schema.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtdcheck.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtdcmd.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtddoc.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtds/xbel-1.0.dtd -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtds/xsa.dtd -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/nstest1.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/outputters.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/urls.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/wxValidator.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/xbel2html.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/xpcmd.py -%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/xvcmd.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/chkdom_4dom.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/chkdom_minidom.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/TestSuite.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/TestSuite.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/af_20000919.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/af_20000922.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/nc_20000921.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/uo_20010713.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/TestSuite.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/bigTest.html -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/mulit-single.html -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/single.html -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_html_builder.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_memory.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_nss_print.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_single_elements.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_xhtml_printer.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_a.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_applet.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_area.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_base.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_basefont.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_blockquote.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_body.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_br.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_button.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_caption.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_col.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_collection.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_dir.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_div.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_dl.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_document.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_element.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_fieldset.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_font.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_form.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_frame.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_frameset.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_h.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_head.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_hr.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_html.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_html_dom_implementation.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_iframe.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_img.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_input.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_isindex.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_label.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_legend.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_li.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_link.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_map.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_menu.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_meta.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_mod.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_object.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_ol.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_optgroup.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_option.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_p.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_param.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_pre.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_q.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_script.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_section.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_select.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_style.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_table.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_td.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_textarea.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_title.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_tr.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_ul.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/util.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/newtest_node.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_attr.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_cdatasection.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_characterdata.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_comment.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_demo.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_document.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_documentfragment.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_documenttype.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_domimplementation.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_element.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_entity.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_entityreference.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_html.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_namednodemap.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_node.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_nodeiterator.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_nodelist.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_notation.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_processinginstruction.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_pythonic.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_range.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_readers.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_struct.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_text.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_treewalker.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/Base.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/CoreLvl1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/CoreLvl2.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/CoreLvl3.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/Load3.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/TraversalLvl2.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/XMLLvl1.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/XMLLvl2.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/__init__.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/enc_test.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_c14n -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_dom -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_domreg -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_encodings -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_expatreader -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_filter -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_howto -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_htmlb -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_javadom -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_marshal -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_minidom -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_ns -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_parsers -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_pyexpat -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax2 -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax2_xmlproc -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax_xmlproc -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_saxdrivers -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_utils -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_xmlbuilder -%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_xmlproc -%%PORTDOCS%%%%EXAMPLESDIR%%/test/perf_expatbuilder.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/quotes.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/test/regrtest.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test.xml -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test.xml.out -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_c14n.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_dom.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_domreg.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_encodings.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_expatreader.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_filter.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_howto.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_htmlb.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_javadom.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_marshal.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_minidom.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_ns.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_pyexpat.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax2.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax2_xmlproc.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax_xmlproc.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_saxdrivers.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_support.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_utils.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_xmlbuilder.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_xmlproc.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/testxml.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/unittest.py -%%PORTDOCS%%%%EXAMPLESDIR%%/test/xmlval_illformed.dtd bin/xmlproc_parse bin/xmlproc_val %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/FtCore.py @@ -406,7 +131,7 @@ %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext/reader/__init__.py %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext/reader/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext/reader/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/fr_FR/LC_MESSAGES/4Suite.mo +%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/fr/LC_MESSAGES/4Suite.mo %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/html/GenerateHtml.py %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/html/GenerateHtml.pyc %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/html/GenerateHtml.pyo @@ -785,258 +510,512 @@ %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/utils/qp_xml.py %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/utils/qp_xml.pyc %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/utils/qp_xml.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/BuiltInExtFunctions.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/BuiltInExtFunctions.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/BuiltInExtFunctions.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Context.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Context.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Context.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Conversions.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Conversions.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Conversions.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/CoreFunctions.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/CoreFunctions.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/CoreFunctions.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ExpandedNameWrapper.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ExpandedNameWrapper.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ExpandedNameWrapper.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/MessageSource.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/MessageSource.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/MessageSource.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/NamespaceNode.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/NamespaceNode.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/NamespaceNode.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedAbsoluteLocationPath.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedAbsoluteLocationPath.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedAbsoluteLocationPath.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedRelativeLocationPath.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedRelativeLocationPath.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedRelativeLocationPath.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbsoluteLocationPath.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbsoluteLocationPath.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbsoluteLocationPath.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAxisSpecifier.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAxisSpecifier.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAxisSpecifier.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedExpr.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedExpr.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedExpr.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedNodeTest.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedNodeTest.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedNodeTest.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedPredicateList.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedPredicateList.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedPredicateList.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedRelativeLocationPath.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedRelativeLocationPath.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedRelativeLocationPath.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedStep.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedStep.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedStep.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Set.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Set.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Set.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Util.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Util.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Util.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathGrammar.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathGrammar.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathGrammar.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParser.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParser.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParser.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParserBase.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParserBase.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParserBase.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/__init__.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/pyxpath.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/pyxpath.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/pyxpath.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/yappsrt.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/yappsrt.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/yappsrt.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ApplyTemplatesElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ApplyTemplatesElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ApplyTemplatesElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeSetElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeSetElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeSetElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeValueTemplate.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeValueTemplate.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeValueTemplate.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/BuiltInExtElements.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/BuiltInExtElements.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/BuiltInExtElements.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CallTemplateElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CallTemplateElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CallTemplateElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ChooseElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ChooseElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ChooseElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CommentElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CommentElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CommentElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyOfElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyOfElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyOfElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ElementElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ElementElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ElementElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ForEachElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ForEachElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ForEachElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/HtmlWriter.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/HtmlWriter.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/HtmlWriter.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/IfElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/IfElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/IfElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralText.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralText.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralText.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageSource.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageSource.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageSource.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NullWriter.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NullWriter.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NullWriter.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NumberElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NumberElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NumberElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherXslElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherXslElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherXslElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherwiseElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherwiseElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherwiseElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OutputHandler.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OutputHandler.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OutputHandler.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParamElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParamElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParamElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedLocationPathPattern.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedLocationPathPattern.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedLocationPathPattern.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedPattern.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedPattern.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedPattern.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedRelativePathPattern.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedRelativePathPattern.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedRelativePathPattern.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedStepPattern.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedStepPattern.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedStepPattern.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/PlainTextWriter.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/PlainTextWriter.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/PlainTextWriter.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ProcessingInstructionElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ProcessingInstructionElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ProcessingInstructionElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Processor.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Processor.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Processor.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Roman.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Roman.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Roman.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/RtfWriter.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/RtfWriter.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/RtfWriter.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/SortElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/SortElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/SortElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Stylesheet.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Stylesheet.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Stylesheet.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/StylesheetReader.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/StylesheetReader.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/StylesheetReader.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TemplateElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TemplateElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TemplateElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextSax.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextSax.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextSax.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextWriter.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextWriter.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextWriter.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ValueOfElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ValueOfElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ValueOfElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/VariableElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/VariableElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/VariableElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WhenElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WhenElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WhenElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WithParamElement.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WithParamElement.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WithParamElement.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPattern.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPattern.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPattern.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParser.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParser.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParser.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParserBase.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParserBase.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParserBase.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XmlWriter.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XmlWriter.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XmlWriter.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltContext.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltContext.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltContext.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltFunctions.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltFunctions.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltFunctions.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/_4xslt.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/_4xslt.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/_4xslt.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/__init__.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/minisupport.py -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/minisupport.pyc -%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/minisupport.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/utils -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/unicode -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/schema -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/sax/drivers2 -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/sax/drivers -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/sax -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/parsers/xmlproc -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/parsers -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/marshal -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/html -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/fr_FR/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/fr_FR -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext/reader -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/en_US/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/en_US -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/de/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/de -@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/BuiltInExtFunctions.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/BuiltInExtFunctions.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/BuiltInExtFunctions.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Context.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Context.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Context.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Conversions.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Conversions.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Conversions.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/CoreFunctions.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/CoreFunctions.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/CoreFunctions.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ExpandedNameWrapper.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ExpandedNameWrapper.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ExpandedNameWrapper.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/MessageSource.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/MessageSource.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/MessageSource.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/NamespaceNode.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/NamespaceNode.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/NamespaceNode.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedAbsoluteLocationPath.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedAbsoluteLocationPath.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedAbsoluteLocationPath.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedRelativeLocationPath.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedRelativeLocationPath.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbbreviatedRelativeLocationPath.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbsoluteLocationPath.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbsoluteLocationPath.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAbsoluteLocationPath.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAxisSpecifier.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAxisSpecifier.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedAxisSpecifier.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedExpr.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedExpr.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedExpr.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedNodeTest.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedNodeTest.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedNodeTest.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedPredicateList.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedPredicateList.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedPredicateList.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedRelativeLocationPath.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedRelativeLocationPath.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedRelativeLocationPath.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedStep.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedStep.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/ParsedStep.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Set.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Set.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Set.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Util.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Util.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/Util.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathGrammar.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathGrammar.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathGrammar.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParser.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParser.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParser.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParserBase.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParserBase.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/XPathParserBase.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/__init__.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/__init__.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/__init__.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/pyxpath.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/pyxpath.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/pyxpath.pyo +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/yappsrt.py +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/yappsrt.pyc +%%XPATH%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath/yappsrt.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ApplyTemplatesElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ApplyTemplatesElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ApplyTemplatesElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeSetElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeSetElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeSetElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeValueTemplate.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeValueTemplate.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/AttributeValueTemplate.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/BuiltInExtElements.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/BuiltInExtElements.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/BuiltInExtElements.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CallTemplateElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CallTemplateElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CallTemplateElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ChooseElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ChooseElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ChooseElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CommentElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CommentElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CommentElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyOfElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyOfElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/CopyOfElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ElementElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ElementElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ElementElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ForEachElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ForEachElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ForEachElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/HtmlWriter.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/HtmlWriter.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/HtmlWriter.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/IfElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/IfElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/IfElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralText.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralText.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/LiteralText.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageSource.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageSource.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/MessageSource.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NullWriter.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NullWriter.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NullWriter.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NumberElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NumberElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/NumberElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherXslElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherXslElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherXslElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherwiseElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherwiseElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OtherwiseElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OutputHandler.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OutputHandler.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/OutputHandler.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParamElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParamElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParamElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedLocationPathPattern.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedLocationPathPattern.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedLocationPathPattern.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedPattern.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedPattern.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedPattern.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedRelativePathPattern.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedRelativePathPattern.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedRelativePathPattern.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedStepPattern.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedStepPattern.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ParsedStepPattern.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/PlainTextWriter.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/PlainTextWriter.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/PlainTextWriter.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ProcessingInstructionElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ProcessingInstructionElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ProcessingInstructionElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Processor.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Processor.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Processor.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Roman.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Roman.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Roman.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/RtfWriter.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/RtfWriter.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/RtfWriter.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/SortElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/SortElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/SortElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Stylesheet.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Stylesheet.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/Stylesheet.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/StylesheetReader.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/StylesheetReader.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/StylesheetReader.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TemplateElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TemplateElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TemplateElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextSax.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextSax.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextSax.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextWriter.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextWriter.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/TextWriter.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ValueOfElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ValueOfElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/ValueOfElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/VariableElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/VariableElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/VariableElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WhenElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WhenElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WhenElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WithParamElement.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WithParamElement.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/WithParamElement.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPattern.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPattern.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPattern.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParser.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParser.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParser.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParserBase.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParserBase.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XPatternParserBase.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XmlWriter.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XmlWriter.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XmlWriter.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltContext.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltContext.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltContext.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltFunctions.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltFunctions.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/XsltFunctions.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/_4xslt.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/_4xslt.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/_4xslt.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/__init__.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/__init__.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/__init__.pyo +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/minisupport.py +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/minisupport.pyc +%%XSLT%%%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt/minisupport.pyo +%%PORTDOCS%%%%DOCSDIR%%/4DOM/4DOM.web +%%PORTDOCS%%%%DOCSDIR%%/4DOM/Extensions.api +%%PORTDOCS%%%%DOCSDIR%%/4DOM/Extensions.html +%%PORTDOCS%%%%DOCSDIR%%/4DOM/Ranges.api +%%PORTDOCS%%%%DOCSDIR%%/4DOM/Ranges.html +%%PORTDOCS%%%%DOCSDIR%%/4DOM/index.html +%%PORTDOCS%%%%DOCSDIR%%/ANNOUNCE +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/LICENCE +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.dom +%%PORTDOCS%%%%DOCSDIR%%/README.pyexpat +%%PORTDOCS%%%%DOCSDIR%%/README.sgmlop +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/man/adr_parse.1 +%%PORTDOCS%%%%DOCSDIR%%/man/lynx_parse.1 +%%PORTDOCS%%%%DOCSDIR%%/man/msie_parse.1 +%%PORTDOCS%%%%DOCSDIR%%/man/ns_parse.1 +%%PORTDOCS%%%%DOCSDIR%%/man/xbel2html.1 +%%PORTDOCS%%%%DOCSDIR%%/man/xbel_parse.1 +%%PORTDOCS%%%%DOCSDIR%%/man/xmlproc_parse.1 +%%PORTDOCS%%%%DOCSDIR%%/man/xmlproc_val.1 +%%PORTDOCS%%%%DOCSDIR%%/xml-howto.tex +%%PORTDOCS%%%%DOCSDIR%%/xml-howto.txt +%%PORTDOCS%%%%DOCSDIR%%/xml-ref.tex +%%PORTDOCS%%%%DOCSDIR%%/xml-ref.txt +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/artikler.css +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/basicapi.gif +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/cmdline.gif +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/standard.css +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/wxval.gif +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-catalog-doco.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-doco.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-dtd-doco.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc-license.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_cmdline.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_dtdparser.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_ns.html +%%PORTDOCS%%%%DOCSDIR%%/xmlproc/xmlproc_tut.html +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/4tidy.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/__init__.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/addr_book.dtd +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/addr_book1.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/addr_book2.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/benchmark.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/book_catalog1.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/building.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/dom_from_html_file.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/dom_from_xml_file.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/domconv.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/employee_table.html +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/generate_html1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/generate_xml1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/html2html +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/iterator1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/link_title_invert.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/trace_ns.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/visitor1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/xll_replace.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/xpointer_query.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/dom/xptr.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/genxml/README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/genxml/data.txt +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/genxml/loaddata.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/qtfmt.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/quotations.dtd +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/quotes/sample.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/sax2obj.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxdemo.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxhack.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxstats.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxtimer.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sax/saxtrace.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/benchsgml.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/benchxml.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/test2.htm +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/testxml1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/sgmlop/testxml2.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/adr_parse.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/bookmark.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/doc/xbel.bib +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/doc/xbel.tex +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/lynx_parse.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/msie_parse.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/ns_parse.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel-1.0.dtd +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel-1.1.dtd +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel2html.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xbel/xbel_parse.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/catalog.soc +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/doctree.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtd2schema.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtdcheck.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtdcmd.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtddoc.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtds/xbel-1.0.dtd +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/dtds/xsa.dtd +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/nstest1.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/outputters.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/urls.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/wxValidator.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/xbel2html.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/xpcmd.py +%%PORTDOCS%%%%EXAMPLESDIR%%/demo/xmlproc/xvcmd.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/chkdom_4dom.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/chkdom_minidom.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/TestSuite.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/TestSuite.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/af_20000919.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/af_20000922.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/nc_20000921.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/borrowed/uo_20010713.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/TestSuite.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/bigTest.html +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/mulit-single.html +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/single.html +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_html_builder.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_memory.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_nss_print.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_single_elements.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/ext/test_xhtml_printer.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_a.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_applet.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_area.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_base.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_basefont.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_blockquote.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_body.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_br.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_button.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_caption.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_col.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_collection.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_dir.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_div.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_dl.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_document.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_element.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_fieldset.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_font.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_form.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_frame.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_frameset.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_h.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_head.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_hr.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_html.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_html_dom_implementation.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_iframe.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_img.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_input.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_isindex.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_label.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_legend.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_li.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_link.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_map.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_menu.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_meta.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_mod.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_object.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_ol.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_optgroup.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_option.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_p.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_param.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_pre.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_q.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_script.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_section.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_select.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_style.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_table.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_td.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_textarea.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_title.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_tr.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/test_ul.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/html/util.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/newtest_node.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_attr.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_cdatasection.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_characterdata.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_comment.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_demo.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_document.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_documentfragment.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_documenttype.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_domimplementation.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_element.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_entity.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_entityreference.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_html.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_namednodemap.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_node.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_nodeiterator.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_nodelist.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_notation.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_processinginstruction.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_pythonic.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_range.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_readers.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_struct.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_text.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/dom/test_treewalker.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/Base.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/CoreLvl1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/CoreLvl2.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/CoreLvl3.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/Load3.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/TraversalLvl2.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/XMLLvl1.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/XMLLvl2.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/domapi/__init__.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/enc_test.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_c14n +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_dom +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_domreg +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_encodings +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_expatreader +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_filter +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_howto +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_htmlb +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_javadom +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_marshal +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_minidom +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_ns +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_parsers +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_pyexpat +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax2 +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax2_xmlproc +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_sax_xmlproc +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_saxdrivers +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_utils +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_xmlbuilder +%%PORTDOCS%%%%EXAMPLESDIR%%/test/output/test_xmlproc +%%PORTDOCS%%%%EXAMPLESDIR%%/test/perf_expatbuilder.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/quotes.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/test/regrtest.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test.xml +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test.xml.out +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_c14n.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_dom.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_domreg.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_encodings.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_expatreader.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_filter.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_howto.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_htmlb.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_javadom.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_marshal.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_minidom.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_ns.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_pyexpat.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax2.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax2_xmlproc.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_sax_xmlproc.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_saxdrivers.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_support.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_utils.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_xmlbuilder.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/test_xmlproc.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/testxml.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/unittest.py +%%PORTDOCS%%%%EXAMPLESDIR%%/test/xmlval_illformed.dtd %%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/test/output %%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/test/domapi %%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/test/dom/html @@ -1059,4 +1038,26 @@ %%PORTDOCS%%@dirrm %%DOCSDIR%%/man %%PORTDOCS%%@dirrm %%DOCSDIR%%/4DOM %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%XSLT%%@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xslt +%%XPATH%%@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/xpath +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/utils +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/unicode +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/schema +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/sax/drivers2 +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/sax/drivers +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/sax +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/parsers/xmlproc +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/parsers +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/marshal +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/html +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/fr/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/fr +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext/reader +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/ext +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/en_US/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/en_US +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/de/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom/de +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%%/dom +@dirrm %%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%% @unexec rmdir %D/%%PYTHON_SITELIBDIR%%/%%PACKAGE_DIR%% 2>/dev/null || true diff -ruN py-xml.old/pkg-req py-xml/pkg-req --- py-xml.old/pkg-req Fri Aug 1 19:04:57 2003 +++ py-xml/pkg-req Wed Dec 31 21:00:00 1969 @@ -1,17 +0,0 @@ -#!/bin/sh - -PATH=$PATH:/usr/local/bin - -if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then - PYTHON_GT=`python -c 'import string, sys; \ - print string.split(sys.version)[0] >= "2.0" and 1'` - if [ "x${PYTHON_GT}" = "x1" ]; then - exit 0 - else - echo "-----------------------------------------------------------" - echo "PyXML requires Python version 2.0 or greater -" - echo " please update your Python installation before proceeding." - echo "-----------------------------------------------------------" - exit 1 - fi -fi -- end patch -- Regards -- Marcus Grando Grupos Internet S/A marcus(at)corp.grupos.com.br From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 21:20:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B972616A4CE for ; Tue, 14 Dec 2004 21:20:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CA7843D45 for ; Tue, 14 Dec 2004 21:20:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBELKYHF064506 for ; Tue, 14 Dec 2004 21:20:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBELKXc5064505; Tue, 14 Dec 2004 21:20:33 GMT (envelope-from gnats) Date: Tue, 14 Dec 2004 21:20:33 GMT Message-Id: <200412142120.iBELKXc5064505@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Paul Chvostek Subject: Re: ports/75018: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paul Chvostek List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 21:20:34 -0000 The following reply was made to PR ports/75018; it has been noted by GNATS. From: Paul Chvostek To: Sergey Matveychuk Cc: freebsd-gnats-submit@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports/75018: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... Date: Tue, 14 Dec 2004 16:15:28 -0500 --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Dec 14, 2004 at 05:15:06AM +0300, Sergey Matveychuk wrote: > > I don't think it's a good idea to remove conf file this way. > > Use something like this instead: > @unexec if cmp -s %D/etc/rotorouter.conf %D/etc/rotorouter.conf-example; > then rm -f %D/etc/rotorouter.conf; fi Agreed, that's more consistent with what other ports are doing. I've attached a replacement diff against the original port. But ... While this is indeed consistent with how other ports work, it brings up a philosophical question. Should port behaviour upon uninstall be controlled by the port, or by the ports system itself? By simply including the conf file in the +CONTENTS, without this @unexec, a `pkg_delete` will remove the package but leave an altered conf file, while `make deinstall` will remove the conf file as well. Both will display a warning about the MD5 not matching, and neither will return an error, whatever happens. Could this be improved? I think so. (I'm CCing ports@ for discussion.) So ... we have a "convention" amongst other ports of comparing config files against their "-dist" or "-example" counterparts. Should this behaviour be made standard? Perhaps a variable in the Makefile (i.e. SAVEFILES or DO_NOT_DELETE) that contains a list of prefix-less files that should kept rather than deleted if their MD5 is wrong? For basic implementation of this, we wouldn't need to change the pkg_* tools; the existence of the file in the variable could cause bsd.port.mk to generate exactly the @unexec you've recommended above. Unless of course we wanted some kind of override option that would let us say "ya, delete the bugger, I don't care." Is there any merit to any of this, or should folks installing ports just be able to clean up after themselves? p -- Paul Chvostek Operations / Abuse / Whatever it.canada, hosting and development http://www.it.ca/ --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="rotorouter-1.0_1.diff-2" diff -ruN /usr/ports/net-mgmt/rotorouter/pkg-plist rotorouter/pkg-plist --- /usr/ports/net-mgmt/rotorouter/pkg-plist Mon Jun 14 13:56:41 2004 +++ rotorouter/pkg-plist Tue Dec 14 16:11:03 2004 @@ -1,3 +1,4 @@ sbin/rotorouter etc/rc.d/rotorouter.sh etc/rotorouter.conf-example +@unexec if cmp -s %D/etc/rotorouter.conf %D/etc/rotorouter.conf-example; then rm -f %D/etc/rotorouter.conf; fi --FL5UXtIhxfXey3p5-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 21:30:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 427BB16A4CF for ; Tue, 14 Dec 2004 21:30:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F225A43D2D for ; Tue, 14 Dec 2004 21:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBELULgW064754 for ; Tue, 14 Dec 2004 21:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBELULE6064740; Tue, 14 Dec 2004 21:30:21 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 21:30:21 GMT Resent-Message-Id: <200412142130.iBELULE6064740@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, Jose M Rodriguez Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 448A816A4CE; Tue, 14 Dec 2004 21:21:20 +0000 (GMT) Received: from smtp2.jazztel.es (smtp2.jazztel.es [62.14.3.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6981443D5E; Tue, 14 Dec 2004 21:21:19 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp2.jazztel.es with antivirus id 1CeK62-0007YQ-00 Tue, 14 Dec 2004 22:21:00 +0100 Received: from [212.106.236.248] (helo=rguez.homeunix.net) by smtp2.jazztel.es with esmtp id 1CeJz2-0005Jg-00 Tue, 14 Dec 2004 22:13:24 +0100 Received: from orion.redesjm.local (localhost.redesjm.local [127.0.0.1]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id iBELDObh092484; Tue, 14 Dec 2004 22:13:24 +0100 (CET) (envelope-from freebsd@orion.redesjm.local) Received: (from freebsd@localhost) by orion.redesjm.local (8.13.1/8.13.1/Submit) id iBELDNpW092248; Tue, 14 Dec 2004 22:13:23 +0100 (CET) (envelope-from freebsd) Message-Id: <200412142113.iBELDNpW092248@orion.redesjm.local> Date: Tue, 14 Dec 2004 22:13:23 +0100 (CET) From: Jose M Rodriguez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kde@FreeBSD.org Subject: ports/75076: [PATCH] bad checksum for misc/kde3-i18n-es X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jose M Rodriguez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 21:30:22 -0000 >Number: 75076 >Category: ports >Synopsis: [PATCH] bad checksum for misc/kde3-i18n-es >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 14 21:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jose M Rodriguez >Release: FreeBSD 5.3-STABLE i386 >Organization: Redes JM >Environment: System: FreeBSD orion.redesjm.local 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Dec 13 17:11:14 CET 2004 root@orion.redesjm.local:/usr/obj/usr/src/sys/ORION i386 >Description: >How-To-Repeat: >Fix: --- patch-kde-i18n-es begins here --- diff -u /usr/ports/misc/kde3-i18n-es/distinfo misc/kde3-i18n-es/distinfo --- /usr/ports/misc/kde3-i18n-es/distinfo Mon Dec 13 21:11:55 2004 +++ misc/kde3-i18n-es/distinfo Tue Dec 14 14:24:49 2004 @@ -1,2 +1,2 @@ -MD5 (KDE/kde-i18n/kde-i18n-es-3.3.2.tar.bz2) = c95d6403af75db52b9a4e0fbc9980107 -SIZE (KDE/kde-i18n/kde-i18n-es-3.3.2.tar.bz2) = 10347877 +MD5 (KDE/kde-i18n/kde-i18n-es-3.3.2.tar.bz2) = 71a070c92d97a734edc475607994c119 +SIZE (KDE/kde-i18n/kde-i18n-es-3.3.2.tar.bz2) = 10354444 --- patch-kde-i18n-es ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:00:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D28316A4CE for ; Tue, 14 Dec 2004 22:00:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6277F43D66 for ; Tue, 14 Dec 2004 22:00:50 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEM0oT3066507 for ; Tue, 14 Dec 2004 22:00:50 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEM0oT9066498; Tue, 14 Dec 2004 22:00:50 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 22:00:50 GMT Resent-Message-Id: <200412142200.iBEM0oT9066498@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, Jose M Rodriguez Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 014F516A4CF; Tue, 14 Dec 2004 21:56:21 +0000 (GMT) Received: from smtp2.jazztel.es (smtp2.jazztel.es [62.14.3.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id A259643D58; Tue, 14 Dec 2004 21:56:20 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp2.jazztel.es with antivirus id 1CeKeY-0002rs-00 Tue, 14 Dec 2004 22:56:18 +0100 Received: from [212.106.236.248] (helo=rguez.homeunix.net) by smtp2.jazztel.es with esmtp id 1CeKeP-0002ap-00 Tue, 14 Dec 2004 22:56:09 +0100 Received: from orion.redesjm.local (localhost.redesjm.local [127.0.0.1]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id iBELJvww025697; Tue, 14 Dec 2004 22:19:57 +0100 (CET) (envelope-from freebsd@orion.redesjm.local) Received: (from freebsd@localhost) by orion.redesjm.local (8.13.1/8.13.1/Submit) id iBELJvSr025696; Tue, 14 Dec 2004 22:19:57 +0100 (CET) (envelope-from freebsd) Message-Id: <200412142119.iBELJvSr025696@orion.redesjm.local> Date: Tue, 14 Dec 2004 22:19:57 +0100 (CET) From: Jose M Rodriguez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dinoex@FreeBSD.org Subject: ports/75077: [PATCH] adapt sendmail to new ldap semantics X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jose M Rodriguez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:00:50 -0000 >Number: 75077 >Category: ports >Synopsis: [PATCH] adapt sendmail to new ldap semantics >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 Dec 14 22:00:49 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jose M Rodriguez >Release: FreeBSD 5.3-STABLE i386 >Organization: Redes JM >Environment: System: FreeBSD orion.redesjm.local 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Dec 13 17:11:14 CET 2004 root@orion.redesjm.local:/usr/obj/usr/src/sys/ORION i386 >Description: Seems that actual support of openldap by bsd.port.mk prefer USE_OPENLDAP=yes, WANT_OPENLDAP_VER= instead of USE_OPENLDAP_VER= this make also use of the default ldap library from sendmail >How-To-Repeat: >Fix: --- patch-sendmail begins here --- --- mail/sendmail/Makefile.orig Tue Nov 16 19:00:37 2004 +++ mail/sendmail/Makefile Tue Nov 16 19:02:01 2004 @@ -128,7 +128,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/lib/${OPENLDAP_LIB}:${PORTSDIR}/${LDAP_PORT} RUN_DEPENDS+= ${LOCALBASE}/lib/${OPENLDAP_LIB}:${PORTSDIR}/${LDAP_PORT} .else -USE_OPENLDAP_VER?= 22 +USE_OPENLDAP= yes .endif .else CONFLICTS+= sendmail*+ldap*-8.* --- patch-sendmail ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:03:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC92416A4CE; Tue, 14 Dec 2004 22:03:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6F9643D76; Tue, 14 Dec 2004 22:03:21 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from freefall.freebsd.org (lesi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEM3Lfe066735; Tue, 14 Dec 2004 22:03:21 GMT (envelope-from lesi@freefall.freebsd.org) Received: (from lesi@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEM3Lar066731; Tue, 14 Dec 2004 22:03:21 GMT (envelope-from lesi) Date: Tue, 14 Dec 2004 22:03:21 GMT From: Dejan Lesjak Message-Id: <200412142203.iBEM3Lar066731@freefall.freebsd.org> To: lesi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lesi@FreeBSD.org Subject: Re: ports/75073: Update port: games/tenebrae fix problems with xorg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:03:21 -0000 Synopsis: Update port: games/tenebrae fix problems with xorg Responsible-Changed-From-To: freebsd-ports-bugs->lesi Responsible-Changed-By: lesi Responsible-Changed-When: Tue Dec 14 22:02:43 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=75073 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:14:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A46716A4CE; Tue, 14 Dec 2004 22:14:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0374343D46; Tue, 14 Dec 2004 22:14:27 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEMEQ4m070970; Tue, 14 Dec 2004 22:14:26 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEMEQ0I070966; Tue, 14 Dec 2004 22:14:26 GMT (envelope-from pav) Date: Tue, 14 Dec 2004 22:14:26 GMT From: Pav Lucistnik Message-Id: <200412142214.iBEMEQ0I070966@freefall.freebsd.org> To: jylefort@brutele.be, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75042: Update port: games/urban and games/urban-sounds to 1.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:14:27 -0000 Synopsis: Update port: games/urban and games/urban-sounds to 1.5.3 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Tue Dec 14 22:14:20 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75042 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:17:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA4516A4CE; Tue, 14 Dec 2004 22:17:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78B4C43D2D; Tue, 14 Dec 2004 22:17:16 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from freefall.freebsd.org (dinoex@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEMHGWF071114; Tue, 14 Dec 2004 22:17:16 GMT (envelope-from dinoex@freefall.freebsd.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEMHGRj071110; Tue, 14 Dec 2004 23:17:16 +0100 (CET) (envelope-from dinoex) Date: Tue, 14 Dec 2004 23:17:16 +0100 (CET) From: Dirk Meyer Message-Id: <200412142217.iBEMHGRj071110@freefall.freebsd.org> To: dinoex@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Subject: Re: ports/75077: [PATCH] adapt sendmail to new ldap semantics X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:17:16 -0000 Synopsis: [PATCH] adapt sendmail to new ldap semantics Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: dinoex Responsible-Changed-When: Tue Dec 14 23:16:35 CET 2004 Responsible-Changed-Why: I will look into this http://www.freebsd.org/cgi/query-pr.cgi?pr=75077 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:20:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D2AB16A4CF for ; Tue, 14 Dec 2004 22:20:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C935E43D5D for ; Tue, 14 Dec 2004 22:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEMKRM6071396 for ; Tue, 14 Dec 2004 22:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEMKRds071395; Tue, 14 Dec 2004 22:20:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 22:20:27 GMT Resent-Message-Id: <200412142220.iBEMKRds071395@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, Mikolaj Rydzewski Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA3B716A4CE for ; Tue, 14 Dec 2004 22:18:09 +0000 (GMT) Received: from k2.ma.krakow.pl (k2.ma.krakow.pl [62.121.133.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 772F443D58 for ; Tue, 14 Dec 2004 22:18:08 +0000 (GMT) (envelope-from miki@ceti.pl) Received: from hermes.dom (host-ip194-227.crowley.pl [62.111.227.194]) by k2.ma.krakow.pl (8.12.11/8.12.10) with ESMTP id iBEMI0rL058263 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 14 Dec 2004 23:18:01 +0100 (CET) (envelope-from miki@ceti.pl) Received: from hermes.dom (localhost [127.0.0.1]) by hermes.dom (8.12.11/8.12.10) with ESMTP id iBEMHv9c003696 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Dec 2004 23:17:57 +0100 (CET) (envelope-from miki@hermes.dom) Received: (from miki@localhost) by hermes.dom (8.12.11/8.12.10/Submit) id iBEMHuAR003694; Tue, 14 Dec 2004 23:17:56 +0100 (CET) (envelope-from miki) Message-Id: <200412142217.iBEMHuAR003694@hermes.dom> Date: Tue, 14 Dec 2004 23:17:56 +0100 (CET) From: Mikolaj Rydzewski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: miki@ceti.pl Subject: ports/75078: new port - yydecode is a decoder for usenet binary posts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mikolaj Rydzewski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:20:28 -0000 >Number: 75078 >Category: ports >Synopsis: new port - yydecode is a decoder for usenet binary posts >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 Dec 14 22:20:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mikolaj Rydzewski >Release: FreeBSD 5.2.1-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD hermes.dom 5.2.1-RELEASE-p10 FreeBSD 5.2.1-RELEASE-p10 #0: Thu Oct 21 00:19:01 CEST 2004 miki@hermes.dom:/usr/obj/usr/src/sys/HERMES i386 >Description: yydecode - decode yEnc encoded files (binary usenet posts) >How-To-Repeat: >Fix: --- yydecode.sh 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: # # yydecode # yydecode/Makefile # yydecode/distinfo # yydecode/pkg-descr # echo c - yydecode mkdir -p yydecode > /dev/null 2>&1 echo x - yydecode/Makefile sed 's/^X//' >yydecode/Makefile << 'END-of-yydecode/Makefile' X# New ports collection makefile for: yydecode X# Date created: 14 Dec 2004 X# Whom: Mikolaj Rydzewski X# X# $FreeBSD$ X# X XPORTNAME= yydecode XPORTVERSION= 0.2.10 XCATEGORIES= news XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= yydecode X XMAINTAINER= miki@ceti.pl XCOMMENT= decode yEnc encoded files X XMAN1= yydecode.1 XUSE_GMAKE= yes XGNU_CONFIGURE= yes XCONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} X XPLIST_FILES= bin/yydecode X X.include END-of-yydecode/Makefile echo x - yydecode/distinfo sed 's/^X//' >yydecode/distinfo << 'END-of-yydecode/distinfo' XMD5 (yydecode-0.2.10.tar.gz) = 9e6c5eb009f9084f7cbe7e4b766b12d8 XSIZE (yydecode-0.2.10.tar.gz) = 119983 END-of-yydecode/distinfo echo x - yydecode/pkg-descr sed 's/^X//' >yydecode/pkg-descr << 'END-of-yydecode/pkg-descr' Xyydecode started life as a decoder for yEnc encoded binaries, which have Xrecently appeared on Usenet. yydecode works almost identically to the infamous Xuudecode program. Version 0.2.8 and onwards contains a superset of uudecode's Xfunctionality, (ie. decodes standard uuencoded files, as well as Base64 X[RFC2045] encoded files produced by uuencode) and hence can be used as a Xdrop-in replacement in all circumstances. X XWWW: http://yydecode.sf.net/ X X- Mikolaj Rydzewski Xmiki@ceti.pl END-of-yydecode/pkg-descr exit --- yydecode.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:35:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5674C16A50B; Tue, 14 Dec 2004 22:35:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30B1B43D5E; Tue, 14 Dec 2004 22:35:14 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEMZERM075850; Tue, 14 Dec 2004 22:35:14 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEMZDSP075846; Tue, 14 Dec 2004 22:35:13 GMT (envelope-from pav) Date: Tue, 14 Dec 2004 22:35:13 GMT From: Pav Lucistnik Message-Id: <200412142235.iBEMZDSP075846@freefall.freebsd.org> To: estartu@augsuta.de.augusta.de, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75044: [UPDATE] Version Check added to prevent build on python version >= 2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:35:14 -0000 Synopsis: [UPDATE] Version Check added to prevent build on python version >= 2.2 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Tue Dec 14 22:35:07 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75044 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 22:40:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E78C316A4CE for ; Tue, 14 Dec 2004 22:40:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DE7C43D3F for ; Tue, 14 Dec 2004 22:40:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEMeKQ0075932 for ; Tue, 14 Dec 2004 22:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEMeKxt075931; Tue, 14 Dec 2004 22:40:20 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 22:40:20 GMT Resent-Message-Id: <200412142240.iBEMeKxt075931@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, "Arjan van Leeuwen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF51616A4CE for ; Tue, 14 Dec 2004 22:32:26 +0000 (GMT) Received: from winston.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id 5DBE343D2F for ; Tue, 14 Dec 2004 22:32:25 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 40843 invoked from network); 14 Dec 2004 22:32:23 -0000 Received: from unknown (HELO vincent.piwebs.com) (192.168.0.73) by winston.piwebs.com with SMTP; 14 Dec 2004 22:32:23 -0000 Message-Id: <1103063549.0@vincent.piwebs.com> Date: Tue, 14 Dec 2004 23:32:29 +0100 From: "Arjan van Leeuwen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4 cc: lesi@FreeBSD.org Subject: ports/75079: Update audio/yammi to 1.2-rc; fix imake issue with new x.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 22:40:21 -0000 >Number: 75079 >Category: ports >Synopsis: Update audio/yammi to 1.2-rc; fix imake issue with new x.org >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 Dec 14 22:40:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Arjan van Leeuwen >Release: FreeBSD 6.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 6.0-CURRENT #2: Tue Dec 14 20:17:35 CET 2004 root@vincent.piwebs.com:/usr/obj/usr/src/sys/VINCENT >Description: - Update audio/yammi to version 1.2-rc - Fix imake dependency problem with upcoming X.org port [1] [1] Reported by Dejan Lesjak >How-To-Repeat: >Fix: --- yammi.diff begins here --- diff -urN /usr/ports/audio/yammi/Makefile yammi/Makefile --- /usr/ports/audio/yammi/Makefile Wed Feb 4 06:18:48 2004 +++ yammi/Makefile Tue Dec 14 23:29:21 2004 @@ -6,55 +6,59 @@ # PORTNAME= yammi -PORTVERSION= 1.0.r1 -PORTREVISION= 3 +PORTVERSION= 1.2.rc CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.0.r/.0-rc/} +DISTNAME= ${PORTNAME}-${PORTVERSION:S/.2.r/.2-r/} MAINTAINER= avleeuwen@piwebs.com COMMENT= A QT-based music manager with fuzzy search LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis \ - id3-3.8.3:${PORTSDIR}/audio/id3lib \ - xmms.4:${PORTSDIR}/multimedia/xmms + id3-3.8.3:${PORTSDIR}/audio/id3lib + +OPTIONS= ARTS "Arts backend support" on \ + XMMS "XMMS backend support" off \ + NOATUN "Noatun backend support" on USE_QT_VER= 3 USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} ${PTHREAD_CFLAGS}" \ LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}" -CONFIGURE_ARGS+= --program-prefix='' --enable-threading=yes --enable-mt=yes +CONFIGURE_ARGS+=--program-prefix='' --enable-threading=yes --enable-mt=yes \ + --x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include USE_REINPLACE= yes +USE_KDELIBS_VER=3 .include -.if exists(${LOCALBASE}/bin/noatun) -WITH_NOATUN=yes -.endif # exists(${LOCALBASE}/bin/noatun) - -.if defined(WITH_NOATUN) -BUILD_DEPENDS+= noatun:${PORTSDIR}/multimedia/kdemultimedia3 -WITH_KDE=yes +.if defined(WITHOUT_ARTS) +.if defined(WITHOUT_XMMS) +.if defined(WITHOUT_NOATUN) +IGNORE= You must define at least one backend for yammi +.endif +.endif +.endif + +.if !defined(WITHOUT_ARTS) +CONFIGURE_ARGS+=--with-arts +LIB_DEPENDS+= artsgui:${PORTSDIR}/multimedia/kdemultimedia3 .else -CONFIGURE_ARGS+= --disable-noatun -.endif # defined(WITH_NOATUN) - -.if exists(${LOCALBASE}/lib/libkdecore.so) -WITH_KDE=yes -.endif # exists(${LOCALBASE}/lib/libkdecore.so) +CONFIGURE_ARGS+=--without-arts +.endif -.if defined(WITH_KDE) -USE_KDELIBS_VER=3 +.if !defined(WITHOUT_NOATUN) +RUN_DEPENDS+= noatun:${PORTSDIR}/multimedia/kdemultimedia3 +.endif + +.if !defined(WITHOUT_XMMS) +CONFIGURE_ARGS+=--enable-xmms +BUILD_DEPENDS+= xmms-config:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms .else -CONFIGURE_ARGS+= --disable-KDE -.endif # defined(WITH_KDE) - -pre-configure: - @${REINPLACE_CMD} -e 's@-lpthread@${PTHREAD_LIBS}@g' ${WRKSRC}/configure - -post-configure: - @${REINPLACE_CMD} -e 's@$$(DESTDIR)$$(KDEDIR)@$$(prefix)@g' ${WRKSRC}/yammi/docs/en/Makefile +CONFIGURE_ARGS+=--disable-xmms +.endif .include diff -urN /usr/ports/audio/yammi/distinfo yammi/distinfo --- /usr/ports/audio/yammi/distinfo Thu Mar 18 03:27:30 2004 +++ yammi/distinfo Tue Dec 14 21:05:16 2004 @@ -1,2 +1,2 @@ -MD5 (yammi-1.0-rc1.tar.gz) = 7cbc79fbd2fa80b00f4451b7ed3f8f2f -SIZE (yammi-1.0-rc1.tar.gz) = 847291 +MD5 (yammi-1.2-rc.tar.gz) = ab7bdd3fdf0ae671bac02b2f1c960fb7 +SIZE (yammi-1.2-rc.tar.gz) = 1170490 diff -urN /usr/ports/audio/yammi/files/patch-configure yammi/files/patch-configure --- /usr/ports/audio/yammi/files/patch-configure Fri Oct 17 09:20:16 2003 +++ yammi/files/patch-configure Tue Dec 14 21:31:17 2004 @@ -1,92 +1,19 @@ ---- configure.orig Sun Aug 31 23:25:52 2003 -+++ configure Thu Oct 16 00:24:50 2003 -@@ -19343,7 +19343,7 @@ - EOF - fi - --echo "#if ! ($kde_qt_verstring)" >> conftest.$ac_ext -+echo "#if ! (1)" >> conftest.$ac_ext - cat >> conftest.$ac_ext <&5 - echo "${ECHO_T}$USE_RPATH" >&6 - -+if test "x$configure_enable_KDE" = "xyes"; then -+ - echo "$as_me:19952: checking for KDE" >&5 - echo $ECHO_N "checking for KDE... $ECHO_C" >&6 - -@@ -21156,6 +21158,8 @@ - - fi - -+fi -+ - if test "x$configure_enable_KDE" = "xyes"; then - - DO_NOT_COMPILE="$DO_NOT_COMPILE CVS debian bsd-port admin" -@@ -21260,7 +21264,7 @@ +--- configure.orig Tue Dec 14 21:30:57 2004 ++++ configure Tue Dec 14 21:30:42 2004 +@@ -25860,13 +25860,13 @@ + ;; + esac + as_ac_Lib=`echo "ac_cv_lib_$PTHREAD_LIBS''_pthread_create" | $as_tr_sh` +-echo "$as_me:$LINENO: checking for pthread_create in -l$PTHREAD_LIBS" >&5 +-echo $ECHO_N "checking for pthread_create in -l$PTHREAD_LIBS... $ECHO_C" >&6 ++echo "$as_me:$LINENO: checking for pthread_create in $PTHREAD_LIBS" >&5 ++echo $ECHO_N "checking for pthread_create in $PTHREAD_LIBS... $ECHO_C" >&6 + if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS --LIBS="-logg $LIBS" -+LIBS="-logg $LIBS $USER_LDFLAGS" +-LIBS="-l$PTHREAD_LIBS $LIBS" ++LIBS="$PTHREAD_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF - #line 21265 "configure" - #include "confdefs.h" -@@ -21322,7 +21326,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lvorbis $LIBS" -+LIBS="-lvorbis $LIBS $USER_LDFLAGS" - cat >conftest.$ac_ext <<_ACEOF - #line 21327 "configure" - #include "confdefs.h" -@@ -21386,7 +21390,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lvorbisfile $LIBS" -+LIBS="-lvorbisfile $LIBS $USER_LDFLAGS" - cat >conftest.$ac_ext <<_ACEOF - #line 21391 "configure" - #include "confdefs.h" -@@ -21450,7 +21454,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lgdk $LIBS" -+LIBS="-lgdk12 $LIBS $USER_LDFLAGS $X_LDFLAGS" - cat >conftest.$ac_ext <<_ACEOF - #line 21455 "configure" - #include "confdefs.h" -@@ -21498,7 +21502,7 @@ - #define HAVE_LIBGDK 1 - EOF - -- LIBS="-lgdk $LIBS" -+ LIBS="-lgdk12 $LIBS" - - else - configure_enable_ogglibs=no -@@ -21527,7 +21531,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lz $LIBS" -+LIBS="-lz $LIBS $USER_LDFLAGS $X_LDFLAGS" - cat >conftest.$ac_ext <<_ACEOF - #line 21532 "configure" - #include "confdefs.h" -@@ -21589,7 +21593,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lid3 $LIBS" -+LIBS="-lid3 $LIBS $USER_LDFLAGS $X_LDFLAGS" - cat >conftest.$ac_ext <<_ACEOF - #line 21594 "configure" - #include "confdefs.h" + /* #line $LINENO "configure" */ + /* confdefs.h. */ diff -urN /usr/ports/audio/yammi/files/patch-src::icons::Makefile.in yammi/files/patch-src::icons::Makefile.in --- /usr/ports/audio/yammi/files/patch-src::icons::Makefile.in Thu Jan 1 01:00:00 1970 +++ yammi/files/patch-src::icons::Makefile.in Tue Dec 14 22:57:09 2004 @@ -0,0 +1,22 @@ +--- src/icons/Makefile.in.orig Tue Dec 14 22:54:21 2004 ++++ src/icons/Makefile.in Tue Dec 14 22:56:39 2004 +@@ -465,9 +465,17 @@ + #>+ 1 + $(INSTALL_DATA) $(srcdir)/toggle_playlist.png $(DESTDIR)$(kde_datadir)/yammi/icons/crystalsvg/22x22/actions/toggle_playlist.png + +-#>- $(mkinstalldirs) $(kde_icondir)/crystalsvg/{16x16,22x22,32x32,48x48,64x64}/apps/ ++#>- $(mkinstalldirs) $(kde_icondir)/crystalsvg/16x16/apps/ ++#>- $(mkinstalldirs) $(kde_icondir)/crystalsvg/22x22/apps/ ++#>- $(mkinstalldirs) $(kde_icondir)/crystalsvg/32x32/apps/ ++#>- $(mkinstalldirs) $(kde_icondir)/crystalsvg/48x48/apps/ ++#>- $(mkinstalldirs) $(kde_icondir)/crystalsvg/64x64/apps/ + #>+ 1 +- $(mkinstalldirs) $(DESTDIR)$(kde_icondir)/crystalsvg/{16x16,22x22,32x32,48x48,64x64}/apps/ ++ $(mkinstalldirs) $(DESTDIR)$(kde_icondir)/crystalsvg/16x16/apps/ ++ $(mkinstalldirs) $(DESTDIR)$(kde_icondir)/crystalsvg/22x22/apps/ ++ $(mkinstalldirs) $(DESTDIR)$(kde_icondir)/crystalsvg/32x32/apps/ ++ $(mkinstalldirs) $(DESTDIR)$(kde_icondir)/crystalsvg/48x48/apps/ ++ $(mkinstalldirs) $(DESTDIR)$(kde_icondir)/crystalsvg/64x64/apps/ + + #>- $(INSTALL_DATA) $(srcdir)/yammi16x16.png $(kde_icondir)/crystalsvg/16x16/apps/yammi.png + #>+ 1 diff -urN /usr/ports/audio/yammi/pkg-plist yammi/pkg-plist --- /usr/ports/audio/yammi/pkg-plist Wed Oct 1 18:17:50 2003 +++ yammi/pkg-plist Tue Dec 14 22:49:53 2004 @@ -1,12 +1,31 @@ bin/yammi bin/yammiGrabAndEncode -share/doc/HTML/en/yammi/index-1.html -share/doc/HTML/en/yammi/index-2.html -share/doc/HTML/en/yammi/index-3.html -share/doc/HTML/en/yammi/index-4.html -share/doc/HTML/en/yammi/index-5.html -share/doc/HTML/en/yammi/index-6.html -share/doc/HTML/en/yammi/index.html -@dirrm share/doc/HTML/en/yammi -@dirrm share/doc/HTML/en -@dirrm share/doc/HTML +share/doc/HTML/en/yammi/common +share/doc/HTML/en/yammi/screenshot.png +share/doc/HTML/en/yammi/index.docbook +share/doc/HTML/en/yammi/index.cache +share/doc/HTML/en/yammi/index.cache.bz2 +share/locale/de/LC_MESSAGES/yammi.mo +share/locale/es/LC_MESSAGES/yammi.mo +share/locale/it/LC_MESSAGES/yammi.mo +share/apps/yammi/icons/crystalsvg/22x22/actions/enqueue_asnext.png +share/apps/yammi/icons/crystalsvg/22x22/actions/enqueue.png +share/apps/yammi/icons/crystalsvg/22x22/actions/play_now.png +share/apps/yammi/icons/crystalsvg/22x22/actions/stop_prelisten.png +share/apps/yammi/icons/crystalsvg/22x22/actions/prelisten_start.png +share/apps/yammi/icons/crystalsvg/22x22/actions/prelisten_middle.png +share/apps/yammi/icons/crystalsvg/22x22/actions/prelisten_end.png +share/apps/yammi/icons/crystalsvg/22x22/actions/toggle_playlist.png +share/apps/yammi/yammiui.rc +share/icons/crystalsvg/16x16/apps/yammi.png +share/icons/crystalsvg/22x22/apps/yammi.png +share/icons/crystalsvg/32x32/apps/yammi.png +share/icons/crystalsvg/48x48/apps/yammi.png +share/icons/crystalsvg/64x64/apps/yammi.png +share/applnk/Multimedia/yammi.desktop +@dirrm share/apps/yammi/icons/crystalsvg/22x22/actions +@dirrm share/apps/yammi/icons/crystalsvg/22x22 +@dirrm share/apps/yammi/icons/crystalsvg +@dirrm share/apps/yammi/icons +@dirrm share/apps/yammi + --- yammi.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 23:00:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34D3016A4CE for ; Tue, 14 Dec 2004 23:00:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBF6A43D4C for ; Tue, 14 Dec 2004 23:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEN0e7l076604 for ; Tue, 14 Dec 2004 23:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEN0eLd076600; Tue, 14 Dec 2004 23:00:40 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 23:00:40 GMT Resent-Message-Id: <200412142300.iBEN0eLd076600@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, Csaba Molnár Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7954916A4CE for ; Tue, 14 Dec 2004 22:57:15 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6386043D55 for ; Tue, 14 Dec 2004 22:57:15 +0000 (GMT) (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 iBEMvF7a059205 for ; Tue, 14 Dec 2004 22:57:15 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBEMvFD4059204; Tue, 14 Dec 2004 22:57:15 GMT (envelope-from nobody) Message-Id: <200412142257.iBEMvFD4059204@www.freebsd.org> Date: Tue, 14 Dec 2004 22:57:15 GMT From: Csaba Molnár To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75081: avidemux2 build error (missing aclocal19) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 23:00:41 -0000 >Number: 75081 >Category: ports >Synopsis: avidemux2 build error (missing aclocal19) >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: Tue Dec 14 23:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Csaba Molnár >Release: FreeBSD 5.3-STABLE >Organization: University of Debrecen >Environment: FreeBSD mcsaba.sh.nek.klte.hu 5.3-STABLE FreeBSD 5.3-STABLE #28: Mon Dec 13 13:48:10 CET 2004 root@mcsaba.sh.nek.klte.hu:/usr/obj/usr/src/sys/smokie53b i386 >Description: When upgrading avidemux2-2.0.32 to 2.0.34, portupgrade fails displaying this error message: ===> Vulnerability check disabled, database not found ===> Found saved configuration for avidemux2-2.0.34 ===> Extracting for avidemux2-2.0.34 => Checksum OK for avidemux-2.0.34-test1.tar.gz. ===> Patching for avidemux2-2.0.34 env: /usr/local/bin/aclocal19: No such file or directory *** Error code 127 Stop in /usr/ports/multimedia/avidemux2. *** Error code 1 Stop in /usr/ports/multimedia/avidemux2. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade53397.12 ma ke DEPENDS_TARGET=package ** Fix the problem and try again. >How-To-Repeat: Try to upgrade avidemux2 to latest port version. >Fix: I guess adding automake-1.9.3 as a dependency would help, though it seems to be there in the Makefile (but I have to admit I'm not an expert, just an ordinary desktop user using avidemux almost daily :)) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 23:01:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79E2816A4CE; Tue, 14 Dec 2004 23:01:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53B0443D58; Tue, 14 Dec 2004 23:01:20 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from freefall.freebsd.org (lesi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBEN1KjB076743; Tue, 14 Dec 2004 23:01:20 GMT (envelope-from lesi@freefall.freebsd.org) Received: (from lesi@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBEN1KkM076739; Tue, 14 Dec 2004 23:01:20 GMT (envelope-from lesi) Date: Tue, 14 Dec 2004 23:01:20 GMT From: Dejan Lesjak Message-Id: <200412142301.iBEN1KkM076739@freefall.freebsd.org> To: lesi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lesi@FreeBSD.org Subject: Re: ports/75079: Update audio/yammi to 1.2-rc; fix imake issue with new x.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 23:01:20 -0000 Synopsis: Update audio/yammi to 1.2-rc; fix imake issue with new x.org Responsible-Changed-From-To: freebsd-ports-bugs->lesi Responsible-Changed-By: lesi Responsible-Changed-When: Tue Dec 14 23:00:58 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=75079 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 23:16:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9207216A4CF; Tue, 14 Dec 2004 23:16:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3958443D55; Tue, 14 Dec 2004 23:16:27 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBENGRHr081019; Tue, 14 Dec 2004 23:16:27 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBENGR1k081015; Tue, 14 Dec 2004 23:16:27 GMT (envelope-from pav) Date: Tue, 14 Dec 2004 23:16:27 GMT From: Pav Lucistnik Message-Id: <200412142316.iBENGR1k081015@freefall.freebsd.org> To: antonio@php.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75059: Update port: sysutils/pear-Cache_Lite to 1.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 23:16:27 -0000 Synopsis: Update port: sysutils/pear-Cache_Lite to 1.4.0 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Tue Dec 14 23:16:21 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75059 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 23:30:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE1316A4CE for ; Tue, 14 Dec 2004 23:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DFA043D2D for ; Tue, 14 Dec 2004 23:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBENUSNc081525 for ; Tue, 14 Dec 2004 23:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBENUSb4081524; Tue, 14 Dec 2004 23:30:28 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 23:30:28 GMT Resent-Message-Id: <200412142330.iBENUSb4081524@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 Melson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26A9916A4D0 for ; Tue, 14 Dec 2004 23:24:56 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2BB943D1D for ; Tue, 14 Dec 2004 23:24:55 +0000 (GMT) (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 iBENOtcj095413 for ; Tue, 14 Dec 2004 23:24:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBENOtaL095412; Tue, 14 Dec 2004 23:24:55 GMT (envelope-from nobody) Message-Id: <200412142324.iBENOtaL095412@www.freebsd.org> Date: Tue, 14 Dec 2004 23:24:55 GMT From: Robert Melson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75083: kdelibs3 fails on compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 23:30:28 -0000 >Number: 75083 >Category: ports >Synopsis: kdelibs3 fails on compilation >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: Tue Dec 14 23:30:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Robert Melson >Release: 4.10 >Organization: >Environment: FreeBSD aragorn.rgmhome.net 4.10-STABLE FreeBSD 4.10-STABLE #14: Tue Aug 10 15:55:47 MDT 2004 root@aragorn.rgmhome.net:/usr/obj/usr/src/sys/ARAGORN i386 >Description: Compilation of kdelibs3 (v 3.3.2_1) fails in component kioslave: gmake[4]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.3.2/kioslave/http' source='http.cc' object='http.lo' libtool=yes \ DEPDIR=.deps depmode=gcc /bin/sh ../../admin/depcomp \ /bin/sh ../../libtool --silent --mode=compile --tag=CXX c++ -DHAVE_CONFIG_H -I.-I. -I../.. -I../../dcop -I../../kio/kssl -I../../interfaces -I../../kio/httpfilter -I../../dcop -I../../libltdl -I../../kdefx -I../../kdecore -I../../kdeui -I../../kio -I../../kio/kio -I../../kio/kfile -I../.. -I/usr/X11R6/include -I/usr/local/include -I/usr/local/include -I/usr/include @INCLUDE_des@ -D_THREAD_SAFE-pthread -DQT_THREAD_SUPPORT -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -DNDEBUG -DNO_DEBUG -O2 -O -pipe-fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -c -o http.lo http.cc c++: cannot specify -o with -c or -S and multiple compilations gmake[4]: *** [http.lo] Error 1 gmake[4]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.3.2/kioslave/http' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.3.2/kioslave/http' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.3.2/kioslave' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.3.2' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/x11/kdelibs3. Error appears to be: c++: cannot specify -o with -c or -S and multiple compilations. This same error occured in the current version (3.3.1) and in gnomevfs2 (v 2.8.X). >How-To-Repeat: Any compilation of kdelibs3 in my environment fails with the error indicated. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 23:30:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C112716A4CF for ; Tue, 14 Dec 2004 23:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BF0A43D4C for ; Tue, 14 Dec 2004 23:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBENURZ2081470 for ; Tue, 14 Dec 2004 23:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBENURbW081462; Tue, 14 Dec 2004 23:30:27 GMT (envelope-from gnats) Resent-Date: Tue, 14 Dec 2004 23:30:27 GMT Resent-Message-Id: <200412142330.iBENURbW081462@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 Ranner Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50A4716A4CE for ; Tue, 14 Dec 2004 23:20:38 +0000 (GMT) Received: from dwarf.jawa.at (83-64-202-3.dynamic.adsl-line.inode.at [83.64.202.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CA8743D39 for ; Tue, 14 Dec 2004 23:20:28 +0000 (GMT) (envelope-from mranner@dwarf.jawa.at) Received: from dwarf.jawa.at (localhost.jawa.at [127.0.0.1]) by dwarf.jawa.at (8.12.11/8.12.9) with ESMTP id iBENJIQr007928 for ; Wed, 15 Dec 2004 00:19:18 +0100 (CET) (envelope-from mranner@dwarf.jawa.at) Received: (from root@localhost) by dwarf.jawa.at (8.12.11/8.12.9/Submit) id iBENJHpL007927; Wed, 15 Dec 2004 00:19:17 +0100 (CET) (envelope-from mranner) Message-Id: <200412142319.iBENJHpL007927@dwarf.jawa.at> Date: Wed, 15 Dec 2004 00:19:17 +0100 (CET) From: Michael Ranner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75082: [MAINTAINER] irc/kvirc: [New MASTER_SITES, Fix arts support] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 23:30:29 -0000 >Number: 75082 >Category: ports >Synopsis: [MAINTAINER] irc/kvirc: [New MASTER_SITES, Fix arts support] >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 Dec 14 23:30:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Ranner >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD dwarf.jawa.at 4.10-RELEASE FreeBSD 4.10-RELEASE #5: Sun Oct 10 14:39:51 CEST 2004 System: FreeBSD walgrind.jawa.at 5.3-RELEASE FreeBSD 5.3-RELEASE #2: Sun Nov 14 19:00:07 CET 2004 >Description: - Remove duplicate and inactive mirror from MASTER_SITES - Add new official mirrors to MASTER_SITES - Fix arts support, add OPTIONS for audio settings and use correct entries for LIB_DEPENDS - Use DATADIR in pkg-plist Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- kvirc-3.0.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/irc/kvirc/Makefile /usr/ports/irc/kvirc.update/Makefile --- /usr/ports/irc/kvirc/Makefile Wed Aug 11 20:01:44 2004 +++ /usr/ports/irc/kvirc.update/Makefile Tue Dec 14 23:34:37 2004 @@ -7,17 +7,18 @@ PORTNAME= kvirc PORTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= irc kde MASTER_SITES= ftp://ftp.kvirc.net/pub/%SUBDIR%/ \ - ftp://ftp.de.kvirc.net/%SUBDIR%/ \ ftp://ftp.kvirc.de/pub/%SUBDIR%/ \ - ftp://kvirc.firenze.linux.it/%SUBDIR%/ -MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}/source/ + ftp://mirror.dudcore.net/pub/%SUBDIR%/ \ + ftp://ftp.kvirc.pragmaware.net/pub/%SUBDIR%/ +MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}/source MAINTAINER= mranner@inode.at COMMENT= IRC client for QT and KDE -LIB_DEPENDS= gsm.1:${PORTSDIR}/audio/gsm +LIB_DEPENDS= GNU_CONFIGURE= yes INSTALLS_SHLIB= yes @@ -32,7 +33,38 @@ MAN1= kvirc.1 +OPTIONS= ARTS "Compile with arts support" on \ + AUDIOFILE "Compile with libaudiofile support" on \ + ESOUND "Compile with esound support" off \ + GSM "Compile with gsm support" off + +.include + +.if defined(WITH_ARTS) +LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts +.else +CONFIGURE_ARGS+= --without-arts-support +.endif + +.if defined(WITH_AUDIOFILE) +LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile +.else +CONFIGURE_ARGS+= --without-af-support +.endif + +.if defined(WITH_ESOUND) +LIB_DEPENDS+= esd.2:${PORTSDIR}/audio/esound +.else +CONFIGURE_ARGS+= --without-esd-support +.endif + +.if defined(WITH_GSM) +LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm +.else +CONFIGURE_ARGS+= --without-gsm +.endif + post-patch: ${REINPLACE_CMD} -e "s,-lpthread,${PTHREAD_LIBS},g" ${WRKSRC}/configure -.include +.include diff -ruN --exclude=CVS /usr/ports/irc/kvirc/files/patch-configure /usr/ports/irc/kvirc.update/files/patch-configure --- /usr/ports/irc/kvirc/files/patch-configure Thu May 20 21:16:08 2004 +++ /usr/ports/irc/kvirc.update/files/patch-configure Tue Dec 14 22:19:54 2004 @@ -1,15 +1,24 @@ ---- configure Sat Jan 4 16:54:22 2003 -+++ configure.patched Mon Jan 5 19:16:14 2004 -@@ -18245,7 +18245,7 @@ - ss_save_LIBS="$LIBS" - CPPFLAGS="-I$SS_X_INCDIR -I$SS_QT_INCDIR $CPPFLAGS $X_CFLAGS" +--- configure.orig Sun May 30 19:45:23 2004 ++++ configure Tue Dec 14 22:19:39 2004 +@@ -14789,7 +14789,7 @@ + + + # This can be used to rebuild libtool when needed +-LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++LIBTOOL_DEPS="--disable-ltlibs /usr/local/share/libtool15/ltmain.sh" + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' +@@ -18476,7 +18476,7 @@ + fi + CPPFLAGS="$CPPFLAGS -I$SS_QT_INCDIR $CPPFLAGS $X_CFLAGS" CXXFLAGS="-O2 -Wall $CXXFLAGS" - LIBS="-L$SS_X_LIBDIR -L$SS_QT_LIBDIR $X_EXTRA_LIBS $X_LIBS $LIBS -l$SS_QTLIB_NAME -lXext -lX11" + LIBS="-L$SS_X_LIBDIR -L$SS_QT_LIBDIR $X_EXTRA_LIBS $X_LIBS $LIBS -l$SS_QTLIB_NAME -lXext -lX11 -pthread" LDFLAGS="-s $LDFLAGS" cat >conftest.$ac_ext <<_ACEOF #line $LINENO "configure" -@@ -18586,7 +18586,7 @@ +@@ -18859,7 +18859,7 @@ ss_save_LIBS="$LIBS" CPPFLAGS="-I$SS_X_INCDIR -I$SS_QT_INCDIR -I$SS_KDE_INCDIR $CPPFLAGS $X_CFLAGS" CXXFLAGS="-O2 -Wall $CXXFLAGS" @@ -18,3 +27,12 @@ if test "$SS_LINK_TO_LIBDL" = "yes"; then LIBS="$LIBS -ldl"; fi +@@ -19695,7 +19695,7 @@ + ss_save_LIBS="$LIBS" + CPPFLAGS="-I$SS_X_INCDIR -I$SS_QT_INCDIR -I$SS_KDE_INCDIR $CPPFLAGS $X_CFLAGS" + CXXFLAGS="-O2 -Wall $CXXFLAGS" +- LIBS="-L$SS_KDE_LIBDIR -L$SS_X_LIBDIR -L$SS_QT_LIBDIR $X_ $X_EXTRA_LIBS $X_LIBS $LIBS -lsoundserver_idl -lkdecore -l$SS_QTLIB_NAME $SS_XFT_LIBLINK -lXext -lX11 -Wl,-rpath $SS_KDE_LIBDIR" ++ LIBS="-L$SS_KDE_LIBDIR -L$SS_X_LIBDIR -L$SS_QT_LIBDIR $X_ $X_EXTRA_LIBS $X_LIBS $LIBS -lsoundserver_idl -lkdecore -l$SS_QTLIB_NAME $SS_XFT_LIBLINK -lXext -lX11 -pthread -Wl,-rpath $SS_KDE_LIBDIR" + if test "$SS_LINK_TO_LIBDL" = "yes"; then + LIBS="$LIBS -ldl"; + fi diff -ruN --exclude=CVS /usr/ports/irc/kvirc/pkg-plist /usr/ports/irc/kvirc.update/pkg-plist --- /usr/ports/irc/kvirc/pkg-plist Wed Aug 11 10:43:23 2004 +++ /usr/ports/irc/kvirc.update/pkg-plist Tue Dec 14 23:35:45 2004 @@ -244,1078 +244,1078 @@ lib/libkvilib.la lib/libkvilib.so lib/libkvilib.so.3 -share/kvirc/%%VER%%/config/modules/libkvitip.kvc -share/kvirc/%%VER%%/config/serverdb.kvc -share/kvirc/%%VER%%/config/texticons.kvc -share/kvirc/%%VER%%/defscript/default.kvs -share/kvirc/%%VER%%/help/en/_db_class.idx -share/kvirc/%%VER%%/help/en/_db_command.idx -share/kvirc/%%VER%%/help/en/_db_event.idx -share/kvirc/%%VER%%/help/en/_db_function.idx -share/kvirc/%%VER%%/help/en/_db_generic.idx -share/kvirc/%%VER%%/help/en/_db_keyterms.idx -share/kvirc/%%VER%%/help/en/_db_language.idx -share/kvirc/%%VER%%/help/en/_db_module.idx -share/kvirc/%%VER%%/help/en/_db_widget.idx -share/kvirc/%%VER%%/help/en/class_button.html -share/kvirc/%%VER%%/help/en/class_checkbox.html -share/kvirc/%%VER%%/help/en/class_combobox.html -share/kvirc/%%VER%%/help/en/class_file.html -share/kvirc/%%VER%%/help/en/class_label.html -share/kvirc/%%VER%%/help/en/class_layout.html -share/kvirc/%%VER%%/help/en/class_lineedit.html -share/kvirc/%%VER%%/help/en/class_list.html -share/kvirc/%%VER%%/help/en/class_menubar.html -share/kvirc/%%VER%%/help/en/class_multilineedit.html -share/kvirc/%%VER%%/help/en/class_object.html -share/kvirc/%%VER%%/help/en/class_socket.html -share/kvirc/%%VER%%/help/en/class_string.html -share/kvirc/%%VER%%/help/en/class_urllabel.html -share/kvirc/%%VER%%/help/en/class_widget.html -share/kvirc/%%VER%%/help/en/class_window.html -share/kvirc/%%VER%%/help/en/cmd_about.kvirc.html -share/kvirc/%%VER%%/help/en/cmd_addtarget.html -share/kvirc/%%VER%%/help/en/cmd_admin.html -share/kvirc/%%VER%%/help/en/cmd_alias.html -share/kvirc/%%VER%%/help/en/cmd_aliaseditor.open.html -share/kvirc/%%VER%%/help/en/cmd_avatar.html -share/kvirc/%%VER%%/help/en/cmd_away.html -share/kvirc/%%VER%%/help/en/cmd_awhois.html -share/kvirc/%%VER%%/help/en/cmd_back.html -share/kvirc/%%VER%%/help/en/cmd_ban.html -share/kvirc/%%VER%%/help/en/cmd_beep.html -share/kvirc/%%VER%%/help/en/cmd_break.html -share/kvirc/%%VER%%/help/en/cmd_button.html -share/kvirc/%%VER%%/help/en/cmd_buttonctl.html -share/kvirc/%%VER%%/help/en/cmd_channelsjoin.open.html -share/kvirc/%%VER%%/help/en/cmd_class.html -share/kvirc/%%VER%%/help/en/cmd_clear.html -share/kvirc/%%VER%%/help/en/cmd_clearobjects.html -share/kvirc/%%VER%%/help/en/cmd_clock.add.html -share/kvirc/%%VER%%/help/en/cmd_codetester.open.html -share/kvirc/%%VER%%/help/en/cmd_config.clear.html -share/kvirc/%%VER%%/help/en/cmd_config.clearsection.html -share/kvirc/%%VER%%/help/en/cmd_config.close.html -share/kvirc/%%VER%%/help/en/cmd_config.flush.html -share/kvirc/%%VER%%/help/en/cmd_config.setsection.html -share/kvirc/%%VER%%/help/en/cmd_config.write.html -share/kvirc/%%VER%%/help/en/cmd_connect.html -share/kvirc/%%VER%%/help/en/cmd_ctcp.html -share/kvirc/%%VER%%/help/en/cmd_dcc.canvas.html -share/kvirc/%%VER%%/help/en/cmd_dcc.chat.html -share/kvirc/%%VER%%/help/en/cmd_dcc.get.html -share/kvirc/%%VER%%/help/en/cmd_dcc.recv.html -share/kvirc/%%VER%%/help/en/cmd_dcc.rsend.html -share/kvirc/%%VER%%/help/en/cmd_dcc.send.html -share/kvirc/%%VER%%/help/en/cmd_dcc.voice.html -share/kvirc/%%VER%%/help/en/cmd_defpopup.html -share/kvirc/%%VER%%/help/en/cmd_delete.html -share/kvirc/%%VER%%/help/en/cmd_deltarget.html -share/kvirc/%%VER%%/help/en/cmd_deop.html -share/kvirc/%%VER%%/help/en/cmd_destroy.html -share/kvirc/%%VER%%/help/en/cmd_devoice.html -share/kvirc/%%VER%%/help/en/cmd_dialog.file.html -share/kvirc/%%VER%%/help/en/cmd_dialog.image.html -share/kvirc/%%VER%%/help/en/cmd_dialog.message.html -share/kvirc/%%VER%%/help/en/cmd_dialog.textinput.html -share/kvirc/%%VER%%/help/en/cmd_disconnect.html -share/kvirc/%%VER%%/help/en/cmd_dockwidget.hide.html -share/kvirc/%%VER%%/help/en/cmd_dockwidget.show.html -share/kvirc/%%VER%%/help/en/cmd_echo.html -share/kvirc/%%VER%%/help/en/cmd_echoprivmsg.html -share/kvirc/%%VER%%/help/en/cmd_eval.html -share/kvirc/%%VER%%/help/en/cmd_event.html -share/kvirc/%%VER%%/help/en/cmd_eventctl.html -share/kvirc/%%VER%%/help/en/cmd_eventeditor.open.html -share/kvirc/%%VER%%/help/en/cmd_exec.html -share/kvirc/%%VER%%/help/en/cmd_file.addimagepath.html -share/kvirc/%%VER%%/help/en/cmd_file.copy.html -share/kvirc/%%VER%%/help/en/cmd_file.delimagepath.html -share/kvirc/%%VER%%/help/en/cmd_file.mkdir.html -share/kvirc/%%VER%%/help/en/cmd_file.remove.html -share/kvirc/%%VER%%/help/en/cmd_file.rename.html -share/kvirc/%%VER%%/help/en/cmd_file.rmdir.html -share/kvirc/%%VER%%/help/en/cmd_file.write.html -share/kvirc/%%VER%%/help/en/cmd_filetransferwindow.open.html -share/kvirc/%%VER%%/help/en/cmd_for.html -share/kvirc/%%VER%%/help/en/cmd_foreach.html -share/kvirc/%%VER%%/help/en/cmd_halt.html -share/kvirc/%%VER%%/help/en/cmd_help.html -share/kvirc/%%VER%%/help/en/cmd_help.open.html -share/kvirc/%%VER%%/help/en/cmd_help.search.html -share/kvirc/%%VER%%/help/en/cmd_host.html -share/kvirc/%%VER%%/help/en/cmd_http.get.html -share/kvirc/%%VER%%/help/en/cmd_ident.start.html -share/kvirc/%%VER%%/help/en/cmd_ident.stop.html -share/kvirc/%%VER%%/help/en/cmd_if.html -share/kvirc/%%VER%%/help/en/cmd_info.html -share/kvirc/%%VER%%/help/en/cmd_invite.html -share/kvirc/%%VER%%/help/en/cmd_iograph.add.html -share/kvirc/%%VER%%/help/en/cmd_join.html -share/kvirc/%%VER%%/help/en/cmd_kick.html -share/kvirc/%%VER%%/help/en/cmd_killclass.html -share/kvirc/%%VER%%/help/en/cmd_killtimer.html -share/kvirc/%%VER%%/help/en/cmd_lag.disable.html -share/kvirc/%%VER%%/help/en/cmd_lag.enable.html -share/kvirc/%%VER%%/help/en/cmd_lag.setalarmtime.html -share/kvirc/%%VER%%/help/en/cmd_lag.setinterval.html -share/kvirc/%%VER%%/help/en/cmd_leave.html -share/kvirc/%%VER%%/help/en/cmd_links.html -share/kvirc/%%VER%%/help/en/cmd_links.open.html -share/kvirc/%%VER%%/help/en/cmd_list.html -share/kvirc/%%VER%%/help/en/cmd_list.open.html -share/kvirc/%%VER%%/help/en/cmd_log.flush.html -share/kvirc/%%VER%%/help/en/cmd_log.start.html -share/kvirc/%%VER%%/help/en/cmd_log.stop.html -share/kvirc/%%VER%%/help/en/cmd_logview.open.html -share/kvirc/%%VER%%/help/en/cmd_lusers.html -share/kvirc/%%VER%%/help/en/cmd_me.html -share/kvirc/%%VER%%/help/en/cmd_mode.html -share/kvirc/%%VER%%/help/en/cmd_motd.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.add.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.addurl.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.next.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.pause.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.play.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.prev.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.quit.html -share/kvirc/%%VER%%/help/en/cmd_mp3player.stop.html -share/kvirc/%%VER%%/help/en/cmd_msg.html -share/kvirc/%%VER%%/help/en/cmd_nick.html -share/kvirc/%%VER%%/help/en/cmd_notice.html -share/kvirc/%%VER%%/help/en/cmd_op.html -share/kvirc/%%VER%%/help/en/cmd_openurl.html -share/kvirc/%%VER%%/help/en/cmd_oper.html -share/kvirc/%%VER%%/help/en/cmd_option.html -share/kvirc/%%VER%%/help/en/cmd_options.dialog.html -share/kvirc/%%VER%%/help/en/cmd_options.edit.html -share/kvirc/%%VER%%/help/en/cmd_options.pages.html -share/kvirc/%%VER%%/help/en/cmd_options.save.html -share/kvirc/%%VER%%/help/en/cmd_parse.html -share/kvirc/%%VER%%/help/en/cmd_part.html -share/kvirc/%%VER%%/help/en/cmd_pass.html -share/kvirc/%%VER%%/help/en/cmd_play.html -share/kvirc/%%VER%%/help/en/cmd_popup.html -share/kvirc/%%VER%%/help/en/cmd_popupeditor.open.html -share/kvirc/%%VER%%/help/en/cmd_privateimpl.html -share/kvirc/%%VER%%/help/en/cmd_privmsg.html -share/kvirc/%%VER%%/help/en/cmd_query.html -share/kvirc/%%VER%%/help/en/cmd_quit.html -share/kvirc/%%VER%%/help/en/cmd_quote.html -share/kvirc/%%VER%%/help/en/cmd_raise.html -share/kvirc/%%VER%%/help/en/cmd_raw.html -share/kvirc/%%VER%%/help/en/cmd_raweditor.open.html -share/kvirc/%%VER%%/help/en/cmd_regchan.add.html -share/kvirc/%%VER%%/help/en/cmd_regchan.list.html -share/kvirc/%%VER%%/help/en/cmd_regchan.remove.html -share/kvirc/%%VER%%/help/en/cmd_regchan.setproperty.html -share/kvirc/%%VER%%/help/en/cmd_reguser.add.html -share/kvirc/%%VER%%/help/en/cmd_reguser.addmask.html -share/kvirc/%%VER%%/help/en/cmd_reguser.delmask.html -share/kvirc/%%VER%%/help/en/cmd_reguser.edit.html -share/kvirc/%%VER%%/help/en/cmd_reguser.remove.html -share/kvirc/%%VER%%/help/en/cmd_reguser.setproperty.html -share/kvirc/%%VER%%/help/en/cmd_reguser.showlist.html -share/kvirc/%%VER%%/help/en/cmd_reguser.wizard.html -share/kvirc/%%VER%%/help/en/cmd_return.html -share/kvirc/%%VER%%/help/en/cmd_run.html -share/kvirc/%%VER%%/help/en/cmd_say.html -share/kvirc/%%VER%%/help/en/cmd_server.html -share/kvirc/%%VER%%/help/en/cmd_service.html -share/kvirc/%%VER%%/help/en/cmd_setmenu.html -share/kvirc/%%VER%%/help/en/cmd_setreturn.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.add.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.clear.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.list.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.remove.html -share/kvirc/%%VER%%/help/en/cmd_sharedfileswindow.open.html -share/kvirc/%%VER%%/help/en/cmd_snd.play.html -share/kvirc/%%VER%%/help/en/cmd_socketspy.open.html -share/kvirc/%%VER%%/help/en/cmd_sound.html -share/kvirc/%%VER%%/help/en/cmd_spaste.clipboard.html -share/kvirc/%%VER%%/help/en/cmd_spaste.file.html -share/kvirc/%%VER%%/help/en/cmd_spaste.list.html -share/kvirc/%%VER%%/help/en/cmd_spaste.setdelay.html -share/kvirc/%%VER%%/help/en/cmd_spaste.stop.html -share/kvirc/%%VER%%/help/en/cmd_squery.html -share/kvirc/%%VER%%/help/en/cmd_squit.html -share/kvirc/%%VER%%/help/en/cmd_srand.html -share/kvirc/%%VER%%/help/en/cmd_stats.html -share/kvirc/%%VER%%/help/en/cmd_switch.html -share/kvirc/%%VER%%/help/en/cmd_system.setenv.html -share/kvirc/%%VER%%/help/en/cmd_term.open.html -share/kvirc/%%VER%%/help/en/cmd_time.html -share/kvirc/%%VER%%/help/en/cmd_timer.html -share/kvirc/%%VER%%/help/en/cmd_tip.open.html -share/kvirc/%%VER%%/help/en/cmd_tmphighlight.add.html -share/kvirc/%%VER%%/help/en/cmd_tmphighlight.remove.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.addbutton.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.addseparator.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.create.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.define.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.destroy.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.hide.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.removeitem.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.setbutton.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.show.html -share/kvirc/%%VER%%/help/en/cmd_toolbareditor.open.html -share/kvirc/%%VER%%/help/en/cmd_topic.html -share/kvirc/%%VER%%/help/en/cmd_trace.html -share/kvirc/%%VER%%/help/en/cmd_unban.html -share/kvirc/%%VER%%/help/en/cmd_url.config.html -share/kvirc/%%VER%%/help/en/cmd_url.list.html -share/kvirc/%%VER%%/help/en/cmd_version.html -share/kvirc/%%VER%%/help/en/cmd_voice.html -share/kvirc/%%VER%%/help/en/cmd_while.html -share/kvirc/%%VER%%/help/en/cmd_who.html -share/kvirc/%%VER%%/help/en/cmd_whois.html -share/kvirc/%%VER%%/help/en/cmd_whowas.html -share/kvirc/%%VER%%/help/en/cmd_window.activate.html -share/kvirc/%%VER%%/help/en/cmd_window.clearOutput.html -share/kvirc/%%VER%%/help/en/cmd_window.close.html -share/kvirc/%%VER%%/help/en/cmd_window.demandAttention.html -share/kvirc/%%VER%%/help/en/cmd_window.dock.html -share/kvirc/%%VER%%/help/en/cmd_window.listtypes.html -share/kvirc/%%VER%%/help/en/cmd_window.maximize.html -share/kvirc/%%VER%%/help/en/cmd_window.minimize.html -share/kvirc/%%VER%%/help/en/cmd_window.restore.html -share/kvirc/%%VER%%/help/en/cmd_window.undock.html -share/kvirc/%%VER%%/help/en/doc_aliases.html -share/kvirc/%%VER%%/help/en/doc_antispam.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_class_index_all.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_command_index_all.html -share/kvirc/%%VER%%/help/en/doc_command_rebinding.html -share/kvirc/%%VER%%/help/en/doc_connection_dependant_commands.html -share/kvirc/%%VER%%/help/en/doc_crypt_engines.html -share/kvirc/%%VER%%/help/en/doc_ctcp_avatar.html -share/kvirc/%%VER%%/help/en/doc_ctcp_handling.html -share/kvirc/%%VER%%/help/en/doc_datatypes.html -share/kvirc/%%VER%%/help/en/doc_dcc_connection.html -share/kvirc/%%VER%%/help/en/doc_escape_sequences.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_event_index_all.html -share/kvirc/%%VER%%/help/en/doc_events.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_function_index_all.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_generic_index_all.html -share/kvirc/%%VER%%/help/en/doc_image_id.html -share/kvirc/%%VER%%/help/en/doc_irc_masks.html -share/kvirc/%%VER%%/help/en/doc_ircintro.html -share/kvirc/%%VER%%/help/en/doc_isanyconsoleconnected.html -share/kvirc/%%VER%%/help/en/doc_keyboard.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_keyterms_index_all.html -share/kvirc/%%VER%%/help/en/doc_kvircintro.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_language_index_all.html -share/kvirc/%%VER%%/help/en/doc_language_overview.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_module_index_all.html -share/kvirc/%%VER%%/help/en/doc_modules.html -share/kvirc/%%VER%%/help/en/doc_nickserv_proto.html -share/kvirc/%%VER%%/help/en/doc_noblockingdialogs.html -share/kvirc/%%VER%%/help/en/doc_notify_list.html -share/kvirc/%%VER%%/help/en/doc_objects.html -share/kvirc/%%VER%%/help/en/doc_operators.html -share/kvirc/%%VER%%/help/en/doc_registered_users.html -share/kvirc/%%VER%%/help/en/doc_rfc2812.html -share/kvirc/%%VER%%/help/en/doc_rfc2821wrappers.html -share/kvirc/%%VER%%/help/en/doc_shared_files.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_widget_index_all.html -share/kvirc/%%VER%%/help/en/doc_window_naming_conventions.html -share/kvirc/%%VER%%/help/en/event_onaccelkeypressed.html -share/kvirc/%%VER%%/help/en/event_onaction.html -share/kvirc/%%VER%%/help/en/event_onban.html -share/kvirc/%%VER%%/help/en/event_onbanexception.html -share/kvirc/%%VER%%/help/en/event_onbanexceptionremove.html -share/kvirc/%%VER%%/help/en/event_onchanadmin.html -share/kvirc/%%VER%%/help/en/event_onchannellinkpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onchannelmessage.html -share/kvirc/%%VER%%/help/en/event_onchannelnickdefaultactionrequest.html -share/kvirc/%%VER%%/help/en/event_onchannelnickpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onchannelnotice.html -share/kvirc/%%VER%%/help/en/event_onchannelpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onchannelsync.html -share/kvirc/%%VER%%/help/en/event_onchannelwindowcreated.html -share/kvirc/%%VER%%/help/en/event_onchanservnotice.html -share/kvirc/%%VER%%/help/en/event_onconsolepopuprequest.html -share/kvirc/%%VER%%/help/en/event_onctcpflood.html -share/kvirc/%%VER%%/help/en/event_onctcpreply.html -share/kvirc/%%VER%%/help/en/event_onctcprequest.html -share/kvirc/%%VER%%/help/en/event_ondccchatconnected.html -share/kvirc/%%VER%%/help/en/event_ondccchatconnectioninprogress.html -share/kvirc/%%VER%%/help/en/event_ondccchatdisconnected.html -share/kvirc/%%VER%%/help/en/event_ondccchaterror.html -share/kvirc/%%VER%%/help/en/event_ondccchatmessage.html -share/kvirc/%%VER%%/help/en/event_ondccchatwindowclosing.html -share/kvirc/%%VER%%/help/en/event_ondccchatwindowcreated.html -share/kvirc/%%VER%%/help/en/event_ondechanadmin.html -share/kvirc/%%VER%%/help/en/event_ondehalfop.html -share/kvirc/%%VER%%/help/en/event_ondeop.html -share/kvirc/%%VER%%/help/en/event_ondeuserop.html -share/kvirc/%%VER%%/help/en/event_ondevoice.html -share/kvirc/%%VER%%/help/en/event_onframewindowcreated.html -share/kvirc/%%VER%%/help/en/event_onframewindowdestroyed.html -share/kvirc/%%VER%%/help/en/event_onhalfop.html -share/kvirc/%%VER%%/help/en/event_onhighlight.html -share/kvirc/%%VER%%/help/en/event_onhostlinkpopuprequest.html -share/kvirc/%%VER%%/help/en/event_oninvite.html -share/kvirc/%%VER%%/help/en/event_oninviteexception.html -share/kvirc/%%VER%%/help/en/event_oninviteexceptionremove.html -share/kvirc/%%VER%%/help/en/event_onirc.html -share/kvirc/%%VER%%/help/en/event_onircconnectionestablished.html -share/kvirc/%%VER%%/help/en/event_onircconnectionterminated.html -share/kvirc/%%VER%%/help/en/event_onirccontextcreated.html -share/kvirc/%%VER%%/help/en/event_onirccontextdestroyed.html -share/kvirc/%%VER%%/help/en/event_onjoin.html -share/kvirc/%%VER%%/help/en/event_onkeyset.html -share/kvirc/%%VER%%/help/en/event_onkeyunset.html -share/kvirc/%%VER%%/help/en/event_onkick.html -share/kvirc/%%VER%%/help/en/event_onkvircshutdown.html -share/kvirc/%%VER%%/help/en/event_onkvircstartup.html -share/kvirc/%%VER%%/help/en/event_onlagalarmtimedown.html -share/kvirc/%%VER%%/help/en/event_onlagalarmtimeup.html -share/kvirc/%%VER%%/help/en/event_onlagcheck.html -share/kvirc/%%VER%%/help/en/event_onlimitset.html -share/kvirc/%%VER%%/help/en/event_onlimitunset.html -share/kvirc/%%VER%%/help/en/event_onmeaway.html -share/kvirc/%%VER%%/help/en/event_onmeback.html -share/kvirc/%%VER%%/help/en/event_onmeban.html -share/kvirc/%%VER%%/help/en/event_onmebanexception.html -share/kvirc/%%VER%%/help/en/event_onmebanexceptionremove.html -share/kvirc/%%VER%%/help/en/event_onmechanadmin.html -share/kvirc/%%VER%%/help/en/event_onmedechanadmin.html -share/kvirc/%%VER%%/help/en/event_onmedehalfop.html -share/kvirc/%%VER%%/help/en/event_onmedeop.html -share/kvirc/%%VER%%/help/en/event_onmedeuserop.html -share/kvirc/%%VER%%/help/en/event_onmedevoice.html -share/kvirc/%%VER%%/help/en/event_onmehalfop.html -share/kvirc/%%VER%%/help/en/event_onmeinviteexception.html -share/kvirc/%%VER%%/help/en/event_onmeinviteexceptionremove.html -share/kvirc/%%VER%%/help/en/event_onmejoin.html -share/kvirc/%%VER%%/help/en/event_onmekick.html -share/kvirc/%%VER%%/help/en/event_onmenickchange.html -share/kvirc/%%VER%%/help/en/event_onmeop.html -share/kvirc/%%VER%%/help/en/event_onmepart.html -share/kvirc/%%VER%%/help/en/event_onmeunban.html -share/kvirc/%%VER%%/help/en/event_onmeuserop.html -share/kvirc/%%VER%%/help/en/event_onmevoice.html -share/kvirc/%%VER%%/help/en/event_onnickchange.html -share/kvirc/%%VER%%/help/en/event_onnicklinkdefaultactionrequest.html -share/kvirc/%%VER%%/help/en/event_onnicklinkpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onnickservnotice.html -share/kvirc/%%VER%%/help/en/event_onnotifylistdefaultactionrequest.html -share/kvirc/%%VER%%/help/en/event_onnotifylistpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onnotifyoffline.html -share/kvirc/%%VER%%/help/en/event_onnotifyonline.html -share/kvirc/%%VER%%/help/en/event_onop.html -share/kvirc/%%VER%%/help/en/event_onpart.html -share/kvirc/%%VER%%/help/en/event_onping.html -share/kvirc/%%VER%%/help/en/event_onpong.html -share/kvirc/%%VER%%/help/en/event_onquerymessage.html -share/kvirc/%%VER%%/help/en/event_onquerynickdefaultactionrequest.html -share/kvirc/%%VER%%/help/en/event_onquerynickpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onquerynotice.html -share/kvirc/%%VER%%/help/en/event_onquerypopuprequest.html -share/kvirc/%%VER%%/help/en/event_onquerytargetadded.html -share/kvirc/%%VER%%/help/en/event_onquerywindowcreated.html -share/kvirc/%%VER%%/help/en/event_onquerywindowrequest.html -share/kvirc/%%VER%%/help/en/event_onquit.html -share/kvirc/%%VER%%/help/en/event_onserverlinkpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onservernotice.html -share/kvirc/%%VER%%/help/en/event_ontextviewdoubleclicked.html -share/kvirc/%%VER%%/help/en/event_ontopic.html -share/kvirc/%%VER%%/help/en/event_onunban.html -share/kvirc/%%VER%%/help/en/event_onunhandledliteral.html -share/kvirc/%%VER%%/help/en/event_onurl.html -share/kvirc/%%VER%%/help/en/event_onurllinkpopuprequest.html -share/kvirc/%%VER%%/help/en/event_onusermode.html -share/kvirc/%%VER%%/help/en/event_onuserop.html -share/kvirc/%%VER%%/help/en/event_onvoice.html -share/kvirc/%%VER%%/help/en/event_onwindowactivated.html -share/kvirc/%%VER%%/help/en/event_onwindowpopuprequest.html -share/kvirc/%%VER%%/help/en/fnc_$.html -share/kvirc/%%VER%%/help/en/fnc_$lag.lag.html -share/kvirc/%%VER%%/help/en/fnc_active.html -share/kvirc/%%VER%%/help/en/fnc_ascii.html -share/kvirc/%%VER%%/help/en/fnc_avatar.html -share/kvirc/%%VER%%/help/en/fnc_away.html -share/kvirc/%%VER%%/help/en/fnc_b.html -share/kvirc/%%VER%%/help/en/fnc_base64toAscii.html -share/kvirc/%%VER%%/help/en/fnc_calc.html -share/kvirc/%%VER%%/help/en/fnc_chan.admincount.html -share/kvirc/%%VER%%/help/en/fnc_chan.bancount.html -share/kvirc/%%VER%%/help/en/fnc_chan.banexceptioncount.html -share/kvirc/%%VER%%/help/en/fnc_chan.banexceptionlist.html -share/kvirc/%%VER%%/help/en/fnc_chan.banlist.html -share/kvirc/%%VER%%/help/en/fnc_chan.getflag.html -share/kvirc/%%VER%%/help/en/fnc_chan.halfopcount.html -share/kvirc/%%VER%%/help/en/fnc_chan.invitecount.html -share/kvirc/%%VER%%/help/en/fnc_chan.invitelist.html -share/kvirc/%%VER%%/help/en/fnc_chan.isadmin.html -share/kvirc/%%VER%%/help/en/fnc_chan.ishalfop.html -share/kvirc/%%VER%%/help/en/fnc_chan.ismeadmin.html -share/kvirc/%%VER%%/help/en/fnc_chan.ismeop.html -share/kvirc/%%VER%%/help/en/fnc_chan.ison.html -share/kvirc/%%VER%%/help/en/fnc_chan.isop.html -share/kvirc/%%VER%%/help/en/fnc_chan.isuserop.html -share/kvirc/%%VER%%/help/en/fnc_chan.isvoice.html -share/kvirc/%%VER%%/help/en/fnc_chan.key.html -share/kvirc/%%VER%%/help/en/fnc_chan.limit.html -share/kvirc/%%VER%%/help/en/fnc_chan.matchban.html -share/kvirc/%%VER%%/help/en/fnc_chan.matchbanexception.html -share/kvirc/%%VER%%/help/en/fnc_chan.matchinvite.html -share/kvirc/%%VER%%/help/en/fnc_chan.mode.html -share/kvirc/%%VER%%/help/en/fnc_chan.name.html -share/kvirc/%%VER%%/help/en/fnc_chan.opcount.html -share/kvirc/%%VER%%/help/en/fnc_chan.topic.html -share/kvirc/%%VER%%/help/en/fnc_chan.topicsetat.html -share/kvirc/%%VER%%/help/en/fnc_chan.topicsetby.html -share/kvirc/%%VER%%/help/en/fnc_chan.usercount.html -share/kvirc/%%VER%%/help/en/fnc_chan.useropcount.html -share/kvirc/%%VER%%/help/en/fnc_chan.users.html -share/kvirc/%%VER%%/help/en/fnc_chan.voicecount.html -share/kvirc/%%VER%%/help/en/fnc_channel.html -share/kvirc/%%VER%%/help/en/fnc_char.html -share/kvirc/%%VER%%/help/en/fnc_classdefined.html -share/kvirc/%%VER%%/help/en/fnc_config.filelist.html -share/kvirc/%%VER%%/help/en/fnc_config.filename.html -share/kvirc/%%VER%%/help/en/fnc_config.hassection.html -share/kvirc/%%VER%%/help/en/fnc_config.id.html -share/kvirc/%%VER%%/help/en/fnc_config.keylist.html -share/kvirc/%%VER%%/help/en/fnc_config.open.html -share/kvirc/%%VER%%/help/en/fnc_config.read.html -share/kvirc/%%VER%%/help/en/fnc_config.readonly.html -share/kvirc/%%VER%%/help/en/fnc_config.section.html -share/kvirc/%%VER%%/help/en/fnc_config.sectionlist.html -share/kvirc/%%VER%%/help/en/fnc_console.html -share/kvirc/%%VER%%/help/en/fnc_context.html -share/kvirc/%%VER%%/help/en/fnc_cr.html -share/kvirc/%%VER%%/help/en/fnc_date.html -share/kvirc/%%VER%%/help/en/fnc_dockwidget.isvisible.html -share/kvirc/%%VER%%/help/en/fnc_features.html -share/kvirc/%%VER%%/help/en/fnc_file.exists.html -share/kvirc/%%VER%%/help/en/fnc_file.extractfilename.html -share/kvirc/%%VER%%/help/en/fnc_file.extractpath.html -share/kvirc/%%VER%%/help/en/fnc_file.fixpath.html -share/kvirc/%%VER%%/help/en/fnc_file.globaldir.html -share/kvirc/%%VER%%/help/en/fnc_file.localdir.html -share/kvirc/%%VER%%/help/en/fnc_file.ps.html -share/kvirc/%%VER%%/help/en/fnc_file.read.html -share/kvirc/%%VER%%/help/en/fnc_file.size.html -share/kvirc/%%VER%%/help/en/fnc_file.type.html -share/kvirc/%%VER%%/help/en/fnc_fmtlink.html -share/kvirc/%%VER%%/help/en/fnc_hextoAscii.html -share/kvirc/%%VER%%/help/en/fnc_hostname.html -share/kvirc/%%VER%%/help/en/fnc_ic.html -share/kvirc/%%VER%%/help/en/fnc_icon.html -share/kvirc/%%VER%%/help/en/fnc_iconname.html -share/kvirc/%%VER%%/help/en/fnc_isMainWindowMinimized.html -share/kvirc/%%VER%%/help/en/fnc_ismehalfop.html -share/kvirc/%%VER%%/help/en/fnc_ismeop.html -share/kvirc/%%VER%%/help/en/fnc_ismeuserop.html -share/kvirc/%%VER%%/help/en/fnc_ismevoice.html -share/kvirc/%%VER%%/help/en/fnc_istimer.html -share/kvirc/%%VER%%/help/en/fnc_iswellknown.html -share/kvirc/%%VER%%/help/en/fnc_k.html -share/kvirc/%%VER%%/help/en/fnc_lag.getalarmtime.html -share/kvirc/%%VER%%/help/en/fnc_lag.getinterval.html -share/kvirc/%%VER%%/help/en/fnc_lf.html -share/kvirc/%%VER%%/help/en/fnc_log.file.html -share/kvirc/%%VER%%/help/en/fnc_mask.hasnumerichost.html -share/kvirc/%%VER%%/help/en/fnc_mask.host.html -share/kvirc/%%VER%%/help/en/fnc_mask.html -share/kvirc/%%VER%%/help/en/fnc_mask.match.html -share/kvirc/%%VER%%/help/en/fnc_mask.nick.html -share/kvirc/%%VER%%/help/en/fnc_mask.user.html -share/kvirc/%%VER%%/help/en/fnc_me.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getchannels.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getfilename.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getfreq.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getlength.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_album.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_artist.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_comment.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_copright.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_crc.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_date.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_emphasis.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_genre.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_layer.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_original.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_title.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_tracknumber.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getmp3tag_version.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getposition.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.getrate.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.gettime.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.gettitle.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.ispaused.html -share/kvirc/%%VER%%/help/en/fnc_mp3player.isplaying.html -share/kvirc/%%VER%%/help/en/fnc_msgtype.html -share/kvirc/%%VER%%/help/en/fnc_my.host.html -share/kvirc/%%VER%%/help/en/fnc_my.network.html -share/kvirc/%%VER%%/help/en/fnc_my.nick.html -share/kvirc/%%VER%%/help/en/fnc_my.server.html -share/kvirc/%%VER%%/help/en/fnc_my.umode.html -share/kvirc/%%VER%%/help/en/fnc_my.user.html -share/kvirc/%%VER%%/help/en/fnc_new.html -share/kvirc/%%VER%%/help/en/fnc_o.html -share/kvirc/%%VER%%/help/en/fnc_option.html -share/kvirc/%%VER%%/help/en/fnc_options.isdialog.html -share/kvirc/%%VER%%/help/en/fnc_query.html -share/kvirc/%%VER%%/help/en/fnc_r.html -share/kvirc/%%VER%%/help/en/fnc_rand.html -share/kvirc/%%VER%%/help/en/fnc_regchan.find.html -share/kvirc/%%VER%%/help/en/fnc_regchan.match.html -share/kvirc/%%VER%%/help/en/fnc_regchan.property.html -share/kvirc/%%VER%%/help/en/fnc_reguser.exactmatch.html -share/kvirc/%%VER%%/help/en/fnc_reguser.list.html -share/kvirc/%%VER%%/help/en/fnc_reguser.mask.html -share/kvirc/%%VER%%/help/en/fnc_reguser.match.html -share/kvirc/%%VER%%/help/en/fnc_reguser.matchproperty.html -share/kvirc/%%VER%%/help/en/fnc_reguser.property.html -share/kvirc/%%VER%%/help/en/fnc_selected.html -share/kvirc/%%VER%%/help/en/fnc_server.html -share/kvirc/%%VER%%/help/en/fnc_split.html -share/kvirc/%%VER%%/help/en/fnc_str.append.html -share/kvirc/%%VER%%/help/en/fnc_str.cmp.html -share/kvirc/%%VER%%/help/en/fnc_str.cmpnocase.html -share/kvirc/%%VER%%/help/en/fnc_str.contains.html -share/kvirc/%%VER%%/help/en/fnc_str.containsnocase.html -share/kvirc/%%VER%%/help/en/fnc_str.equal.html -share/kvirc/%%VER%%/help/en/fnc_str.equalnocase.html -share/kvirc/%%VER%%/help/en/fnc_str.find.html -share/kvirc/%%VER%%/help/en/fnc_str.findfirst.html -share/kvirc/%%VER%%/help/en/fnc_str.findfirstnocase.html -share/kvirc/%%VER%%/help/en/fnc_str.findlast.html -share/kvirc/%%VER%%/help/en/fnc_str.findlastnocase.html -share/kvirc/%%VER%%/help/en/fnc_str.insert.html -share/kvirc/%%VER%%/help/en/fnc_str.isempty.html -share/kvirc/%%VER%%/help/en/fnc_str.isnumber.html -share/kvirc/%%VER%%/help/en/fnc_str.isunsignednumber.html -share/kvirc/%%VER%%/help/en/fnc_str.left.html -share/kvirc/%%VER%%/help/en/fnc_str.lefttofirst.html -share/kvirc/%%VER%%/help/en/fnc_str.lefttolast.html -share/kvirc/%%VER%%/help/en/fnc_str.len.html -share/kvirc/%%VER%%/help/en/fnc_str.lowcase.html -share/kvirc/%%VER%%/help/en/fnc_str.match.html -share/kvirc/%%VER%%/help/en/fnc_str.matchnocase.html -share/kvirc/%%VER%%/help/en/fnc_str.mid.html -share/kvirc/%%VER%%/help/en/fnc_str.prepend.html -share/kvirc/%%VER%%/help/en/fnc_str.replace.html -share/kvirc/%%VER%%/help/en/fnc_str.replacenocase.html -share/kvirc/%%VER%%/help/en/fnc_str.right.html -share/kvirc/%%VER%%/help/en/fnc_str.rightfromfirst.html -share/kvirc/%%VER%%/help/en/fnc_str.rightfromlast.html -share/kvirc/%%VER%%/help/en/fnc_str.strip.html -share/kvirc/%%VER%%/help/en/fnc_str.stripleft.html -share/kvirc/%%VER%%/help/en/fnc_str.stripright.html -share/kvirc/%%VER%%/help/en/fnc_str.token.html -share/kvirc/%%VER%%/help/en/fnc_str.upcase.html -share/kvirc/%%VER%%/help/en/fnc_str.word.html -share/kvirc/%%VER%%/help/en/fnc_sw.html -share/kvirc/%%VER%%/help/en/fnc_system.getenv.html -share/kvirc/%%VER%%/help/en/fnc_system.hostname.html -share/kvirc/%%VER%%/help/en/fnc_system.osmachine.html -share/kvirc/%%VER%%/help/en/fnc_system.osname.html -share/kvirc/%%VER%%/help/en/fnc_system.osnodename.html -share/kvirc/%%VER%%/help/en/fnc_system.osrelease.html -share/kvirc/%%VER%%/help/en/fnc_system.ostype.html -share/kvirc/%%VER%%/help/en/fnc_system.osversion.html -share/kvirc/%%VER%%/help/en/fnc_target.html -share/kvirc/%%VER%%/help/en/fnc_this.html -share/kvirc/%%VER%%/help/en/fnc_time.html -share/kvirc/%%VER%%/help/en/fnc_tmphighlight.ishighlighted.html -share/kvirc/%%VER%%/help/en/fnc_toolbar.exists.html -share/kvirc/%%VER%%/help/en/fnc_toolbar.list.html -share/kvirc/%%VER%%/help/en/fnc_u.html -share/kvirc/%%VER%%/help/en/fnc_unixtime.html -share/kvirc/%%VER%%/help/en/fnc_username.html -share/kvirc/%%VER%%/help/en/fnc_version.html -share/kvirc/%%VER%%/help/en/fnc_window.caption.html -share/kvirc/%%VER%%/help/en/fnc_window.console.html -share/kvirc/%%VER%%/help/en/fnc_window.exists.html -share/kvirc/%%VER%%/help/en/fnc_window.hasInput.html -share/kvirc/%%VER%%/help/en/fnc_window.hasOutput.html -share/kvirc/%%VER%%/help/en/fnc_window.hasUserFocus.html -share/kvirc/%%VER%%/help/en/fnc_window.html -share/kvirc/%%VER%%/help/en/fnc_window.isMaximized.html -share/kvirc/%%VER%%/help/en/fnc_window.isMinimized.html -share/kvirc/%%VER%%/help/en/fnc_window.list.html -share/kvirc/%%VER%%/help/en/fnc_window.type.html -share/kvirc/%%VER%%/help/en/helplogoleft.png -share/kvirc/%%VER%%/help/en/helplogoright.png -share/kvirc/%%VER%%/help/en/index.html -share/kvirc/%%VER%%/help/en/module_config.html -share/kvirc/%%VER%%/help/en/module_lamerizer.html -share/kvirc/%%VER%%/help/en/module_log.html -share/kvirc/%%VER%%/help/en/module_mp3player.html -share/kvirc/%%VER%%/help/en/module_reguser.html -share/kvirc/%%VER%%/help/en/module_rijndael.html -share/kvirc/%%VER%%/help/en/module_url.html -share/kvirc/%%VER%%/help/en/widget_ctcpavatarprotooptions.html -share/kvirc/%%VER%%/help/en/widget_ctcpfloodprotectionoptions.html -share/kvirc/%%VER%%/license/COPYING -share/kvirc/%%VER%%/locale/about_de.mo -share/kvirc/%%VER%%/locale/about_es.mo -share/kvirc/%%VER%%/locale/about_it.mo -share/kvirc/%%VER%%/locale/dcc_de.mo -share/kvirc/%%VER%%/locale/dcc_es.mo -share/kvirc/%%VER%%/locale/dcc_it.mo -share/kvirc/%%VER%%/locale/editor_de.mo -share/kvirc/%%VER%%/locale/editor_es.mo -share/kvirc/%%VER%%/locale/editor_it.mo -share/kvirc/%%VER%%/locale/kvirc_de.mo -share/kvirc/%%VER%%/locale/kvirc_es.mo -share/kvirc/%%VER%%/locale/kvirc_fr.mo -share/kvirc/%%VER%%/locale/kvirc_it.mo -share/kvirc/%%VER%%/locale/kvirc_nl.mo -share/kvirc/%%VER%%/locale/kvirc_pl.mo -share/kvirc/%%VER%%/locale/kvirc_pt.mo -share/kvirc/%%VER%%/locale/kvirc_pt_BR.mo -share/kvirc/%%VER%%/locale/kvirc_sr.mo -share/kvirc/%%VER%%/locale/logview_de.mo -share/kvirc/%%VER%%/locale/logview_es.mo -share/kvirc/%%VER%%/locale/logview_it.mo -share/kvirc/%%VER%%/locale/sharedfileswindow_de.mo -share/kvirc/%%VER%%/locale/sharedfileswindow_es.mo -share/kvirc/%%VER%%/locale/sharedfileswindow_it.mo -share/kvirc/%%VER%%/modules/caps/crypt/lamerizer -share/kvirc/%%VER%%/modules/caps/crypt/rijndael -share/kvirc/%%VER%%/modules/caps/serverimport/mircimport -share/kvirc/%%VER%%/modules/caps/tool/filetransferwindow -share/kvirc/%%VER%%/modules/caps/tool/logview -share/kvirc/%%VER%%/modules/caps/tool/sharedfileswindow -share/kvirc/%%VER%%/modules/caps/toolbar/tb_options -share/kvirc/%%VER%%/modules/caps/toolbar/tb_scripting -share/kvirc/%%VER%%/modules/caps/toolbar/tb_winops -share/kvirc/%%VER%%/modules/caps/toolbar/url -share/kvirc/%%VER%%/modules/libkviabout.la -share/kvirc/%%VER%%/modules/libkviabout.so -share/kvirc/%%VER%%/modules/libkvialiaseditor.la -share/kvirc/%%VER%%/modules/libkvialiaseditor.so -share/kvirc/%%VER%%/modules/libkvichan.la -share/kvirc/%%VER%%/modules/libkvichan.so -share/kvirc/%%VER%%/modules/libkvichannelsjoin.la -share/kvirc/%%VER%%/modules/libkvichannelsjoin.so -share/kvirc/%%VER%%/modules/libkviclock.la -share/kvirc/%%VER%%/modules/libkviclock.so -share/kvirc/%%VER%%/modules/libkvicodetester.la -share/kvirc/%%VER%%/modules/libkvicodetester.so -share/kvirc/%%VER%%/modules/libkviconfig.la -share/kvirc/%%VER%%/modules/libkviconfig.so -share/kvirc/%%VER%%/modules/libkvidcc.la -share/kvirc/%%VER%%/modules/libkvidcc.so -share/kvirc/%%VER%%/modules/libkvidialog.la -share/kvirc/%%VER%%/modules/libkvidialog.so -share/kvirc/%%VER%%/modules/libkvidockwidget.la -share/kvirc/%%VER%%/modules/libkvidockwidget.so -share/kvirc/%%VER%%/modules/libkvieditor.la -share/kvirc/%%VER%%/modules/libkvieditor.so -share/kvirc/%%VER%%/modules/libkvieventeditor.la -share/kvirc/%%VER%%/modules/libkvieventeditor.so -share/kvirc/%%VER%%/modules/libkvifile.la -share/kvirc/%%VER%%/modules/libkvifile.so -share/kvirc/%%VER%%/modules/libkvifiletransferwindow.la -share/kvirc/%%VER%%/modules/libkvifiletransferwindow.so -share/kvirc/%%VER%%/modules/libkvihelp.la -share/kvirc/%%VER%%/modules/libkvihelp.so -share/kvirc/%%VER%%/modules/libkvihttp.la -share/kvirc/%%VER%%/modules/libkvihttp.so -share/kvirc/%%VER%%/modules/libkviident.la -share/kvirc/%%VER%%/modules/libkviident.so -share/kvirc/%%VER%%/modules/libkviiograph.la -share/kvirc/%%VER%%/modules/libkviiograph.so -share/kvirc/%%VER%%/modules/libkvilag.la -share/kvirc/%%VER%%/modules/libkvilag.so -share/kvirc/%%VER%%/modules/libkvilamerizer.la -share/kvirc/%%VER%%/modules/libkvilamerizer.so -share/kvirc/%%VER%%/modules/libkvilinks.la -share/kvirc/%%VER%%/modules/libkvilinks.so -share/kvirc/%%VER%%/modules/libkvilist.la -share/kvirc/%%VER%%/modules/libkvilist.so -share/kvirc/%%VER%%/modules/libkvilog.la -share/kvirc/%%VER%%/modules/libkvilog.so -share/kvirc/%%VER%%/modules/libkvilogview.la -share/kvirc/%%VER%%/modules/libkvilogview.so -share/kvirc/%%VER%%/modules/libkvimask.la -share/kvirc/%%VER%%/modules/libkvimask.so -share/kvirc/%%VER%%/modules/libkvimircimport.la -share/kvirc/%%VER%%/modules/libkvimircimport.so -share/kvirc/%%VER%%/modules/libkvimp3player.la -share/kvirc/%%VER%%/modules/libkvimp3player.so -share/kvirc/%%VER%%/modules/libkvimy.la -share/kvirc/%%VER%%/modules/libkvimy.so -share/kvirc/%%VER%%/modules/libkviobjects.la -share/kvirc/%%VER%%/modules/libkviobjects.so -share/kvirc/%%VER%%/modules/libkvioptions.la -share/kvirc/%%VER%%/modules/libkvioptions.so -share/kvirc/%%VER%%/modules/libkvipopupeditor.la -share/kvirc/%%VER%%/modules/libkvipopupeditor.so -share/kvirc/%%VER%%/modules/libkviraweditor.la -share/kvirc/%%VER%%/modules/libkviraweditor.so -share/kvirc/%%VER%%/modules/libkviregchan.la -share/kvirc/%%VER%%/modules/libkviregchan.so -share/kvirc/%%VER%%/modules/libkvireguser.la -share/kvirc/%%VER%%/modules/libkvireguser.so -share/kvirc/%%VER%%/modules/libkvirijndael.la -share/kvirc/%%VER%%/modules/libkvirijndael.so -share/kvirc/%%VER%%/modules/libkvisetup.la -share/kvirc/%%VER%%/modules/libkvisetup.so -share/kvirc/%%VER%%/modules/libkvisharedfile.la -share/kvirc/%%VER%%/modules/libkvisharedfile.so -share/kvirc/%%VER%%/modules/libkvisharedfileswindow.la -share/kvirc/%%VER%%/modules/libkvisharedfileswindow.so -share/kvirc/%%VER%%/modules/libkvisnd.la -share/kvirc/%%VER%%/modules/libkvisnd.so -share/kvirc/%%VER%%/modules/libkvisocketspy.la -share/kvirc/%%VER%%/modules/libkvisocketspy.so -share/kvirc/%%VER%%/modules/libkvispaste.la -share/kvirc/%%VER%%/modules/libkvispaste.so -share/kvirc/%%VER%%/modules/libkvistr.la -share/kvirc/%%VER%%/modules/libkvistr.so -share/kvirc/%%VER%%/modules/libkvisystem.la -share/kvirc/%%VER%%/modules/libkvisystem.so -share/kvirc/%%VER%%/modules/libkvitb_options.la -share/kvirc/%%VER%%/modules/libkvitb_options.so -share/kvirc/%%VER%%/modules/libkvitb_scripting.la -share/kvirc/%%VER%%/modules/libkvitb_scripting.so -share/kvirc/%%VER%%/modules/libkvitb_winops.la -share/kvirc/%%VER%%/modules/libkvitb_winops.so -share/kvirc/%%VER%%/modules/libkviterm.la -share/kvirc/%%VER%%/modules/libkviterm.so -share/kvirc/%%VER%%/modules/libkvitip.la -share/kvirc/%%VER%%/modules/libkvitip.so -share/kvirc/%%VER%%/modules/libkvitmphighlight.la -share/kvirc/%%VER%%/modules/libkvitmphighlight.so -share/kvirc/%%VER%%/modules/libkvitoolbar.la -share/kvirc/%%VER%%/modules/libkvitoolbar.so -share/kvirc/%%VER%%/modules/libkvitoolbareditor.la -share/kvirc/%%VER%%/modules/libkvitoolbareditor.so -share/kvirc/%%VER%%/modules/libkviurl.la -share/kvirc/%%VER%%/modules/libkviurl.so -share/kvirc/%%VER%%/modules/libkviwindow.la -share/kvirc/%%VER%%/modules/libkviwindow.so -share/kvirc/%%VER%%/msgcolors/all-black.msgclr -share/kvirc/%%VER%%/msgcolors/all-gray.msgclr -share/kvirc/%%VER%%/msgcolors/all-green.msgclr -share/kvirc/%%VER%%/msgcolors/all-white.msgclr -share/kvirc/%%VER%%/msgcolors/colored-2.msgclr -share/kvirc/%%VER%%/msgcolors/colored.msgclr -share/kvirc/%%VER%%/msgcolors/default.msgclr -share/kvirc/%%VER%%/msgcolors/heavy-colors.msgclr -share/kvirc/%%VER%%/pics/kvi_activitymeter.png -share/kvirc/%%VER%%/pics/kvi_background.png -share/kvirc/%%VER%%/pics/kvi_bigicon_actions.png -share/kvirc/%%VER%%/pics/kvi_bigicon_aliaseditor.png -share/kvirc/%%VER%%/pics/kvi_bigicon_cascadewindows.png -share/kvirc/%%VER%%/pics/kvi_bigicon_channels.png -share/kvirc/%%VER%%/pics/kvi_bigicon_codetester.png -share/kvirc/%%VER%%/pics/kvi_bigicon_connected.png -share/kvirc/%%VER%%/pics/kvi_bigicon_connecting.png -share/kvirc/%%VER%%/pics/kvi_bigicon_disconnected.png -share/kvirc/%%VER%%/pics/kvi_bigicon_eventeditor.png -share/kvirc/%%VER%%/pics/kvi_bigicon_folder.png -share/kvirc/%%VER%%/pics/kvi_bigicon_helpback.png -share/kvirc/%%VER%%/pics/kvi_bigicon_helpclose.png -share/kvirc/%%VER%%/pics/kvi_bigicon_helpforward.png -share/kvirc/%%VER%%/pics/kvi_bigicon_helpindex.png -share/kvirc/%%VER%%/pics/kvi_bigicon_helpsearch.png -share/kvirc/%%VER%%/pics/kvi_bigicon_identity.png -share/kvirc/%%VER%%/pics/kvi_bigicon_minimizeallwindows.png -share/kvirc/%%VER%%/pics/kvi_bigicon_popupeditor.png -share/kvirc/%%VER%%/pics/kvi_bigicon_raweditor.png -share/kvirc/%%VER%%/pics/kvi_bigicon_servers.png -share/kvirc/%%VER%%/pics/kvi_bigicon_settings.png -share/kvirc/%%VER%%/pics/kvi_bigicon_tilewindows.png -share/kvirc/%%VER%%/pics/kvi_bigicon_toolbareditor.png -share/kvirc/%%VER%%/pics/kvi_bigicon_tools.png -share/kvirc/%%VER%%/pics/kvi_dccfiletransfericons.png -share/kvirc/%%VER%%/pics/kvi_dock.png -share/kvirc/%%VER%%/pics/kvi_httpicons.png -share/kvirc/%%VER%%/pics/kvi_mircimport.png -share/kvirc/%%VER%%/pics/kvi_setup_label.png -share/kvirc/%%VER%%/pics/kvi_smallicon_00.png -share/kvirc/%%VER%%/pics/kvi_smallicon_01.png -share/kvirc/%%VER%%/pics/kvi_smallicon_02.png -share/kvirc/%%VER%%/pics/kvi_smallicon_03.png -share/kvirc/%%VER%%/pics/kvi_smallicon_04.png -share/kvirc/%%VER%%/pics/kvi_smallicon_05.png -share/kvirc/%%VER%%/pics/kvi_smallicon_06.png -share/kvirc/%%VER%%/pics/kvi_smallicon_07.png -share/kvirc/%%VER%%/pics/kvi_smallicon_08.png -share/kvirc/%%VER%%/pics/kvi_smallicon_09.png -share/kvirc/%%VER%%/pics/kvi_smallicon_10.png -share/kvirc/%%VER%%/pics/kvi_smallicon_11.png -share/kvirc/%%VER%%/pics/kvi_smallicon_12.png -share/kvirc/%%VER%%/pics/kvi_smallicon_13.png -share/kvirc/%%VER%%/pics/kvi_smallicon_14.png -share/kvirc/%%VER%%/pics/kvi_smallicon_15.png -share/kvirc/%%VER%%/pics/kvi_splash.png -share/kvirc/%%VER%%/pics/kvi_tip.png -share/kvirc/%%VER%%/pics/kvi_userchanstate.png -share/kvirc/%%VER%%/themes/default.hires/themedata.kvc -share/kvirc/%%VER%%/themes/default.hires/themeinfo.kvc -share/kvirc/%%VER%%/themes/default.lores/themedata.kvc -share/kvirc/%%VER%%/themes/default.lores/themeinfo.kvc -@dirrm share/kvirc/%%VER%%/themes/default.lores -@dirrm share/kvirc/%%VER%%/themes/default.hires -@dirrm share/kvirc/%%VER%%/themes -@dirrm share/kvirc/%%VER%%/pics -@dirrm share/kvirc/%%VER%%/msgcolors -@dirrm share/kvirc/%%VER%%/modules/caps/toolbar -@dirrm share/kvirc/%%VER%%/modules/caps/tool -@dirrm share/kvirc/%%VER%%/modules/caps/serverimport -@dirrm share/kvirc/%%VER%%/modules/caps/crypt -@dirrm share/kvirc/%%VER%%/modules/caps -@dirrm share/kvirc/%%VER%%/modules -@dirrm share/kvirc/%%VER%%/locale -@dirrm share/kvirc/%%VER%%/license -@dirrm share/kvirc/%%VER%%/help/en -@dirrm share/kvirc/%%VER%%/help -@dirrm share/kvirc/%%VER%%/defscript -@dirrm share/kvirc/%%VER%%/config/modules -@dirrm share/kvirc/%%VER%%/config -@dirrm share/kvirc/%%VER%% -@dirrm share/kvirc +%%DATADIR%%/%%VER%%/config/modules/libkvitip.kvc +%%DATADIR%%/%%VER%%/config/serverdb.kvc +%%DATADIR%%/%%VER%%/config/texticons.kvc +%%DATADIR%%/%%VER%%/defscript/default.kvs +%%DATADIR%%/%%VER%%/help/en/_db_class.idx +%%DATADIR%%/%%VER%%/help/en/_db_command.idx +%%DATADIR%%/%%VER%%/help/en/_db_event.idx +%%DATADIR%%/%%VER%%/help/en/_db_function.idx +%%DATADIR%%/%%VER%%/help/en/_db_generic.idx +%%DATADIR%%/%%VER%%/help/en/_db_keyterms.idx +%%DATADIR%%/%%VER%%/help/en/_db_language.idx +%%DATADIR%%/%%VER%%/help/en/_db_module.idx +%%DATADIR%%/%%VER%%/help/en/_db_widget.idx +%%DATADIR%%/%%VER%%/help/en/class_button.html +%%DATADIR%%/%%VER%%/help/en/class_checkbox.html +%%DATADIR%%/%%VER%%/help/en/class_combobox.html +%%DATADIR%%/%%VER%%/help/en/class_file.html +%%DATADIR%%/%%VER%%/help/en/class_label.html +%%DATADIR%%/%%VER%%/help/en/class_layout.html +%%DATADIR%%/%%VER%%/help/en/class_lineedit.html +%%DATADIR%%/%%VER%%/help/en/class_list.html +%%DATADIR%%/%%VER%%/help/en/class_menubar.html +%%DATADIR%%/%%VER%%/help/en/class_multilineedit.html +%%DATADIR%%/%%VER%%/help/en/class_object.html +%%DATADIR%%/%%VER%%/help/en/class_socket.html +%%DATADIR%%/%%VER%%/help/en/class_string.html +%%DATADIR%%/%%VER%%/help/en/class_urllabel.html +%%DATADIR%%/%%VER%%/help/en/class_widget.html +%%DATADIR%%/%%VER%%/help/en/class_window.html +%%DATADIR%%/%%VER%%/help/en/cmd_about.kvirc.html +%%DATADIR%%/%%VER%%/help/en/cmd_addtarget.html +%%DATADIR%%/%%VER%%/help/en/cmd_admin.html +%%DATADIR%%/%%VER%%/help/en/cmd_alias.html +%%DATADIR%%/%%VER%%/help/en/cmd_aliaseditor.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_avatar.html +%%DATADIR%%/%%VER%%/help/en/cmd_away.html +%%DATADIR%%/%%VER%%/help/en/cmd_awhois.html +%%DATADIR%%/%%VER%%/help/en/cmd_back.html +%%DATADIR%%/%%VER%%/help/en/cmd_ban.html +%%DATADIR%%/%%VER%%/help/en/cmd_beep.html +%%DATADIR%%/%%VER%%/help/en/cmd_break.html +%%DATADIR%%/%%VER%%/help/en/cmd_button.html +%%DATADIR%%/%%VER%%/help/en/cmd_buttonctl.html +%%DATADIR%%/%%VER%%/help/en/cmd_channelsjoin.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_class.html +%%DATADIR%%/%%VER%%/help/en/cmd_clear.html +%%DATADIR%%/%%VER%%/help/en/cmd_clearobjects.html +%%DATADIR%%/%%VER%%/help/en/cmd_clock.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_codetester.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_config.clear.html +%%DATADIR%%/%%VER%%/help/en/cmd_config.clearsection.html +%%DATADIR%%/%%VER%%/help/en/cmd_config.close.html +%%DATADIR%%/%%VER%%/help/en/cmd_config.flush.html +%%DATADIR%%/%%VER%%/help/en/cmd_config.setsection.html +%%DATADIR%%/%%VER%%/help/en/cmd_config.write.html +%%DATADIR%%/%%VER%%/help/en/cmd_connect.html +%%DATADIR%%/%%VER%%/help/en/cmd_ctcp.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.canvas.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.chat.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.get.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.recv.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.rsend.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.send.html +%%DATADIR%%/%%VER%%/help/en/cmd_dcc.voice.html +%%DATADIR%%/%%VER%%/help/en/cmd_defpopup.html +%%DATADIR%%/%%VER%%/help/en/cmd_delete.html +%%DATADIR%%/%%VER%%/help/en/cmd_deltarget.html +%%DATADIR%%/%%VER%%/help/en/cmd_deop.html +%%DATADIR%%/%%VER%%/help/en/cmd_destroy.html +%%DATADIR%%/%%VER%%/help/en/cmd_devoice.html +%%DATADIR%%/%%VER%%/help/en/cmd_dialog.file.html +%%DATADIR%%/%%VER%%/help/en/cmd_dialog.image.html +%%DATADIR%%/%%VER%%/help/en/cmd_dialog.message.html +%%DATADIR%%/%%VER%%/help/en/cmd_dialog.textinput.html +%%DATADIR%%/%%VER%%/help/en/cmd_disconnect.html +%%DATADIR%%/%%VER%%/help/en/cmd_dockwidget.hide.html +%%DATADIR%%/%%VER%%/help/en/cmd_dockwidget.show.html +%%DATADIR%%/%%VER%%/help/en/cmd_echo.html +%%DATADIR%%/%%VER%%/help/en/cmd_echoprivmsg.html +%%DATADIR%%/%%VER%%/help/en/cmd_eval.html +%%DATADIR%%/%%VER%%/help/en/cmd_event.html +%%DATADIR%%/%%VER%%/help/en/cmd_eventctl.html +%%DATADIR%%/%%VER%%/help/en/cmd_eventeditor.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_exec.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.addimagepath.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.copy.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.delimagepath.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.mkdir.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.remove.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.rename.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.rmdir.html +%%DATADIR%%/%%VER%%/help/en/cmd_file.write.html +%%DATADIR%%/%%VER%%/help/en/cmd_filetransferwindow.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_for.html +%%DATADIR%%/%%VER%%/help/en/cmd_foreach.html +%%DATADIR%%/%%VER%%/help/en/cmd_halt.html +%%DATADIR%%/%%VER%%/help/en/cmd_help.html +%%DATADIR%%/%%VER%%/help/en/cmd_help.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_help.search.html +%%DATADIR%%/%%VER%%/help/en/cmd_host.html +%%DATADIR%%/%%VER%%/help/en/cmd_http.get.html +%%DATADIR%%/%%VER%%/help/en/cmd_ident.start.html +%%DATADIR%%/%%VER%%/help/en/cmd_ident.stop.html +%%DATADIR%%/%%VER%%/help/en/cmd_if.html +%%DATADIR%%/%%VER%%/help/en/cmd_info.html +%%DATADIR%%/%%VER%%/help/en/cmd_invite.html +%%DATADIR%%/%%VER%%/help/en/cmd_iograph.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_join.html +%%DATADIR%%/%%VER%%/help/en/cmd_kick.html +%%DATADIR%%/%%VER%%/help/en/cmd_killclass.html +%%DATADIR%%/%%VER%%/help/en/cmd_killtimer.html +%%DATADIR%%/%%VER%%/help/en/cmd_lag.disable.html +%%DATADIR%%/%%VER%%/help/en/cmd_lag.enable.html +%%DATADIR%%/%%VER%%/help/en/cmd_lag.setalarmtime.html +%%DATADIR%%/%%VER%%/help/en/cmd_lag.setinterval.html +%%DATADIR%%/%%VER%%/help/en/cmd_leave.html +%%DATADIR%%/%%VER%%/help/en/cmd_links.html +%%DATADIR%%/%%VER%%/help/en/cmd_links.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_list.html +%%DATADIR%%/%%VER%%/help/en/cmd_list.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_log.flush.html +%%DATADIR%%/%%VER%%/help/en/cmd_log.start.html +%%DATADIR%%/%%VER%%/help/en/cmd_log.stop.html +%%DATADIR%%/%%VER%%/help/en/cmd_logview.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_lusers.html +%%DATADIR%%/%%VER%%/help/en/cmd_me.html +%%DATADIR%%/%%VER%%/help/en/cmd_mode.html +%%DATADIR%%/%%VER%%/help/en/cmd_motd.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.addurl.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.next.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.pause.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.play.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.prev.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.quit.html +%%DATADIR%%/%%VER%%/help/en/cmd_mp3player.stop.html +%%DATADIR%%/%%VER%%/help/en/cmd_msg.html +%%DATADIR%%/%%VER%%/help/en/cmd_nick.html +%%DATADIR%%/%%VER%%/help/en/cmd_notice.html +%%DATADIR%%/%%VER%%/help/en/cmd_op.html +%%DATADIR%%/%%VER%%/help/en/cmd_openurl.html +%%DATADIR%%/%%VER%%/help/en/cmd_oper.html +%%DATADIR%%/%%VER%%/help/en/cmd_option.html +%%DATADIR%%/%%VER%%/help/en/cmd_options.dialog.html +%%DATADIR%%/%%VER%%/help/en/cmd_options.edit.html +%%DATADIR%%/%%VER%%/help/en/cmd_options.pages.html +%%DATADIR%%/%%VER%%/help/en/cmd_options.save.html +%%DATADIR%%/%%VER%%/help/en/cmd_parse.html +%%DATADIR%%/%%VER%%/help/en/cmd_part.html +%%DATADIR%%/%%VER%%/help/en/cmd_pass.html +%%DATADIR%%/%%VER%%/help/en/cmd_play.html +%%DATADIR%%/%%VER%%/help/en/cmd_popup.html +%%DATADIR%%/%%VER%%/help/en/cmd_popupeditor.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_privateimpl.html +%%DATADIR%%/%%VER%%/help/en/cmd_privmsg.html +%%DATADIR%%/%%VER%%/help/en/cmd_query.html +%%DATADIR%%/%%VER%%/help/en/cmd_quit.html +%%DATADIR%%/%%VER%%/help/en/cmd_quote.html +%%DATADIR%%/%%VER%%/help/en/cmd_raise.html +%%DATADIR%%/%%VER%%/help/en/cmd_raw.html +%%DATADIR%%/%%VER%%/help/en/cmd_raweditor.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_regchan.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_regchan.list.html +%%DATADIR%%/%%VER%%/help/en/cmd_regchan.remove.html +%%DATADIR%%/%%VER%%/help/en/cmd_regchan.setproperty.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.addmask.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.delmask.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.edit.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.remove.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.setproperty.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.showlist.html +%%DATADIR%%/%%VER%%/help/en/cmd_reguser.wizard.html +%%DATADIR%%/%%VER%%/help/en/cmd_return.html +%%DATADIR%%/%%VER%%/help/en/cmd_run.html +%%DATADIR%%/%%VER%%/help/en/cmd_say.html +%%DATADIR%%/%%VER%%/help/en/cmd_server.html +%%DATADIR%%/%%VER%%/help/en/cmd_service.html +%%DATADIR%%/%%VER%%/help/en/cmd_setmenu.html +%%DATADIR%%/%%VER%%/help/en/cmd_setreturn.html +%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.clear.html +%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.list.html +%%DATADIR%%/%%VER%%/help/en/cmd_sharedfile.remove.html +%%DATADIR%%/%%VER%%/help/en/cmd_sharedfileswindow.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_snd.play.html +%%DATADIR%%/%%VER%%/help/en/cmd_socketspy.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_sound.html +%%DATADIR%%/%%VER%%/help/en/cmd_spaste.clipboard.html +%%DATADIR%%/%%VER%%/help/en/cmd_spaste.file.html +%%DATADIR%%/%%VER%%/help/en/cmd_spaste.list.html +%%DATADIR%%/%%VER%%/help/en/cmd_spaste.setdelay.html +%%DATADIR%%/%%VER%%/help/en/cmd_spaste.stop.html +%%DATADIR%%/%%VER%%/help/en/cmd_squery.html +%%DATADIR%%/%%VER%%/help/en/cmd_squit.html +%%DATADIR%%/%%VER%%/help/en/cmd_srand.html +%%DATADIR%%/%%VER%%/help/en/cmd_stats.html +%%DATADIR%%/%%VER%%/help/en/cmd_switch.html +%%DATADIR%%/%%VER%%/help/en/cmd_system.setenv.html +%%DATADIR%%/%%VER%%/help/en/cmd_term.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_time.html +%%DATADIR%%/%%VER%%/help/en/cmd_timer.html +%%DATADIR%%/%%VER%%/help/en/cmd_tip.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_tmphighlight.add.html +%%DATADIR%%/%%VER%%/help/en/cmd_tmphighlight.remove.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.addbutton.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.addseparator.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.create.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.define.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.destroy.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.hide.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.removeitem.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.setbutton.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbar.show.html +%%DATADIR%%/%%VER%%/help/en/cmd_toolbareditor.open.html +%%DATADIR%%/%%VER%%/help/en/cmd_topic.html +%%DATADIR%%/%%VER%%/help/en/cmd_trace.html +%%DATADIR%%/%%VER%%/help/en/cmd_unban.html +%%DATADIR%%/%%VER%%/help/en/cmd_url.config.html +%%DATADIR%%/%%VER%%/help/en/cmd_url.list.html +%%DATADIR%%/%%VER%%/help/en/cmd_version.html +%%DATADIR%%/%%VER%%/help/en/cmd_voice.html +%%DATADIR%%/%%VER%%/help/en/cmd_while.html +%%DATADIR%%/%%VER%%/help/en/cmd_who.html +%%DATADIR%%/%%VER%%/help/en/cmd_whois.html +%%DATADIR%%/%%VER%%/help/en/cmd_whowas.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.activate.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.clearOutput.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.close.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.demandAttention.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.dock.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.listtypes.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.maximize.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.minimize.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.restore.html +%%DATADIR%%/%%VER%%/help/en/cmd_window.undock.html +%%DATADIR%%/%%VER%%/help/en/doc_aliases.html +%%DATADIR%%/%%VER%%/help/en/doc_antispam.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_class_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_class_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_command_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_command_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_command_rebinding.html +%%DATADIR%%/%%VER%%/help/en/doc_connection_dependant_commands.html +%%DATADIR%%/%%VER%%/help/en/doc_crypt_engines.html +%%DATADIR%%/%%VER%%/help/en/doc_ctcp_avatar.html +%%DATADIR%%/%%VER%%/help/en/doc_ctcp_handling.html +%%DATADIR%%/%%VER%%/help/en/doc_datatypes.html +%%DATADIR%%/%%VER%%/help/en/doc_dcc_connection.html +%%DATADIR%%/%%VER%%/help/en/doc_escape_sequences.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_event_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_event_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_events.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_function_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_function_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_generic_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_image_id.html +%%DATADIR%%/%%VER%%/help/en/doc_irc_masks.html +%%DATADIR%%/%%VER%%/help/en/doc_ircintro.html +%%DATADIR%%/%%VER%%/help/en/doc_isanyconsoleconnected.html +%%DATADIR%%/%%VER%%/help/en/doc_keyboard.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_keyterms_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_kvircintro.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_language_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_language_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_language_overview.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_module_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_module_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_modules.html +%%DATADIR%%/%%VER%%/help/en/doc_nickserv_proto.html +%%DATADIR%%/%%VER%%/help/en/doc_noblockingdialogs.html +%%DATADIR%%/%%VER%%/help/en/doc_notify_list.html +%%DATADIR%%/%%VER%%/help/en/doc_objects.html +%%DATADIR%%/%%VER%%/help/en/doc_operators.html +%%DATADIR%%/%%VER%%/help/en/doc_registered_users.html +%%DATADIR%%/%%VER%%/help/en/doc_rfc2812.html +%%DATADIR%%/%%VER%%/help/en/doc_rfc2821wrappers.html +%%DATADIR%%/%%VER%%/help/en/doc_shared_files.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_$.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_a.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_b.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_c.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_d.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_e.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_f.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_g.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_h.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_i.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_j.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_k.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_l.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_m.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_n.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_o.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_p.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_q.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_r.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_s.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_t.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_u.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_v.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_w.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_x.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_y.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_alphabetic_z.html +%%DATADIR%%/%%VER%%/help/en/doc_widget_index_all.html +%%DATADIR%%/%%VER%%/help/en/doc_window_naming_conventions.html +%%DATADIR%%/%%VER%%/help/en/event_onaccelkeypressed.html +%%DATADIR%%/%%VER%%/help/en/event_onaction.html +%%DATADIR%%/%%VER%%/help/en/event_onban.html +%%DATADIR%%/%%VER%%/help/en/event_onbanexception.html +%%DATADIR%%/%%VER%%/help/en/event_onbanexceptionremove.html +%%DATADIR%%/%%VER%%/help/en/event_onchanadmin.html +%%DATADIR%%/%%VER%%/help/en/event_onchannellinkpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelmessage.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelnickdefaultactionrequest.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelnickpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelnotice.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelsync.html +%%DATADIR%%/%%VER%%/help/en/event_onchannelwindowcreated.html +%%DATADIR%%/%%VER%%/help/en/event_onchanservnotice.html +%%DATADIR%%/%%VER%%/help/en/event_onconsolepopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onctcpflood.html +%%DATADIR%%/%%VER%%/help/en/event_onctcpreply.html +%%DATADIR%%/%%VER%%/help/en/event_onctcprequest.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchatconnected.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchatconnectioninprogress.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchatdisconnected.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchaterror.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchatmessage.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchatwindowclosing.html +%%DATADIR%%/%%VER%%/help/en/event_ondccchatwindowcreated.html +%%DATADIR%%/%%VER%%/help/en/event_ondechanadmin.html +%%DATADIR%%/%%VER%%/help/en/event_ondehalfop.html +%%DATADIR%%/%%VER%%/help/en/event_ondeop.html +%%DATADIR%%/%%VER%%/help/en/event_ondeuserop.html +%%DATADIR%%/%%VER%%/help/en/event_ondevoice.html +%%DATADIR%%/%%VER%%/help/en/event_onframewindowcreated.html +%%DATADIR%%/%%VER%%/help/en/event_onframewindowdestroyed.html +%%DATADIR%%/%%VER%%/help/en/event_onhalfop.html +%%DATADIR%%/%%VER%%/help/en/event_onhighlight.html +%%DATADIR%%/%%VER%%/help/en/event_onhostlinkpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_oninvite.html +%%DATADIR%%/%%VER%%/help/en/event_oninviteexception.html +%%DATADIR%%/%%VER%%/help/en/event_oninviteexceptionremove.html +%%DATADIR%%/%%VER%%/help/en/event_onirc.html +%%DATADIR%%/%%VER%%/help/en/event_onircconnectionestablished.html +%%DATADIR%%/%%VER%%/help/en/event_onircconnectionterminated.html +%%DATADIR%%/%%VER%%/help/en/event_onirccontextcreated.html +%%DATADIR%%/%%VER%%/help/en/event_onirccontextdestroyed.html +%%DATADIR%%/%%VER%%/help/en/event_onjoin.html +%%DATADIR%%/%%VER%%/help/en/event_onkeyset.html +%%DATADIR%%/%%VER%%/help/en/event_onkeyunset.html +%%DATADIR%%/%%VER%%/help/en/event_onkick.html +%%DATADIR%%/%%VER%%/help/en/event_onkvircshutdown.html +%%DATADIR%%/%%VER%%/help/en/event_onkvircstartup.html +%%DATADIR%%/%%VER%%/help/en/event_onlagalarmtimedown.html +%%DATADIR%%/%%VER%%/help/en/event_onlagalarmtimeup.html +%%DATADIR%%/%%VER%%/help/en/event_onlagcheck.html +%%DATADIR%%/%%VER%%/help/en/event_onlimitset.html +%%DATADIR%%/%%VER%%/help/en/event_onlimitunset.html +%%DATADIR%%/%%VER%%/help/en/event_onmeaway.html +%%DATADIR%%/%%VER%%/help/en/event_onmeback.html +%%DATADIR%%/%%VER%%/help/en/event_onmeban.html +%%DATADIR%%/%%VER%%/help/en/event_onmebanexception.html +%%DATADIR%%/%%VER%%/help/en/event_onmebanexceptionremove.html +%%DATADIR%%/%%VER%%/help/en/event_onmechanadmin.html +%%DATADIR%%/%%VER%%/help/en/event_onmedechanadmin.html +%%DATADIR%%/%%VER%%/help/en/event_onmedehalfop.html +%%DATADIR%%/%%VER%%/help/en/event_onmedeop.html +%%DATADIR%%/%%VER%%/help/en/event_onmedeuserop.html +%%DATADIR%%/%%VER%%/help/en/event_onmedevoice.html +%%DATADIR%%/%%VER%%/help/en/event_onmehalfop.html +%%DATADIR%%/%%VER%%/help/en/event_onmeinviteexception.html +%%DATADIR%%/%%VER%%/help/en/event_onmeinviteexceptionremove.html +%%DATADIR%%/%%VER%%/help/en/event_onmejoin.html +%%DATADIR%%/%%VER%%/help/en/event_onmekick.html +%%DATADIR%%/%%VER%%/help/en/event_onmenickchange.html +%%DATADIR%%/%%VER%%/help/en/event_onmeop.html +%%DATADIR%%/%%VER%%/help/en/event_onmepart.html +%%DATADIR%%/%%VER%%/help/en/event_onmeunban.html +%%DATADIR%%/%%VER%%/help/en/event_onmeuserop.html +%%DATADIR%%/%%VER%%/help/en/event_onmevoice.html +%%DATADIR%%/%%VER%%/help/en/event_onnickchange.html +%%DATADIR%%/%%VER%%/help/en/event_onnicklinkdefaultactionrequest.html +%%DATADIR%%/%%VER%%/help/en/event_onnicklinkpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onnickservnotice.html +%%DATADIR%%/%%VER%%/help/en/event_onnotifylistdefaultactionrequest.html +%%DATADIR%%/%%VER%%/help/en/event_onnotifylistpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onnotifyoffline.html +%%DATADIR%%/%%VER%%/help/en/event_onnotifyonline.html +%%DATADIR%%/%%VER%%/help/en/event_onop.html +%%DATADIR%%/%%VER%%/help/en/event_onpart.html +%%DATADIR%%/%%VER%%/help/en/event_onping.html +%%DATADIR%%/%%VER%%/help/en/event_onpong.html +%%DATADIR%%/%%VER%%/help/en/event_onquerymessage.html +%%DATADIR%%/%%VER%%/help/en/event_onquerynickdefaultactionrequest.html +%%DATADIR%%/%%VER%%/help/en/event_onquerynickpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onquerynotice.html +%%DATADIR%%/%%VER%%/help/en/event_onquerypopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onquerytargetadded.html +%%DATADIR%%/%%VER%%/help/en/event_onquerywindowcreated.html +%%DATADIR%%/%%VER%%/help/en/event_onquerywindowrequest.html +%%DATADIR%%/%%VER%%/help/en/event_onquit.html +%%DATADIR%%/%%VER%%/help/en/event_onserverlinkpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onservernotice.html +%%DATADIR%%/%%VER%%/help/en/event_ontextviewdoubleclicked.html +%%DATADIR%%/%%VER%%/help/en/event_ontopic.html +%%DATADIR%%/%%VER%%/help/en/event_onunban.html +%%DATADIR%%/%%VER%%/help/en/event_onunhandledliteral.html +%%DATADIR%%/%%VER%%/help/en/event_onurl.html +%%DATADIR%%/%%VER%%/help/en/event_onurllinkpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/event_onusermode.html +%%DATADIR%%/%%VER%%/help/en/event_onuserop.html +%%DATADIR%%/%%VER%%/help/en/event_onvoice.html +%%DATADIR%%/%%VER%%/help/en/event_onwindowactivated.html +%%DATADIR%%/%%VER%%/help/en/event_onwindowpopuprequest.html +%%DATADIR%%/%%VER%%/help/en/fnc_$.html +%%DATADIR%%/%%VER%%/help/en/fnc_$lag.lag.html +%%DATADIR%%/%%VER%%/help/en/fnc_active.html +%%DATADIR%%/%%VER%%/help/en/fnc_ascii.html +%%DATADIR%%/%%VER%%/help/en/fnc_avatar.html +%%DATADIR%%/%%VER%%/help/en/fnc_away.html +%%DATADIR%%/%%VER%%/help/en/fnc_b.html +%%DATADIR%%/%%VER%%/help/en/fnc_base64toAscii.html +%%DATADIR%%/%%VER%%/help/en/fnc_calc.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.admincount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.bancount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.banexceptioncount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.banexceptionlist.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.banlist.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.getflag.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.halfopcount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.invitecount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.invitelist.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.isadmin.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.ishalfop.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismeadmin.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.ismeop.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.ison.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.isop.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.isuserop.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.isvoice.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.key.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.limit.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchban.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchbanexception.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.matchinvite.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.mode.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.name.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.opcount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.topic.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.topicsetat.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.topicsetby.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.usercount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.useropcount.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.users.html +%%DATADIR%%/%%VER%%/help/en/fnc_chan.voicecount.html +%%DATADIR%%/%%VER%%/help/en/fnc_channel.html +%%DATADIR%%/%%VER%%/help/en/fnc_char.html +%%DATADIR%%/%%VER%%/help/en/fnc_classdefined.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.filelist.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.filename.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.hassection.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.id.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.keylist.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.open.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.read.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.readonly.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.section.html +%%DATADIR%%/%%VER%%/help/en/fnc_config.sectionlist.html +%%DATADIR%%/%%VER%%/help/en/fnc_console.html +%%DATADIR%%/%%VER%%/help/en/fnc_context.html +%%DATADIR%%/%%VER%%/help/en/fnc_cr.html +%%DATADIR%%/%%VER%%/help/en/fnc_date.html +%%DATADIR%%/%%VER%%/help/en/fnc_dockwidget.isvisible.html +%%DATADIR%%/%%VER%%/help/en/fnc_features.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.exists.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.extractfilename.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.extractpath.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.fixpath.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.globaldir.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.localdir.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.ps.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.read.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.size.html +%%DATADIR%%/%%VER%%/help/en/fnc_file.type.html +%%DATADIR%%/%%VER%%/help/en/fnc_fmtlink.html +%%DATADIR%%/%%VER%%/help/en/fnc_hextoAscii.html +%%DATADIR%%/%%VER%%/help/en/fnc_hostname.html +%%DATADIR%%/%%VER%%/help/en/fnc_ic.html +%%DATADIR%%/%%VER%%/help/en/fnc_icon.html +%%DATADIR%%/%%VER%%/help/en/fnc_iconname.html +%%DATADIR%%/%%VER%%/help/en/fnc_isMainWindowMinimized.html +%%DATADIR%%/%%VER%%/help/en/fnc_ismehalfop.html +%%DATADIR%%/%%VER%%/help/en/fnc_ismeop.html +%%DATADIR%%/%%VER%%/help/en/fnc_ismeuserop.html +%%DATADIR%%/%%VER%%/help/en/fnc_ismevoice.html +%%DATADIR%%/%%VER%%/help/en/fnc_istimer.html +%%DATADIR%%/%%VER%%/help/en/fnc_iswellknown.html +%%DATADIR%%/%%VER%%/help/en/fnc_k.html +%%DATADIR%%/%%VER%%/help/en/fnc_lag.getalarmtime.html +%%DATADIR%%/%%VER%%/help/en/fnc_lag.getinterval.html +%%DATADIR%%/%%VER%%/help/en/fnc_lf.html +%%DATADIR%%/%%VER%%/help/en/fnc_log.file.html +%%DATADIR%%/%%VER%%/help/en/fnc_mask.hasnumerichost.html +%%DATADIR%%/%%VER%%/help/en/fnc_mask.host.html +%%DATADIR%%/%%VER%%/help/en/fnc_mask.html +%%DATADIR%%/%%VER%%/help/en/fnc_mask.match.html +%%DATADIR%%/%%VER%%/help/en/fnc_mask.nick.html +%%DATADIR%%/%%VER%%/help/en/fnc_mask.user.html +%%DATADIR%%/%%VER%%/help/en/fnc_me.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getchannels.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getfilename.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getfreq.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getlength.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_album.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_artist.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_comment.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_copright.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_crc.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_date.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_emphasis.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_genre.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_layer.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_original.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_title.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_tracknumber.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getmp3tag_version.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getposition.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.getrate.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.gettime.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.gettitle.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.ispaused.html +%%DATADIR%%/%%VER%%/help/en/fnc_mp3player.isplaying.html +%%DATADIR%%/%%VER%%/help/en/fnc_msgtype.html +%%DATADIR%%/%%VER%%/help/en/fnc_my.host.html +%%DATADIR%%/%%VER%%/help/en/fnc_my.network.html +%%DATADIR%%/%%VER%%/help/en/fnc_my.nick.html +%%DATADIR%%/%%VER%%/help/en/fnc_my.server.html +%%DATADIR%%/%%VER%%/help/en/fnc_my.umode.html +%%DATADIR%%/%%VER%%/help/en/fnc_my.user.html +%%DATADIR%%/%%VER%%/help/en/fnc_new.html +%%DATADIR%%/%%VER%%/help/en/fnc_o.html +%%DATADIR%%/%%VER%%/help/en/fnc_option.html +%%DATADIR%%/%%VER%%/help/en/fnc_options.isdialog.html +%%DATADIR%%/%%VER%%/help/en/fnc_query.html +%%DATADIR%%/%%VER%%/help/en/fnc_r.html +%%DATADIR%%/%%VER%%/help/en/fnc_rand.html +%%DATADIR%%/%%VER%%/help/en/fnc_regchan.find.html +%%DATADIR%%/%%VER%%/help/en/fnc_regchan.match.html +%%DATADIR%%/%%VER%%/help/en/fnc_regchan.property.html +%%DATADIR%%/%%VER%%/help/en/fnc_reguser.exactmatch.html +%%DATADIR%%/%%VER%%/help/en/fnc_reguser.list.html +%%DATADIR%%/%%VER%%/help/en/fnc_reguser.mask.html +%%DATADIR%%/%%VER%%/help/en/fnc_reguser.match.html +%%DATADIR%%/%%VER%%/help/en/fnc_reguser.matchproperty.html +%%DATADIR%%/%%VER%%/help/en/fnc_reguser.property.html +%%DATADIR%%/%%VER%%/help/en/fnc_selected.html +%%DATADIR%%/%%VER%%/help/en/fnc_server.html +%%DATADIR%%/%%VER%%/help/en/fnc_split.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.append.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.cmp.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.cmpnocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.contains.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.containsnocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.equal.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.equalnocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.find.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.findfirst.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.findfirstnocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.findlast.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.findlastnocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.insert.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.isempty.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.isnumber.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.isunsignednumber.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.left.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.lefttofirst.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.lefttolast.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.len.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.lowcase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.match.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.matchnocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.mid.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.prepend.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.replace.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.replacenocase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.right.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.rightfromfirst.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.rightfromlast.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.strip.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.stripleft.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.stripright.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.token.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.upcase.html +%%DATADIR%%/%%VER%%/help/en/fnc_str.word.html +%%DATADIR%%/%%VER%%/help/en/fnc_sw.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.getenv.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.hostname.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.osmachine.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.osname.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.osnodename.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.osrelease.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.ostype.html +%%DATADIR%%/%%VER%%/help/en/fnc_system.osversion.html +%%DATADIR%%/%%VER%%/help/en/fnc_target.html +%%DATADIR%%/%%VER%%/help/en/fnc_this.html +%%DATADIR%%/%%VER%%/help/en/fnc_time.html +%%DATADIR%%/%%VER%%/help/en/fnc_tmphighlight.ishighlighted.html +%%DATADIR%%/%%VER%%/help/en/fnc_toolbar.exists.html +%%DATADIR%%/%%VER%%/help/en/fnc_toolbar.list.html +%%DATADIR%%/%%VER%%/help/en/fnc_u.html +%%DATADIR%%/%%VER%%/help/en/fnc_unixtime.html +%%DATADIR%%/%%VER%%/help/en/fnc_username.html +%%DATADIR%%/%%VER%%/help/en/fnc_version.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.caption.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.console.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.exists.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.hasInput.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.hasOutput.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.hasUserFocus.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.isMaximized.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.isMinimized.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.list.html +%%DATADIR%%/%%VER%%/help/en/fnc_window.type.html +%%DATADIR%%/%%VER%%/help/en/helplogoleft.png +%%DATADIR%%/%%VER%%/help/en/helplogoright.png +%%DATADIR%%/%%VER%%/help/en/index.html +%%DATADIR%%/%%VER%%/help/en/module_config.html +%%DATADIR%%/%%VER%%/help/en/module_lamerizer.html +%%DATADIR%%/%%VER%%/help/en/module_log.html +%%DATADIR%%/%%VER%%/help/en/module_mp3player.html +%%DATADIR%%/%%VER%%/help/en/module_reguser.html +%%DATADIR%%/%%VER%%/help/en/module_rijndael.html +%%DATADIR%%/%%VER%%/help/en/module_url.html +%%DATADIR%%/%%VER%%/help/en/widget_ctcpavatarprotooptions.html +%%DATADIR%%/%%VER%%/help/en/widget_ctcpfloodprotectionoptions.html +%%DATADIR%%/%%VER%%/license/COPYING +%%DATADIR%%/%%VER%%/locale/about_de.mo +%%DATADIR%%/%%VER%%/locale/about_es.mo +%%DATADIR%%/%%VER%%/locale/about_it.mo +%%DATADIR%%/%%VER%%/locale/dcc_de.mo +%%DATADIR%%/%%VER%%/locale/dcc_es.mo +%%DATADIR%%/%%VER%%/locale/dcc_it.mo +%%DATADIR%%/%%VER%%/locale/editor_de.mo +%%DATADIR%%/%%VER%%/locale/editor_es.mo +%%DATADIR%%/%%VER%%/locale/editor_it.mo +%%DATADIR%%/%%VER%%/locale/kvirc_de.mo +%%DATADIR%%/%%VER%%/locale/kvirc_es.mo +%%DATADIR%%/%%VER%%/locale/kvirc_fr.mo +%%DATADIR%%/%%VER%%/locale/kvirc_it.mo +%%DATADIR%%/%%VER%%/locale/kvirc_nl.mo +%%DATADIR%%/%%VER%%/locale/kvirc_pl.mo +%%DATADIR%%/%%VER%%/locale/kvirc_pt.mo +%%DATADIR%%/%%VER%%/locale/kvirc_pt_BR.mo +%%DATADIR%%/%%VER%%/locale/kvirc_sr.mo +%%DATADIR%%/%%VER%%/locale/logview_de.mo +%%DATADIR%%/%%VER%%/locale/logview_es.mo +%%DATADIR%%/%%VER%%/locale/logview_it.mo +%%DATADIR%%/%%VER%%/locale/sharedfileswindow_de.mo +%%DATADIR%%/%%VER%%/locale/sharedfileswindow_es.mo +%%DATADIR%%/%%VER%%/locale/sharedfileswindow_it.mo +%%DATADIR%%/%%VER%%/modules/caps/crypt/lamerizer +%%DATADIR%%/%%VER%%/modules/caps/crypt/rijndael +%%DATADIR%%/%%VER%%/modules/caps/serverimport/mircimport +%%DATADIR%%/%%VER%%/modules/caps/tool/filetransferwindow +%%DATADIR%%/%%VER%%/modules/caps/tool/logview +%%DATADIR%%/%%VER%%/modules/caps/tool/sharedfileswindow +%%DATADIR%%/%%VER%%/modules/caps/toolbar/tb_options +%%DATADIR%%/%%VER%%/modules/caps/toolbar/tb_scripting +%%DATADIR%%/%%VER%%/modules/caps/toolbar/tb_winops +%%DATADIR%%/%%VER%%/modules/caps/toolbar/url +%%DATADIR%%/%%VER%%/modules/libkviabout.la +%%DATADIR%%/%%VER%%/modules/libkviabout.so +%%DATADIR%%/%%VER%%/modules/libkvialiaseditor.la +%%DATADIR%%/%%VER%%/modules/libkvialiaseditor.so +%%DATADIR%%/%%VER%%/modules/libkvichan.la +%%DATADIR%%/%%VER%%/modules/libkvichan.so +%%DATADIR%%/%%VER%%/modules/libkvichannelsjoin.la +%%DATADIR%%/%%VER%%/modules/libkvichannelsjoin.so +%%DATADIR%%/%%VER%%/modules/libkviclock.la +%%DATADIR%%/%%VER%%/modules/libkviclock.so +%%DATADIR%%/%%VER%%/modules/libkvicodetester.la +%%DATADIR%%/%%VER%%/modules/libkvicodetester.so +%%DATADIR%%/%%VER%%/modules/libkviconfig.la +%%DATADIR%%/%%VER%%/modules/libkviconfig.so +%%DATADIR%%/%%VER%%/modules/libkvidcc.la +%%DATADIR%%/%%VER%%/modules/libkvidcc.so +%%DATADIR%%/%%VER%%/modules/libkvidialog.la +%%DATADIR%%/%%VER%%/modules/libkvidialog.so +%%DATADIR%%/%%VER%%/modules/libkvidockwidget.la +%%DATADIR%%/%%VER%%/modules/libkvidockwidget.so +%%DATADIR%%/%%VER%%/modules/libkvieditor.la +%%DATADIR%%/%%VER%%/modules/libkvieditor.so +%%DATADIR%%/%%VER%%/modules/libkvieventeditor.la +%%DATADIR%%/%%VER%%/modules/libkvieventeditor.so +%%DATADIR%%/%%VER%%/modules/libkvifile.la +%%DATADIR%%/%%VER%%/modules/libkvifile.so +%%DATADIR%%/%%VER%%/modules/libkvifiletransferwindow.la +%%DATADIR%%/%%VER%%/modules/libkvifiletransferwindow.so +%%DATADIR%%/%%VER%%/modules/libkvihelp.la +%%DATADIR%%/%%VER%%/modules/libkvihelp.so +%%DATADIR%%/%%VER%%/modules/libkvihttp.la +%%DATADIR%%/%%VER%%/modules/libkvihttp.so +%%DATADIR%%/%%VER%%/modules/libkviident.la +%%DATADIR%%/%%VER%%/modules/libkviident.so +%%DATADIR%%/%%VER%%/modules/libkviiograph.la +%%DATADIR%%/%%VER%%/modules/libkviiograph.so +%%DATADIR%%/%%VER%%/modules/libkvilag.la +%%DATADIR%%/%%VER%%/modules/libkvilag.so +%%DATADIR%%/%%VER%%/modules/libkvilamerizer.la +%%DATADIR%%/%%VER%%/modules/libkvilamerizer.so +%%DATADIR%%/%%VER%%/modules/libkvilinks.la +%%DATADIR%%/%%VER%%/modules/libkvilinks.so +%%DATADIR%%/%%VER%%/modules/libkvilist.la +%%DATADIR%%/%%VER%%/modules/libkvilist.so +%%DATADIR%%/%%VER%%/modules/libkvilog.la +%%DATADIR%%/%%VER%%/modules/libkvilog.so +%%DATADIR%%/%%VER%%/modules/libkvilogview.la +%%DATADIR%%/%%VER%%/modules/libkvilogview.so +%%DATADIR%%/%%VER%%/modules/libkvimask.la +%%DATADIR%%/%%VER%%/modules/libkvimask.so +%%DATADIR%%/%%VER%%/modules/libkvimircimport.la +%%DATADIR%%/%%VER%%/modules/libkvimircimport.so +%%DATADIR%%/%%VER%%/modules/libkvimp3player.la +%%DATADIR%%/%%VER%%/modules/libkvimp3player.so +%%DATADIR%%/%%VER%%/modules/libkvimy.la +%%DATADIR%%/%%VER%%/modules/libkvimy.so +%%DATADIR%%/%%VER%%/modules/libkviobjects.la +%%DATADIR%%/%%VER%%/modules/libkviobjects.so +%%DATADIR%%/%%VER%%/modules/libkvioptions.la +%%DATADIR%%/%%VER%%/modules/libkvioptions.so +%%DATADIR%%/%%VER%%/modules/libkvipopupeditor.la +%%DATADIR%%/%%VER%%/modules/libkvipopupeditor.so +%%DATADIR%%/%%VER%%/modules/libkviraweditor.la +%%DATADIR%%/%%VER%%/modules/libkviraweditor.so +%%DATADIR%%/%%VER%%/modules/libkviregchan.la +%%DATADIR%%/%%VER%%/modules/libkviregchan.so +%%DATADIR%%/%%VER%%/modules/libkvireguser.la +%%DATADIR%%/%%VER%%/modules/libkvireguser.so +%%DATADIR%%/%%VER%%/modules/libkvirijndael.la +%%DATADIR%%/%%VER%%/modules/libkvirijndael.so +%%DATADIR%%/%%VER%%/modules/libkvisetup.la +%%DATADIR%%/%%VER%%/modules/libkvisetup.so +%%DATADIR%%/%%VER%%/modules/libkvisharedfile.la +%%DATADIR%%/%%VER%%/modules/libkvisharedfile.so +%%DATADIR%%/%%VER%%/modules/libkvisharedfileswindow.la +%%DATADIR%%/%%VER%%/modules/libkvisharedfileswindow.so +%%DATADIR%%/%%VER%%/modules/libkvisnd.la +%%DATADIR%%/%%VER%%/modules/libkvisnd.so +%%DATADIR%%/%%VER%%/modules/libkvisocketspy.la +%%DATADIR%%/%%VER%%/modules/libkvisocketspy.so +%%DATADIR%%/%%VER%%/modules/libkvispaste.la +%%DATADIR%%/%%VER%%/modules/libkvispaste.so +%%DATADIR%%/%%VER%%/modules/libkvistr.la +%%DATADIR%%/%%VER%%/modules/libkvistr.so +%%DATADIR%%/%%VER%%/modules/libkvisystem.la +%%DATADIR%%/%%VER%%/modules/libkvisystem.so +%%DATADIR%%/%%VER%%/modules/libkvitb_options.la +%%DATADIR%%/%%VER%%/modules/libkvitb_options.so +%%DATADIR%%/%%VER%%/modules/libkvitb_scripting.la +%%DATADIR%%/%%VER%%/modules/libkvitb_scripting.so +%%DATADIR%%/%%VER%%/modules/libkvitb_winops.la +%%DATADIR%%/%%VER%%/modules/libkvitb_winops.so +%%DATADIR%%/%%VER%%/modules/libkviterm.la +%%DATADIR%%/%%VER%%/modules/libkviterm.so +%%DATADIR%%/%%VER%%/modules/libkvitip.la +%%DATADIR%%/%%VER%%/modules/libkvitip.so +%%DATADIR%%/%%VER%%/modules/libkvitmphighlight.la +%%DATADIR%%/%%VER%%/modules/libkvitmphighlight.so +%%DATADIR%%/%%VER%%/modules/libkvitoolbar.la +%%DATADIR%%/%%VER%%/modules/libkvitoolbar.so +%%DATADIR%%/%%VER%%/modules/libkvitoolbareditor.la +%%DATADIR%%/%%VER%%/modules/libkvitoolbareditor.so +%%DATADIR%%/%%VER%%/modules/libkviurl.la +%%DATADIR%%/%%VER%%/modules/libkviurl.so +%%DATADIR%%/%%VER%%/modules/libkviwindow.la +%%DATADIR%%/%%VER%%/modules/libkviwindow.so +%%DATADIR%%/%%VER%%/msgcolors/all-black.msgclr +%%DATADIR%%/%%VER%%/msgcolors/all-gray.msgclr +%%DATADIR%%/%%VER%%/msgcolors/all-green.msgclr +%%DATADIR%%/%%VER%%/msgcolors/all-white.msgclr +%%DATADIR%%/%%VER%%/msgcolors/colored-2.msgclr +%%DATADIR%%/%%VER%%/msgcolors/colored.msgclr +%%DATADIR%%/%%VER%%/msgcolors/default.msgclr +%%DATADIR%%/%%VER%%/msgcolors/heavy-colors.msgclr +%%DATADIR%%/%%VER%%/pics/kvi_activitymeter.png +%%DATADIR%%/%%VER%%/pics/kvi_background.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_actions.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_aliaseditor.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_cascadewindows.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_channels.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_codetester.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_connected.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_connecting.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_disconnected.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_eventeditor.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_folder.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpback.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpclose.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpforward.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpindex.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_helpsearch.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_identity.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_minimizeallwindows.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_popupeditor.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_raweditor.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_servers.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_settings.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_tilewindows.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_toolbareditor.png +%%DATADIR%%/%%VER%%/pics/kvi_bigicon_tools.png +%%DATADIR%%/%%VER%%/pics/kvi_dccfiletransfericons.png +%%DATADIR%%/%%VER%%/pics/kvi_dock.png +%%DATADIR%%/%%VER%%/pics/kvi_httpicons.png +%%DATADIR%%/%%VER%%/pics/kvi_mircimport.png +%%DATADIR%%/%%VER%%/pics/kvi_setup_label.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_00.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_01.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_02.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_03.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_04.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_05.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_06.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_07.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_08.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_09.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_10.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_11.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_12.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_13.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_14.png +%%DATADIR%%/%%VER%%/pics/kvi_smallicon_15.png +%%DATADIR%%/%%VER%%/pics/kvi_splash.png +%%DATADIR%%/%%VER%%/pics/kvi_tip.png +%%DATADIR%%/%%VER%%/pics/kvi_userchanstate.png +%%DATADIR%%/%%VER%%/themes/default.hires/themedata.kvc +%%DATADIR%%/%%VER%%/themes/default.hires/themeinfo.kvc +%%DATADIR%%/%%VER%%/themes/default.lores/themedata.kvc +%%DATADIR%%/%%VER%%/themes/default.lores/themeinfo.kvc +@dirrm %%DATADIR%%/%%VER%%/themes/default.lores +@dirrm %%DATADIR%%/%%VER%%/themes/default.hires +@dirrm %%DATADIR%%/%%VER%%/themes +@dirrm %%DATADIR%%/%%VER%%/pics +@dirrm %%DATADIR%%/%%VER%%/msgcolors +@dirrm %%DATADIR%%/%%VER%%/modules/caps/toolbar +@dirrm %%DATADIR%%/%%VER%%/modules/caps/tool +@dirrm %%DATADIR%%/%%VER%%/modules/caps/serverimport +@dirrm %%DATADIR%%/%%VER%%/modules/caps/crypt +@dirrm %%DATADIR%%/%%VER%%/modules/caps +@dirrm %%DATADIR%%/%%VER%%/modules +@dirrm %%DATADIR%%/%%VER%%/locale +@dirrm %%DATADIR%%/%%VER%%/license +@dirrm %%DATADIR%%/%%VER%%/help/en +@dirrm %%DATADIR%%/%%VER%%/help +@dirrm %%DATADIR%%/%%VER%%/defscript +@dirrm %%DATADIR%%/%%VER%%/config/modules +@dirrm %%DATADIR%%/%%VER%%/config +@dirrm %%DATADIR%%/%%VER%% +@dirrm %%DATADIR%% @dirrm include/kvirc/%%VER%% @dirrm include/kvirc --- kvirc-3.0.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 14 23:33:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB3C416A4CF; Tue, 14 Dec 2004 23:33:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6EE843D1F; Tue, 14 Dec 2004 23:33:20 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBENXKqH082776; Tue, 14 Dec 2004 23:33:20 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBENXKGX082772; Tue, 14 Dec 2004 23:33:20 GMT (envelope-from pav) Date: Tue, 14 Dec 2004 23:33:20 GMT From: Pav Lucistnik Message-Id: <200412142333.iBENXKGX082772@freefall.freebsd.org> To: lars.eggert@gmx.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/75019: [PATCH] net/jabberd: update to 2.0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2004 23:33:21 -0000 Synopsis: [PATCH] net/jabberd: update to 2.0.6 State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Tue Dec 14 23:33:04 GMT 2004 State-Changed-Why: Asked maintainer for approval. Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Tue Dec 14 23:33:04 GMT 2004 Responsible-Changed-Why: Handle. http://www.freebsd.org/cgi/query-pr.cgi?pr=75019 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 00:01:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9680216A50D for ; Wed, 15 Dec 2004 00:01:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D346B43D4C for ; Wed, 15 Dec 2004 00:01:00 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF010n0083969 for ; Wed, 15 Dec 2004 00:01:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF010ie083968; Wed, 15 Dec 2004 00:01:00 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 00:01:00 GMT Resent-Message-Id: <200412150001.iBF010ie083968@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, Pasi Hirvonen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7144616A4CE for ; Tue, 14 Dec 2004 23:59:29 +0000 (GMT) Received: from mandy.eunet.fi (mandy.eunet.fi [193.66.1.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AF3243D4C for ; Tue, 14 Dec 2004 23:59:29 +0000 (GMT) (envelope-from psh@iki.fi) Received: from mirp.foo (opiskelijat.joensuunelli.fi [193.65.112.51]) by mandy.eunet.fi (Postfix) with ESMTP id 6F33713DECE for ; Wed, 15 Dec 2004 01:59:27 +0200 (EET) Received: from mirp.foo (localhost [127.0.0.1]) by mirp.foo (8.13.1/8.13.1) with ESMTP id iBENxQ2L061369 for ; Wed, 15 Dec 2004 01:59:26 +0200 (EET) (envelope-from pasi@localhost.localdomain) Received: (from pasi@localhost) by mirp.foo (8.13.1/8.13.1/Submit) id iBENxQlI061368; Wed, 15 Dec 2004 01:59:26 +0200 (EET) (envelope-from pasi) Message-Id: <200412142359.iBENxQlI061368@mirp.foo> Date: Wed, 15 Dec 2004 01:59:26 +0200 (EET) From: Pasi Hirvonen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75084: [PATCH] math/clarence marked as BROKEN but works fine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Pasi Hirvonen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 00:01:29 -0000 >Number: 75084 >Category: ports >Synopsis: [PATCH] math/clarence marked as BROKEN but works fine >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 Dec 15 00:01:00 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Pasi Hirvonen >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD mirp.foo 5.3-STABLE FreeBSD 5.3-STABLE #3: Thu Dec 9 18:48:50 EET 2004 pasi@mirp.foo:/usr/obj/usr/src/sys/MIRP i386 >Description: math/clarence is marked BROKEN. Judging by the logs at pointyhat[1] Python numeric extension (math/py-numeric) was broken and resulted in build failure. clarence port itself work fine now. ([1] http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2004101518/clarence-0.4.4_1.log) >How-To-Repeat: >Fix: --- clarence.diff begins here --- --- /usr/ports/math/clarence/Makefile.orig Wed Dec 15 01:34:14 2004 +++ /usr/ports/math/clarence/Makefile Wed Dec 15 01:27:51 2004 @@ -15,12 +15,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Programmer's calculator -BROKEN= "Broken dependency after python 2.4 update" - USE_GNOME= pygtk2 USE_REINPLACE= yes USE_PYTHON= yes -PYTHON_VERSION= python2.3 +PYTHON_VERSION= python2.4 NO_BUILD= yes MAN1= clarence.1 PLIST_FILES= bin/clarence --- clarence.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 00:14:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDCAF16A4CE; Wed, 15 Dec 2004 00:14:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97D2643D49; Wed, 15 Dec 2004 00:14:09 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF0E9CC088370; Wed, 15 Dec 2004 00:14:09 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF0E9Ll088366; Wed, 15 Dec 2004 00:14:09 GMT (envelope-from pav) Date: Wed, 15 Dec 2004 00:14:09 GMT From: Pav Lucistnik Message-Id: <200412150014.iBF0E9Ll088366@freefall.freebsd.org> To: avleeuwen@piwebs.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75065: Update ImageMagick to 6.1.6-7; fix pthreads issue X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 00:14:09 -0000 Synopsis: Update ImageMagick to 6.1.6-7; fix pthreads issue State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Dec 15 00:14:03 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75065 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 00:40:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5367F16A4CE for ; Wed, 15 Dec 2004 00:40:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDD4843D4C for ; Wed, 15 Dec 2004 00:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF0eQNU091050 for ; Wed, 15 Dec 2004 00:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF0eQK4091049; Wed, 15 Dec 2004 00:40:26 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 00:40:26 GMT Resent-Message-Id: <200412150040.iBF0eQK4091049@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, Pasi Hirvonen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8340A16A4CE for ; Wed, 15 Dec 2004 00:34:07 +0000 (GMT) Received: from mandy.eunet.fi (mandy.eunet.fi [193.66.1.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BADF43D5D for ; Wed, 15 Dec 2004 00:34:07 +0000 (GMT) (envelope-from psh@iki.fi) Received: from mirp.foo (opiskelijat.joensuunelli.fi [193.65.112.51]) by mandy.eunet.fi (Postfix) with ESMTP id BB16D13E1AD; Wed, 15 Dec 2004 02:34:05 +0200 (EET) Received: from mirp.foo (localhost [127.0.0.1]) by mirp.foo (8.13.1/8.13.1) with ESMTP id iBF0Y5he082268; Wed, 15 Dec 2004 02:34:05 +0200 (EET) (envelope-from pasi@localhost.localdomain) Received: (from pasi@localhost) by mirp.foo (8.13.1/8.13.1/Submit) id iBF0Y5pT082267; Wed, 15 Dec 2004 02:34:05 +0200 (EET) (envelope-from pasi) Message-Id: <200412150034.iBF0Y5pT082267@mirp.foo> Date: Wed, 15 Dec 2004 02:34:05 +0200 (EET) From: Pasi Hirvonen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: chip-set@mail.ru Subject: ports/75085: Update port: ftp/wput - new version (0.5) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Pasi Hirvonen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 00:40:27 -0000 >Number: 75085 >Category: ports >Synopsis: Update port: ftp/wput - new version (0.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: Wed Dec 15 00:40:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Pasi Hirvonen >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD mirp.foo 5.3-STABLE FreeBSD 5.3-STABLE #3: Thu Dec 9 18:48:50 EET 2004 pasi@mirp.foo:/usr/obj/usr/src/sys/MIRP i386 >Description: There's a new version of wput out there, 0.5 >How-To-Repeat: >Fix: --- wput-0.5.patch begins here --- diff -ur /usr/ports/ftp/wput/Makefile /home/pasi/work/ports/wput/Makefile --- /usr/ports/ftp/wput/Makefile Thu Nov 18 10:10:51 2004 +++ /home/pasi/work/ports/wput/Makefile Wed Dec 15 02:19:04 2004 @@ -6,7 +6,7 @@ # PORTNAME= wput -PORTVERSION= 0.4.1 +PORTVERSION= 0.5 CATEGORIES= ftp MASTER_SITES= http://itooktheredpill.dyndns.org/wput/ EXTRACT_SUFX= .tgz @@ -14,8 +14,6 @@ MAINTAINER= chip-set@mail.ru COMMENT= Uploads files or directories to a ftpserver with support of resuming -BROKEN= Size mismatch - PORTDOCS= TODO ChangeLog USE_GETOPT_LONG= yes @@ -26,6 +24,8 @@ CONFIGURE_ENV= LIBS="${LDFLAGS}" PLIST_FILES= bin/wput + +MANCOMPRESSED= yes MAN1= wput.1 post-install: diff -ur /usr/ports/ftp/wput/distinfo /home/pasi/work/ports/wput/distinfo --- /usr/ports/ftp/wput/distinfo Mon Nov 22 19:13:57 2004 +++ /home/pasi/work/ports/wput/distinfo Wed Dec 15 02:12:24 2004 @@ -1,2 +1,2 @@ -MD5 (wput-0.4.1.tgz) = 6ef875c31445d01c195a1dd2dd306306 -SIZE (wput-0.4.1.tgz) = 153775 +MD5 (wput-0.5.tgz) = 441b2e07219f78167b29a7ac33488fff +SIZE (wput-0.5.tgz) = 121543 --- wput-0.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 00:48:53 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 886E016A4CE; Wed, 15 Dec 2004 00:48:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6517843D55; Wed, 15 Dec 2004 00:48:53 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF0mrfW091323; Wed, 15 Dec 2004 00:48:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF0mr7S091319; Wed, 15 Dec 2004 00:48:53 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 00:48:53 GMT From: Edwin Groothuis Message-Id: <200412150048.iBF0mr7S091319@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/75085: Update port: ftp/wput - new version (0.5) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 00:48:53 -0000 Synopsis: Update port: ftp/wput - new version (0.5) Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 00:46:23 GMT 2004 Responsible-Changed-Why: Compiles fine, ask maintainer for approval http://www.freebsd.org/cgi/query-pr.cgi?pr=75085 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 02:44:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 379E516A51D; Wed, 15 Dec 2004 02:44:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E7DE43D1F; Wed, 15 Dec 2004 02:44:08 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF2i7Dh007074; Wed, 15 Dec 2004 02:44:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF2i7vi007069; Wed, 15 Dec 2004 02:44:07 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 02:44:07 GMT From: Edwin Groothuis Message-Id: <200412150244.iBF2i7vi007069@freefall.freebsd.org> To: filippo@widestore.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71231: [NEW PORT] multimedia/xmms-skins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 02:44:09 -0000 Synopsis: [NEW PORT] multimedia/xmms-skins State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 02:44:05 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71231 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 02:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 852AC16A4CF for ; Wed, 15 Dec 2004 02:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5577D43D31 for ; Wed, 15 Dec 2004 02:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF2oNhl007352 for ; Wed, 15 Dec 2004 02:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF2oNmf007351; Wed, 15 Dec 2004 02:50:23 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 02:50:23 GMT Resent-Message-Id: <200412150250.iBF2oNmf007351@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676ED16A4CE for ; Wed, 15 Dec 2004 02:46:18 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3039C43D2D for ; Wed, 15 Dec 2004 02:46:18 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id 3BEDFB91075 for ; Wed, 15 Dec 2004 02:46:13 +0000 (UTC) Received: from hotpop.com (unknown [219.146.252.179]) by smtp-2.hotpop.com (Postfix) with ESMTP id 4E4B6B8E30A; Wed, 15 Dec 2004 02:45:58 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Wed, 15 Dec 2004 10:45:49 +0800 Message-Id: <20041215024558.4E4B6B8E30A@smtp-2.hotpop.com> Date: Wed, 15 Dec 2004 10:45:49 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice Liu Subject: ports/75086: [maintainer update] net/tcping: update MASTER_SITES and WWW X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 02:50:23 -0000 >Number: 75086 >Category: ports >Synopsis: [maintainer update] net/tcping: update MASTER_SITES and WWW >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 Dec 15 02:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: The original author moved his/her web site, so I'm updating MASTER_SITES and WWW >How-To-Repeat: N/A >Fix: --- tcping.diff begins here --- diff -ruN tcping.old/Makefile tcping/Makefile --- tcping.old/Makefile Sun Nov 14 12:58:28 2004 +++ tcping/Makefile Wed Dec 15 10:41:59 2004 @@ -8,7 +8,7 @@ PORTNAME= tcping PORTVERSION= 1.3.4 CATEGORIES= net -MASTER_SITES= http://stud.fh-heilbronn.de/~kirchner/tcping/ +MASTER_SITES= http://www.linuxco.de/tcping/ MAINTAINER= dryice@liu.com.cn COMMENT= Do a TCP connect to the given IP/port combination diff -ruN tcping.old/pkg-descr tcping/pkg-descr --- tcping.old/pkg-descr Thu Dec 18 01:24:58 2003 +++ tcping/pkg-descr Wed Dec 15 10:42:00 2004 @@ -8,4 +8,4 @@ is reachable and then start connection establishment. Author: Marc Kirchner -WWW: http://stud.fh-heilbronn.de/~kirchner/tcping/tcping.html +WWW: http://www.linuxco.de/tcping/tcping.html --- tcping.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 03:40:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30D7216A4D0 for ; Wed, 15 Dec 2004 03:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D68E43D53 for ; Wed, 15 Dec 2004 03:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF3ePuc014720 for ; Wed, 15 Dec 2004 03:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF3ePkM014719; Wed, 15 Dec 2004 03:40:25 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 03:40:25 GMT Message-Id: <200412150340.iBF3ePkM014719@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Gavin Mu Subject: Re: ports/75052: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gavin Mu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 03:40:26 -0000 The following reply was made to PR ports/75052; it has been noted by GNATS. From: Gavin Mu To: Clive Lin Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/75052: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 Date: Wed, 15 Dec 2004 11:34:13 +0800 It means those files in ~/.qterm directory, eg. address.cfg and qterm.cfg not the ~/.qterm directory. ~/.qterm directory privilege has no problem, but address.cfg and qterm.cfg are 0444 default, and you would be prevent from modifying the SITE description and OPTIONS. Clive Lin Wrote: >On Tue, Dec 14, 2004 at 07:47:59PM +0800, Gavin Mu wrote: > > >>+QTerm's config file privilege in your ~/.qterm directory to 0644 at least >> >> > >Shouldn't this be 0755 ? > >Other part looks good. > > > From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 03:41:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9199116A4CF; Wed, 15 Dec 2004 03:41:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CF3743D4C; Wed, 15 Dec 2004 03:41:47 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF3flfV014832; Wed, 15 Dec 2004 03:41:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF3flGN014828; Wed, 15 Dec 2004 03:41:47 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 03:41:47 GMT From: Edwin Groothuis Message-Id: <200412150341.iBF3flGN014828@freefall.freebsd.org> To: dryice@liu.com.cn, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75086: [maintainer update] net/tcping: update MASTER_SITES and WWW X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 03:41:48 -0000 Synopsis: [maintainer update] net/tcping: update MASTER_SITES and WWW State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 03:41:46 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75086 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 03:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D626816A4CE for ; Wed, 15 Dec 2004 03:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA15343D3F for ; Wed, 15 Dec 2004 03:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF3oNSO015017 for ; Wed, 15 Dec 2004 03:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF3oNu4015006; Wed, 15 Dec 2004 03:50:23 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 03:50:23 GMT Resent-Message-Id: <200412150350.iBF3oNu4015006@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 142E516A4CE for ; Wed, 15 Dec 2004 03:41:34 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0E3A43D49 for ; Wed, 15 Dec 2004 03:41:33 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id 4B930B90BF8 for ; Wed, 15 Dec 2004 03:41:29 +0000 (UTC) Received: from hotpop.com (unknown [219.146.252.179]) by smtp-1.hotpop.com (Postfix) with ESMTP id 4C7DE1A0195; Wed, 15 Dec 2004 03:41:24 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Wed, 15 Dec 2004 11:41:18 +0800 Message-Id: <20041215034124.4C7DE1A0195@smtp-1.hotpop.com> Date: Wed, 15 Dec 2004 11:41:18 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice Liu Subject: ports/75087: [maintainer update] devel/ipython: update to 0.6.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 03:50:24 -0000 >Number: 75087 >Category: ports >Synopsis: [maintainer update] devel/ipython: update to 0.6.6 >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 Dec 15 03:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: Changes: - update to 0.6.6, please refer to http://ipython.scipy.org/NEWS for detail >How-To-Repeat: N/A >Fix: --- ipython.diff begins here --- diff -ruN ipython.old/Makefile ipython/Makefile --- ipython.old/Makefile Wed Dec 8 08:01:41 2004 +++ ipython/Makefile Wed Dec 15 11:32:49 2004 @@ -6,7 +6,7 @@ # PORTNAME= ipython -PORTVERSION= 0.6.5 +PORTVERSION= 0.6.6 CATEGORIES= devel python MASTER_SITES= http://ipython.scipy.org/dist/ PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} diff -ruN ipython.old/distinfo ipython/distinfo --- ipython.old/distinfo Wed Dec 8 08:01:41 2004 +++ ipython/distinfo Wed Dec 15 11:33:27 2004 @@ -1,2 +1,2 @@ -MD5 (ipython-0.6.5.tar.gz) = 95207ad30ceb9b81608e404a1edc022e -SIZE (ipython-0.6.5.tar.gz) = 783973 +MD5 (ipython-0.6.6.tar.gz) = e8382d84d968f414c42b6d0b7a36ab84 +SIZE (ipython-0.6.6.tar.gz) = 789907 --- ipython.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:00:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE7E416A4CF for ; Wed, 15 Dec 2004 04:00:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D88043D46 for ; Wed, 15 Dec 2004 04:00:52 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF40qYo015320 for ; Wed, 15 Dec 2004 04:00:52 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF40qdB015304; Wed, 15 Dec 2004 04:00:52 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 04:00:52 GMT Resent-Message-Id: <200412150400.iBF40qdB015304@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94C9E16A4CE for ; Wed, 15 Dec 2004 03:52:06 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F9F343D41 for ; Wed, 15 Dec 2004 03:52:06 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id EC8FDB9968E for ; Wed, 15 Dec 2004 03:52:02 +0000 (UTC) Received: from hotpop.com (unknown [219.146.252.179]) by smtp-3.hotpop.com (Postfix) with ESMTP id CDF43129C803; Wed, 15 Dec 2004 03:51:58 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Wed, 15 Dec 2004 11:51:58 +0800 Message-Id: <20041215035158.CDF43129C803@smtp-3.hotpop.com> Date: Wed, 15 Dec 2004 11:51:58 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice@smtp-3.hotpop.com cc: "Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:00:53 -0000 >Number: 75088 >Category: ports >Synopsis: [maintainer update] devel/ecb: update to 2.31 >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 Dec 15 04:00:51 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: Changes: - update to 2.31, please refer http://ecb.sourceforge.net/NEWS.html for detail >How-To-Repeat: N/A >Fix: --- ecb.diff begins here --- diff -ruN ecb.old/Makefile ecb/Makefile --- ecb.old/Makefile Thu Dec 9 21:22:01 2004 +++ ecb/Makefile Wed Dec 15 11:44:42 2004 @@ -6,7 +6,7 @@ # PORTNAME= ecb -PORTVERSION= 2.30.1 +PORTVERSION= 2.31 CATEGORIES= devel elisp MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ecb diff -ruN ecb.old/distinfo ecb/distinfo --- ecb.old/distinfo Thu Dec 9 21:22:01 2004 +++ ecb/distinfo Wed Dec 15 11:44:41 2004 @@ -1,2 +1,2 @@ -MD5 (ecb-2.30.1.tar.gz) = c0e5559bdd310f53a0399a2224f9e5cf -SIZE (ecb-2.30.1.tar.gz) = 794816 +MD5 (ecb-2.31.tar.gz) = fe9eee8412061073003c9f6399bdc221 +SIZE (ecb-2.31.tar.gz) = 800468 --- ecb.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:05:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C35F716A4CF; Wed, 15 Dec 2004 04:05:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B93743D48; Wed, 15 Dec 2004 04:05:41 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF45fxl023346; Wed, 15 Dec 2004 04:05:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF45f7l023342; Wed, 15 Dec 2004 04:05:41 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:05:41 GMT From: Edwin Groothuis Message-Id: <200412150405.iBF45f7l023342@freefall.freebsd.org> To: wjw@withagen.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71940: [PORT UPGRADE] devel/cocktail corrected for 64bits compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:05:41 -0000 Synopsis: [PORT UPGRADE] devel/cocktail corrected for 64bits compilation State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 04:02:24 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71940 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:09:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B73C16A4FB; Wed, 15 Dec 2004 04:09:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43C7843D55; Wed, 15 Dec 2004 04:09:19 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF49J2F023426; Wed, 15 Dec 2004 04:09:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF49IG9023422; Wed, 15 Dec 2004 04:09:18 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:09:18 GMT From: Edwin Groothuis Message-Id: <200412150409.iBF49IG9023422@freefall.freebsd.org> To: ganael.laplanche@martymac.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/73505: [PORT UPDATE] net/amule 1.2.8_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:09:19 -0000 Synopsis: [PORT UPDATE] net/amule 1.2.8_1 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 04:09:17 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=73505 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:10:08 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3495E16A4CE for ; Wed, 15 Dec 2004 04:10:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA1AA43D1D for ; Wed, 15 Dec 2004 04:10:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4A7dT023490 for ; Wed, 15 Dec 2004 04:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4A7Jx023480; Wed, 15 Dec 2004 04:10:07 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 04:10:07 GMT Resent-Message-Id: <200412150410.iBF4A7Jx023480@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18FBF16A4CE for ; Wed, 15 Dec 2004 04:06:16 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id B661343D49 for ; Wed, 15 Dec 2004 04:06:15 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id CBDE0128F492 for ; Wed, 15 Dec 2004 04:06:07 +0000 (UTC) Received: from hotpop.com (unknown [219.146.252.179]) by smtp-2.hotpop.com (Postfix) with ESMTP id 6B7DAB8EFB0; Wed, 15 Dec 2004 04:06:04 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Wed, 15 Dec 2004 12:06:04 +0800 Message-Id: <20041215040604.6B7DAB8EFB0@smtp-2.hotpop.com> Date: Wed, 15 Dec 2004 12:06:04 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice Liu Subject: ports/75089: [maintainer update] chinese/fcitx: update to 3.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:10:08 -0000 >Number: 75089 >Category: ports >Synopsis: [maintainer update] chinese/fcitx: update to 3.0.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: Wed Dec 15 04:10:07 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: Changes: - update to 3.0.3 >How-To-Repeat: N/A >Fix: --- fcitx.diff begins here --- diff -ruN fcitx.old/Makefile fcitx/Makefile --- fcitx.old/Makefile Sun Nov 14 12:52:42 2004 +++ fcitx/Makefile Wed Dec 15 11:53:23 2004 @@ -6,7 +6,7 @@ # PORTNAME= fcitx -PORTVERSION= 3.0.2 +PORTVERSION= 3.0.3 CATEGORIES= chinese x11 MASTER_SITES= http://www.fcitx.org/download/ EXTRACT_SUFX= .tar.bz2 diff -ruN fcitx.old/distinfo fcitx/distinfo --- fcitx.old/distinfo Sun Nov 14 12:52:42 2004 +++ fcitx/distinfo Wed Dec 15 11:53:22 2004 @@ -1,2 +1,2 @@ -MD5 (fcitx-3.0.2.tar.bz2) = 506bc9b9366013b4f59ec3b6ee8b4a5e -SIZE (fcitx-3.0.2.tar.bz2) = 2302801 +MD5 (fcitx-3.0.3.tar.bz2) = 7c807617d36764e3c049dd500dc46a75 +SIZE (fcitx-3.0.3.tar.bz2) = 2567530 --- fcitx.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:10:38 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EEEC16A4CF; Wed, 15 Dec 2004 04:10:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28D6343D2F; Wed, 15 Dec 2004 04:10:38 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4Acte023627; Wed, 15 Dec 2004 04:10:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4Ac9Z023623; Wed, 15 Dec 2004 04:10:38 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:10:38 GMT From: Edwin Groothuis Message-Id: <200412150410.iBF4Ac9Z023623@freefall.freebsd.org> To: ganael.laplanche@martymac.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/73502: [NEW PORT] net/amule-devel (aMule 2.0.0rc7) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:10:38 -0000 Synopsis: [NEW PORT] net/amule-devel (aMule 2.0.0rc7) State-Changed-From-To: open->repocopy State-Changed-By: edwin State-Changed-When: Wed Dec 15 04:09:59 GMT 2004 State-Changed-Why: Over to portmgr for repocopy from net/amule to net/amule-devel Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 04:09:59 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=73502 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:20:54 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69A5116A4CE; Wed, 15 Dec 2004 04:20:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 409A243D31; Wed, 15 Dec 2004 04:20:54 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4KsgX023902; Wed, 15 Dec 2004 04:20:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4KsdX023898; Wed, 15 Dec 2004 04:20:54 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:20:54 GMT From: Edwin Groothuis Message-Id: <200412150420.iBF4KsdX023898@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/72941: [Port Update]:: www/drupal 4.4.2 -> 4.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:20:54 -0000 Synopsis: [Port Update]:: www/drupal 4.4.2 -> 4.5.0 Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 04:20:11 GMT 2004 Responsible-Changed-Why: => Attempting to fetch from http://drupal.org/files/projects/. grep: /usr/home/edwin/cvs/ports/www/drupal/distinfo: No such file or directory Receiving drupal-4.5.0.tar.gz (470750 bytes): 100% 470750 bytes transferred in 10.5 seconds (43.93 kBps) 470750 bytes, while the distinfo says: SIZE (drupal-4.5.0.tar.gz) = 469041 Any idea which one is the right one? http://www.freebsd.org/cgi/query-pr.cgi?pr=72941 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:28:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1173616A4CE; Wed, 15 Dec 2004 04:28:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7B9543D5E; Wed, 15 Dec 2004 04:28:25 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4SPBD024079; Wed, 15 Dec 2004 04:28:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4SPXv024075; Wed, 15 Dec 2004 04:28:25 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:28:25 GMT From: Edwin Groothuis Message-Id: <200412150428.iBF4SPXv024075@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lofi@FreeBSD.org Subject: Re: ports/75076: [PATCH] bad checksum for misc/kde3-i18n-es X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:28:26 -0000 Synopsis: [PATCH] bad checksum for misc/kde3-i18n-es Responsible-Changed-From-To: freebsd-ports-bugs->lofi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 04:28:16 GMT 2004 Responsible-Changed-Why: Lofi changed it yesterday http://www.freebsd.org/cgi/query-pr.cgi?pr=75076 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:29:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1071C16A4CE; Wed, 15 Dec 2004 04:29:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E014743D41; Wed, 15 Dec 2004 04:29:46 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4TkPA024146; Wed, 15 Dec 2004 04:29:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4Tkj6024142; Wed, 15 Dec 2004 04:29:46 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:29:46 GMT From: Edwin Groothuis Message-Id: <200412150429.iBF4Tkj6024142@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/75074: fight against -O2 compilers problems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:29:47 -0000 Synopsis: fight against -O2 compilers problems Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 04:29:37 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75074 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:38:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E37F16A4CF; Wed, 15 Dec 2004 04:38:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03CE443D54; Wed, 15 Dec 2004 04:38:41 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4ceEj025301; Wed, 15 Dec 2004 04:38:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4ced4025297; Wed, 15 Dec 2004 04:38:40 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:38:40 GMT From: Edwin Groothuis Message-Id: <200412150438.iBF4ced4025297@freefall.freebsd.org> To: tim@bishnet.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75069: [MAINTAINER] security/f-prot-sig: update to 20041214 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:38:41 -0000 Synopsis: [MAINTAINER] security/f-prot-sig: update to 20041214 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 04:38:23 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75069 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 04:52:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7485E16A4CE; Wed, 15 Dec 2004 04:52:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EC9043D1D; Wed, 15 Dec 2004 04:52:13 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF4qDfG025826; Wed, 15 Dec 2004 04:52:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF4qDXk025822; Wed, 15 Dec 2004 04:52:13 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 04:52:13 GMT From: Edwin Groothuis Message-Id: <200412150452.iBF4qDXk025822@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dd@FreeBSD.org Subject: Re: ports/75064: Update port: net/http_ping update to 20020403 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 04:52:13 -0000 Synopsis: Update port: net/http_ping update to 20020403 Responsible-Changed-From-To: freebsd-ports-bugs->dd Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 04:52:04 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75064 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:00:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C01DE16A4CF for ; Wed, 15 Dec 2004 05:00:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83C9243D1D for ; Wed, 15 Dec 2004 05:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF50kS1025960 for ; Wed, 15 Dec 2004 05:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF50k6g025958; Wed, 15 Dec 2004 05:00:46 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 05:00:46 GMT Resent-Message-Id: <200412150500.iBF50k6g025958@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, Hideyuki KURASHINA Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E90B16A4CE for ; Wed, 15 Dec 2004 04:54:39 +0000 (GMT) Received: from wasley.bl.mmtr.or.jp (wasley.bl.mmtr.or.jp [210.228.173.142]) by mx1.FreeBSD.org (Postfix) with SMTP id 8964643D31 for ; Wed, 15 Dec 2004 04:54:38 +0000 (GMT) (envelope-from rushani@FreeBSD.org) Received: (qmail 10101 invoked from network); 15 Dec 2004 13:54:37 +0900 Received: from unknown (HELO localhost) (210.165.212.57) by wasley.bl.mmtr.or.jp with SMTP; 15 Dec 2004 13:54:37 +0900 Message-Id: <20041215.135218.71107742.rushani@FreeBSD.org> Date: Wed, 15 Dec 2004 13:52:18 +0900 (JST) From: Hideyuki KURASHINA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75092: [Maintainer update] shells/scponly: Unbreak sftp only support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:00:47 -0000 >Number: 75092 >Category: ports >Synopsis: [Maintainer update] shells/scponly: Unbreak sftp only support >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 Dec 15 05:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hideyuki KURASHINA >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD ***.*******.jp 5.3-STABLE FreeBSD 5.3-STABLE #0: Sun Dec 5 04:38:28 JST 2004 hideyuki@***.*******.jp:/usr/obj/usr/src/sys/*** i386 >Description: Scponly validates dangerous arguments since version 4.0. However, there is a regression compared with version 3.11. That is scponly can not be built only with sftp support. Reference: https://lists.ccs.neu.edu/pipermail/scponly/2004-December/000655.html >How-To-Repeat: # cd /usr/ports/shells/scponly # make -DWITHOUT_SCPONLY_WINSCP -DWITHOUT_SCPONLY_SCP >Fix: Apply following patch, Index: Makefile =================================================================== RCS file: /home/ncvs/ports/shells/scponly/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 4 Dec 2004 23:56:24 -0000 1.13 +++ Makefile 15 Dec 2004 04:44:31 -0000 @@ -63,7 +63,7 @@ PORTNAME= scponly PORTVERSION= 4.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= http://www.sublimation.org/scponly/ EXTRACT_SUFX= .tgz Index: files/patch-ab =================================================================== RCS file: files/patch-ab diff -N files/patch-ab --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-ab 15 Dec 2004 04:41:40 -0000 @@ -0,0 +1,12 @@ +--- scponly.c.orig Sun Nov 28 10:16:39 2004 ++++ scponly.c Wed Dec 15 13:38:11 2004 +@@ -76,7 +76,9 @@ + */ + cmd_arg_t dangerous_args[] = + { ++#ifdef ENABLE_SCP2 + { PROG_SCP, "-S" }, ++#endif + { PROG_SFTP_SERVER, "-S" }, + #ifdef UNISON_COMPAT + { PROG_UNISON, "-rshcmd" }, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:00:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8A0816A4CF for ; Wed, 15 Dec 2004 05:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6742A43D2F for ; Wed, 15 Dec 2004 05:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF50l84026032 for ; Wed, 15 Dec 2004 05:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF50l0W026031; Wed, 15 Dec 2004 05:00:47 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 05:00:47 GMT Resent-Message-Id: <200412150500.iBF50l0W026031@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 Gnezdov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ADA516A4CE for ; Wed, 15 Dec 2004 04:56:21 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C2243D54 for ; Wed, 15 Dec 2004 04:56:21 +0000 (GMT) (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 iBF4uLAj060493 for ; Wed, 15 Dec 2004 04:56:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBF4uLA6060492; Wed, 15 Dec 2004 04:56:21 GMT (envelope-from nobody) Message-Id: <200412150456.iBF4uLA6060492@www.freebsd.org> Date: Wed, 15 Dec 2004 04:56:21 GMT From: Sergei Gnezdov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75093: New Port: devel/cut X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:00:47 -0000 >Number: 75093 >Category: ports >Synopsis: New Port: devel/cut >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 Dec 15 05:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sergei Gnezdov >Release: 5.3 >Organization: >Environment: 5.3-RELEASE >Description: cut is a C Unit Testing Framework. >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: # # cut # cut/distinfo # cut/Makefile # cut/pkg-plist # cut/pkg-descr # echo c - cut mkdir -p cut > /dev/null 2>&1 echo x - cut/distinfo sed 's/^X//' >cut/distinfo << 'END-of-cut/distinfo' XMD5 (cut-2.4rc1.tar.gz) = d0778c933ab18c11f29978fe031609ed XSIZE (cut-2.4rc1.tar.gz) = 120783 END-of-cut/distinfo echo x - cut/Makefile sed 's/^X//' >cut/Makefile << 'END-of-cut/Makefile' X# New ports collection makefile for: cut X# Date created: December 5 2004 X# Whom: Sergei Gnezdov X# X# $FreeBSD$ X# X XPORTNAME= cut XPORTVERSION= 2.4 XPORTREVISION= 1 XCATEGORIES= devel XMASTER_SITES= http://www.falvotech.com/downloads/ X XMAINTAINER= sgnezdov@sergei.homeunix.org XCOMMENT= Unit Testing Framework for C, C++ and Objective-C X XDISTVERSIONSUFFIX= rc1 X XEXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}-${PORTVERSION} XDOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} X X# related to build target XALL_TARGET= bin/cutgen X X# cut interface is compatible at major version number Xmajor= 2 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/bin/cutgen ${PREFIX}/bin/cutgen-${major} X ${CP} -R ${WRKSRC}/include/* ${PREFIX}/include/ X ${MKDIR} ${DOCSDIR}/tutorial X ${CP} ${WRKSRC}/LICENSE ${WRKSRC}/docs/README ${WRKSRC}/CHANGELOG ${DOCSDIR}/ X ${CP} -R ${WRKSRC}/docs/tutorials/sergei_gnezdov/*.c\ X ${WRKSRC}/docs/tutorials/sergei_gnezdov/*.h\ X ${WRKSRC}/docs/tutorials/sergei_gnezdov/*.dvi\ X ${WRKSRC}/docs/tutorials/sergei_gnezdov/*.pdf\ X ${WRKSRC}/docs/tutorials/sergei_gnezdov/*.ps\ X ${DOCSDIR}/tutorial/ X ${MKDIR} ${EXAMPLESDIR}/ X ${CP} -R ${WRKSRC}/test/* ${EXAMPLESDIR}/ X X.include END-of-cut/Makefile echo x - cut/pkg-plist sed 's/^X//' >cut/pkg-plist << 'END-of-cut/pkg-plist' Xbin/cutgen-2 Xinclude/cut-2/cut.h Xshare/doc/cut-2.4/CHANGELOG Xshare/doc/cut-2.4/LICENSE Xshare/doc/cut-2.4/README Xshare/doc/cut-2.4/tutorial/Compute.c Xshare/doc/cut-2.4/tutorial/Compute.h Xshare/doc/cut-2.4/tutorial/Compute1.c Xshare/doc/cut-2.4/tutorial/Main.c Xshare/doc/cut-2.4/tutorial/TestCompute.c Xshare/doc/cut-2.4/tutorial/Tutorial.dvi Xshare/doc/cut-2.4/tutorial/Tutorial.pdf Xshare/doc/cut-2.4/tutorial/Tutorial.ps Xshare/examples/cut-2.4/all-pass/Makefile Xshare/examples/cut-2.4/all-pass/cut-pass.c Xshare/examples/cut-2.4/bringup-failure/Makefile Xshare/examples/cut-2.4/bringup-failure/cut-explode1.c Xshare/examples/cut-2.4/bringup-failure/cut-explode2.c Xshare/examples/cut-2.4/normal-failure/Makefile Xshare/examples/cut-2.4/normal-failure/cut-explode.c Xshare/examples/cut-2.4/simple-demo-pass/Makefile Xshare/examples/cut-2.4/simple-demo-pass/cut-pass.c X@dirrm include/cut-2/ X@dirrm share/doc/cut-2.4/tutorial/ X@dirrm share/doc/cut-2.4/ X@dirrm share/examples/cut-2.4/all-pass/ X@dirrm share/examples/cut-2.4/bringup-failure/ X@dirrm share/examples/cut-2.4/normal-failure/ X@dirrm share/examples/cut-2.4/simple-demo-pass/ X@dirrm share/examples/cut-2.4/ END-of-cut/pkg-plist echo x - cut/pkg-descr sed 's/^X//' >cut/pkg-descr << 'END-of-cut/pkg-descr' XCUT is a simple, to-the-point unit testing system. It's different from Xother unit test packages in that it follows the KISS principle. It's Xdesigned for C testing, not designed to emulate SUnit. X XCUT works with C, C++ and Objective-C. X XCUT was primarily written by Samuel A. Falvo II and by Billy Tanksley, Xstarting life as distinct, and even competing, CUT 1.0 and test-assert Xpackages. When it was finally decided to combine both packages into a Xsingle tool, CUT 2.0 was released, and found to be vastly more useful Xthan either expected. CUT 2.3 is the latest version of the CUT 2.x Xseries. X XCUT follows standard error messages format supported by Emacs. X XSourceForge.net location: WWW: http://sourceforge.net/projects/cut/ XHome Page: WWW: http://www.falvotech.com/projects/cut.php END-of-cut/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:14:39 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52EE716A4DD; Wed, 15 Dec 2004 05:14:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 297F243D2F; Wed, 15 Dec 2004 05:14:38 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5EcpU030431; Wed, 15 Dec 2004 05:14:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5EbQG030427; Wed, 15 Dec 2004 05:14:37 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 05:14:37 GMT From: Edwin Groothuis Message-Id: <200412150514.iBF5EbQG030427@freefall.freebsd.org> To: fbsd@opal.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75062: update port: net/boinc-client - fixes for FreeBSD 4.X and for 64-bit archs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:14:40 -0000 Synopsis: update port: net/boinc-client - fixes for FreeBSD 4.X and for 64-bit archs State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 05:14:35 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75062 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:20:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6475E16A4CE for ; Wed, 15 Dec 2004 05:20:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B91643D58 for ; Wed, 15 Dec 2004 05:20:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5KAEL030564 for ; Wed, 15 Dec 2004 05:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5KAKQ030561; Wed, 15 Dec 2004 05:20:10 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 05:20:10 GMT Resent-Message-Id: <200412150520.iBF5KAKQ030561@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E7BE16A4CF for ; Wed, 15 Dec 2004 05:14:37 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 165D743D1F for ; Wed, 15 Dec 2004 05:14:37 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id D01B0734AA for ; Wed, 15 Dec 2004 05:13:26 +0000 (UTC) Received: from hotpop.com (unknown [219.146.252.179]) by smtp-1.hotpop.com (Postfix) with ESMTP id 470221A01B8; Wed, 15 Dec 2004 05:13:18 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Wed, 15 Dec 2004 13:13:17 +0800 Message-Id: <20041215051322.470221A01B8@smtp-1.hotpop.com> Date: Wed, 15 Dec 2004 13:13:17 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice Liu Subject: ports/75094: [new port] deskutils/etask: Define and manage projects within Emacs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:20:10 -0000 >Number: 75094 >Category: ports >Synopsis: [new port] deskutils/etask: Define and manage projects within Emacs >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 Dec 15 05:20:09 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: Etask is a Emacs mode to define and manage projects and todos, it features: - Keep track of tasks in multiple projects - Manage your todos - Organize tasks and todos in subtasks and subtodos - Archive tasks and todos - Display Gantt bars for all tasks and todos - Change the zoom factor of the Gantt chart - Classify each project task according to its criticality: * Normal tasks * High risk tasks * Tasks lying on the critical path - Make task and todo notes - Set task-specific progress goals: linear, moderate s-shaped, or s-shaped with tougher requirements for the middle phase and therefore more flexibility towards the planned end - Multilingual (German and English) - Print detailed project status reports - Generate LaTeX output for high-quality Gantt charts >How-To-Repeat: N/A >Fix: --- etask.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/deskutils/etask # /usr/ports/deskutils/etask/distinfo # /usr/ports/deskutils/etask/Makefile # /usr/ports/deskutils/etask/pkg-descr # /usr/ports/deskutils/etask/pkg-plist # echo c - /usr/ports/deskutils/etask mkdir -p /usr/ports/deskutils/etask > /dev/null 2>&1 echo x - /usr/ports/deskutils/etask/distinfo sed 's/^X//' >/usr/ports/deskutils/etask/distinfo << 'END-of-/usr/ports/deskutils/etask/distinfo' XMD5 (etask-0.3.91.tar.gz) = 88a5f99d80c84b8a81bfa62dd2b0911b XSIZE (etask-0.3.91.tar.gz) = 199577 END-of-/usr/ports/deskutils/etask/distinfo echo x - /usr/ports/deskutils/etask/Makefile sed 's/^X//' >/usr/ports/deskutils/etask/Makefile << 'END-of-/usr/ports/deskutils/etask/Makefile' X# New ports collection makefile for: etask X# Date created: 15 December 2004 X# Whom: Dryice Liu X# X# $FreeBSD$ X# X XPORTNAME= etask XPORTVERSION= 0.3.91 XCATEGORIES= deskutils elisp XMASTER_SITES= http://members.chello.at/rene.weichselbaum/ X XMAINTAINER= dryice@liu.com.cn XCOMMENT= Manage your projects or tasks within GNU Emacs X XRUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \ X dvips:${PORTSDIR}/print/dvipsk-tetex \ X ps2pdf:${PORTSDIR}/print/ghostscript-gnu \ X xpdf:${PORTSDIR}/graphics/xpdf X XEMACS_PORT_NAME?= emacs21 X X.if ${EMACS_PORT_NAME} != "emacs21" XPORTNAMESUFFIX= ${PKGNAMESUFFIX} X.endif X XLISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} XWRKSRC= ${WRKDIR}/${DISTNAME}a X X.if !defined(NOPORTDOCS) XPORTDOCS= etasktut.pdf gpl.txt README X.endif X Xdo-build: X cd ${WRKSRC}; ${EMACS_NAME} -batch -no-site-file\ X --eval="(add-to-list 'load-path \"${WRKSRC}\")"\ X -f batch-byte-compile *.el X Xdo-install: X ${MKDIR} ${LISPDIR} X.for i in *.el *.elc X ${INSTALL_DATA} ${WRKSRC}/${i} ${LISPDIR} X.endfor X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for i in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} X.endfor X.endif X X.include END-of-/usr/ports/deskutils/etask/Makefile echo x - /usr/ports/deskutils/etask/pkg-descr sed 's/^X//' >/usr/ports/deskutils/etask/pkg-descr << 'END-of-/usr/ports/deskutils/etask/pkg-descr' XIf you want Emacs to support you in your efforts to define and manage Xyour projects or tasks this Emacs extension is for you. X XSome of the features you might find useful within the Emacs environment: X X * Keep track of tasks in multiple projects X * Manage your todos X * Display Gantt bars for all tasks and todos X * Change the zoom factor of the Gantt chart X * Classify each project task according to its criticality: X o Normal tasks X o High risk tasks X o Tasks lying on the critical path X * Make task and todo notes X * Set task-specific progress goals: linear, moderate s-shaped, or X s-shaped with tougher requirements for the middle phase and X therefore more flexibility towards the planned end X * Multilingual (German and English) X * Print detailed project status reports X * Generate LaTeX output for high-quality Gantt charts X XWWW: http://members.chello.at/rene.weichselbaum/etask.html END-of-/usr/ports/deskutils/etask/pkg-descr echo x - /usr/ports/deskutils/etask/pkg-plist sed 's/^X//' >/usr/ports/deskutils/etask/pkg-plist << 'END-of-/usr/ports/deskutils/etask/pkg-plist' X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-cat.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-cat.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-db.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-db.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-event.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-event.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-lang.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-lang.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-port.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-port.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-proj.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-proj.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-tex.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-tex.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-todo.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-todo.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask.elc X@dirrm %%EMACS_VERSION_SITE_LISPDIR%%/etask END-of-/usr/ports/deskutils/etask/pkg-plist exit --- etask.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:30:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01EDB16A4CE for ; Wed, 15 Dec 2004 05:30:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC70B43D49 for ; Wed, 15 Dec 2004 05:30:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5UHSb031378 for ; Wed, 15 Dec 2004 05:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5UHU9031371; Wed, 15 Dec 2004 05:30:17 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 05:30:17 GMT Resent-Message-Id: <200412150530.iBF5UHU9031371@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C60D16A4CE for ; Wed, 15 Dec 2004 05:23:02 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id C37FF43D1D for ; Wed, 15 Dec 2004 05:23:01 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id 8A8B8B96926 for ; Wed, 15 Dec 2004 05:22:55 +0000 (UTC) Received: from hotpop.com (unknown [219.146.251.161]) by smtp-3.hotpop.com (Postfix) with ESMTP id 35F4F12967A3; Wed, 15 Dec 2004 05:22:48 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Wed, 15 Dec 2004 13:22:45 +0800 Message-Id: <20041215052248.35F4F12967A3@smtp-3.hotpop.com> Date: Wed, 15 Dec 2004 13:22:45 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice Liu Subject: ports/75095: [new port] deskutils/etask: Define and manage projects within Emacs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:30:18 -0000 >Number: 75095 >Category: ports >Synopsis: [new port] deskutils/etask: Define and manage projects within Emacs >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 Dec 15 05:30:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: Etask is a Emacs mode to define and manage projects and todos, it features: - Keep track of tasks in multiple projects - Manage your todos - Organize tasks and todos in subtasks and subtodos - Archive tasks and todos - Display Gantt bars for all tasks and todos - Change the zoom factor of the Gantt chart - Classify each project task according to its criticality: * Normal tasks * High risk tasks * Tasks lying on the critical path - Make task and todo notes - Set task-specific progress goals: linear, moderate s-shaped, or s-shaped with tougher requirements for the middle phase and therefore more flexibility towards the planned end - Multilingual (German and English) - Print detailed project status reports - Generate LaTeX output for high-quality Gantt charts Please note this PR obsolete ports/70648 with a new version and location. >How-To-Repeat: N/A >Fix: --- etask.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/deskutils/etask # /usr/ports/deskutils/etask/distinfo # /usr/ports/deskutils/etask/Makefile # /usr/ports/deskutils/etask/pkg-descr # /usr/ports/deskutils/etask/pkg-plist # echo c - /usr/ports/deskutils/etask mkdir -p /usr/ports/deskutils/etask > /dev/null 2>&1 echo x - /usr/ports/deskutils/etask/distinfo sed 's/^X//' >/usr/ports/deskutils/etask/distinfo << 'END-of-/usr/ports/deskutils/etask/distinfo' XMD5 (etask-0.3.91.tar.gz) = 88a5f99d80c84b8a81bfa62dd2b0911b XSIZE (etask-0.3.91.tar.gz) = 199577 END-of-/usr/ports/deskutils/etask/distinfo echo x - /usr/ports/deskutils/etask/Makefile sed 's/^X//' >/usr/ports/deskutils/etask/Makefile << 'END-of-/usr/ports/deskutils/etask/Makefile' X# New ports collection makefile for: etask X# Date created: 15 December 2004 X# Whom: Dryice Liu X# X# $FreeBSD$ X# X XPORTNAME= etask XPORTVERSION= 0.3.91 XCATEGORIES= deskutils elisp XMASTER_SITES= http://members.chello.at/rene.weichselbaum/ X XMAINTAINER= dryice@liu.com.cn XCOMMENT= Manage your projects or tasks within GNU Emacs X XRUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \ X dvips:${PORTSDIR}/print/dvipsk-tetex \ X ps2pdf:${PORTSDIR}/print/ghostscript-gnu \ X xpdf:${PORTSDIR}/graphics/xpdf X XEMACS_PORT_NAME?= emacs21 X X.if ${EMACS_PORT_NAME} != "emacs21" XPORTNAMESUFFIX= ${PKGNAMESUFFIX} X.endif X XLISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} XWRKSRC= ${WRKDIR}/${DISTNAME}a X X.if !defined(NOPORTDOCS) XPORTDOCS= etasktut.pdf gpl.txt README X.endif X Xdo-build: X cd ${WRKSRC}; ${EMACS_NAME} -batch -no-site-file\ X --eval="(add-to-list 'load-path \"${WRKSRC}\")"\ X -f batch-byte-compile *.el X Xdo-install: X ${MKDIR} ${LISPDIR} X.for i in *.el *.elc X ${INSTALL_DATA} ${WRKSRC}/${i} ${LISPDIR} X.endfor X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for i in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} X.endfor X.endif X X.include END-of-/usr/ports/deskutils/etask/Makefile echo x - /usr/ports/deskutils/etask/pkg-descr sed 's/^X//' >/usr/ports/deskutils/etask/pkg-descr << 'END-of-/usr/ports/deskutils/etask/pkg-descr' XIf you want Emacs to support you in your efforts to define and manage Xyour projects or tasks this Emacs extension is for you. X XSome of the features you might find useful within the Emacs environment: X X * Keep track of tasks in multiple projects X * Manage your todos X * Display Gantt bars for all tasks and todos X * Change the zoom factor of the Gantt chart X * Classify each project task according to its criticality: X o Normal tasks X o High risk tasks X o Tasks lying on the critical path X * Make task and todo notes X * Set task-specific progress goals: linear, moderate s-shaped, or X s-shaped with tougher requirements for the middle phase and X therefore more flexibility towards the planned end X * Multilingual (German and English) X * Print detailed project status reports X * Generate LaTeX output for high-quality Gantt charts X XWWW: http://members.chello.at/rene.weichselbaum/etask.html END-of-/usr/ports/deskutils/etask/pkg-descr echo x - /usr/ports/deskutils/etask/pkg-plist sed 's/^X//' >/usr/ports/deskutils/etask/pkg-plist << 'END-of-/usr/ports/deskutils/etask/pkg-plist' X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-cat.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-cat.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-db.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-db.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-event.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-event.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-lang.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-lang.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-port.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-port.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-proj.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-proj.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-tex.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-tex.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-todo.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask-todo.elc X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask.el X%%EMACS_VERSION_SITE_LISPDIR%%/etask/etask.elc X@dirrm %%EMACS_VERSION_SITE_LISPDIR%%/etask END-of-/usr/ports/deskutils/etask/pkg-plist exit --- etask.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:30:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9029F16A4CE for ; Wed, 15 Dec 2004 05:30:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5528D43D1F for ; Wed, 15 Dec 2004 05:30:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5UIQK031412 for ; Wed, 15 Dec 2004 05:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5UI0T031394; Wed, 15 Dec 2004 05:30:18 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 05:30:18 GMT Resent-Message-Id: <200412150530.iBF5UI0T031394@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 Jackson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67F9D16A4CE for ; Wed, 15 Dec 2004 05:29:38 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52FB443D3F for ; Wed, 15 Dec 2004 05:29:38 +0000 (GMT) (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 iBF5Tcog082290 for ; Wed, 15 Dec 2004 05:29:38 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBF5Tb8g082281; Wed, 15 Dec 2004 05:29:38 GMT (envelope-from nobody) Message-Id: <200412150529.iBF5Tb8g082281@www.freebsd.org> Date: Wed, 15 Dec 2004 05:29:38 GMT From: Martin Jackson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75096: p5-Curses won't compile with perl 5.8.5-threaded X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:30:18 -0000 >Number: 75096 >Category: ports >Synopsis: p5-Curses won't compile with perl 5.8.5-threaded >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 Dec 15 05:30:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Martin Jackson >Release: 5.3-RELEASE-p2 >Organization: >Environment: FreeBSD palantir.minas.tirith 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Mon Nov 29 22:33:19 CST 2004 root@bruinen.minas.tirith:/usr/obj/usr/src/sys/FW i386 >Description: p5-Curses-1.06 has a known issue with recent Perls: Curses.c:275: error: too few arguments to function `Perl_sv_isa' >How-To-Repeat: cd /usr/ports/devel/p5-Curses; make install >Fix: Curses-1.08 (available on CPAN) addresses this. I CPAN'd it and compiled it with default options and it compiled and installed OK. Should only take a version bump to fix... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:46:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B371F16A4CE; Wed, 15 Dec 2004 05:46:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82C0943D54; Wed, 15 Dec 2004 05:46:52 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (clive@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5kqmq055394; Wed, 15 Dec 2004 05:46:52 GMT (envelope-from clive@freefall.freebsd.org) Received: (from clive@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5kiTe055390; Wed, 15 Dec 2004 05:46:44 GMT (envelope-from clive) Date: Wed, 15 Dec 2004 05:46:44 GMT From: Clive Lin Message-Id: <200412150546.iBF5kiTe055390@freefall.freebsd.org> To: gavin@FreeBSDChina.org, clive@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75052: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:46:52 -0000 Synopsis: [MAINTAINER UPDATE] chinese/qterm: update to 0.4.0pre2 State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Wed Dec 15 05:46:33 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=75052 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:50:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F3B416A4D2 for ; Wed, 15 Dec 2004 05:50:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CCFA43D2D for ; Wed, 15 Dec 2004 05:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5oVsw055730 for ; Wed, 15 Dec 2004 05:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5oVUM055729; Wed, 15 Dec 2004 05:50:31 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 05:50:31 GMT Message-Id: <200412150550.iBF5oVUM055729@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dryice Liu Subject: Re: ports/70648: [new port] deskutils/etask: Emacs support to define and manage projects X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:50:33 -0000 The following reply was made to PR ports/70648; it has been noted by GNATS. From: Dryice Liu To: freebsd-gnats-submit@FreeBSD.org, dryice@liu.com.cn Cc: Subject: Re: ports/70648: [new port] deskutils/etask: Emacs support to define and manage projects Date: Wed, 15 Dec 2004 05:39:54 +0000 (UTC) --text follows this line-- Please close this PR. It's obsoleted by ports/75095 with a new version and new location. Date: Wed, 15 Dec 2004 13:39:41 +0800 Message-ID: <86y8g0i0gy.fsf@dryice.3322.org> User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii -- Cheers, Dryice http://dryice.3322.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 05:50:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7195916A4DE for ; Wed, 15 Dec 2004 05:50:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E68443D3F for ; Wed, 15 Dec 2004 05:50:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF5oaER055763 for ; Wed, 15 Dec 2004 05:50:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF5oast055762; Wed, 15 Dec 2004 05:50:36 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 05:50:36 GMT Message-Id: <200412150550.iBF5oast055762@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dryice Liu Subject: Re: ports/75094: [new port] deskutils/etask: Define and manage projects within Emacs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 05:50:36 -0000 The following reply was made to PR ports/75094; it has been noted by GNATS. From: Dryice Liu To: freebsd-gnats-submit@FreeBSD.org, dryice@liu.com.cn Cc: Subject: Re: ports/75094: [new port] deskutils/etask: Define and manage projects within Emacs Date: Wed, 15 Dec 2004 05:40:47 +0000 (UTC) --text follows this line-- Please close this PR. It's duplicate with ports/75095 except there's more info there. I should hit "C-c" one or two seconds earlier... Date: Wed, 15 Dec 2004 13:40:45 +0800 Message-ID: <86mzwgi0f6.fsf@dryice.3322.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sorry for the inconvenience. -- Cheers, Dryice http://dryice.3322.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 07:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FD0C16A4CE for ; Wed, 15 Dec 2004 07:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15F4743D31 for ; Wed, 15 Dec 2004 07:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF7AOaf070085 for ; Wed, 15 Dec 2004 07:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF7AOWP070084; Wed, 15 Dec 2004 07:10:24 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 07:10:24 GMT Resent-Message-Id: <200412150710.iBF7AOWP070084@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, Axel Gonzalez Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A655A16A4CE for ; Wed, 15 Dec 2004 07:09:39 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9201A43D4C for ; Wed, 15 Dec 2004 07:09:39 +0000 (GMT) (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 iBF79ddl030161 for ; Wed, 15 Dec 2004 07:09:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBF79dL8030160; Wed, 15 Dec 2004 07:09:39 GMT (envelope-from nobody) Message-Id: <200412150709.iBF79dL8030160@www.freebsd.org> Date: Wed, 15 Dec 2004 07:09:39 GMT From: Axel Gonzalez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75097: Noatun 2.6.1 doesn't play streams (kdemultimedia 3.3.2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 07:10:25 -0000 >Number: 75097 >Category: ports >Synopsis: Noatun 2.6.1 doesn't play streams (kdemultimedia 3.3.2) >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 Dec 15 07:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Axel Gonzalez >Release: 5.3-STABLE >Organization: >Environment: FreeBSD moonlight.e-shell.net 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 14 01:08:51 CST 2004 root@moonlight.e-shell.net:/usr/obj/usr/src/sys/LXAMD64 amd64 >Description: After the upgrade to KDE 3.3.2, noatun doesn't play streams anymore. When you try to open a stream, it shows the pop-up window with stream name, ip, etc. but it doesn't play the stream. There some sporadic sounds playing on speakers, like playing in slow motion, and then artsd crashes. Tried with both mp3 and ogg streams, and it seems to play local files with no problems. reported in kde bugs as: http://bugs.kde.org/show_bug.cgi?id=95191 >How-To-Repeat: try to play any stream >Fix: ? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 07:18:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB09416A4CF; Wed, 15 Dec 2004 07:18:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B02F843D41; Wed, 15 Dec 2004 07:18:00 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF7I0fL070922; Wed, 15 Dec 2004 07:18:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF7I0hL070918; Wed, 15 Dec 2004 07:18:00 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 07:18:00 GMT From: Edwin Groothuis Message-Id: <200412150718.iBF7I0hL070918@freefall.freebsd.org> To: lx@redundancy.redundancy.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/74341: New port: x11-clocks/barclock - a UPC barcode clock X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 07:18:01 -0000 Synopsis: New port: x11-clocks/barclock - a UPC barcode clock State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Dec 15 07:17:31 GMT 2004 State-Changed-Why: fetch: http://www.scarydevil.com/~peter/sw/barclock-0.9.tar.gz: size mismatch: expected 48832, actual 48867 Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 15 07:17:31 GMT 2004 Responsible-Changed-Why: I'll handle it http://www.freebsd.org/cgi/query-pr.cgi?pr=74341 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:05:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B407D16A4CE; Wed, 15 Dec 2004 08:05:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8716143D48; Wed, 15 Dec 2004 08:05:55 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF85tTv077288; Wed, 15 Dec 2004 08:05:55 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF85t7h077284; Wed, 15 Dec 2004 08:05:55 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:05:55 GMT From: Volker Stolz Message-Id: <200412150805.iBF85t7h077284@freefall.freebsd.org> To: Hilko.Meyer@gmx.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75034: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:05:55 -0000 Synopsis: [patch] Scanlogd doesn't start with rc-script after update to scanlogd-2.2.5_1 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 08:05:32 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75034 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:07:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24DB616A4CE; Wed, 15 Dec 2004 08:07:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00B4243D46; Wed, 15 Dec 2004 08:07:13 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF87CT8077343; Wed, 15 Dec 2004 08:07:12 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF87CAe077339; Wed, 15 Dec 2004 08:07:12 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:07:12 GMT From: Volker Stolz Message-Id: <200412150807.iBF87CAe077339@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/75083: kdelibs3 fails on compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:07:13 -0000 Synopsis: kdelibs3 fails on compilation Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 08:06:43 GMT 2004 Responsible-Changed-Why: Over to KDE http://www.freebsd.org/cgi/query-pr.cgi?pr=75083 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:20:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59CE816A4CF for ; Wed, 15 Dec 2004 08:20:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A6DD43D45 for ; Wed, 15 Dec 2004 08:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF8KRkp077685 for ; Wed, 15 Dec 2004 08:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF8KRLr077684; Wed, 15 Dec 2004 08:20:27 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 08:20:27 GMT Resent-Message-Id: <200412150820.iBF8KRLr077684@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 Khotyaintsev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD03B16A4CE for ; Wed, 15 Dec 2004 08:16:32 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C49743D3F for ; Wed, 15 Dec 2004 08:16:32 +0000 (GMT) (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 iBF8GV8T070749 for ; Wed, 15 Dec 2004 08:16:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBF8GVHn070748; Wed, 15 Dec 2004 08:16:31 GMT (envelope-from nobody) Message-Id: <200412150816.iBF8GVHn070748@www.freebsd.org> Date: Wed, 15 Dec 2004 08:16:31 GMT From: Yuri Khotyaintsev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75098: ukrainian/kde3-i18n has bad MD5/size X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:20:28 -0000 >Number: 75098 >Category: ports >Synopsis: ukrainian/kde3-i18n has bad MD5/size >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 15 08:20:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yuri Khotyaintsev >Release: 5.3-STABLE >Organization: Swedish Institute of Space Physics >Environment: FreeBSD xxx.irfu.se 5.3-STABLE FreeBSD 5.3-STABLE #0: Wed Dec 8 09:49:25 CET 2004 root@ice.irfu.se:/usr/obj/usr/src/sys/ICE i386 >Description: ukrainian/kde3-i18n has bad MD5/size. It looks like KDE/kde-i18n/kde-i18n-uk-3.3.2.tar.bz2 was updated on KDE mirrors (my mirror is ftp://ftp.se.kde.org). >How-To-Repeat: cd /usr/ports/ukrainian/kde3-i18n; make >Fix: Here are the correct MD5 and SIZE: MD5 (KDE/kde-i18n/kde-i18n-uk-3.3.2.tar.bz2) = 2c774736692a4e4da2d180989231b573 SIZE (KDE/kde-i18n/kde-i18n-uk-3.3.2.tar.bz2) = 2942368 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:45:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86E7B16A4CE; Wed, 15 Dec 2004 08:45:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F52943D39; Wed, 15 Dec 2004 08:45:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF8juge079635; Wed, 15 Dec 2004 08:45:56 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF8jt0H079631; Wed, 15 Dec 2004 08:45:55 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:45:55 GMT From: Volker Stolz Message-Id: <200412150845.iBF8jt0H079631@freefall.freebsd.org> To: tjs@cdpa.nsysu.edu.tw, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72292: ports/security/smtpscan install error with perl > 5.6.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:45:56 -0000 Synopsis: ports/security/smtpscan install error with perl > 5.6.x State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 08:45:46 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=72292 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:47:44 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1713216A4CE; Wed, 15 Dec 2004 08:47:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E59D143D2F; Wed, 15 Dec 2004 08:47:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF8lhFg079700; Wed, 15 Dec 2004 08:47:43 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF8lhJA079696; Wed, 15 Dec 2004 08:47:43 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:47:43 GMT From: Volker Stolz Message-Id: <200412150847.iBF8lhJA079696@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org Subject: Re: ports/75096: p5-Curses won't compile with perl 5.8.5-threaded X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:47:44 -0000 Synopsis: p5-Curses won't compile with perl 5.8.5-threaded Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 08:47:30 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75096 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:48:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C701316A4CE; Wed, 15 Dec 2004 08:48:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7544143D45; Wed, 15 Dec 2004 08:48:21 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF8mLf9079774; Wed, 15 Dec 2004 08:48:21 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF8mL2S079770; Wed, 15 Dec 2004 08:48:21 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:48:21 GMT From: Volker Stolz Message-Id: <200412150848.iBF8mL2S079770@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, fenner@FreeBSD.org Subject: Re: ports/75066: mbone/vic is broken on FreeBSD 5.3 and 6-CURRENT. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:48:21 -0000 Synopsis: mbone/vic is broken on FreeBSD 5.3 and 6-CURRENT. Responsible-Changed-From-To: freebsd-ports-bugs->fenner Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 08:48:11 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75066 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:49:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 474B316A50F; Wed, 15 Dec 2004 08:49:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2106243D49; Wed, 15 Dec 2004 08:49:12 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF8nCsq079829; Wed, 15 Dec 2004 08:49:12 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF8nB6w079825; Wed, 15 Dec 2004 08:49:11 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:49:11 GMT From: Volker Stolz Message-Id: <200412150849.iBF8nB6w079825@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/75067: update of mozilla default apps X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:49:14 -0000 Synopsis: update of mozilla default apps Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 08:48:58 GMT 2004 Responsible-Changed-Why: This is GNOME-country http://www.freebsd.org/cgi/query-pr.cgi?pr=75067 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 08:50:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3662C16A4CE; Wed, 15 Dec 2004 08:50:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F06443D45; Wed, 15 Dec 2004 08:50:13 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF8oC4Z079900; Wed, 15 Dec 2004 08:50:12 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF8oClY079896; Wed, 15 Dec 2004 08:50:12 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 08:50:12 GMT From: Volker Stolz Message-Id: <200412150850.iBF8oClY079896@freefall.freebsd.org> To: ed@il.fontys.nl, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75058: emulators/hfsutils - You need TCL/TK? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 08:50:13 -0000 Synopsis: emulators/hfsutils - You need TCL/TK? State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 08:49:59 GMT 2004 State-Changed-Why: Please submit patches :) http://www.freebsd.org/cgi/query-pr.cgi?pr=75058 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 09:00:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3076416A4CF; Wed, 15 Dec 2004 09:00:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E602243D39; Wed, 15 Dec 2004 09:00:08 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF908a7080210; Wed, 15 Dec 2004 09:00:08 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF908DN080206; Wed, 15 Dec 2004 09:00:08 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 09:00:08 GMT From: Sergey Matveychuk Message-Id: <200412150900.iBF908DN080206@freefall.freebsd.org> To: dryice@liu.com.cn, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75087: [maintainer update] devel/ipython: update to 0.6.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 09:00:09 -0000 Synopsis: [maintainer update] devel/ipython: update to 0.6.6 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Wed Dec 15 09:00:00 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75087 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 09:00:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A9C516A4D3; Wed, 15 Dec 2004 09:00:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 640A243D1D; Wed, 15 Dec 2004 09:00:21 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF90LtB080268; Wed, 15 Dec 2004 09:00:21 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF90KjE080264; Wed, 15 Dec 2004 09:00:20 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 09:00:20 GMT From: Sergey Matveychuk Message-Id: <200412150900.iBF90KjE080264@freefall.freebsd.org> To: dryice@liu.com.cn, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75088: [maintainer update] devel/ecb: update to 2.31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 09:00:21 -0000 Synopsis: [maintainer update] devel/ecb: update to 2.31 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Wed Dec 15 09:00:13 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75088 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 09:00:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89BBC16A500 for ; Wed, 15 Dec 2004 09:00:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B78B43D53 for ; Wed, 15 Dec 2004 09:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBF90mWu080358 for ; Wed, 15 Dec 2004 09:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBF90m2g080357; Wed, 15 Dec 2004 09:00:48 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 09:00:48 GMT Message-Id: <200412150900.iBF90m2g080357@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 09:00:48 -0000 The following reply was made to PR ports/74974; it has been noted by GNATS. From: Sergey Matveychuk To: Mike Brown Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 Date: Wed, 15 Dec 2004 11:50:53 +0300 Mike Brown wrote: > Sergey Matveychuk wrote: > >>Why dont you use 'diff -u' for updates as described in Porter's >>Handbook? Please do so. > > > In this case, I needed to remove a file from the port. > How would I do that with a diff? diff -ruN old_port_dir new_port_dir >>And you should set PR class to maintainer-update for your ports. > > > That info was not in the Porter's Handbook, send-pr(1), or anywhere else that > I looked, and I looked at the previous PRs for this port and saw that the > previous maintainer used update, not maintainer-update, so I followed that > precedent. I surmised that perhaps maintainer-update meant that this was a > change of who is the maintainer of the port. It's just for your PR fester processing. > > I apologize for any confusion caused by my update. I am new to porting and > this is my first attempt at it. I will have an update for textproc/py-4suite Read the Porter's Handbook and feel free to ask all your questions in ports@ mail list. > ready soon, but need to know what the preferred manner is of telling you that > I need to remove the entire 'files' subdirectory from the old version of the > port. Look at ports/75016 as example. I'd like to note you on this points: 1) synopsis line in format: [maintainer] category/port: what change 2) Clsass: maintainer-update (1) and 2) only if you're a port maintainer) 3) in Description: the reason of PR (may be more descriptive than synopsis, may be not). 4) Specify list of files you add and remove. 5) Fix contains unify diff (diff -ruN or cvs diff -u if you use a CVS tree (not cvsup)) Things changed if you submit a new port. Thank you for contributing. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 10:48:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9984816A4CF; Wed, 15 Dec 2004 10:48:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B7DD43D5C; Wed, 15 Dec 2004 10:48:20 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFAmK4N094279; Wed, 15 Dec 2004 10:48:20 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFAmKlM094275; Wed, 15 Dec 2004 10:48:20 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 10:48:20 GMT From: Volker Stolz Message-Id: <200412151048.iBFAmKlM094275@freefall.freebsd.org> To: rushani@FreeBSD.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75092: [Maintainer update] shells/scponly: Unbreak sftp only support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 10:48:20 -0000 Synopsis: [Maintainer update] shells/scponly: Unbreak sftp only support State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 10:47:59 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75092 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 10:50:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7570916A4CE for ; Wed, 15 Dec 2004 10:50:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CC3A43D55 for ; Wed, 15 Dec 2004 10:50:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFAoIuF094352 for ; Wed, 15 Dec 2004 10:50:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFAoIRe094347; Wed, 15 Dec 2004 10:50:18 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 10:50:18 GMT Resent-Message-Id: <200412151050.iBFAoIRe094347@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, Chris Larsen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C10016A4CE for ; Wed, 15 Dec 2004 10:49:56 +0000 (GMT) Received: from endor.vader.dk (213.237.74.156.adsl.sol.worldonline.dk [213.237.74.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 187F343D41 for ; Wed, 15 Dec 2004 10:49:55 +0000 (GMT) (envelope-from vader@endor.vader.dk) Received: from endor.vader.dk (localhost.vader.dk [127.0.0.1]) by endor.vader.dk (8.12.11/8.12.11) with ESMTP id iBFAnqZZ056965 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 15 Dec 2004 11:49:52 +0100 (CET) (envelope-from vader@endor.vader.dk) Received: (from vader@localhost) by endor.vader.dk (8.12.11/8.12.11/Submit) id iBFAnqLG056964; Wed, 15 Dec 2004 11:49:52 +0100 (CET) (envelope-from vader) Message-Id: <200412151049.iBFAnqLG056964@endor.vader.dk> Date: Wed, 15 Dec 2004 11:49:52 +0100 (CET) From: Chris Larsen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75100: [PATCH] textproc/sgmltools-lite: [fix broken pkg-plist] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 10:50:18 -0000 >Number: 75100 >Category: ports >Synopsis: [PATCH] textproc/sgmltools-lite: [fix broken pkg-plist] >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 Dec 15 10:50:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Chris Larsen >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD vader 5.3-RELEASE FreeBSD 5.3-RELEASE #1: Tue Nov 9 16:51:41 CET >Description: LOCALBASE was used for installing the datadir, that will make 'port test' validation fail. See fix. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: Use PREFIX instead of LOCALBASE for installation, 'port test' works without complaining after this. pkg-plist seems to be fine, no need to change. --- sgmltools-lite-3.0.3_2.patch begins here --- Index: Makefile =================================================================== RCS file: /host/cvs/usr/home/ncvs/ports/textproc/sgmltools-lite/Makefile,v retrieving revision 1.11 diff -c -u -r1.11 Makefile --- Makefile 26 Nov 2004 00:46:02 -0000 1.11 +++ Makefile 15 Dec 2004 10:43:39 -0000 @@ -7,7 +7,7 @@ PORTNAME= sgmltools-lite PORTVERSION= 3.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sgmltools-lite @@ -21,11 +21,9 @@ RUN_DEPENDS+= ${LOCALBASE}/share/sgml/docbook:${PORTSDIR}/textproc/docbook \ ${LOCALBASE}/share/sgml/docbook/dsssl:${PORTSDIR}/textproc/dsssl-docbook-modular -BROKEN= Broken pkg-plist - MAN1= sgmltools-lite.1 GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-etcsgml=${PREFIX}/etc/sgml --datadir=${LOCALBASE}/share +CONFIGURE_ARGS+=--with-etcsgml=${PREFIX}/etc/sgml --datadir=${PREFIX}/share pre-configure: ${RM} -f ${WRKSRC}/config.cache @@ -34,6 +32,6 @@ ${MKDIR} ${PREFIX}/etc/sgml post-install: - ${ECHO_CMD} "3.0.3" > ${LOCALBASE}/share/sgml/misc/sgmltools/VERSION + ${ECHO_CMD} "3.0.3" > ${PREFIX}/share/sgml/misc/sgmltools/VERSION .include --- sgmltools-lite-3.0.3_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:04:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C86D216A4CE; Wed, 15 Dec 2004 11:04:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F9FB43D39; Wed, 15 Dec 2004 11:04:50 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFB4oji095050; Wed, 15 Dec 2004 11:04:50 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFB4op0095046; Wed, 15 Dec 2004 11:04:50 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 11:04:50 GMT From: Volker Stolz Message-Id: <200412151104.iBFB4op0095046@freefall.freebsd.org> To: matt_mills@btopenworld.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:04:50 -0000 Synopsis: Take maintainership of ports/irc/nethirc State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 11:03:43 GMT 2004 State-Changed-Why: I do not want to discourage you, but can we defer this until the next functional change, i.e. the patch you're going to submit? http://www.freebsd.org/cgi/query-pr.cgi?pr=75054 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:06:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CCB616A4CE; Wed, 15 Dec 2004 11:06:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 154C043D4C; Wed, 15 Dec 2004 11:06:50 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFB6n0E099153; Wed, 15 Dec 2004 11:06:49 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFB6nNn099149; Wed, 15 Dec 2004 11:06:49 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 11:06:49 GMT From: Volker Stolz Message-Id: <200412151106.iBFB6nNn099149@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lofi@FreeBSD.org Subject: Re: ports/75098: ukrainian/kde3-i18n has bad MD5/size X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:06:50 -0000 Synopsis: ukrainian/kde3-i18n has bad MD5/size Responsible-Changed-From-To: freebsd-ports-bugs->lofi Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 11:06:30 GMT 2004 Responsible-Changed-Why: IIRC lofi is currently fixing this http://www.freebsd.org/cgi/query-pr.cgi?pr=75098 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:11:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 873D916A4CE; Wed, 15 Dec 2004 11:11:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E10543D2F; Wed, 15 Dec 2004 11:11:26 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFBBQ6Q099358; Wed, 15 Dec 2004 11:11:26 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFBBQRE099354; Wed, 15 Dec 2004 11:11:26 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 11:11:26 GMT From: Volker Stolz Message-Id: <200412151111.iBFBBQRE099354@freefall.freebsd.org> To: ports@fsck.ch, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:11:26 -0000 Synopsis: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 11:10:33 GMT 2004 State-Changed-Why: Do you mind if we USE_GCC=3.4 on 4.X? It's C99 and doesn't compile otherwise. http://www.freebsd.org/cgi/query-pr.cgi?pr=75072 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:20:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE02F16A4CE for ; Wed, 15 Dec 2004 11:20:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6144443D5F for ; Wed, 15 Dec 2004 11:20:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFBKVKn099517 for ; Wed, 15 Dec 2004 11:20:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFBKV8d099516; Wed, 15 Dec 2004 11:20:31 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 11:20:31 GMT Resent-Message-Id: <200412151120.iBFBKV8d099516@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, Cyril Guibourg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8F1016A4CE for ; Wed, 15 Dec 2004 11:16:31 +0000 (GMT) Received: from sulfateuse.babasse.net (sulfateuse.babasse.net [213.41.169.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CFB843D45 for ; Wed, 15 Dec 2004 11:16:30 +0000 (GMT) (envelope-from aragorn+ports@teaser.fr) Received: from blackbox.babasse.net (sulfateuse.babasse.net [192.168.254.129]) iBFBGNWU030188 for ; Wed, 15 Dec 2004 12:16:28 +0100 (CET) (envelope-from aragorn+ports@teaser.fr) Received: from blackbox.babasse.net (localhost [127.0.0.1]) iBFBGNvp030184 for ; Wed, 15 Dec 2004 12:16:23 +0100 (CET) (envelope-from aragorn+ports@teaser.fr) Received: (from cyril@localhost) by blackbox.babasse.net (8.12.11/8.12.11/Submit) id iBFBGM1U030183; Wed, 15 Dec 2004 12:16:22 +0100 (CET) (envelope-from aragorn+ports@teaser.fr) Message-Id: <200412151116.iBFBGM1U030183@blackbox.babasse.net> Date: Wed, 15 Dec 2004 12:16:22 +0100 (CET) From: Cyril Guibourg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75101: [MAINTAINER] mail/milter-greylist: update to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:20:31 -0000 >Number: 75101 >Category: ports >Synopsis: [MAINTAINER] mail/milter-greylist: update to 1.6 >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 Dec 15 11:20:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cyril Guibourg >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD blackbox.babasse.net 4.10-RELEASE FreeBSD 4.10-RELEASE #4: Fri May 28 22:10:50 CEST 2004 >Description: - Update to 1.6 Added file(s): - files/patch-greylist.conf - files/patch-milter-greylist.c Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- milter-greylist-1.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/milter-greylist/Makefile /home/cyril/ports/milter-greylist/Makefile --- /usr/ports/mail/milter-greylist/Makefile Fri Aug 27 09:35:47 2004 +++ /home/cyril/ports/milter-greylist/Makefile Sat Dec 11 13:53:56 2004 @@ -6,7 +6,7 @@ # PORTNAME= milter-greylist -PORTVERSION= 1.5.6 +PORTVERSION= 1.6 CATEGORIES= mail MASTER_SITES= ftp://ftp.espci.fr/pub/milter-greylist/ EXTRACT_SUFX= .tgz diff -ruN --exclude=CVS /usr/ports/mail/milter-greylist/distinfo /home/cyril/ports/milter-greylist/distinfo --- /usr/ports/mail/milter-greylist/distinfo Fri Aug 27 09:35:47 2004 +++ /home/cyril/ports/milter-greylist/distinfo Sat Dec 11 13:55:54 2004 @@ -1,2 +1,2 @@ -MD5 (milter-greylist-1.5.6.tgz) = 69e3a19412a61b220c06a82f2bf80858 -SIZE (milter-greylist-1.5.6.tgz) = 102202 +MD5 (milter-greylist-1.6.tgz) = 9830e3a13aadf851a799131d9a40e931 +SIZE (milter-greylist-1.6.tgz) = 105679 diff -ruN --exclude=CVS /usr/ports/mail/milter-greylist/files/patch-Makefile.in /home/cyril/ports/milter-greylist/files/patch-Makefile.in --- /usr/ports/mail/milter-greylist/files/patch-Makefile.in Fri Aug 27 09:35:47 2004 +++ /home/cyril/ports/milter-greylist/files/patch-Makefile.in Sat Dec 11 14:24:39 2004 @@ -1,5 +1,5 @@ ---- Makefile.in.orig Wed Jun 16 22:28:30 2004 -+++ Makefile.in Fri Jun 25 16:26:41 2004 +--- Makefile.in.orig Sun Nov 28 01:33:29 2004 ++++ Makefile.in Sat Dec 11 14:22:50 2004 @@ -29,9 +29,9 @@ # OF THE POSSIBILITY OF SUCH DAMAGE. # @@ -7,9 +7,28 @@ -CFLAGS= @CFLAGS@ -D_BSD_SOURCE -LDFLAGS= @LDFLAGS@ -LIBS= @LIBS@ -+CFLAGS= @CFLAGS@ -D_BSD_SOURCE -pthread -+LDFLAGS= @LDFLAGS@ -pthread ++CFLAGS= -O2 -pthread ++LDFLAGS= -pthread +LIBS= -lmilter prefix= @prefix@ exec_prefix= @exec_prefix@ SYSCONFDIR= @sysconfdir@ +@@ -40,15 +40,15 @@ + MANDIR= @mandir@ + USER= @USER@ + +-CC= @CC@ ++#CC= @CC@ + MKDEP= @MKDEP@ + RM= @RM@ + MV= @MV@ + TEST= @TEST@ + SED= @SED@ + INSTALL= @INSTALL@ +-LEX= @LEX@ +-YACC= @YACC@ ++#LEX= @LEX@ ++#YACC= @YACC@ + TRUE= @TRUE@ + + OBJ= milter-greylist.o pending.o except.o sync.o \ diff -ruN --exclude=CVS /usr/ports/mail/milter-greylist/files/patch-greylist.conf /home/cyril/ports/milter-greylist/files/patch-greylist.conf --- /usr/ports/mail/milter-greylist/files/patch-greylist.conf Thu Jan 1 01:00:00 1970 +++ /home/cyril/ports/milter-greylist/files/patch-greylist.conf Mon Nov 15 22:04:43 2004 @@ -0,0 +1,11 @@ +--- greylist.conf.orig Tue Nov 9 07:57:07 2004 ++++ greylist.conf Mon Nov 15 22:04:12 2004 +@@ -109,7 +109,7 @@ + #socket "/var/milter-greylist/milter-greylist.sock" + + # The dumpfile location +-#dumpfile "/var/milter-greylist/greylist.db" ++#dumpfile "/var/db/milter-greylist/greylist.db" + + # How often should we dump to the dumpfile (0: on each change, -1: never) + #dumpfreq 10m diff -ruN --exclude=CVS /usr/ports/mail/milter-greylist/files/patch-milter-greylist.c /home/cyril/ports/milter-greylist/files/patch-milter-greylist.c --- /usr/ports/mail/milter-greylist/files/patch-milter-greylist.c Thu Jan 1 01:00:00 1970 +++ /home/cyril/ports/milter-greylist/files/patch-milter-greylist.c Sat Dec 11 14:25:19 2004 @@ -0,0 +1,13 @@ +--- milter-greylist.c.orig Sat Nov 27 15:43:17 2004 ++++ milter-greylist.c Sat Dec 11 14:17:14 2004 +@@ -56,10 +56,6 @@ + #endif + #include + +-#if HAVE_GETOPT_H +-#include +-#endif +- + #include + #include + #include --- milter-greylist-1.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:24:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F6AF16A4CE for ; Wed, 15 Dec 2004 11:24:36 +0000 (GMT) Received: from smtp804.mail.ukl.yahoo.com (smtp804.mail.ukl.yahoo.com [217.12.12.141]) by mx1.FreeBSD.org (Postfix) with SMTP id 768F343D55 for ; Wed, 15 Dec 2004 11:24:35 +0000 (GMT) (envelope-from matt_mills@btopenworld.com) Received: from unknown (HELO ?192.168.0.1?) (matt?mills@btopenworld.com@81.157.0.14 with plain) by smtp804.mail.ukl.yahoo.com with SMTP; 15 Dec 2004 11:24:34 -0000 Message-ID: <41C01EF2.8090909@btopenworld.com> Date: Wed, 15 Dec 2004 11:24:34 +0000 From: Matt Mills User-Agent: Mozilla Thunderbird 1.0RC1 (Windows/20041201) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <200412151104.iBFB4op0095046@freefall.freebsd.org> In-Reply-To: <200412151104.iBFB4op0095046@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:24:36 -0000 Volker Stolz wrote: > Synopsis: Take maintainership of ports/irc/nethirc [...] > I do not want to discourage you, but can we defer this until > the next functional change, i.e. the patch you're going to > submit? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=75054 Of course, I'm actually just finishing up. Shall I submit a fresh PR for the update patches? -- Matt From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:30:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB1DF16A4CF for ; Wed, 15 Dec 2004 11:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9177C43D39 for ; Wed, 15 Dec 2004 11:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFBUQR3000126 for ; Wed, 15 Dec 2004 11:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFBUQlY000117; Wed, 15 Dec 2004 11:30:26 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 11:30:26 GMT Message-Id: <200412151130.iBFBUQlY000117@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tobias Roth Subject: Re: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tobias Roth List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:30:26 -0000 The following reply was made to PR ports/75072; it has been noted by GNATS. From: Tobias Roth To: Volker Stolz Cc: bug-followup@FreeBSD.org Subject: Re: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 Date: Wed, 15 Dec 2004 12:21:14 +0100 Not at all, if everything works as expected. Anything you need me to do? thanks, t. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:40:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0ADC16A4CE for ; Wed, 15 Dec 2004 11:40:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC5EF43D45 for ; Wed, 15 Dec 2004 11:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFBeIb7001185 for ; Wed, 15 Dec 2004 11:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFBeICI001184; Wed, 15 Dec 2004 11:40:18 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 11:40:18 GMT Resent-Message-Id: <200412151140.iBFBeICI001184@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, Sergey Lyubka Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E31A16A4CE for ; Wed, 15 Dec 2004 11:34:46 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 789A043D5F for ; Wed, 15 Dec 2004 11:34:46 +0000 (GMT) (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 iBFBYkc6015343 for ; Wed, 15 Dec 2004 11:34:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBFBYkTu015342; Wed, 15 Dec 2004 11:34:46 GMT (envelope-from nobody) Message-Id: <200412151134.iBFBYkTu015342@www.freebsd.org> Date: Wed, 15 Dec 2004 11:34:46 GMT From: Sergey Lyubka To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75102: New port: www/shttpd (simple http server) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:40:19 -0000 >Number: 75102 >Category: ports >Synopsis: New port: www/shttpd (simple http server) >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 Dec 15 11:40:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sergey Lyubka >Release: 5.3 >Organization: >Environment: >Description: >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: # # www/shttpd/ # www/shttpd/files # www/shttpd/files/shttpd.1 # www/shttpd/pkg-descr # www/shttpd/Makefile # www/shttpd/distinfo # www/shttpd/pkg-plist # echo c - www/shttpd/ mkdir -p www/shttpd/ > /dev/null 2>&1 echo c - www/shttpd/files mkdir -p www/shttpd/files > /dev/null 2>&1 echo x - www/shttpd/files/shttpd.1 sed 's/^X//' >www/shttpd/files/shttpd.1 << 'END-of-www/shttpd/files/shttpd.1' X.TH SHTTPD 1 X.SH NAME Xshttpd \- Simple HTTP Daemon X.SH SYNOPSIS X.B shttpd X.I [OPTIONS] X.br X.SH "DESCRIPTION" X.B shttpd Xis a simple web server with CGI support. XIt does not detach from terminal. It stores logs in a standard format. X.SH OPTIONS X.TP 13 X.I \-d directory Xdocument root directory (default .) X.TP 13 X.I \-p port Xlistening port (default 80 for non-SSL, 443 for SSL mode) X.TP 13 X.I \-h Xdisplay help X.TP 13 X.I \-l logfile Xlog file (default httpd.log) X.TP 13 X.I \-i file1[,file2..] Xindex file (default index.html,index.cgi,index.php) X.TP 13 X.I \-c XCGI file pattern (default .cgi) X.TP 13 X.I \-P passfile Xglobal auth passwords file (default none) X.TP 13 X.I \-u uid Xrun-time numeric UID (default none) X.SH COPYRIGHT X.B shttpd Xis licensed under the terms of MIT license. X.SH BUGS XPlease send bug reports to X.SH AUTHOR XSergey Lyubka END-of-www/shttpd/files/shttpd.1 echo x - www/shttpd/pkg-descr sed 's/^X//' >www/shttpd/pkg-descr << 'END-of-www/shttpd/pkg-descr' XSHTTPD is a simple, easy to use, embeddable web server with CGI, XSSL, cookies support. It is written in C, as one single source file httpd.c, Xand compiles both in UNIX and Windows environments. Gives exceptionally Xsmall footprint when linked against uclibc or dietlibc. It is a good choice Xto serve Web based GUI for various applications, where other sophisticated Xservers like Apache, IIS etc are too big, hard to install and configure or Xovercomplicated. Xshttpd is licensed under the terms of very liberal MIT license. END-of-www/shttpd/pkg-descr echo x - www/shttpd/Makefile sed 's/^X//' >www/shttpd/Makefile << 'END-of-www/shttpd/Makefile' X# New ports collection makefile for: shttpd X# Date created: Wed Dec 15, 2004 X# Whom: Sergey Lyubka (valenok@gmail.com) X# X# $FreeBSD$ X# X XPORTNAME= shttpd XPORTVERSION= 1.0 XCATEGORIES= www XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= shttpd XDISTNAME= httpd.c XEXTRACT_SUFX= XEXTRACT_ONLY= #none X XMAINTAINER= valenok@gmail.com XCOMMENT= Simple embeddable web server with CGI support X XNO_WRKSUBDIR= yes XDIST_SUBDIR= ${PORTNAME} XMAN1= shttpd.1 X Xpost-extract: X ${CP} ${DISTDIR}/${DIST_SUBDIR}/httpd.c ${WRKSRC}/ X Xdo-build: X ${CC} ${CFLAGS} -o ${WRKSRC}/shttpd ${WRKSRC}/httpd.c X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/shttpd ${PREFIX}/bin X ${INSTALL_MAN} ${FILESDIR}/shttpd.1 ${PREFIX}/man/man1 X X.include END-of-www/shttpd/Makefile echo x - www/shttpd/distinfo sed 's/^X//' >www/shttpd/distinfo << 'END-of-www/shttpd/distinfo' XMD5 (shttpd/httpd.c) = b889be47e050449250931c46ba40b525 XSIZE (shttpd/httpd.c) = 41033 END-of-www/shttpd/distinfo echo x - www/shttpd/pkg-plist sed 's/^X//' >www/shttpd/pkg-plist << 'END-of-www/shttpd/pkg-plist' Xbin/shttpd END-of-www/shttpd/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 11:56:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3974816A4CE; Wed, 15 Dec 2004 11:56:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1075043D31; Wed, 15 Dec 2004 11:56:15 +0000 (GMT) (envelope-from niels@FreeBSD.org) Received: from freefall.freebsd.org (niels@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFBuE9S001739; Wed, 15 Dec 2004 11:56:14 GMT (envelope-from niels@freefall.freebsd.org) Received: (from niels@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFBuEF3001735; Wed, 15 Dec 2004 11:56:14 GMT (envelope-from niels) Date: Wed, 15 Dec 2004 11:56:14 GMT From: Niels Heinen Message-Id: <200412151156.iBFBuEF3001735@freefall.freebsd.org> To: niels@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, niels@FreeBSD.org Subject: Re: ports/71050: New port: security/gtkpasman passwords manager using gpg encryption X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 11:56:15 -0000 Synopsis: New port: security/gtkpasman passwords manager using gpg encryption Responsible-Changed-From-To: freebsd-ports-bugs->niels Responsible-Changed-By: niels Responsible-Changed-When: Wed Dec 15 11:54:20 GMT 2004 Responsible-Changed-Why: Thanks ! I'll test the port and will let you know how it went. http://www.freebsd.org/cgi/query-pr.cgi?pr=71050 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:00:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F0DD16A4CE; Wed, 15 Dec 2004 12:00:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2422843D45; Wed, 15 Dec 2004 12:00:10 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFC0A48002010; Wed, 15 Dec 2004 12:00:10 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFC09Xf002006; Wed, 15 Dec 2004 12:00:09 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 12:00:09 GMT From: Sergey Matveychuk Message-Id: <200412151200.iBFC09Xf002006@freefall.freebsd.org> To: dryice@liu.com.cn, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75094: [new port] deskutils/etask: Define and manage projects within Emacs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:00:10 -0000 Synopsis: [new port] deskutils/etask: Define and manage projects within Emacs State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Wed Dec 15 11:59:50 GMT 2004 State-Changed-Why: Duplicate to ports/75095 http://www.freebsd.org/cgi/query-pr.cgi?pr=75094 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:00:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56D9E16A4CF for ; Wed, 15 Dec 2004 12:00:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2733043D41 for ; Wed, 15 Dec 2004 12:00:50 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFC0nxt002052 for ; Wed, 15 Dec 2004 12:00:49 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFC0naE002043; Wed, 15 Dec 2004 12:00:49 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 12:00:49 GMT Resent-Message-Id: <200412151200.iBFC0naE002043@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A1B316A4CE for ; Wed, 15 Dec 2004 11:53:41 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC67D43D48 for ; Wed, 15 Dec 2004 11:53:39 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBFBrbZO093662 for ; Wed, 15 Dec 2004 09:53:38 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBFBraE0093661; Wed, 15 Dec 2004 09:53:36 -0200 (BRST) Message-Id: <200412151153.iBFBraE0093661@digitalsign.com> Date: Wed, 15 Dec 2004 09:53:36 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75103: New port: misc/pear-Text_Figlet Render text using FIGlet fonts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:00:50 -0000 >Number: 75103 >Category: ports >Synopsis: New port: misc/pear-Text_Figlet Render text using FIGlet fonts >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 Dec 15 12:00:49 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: New port: misc/pear-Text_Figlet Render text using FIGlet fonts Engine for use FIGlet fonts to rendering text. >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: # # pear-Text_Figlet # pear-Text_Figlet/Makefile # pear-Text_Figlet/distinfo # pear-Text_Figlet/pkg-descr # echo c - pear-Text_Figlet mkdir -p pear-Text_Figlet > /dev/null 2>&1 echo x - pear-Text_Figlet/Makefile sed 's/^X//' >pear-Text_Figlet/Makefile << 'END-of-pear-Text_Figlet/Makefile' X# Ports collection makefile for: pear-Text_Figlet X# Date created: 15 December 2004 X# Whom: Antonio Carlos Venancio Junior () X# X# $FreeBSD$ X# X XPORTNAME= Text_Figlet XPORTVERSION= 0.8.0 XCATEGORIES= misc pear X XMAINTAINER= antonio@php.net XCOMMENT= Render text using FIGlet fonts X XBUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR XRUN_DEPENDS= ${BUILD_DEPENDS} X XUSE_PHP= yes X XCATEGORY= Text XFILES= Figlet.php XDOCS= README.TXT XEXAMPLES= 3-d.flf alligator2.flf bell.flf block.flf contessa.flf cybermedium.flf \ X isometric1.flf larry3d.flf script.flf slant.flf figlet.php X_EXAMPLESDIR= docs/examples X Xpost-extract: X ${MKDIR} ${WRKSRC} X ${MV} ${WRKDIR}/docs ${WRKSRC}/ X ${MV} ${WRKDIR}/Figlet.php ${WRKSRC}/ X X.include X XPHP_VERS= ${PHP_VERSION:S/.//g} X X.if defined(PHP_VERS) && ${PHP_VERS} < 404 XIGNORE= "You need PHP 4.0.4 or later to install PEAR::Text_Figlet" X.endif X X.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" X.include END-of-pear-Text_Figlet/Makefile echo x - pear-Text_Figlet/distinfo sed 's/^X//' >pear-Text_Figlet/distinfo << 'END-of-pear-Text_Figlet/distinfo' XMD5 (PEAR/Text_Figlet-0.8.0.tgz) = 8010fee97da24e69f2c1f879e92939b9 XSIZE (PEAR/Text_Figlet-0.8.0.tgz) = 22756 END-of-pear-Text_Figlet/distinfo echo x - pear-Text_Figlet/pkg-descr sed 's/^X//' >pear-Text_Figlet/pkg-descr << 'END-of-pear-Text_Figlet/pkg-descr' XEngine for use FIGlet fonts to rendering text. X XWWW: http://pear.php.net/package/Text_Figlet/ END-of-pear-Text_Figlet/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:10:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DA6C16A4CE for ; Wed, 15 Dec 2004 12:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A33843D4C for ; Wed, 15 Dec 2004 12:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCARVU006258 for ; Wed, 15 Dec 2004 12:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCARWB006257; Wed, 15 Dec 2004 12:10:27 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 12:10:27 GMT Resent-Message-Id: <200412151210.iBFCARWB006257@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 Andree Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E502116A4D3; Wed, 15 Dec 2004 12:01:00 +0000 (GMT) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.e-technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1032343D53; Wed, 15 Dec 2004 12:01:00 +0000 (GMT) (envelope-from matthias.andree@gmx.de) Received: from localhost (localhost [127.0.0.1])12D9D4BE4D; Wed, 15 Dec 2004 13:00:59 +0100 (CET) Received: from mail.dt.e-technik.uni-dortmund.de ([127.0.0.1]) by localhost (krusty [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04820-06-3; Wed, 15 Dec 2004 13:00:57 +0100 (CET) Received: from m2a2.dyndns.org (p508EEE1E.dip.t-dialin.net [80.142.238.30]) D302549F86; Wed, 15 Dec 2004 13:00:56 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by merlin.emma.line.org (Postfix) with ESMTP id D5A1077B90; Wed, 15 Dec 2004 13:00:55 +0100 (CET) Received: from merlin.emma.line.org ([127.0.0.1]) by localhost (m2a2.dyndns.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 13160-04-2; Wed, 15 Dec 2004 13:00:54 +0100 (CET) Received: from libertas.emma.line.org (libertas.emma.line.org [192.168.0.2]) by merlin.emma.line.org (Postfix) with ESMTP id C7B6D775F0; Wed, 15 Dec 2004 13:00:54 +0100 (CET) Received: from emma by libertas.emma.line.org with local (Exim 4.43 (FreeBSD)) id 1CeXpu-0007vL-7y; Wed, 15 Dec 2004 13:00:54 +0100 Message-Id: Date: Wed, 15 Dec 2004 13:00:54 +0100 From: Matthias Andree Sender: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: petef@FreeBSD.org Subject: ports/75104: [PATCH] devel/cscope: security fix CAN-2004-0996 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:10:28 -0000 >Number: 75104 >Category: ports >Synopsis: [PATCH] devel/cscope: security fix CAN-2004-0996 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 15 12:10:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 4.11-PRERELEASE i386 >Organization: >Environment: System: FreeBSD libertas.emma.line.org 4.11-PRERELEASE FreeBSD 4.11-PRERELEASE #12: Tue Dec 14 15:31:18 CET 2004 >Description: (1) Apply patch (sans version bump) from cscope CVS as files/patch-ac, http://cvs.sourceforge.net/viewcvs.py/cscope/cscope/src/main.c?r1=1.33&r2=1.34&sortby=date&diff_format=u to fix CAN-2004-0996 "main.c in cscope 15-4 and 15-5 creates temporary files with predictable filenames, which allows local users to overwrite arbitrary files via a symlink attack." http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0996 http://www.vuxml.org/freebsd/a7bfd423-484f-11d9-a9e7-0001020eed82.html http://www.freebsd.org/ports/portaudit/a7bfd423-484f-11d9-a9e7-0001020eed82.html (2) Bump portrevision. Added file(s): - files/patch-ac Port maintainer (petef@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- cscope-15.5_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/cscope/Makefile /root/ports/devel/cscope/Makefile --- /usr/ports/devel/cscope/Makefile Wed Oct 29 12:42:25 2003 +++ /root/ports/devel/cscope/Makefile Wed Dec 15 12:42:17 2004 @@ -8,6 +8,7 @@ PORTNAME= cscope PORTVERSION= 15.5 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN --exclude=CVS /usr/ports/devel/cscope/files/patch-ac /root/ports/devel/cscope/files/patch-ac --- /usr/ports/devel/cscope/files/patch-ac Thu Jan 1 01:00:00 1970 +++ /root/ports/devel/cscope/files/patch-ac Wed Dec 15 12:45:20 2004 @@ -0,0 +1,52 @@ +=================================================================== +RCS file: /cvsroot/cscope/cscope/src/main.c,v +retrieving revision 1.33 +retrieving revision 1.34 +diff -u -r1.33 -r1.34 +--- src/main.c 2004/04/30 15:31:43 1.33 ++++ src/main.c 2004/12/06 14:56:43 1.34 +@@ -101,6 +101,7 @@ + #endif + char temp1[PATHLEN + 1]; /* temporary file name */ + char temp2[PATHLEN + 1]; /* temporary file name */ ++char tempdirpv[PATHLEN +1]; /* private temp directory */ + long totalterms; /* total inverted index terms */ + BOOL trun_syms; /* truncate symbols to 8 characters */ + char tempstring[8192]; /* use this as a buffer, instead of 'yytext', +@@ -131,6 +132,7 @@ + int c, i; + pid_t pid; + struct stat stat_buf; ++ mode_t orig_umask; + + yyin = stdin; + yyout = stdout; +@@ -330,9 +332,18 @@ + } + + /* create the temporary file names */ ++ orig_umask = umask(S_IRWXG|S_IRWXO); + pid = getpid(); +- (void) sprintf(temp1, "%s/cscope%d.1", tmpdir, pid); +- (void) sprintf(temp2, "%s/cscope%d.2", tmpdir, pid); ++ (void) sprintf(tempdirpv, "%s/cscope.%d", tmpdir, pid); ++ if(mkdir(tempdirpv,S_IRWXU)) ++ { ++ fprintf(stderr, "cscope: Could not create private temp dir %s\n",tempdirpv); ++ myexit(1); ++ } ++ umask(orig_umask); ++ ++ (void) sprintf(temp1, "%s/cscope.1", tempdirpv, pid); ++ (void) sprintf(temp2, "%s/cscope.2", tempdirpv, pid); + + /* if running in the foreground */ + if (signal(SIGINT, SIG_IGN) != SIG_IGN) { +@@ -834,6 +845,7 @@ + if (temp1[0] != '\0') { + (void) unlink(temp1); + (void) unlink(temp2); ++ (void) rmdir(tempdirpv); + } + /* restore the terminal to its original mode */ + if (incurses == YES) { --- cscope-15.5_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:14:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD37316A4CE; Wed, 15 Dec 2004 12:14:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9471C43D46; Wed, 15 Dec 2004 12:14:48 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCEmWp006462; Wed, 15 Dec 2004 12:14:48 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCEmuW006458; Wed, 15 Dec 2004 12:14:48 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 12:14:48 GMT From: Sergey Matveychuk Message-Id: <200412151214.iBFCEmuW006458@freefall.freebsd.org> To: sergeiga@yahoo.com, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75093: New Port: devel/cut X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:14:48 -0000 Synopsis: New Port: devel/cut State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Wed Dec 15 12:12:27 GMT 2004 State-Changed-Why: Committed with changes, thanks! - Use tabs not spaces in Makefile - Do not install port's docs if NOPORTDOCS is defined - Utilize %%DOCSDIR%%, %%EXAMPLESDIR%% in pkg-plist - Be sure you will sent port updates from address you set in MAINTAINER http://www.freebsd.org/cgi/query-pr.cgi?pr=75093 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:20:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 932B916A4D0; Wed, 15 Dec 2004 12:20:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67D5443D1F; Wed, 15 Dec 2004 12:20:09 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCK9MY006842; Wed, 15 Dec 2004 12:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCK9l3006838; Wed, 15 Dec 2004 12:20:09 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 12:20:09 GMT From: Edwin Groothuis Message-Id: <200412151220.iBFCK9l3006838@freefall.freebsd.org> To: antonio@php.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75103: New port: misc/pear-Text_Figlet Render text using FIGlet fonts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:20:09 -0000 Synopsis: New port: misc/pear-Text_Figlet Render text using FIGlet fonts State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 12:19:34 GMT 2004 State-Changed-Why: Committed, thanks! Any chance to look at the feedback at http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/74620? http://www.freebsd.org/cgi/query-pr.cgi?pr=75103 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:36:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A23F516A50A; Wed, 15 Dec 2004 12:36:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 769EB43D53; Wed, 15 Dec 2004 12:36:30 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCaUlK008541; Wed, 15 Dec 2004 12:36:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCaUj7008537; Wed, 15 Dec 2004 12:36:30 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 12:36:30 GMT From: Edwin Groothuis Message-Id: <200412151236.iBFCaUj7008537@freefall.freebsd.org> To: cartola@openit.com.br, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71847: New port: graphics/vigra - another program to mount panoramic images - also a dependency of hugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:36:31 -0000 Synopsis: New port: graphics/vigra - another program to mount panoramic images - also a dependency of hugin State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 12:36:25 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71847 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:38:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61FCE16A4CE; Wed, 15 Dec 2004 12:38:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3844643D53; Wed, 15 Dec 2004 12:38:32 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCcWZA008626; Wed, 15 Dec 2004 12:38:32 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCcWmI008622; Wed, 15 Dec 2004 12:38:32 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 12:38:32 GMT From: Volker Stolz Message-Id: <200412151238.iBFCcWmI008622@freefall.freebsd.org> To: h-k@mail.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72815: Segmentation fault /usr/ports/security/clamav 0.80 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:38:32 -0000 Synopsis: Segmentation fault /usr/ports/security/clamav 0.80 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 12:38:09 GMT 2004 State-Changed-Why: Closed on submitter's request: Can no longer be produced http://www.freebsd.org/cgi/query-pr.cgi?pr=72815 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:41:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FFFA16A4CE; Wed, 15 Dec 2004 12:41:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D3943D1F; Wed, 15 Dec 2004 12:41:19 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCfJm1008853; Wed, 15 Dec 2004 12:41:19 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCfGV4008848; Wed, 15 Dec 2004 12:41:16 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 12:41:16 GMT From: Volker Stolz Message-Id: <200412151241.iBFCfGV4008848@freefall.freebsd.org> To: yonatan@xpert.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68414: New Port: security/foremost - Forensic analyser for disk images X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:41:19 -0000 Synopsis: New Port: security/foremost - Forensic analyser for disk images State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 12:40:43 GMT 2004 State-Changed-Why: Committed to category sysutils like the other forensic tools. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=68414 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:51:01 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 495B916A4CE; Wed, 15 Dec 2004 12:51:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 122CF43D55; Wed, 15 Dec 2004 12:51:01 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCp0PQ009365; Wed, 15 Dec 2004 12:51:00 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCp013009361; Wed, 15 Dec 2004 12:51:00 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 12:51:00 GMT From: Volker Stolz Message-Id: <200412151251.iBFCp013009361@freefall.freebsd.org> To: mharo@freebsd.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75061: nagios-plugins uses wrong ps arguments on FreBSD 5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:51:01 -0000 Synopsis: nagios-plugins uses wrong ps arguments on FreBSD 5.3 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 12:50:39 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75061 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:51:54 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49F3716A4FB; Wed, 15 Dec 2004 12:51:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E9A243D5E; Wed, 15 Dec 2004 12:51:54 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCprMX009424; Wed, 15 Dec 2004 12:51:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCprTK009420; Wed, 15 Dec 2004 12:51:53 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 12:51:53 GMT From: Edwin Groothuis Message-Id: <200412151251.iBFCprTK009420@freefall.freebsd.org> To: cartola@openit.com.br, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71846: New port: graphics/libpano12 - program to mount panorama pictures - also a dependency to hugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:51:55 -0000 Synopsis: New port: graphics/libpano12 - program to mount panorama pictures - also a dependency to hugin State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 12:51:49 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71846 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:54:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 696CC16A4CE; Wed, 15 Dec 2004 12:54:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E26F43D5C; Wed, 15 Dec 2004 12:54:29 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCsTU8009540; Wed, 15 Dec 2004 12:54:29 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCsSvI009536; Wed, 15 Dec 2004 12:54:28 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 12:54:28 GMT From: Volker Stolz Message-Id: <200412151254.iBFCsSvI009536@freefall.freebsd.org> To: jimmy@jamesbailie.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74911: Update port: lang/munger - new port revision to eliminate use of DEPENDS_TARGET X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:54:29 -0000 Synopsis: Update port: lang/munger - new port revision to eliminate use of DEPENDS_TARGET State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 12:54:06 GMT 2004 State-Changed-Why: Please submit updates in unified diff format! http://www.freebsd.org/cgi/query-pr.cgi?pr=74911 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 12:55:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0677516A4CE; Wed, 15 Dec 2004 12:55:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D374543D31; Wed, 15 Dec 2004 12:55:51 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFCtpv2009611; Wed, 15 Dec 2004 12:55:51 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFCtpeH009607; Wed, 15 Dec 2004 12:55:51 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 12:55:51 GMT From: Volker Stolz Message-Id: <200412151255.iBFCtpeH009607@freefall.freebsd.org> To: joeldiaz@bellsouth.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74916: sysutils/bpm - Patch which fixes running bpm on CURRENT X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 12:55:52 -0000 Synopsis: sysutils/bpm - Patch which fixes running bpm on CURRENT State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 12:55:38 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=74916 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:00:49 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01DF716A4CE for ; Wed, 15 Dec 2004 13:00:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6ED043D48 for ; Wed, 15 Dec 2004 13:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFD0mqo009883 for ; Wed, 15 Dec 2004 13:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFD0m4G009882; Wed, 15 Dec 2004 13:00:48 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 13:00:48 GMT Message-Id: <200412151300.iBFD0m4G009882@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/75061: nagios-plugins uses wrong ps arguments on FreBSD 5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:00:49 -0000 The following reply was made to PR ports/75061; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, mharo@freebsd.org, blaz@si.freebsd.org Cc: Subject: Re: ports/75061: nagios-plugins uses wrong ps arguments on FreBSD 5.3 Date: Wed, 15 Dec 2004 13:50:22 +0100 Dear maintainer, please look into this issue. Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:00:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39E4616A4CE for ; Wed, 15 Dec 2004 13:00:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E4FE43D1F for ; Wed, 15 Dec 2004 13:00:52 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFD0pYv009890 for ; Wed, 15 Dec 2004 13:00:51 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFD0poa009889; Wed, 15 Dec 2004 13:00:51 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 13:00:51 GMT Message-Id: <200412151300.iBFD0poa009889@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/74916: sysutils/bpm - Patch which fixes running bpm on CURRENT X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:00:52 -0000 The following reply was made to PR ports/74916; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, joeldiaz@bellsouth.net, sethk@meowfishies.com Cc: Subject: Re: ports/74916: sysutils/bpm - Patch which fixes running bpm on CURRENT Date: Wed, 15 Dec 2004 13:55:23 +0100 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:01:57 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 376DC16A4CF; Wed, 15 Dec 2004 13:01:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C51543D48; Wed, 15 Dec 2004 13:01:57 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFD1ug2010015; Wed, 15 Dec 2004 13:01:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFD1uJF010011; Wed, 15 Dec 2004 13:01:56 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 13:01:56 GMT From: Edwin Groothuis Message-Id: <200412151301.iBFD1uJF010011@freefall.freebsd.org> To: cartola@openit.com.br, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71848: New port: graphics/linux-panorama-tools - another program to mount panoramic images - also a dependency of hugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:01:57 -0000 Synopsis: New port: graphics/linux-panorama-tools - another program to mount panoramic images - also a dependency of hugin State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 13:01:55 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71848 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:09:40 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C903616A4CE; Wed, 15 Dec 2004 13:09:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9403243D31; Wed, 15 Dec 2004 13:09:40 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFD9er4014272; Wed, 15 Dec 2004 13:09:40 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFD9e4c014268; Wed, 15 Dec 2004 13:09:40 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 13:09:40 GMT From: Volker Stolz Message-Id: <200412151309.iBFD9e4c014268@freefall.freebsd.org> To: freebsd@next-generation.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74699: [maintainer update] update port: japanese/gaim X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:09:41 -0000 Synopsis: [maintainer update] update port: japanese/gaim State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 13:09:30 GMT 2004 State-Changed-Why: Committed ,thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74699 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:10:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CACC16A4CE for ; Wed, 15 Dec 2004 13:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0156C43D41 for ; Wed, 15 Dec 2004 13:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFDARsl014344 for ; Wed, 15 Dec 2004 13:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFDARFV014343; Wed, 15 Dec 2004 13:10:27 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 13:10:27 GMT Message-Id: <200412151310.iBFDARFV014343@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:10:28 -0000 The following reply was made to PR ports/75054; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, matt_mills@btopenworld.com Cc: Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc Date: Wed, 15 Dec 2004 16:07:14 +0300 Take a look at Autit-Trial please. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:15:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FB6116A4CF; Wed, 15 Dec 2004 13:15:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D1243D48; Wed, 15 Dec 2004 13:15:21 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (clive@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFDFLSu014602; Wed, 15 Dec 2004 13:15:21 GMT (envelope-from clive@freefall.freebsd.org) Received: (from clive@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFDFI3a014597; Wed, 15 Dec 2004 13:15:18 GMT (envelope-from clive) Date: Wed, 15 Dec 2004 13:15:18 GMT From: Clive Lin Message-Id: <200412151315.iBFDFI3a014597@freefall.freebsd.org> To: dryice@liu.com.cn, clive@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75089: [maintainer update] chinese/fcitx: update to 3.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:15:21 -0000 Synopsis: [maintainer update] chinese/fcitx: update to 3.0.3 State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Wed Dec 15 13:15:05 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75089 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:20:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3164416A4CE for ; Wed, 15 Dec 2004 13:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1666943D41 for ; Wed, 15 Dec 2004 13:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFDKP1S014749 for ; Wed, 15 Dec 2004 13:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFDKPEe014748; Wed, 15 Dec 2004 13:20:25 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 13:20:25 GMT Message-Id: <200412151320.iBFDKPEe014748@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: DaiP Subject: Re: ports/71684: lang/scm does not compile on FreeBSD 5.3BETA X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: DaiP List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:20:26 -0000 The following reply was made to PR ports/71684; it has been noted by GNATS. From: DaiP To: freebsd-gnats-submit@FreeBSD.org, jmp@alvorlig.dk, flz@xbsd.org Cc: dai Subject: Re: ports/71684: lang/scm does not compile on FreeBSD 5.3BETA Date: Wed, 15 Dec 2004 22:16:22 +0900 Hi, this is dai inukai Florent Thoumie wrote: >Attached patch seems to solve this problem. > Though the port is fixed now, another approach might have been possible. The 'volatile' modifier excludes the varibale from the optimization process by the compiler and I would have prefered not to change the source code because the problem seems to me due to a transitory regression of the actual system C compiler. The ports' Makefile is flexible enough to accept various options. After cd-ing to /usr/ports/lang/scm, the followings would have done without changing thte source soce. With the actual system C compiler (gcc version 3.4.2 [FreeBSD] 20040728): % make "CFLAGS=-O3 -DGCC_SPARC_BUG" or % make CC=gcc34 CFLAGS=-O3 if gcc34 is istalled from the port. -- dai -- http://www.dinukai.org/programming/scheme/scheme.html From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:27:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BFC616A4CE; Wed, 15 Dec 2004 13:27:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA7F343D1D; Wed, 15 Dec 2004 13:27:36 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (clive@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFDRatx015136; Wed, 15 Dec 2004 13:27:36 GMT (envelope-from clive@freefall.freebsd.org) Received: (from clive@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFDRafk015132; Wed, 15 Dec 2004 13:27:36 GMT (envelope-from clive) Date: Wed, 15 Dec 2004 13:27:36 GMT From: Clive Lin Message-Id: <200412151327.iBFDRafk015132@freefall.freebsd.org> To: dryice@liu.com.cn, clive@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/70648: [new port] deskutils/etask: Emacs support to define and manage projects X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:27:37 -0000 Synopsis: [new port] deskutils/etask: Emacs support to define and manage projects State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Wed Dec 15 13:26:10 GMT 2004 State-Changed-Why: Superseded by 70648 http://www.freebsd.org/cgi/query-pr.cgi?pr=70648 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:29:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C58F16A4CF; Wed, 15 Dec 2004 13:29:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A8C43D31; Wed, 15 Dec 2004 13:29:10 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (clive@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFDTAtE015194; Wed, 15 Dec 2004 13:29:10 GMT (envelope-from clive@freefall.freebsd.org) Received: (from clive@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFDTAUH015190; Wed, 15 Dec 2004 13:29:10 GMT (envelope-from clive) Date: Wed, 15 Dec 2004 13:29:10 GMT From: Clive Lin Message-Id: <200412151329.iBFDTAUH015190@freefall.freebsd.org> To: clive@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clive@FreeBSD.org Subject: Re: ports/75095: [new port] deskutils/etask: Define and manage projects within Emacs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:29:11 -0000 Synopsis: [new port] deskutils/etask: Define and manage projects within Emacs Responsible-Changed-From-To: freebsd-ports-bugs->clive Responsible-Changed-By: clive Responsible-Changed-When: Wed Dec 15 13:28:52 GMT 2004 Responsible-Changed-Why: take it http://www.freebsd.org/cgi/query-pr.cgi?pr=75095 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 13:30:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C023A16A4CE for ; Wed, 15 Dec 2004 13:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB05143D1D for ; Wed, 15 Dec 2004 13:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFDUQ2Z015303 for ; Wed, 15 Dec 2004 13:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFDUQ5d015302; Wed, 15 Dec 2004 13:30:26 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 13:30:26 GMT Message-Id: <200412151330.iBFDUQ5d015302@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Clive Lin Subject: Re: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Clive Lin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 13:30:26 -0000 The following reply was made to PR ports/75072; it has been noted by GNATS. From: Clive Lin To: Volker Stolz Cc: ports@fsck.ch, FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 Date: Wed, 15 Dec 2004 21:25:32 +0800 On Wed, Dec 15, 2004 at 11:11:26AM +0000, Volker Stolz wrote: > Synopsis: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Wed Dec 15 11:10:33 GMT 2004 > State-Changed-Why: > Do you mind if we USE_GCC=3.4 on 4.X? It's C99 and doesn't compile > otherwise. I made the commit in a rush this afternoon... fine, then I'll give it a try first if it's possible to avoid GCC 3.4 dependency with some patches. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:00:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBCA716A4D0 for ; Wed, 15 Dec 2004 14:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2AE343D48 for ; Wed, 15 Dec 2004 14:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFE0jWq017390 for ; Wed, 15 Dec 2004 14:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFE0jJm017386; Wed, 15 Dec 2004 14:00:45 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:00:45 GMT Resent-Message-Id: <200412151400.iBFE0jJm017386@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 296FE16A4D0 for ; Wed, 15 Dec 2004 14:00:35 +0000 (GMT) Received: from hfep04.dion.ne.jp (hfep04.dion.ne.jp [203.181.105.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4B0143D46 for ; Wed, 15 Dec 2004 14:00:33 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep04.dion.ne.jp with SMTP id <20041215140029517.CLCH@hfep04.dion.ne.jp> for ; Wed, 15 Dec 2004 23:00:29 +0900 Message-Id: <20041215230006.7fe83102.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:06 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75106: Update port: biology/gperiodic to 2.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:00:46 -0000 >Number: 75106 >Category: ports >Synopsis: Update port: biology/gperiodic to 2.0.8 >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 Dec 15 14:00:45 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 2.0.8 >How-To-Repeat: >Fix: diff -urN /usr/ports/biology/gperiodic/Makefile biology/gperiodic/Makefile --- /usr/ports/biology/gperiodic/Makefile Sat Nov 27 15:05:37 2004 +++ biology/gperiodic/Makefile Mon Dec 13 11:47:45 2004 @@ -6,8 +6,7 @@ # PORTNAME= gperiodic -PORTVERSION= 2.0.7 -PORTREVISION= 3 +PORTVERSION= 2.0.8 CATEGORIES= biology MASTER_SITES= http://koti.welho.com/jfrantz/software/ @@ -15,16 +14,15 @@ COMMENT= Displays a periodic table of the elements USE_X_PREFIX= yes -USE_GNOME= gtk20 -ALL_TARGET= ${PORTNAME} +USE_GNOME= gnomehier gtk20 USE_REINPLACE= yes +ALL_TARGET= ${PORTNAME} -LANGS= da fr pl sv tr +LANGS= da fr pl sv tr post-patch: - @${REINPLACE_CMD} -e "s|^CFLAGS=|CFLAGS+=|; \ - s|-DGTK_DISABLE_DEPRECATED||" \ - ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|^CC=|CC?=|g ; \ + s|^CFLAGS=|CFLAGS+=|g' ${WRKSRC}/Makefile post-build: .for lang in ${LANGS} @@ -33,6 +31,12 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gperiodic ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/gperiodic.desktop \ + ${PREFIX}/share/gnome/applications + ${INSTALL_DATA} ${WRKSRC}/gperiodic.png \ + ${PREFIX}/share/gnome/pixmaps + ${INSTALL_DATA} ${WRKSRC}/gperiodic-crystal.png \ + ${PREFIX}/share/gnome/pixmaps .for lang in ${LANGS} @${MKDIR} ${PREFIX}/share/locale/${lang}/LC_MESSAGES ${INSTALL_DATA} ${WRKSRC}/po/${lang}.mo \ diff -urN /usr/ports/biology/gperiodic/distinfo biology/gperiodic/distinfo --- /usr/ports/biology/gperiodic/distinfo Wed Jan 28 18:45:26 2004 +++ biology/gperiodic/distinfo Mon Dec 13 11:08:46 2004 @@ -1,2 +1,2 @@ -MD5 (gperiodic-2.0.7.tar.gz) = b9e74139d4b468f290297fcfb61a7084 -SIZE (gperiodic-2.0.7.tar.gz) = 124798 +MD5 (gperiodic-2.0.8.tar.gz) = cfe23eaa21707c2c42bcd6399161ec2e +SIZE (gperiodic-2.0.8.tar.gz) = 125402 diff -urN /usr/ports/biology/gperiodic/pkg-plist biology/gperiodic/pkg-plist --- /usr/ports/biology/gperiodic/pkg-plist Sat Nov 8 02:51:30 2003 +++ biology/gperiodic/pkg-plist Mon Dec 13 11:14:21 2004 @@ -2,6 +2,9 @@ %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/README +share/gnome/applications/gperiodic.desktop +share/gnome/pixmaps/gperiodic.png +share/gnome/pixmaps/gperiodic-crystal.png share/locale/da/LC_MESSAGES/gperiodic.mo share/locale/fr/LC_MESSAGES/gperiodic.mo share/locale/pl/LC_MESSAGES/gperiodic.mo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5925516A4CF for ; Wed, 15 Dec 2004 14:10:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27D7C43D39 for ; Wed, 15 Dec 2004 14:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAL9D021566 for ; Wed, 15 Dec 2004 14:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEALJD021565; Wed, 15 Dec 2004 14:10:21 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:21 GMT Resent-Message-Id: <200412151410.iBFEALJD021565@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E483416A4D0 for ; Wed, 15 Dec 2004 14:00:48 +0000 (GMT) Received: from hfep02.dion.ne.jp (hfep02.dion.ne.jp [203.181.105.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id E401043D45 for ; Wed, 15 Dec 2004 14:00:47 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep02.dion.ne.jp with SMTP id <20041215140043623.AGI@hfep02.dion.ne.jp> for ; Wed, 15 Dec 2004 23:00:43 +0900 Message-Id: <20041215230008.02c9f6b7.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:08 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75107: Update port: deskutils/kdissert to 0.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:21 -0000 X-List-Received-Date: Wed, 15 Dec 2004 14:10:21 -0000 >Number: 75107 >Category: ports >Synopsis: Update port: deskutils/kdissert to 0.3.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 Dec 15 14:10:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 0.3.1 >How-To-Repeat: >Fix: diff -urN /usr/ports/deskutils/kdissert/Makefile deskutils/kdissert/Makefile --- /usr/ports/deskutils/kdissert/Makefile Sat Nov 27 15:06:41 2004 +++ deskutils/kdissert/Makefile Mon Dec 13 21:30:14 2004 @@ -6,7 +6,7 @@ # PORTNAME= kdissert -PORTVERSION= 0.3.0 +PORTVERSION= 0.3.1 CATEGORIES= deskutils kde MASTER_SITES= http://freehackers.org/~tnagy/kdissert/ diff -urN /usr/ports/deskutils/kdissert/distinfo deskutils/kdissert/distinfo --- /usr/ports/deskutils/kdissert/distinfo Sat Nov 27 15:06:41 2004 +++ deskutils/kdissert/distinfo Mon Dec 13 22:03:37 2004 @@ -1,2 +1,2 @@ -MD5 (kdissert-0.3.0.tar.bz2) = a04400ab72d043e0ba9ba4d2f246036c -SIZE (kdissert-0.3.0.tar.bz2) = 434418 +MD5 (kdissert-0.3.1.tar.bz2) = 78e8f19733df54e0f47479aaa3d27d98 +SIZE (kdissert-0.3.1.tar.bz2) = 443163 diff -urN /usr/ports/deskutils/kdissert/pkg-plist deskutils/kdissert/pkg-plist --- /usr/ports/deskutils/kdissert/pkg-plist Sat Nov 27 15:06:41 2004 +++ deskutils/kdissert/pkg-plist Mon Dec 13 22:16:41 2004 @@ -1,10 +1,17 @@ bin/kdissert +lib/kde3/libkdissOOOdoc.la lib/kde3/libkdissOOOdoc.so +lib/kde3/libkdissasciidoc.la lib/kde3/libkdissasciidoc.so +lib/kde3/libkdissbeamerslides.la lib/kde3/libkdissbeamerslides.so +lib/kde3/libkdisshtmldoc.la lib/kde3/libkdisshtmldoc.so +lib/kde3/libkdisspdflatexarticle.la lib/kde3/libkdisspdflatexarticle.so +lib/kde3/libkdisspdflatexbook.la lib/kde3/libkdisspdflatexbook.so +lib/kde3/libkdissprosperslides.la lib/kde3/libkdissprosperslides.so share/applications/kde/kdissert.desktop share/applnk/Utilities/kdissert.desktop @@ -42,6 +49,7 @@ share/locale/fr/LC_MESSAGES/kdissert.mo share/locale/nl/LC_MESSAGES/kdissert.mo share/locale/no/LC_MESSAGES/kdissert.mo +share/locale/pl/LC_MESSAGES/kdissert.mo share/mimelnk/application/x-kdissert.desktop @unexec rmdir %D/share/mimelnk/application 2>/dev/null || true @unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C480016A4CE for ; Wed, 15 Dec 2004 14:10:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8970843D2F for ; Wed, 15 Dec 2004 14:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEALrl021622 for ; Wed, 15 Dec 2004 14:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEALOw021621; Wed, 15 Dec 2004 14:10:21 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:21 GMT Resent-Message-Id: <200412151410.iBFEALOw021621@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C81516A4CE for ; Wed, 15 Dec 2004 14:00:58 +0000 (GMT) Received: from hfep07.dion.ne.jp (hfep07.dion.ne.jp [203.181.105.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 661D643D46 for ; Wed, 15 Dec 2004 14:00:57 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep07.dion.ne.jp with SMTP id <20041215140053923.DDWX@hfep07.dion.ne.jp> for ; Wed, 15 Dec 2004 23:00:53 +0900 Message-Id: <20041215230010.6363d0f4.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:10 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75108: Update port: devel/cvsd to 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:21 -0000 >Number: 75108 >Category: ports >Synopsis: Update port: devel/cvsd to 1.0.4 >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 Dec 15 14:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 1.0.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/cvsd/Makefile devel/cvsd/Makefile --- /usr/ports/devel/cvsd/Makefile Mon Aug 9 03:00:02 2004 +++ devel/cvsd/Makefile Mon Dec 13 18:15:46 2004 @@ -7,7 +7,7 @@ # PORTNAME= cvsd -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= devel MASTER_SITES= http://tiefighter.et.tudelft.nl/~arthur/cvsd/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig diff -urN /usr/ports/devel/cvsd/distinfo devel/cvsd/distinfo --- /usr/ports/devel/cvsd/distinfo Mon Aug 9 03:00:02 2004 +++ devel/cvsd/distinfo Mon Dec 13 18:17:14 2004 @@ -1,4 +1,4 @@ -MD5 (cvsd-1.0.3.tar.gz) = b1df3a9e92b99fa2477c56ea1bcacb24 -SIZE (cvsd-1.0.3.tar.gz) = 188395 -MD5 (cvsd-1.0.3.tar.gz.sig) = bc65ff0ff3d4e85e356dc29cc99c09cb -SIZE (cvsd-1.0.3.tar.gz.sig) = 65 +MD5 (cvsd-1.0.4.tar.gz) = 703847d8cb49c5aed18b7f778868ca0a +SIZE (cvsd-1.0.4.tar.gz) = 193373 +MD5 (cvsd-1.0.4.tar.gz.sig) = ee95b6f3c27c6efe84f0c806444700fa +SIZE (cvsd-1.0.4.tar.gz.sig) = 65 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 670E616A4CE for ; Wed, 15 Dec 2004 14:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C9C43D2F for ; Wed, 15 Dec 2004 14:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEALSd021635 for ; Wed, 15 Dec 2004 14:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEALlx021634; Wed, 15 Dec 2004 14:10:21 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:21 GMT Resent-Message-Id: <200412151410.iBFEALlx021634@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8064516A4CE for ; Wed, 15 Dec 2004 14:01:09 +0000 (GMT) Received: from hfep02.dion.ne.jp (hfep02.dion.ne.jp [203.181.105.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2156643D49 for ; Wed, 15 Dec 2004 14:01:08 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep02.dion.ne.jp with SMTP id <20041215140102701.ALV@hfep02.dion.ne.jp> for ; Wed, 15 Dec 2004 23:01:02 +0900 Message-Id: <20041215230011.68f18290.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:11 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75109: Update port: devel/cweb to 3.64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:22 -0000 >Number: 75109 >Category: ports >Synopsis: Update port: devel/cweb to 3.64 >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 Dec 15 14:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 3.64 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/cweb/Makefile devel/cweb/Makefile --- /usr/ports/devel/cweb/Makefile Tue May 4 13:42:20 2004 +++ devel/cweb/Makefile Tue Dec 14 23:56:18 2004 @@ -6,7 +6,7 @@ # PORTNAME= cweb -PORTVERSION= 3.63 +PORTVERSION= 3.64 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_TEX_CTAN} MASTER_SITE_SUBDIR= web/c_cpp/cweb @@ -14,20 +14,27 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Literate programming tools for the C language -USE_REINPLACE= yes NO_WRKSUBDIR= yes +USE_REINPLACE= yes + MAN1= cweb.1 post-patch: - @${REINPLACE_CMD} -e 's|cc|${CC}|' ${WRKSRC}/${MAKEFILE} + @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/cweb.1 -pre-install: - @${MKDIR} ${PREFIX}/share/cweb +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ctangle ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/cweave ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/cweb.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/c++lib.w ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/cweb.el ${PREFIX}/share/emacs/site-lisp @${MKDIR} ${PREFIX}/share/texmf/tex/generic/misc - + ${INSTALL_DATA} ${WRKSRC}/cwebmac.tex \ + ${PREFIX}/share/texmf/tex/generic/misc .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/cweb - @${INSTALL_DATA} ${WRKDIR}/cwebman.tex ${PREFIX}/share/doc/cweb + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/cwebman.tex ${DOCSDIR} .endif @${CAT} ${PKGMESSAGE} diff -urN /usr/ports/devel/cweb/distinfo devel/cweb/distinfo --- /usr/ports/devel/cweb/distinfo Wed Mar 31 18:05:29 2004 +++ devel/cweb/distinfo Tue Dec 14 23:41:13 2004 @@ -1,2 +1,2 @@ -MD5 (cweb-3.63.tar.gz) = 0031d59172c5001f105902d9926ff51f -SIZE (cweb-3.63.tar.gz) = 207885 +MD5 (cweb-3.64.tar.gz) = 49e2abe401ebf1ab008193063b88af2b +SIZE (cweb-3.64.tar.gz) = 212010 diff -urN /usr/ports/devel/cweb/files/patch-aa devel/cweb/files/patch-aa --- /usr/ports/devel/cweb/files/patch-aa Wed Jan 9 21:27:52 2002 +++ devel/cweb/files/patch-aa Tue Dec 14 23:54:40 2004 @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Jan 1 04:13:48 2001 -+++ Makefile Mon Jan 7 14:28:39 2002 +--- Makefile.orig Sat Jul 13 07:33:16 2002 ++++ Makefile Tue Dec 14 23:47:23 2004 @@ -18,23 +18,23 @@ # @@ -31,7 +31,7 @@ # Set DESTPREF to null if you want to call the executables "tangle" and "weave" # (probably NOT a good idea; we recommend leaving DESTPREF=c) -@@ -50,9 +50,9 @@ +@@ -50,13 +50,13 @@ WCHANGES= # We keep debugging info around, for fun, but most users don't need it @@ -43,25 +43,8 @@ #LINKFLAGS = -s # for smaller (stripped) executables on many UNIX systems # What C compiler are you using? -@@ -162,21 +162,16 @@ - *.log *.dvi *.toc *.idx *.scn *.pdf core cweave ctangle - - install: all -- - mkdir $(DESTDIR) - $(CP) cweave $(DESTDIR)$(DESTPREF)weave - chmod 755 $(DESTDIR)$(DESTPREF)weave - $(CP) ctangle $(DESTDIR)$(DESTPREF)tangle - chmod 755 $(DESTDIR)$(DESTPREF)tangle -- - mkdir $(MANDIR) - $(CP) cweb.1 $(MANDIR)/cweb.$(MANEXT) - chmod 644 $(MANDIR)/cweb.$(MANEXT) -- - mkdir $(MACROSDIR) - $(CP) cwebmac.tex $(MACROSDIR) - chmod 644 $(MACROSDIR)/cwebmac.tex -- - mkdir $(EMACSDIR) - $(CP) cweb.el $(EMACSDIR) - chmod 644 $(EMACSDIR)/cweb.el -- - mkdir $(CWEBINPUTS) - $(CP) c++lib.w $(CWEBINPUTS) - chmod 644 $(CWEBINPUTS)/c++lib.w +-CC = cc ++#CC = cc + # RM and CP are used below in case rm and cp are aliased + RM= /bin/rm diff -urN /usr/ports/devel/cweb/files/patch-ab devel/cweb/files/patch-ab --- /usr/ports/devel/cweb/files/patch-ab Wed Jan 9 21:27:52 2002 +++ devel/cweb/files/patch-ab Tue Dec 14 23:44:58 2004 @@ -1,19 +1,25 @@ ---- cweb.1.orig Tue Jul 3 21:44:09 2001 -+++ cweb.1 Mon Jan 7 14:19:06 2002 -@@ -85,13 +85,11 @@ - means omit the index and table of contents. - .PP +--- cweb.1.orig Wed Apr 24 07:10:46 2002 ++++ cweb.1 Tue Dec 14 23:44:49 2004 +@@ -100,19 +100,13 @@ + . .SH FILES --/usr/local/lib/tex/inputs/cwebmac.tex TeX macros used by cweave output. -+/usr/local/share/texmf/tex/generic/misc/cwebmac.tex TeX macros used by cweave output. - .br --/usr/local/src/cweb/cwebman.tex The user manual. -+/usr/local/share/doc/cweb/cwebman.tex The user manual. - .br --/usr/local/src/cweb/examples/wc.w An introductory example. --.br --/usr/local/lib/cweb Directory for cweb "include" files. -+/usr/local/share/cweb Directory for cweb "include" files. + .TP +-/usr/local/lib/tex/inputs/cwebmac.tex ++%%PREFIX%%/share/texmf/tex/generic/misc/cwebmac.tex + TeX macros used by cweave output. + .TP +-/usr/local/src/cweb/cwebman.tex ++%%PREFIX%%/share/doc/cweb/cwebman.tex + The user manual. + .TP +-/usr/local/src/cweb/examples/wc.w +-An introductory example. +-.TP +-/usr/local/src/cweb/examples/wmerge.w +-Patch program based on CWEB-style change files. +-.TP +-/usr/local/lib/cweb ++%%PREFIX%%/share/cweb + Directory for cweb "include" files. + . .SH "SEE ALSO" - .I Literate Programming - by D.E. Knuth. diff -urN /usr/ports/devel/cweb/pkg-plist devel/cweb/pkg-plist --- /usr/ports/devel/cweb/pkg-plist Wed Jan 9 21:27:52 2002 +++ devel/cweb/pkg-plist Tue Dec 14 23:41:11 2004 @@ -1,11 +1,11 @@ bin/ctangle bin/cweave -share/cweb/c++lib.w -share/doc/cweb/cwebman.tex +%%DATADIR%%/c++lib.w +%%PORTDOCS%%%%DOCSDIR%%/cwebman.tex share/emacs/site-lisp/cweb.el share/texmf/tex/generic/misc/cwebmac.tex -@dirrm share/cweb -@dirrm share/doc/cweb +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% @unexec rmdir %D/share/texmf/tex/generic/misc 2>/dev/null || true @unexec rmdir %D/share/texmf/tex/generic 2>/dev/null || true @unexec rmdir %D/share/texmf/tex 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DF7316A4CF for ; Wed, 15 Dec 2004 14:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACCB43D41 for ; Wed, 15 Dec 2004 14:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAM60021648 for ; Wed, 15 Dec 2004 14:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEAM1Z021647; Wed, 15 Dec 2004 14:10:22 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:22 GMT Resent-Message-Id: <200412151410.iBFEAM1Z021647@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FCDE16A4CF for ; Wed, 15 Dec 2004 14:01:19 +0000 (GMT) Received: from hfep07.dion.ne.jp (hfep07.dion.ne.jp [203.181.105.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAD6043D2D for ; Wed, 15 Dec 2004 14:01:17 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep07.dion.ne.jp with SMTP id <20041215140113718.DEES@hfep07.dion.ne.jp> for ; Wed, 15 Dec 2004 23:01:13 +0900 Message-Id: <20041215230013.1a52dc4f.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:13 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75110: Update port: editors/cooledit to 3.17.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:22 -0000 >Number: 75110 >Category: ports >Synopsis: Update port: editors/cooledit to 3.17.14 >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 Dec 15 14:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 3.17.14 New file: files/patch-widget::widechar.c >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/cooledit/Makefile editors/cooledit/Makefile --- /usr/ports/editors/cooledit/Makefile Sun Aug 1 13:03:01 2004 +++ editors/cooledit/Makefile Wed Dec 15 01:57:30 2004 @@ -6,7 +6,7 @@ # PORTNAME= cooledit -PORTVERSION= 3.17.8 +PORTVERSION= 3.17.14 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/editors/X/cooledit @@ -22,25 +22,21 @@ USE_LIBTOOL_VER= 15 CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \ - AUTOMAKE="${TRUE}" INSTALLS_SHLIB= yes MAN1= cooledit.1 coolman.1 smalledit.1 -CPPFLAGS= -I${LOCALBASE}/include -DHAVE_GETTEXT ${PTHREAD_CFLAGS} +CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +.include + +.if ${OSVERSION} >= 500000 +CFLAGS+= -DHAVE_MBRTOWC +.endif + .if defined(WITH_NEXT_LOOK) CONFIGURE_ARGS+= --enable-NeXT-look .endif -post-patch: - @${REINPLACE_CMD} -e 's|^PACKAGE_FORCE|#PACKAGE_FORGE|g ; \ - s|USE_INCLUDED_LIBINTL=yes|USE_INCLUDED_LIBINTL=no|g ; \ - s|\\$${top_builddir}/intl/libintl.a|-lintl|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|#undef HAVE_WCHAR_H||g ; \ - s|#undef HAVE_DCGETTEXT||g' ${WRKSRC}/config.h.in - @${REINPLACE_CMD} -e 's|m4 intl rxvt|m4 rxvt|g' ${WRKSRC}/Makefile.in - -.include +.include diff -urN /usr/ports/editors/cooledit/distinfo editors/cooledit/distinfo --- /usr/ports/editors/cooledit/distinfo Sun Aug 1 13:03:01 2004 +++ editors/cooledit/distinfo Wed Dec 15 00:51:56 2004 @@ -1,2 +1,2 @@ -MD5 (cooledit-3.17.8.tar.gz) = 7b55c892f5b90b9f4eedda6b68f2e15b -SIZE (cooledit-3.17.8.tar.gz) = 1655037 +MD5 (cooledit-3.17.14.tar.gz) = c5bfa0efbd6160b5ba868b722418cc02 +SIZE (cooledit-3.17.14.tar.gz) = 1671619 diff -urN /usr/ports/editors/cooledit/files/patch-widget::widechar.c editors/cooledit/files/patch-widget::widechar.c --- /usr/ports/editors/cooledit/files/patch-widget::widechar.c Thu Jan 1 09:00:00 1970 +++ editors/cooledit/files/patch-widget::widechar.c Wed Dec 15 01:18:43 2004 @@ -0,0 +1,18 @@ +--- widget/widechar.c.orig Sat Nov 27 17:46:03 2004 ++++ widget/widechar.c Wed Dec 15 01:17:59 2004 +@@ -227,6 +227,7 @@ + static inline struct mb_rule apply_mb_rules_going_right (WEdit * edit, long byte_index, struct mb_rule mb_rule) + { + #ifdef HAVE_WCHAR_H ++#ifdef HAVE_MBRTOWC + wchar_t wc; + unsigned char p[16]; + int n; +@@ -252,6 +253,7 @@ + } + mb_rule.end = 0; + mb_rule.ch = -1; ++#endif + #endif + return mb_rule; + } diff -urN /usr/ports/editors/cooledit/pkg-plist editors/cooledit/pkg-plist --- /usr/ports/editors/cooledit/pkg-plist Fri Nov 26 19:51:58 2004 +++ editors/cooledit/pkg-plist Wed Dec 15 01:53:16 2004 @@ -21,6 +21,7 @@ %%DATADIR%%/syntax/java.syntax %%DATADIR%%/syntax/latex.syntax %%DATADIR%%/syntax/lsm.syntax +%%DATADIR%%/syntax/lsm4.syntax %%DATADIR%%/syntax/lua.syntax %%DATADIR%%/syntax/mail.syntax %%DATADIR%%/syntax/makefile.syntax @@ -33,6 +34,7 @@ %%DATADIR%%/syntax/php.syntax %%DATADIR%%/syntax/prolog.syntax %%DATADIR%%/syntax/python.syntax +%%DATADIR%%/syntax/scm.syntax %%DATADIR%%/syntax/sh.syntax %%DATADIR%%/syntax/smalltalk.syntax %%DATADIR%%/syntax/sql.syntax >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB3CB16A4CE for ; Wed, 15 Dec 2004 14:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B85343D2F for ; Wed, 15 Dec 2004 14:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAMsO021661 for ; Wed, 15 Dec 2004 14:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEAMwl021660; Wed, 15 Dec 2004 14:10:22 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:22 GMT Resent-Message-Id: <200412151410.iBFEAMwl021660@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4197B16A4CE for ; Wed, 15 Dec 2004 14:01:28 +0000 (GMT) Received: from hfep02.dion.ne.jp (hfep02.dion.ne.jp [203.181.105.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D81A43D48 for ; Wed, 15 Dec 2004 14:01:27 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep02.dion.ne.jp with SMTP id <20041215140123506.ARA@hfep02.dion.ne.jp> for ; Wed, 15 Dec 2004 23:01:23 +0900 Message-Id: <20041215230015.2f4122a1.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:15 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75111: Update port: editors/ved to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:22 -0000 >Number: 75111 >Category: ports >Synopsis: Update port: editors/ved to 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: Wed Dec 15 14:10:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 1.7 Remove file: pkg-plist >How-To-Repeat: >Fix: Binary files /usr/ports/editors/ved/.vedtmp.1001 and editors/ved/.vedtmp.1001 differ diff -urN /usr/ports/editors/ved/Makefile editors/ved/Makefile --- /usr/ports/editors/ved/Makefile Fri Feb 27 18:57:43 2004 +++ editors/ved/Makefile Wed Dec 15 02:34:14 2004 @@ -6,8 +6,7 @@ # PORTNAME= ved -PORTVERSION= 1.6 -PORTREVISION= 1 +PORTVERSION= 1.7 CATEGORIES= editors MASTER_SITES= ftp://ftp.berlios.de/pub/ved/ @@ -18,6 +17,8 @@ USE_GMAKE= yes MAN1= ved.1 +PLIST_FILES= bin/ved %%DATADIR%%/ved.help +PLIST_DIRS= %%DATADIR%% .include @@ -26,12 +27,15 @@ .endif post-patch: + ${REINPLACE_CMD} -e 's|^COPTOPT=.*$$|COPTOPT= ${CFLAGS}|g ; \ + s| gcc| ${CC}|g' ${WRKSRC}/RULES/i386-freebsd-cc.rul .for file in ved.h ved.1 ${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|g' ${WRKSRC}/ved/${file} .endfor -.if ${ARCH} == amd64 - ${CP} ${WRKSRC}/RULES/i386-freebsd-cc.rul ${WRKSRC}/RULES/amd64-freebsd-cc.rul -.endif +.for arch in alpha amd64 ia64 sparc64 + cd ${WRKSRC}/RULES \ + && ${LN} -sf i386-freebsd-cc.rul ${arch}-freebsd-cc.rul +.endfor do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ved/OBJ/${ARCH}-freebsd-cc/ved \ diff -urN /usr/ports/editors/ved/distinfo editors/ved/distinfo --- /usr/ports/editors/ved/distinfo Thu Jan 29 20:24:43 2004 +++ editors/ved/distinfo Wed Dec 15 02:15:31 2004 @@ -1,2 +1,2 @@ -MD5 (ved-1.6.tar.gz) = e37113a29d0c832a0910acdf3cc5da75 -SIZE (ved-1.6.tar.gz) = 459310 +MD5 (ved-1.7.tar.gz) = fedd6bd289cb315db57b79a99d9acbb1 +SIZE (ved-1.7.tar.gz) = 512815 diff -urN /usr/ports/editors/ved/files/patch-aa editors/ved/files/patch-aa --- /usr/ports/editors/ved/files/patch-aa Fri Nov 7 10:59:41 2003 +++ editors/ved/files/patch-aa Wed Dec 15 02:18:00 2004 @@ -1,11 +1,11 @@ ---- ved/ved.h.orig Wed Dec 27 13:32:40 2000 -+++ ved/ved.h Sun Dec 31 18:41:11 2000 +--- ved/ved.h.orig Sat Mar 13 06:33:40 2004 ++++ ved/ved.h Wed Dec 15 02:17:42 2004 @@ -134,7 +134,7 @@ - # define HELPFILE UC "/doc/cmds/ved.help" + # define HELPFILE UC "/doc/cmds/ved.help" #else - # define DEFSHELL "/bin/sh" --# define HELPFILE UC "/opt/schily/man/help/ved.help" -+# define HELPFILE UC "%%DATADIR%%/ved.help" + # define DEFSHELL "/bin/sh" +-# define HELPFILE UC "/opt/schily/man/help/ved.help" ++# define HELPFILE UC "%%DATADIR%%/ved.help" #endif /* diff -urN /usr/ports/editors/ved/pkg-plist editors/ved/pkg-plist --- /usr/ports/editors/ved/pkg-plist Fri Nov 7 10:59:42 2003 +++ editors/ved/pkg-plist Thu Jan 1 09:00:00 1970 @@ -1,3 +0,0 @@ -bin/ved -%%DATADIR%%/ved.help -@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44A0916A4CE for ; Wed, 15 Dec 2004 14:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AC4043D39 for ; Wed, 15 Dec 2004 14:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAMWf021674 for ; Wed, 15 Dec 2004 14:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEAMWL021673; Wed, 15 Dec 2004 14:10:22 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:22 GMT Resent-Message-Id: <200412151410.iBFEAMWL021673@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E941D16A4D5 for ; Wed, 15 Dec 2004 14:01:36 +0000 (GMT) Received: from hfep08.dion.ne.jp (hfep08.dion.ne.jp [203.181.105.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id B671943D31 for ; Wed, 15 Dec 2004 14:01:35 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep08.dion.ne.jp with SMTP id <20041215140132278.ZZTT@hfep08.dion.ne.jp> for ; Wed, 15 Dec 2004 23:01:32 +0900 Message-Id: <20041215230017.21be174d.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:17 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75112: Update port: finance/qhacc to 3.2.3a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:24 -0000 >Number: 75112 >Category: ports >Synopsis: Update port: finance/qhacc to 3.2.3a >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 Dec 15 14:10:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 3.2.3a >How-To-Repeat: >Fix: diff -urN /usr/ports/finance/qhacc/Makefile finance/qhacc/Makefile --- /usr/ports/finance/qhacc/Makefile Sun Dec 12 08:51:57 2004 +++ finance/qhacc/Makefile Wed Dec 15 17:55:07 2004 @@ -6,10 +6,11 @@ # PORTNAME= qhacc -PORTVERSION= 3.2.3 +PORTVERSION= 3.2.3a CATEGORIES= finance MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION:S/a//} MAINTAINER= ports@FreeBSD.org COMMENT= Simple QT-based financial manager diff -urN /usr/ports/finance/qhacc/distinfo finance/qhacc/distinfo --- /usr/ports/finance/qhacc/distinfo Sun Dec 12 08:51:57 2004 +++ finance/qhacc/distinfo Wed Dec 15 17:55:45 2004 @@ -1,2 +1,2 @@ -MD5 (qhacc-3.2.3.tar.gz) = 97e387253145035e3355789a9fbec89d -SIZE (qhacc-3.2.3.tar.gz) = 666935 +MD5 (qhacc-3.2.3.tar.gz) = 8116e70d37cb6b0abadf38b6c170ca2d +SIZE (qhacc-3.2.3.tar.gz) = 666835 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F64616A4CE for ; Wed, 15 Dec 2004 14:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7302643D39 for ; Wed, 15 Dec 2004 14:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAO7G021701 for ; Wed, 15 Dec 2004 14:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEAOhT021694; Wed, 15 Dec 2004 14:10:24 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:24 GMT Resent-Message-Id: <200412151410.iBFEAOhT021694@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 435F116A4CE for ; Wed, 15 Dec 2004 14:01:51 +0000 (GMT) Received: from hfep08.dion.ne.jp (hfep08.dion.ne.jp [203.181.105.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A44843D48 for ; Wed, 15 Dec 2004 14:01:49 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep08.dion.ne.jp with SMTP id <20041215140141559.ZZZV@hfep08.dion.ne.jp> for ; Wed, 15 Dec 2004 23:01:41 +0900 Message-Id: <20041215230018.40249f2d.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:18 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75113: Update port: games/qgo to 1.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:25 -0000 >Number: 75113 >Category: ports >Synopsis: Update port: games/qgo to 1.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: Wed Dec 15 14:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 1.0.0 New file: files/patch-src::mainwin.cpp files/patch-src::wavfile.c files/patch-src::wavplay.c Remove file: files/patch-qgo::Makefile.in files/patch-qgo::src::mainwin.cpp files/patch-qgo::src::wavfile.c files/patch-qgo::src::wavplay.c >How-To-Repeat: >Fix: diff -urN /usr/ports/games/qgo/Makefile games/qgo/Makefile --- /usr/ports/games/qgo/Makefile Wed Dec 8 01:37:49 2004 +++ games/qgo/Makefile Tue Dec 14 20:20:16 2004 @@ -7,7 +7,7 @@ # PORTNAME= qgo -PORTVERSION= 0.2.2 +PORTVERSION= 1.0.0 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,19 +19,16 @@ USE_REINPLACE= yes USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= QTDIR=${QT_PREFIX} -MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \ - AUTOHEADER="${TRUE}" +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= QTDIR="${QT_PREFIX}" CONFIGURE_ARGS= --x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include post-patch: - @${REINPLACE_CMD} -e 's|-pedantic||g ; \ - s|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|/usr/share|$${prefix}/share|g' - -pre-build: - -@${RM} ${WRKSRC}/qgo/src/*_gui.cpp - -@${RM} ${WRKSRC}/qgo/src/*_gui.h + @${REINPLACE_CMD} -e \ + 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|src templates|src|g' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|: install-includeHEADERS|:|g' ${WRKSRC}/src/Makefile.in .include diff -urN /usr/ports/games/qgo/distinfo games/qgo/distinfo --- /usr/ports/games/qgo/distinfo Wed Oct 27 12:08:55 2004 +++ games/qgo/distinfo Tue Dec 14 19:25:48 2004 @@ -1,2 +1,2 @@ -MD5 (qgo-0.2.2.tar.gz) = 4483bebd46ceda203b0cbad35da0a624 -SIZE (qgo-0.2.2.tar.gz) = 1751040 +MD5 (qgo-1.0.0.tar.gz) = a455fb3a850e340c9d07bb5e514026ef +SIZE (qgo-1.0.0.tar.gz) = 1420181 diff -urN /usr/ports/games/qgo/files/patch-qgo::Makefile.in games/qgo/files/patch-qgo::Makefile.in --- /usr/ports/games/qgo/files/patch-qgo::Makefile.in Tue May 11 13:35:03 2004 +++ games/qgo/files/patch-qgo::Makefile.in Thu Jan 1 09:00:00 1970 @@ -1,23 +0,0 @@ ---- qgo/Makefile.in.orig Mon May 10 18:33:38 2004 -+++ qgo/Makefile.in Mon May 10 18:34:44 2004 -@@ -235,7 +235,7 @@ - KDE_OPTIONS = qtonly - qgo_LDADD = ./src/libsrc.a $(LIB_QPE) $(LIB_QT) $(LIBSOCKET) - --SUBDIRS = src templates -+SUBDIRS = src - - EXTRA_DIST = filenew.xpm filesave.xpm fileopen.xpm ChangeLog - -@@ -266,6 +266,11 @@ - #>+ 1 - qgo_OBJECTS = - qgo_DEPENDENCIES = ./src/libsrc.a -+CFLAGS = @CFLAGS@ -+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+CCLD = $(CC) -+LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ - DIST_COMMON = README ChangeLog Makefile.am Makefile.in TODO - - diff -urN /usr/ports/games/qgo/files/patch-qgo::src::mainwin.cpp games/qgo/files/patch-qgo::src::mainwin.cpp --- /usr/ports/games/qgo/files/patch-qgo::src::mainwin.cpp Tue Aug 24 04:01:18 2004 +++ games/qgo/files/patch-qgo::src::mainwin.cpp Thu Jan 1 09:00:00 1970 @@ -1,15 +0,0 @@ ---- qgo/src/mainwin.cpp.orig Sat Jun 19 07:38:43 2004 -+++ qgo/src/mainwin.cpp Sun Aug 22 15:55:59 2004 -@@ -1604,10 +1604,10 @@ - //set the params of "who command" - if ((whoBox1->currentItem() >1) || (whoBox2->currentItem() >1)) - { -- wparam.append(whoBox1->currentItem()==1 ? "9p" : whoBox1->currentText()); -+ wparam.append(whoBox1->currentItem()==1 ? QString("9p") : whoBox1->currentText()); - if ((whoBox1->currentItem()) && (whoBox2->currentItem())) - wparam.append("-"); -- wparam.append(whoBox2->currentItem()==1 ? "9p" : whoBox2->currentText()); -+ wparam.append(whoBox2->currentItem()==1 ? QString("9p") : whoBox2->currentText()); - } - else if ((whoBox1->currentItem()) || (whoBox2->currentItem())) - wparam.append("1p-9p"); diff -urN /usr/ports/games/qgo/files/patch-qgo::src::wavfile.c games/qgo/files/patch-qgo::src::wavfile.c --- /usr/ports/games/qgo/files/patch-qgo::src::wavfile.c Sat Aug 21 13:39:45 2004 +++ games/qgo/files/patch-qgo::src::wavfile.c Thu Jan 1 09:00:00 1970 @@ -1,28 +0,0 @@ ---- qgo/src/wavfile.c.orig Mon Jun 23 23:57:08 2003 -+++ qgo/src/wavfile.c Fri Aug 20 23:10:57 2004 -@@ -53,7 +53,6 @@ - #include - #include - #include --#include - #include - #include - #include -@@ -61,7 +60,7 @@ - #include - #include - #include --#include -+#include - - - // stop -@@ -133,7 +132,7 @@ - //static ErrFunc _v_erf; /* This module's error reporting function */ - static char emsg[2048]; - -- -+static void _v_erf(const char *format,va_list ap); - - /* - * Error reporting function for this source module: diff -urN /usr/ports/games/qgo/files/patch-qgo::src::wavplay.c games/qgo/files/patch-qgo::src::wavplay.c --- /usr/ports/games/qgo/files/patch-qgo::src::wavplay.c Thu Nov 6 00:58:25 2003 +++ games/qgo/files/patch-qgo::src::wavplay.c Thu Jan 1 09:00:00 1970 @@ -1,16 +0,0 @@ ---- qgo/src/wavplay.c.orig Tue Jun 24 06:57:09 2003 -+++ qgo/src/wavplay.c Mon Nov 3 00:50:02 2003 -@@ -55,12 +55,11 @@ - #include - #include - #include --#include - #include - #include - #include - #include --#include -+#include - #include "wavplay.h" - //#include "server.h" - diff -urN /usr/ports/games/qgo/files/patch-src::mainwin.cpp games/qgo/files/patch-src::mainwin.cpp --- /usr/ports/games/qgo/files/patch-src::mainwin.cpp Thu Jan 1 09:00:00 1970 +++ games/qgo/files/patch-src::mainwin.cpp Tue Dec 14 19:37:31 2004 @@ -0,0 +1,15 @@ +--- src/mainwin.cpp.orig Mon Nov 29 15:42:39 2004 ++++ src/mainwin.cpp Tue Dec 14 19:37:16 2004 +@@ -1571,10 +1571,10 @@ + //set the params of "who command" + if ((whoBox1->currentItem() >1) || (whoBox2->currentItem() >1)) + { +- wparam.append(whoBox1->currentItem()==1 ? "9p" : whoBox1->currentText()); ++ wparam.append(whoBox1->currentItem()==1 ? QString("9p") : whoBox1->currentText()); + if ((whoBox1->currentItem()) && (whoBox2->currentItem())) + wparam.append("-"); +- wparam.append(whoBox2->currentItem()==1 ? "9p" : whoBox2->currentText()); ++ wparam.append(whoBox2->currentItem()==1 ? QString("9p") : whoBox2->currentText()); + } + else if ((whoBox1->currentItem()) || (whoBox2->currentItem())) + wparam.append("1p-9p"); diff -urN /usr/ports/games/qgo/files/patch-src::wavfile.c games/qgo/files/patch-src::wavfile.c --- /usr/ports/games/qgo/files/patch-src::wavfile.c Thu Jan 1 09:00:00 1970 +++ games/qgo/files/patch-src::wavfile.c Tue Dec 14 19:34:19 2004 @@ -0,0 +1,34 @@ +--- src/wavfile.c.orig Sun Oct 31 08:36:45 2004 ++++ src/wavfile.c Tue Dec 14 19:34:08 2004 +@@ -41,7 +41,7 @@ + * wavplay project. + */ + +-#ifdef __linux__ ++#if defined(__linux__) || defined(__FreeBSD__) + + static const char rcsid[] = "@(#)wavfile.c $Revision: 1.6 $"; + +@@ -52,7 +52,9 @@ + #include + #include + #include ++#if defined(__linux__) + #include ++#endif + #include + #include + #include +@@ -60,7 +62,12 @@ + #include + #include + #include ++#if defined(__linux__) + #include ++#endif ++#if defined(__FreeBSD__) ++#include ++#endif + + + diff -urN /usr/ports/games/qgo/files/patch-src::wavplay.c games/qgo/files/patch-src::wavplay.c --- /usr/ports/games/qgo/files/patch-src::wavplay.c Thu Jan 1 09:00:00 1970 +++ games/qgo/files/patch-src::wavplay.c Tue Dec 14 19:32:47 2004 @@ -0,0 +1,30 @@ +--- src/wavplay.c.orig Sun Oct 31 08:35:00 2004 ++++ src/wavplay.c Tue Dec 14 19:32:31 2004 +@@ -54,19 +54,26 @@ + * + */ + +-#ifdef __linux__ ++#if defined(__linux__) || defined(__FreeBSD__) + + static const char rcsid[] = "@(#)recplay.c $Revision: 1.8 $"; + + #include + #include + #include ++#if defined(__linux__) + #include ++#endif + #include + #include + #include + #include ++#if defined(__linux__) + #include ++#endif ++#if defined(__linux__) ++#include ++#endif + #include "wavplay.h" + /*/#include "server.h"*/ + diff -urN /usr/ports/games/qgo/pkg-plist games/qgo/pkg-plist --- /usr/ports/games/qgo/pkg-plist Wed Feb 11 12:56:15 2004 +++ games/qgo/pkg-plist Tue Dec 14 21:02:08 2004 @@ -2,6 +2,7 @@ share/qGo/pics/Bowl.png share/qGo/sounds/click.wav share/qGo/sounds/connect.wav +share/qGo/sounds/connect2.wav share/qGo/sounds/enter.wav share/qGo/sounds/gameend.wav share/qGo/sounds/leave.wav @@ -9,12 +10,15 @@ share/qGo/sounds/pass.wav share/qGo/sounds/say.wav share/qGo/sounds/stone.wav +share/qGo/sounds/stone2.wav share/qGo/sounds/talk.wav share/qGo/sounds/tictoc.wav +share/qGo/translations/qgo_cz.qm share/qGo/translations/qgo_de.qm share/qGo/translations/qgo_fr.qm share/qGo/translations/qgo_it.qm share/qGo/translations/qgo_nl.qm +share/qGo/translations/qgo_zh.qm @dirrm share/qGo/translations @dirrm share/qGo/sounds @dirrm share/qGo/pics >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B81C16A4CE for ; Wed, 15 Dec 2004 14:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D79EC43D41 for ; Wed, 15 Dec 2004 14:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAOJK021719 for ; Wed, 15 Dec 2004 14:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEAO59021718; Wed, 15 Dec 2004 14:10:24 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:24 GMT Resent-Message-Id: <200412151410.iBFEAO59021718@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4DCF16A4CE for ; Wed, 15 Dec 2004 14:02:03 +0000 (GMT) Received: from hfep05.dion.ne.jp (hfep05.dion.ne.jp [203.181.105.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FEB643D2D for ; Wed, 15 Dec 2004 14:02:02 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep05.dion.ne.jp with SMTP id <20041215140155568.AJE@hfep05.dion.ne.jp> for ; Wed, 15 Dec 2004 23:01:55 +0900 Message-Id: <20041215230020.14590c22.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:20 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75114: Update port: misc/gtktalog X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:25 -0000 >Number: 75114 >Category: ports >Synopsis: Update port: misc/gtktalog >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 Dec 15 14:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Fix COMMENT format - Rearrange USE_GNOME - Add WITHOUT_NLS knob >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/gtktalog/Makefile misc/gtktalog/Makefile --- /usr/ports/misc/gtktalog/Makefile Mon Dec 13 13:29:32 2004 +++ misc/gtktalog/Makefile Mon Dec 13 14:22:25 2004 @@ -7,43 +7,38 @@ PORTNAME= gtktalog PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}.pkg/${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= GTKtalog is a tool to make disk catalogs +COMMENT= A tool to make disk catalogs BUILD_DEPENDS= plaympeg:${PORTSDIR}/multimedia/smpeg RUN_DEPENDS= plaympeg:${PORTSDIR}/multimedia/smpeg -USE_GNOME= gnomeprefix gnomelibs gnometarget -GNU_CONFIGURE= yes -USE_X_PREFIX= yes USE_BZIP2= yes -USE_REINPLACE= yes +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomelibs gnomeprefix gnometarget +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" MAN1= gtktalog.1 -DOCS= AUTHORS BUGS ChangeLog NEWS README TODO - -CONFIGURE_ENV= XGETTEXT=${LOCALBASE}/bin/xgettext - -post-patch: - @${REINPLACE_CMD} -e "s@-lpthread@${PTHREAD_LIBS}@" ${WRKSRC}/configure - @${REINPLACE_CMD} -E "s@^(Applicationsdir = ).*@\1${PREFIX}/share/gnome/apps/Applications@" ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -E "s@^(localedir = ).*@\1${PREFIX}/share/locale@" \ - ${WRKSRC}/po/Makefile.in.in - @${REINPLACE_CMD} -E "s@^(gtktalog_helpdir = ).*@\1${PREFIX}/share/gnome/help/gtktalog/C@" ${WRKSRC}/Docs/C/Makefile.in - @${REINPLACE_CMD} -E "s@^(gtktalog_helpdir = ).*@\1${PREFIX}/share/gnome/help/gtktalog/fr@" ${WRKSRC}/Docs/fr/Makefile.in - @${REINPLACE_CMD} -E "s@^(MountPoint ).*@\1/cdrom@" \ - ${WRKSRC}/src/gtktalog/gtktalog.cf.in.in +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.else +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.endif post-install: - ${RMDIR} ${PREFIX}/share/gnome/help/gtktalog/*/images 2>/dev/null || ${TRUE} .if !defined(NOPORTDOCS) - ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR} -.for f in ${DOCS} + @${MKDIR} ${DOCSDIR} +.for f in AUTHORS BUGS ChangeLog NEWS README TODO ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} .endfor .endif diff -urN /usr/ports/misc/gtktalog/files/patch-Docs::C::Makefile.in misc/gtktalog/files/patch-Docs::C::Makefile.in --- /usr/ports/misc/gtktalog/files/patch-Docs::C::Makefile.in Mon Jul 14 13:50:08 2003 +++ misc/gtktalog/files/patch-Docs::C::Makefile.in Mon Dec 13 14:13:59 2004 @@ -1,7 +1,7 @@ ---- Docs/C/Makefile.in.orig Fri Jul 11 00:24:00 2003 -+++ Docs/C/Makefile.in Fri Jul 11 00:26:06 2003 -@@ -326,9 +326,6 @@ - -rm -rf man +--- Docs/C/Makefile.in.orig Tue Sep 2 06:57:08 2003 ++++ Docs/C/Makefile.in Mon Dec 13 14:13:46 2004 +@@ -387,9 +387,6 @@ + -rm -rf man.junk gtktalog/gtktalog.html: $(SGML_FILES) - -db2html gtktalog.sgml @@ -10,3 +10,12 @@ dist-hook: gtktalog/gtktalog.html mkdir -p $(distdir)/gtktalog +@@ -397,7 +394,7 @@ + -cp gtktalog/stylesheet-images/* $(distdir)/gtktalog + + install-data-local: gtktalog/gtktalog.html +- $(mkinstalldirs) $(DESTDIR)$(gtktalog_helpdir)/images ++ $(mkinstalldirs) $(DESTDIR)$(gtktalog_helpdir) + -for file in $(srcdir)/gtktalog/*.html $(srcdir)/gtktalog/*.css $(srcdir)/gtktalog/*.gif; do \ + basefile=`basename $$file`; \ + $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(gtktalog_helpdir)/$$basefile; \ diff -urN /usr/ports/misc/gtktalog/files/patch-Docs::fr::Makefile.in misc/gtktalog/files/patch-Docs::fr::Makefile.in --- /usr/ports/misc/gtktalog/files/patch-Docs::fr::Makefile.in Mon Jul 14 13:50:08 2003 +++ misc/gtktalog/files/patch-Docs::fr::Makefile.in Mon Dec 13 14:14:30 2004 @@ -1,7 +1,7 @@ ---- Docs/fr/Makefile.in.orig Fri Jul 11 00:36:37 2003 -+++ Docs/fr/Makefile.in Fri Jul 11 00:37:45 2003 -@@ -326,9 +326,6 @@ - -rm -rf man +--- Docs/fr/Makefile.in.orig Tue Sep 2 06:57:10 2003 ++++ Docs/fr/Makefile.in Mon Dec 13 14:14:17 2004 +@@ -387,9 +387,6 @@ + -rm -rf man.junk gtktalog/gtktalog.html: $(SGML_FILES) - -db2html gtktalog.sgml @@ -10,3 +10,12 @@ dist-hook: gtktalog/gtktalog.html mkdir -p $(distdir)/gtktalog +@@ -397,7 +394,7 @@ + -cp gtktalog/stylesheet-images/* $(distdir)/gtktalog + + install-data-local: gtktalog/gtktalog.html +- $(mkinstalldirs) $(DESTDIR)$(gtktalog_helpdir)/images ++ $(mkinstalldirs) $(DESTDIR)$(gtktalog_helpdir) + -for file in $(srcdir)/gtktalog/*.html $(srcdir)/gtktalog/*.css $(srcdir)/gtktalog/*.gif; do \ + basefile=`basename $$file`; \ + $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(gtktalog_helpdir)/$$basefile; \ diff -urN /usr/ports/misc/gtktalog/pkg-plist misc/gtktalog/pkg-plist --- /usr/ports/misc/gtktalog/pkg-plist Mon May 17 11:43:55 2004 +++ misc/gtktalog/pkg-plist Mon Dec 13 14:11:28 2004 @@ -1,9 +1,15 @@ bin/gtktalog lib/gtktalog/aviinfo -lib/gtktalog/mpeginfo lib/gtktalog/htmltitle lib/gtktalog/modinfo lib/gtktalog/mp3info +lib/gtktalog/mpeginfo +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/BUGS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO share/gnome/apps/Applications/gtktalog.desktop share/gnome/gtktalog/gtktalog.cf share/gnome/gtktalog/icons/c.xpm @@ -147,17 +153,25 @@ share/gnome/help/gtktalog/fr/x846.html share/gnome/help/gtktalog/fr/x947.html share/gnome/pixmaps/gtktalog.png -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/BUGS -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/TODO +%%NLS%%share/locale/ca/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/de/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/es/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/hu/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/it/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/ja/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/sk/LC_MESSAGES/gtktalog.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gtktalog.mo %%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm lib/gtktalog -@dirrm share/gnome/gtktalog/icons -@dirrm share/gnome/gtktalog/xpm -@dirrm share/gnome/gtktalog -@dirrm share/gnome/help/gtktalog/C @dirrm share/gnome/help/gtktalog/fr +@dirrm share/gnome/help/gtktalog/C @dirrm share/gnome/help/gtktalog +@dirrm share/gnome/gtktalog/xpm +@dirrm share/gnome/gtktalog/icons +@dirrm share/gnome/gtktalog +@dirrm lib/gtktalog >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73D2C16A4CF for ; Wed, 15 Dec 2004 14:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A6FC43D39 for ; Wed, 15 Dec 2004 14:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEAPmH021732 for ; Wed, 15 Dec 2004 14:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEAPlT021731; Wed, 15 Dec 2004 14:10:25 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:10:25 GMT Resent-Message-Id: <200412151410.iBFEAPlT021731@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 384FD16A4CE for ; Wed, 15 Dec 2004 14:02:12 +0000 (GMT) Received: from hfep04.dion.ne.jp (hfep04.dion.ne.jp [203.181.105.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 558F243D2D for ; Wed, 15 Dec 2004 14:02:11 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([218.222.70.85]) by hfep04.dion.ne.jp with SMTP id <20041215140208689.CMJH@hfep04.dion.ne.jp> for ; Wed, 15 Dec 2004 23:02:08 +0900 Message-Id: <20041215230022.187a4f7f.tkato432@yahoo.com> Date: Wed, 15 Dec 2004 23:00:22 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75115: Update port: print/typetools to 2.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:25 -0000 >Number: 75115 >Category: ports >Synopsis: Update port: print/typetools to 2.16 >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 Dec 15 14:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 2.16 >How-To-Repeat: >Fix: diff -urN /usr/ports/print/typetools/Makefile print/typetools/Makefile --- /usr/ports/print/typetools/Makefile Sat Nov 6 14:10:20 2004 +++ print/typetools/Makefile Sun Dec 12 20:48:24 2004 @@ -7,7 +7,7 @@ # PORTNAME= typetools -PORTVERSION= 2.15 +PORTVERSION= 2.16 CATEGORIES= print MASTER_SITES= http://www.lcdf.org/type/ DISTNAME= lcdf-${PORTNAME}-${PORTVERSION} diff -urN /usr/ports/print/typetools/distinfo print/typetools/distinfo --- /usr/ports/print/typetools/distinfo Sat Nov 6 14:10:20 2004 +++ print/typetools/distinfo Sun Dec 12 20:52:10 2004 @@ -1,2 +1,2 @@ -MD5 (lcdf-typetools-2.15.tar.gz) = 72419ee829aabe694d97596f635f0e57 -SIZE (lcdf-typetools-2.15.tar.gz) = 450392 +MD5 (lcdf-typetools-2.16.tar.gz) = eac3886835d0a8c393469901c0f5d2d8 +SIZE (lcdf-typetools-2.16.tar.gz) = 441540 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:10:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71C4516A4CE for ; Wed, 15 Dec 2004 14:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54A8243D41 for ; Wed, 15 Dec 2004 14:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEASrf021744 for ; Wed, 15 Dec 2004 14:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEASE8021743; Wed, 15 Dec 2004 14:10:28 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 14:10:28 GMT Message-Id: <200412151410.iBFEASE8021743@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Carlos Eduardo G. Carvalho" Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Carlos Eduardo G. Carvalho" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:10:28 -0000 The following reply was made to PR ports/71849; it has been noted by GNATS. From: "Carlos Eduardo G. Carvalho" To: Frank Laszlo Cc: freebsd-gnats-submit@FreeBSD.org, molter@tin.it Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures Date: Wed, 15 Dec 2004 12:02:20 -0200 --=-K4Bs5aYvMIKG//PCeHt9 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Okz, but the Porters Handbook says to do a uuencode of a tarball when it gets larger than 20k, don't it? "If the uncompressed port is larger than 20KB, you should compress it into a tarfile and use uuencode(1) before including it in the bug report (...)" Should I send shar of larger files too? If so it could be good to change the handbook... :) [ ]s! On Mon, 2004-12-13 at 17:44, Frank Laszlo wrote: > You should submit new ports as a Shell Archive (see shar(1)) And not as=20 > a tarball. This will help speed up the process of getting it commited.=20 > Hope this helps >=20 > Regards, > Frank Laszlo >=20 > !DSPAM:41bdf142511398594915267! --=20 Carlos E. G. Carvalho OpenIT Solucoes Tecnologicas Consultor Unix/Internet Tel. +55 21 2508-9103 http://www.OpenIT.com.br http://www.MyFreeBSD.com.br --=-K4Bs5aYvMIKG//PCeHt9 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQBBwEPsRpZ0A7hClfgRAoDXAKCcaNY9YO25BDIBGRi4agN/uKz68ACdFa6Y 3eANVRU3GVbPSOA2L12JWf0= =yP7N -----END PGP SIGNATURE----- --=-K4Bs5aYvMIKG//PCeHt9-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:20:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9E8B16A4CE for ; Wed, 15 Dec 2004 14:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A87BA43D53 for ; Wed, 15 Dec 2004 14:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEKUTG021997 for ; Wed, 15 Dec 2004 14:20:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEKUgI021996; Wed, 15 Dec 2004 14:20:30 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 14:20:30 GMT Message-Id: <200412151420.iBFEKUgI021996@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74983: plist fix for news/p5_gateway X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:20:31 -0000 The following reply was made to PR ports/74983; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, croyle@gelemna.org, "Volker Stolz" Cc: Subject: Re: ports/74983: plist fix for news/p5_gateway Date: Wed, 15 Dec 2004 17:19:21 +0300 With 5.8.5 it does. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:30:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEAAE16A4CE for ; Wed, 15 Dec 2004 14:30:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 954E543D48 for ; Wed, 15 Dec 2004 14:30:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEUPB8022280 for ; Wed, 15 Dec 2004 14:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEUPgX022279; Wed, 15 Dec 2004 14:30:25 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 14:30:25 GMT Message-Id: <200412151430.iBFEUPgX022279@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Frank Laszlo Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Frank Laszlo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:30:25 -0000 The following reply was made to PR ports/71849; it has been noted by GNATS. From: Frank Laszlo To: "Carlos Eduardo G. Carvalho" Cc: freebsd-gnats-submit@FreeBSD.org, molter@tin.it Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures Date: Wed, 15 Dec 2004 09:29:10 -0500 Yes, you are correct. I didnt realize it was that big. Regards, Frank Laszlo From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:41:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8240A16A4CE; Wed, 15 Dec 2004 14:41:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A4DB43D41; Wed, 15 Dec 2004 14:41:00 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEf0ix023440; Wed, 15 Dec 2004 14:41:00 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEf0ig023436; Wed, 15 Dec 2004 14:41:00 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 14:41:00 GMT From: Sergey Matveychuk Message-Id: <200412151441.iBFEf0ig023436@freefall.freebsd.org> To: nik@jc.ngo.org.uk, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74922: [PATCH] Update www/trac to 0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:41:00 -0000 Synopsis: [PATCH] Update www/trac to 0.8 State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Wed Dec 15 14:40:34 GMT 2004 State-Changed-Why: Ask maintainer for approvement. http://www.freebsd.org/cgi/query-pr.cgi?pr=74922 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:48:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A3DF16A4CE; Wed, 15 Dec 2004 14:48:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E631A43D2F; Wed, 15 Dec 2004 14:48:18 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEmILj023598; Wed, 15 Dec 2004 14:48:18 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEmI5N023594; Wed, 15 Dec 2004 14:48:18 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 14:48:18 GMT From: Volker Stolz Message-Id: <200412151448.iBFEmI5N023594@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clive@FreeBSD.org Subject: Re: ports/75072: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:48:19 -0000 Synopsis: [maintainer-update] x11/fbpanel 3.12_1 -> 3.18 Responsible-Changed-From-To: freebsd-ports-bugs->clive Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 14:48:01 GMT 2004 Responsible-Changed-Why: Clive is tracking the 4.x-residue http://www.freebsd.org/cgi/query-pr.cgi?pr=75072 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14B6916A4CE for ; Wed, 15 Dec 2004 14:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98B4943D48 for ; Wed, 15 Dec 2004 14:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFEoMZY023666 for ; Wed, 15 Dec 2004 14:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFEoMel023664; Wed, 15 Dec 2004 14:50:22 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 14:50:22 GMT Resent-Message-Id: <200412151450.iBFEoMel023664@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, "Arjan van Leeuwen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE50316A4CE for ; Wed, 15 Dec 2004 14:44:20 +0000 (GMT) Received: from winston.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id B649643D58 for ; Wed, 15 Dec 2004 14:44:19 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 45012 invoked from network); 15 Dec 2004 14:44:18 -0000 Received: from unknown (HELO vincent.piwebs.com) (192.168.0.73) by winston.piwebs.com with SMTP; 15 Dec 2004 14:44:18 -0000 Message-Id: <1103121863.0@vincent.piwebs.com> Date: Wed, 15 Dec 2004 15:44:23 +0100 From: "Arjan van Leeuwen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/75116: Update www/opera to 7.54u1 (security update) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:50:23 -0000 >Number: 75116 >Category: ports >Synopsis: Update www/opera to 7.54u1 (security update) >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: Wed Dec 15 14:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Arjan van Leeuwen >Release: FreeBSD 6.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 6.0-CURRENT #3: Wed Dec 15 01:17:33 CET 2004 root@vincent.piwebs.com:/usr/obj/usr/src/sys/VINCENT >Description: Update Opera to version 7.54u1 (20041212). This update fixes several security vulnerabilities, see http://www.opera.com/freebsd/changelogs/754u1/index.dml for details. >How-To-Repeat: >Fix: --- opera.diff begins here --- diff -urN /usr/ports/www/opera/Makefile opera/Makefile --- /usr/ports/www/opera/Makefile Sun Aug 29 00:50:43 2004 +++ opera/Makefile Wed Dec 15 15:40:34 2004 @@ -7,31 +7,31 @@ PORTNAME= opera PORTVERSION= ${OPERA_VER}.${OPERA_DATE} -PORTREVISION= 2 CATEGORIES= www -MASTER_SITES= http://ftp.scarlet.be/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://ftp.planetmirror.com/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - http://www.mehok.uni-miskolc.hu/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://ftp.heanet.ie/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://opera.nsc.no/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - http://ftp.task.gda.pl/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://ftp.idilis.ro/mirrors/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - http://www.fastmirrors.org/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - http://ftp.sunet.se/pub/www/clients/Opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://mirror.switch.ch/mirror/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://ftp.tiscali.nl/pub/mirrors/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - http://ftp.ankara.edu.tr/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ftp://files.downloadthat.com/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/www/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/&,} \ - ftp://ftp.opera.com/pub/opera/unix/freebsd/${OPERA_VER:S/.//}/${OPERA_REL}/en/static/ +MASTER_SITES= http://ftp.scarlet.be/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://ftp.planetmirror.com/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + http://www.mehok.uni-miskolc.hu/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://ftp.heanet.ie/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://opera.nsc.no/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + http://ftp.task.gda.pl/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://ftp.idilis.ro/mirrors/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + http://www.fastmirrors.org/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + http://ftp.sunet.se/pub/www/clients/Opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://mirror.switch.ch/mirror/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://ftp.tiscali.nl/pub/mirrors/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + http://ftp.ankara.edu.tr/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ftp://files.downloadthat.com/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ \ + ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/www/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/&,} \ + ftp://ftp.opera.com/pub/opera/unix/freebsd/${OPERA_VER:S/.//}${OPERA_MINVER}/${OPERA_REL}/en/static/ DISTNAME= ${PORTNAME}-${OPERA_VER}-${OPERA_DATE}.1-static-qt.i386.freebsd-en MAINTAINER= avleeuwen@piwebs.com COMMENT= A blazingly fast, full-featured, standards-compliant browser OPERA_VER= 7.54 +OPERA_MINVER= u1 OPERA_REL= final -OPERA_DATE= 20040803 +OPERA_DATE= 20041210 DATADIR= ${PREFIX}/share/${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME} diff -urN /usr/ports/www/opera/distinfo opera/distinfo --- /usr/ports/www/opera/distinfo Thu Aug 5 21:14:52 2004 +++ opera/distinfo Wed Dec 15 15:24:24 2004 @@ -1,2 +1,2 @@ -MD5 (opera-7.54-20040803.1-static-qt.i386.freebsd-en.tar.bz2) = e9c38837138db091b1a54ddc11c34364 -SIZE (opera-7.54-20040803.1-static-qt.i386.freebsd-en.tar.bz2) = 4772388 +MD5 (opera-7.54-20041210.1-static-qt.i386.freebsd-en.tar.bz2) = 4977bb6e4b445942c370070f88f7d377 +SIZE (opera-7.54-20041210.1-static-qt.i386.freebsd-en.tar.bz2) = 4782184 diff -urN /usr/ports/www/opera/files/patch-ini::pluginpath.ini opera/files/patch-ini::pluginpath.ini --- /usr/ports/www/opera/files/patch-ini::pluginpath.ini Tue Jul 20 19:38:59 2004 +++ opera/files/patch-ini::pluginpath.ini Wed Dec 15 15:27:11 2004 @@ -1,17 +1,19 @@ ---- ini/pluginpath.ini.orig Mon Jul 19 22:54:02 2004 -+++ ini/pluginpath.ini Mon Jul 19 22:57:21 2004 -@@ -1,31 +1,16 @@ +--- ini/pluginpath.ini.orig Fri Dec 10 13:53:57 2004 ++++ ini/pluginpath.ini Wed Dec 15 15:26:46 2004 +@@ -1,38 +1,16 @@ -Opera Preferences version 2.0 -; Do not edit this file while Opera is running -; This file is stored in UTF-8 encoding - -[Paths] +-$PWD/plugins=1 -$HOME/.opera/plugins=1 -/usr/lib/opera/plugins=1 -/usr/lib/opera/plugins=1 -/usr/local/lib/opera/plugins=1 -/opt/lib/opera/plugins=1 - +-; Adobe Acrobat -/usr/local/Acrobat5/Browsers/intellinux=1 -/usr/local/Acrobat4/Browsers/intellinux=1 -/usr/lib/Acrobat5/Browsers/intellinux=1 @@ -23,15 +25,20 @@ -/usr/Acrobat5/Browsers/intellinux=1 -/usr/Acrobat4/Browsers/intellinux=1 - +-; Realplayer -/usr/lib/RealPlayer8/Plugins=1 -/usr/lib/realplay/plugins=1 -/usr/lib/RealPlayer8=1 -/usr/lib/realplay=1 +- +-; Netscape Plug-in Paths +-$HOME/.netscape6/plugins=1 -$HOME/.netscape/plugins=1 -/opt/netscape/plugins=1 -/usr/lib/netscape/plugins=1 -/usr/local/netscape/plugins=1 -/usr/local/lib/netscape/plugins=1 +-$HOME/.kde/.konqueror/nsplugins=1 +Opera Preferences version 2.0 +; Do not edit this file while Opera is running +; This file is stored in UTF-8 encoding diff -urN /usr/ports/www/opera/files/patch-install.sh opera/files/patch-install.sh --- /usr/ports/www/opera/files/patch-install.sh Tue Jul 20 19:38:59 2004 +++ opera/files/patch-install.sh Wed Dec 15 15:36:14 2004 @@ -1,5 +1,5 @@ ---- install.sh.orig Mon Jul 19 22:19:01 2004 -+++ install.sh Mon Jul 19 22:52:26 2004 +--- install.sh.orig Fri Dec 10 13:53:57 2004 ++++ install.sh Wed Dec 15 15:35:18 2004 @@ -373,7 +373,7 @@ mvv='' # SunOS mv (no -v verbose option) ;; @@ -9,41 +9,7 @@ cpf='-f' if test "$verbose" -gt '1'; then chmodv='-v' -@@ -760,12 +760,10 @@ - - wrapper_opera_plugin_paths=" \"\${HOME}/.opera/plugins\" \\ - ${str_localdirplugin} \\ -- /usr/lib/opera/plugins \\ -- /usr/local/lib/opera/plugins \\ -- /opt/lib/opera/plugins \\" -+ %%LOCALBASE%%/share/opera/plugins \\" - - case "${machine}:${os}" in -- i[3456]86:Linux|x86_64:Linux|i[3456]86:FreeBSD|i[3456]86:NetBSD|i[3456]86:OpenBSD) -+ i[3456]86:Linux|x86_64:Linux|i[3456]86:FreeBSD|amd64:FreeBSD|i[3456]86:NetBSD|i[3456]86:OpenBSD) - wrapper_plugin_paths=" - /usr/local/Acrobat[45]/Browsers/intellinux \\ - /usr/lib/Acrobat[45]/Browsers/intellinux \\ -@@ -817,15 +815,10 @@ - ;; - esac - wrapper_netscape_plugin_paths=" -- /usr/lib/RealPlayer8/Plugins \\ -- /usr/lib/realplay/plugins \\ -- /usr/lib/RealPlayer8 \\ -- /usr/lib/realplay \\ -+ %%LOCALBASE%%/lib/RealPlayer8/Plugins \\ -+ %%X11BASE%%/lib/browser_plugins \\ - \"\${HOME}/.netscape/plugins\" \\ -- /opt/netscape/plugins \\ -- /usr/lib/netscape/plugins \\ -- /usr/local/netscape/plugins \\ -- /usr/local/lib/netscape/plugins \\" -+ %%LOCALBASE%%/lib/netscape-linux/plugins \\" - - wrapper_file="${wrapper_dir}/opera" - -@@ -887,39 +880,12 @@ +@@ -873,47 +873,12 @@ if test ! \"\${OPERA_JAVA_DIR}\"; then @@ -56,6 +22,12 @@ + PREFIXES=\"%%LOCALBASE%%\" for SUNJAVA in \\ +- j2re1.4.2_04 \\ +- j2sdk1.4.2_04/jre \\ +- j2re1.4.2_03 \\ +- j2sdk1.4.2_03/jre \\ +- j2re1.4.2_02 \\ +- j2sdk1.4.2_02/jre \\ - j2re1.4.2_01 \\ - j2sdk1.4.2_01/jre \\ - j2re1.4.2 \\ @@ -77,16 +49,18 @@ - jre1.3.1 \\ - j2re1.3 \\ - j2se/1.3/jre \\ +- SunJava2-1.3/jre \\ - java2re \\ jdk1.2.2/jre \\ - jdk1.2/jre \\ - jre \\ +- java \\ + jdk1.3.1/jre \\ + jdk1.4.2/jre \\ ; do for PREFIX in \${PREFIXES}; do if test -f \"\${PREFIX}/\${SUNJAVA}/lib/${wrapper_sunjava_machine}/libjava.so\"; then OPERA_JAVA_DIR=\"\${PREFIX}/\${SUNJAVA}/lib/${wrapper_sunjava_machine}\" && break; fi -@@ -983,11 +949,8 @@ +@@ -962,11 +927,8 @@ # Acrobat Reader for BINDIR in \\ @@ -100,7 +74,7 @@ ; do if test -d \${BINDIR} ; then PATH=\${PATH}:\${BINDIR}; fi done -@@ -1278,36 +1241,13 @@ +@@ -1281,36 +1243,13 @@ if test -z "${OPERADESTDIR}"; then @@ -141,7 +115,7 @@ fi # OPERADESTDIR -@@ -1436,72 +1376,36 @@ +@@ -1439,72 +1378,36 @@ debug_msg 1 "in gnome()" @@ -236,7 +210,7 @@ fi # Add ximian here } -@@ -1512,39 +1416,31 @@ +@@ -1515,39 +1418,31 @@ debug_msg 1 "in kde()" diff -urN /usr/ports/www/opera/pkg-plist opera/pkg-plist --- /usr/ports/www/opera/pkg-plist Thu Aug 5 21:14:52 2004 +++ opera/pkg-plist Wed Dec 15 15:39:29 2004 @@ -18,7 +18,6 @@ %%DATADIR%%/help/glossary.html %%DATADIR%%/help/help.css %%DATADIR%%/help/history.html -%%DATADIR%%/help/hotlist.html %%DATADIR%%/help/index.html %%DATADIR%%/help/input.html %%DATADIR%%/help/keyboard.html @@ -46,6 +45,7 @@ %%DATADIR%%/help/toolbars.html %%DATADIR%%/help/windows.html %%DATADIR%%/hhd.ssr +%%DATADIR%%/html40_entities.dtd %%DATADIR%%/images/background.gif %%DATADIR%%/images/blank.gif %%DATADIR%%/images/drive.gif --- opera.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 14:53:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8148816A4CE; Wed, 15 Dec 2004 14:53:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B53943D48; Wed, 15 Dec 2004 14:53:11 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFErBST024083; Wed, 15 Dec 2004 14:53:11 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFErBZZ024079; Wed, 15 Dec 2004 14:53:11 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 14:53:11 GMT From: Volker Stolz Message-Id: <200412151453.iBFErBZZ024079@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/74286: [patch] multimedia/win32-codecs doesn't install when not root X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 14:53:11 -0000 Synopsis: [patch] multimedia/win32-codecs doesn't install when not root Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: vs Responsible-Changed-When: Wed Dec 15 14:52:13 GMT 2004 Responsible-Changed-Why: Make edwin track his own PRs :) http://www.freebsd.org/cgi/query-pr.cgi?pr=74286 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:03:45 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EC2816A4CE; Wed, 15 Dec 2004 15:03:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ED9743D4C; Wed, 15 Dec 2004 15:03:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFF3jBu024495; Wed, 15 Dec 2004 15:03:45 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFF3i3m024491; Wed, 15 Dec 2004 15:03:44 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 15:03:44 GMT From: Volker Stolz Message-Id: <200412151503.iBFF3i3m024491@freefall.freebsd.org> To: afabian@austin.rr.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74220: ghostscript-afpl missing a dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:03:45 -0000 Synopsis: ghostscript-afpl missing a dependency State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 15:01:20 GMT 2004 State-Changed-Why: This is a deficiency of the build-infrastructure, but I think we can rest this case. Please get back to us if you can reproduce this behaviour! http://www.freebsd.org/cgi/query-pr.cgi?pr=74220 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:11:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB0E016A4CE; Wed, 15 Dec 2004 15:11:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2E9A43D31; Wed, 15 Dec 2004 15:11:26 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFBQ1L028673; Wed, 15 Dec 2004 15:11:26 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFBQNR028668; Wed, 15 Dec 2004 15:11:26 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:11:26 GMT From: Kirill Ponomarew Message-Id: <200412151511.iBFFBQNR028668@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75106: Update port: biology/gperiodic to 2.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:11:26 -0000 Synopsis: Update port: biology/gperiodic to 2.0.8 State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Wed Dec 15 15:10:39 GMT 2004 State-Changed-Why: Asked for feedback since it fails to install in clean enviroment and with prefix != ${LOCALBASE} http://www.freebsd.org/cgi/query-pr.cgi?pr=75106 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:13:13 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8923216A4EB; Wed, 15 Dec 2004 15:13:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10CFC43D41; Wed, 15 Dec 2004 15:13:13 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFDC5B028808; Wed, 15 Dec 2004 15:13:12 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFDCil028804; Wed, 15 Dec 2004 15:13:12 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:13:12 GMT From: Kirill Ponomarew Message-Id: <200412151513.iBFFDCil028804@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75107: Update port: deskutils/kdissert to 0.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:13:13 -0000 Synopsis: Update port: deskutils/kdissert to 0.3.1 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:13:08 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75107 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:14:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF36516A4CF; Wed, 15 Dec 2004 15:14:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 979F643D5E; Wed, 15 Dec 2004 15:14:32 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFEWL9028900; Wed, 15 Dec 2004 15:14:32 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFEWG1028896; Wed, 15 Dec 2004 15:14:32 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:14:32 GMT From: Kirill Ponomarew Message-Id: <200412151514.iBFFEWG1028896@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75108: Update port: devel/cvsd to 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:14:32 -0000 Synopsis: Update port: devel/cvsd to 1.0.4 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:14:28 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75108 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:18:04 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8520516A4CF; Wed, 15 Dec 2004 15:18:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D10B43D2F; Wed, 15 Dec 2004 15:18:04 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFI4gd029003; Wed, 15 Dec 2004 15:18:04 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFI4x1028999; Wed, 15 Dec 2004 15:18:04 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:18:04 GMT From: Kirill Ponomarew Message-Id: <200412151518.iBFFI4x1028999@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75109: Update port: devel/cweb to 3.64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:18:04 -0000 Synopsis: Update port: devel/cweb to 3.64 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:18:00 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75109 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:20:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DE1D16A4CE for ; Wed, 15 Dec 2004 15:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E8EA43D4C for ; Wed, 15 Dec 2004 15:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFKJIn029069 for ; Wed, 15 Dec 2004 15:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFKJl0029068; Wed, 15 Dec 2004 15:20:19 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 15:20:19 GMT Resent-Message-Id: <200412151520.iBFFKJl0029068@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, "J.R. Oldroyd" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D909216A4CE for ; Wed, 15 Dec 2004 15:19:17 +0000 (GMT) Received: from smtp.vzavenue.net (smtp.vzavenue.net [66.171.59.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C1CF43D5F for ; Wed, 15 Dec 2004 15:19:17 +0000 (GMT) (envelope-from jr@opal.com) Received: from linwhf.opal.com (126.79.171.66.subscriber.vzavenue.net [66.171.79.126]) by smtp.vzavenue.net (MOS 3.4.3-CR) with ESMTP id BNM07370; Wed, 15 Dec 2004 10:18:11 -0500 (EST) Received: from linwhf.opal.com (localhost [127.0.0.1]) by linwhf.opal.com (8.13.1/8.13.1) with ESMTP id iBFFIAdN028417 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Wed, 15 Dec 2004 10:18:10 -0500 (EST) (envelope-from jr@linwhf.opal.com) Received: (from jr@localhost) by linwhf.opal.com (8.13.1/8.13.1/Submit) id iBFFIA1u028416; Wed, 15 Dec 2004 10:18:10 -0500 (EST) (envelope-from jr) Message-Id: <200412151518.iBFFIA1u028416@linwhf.opal.com> Date: Wed, 15 Dec 2004 10:18:10 -0500 (EST) From: "J.R. Oldroyd" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75117: update port: net/boinc-client - Makefile/plist correction for when package is used X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "J.R. Oldroyd" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:20:20 -0000 >Number: 75117 >Category: ports >Synopsis: update port: net/boinc-client - Makefile/plist correction for when package is used >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 Dec 15 15:20:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: J.R. Oldroyd >Release: FreeBSD 6.0-CURRENT i386 >Organization: >Environment: System: FreeBSD linwhf.opal.com 6.0-CURRENT FreeBSD 6.0-CURRENT #67: Fri Oct 8 14:11:54 EDT 2004 jr@linwhf.opal.com:/usr/src-current/sys/i386/compile/LINWHF i386 >Description: Correction to the Makefile and pkg-plist to ensure proper creation and removal of the ${PREFIX}/boinc/projects directory when port is installed from a pre-compiled package. >How-To-Repeat: >Fix: diff -ruN /usr/ports/net/boinc-client/Makefile net/boinc-client/Makefile --- /usr/ports/net/boinc-client/Makefile Wed Dec 15 09:54:11 2004 +++ net/boinc-client/Makefile Wed Dec 15 09:59:44 2004 @@ -7,7 +7,7 @@ PORTNAME= boinc-client PORTVERSION= 4.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://boinc.berkeley.edu/source/nightly/ DISTNAME= boinc_public-cvs-2004-10-14 @@ -62,7 +62,7 @@ -e "s:%%BOINC_GROUP%%:${BOINC_GROUP}:g" \ < ${FILESDIR}/boinc-client.1 > ${WRKDIR}/boinc-client.1; \ ${SED} -e "s:%%BOINC_BINARY%%:$$BBIN:g" \ - -e "s:%%BOINC_DATADIR%%:${PREFIX}/boinc:g" \ + -e "s:%%BOINC_DATADIR%%:${BOINC_DATADIR}:g" \ -e "s:%%BOINC_HOME%%:${BOINC_HOME}:g" \ -e "s:%%BOINC_USER%%:${BOINC_USER}:g" \ -e "s:%%BOINC_GROUP%%:${BOINC_GROUP}:g" \ diff -ruN /usr/ports/net/boinc-client/pkg-plist net/boinc-client/pkg-plist --- /usr/ports/net/boinc-client/pkg-plist Thu Oct 14 09:43:46 2004 +++ net/boinc-client/pkg-plist Tue Dec 14 17:23:29 2004 @@ -1,3 +1,4 @@ +@exec mkdir -p boinc/projects bin/boinc-client boinc/client/%%BOINC_BINARY%% etc/rc.d/boinc.sh >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:21:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 030D516A528; Wed, 15 Dec 2004 15:21:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD56843D1D; Wed, 15 Dec 2004 15:21:58 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFLwOn029246; Wed, 15 Dec 2004 15:21:58 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFLwG8029242; Wed, 15 Dec 2004 15:21:58 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:21:58 GMT From: Kirill Ponomarew Message-Id: <200412151521.iBFFLwG8029242@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75110: Update port: editors/cooledit to 3.17.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:21:59 -0000 Synopsis: Update port: editors/cooledit to 3.17.14 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:21:54 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75110 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:24:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCBB516A4CF; Wed, 15 Dec 2004 15:24:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B69A343D55; Wed, 15 Dec 2004 15:24:33 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFOXDp029451; Wed, 15 Dec 2004 15:24:33 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFOXvH029447; Wed, 15 Dec 2004 15:24:33 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:24:33 GMT From: Kirill Ponomarew Message-Id: <200412151524.iBFFOXvH029447@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75111: Update port: editors/ved to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:24:34 -0000 Synopsis: Update port: editors/ved to 1.7 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:24:29 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75111 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:27:06 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E653616A4CE; Wed, 15 Dec 2004 15:27:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDE2D43D45; Wed, 15 Dec 2004 15:27:05 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFR5dF029558; Wed, 15 Dec 2004 15:27:05 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFR5Xf029554; Wed, 15 Dec 2004 15:27:05 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:27:05 GMT From: Kirill Ponomarew Message-Id: <200412151527.iBFFR5Xf029554@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75112: Update port: finance/qhacc to 3.2.3a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:27:06 -0000 Synopsis: Update port: finance/qhacc to 3.2.3a State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Wed Dec 15 15:25:59 GMT 2004 State-Changed-Why: It's pretty artificial hack, do you know what exactly was changed and/or why tarball was rerolled ? The same for finance/khacc http://www.freebsd.org/cgi/query-pr.cgi?pr=75112 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:32:08 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F94016A4CE; Wed, 15 Dec 2004 15:32:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D81743D45; Wed, 15 Dec 2004 15:32:08 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFW8kW030694; Wed, 15 Dec 2004 15:32:08 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFW8nB030690; Wed, 15 Dec 2004 15:32:08 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:32:08 GMT From: Kirill Ponomarew Message-Id: <200412151532.iBFFW8nB030690@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75113: Update port: games/qgo to 1.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:32:08 -0000 Synopsis: Update port: games/qgo to 1.0.0 State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Wed Dec 15 15:31:36 GMT 2004 State-Changed-Why: Doesn't build on 6.x: cc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/X11R6/include -DQT_THREAD_SUPPORT -I/usr/local/include -I/var/tmp/ttt/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE -fno-strict-aliasing -pipe -c `test -f 'wavfile.c' || echo './'`wavfile.c wavfile.c:160: error: conflicting types for '_v_erf' wavfile.c:154: error: previous implicit declaration of '_v_erf' was here http://www.freebsd.org/cgi/query-pr.cgi?pr=75113 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:34:51 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E17F16A4CE; Wed, 15 Dec 2004 15:34:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7792743D3F; Wed, 15 Dec 2004 15:34:51 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFYpjV030866; Wed, 15 Dec 2004 15:34:51 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFYpLc030862; Wed, 15 Dec 2004 15:34:51 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 15:34:51 GMT From: Sergey Matveychuk Message-Id: <200412151534.iBFFYpLc030862@freefall.freebsd.org> To: flz@xbsd.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74513: net/smbldap-tools - Update port to version 0.8.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:34:51 -0000 Synopsis: net/smbldap-tools - Update port to version 0.8.5.3 State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Wed Dec 15 15:34:27 GMT 2004 State-Changed-Why: Ask submitter for feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=74513 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:38:34 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C73FB16A4CE; Wed, 15 Dec 2004 15:38:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98EC043D31; Wed, 15 Dec 2004 15:38:34 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFcYkV030953; Wed, 15 Dec 2004 15:38:34 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFcYmA030949; Wed, 15 Dec 2004 15:38:34 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:38:34 GMT From: Kirill Ponomarew Message-Id: <200412151538.iBFFcYmA030949@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75114: Update port: misc/gtktalog X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:38:34 -0000 Synopsis: Update port: misc/gtktalog State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:38:17 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75114 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A5A916A4CE for ; Wed, 15 Dec 2004 15:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA83243D5D for ; Wed, 15 Dec 2004 15:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFeOe2031050 for ; Wed, 15 Dec 2004 15:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFeOhG031049; Wed, 15 Dec 2004 15:40:24 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 15:40:24 GMT Message-Id: <200412151540.iBFFeOhG031049@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/74513: net/smbldap-tools - Update port to version 0.8.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:40:25 -0000 The following reply was made to PR ports/74513; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, flz@xbsd.org Cc: Subject: Re: ports/74513: net/smbldap-tools - Update port to version 0.8.5.3 Date: Wed, 15 Dec 2004 18:34:00 +0300 I can't to apply the last patch: Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |diff -ruN smbldap-tools.old/Makefile smbldap-tools/Makefile |--- smbldap-tools.old/Makefile Wed Nov 24 05:20:28 2004 |+++ smbldap-tools/Makefile Mon Nov 29 15:18:10 2004 -------------------------- Patching file Makefile using Plan A... Hunk #1 failed at 6. Hunk #2 failed at 19. Hunk #3 failed at 38. etc. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:42:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 980F216A4CE; Wed, 15 Dec 2004 15:42:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7048B43D2F; Wed, 15 Dec 2004 15:42:14 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFgEoi031186; Wed, 15 Dec 2004 15:42:14 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFgEDO031182; Wed, 15 Dec 2004 15:42:14 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 15:42:14 GMT From: Kirill Ponomarew Message-Id: <200412151542.iBFFgEDO031182@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75115: Update port: print/typetools to 2.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:42:14 -0000 Synopsis: Update port: print/typetools to 2.16 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 15:42:10 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75115 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:46:08 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B75016A4CE; Wed, 15 Dec 2004 15:46:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2220043D62; Wed, 15 Dec 2004 15:46:08 +0000 (GMT) (envelope-from petef@FreeBSD.org) Received: from freefall.freebsd.org (petef@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFk8Wh031377; Wed, 15 Dec 2004 15:46:08 GMT (envelope-from petef@freefall.freebsd.org) Received: (from petef@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFk7NU031373; Wed, 15 Dec 2004 09:46:07 -0600 (CST) (envelope-from petef) Date: Wed, 15 Dec 2004 09:46:07 -0600 (CST) From: Pete Fritchman Message-Id: <200412151546.iBFFk7NU031373@freefall.freebsd.org> To: petef@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, petef@FreeBSD.org Subject: Re: ports/75104: [PATCH] devel/cscope: security fix CAN-2004-0996 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:46:08 -0000 Synopsis: [PATCH] devel/cscope: security fix CAN-2004-0996 Responsible-Changed-From-To: freebsd-ports-bugs->petef Responsible-Changed-By: petef Responsible-Changed-When: Wed Dec 15 09:46:07 CST 2004 Responsible-Changed-Why: my port. http://www.freebsd.org/cgi/query-pr.cgi?pr=75104 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:50:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F356616A4CE for ; Wed, 15 Dec 2004 15:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC4DD43D4C for ; Wed, 15 Dec 2004 15:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFoQSK031707 for ; Wed, 15 Dec 2004 15:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFoQ8I031706; Wed, 15 Dec 2004 15:50:26 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 15:50:26 GMT Message-Id: <200412151550.iBFFoQ8I031706@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Martin Cracauer Subject: Re: ports/74785: rdate in ports doesn't work with amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Martin Cracauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:50:27 -0000 The following reply was made to PR ports/74785; it has been noted by GNATS. From: Martin Cracauer To: Volker Stolz Cc: freebsd-gnats-submit@freebsd.org, pan@cnpm.embrapa.br, cracauer@cons.org Subject: Re: ports/74785: rdate in ports doesn't work with amd64 Date: Wed, 15 Dec 2004 10:45:38 -0500 I have it. Obviously you can't just accept the short read, you need a conversion. Just to be sure, we are not in a codefreeze or so, I can commit to the ports tree? Martin Volker Stolz wrote on Thu, Dec 09, 2004 at 09:48:56AM +0100: > Dear maintainer, please look into this issue! > > Volker -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ No warranty. This email is probably produced by one of my cats stepping on the keys. No, I don't have an infinite number of cats. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 15:59:07 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9C0516A4CE; Wed, 15 Dec 2004 15:59:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A35B243D39; Wed, 15 Dec 2004 15:59:07 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFFx7iP032032; Wed, 15 Dec 2004 15:59:07 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFFx7nc032028; Wed, 15 Dec 2004 15:59:07 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 15:59:07 GMT From: Volker Stolz Message-Id: <200412151559.iBFFx7nc032028@freefall.freebsd.org> To: yasi@yasi.to, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74065: [ports UPDATE] www/zope-placelesstranslationservice from 1.0r7 to 1.0r8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:59:07 -0000 Synopsis: [ports UPDATE] www/zope-placelesstranslationservice from 1.0r7 to 1.0r8 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 15:58:36 GMT 2004 State-Changed-Why: Maintainer was cc:ed, waiting for feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=74065 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 16:00:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E90E316A4CE for ; Wed, 15 Dec 2004 16:00:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D4C043D39 for ; Wed, 15 Dec 2004 16:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFG0k3v032149 for ; Wed, 15 Dec 2004 16:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFG0kn6032145; Wed, 15 Dec 2004 16:00:46 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 16:00:46 GMT Resent-Message-Id: <200412151600.iBFG0kn6032145@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, Stefan Walter Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9635D16A4CE for ; Wed, 15 Dec 2004 15:55:23 +0000 (GMT) Received: from mail.onlinefix.de (mail2-out.titan-networks.de [217.140.72.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7E3F43D46 for ; Wed, 15 Dec 2004 15:55:21 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from kyuzo.dunkelkammer.void ([217.140.77.242]) (authenticated bits=0)iBFFtJl7030962 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Wed, 15 Dec 2004 16:55:20 +0100 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id D066E3A1B; Wed, 15 Dec 2004 16:55:18 +0100 (CET) Message-Id: <20041215155518.D066E3A1B@kyuzo.dunkelkammer.void> Date: Wed, 15 Dec 2004 16:55:18 +0100 (CET) From: Stefan Walter To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75119: [MAINTAINER] graphics/cal3d: fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 16:00:47 -0000 >Number: 75119 >Category: ports >Synopsis: [MAINTAINER] graphics/cal3d: fix plist >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 Dec 15 16:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Stefan Walter >Release: FreeBSD 5.3-STABLE i386 >Organization: Infinity Approximation Task Force >Environment: System: FreeBSD kyuzo.dunkelkammer.void 5.3-STABLE FreeBSD 5.3-STABLE #0: Fri Dec 3 13:46:07 CET >Description: Add missing directory entry to plist. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- cal3d-0.9.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/cal3d.old/pkg-plist /usr/ports/graphics/cal3d/pkg-plist --- /usr/ports/graphics/cal3d.old/pkg-plist Wed Dec 15 16:45:38 2004 +++ /usr/ports/graphics/cal3d/pkg-plist Wed Dec 15 16:47:00 2004 @@ -43,3 +43,4 @@ lib/libcal3d.la lib/libcal3d.so libdata/pkgconfig/cal3d.pc +@dirrm libdata/pkgconfig --- cal3d-0.9.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 16:15:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFB1A16A4D2; Wed, 15 Dec 2004 16:15:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B963743D1F; Wed, 15 Dec 2004 16:15:37 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFGFbJI036836; Wed, 15 Dec 2004 16:15:37 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFGFb6g036832; Wed, 15 Dec 2004 16:15:37 GMT (envelope-from krion) Date: Wed, 15 Dec 2004 16:15:37 GMT From: Kirill Ponomarew Message-Id: <200412151615.iBFGFb6g036832@freefall.freebsd.org> To: tkato432@yahoo.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75112: Update port: finance/qhacc to 3.2.3a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 16:15:38 -0000 Synopsis: Update port: finance/qhacc to 3.2.3a State-Changed-From-To: feedback->closed State-Changed-By: krion State-Changed-When: Wed Dec 15 16:15:33 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75112 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:15:54 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3A9416A4CF; Wed, 15 Dec 2004 17:15:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBCC43D55; Wed, 15 Dec 2004 17:15:54 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHFsiQ044528; Wed, 15 Dec 2004 17:15:54 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHFsAk044523; Wed, 15 Dec 2004 17:15:54 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 17:15:54 GMT From: Volker Stolz Message-Id: <200412151715.iBFHFsAk044523@freefall.freebsd.org> To: der_julian@web.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72264: Port fix: x11-toolkits/wmapp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:15:54 -0000 Synopsis: Port fix: x11-toolkits/wmapp State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Dec 15 17:15:45 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=72264 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:16:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36F5D16A4CE for ; Wed, 15 Dec 2004 17:16:59 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5CF743D1D for ; Wed, 15 Dec 2004 17:16:58 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id EF8B6148F4; Wed, 15 Dec 2004 11:16:57 -0600 (CST) Date: Wed, 15 Dec 2004 11:16:57 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: Martin Cracauer In-Reply-To: <200412151550.iBFFoQ8I031706@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74785: rdate in ports doesn't work with amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:16:59 -0000 On Wed, 15 Dec 2004, Martin Cracauer wrote: > Just to be sure, we are not in a codefreeze or so, I can commit to the > ports tree? src and ports live in two different repositories, each with its own set of rules. ports is not frozen even though the RELENG_4 branch in src is frozen. See http://www.freebsd.org/releng/index.html#freeze (although it seems not to reflect the RELENG_4 freeze.) mcl From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:17:07 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7403E16A4D3; Wed, 15 Dec 2004 17:17:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3375C43D5E; Wed, 15 Dec 2004 17:17:07 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHH7hS044622; Wed, 15 Dec 2004 17:17:07 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHH6dk044618; Wed, 15 Dec 2004 17:17:06 GMT (envelope-from vs) Date: Wed, 15 Dec 2004 17:17:06 GMT From: Volker Stolz Message-Id: <200412151717.iBFHH6dk044618@freefall.freebsd.org> To: send-pr@jrssystems.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72144: patch to www/http_get adds forced host addressing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:17:07 -0000 Synopsis: patch to www/http_get adds forced host addressing State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Dec 15 17:16:50 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=72144 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:20:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66F8B16A4CE for ; Wed, 15 Dec 2004 17:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DA7543D45 for ; Wed, 15 Dec 2004 17:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHKRhP044795 for ; Wed, 15 Dec 2004 17:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHKRws044794; Wed, 15 Dec 2004 17:20:27 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 17:20:27 GMT Message-Id: <200412151720.iBFHKRws044794@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/72144: patch to www/http_get adds forced host addressing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:20:27 -0000 The following reply was made to PR ports/72144; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, send-pr@jrssystems.net, az_mail@gmx.at Cc: Subject: Re: ports/72144: patch to www/http_get adds forced host addressing Date: Wed, 15 Dec 2004 18:16:39 +0100 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:22:07 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36B4A16A4CE; Wed, 15 Dec 2004 17:22:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFA3C43D48; Wed, 15 Dec 2004 17:22:04 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHM4h6045261; Wed, 15 Dec 2004 17:22:04 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHM4ks045257; Wed, 15 Dec 2004 17:22:04 GMT (envelope-from sem) Date: Wed, 15 Dec 2004 17:22:04 GMT From: Sergey Matveychuk Message-Id: <200412151722.iBFHM4ks045257@freefall.freebsd.org> To: valenok@gmail.com, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75102: New port: www/shttpd (simple http server) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:22:07 -0000 Synopsis: New port: www/shttpd (simple http server) State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Wed Dec 15 17:21:51 GMT 2004 State-Changed-Why: New port added, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75102 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:35:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B70916A4CE; Wed, 15 Dec 2004 17:35:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E67243D5C; Wed, 15 Dec 2004 17:35:11 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from freefall.freebsd.org (cracauer@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHZBKY046610; Wed, 15 Dec 2004 17:35:11 GMT (envelope-from cracauer@freefall.freebsd.org) Received: (from cracauer@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHZ7eV046604; Wed, 15 Dec 2004 12:35:07 -0500 (EST) (envelope-from cracauer) Date: Wed, 15 Dec 2004 12:35:07 -0500 (EST) From: Martin Cracauer Message-Id: <200412151735.iBFHZ7eV046604@freefall.freebsd.org> To: pan@cnpm.embrapa.br, cracauer@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74785: rdate in ports doesn't work with amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:35:11 -0000 Synopsis: rdate in ports doesn't work with amd64 State-Changed-From-To: feedback->closed State-Changed-By: cracauer State-Changed-When: Wed Dec 15 12:34:27 EST 2004 State-Changed-Why: Fixed by updating to rdate-1.1. (Created that version for AMD64). http://www.freebsd.org/cgi/query-pr.cgi?pr=74785 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:35:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 094EF16A4CF; Wed, 15 Dec 2004 17:35:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED1E443D48; Wed, 15 Dec 2004 17:35:51 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHZpbB046634; Wed, 15 Dec 2004 17:35:51 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHZpZK046630; Wed, 15 Dec 2004 17:35:51 GMT (envelope-from glewis) Date: Wed, 15 Dec 2004 17:35:51 GMT From: Greg Lewis Message-Id: <200412151735.iBFHZpZK046630@freefall.freebsd.org> To: sw@gegenunendlich.de, glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75119: [MAINTAINER] graphics/cal3d: fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:35:52 -0000 Synopsis: [MAINTAINER] graphics/cal3d: fix plist State-Changed-From-To: open->feedback State-Changed-By: glewis State-Changed-When: Wed Dec 15 17:30:58 GMT 2004 State-Changed-Why: This patch appears to be incorrect. The libdata/pkgconfig directory is used by a lot of ports, so assuming you can unequivocally remove it is incorrect and yields an error such as: pkg_delete: unable to completely remove directory '/usr/local/libdata/pkgconfig' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) when applied. A better patch would be to rely on pkgconfig which creates and deletes this directory. E.g. add USE_GNOME= pkgconfig to the Makefile. What do you think? http://www.freebsd.org/cgi/query-pr.cgi?pr=75119 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 17:47:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C7C816A4CE; Wed, 15 Dec 2004 17:47:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55AAC43D1D; Wed, 15 Dec 2004 17:47:11 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFHlBqw046993; Wed, 15 Dec 2004 17:47:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFHlBYt046989; Wed, 15 Dec 2004 17:47:11 GMT (envelope-from linimon) Date: Wed, 15 Dec 2004 17:47:11 GMT From: Mark Linimon Message-Id: <200412151747.iBFHlBYt046989@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/75097: Noatun 2.6.1 doesn't play streams (multimedia/kdemultimedia 3.3.2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 17:47:11 -0000 Old Synopsis: Noatun 2.6.1 doesn't play streams (kdemultimedia 3.3.2) New Synopsis: Noatun 2.6.1 doesn't play streams (multimedia/kdemultimedia 3.3.2) Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: linimon Responsible-Changed-When: Wed Dec 15 17:44:59 GMT 2004 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=75097 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 18:19:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9168116A4CE; Wed, 15 Dec 2004 18:19:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58D4243D1D; Wed, 15 Dec 2004 18:19:59 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFIJxIr051947; Wed, 15 Dec 2004 18:19:59 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFIJxnC051943; Wed, 15 Dec 2004 18:19:59 GMT (envelope-from arved) Date: Wed, 15 Dec 2004 18:19:59 GMT From: Tilman Linneweh Message-Id: <200412151819.iBFIJxnC051943@freefall.freebsd.org> To: send-pr@jrssystems.net, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72144: patch to www/http_get adds forced host addressing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 18:19:59 -0000 Synopsis: patch to www/http_get adds forced host addressing State-Changed-From-To: feedback->closed State-Changed-By: arved State-Changed-When: Wed Dec 15 18:18:02 GMT 2004 State-Changed-Why: Committed, thanks. Please use unified diff format in future and try not to reverse your patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=72144 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 18:30:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1110B16A4CE for ; Wed, 15 Dec 2004 18:30:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D993E43D31 for ; Wed, 15 Dec 2004 18:30:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFIUVlD052790 for ; Wed, 15 Dec 2004 18:30:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFIUVdR052789; Wed, 15 Dec 2004 18:30:31 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 18:30:31 GMT Message-Id: <200412151830.iBFIUVdR052789@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marcus Grando Subject: Re: ports/74858: Update mail/postfix to support TLS+SPF and solve pipe problem (getopt()) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcus Grando List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 18:30:32 -0000 The following reply was made to PR ports/74858; it has been noted by GNATS. From: Marcus Grando To: freebsd-gnats-submit@FreeBSD.org, vivek@khera.org, vs@freebsd.org Cc: Subject: Re: ports/74858: Update mail/postfix to support TLS+SPF and solve pipe problem (getopt()) Date: Wed, 15 Dec 2004 16:26:08 -0200 Please, test pipe in your postfix with spf patch + libspf. pipe don't work with spf patch, because have problem with getopt() (libspf). Regards -- Marcus Grando Grupos Internet S/A marcus(at)corp.grupos.com.br From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 18:50:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34DC316A4CE for ; Wed, 15 Dec 2004 18:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0843943D2D for ; Wed, 15 Dec 2004 18:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFIoOFv054263 for ; Wed, 15 Dec 2004 18:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFIoOif054262; Wed, 15 Dec 2004 18:50:24 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 18:50:24 GMT Resent-Message-Id: <200412151850.iBFIoOif054262@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F33816A4CE for ; Wed, 15 Dec 2004 18:41:07 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A5E743D3F for ; Wed, 15 Dec 2004 18:41:03 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBFIf1ZO094201 for ; Wed, 15 Dec 2004 16:41:01 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBFIf0Tu094200; Wed, 15 Dec 2004 16:41:00 -0200 (BRST) Message-Id: <200412151841.iBFIf0Tu094200@digitalsign.com> Date: Wed, 15 Dec 2004 16:41:00 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75123: New port: devel/pear-HTML_QuickForm_SelectFilter Element for PEAR::HTML_QuickForm that defines dynamic filters X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 18:50:25 -0000 >Number: 75123 >Category: ports >Synopsis: New port: devel/pear-HTML_QuickForm_SelectFilter Element for PEAR::HTML_QuickForm that defines dynamic filters >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 Dec 15 18:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: New port: devel/pear-HTML_QuickForm_SelectFilter Element for PEAR::HTML_QuickForm that defines dynamic filters The PEAR::HTML_QuickForm_SelectFilter package adds an element to the PEAR::HTML_QuickForm package that is used to define dynamic filters on the client side for select elements. >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: # # pear-HTML_QuickForm_SelectFilter # pear-HTML_QuickForm_SelectFilter/distinfo # pear-HTML_QuickForm_SelectFilter/pkg-descr # pear-HTML_QuickForm_SelectFilter/Makefile # echo c - pear-HTML_QuickForm_SelectFilter mkdir -p pear-HTML_QuickForm_SelectFilter > /dev/null 2>&1 echo x - pear-HTML_QuickForm_SelectFilter/distinfo sed 's/^X//' >pear-HTML_QuickForm_SelectFilter/distinfo << 'END-of-pear-HTML_QuickForm_SelectFilter/distinfo' XMD5 (PEAR/HTML_QuickForm_SelectFilter-1.0.0RC1.tgz) = 06860491c616e3f418d1b033145af446 XSIZE (PEAR/HTML_QuickForm_SelectFilter-1.0.0RC1.tgz) = 2436 END-of-pear-HTML_QuickForm_SelectFilter/distinfo echo x - pear-HTML_QuickForm_SelectFilter/pkg-descr sed 's/^X//' >pear-HTML_QuickForm_SelectFilter/pkg-descr << 'END-of-pear-HTML_QuickForm_SelectFilter/pkg-descr' XThe PEAR::HTML_QuickForm_SelectFilter package adds an element to the XPEAR::HTML_QuickForm package that is used to define dynamic filters on Xthe client side for select elements. X XWWW: http://pear.php.net/package/HTML_QuickForm_SelectFilter/ END-of-pear-HTML_QuickForm_SelectFilter/pkg-descr echo x - pear-HTML_QuickForm_SelectFilter/Makefile sed 's/^X//' >pear-HTML_QuickForm_SelectFilter/Makefile << 'END-of-pear-HTML_QuickForm_SelectFilter/Makefile' X# Ports collection makefile for: pear-HTML_QuickForm_SelectFilter X# Date created: 15 December 2004 X# Whom: Antonio Carlos Venancio Junior () X# X# $FreeBSD$ X# X XPORTNAME= HTML_QuickForm_SelectFilter XPORTVERSION= 1.0.0 XCATEGORIES= devel www pear XDISTNAME= ${PORTNAME}-${PORTVERSION}RC1 X XMAINTAINER= antonio@php.net XCOMMENT= Element for PEAR::HTML_QuickForm that defines dynamic filters X XBUILD_DEPENDS= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm XRUN_DEPENDS= ${BUILD_DEPENDS} X XCATEGORY= HTML/QuickForm XFILES= SelectFilter.php X X.include X.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" X.include END-of-pear-HTML_QuickForm_SelectFilter/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 18:50:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FDA916A4CE for ; Wed, 15 Dec 2004 18:50:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3407443D2D for ; Wed, 15 Dec 2004 18:50:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFIoTPx054297 for ; Wed, 15 Dec 2004 18:50:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFIoTRu054296; Wed, 15 Dec 2004 18:50:29 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 18:50:29 GMT Message-Id: <200412151850.iBFIoTRu054296@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stefan Walter Subject: Re: ports/75119: [MAINTAINER] graphics/cal3d: fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stefan Walter List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 18:50:29 -0000 The following reply was made to PR ports/75119; it has been noted by GNATS. From: Stefan Walter To: Greg Lewis Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/75119: [MAINTAINER] graphics/cal3d: fix plist Date: Wed, 15 Dec 2004 19:45:01 +0100 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, Greg Lewis, 15.12.04, 18:35h CET: > This patch appears to be incorrect. The libdata/pkgconfig directory is > used by a lot of ports, so assuming you can unequivocally remove it is > incorrect and yields an error such as: > > pkg_delete: unable to completely remove directory '/usr/local/libdata/pkgconfig' > pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) > > when applied. Yes, I was aware of that, but it seemed like the best thing to do to me. > A better patch would be to rely on pkgconfig which creates and deletes > this directory. E.g. add > > USE_GNOME= pkgconfig > > to the Makefile. What do you think? I didn't know about this option at all, and I cannot currently test its functionality here because I do not want to deinstall pkgconfig and all the packages that depend on it. ;) Nevertheless it looks reasonable and I assume that you're right, so I've attached a corrected patch. Thanks, Stefan, who needs a larger hard drive to set up a jail and more time for testing ports stuff... --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="cal3d-pkgconfig.patch" diff -ruN cal3d.old/Makefile cal3d/Makefile --- cal3d.old/Makefile Wed Dec 15 19:13:16 2004 +++ cal3d/Makefile Wed Dec 15 19:13:36 2004 @@ -15,6 +15,7 @@ COMMENT= Skeletal based 3d character animation library written in C++ USE_BZIP2= yes +USE_GNOME= pkgconfig USE_AUTOMAKE_VER= 19 USE_AUTOHEADER_VER= 259 USE_LIBTOOL_VER= 15 --2oS5YaxWCcQjTEyO-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 19:00:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7708616A4CF for ; Wed, 15 Dec 2004 19:00:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5927543D31 for ; Wed, 15 Dec 2004 19:00:52 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFJ0qZG054681 for ; Wed, 15 Dec 2004 19:00:52 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFJ0qmO054680; Wed, 15 Dec 2004 19:00:52 GMT (envelope-from gnats) Date: Wed, 15 Dec 2004 19:00:52 GMT Message-Id: <200412151900.iBFJ0qmO054680@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Vivek Khera Subject: Re: ports/74858: Update mail/postfix to support TLS+SPF and solve pipe problem (getopt()) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vivek Khera List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 19:00:52 -0000 The following reply was made to PR ports/74858; it has been noted by GNATS. From: Vivek Khera To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/74858: Update mail/postfix to support TLS+SPF and solve pipe problem (getopt()) Date: Wed, 15 Dec 2004 13:54:50 -0500 On Dec 15, 2004, at 1:26 PM, Marcus Grando wrote: > Please, test pipe in your postfix with spf patch + libspf. > > pipe don't work with spf patch, because have problem with getopt() > (libspf). As covered in the original thread on the postfix mailing list, this is because your local environment is linking the gnugetopt library instead of the base system one. Vivek Khera, Ph.D. +1-301-869-4449 x806 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 19:05:06 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA8CB16A4CE; Wed, 15 Dec 2004 19:05:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADFD143D4C; Wed, 15 Dec 2004 19:05:06 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFJ569s054861; Wed, 15 Dec 2004 19:05:06 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFJ56mK054857; Wed, 15 Dec 2004 19:05:06 GMT (envelope-from glewis) Date: Wed, 15 Dec 2004 19:05:06 GMT From: Greg Lewis Message-Id: <200412151905.iBFJ56mK054857@freefall.freebsd.org> To: sw@gegenunendlich.de, glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75119: [MAINTAINER] graphics/cal3d: fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 19:05:07 -0000 Synopsis: [MAINTAINER] graphics/cal3d: fix plist State-Changed-From-To: feedback->closed State-Changed-By: glewis State-Changed-When: Wed Dec 15 19:04:42 GMT 2004 State-Changed-Why: Thanks for the feedback! I committed the USE_GNOME change. http://www.freebsd.org/cgi/query-pr.cgi?pr=75119 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 19:50:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22F3C16A4CF for ; Wed, 15 Dec 2004 19:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7082D43D5D for ; Wed, 15 Dec 2004 19:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFJoPDs061704 for ; Wed, 15 Dec 2004 19:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFJoPFM061702; Wed, 15 Dec 2004 19:50:25 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 19:50:25 GMT Resent-Message-Id: <200412151950.iBFJoPFM061702@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, John Nielsen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8648916A4CF for ; Wed, 15 Dec 2004 19:43:58 +0000 (GMT) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74A0C43D5A for ; Wed, 15 Dec 2004 19:43:57 +0000 (GMT) (envelope-from john@ns1.jnielsen.net) Received: from ns1.jnielsen.net (ns1 [69.55.238.237]) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id iBFJht6E025399; Wed, 15 Dec 2004 11:43:55 -0800 (PST) (envelope-from john@ns1.jnielsen.net) Received: (from root@localhost) by ns1.jnielsen.net (8.12.9p2/8.12.9/Submit) id iBFJhto0025398; Wed, 15 Dec 2004 11:43:55 -0800 (PST) (envelope-from john) Message-Id: <200412151943.iBFJhto0025398@ns1.jnielsen.net> Date: Wed, 15 Dec 2004 11:43:55 -0800 (PST) From: John Nielsen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: john@jnielsen.net Subject: ports/75125: [MAINTAINER] mail/hotwayd: update to 0.8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 19:50:26 -0000 >Number: 75125 >Category: ports >Synopsis: [MAINTAINER] mail/hotwayd: update to 0.8.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 Dec 15 19:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: John Nielsen >Release: FreeBSD 4.9-RELEASE-p13-jc2 i386 >Organization: >Environment: System: FreeBSD ns1.jnielsen.net 4.9-RELEASE-p13-jc2 FreeBSD 4.9-RELEASE-p13-jc2 #8: Thu Dec 9 00:18:40 PST >Description: - Update to 0.8.2 Added file(s): - files/patch-hotsmtpd-commands_smtp.c Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- hotwayd-0.8.2,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/hotwayd/Makefile /usr/ports/mail/hotwayd82/Makefile --- /usr/ports/mail/hotwayd/Makefile Wed Oct 20 20:09:00 2004 +++ /usr/ports/mail/hotwayd82/Makefile Tue Dec 14 21:40:15 2004 @@ -6,7 +6,7 @@ # PORTNAME= hotwayd -PORTVERSION= 0.7.4 +PORTVERSION= 0.8.2 PORTEPOCH= 1 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} @@ -15,14 +15,16 @@ MAINTAINER= john@jnielsen.net COMMENT= A Hotmail -> POP3 gateway -LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 \ + sasl2.2:${PORTSDIR}/security/cyrus-sasl2 USE_BZIP2= yes GNU_CONFIGURE= yes USE_GMAKE= yes USE_ICONV= yes -MAN1= hotwayd.1 +MAN1= hotwayd.1 \ + hotsmtpd.1 DOC_FILES= AUTHORS COPYING ChangeLog INSTALL NEWS README VERSION DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} diff -ruN --exclude=CVS /usr/ports/mail/hotwayd/distinfo /usr/ports/mail/hotwayd82/distinfo --- /usr/ports/mail/hotwayd/distinfo Wed Oct 20 20:09:00 2004 +++ /usr/ports/mail/hotwayd82/distinfo Tue Dec 14 21:22:22 2004 @@ -1,2 +1,2 @@ -MD5 (hotwayd-0.7.4.tar.bz2) = 55ffa28a319d84b59bfdccf87f9bde90 -SIZE (hotwayd-0.7.4.tar.bz2) = 135826 +MD5 (hotwayd-0.8.2.tar.bz2) = 0d1e3a691c8d5757a6e67b32745ab2cb +SIZE (hotwayd-0.8.2.tar.bz2) = 150424 diff -ruN --exclude=CVS /usr/ports/mail/hotwayd/files/patch-hotsmtpd-commands_smtp.c /usr/ports/mail/hotwayd82/files/patch-hotsmtpd-commands_smtp.c --- /usr/ports/mail/hotwayd/files/patch-hotsmtpd-commands_smtp.c Wed Dec 31 16:00:00 1969 +++ /usr/ports/mail/hotwayd82/files/patch-hotsmtpd-commands_smtp.c Wed Dec 15 11:22:15 2004 @@ -0,0 +1,11 @@ +--- hotsmtpd/commands_smtp.c.orig Sat Dec 11 18:33:17 2004 ++++ hotsmtpd/commands_smtp.c Wed Dec 15 12:21:00 2004 +@@ -199,7 +199,7 @@ + } + + /* Clean up after ourselves */ +- httpmail_destroy(); ++ /*httpmail_destroy();*/ + if (body) + free(body); + } diff -ruN --exclude=CVS /usr/ports/mail/hotwayd/pkg-message /usr/ports/mail/hotwayd82/pkg-message --- /usr/ports/mail/hotwayd/pkg-message Wed Oct 20 20:09:00 2004 +++ /usr/ports/mail/hotwayd82/pkg-message Tue Dec 14 21:38:31 2004 @@ -1,15 +1,18 @@ + ******************** -hotwayd should normally be run from inetd (or xinetd). -To use the standard ports for pop3 and smtp, add lines -like the following to /etc/inetd.conf: +hotwayd and hotsmtpd should normally be run from inetd (or xinetd). +To use the standard ports for pop3 and smtp, add lines like the +following to /etc/inetd.conf: pop3 stream tcp nowait root /usr/local/sbin/hotwayd hotwayd +smtp stream tcp nowait root /usr/local/sbin/hotsmtpd hotsmtpd -Alternatively, you may specify an arbitrary port for hotwayd. -Define them in /etc/services, and then add a line like the following to +Alternatively, you may specify arbitrary ports for hotwayd and hotsmtpd. +Define them in /etc/services, and then add lines like the following to /etc/inetd.conf: hotwayd stream tcp nowait root /usr/local/sbin/hotwayd hotwayd +hotsmtpd stream tcp nowait root /usr/local/sbin/hotsmtpd hotsmtpd After making your changes, restart inetd. e.g.: @@ -20,6 +23,7 @@ address (e.g. example@hotmail.com), and the password is your your password for hotmail (or whichever service you use). -For more detailed information see hotwayd(1) and the port +For more detailed information see hotwayd(1), hotsmtpd(1), and the port documentation in ${PREFIX}/share/doc/hotwayd. ******************** + diff -ruN --exclude=CVS /usr/ports/mail/hotwayd/pkg-plist /usr/ports/mail/hotwayd82/pkg-plist --- /usr/ports/mail/hotwayd/pkg-plist Wed Oct 20 20:09:00 2004 +++ /usr/ports/mail/hotwayd82/pkg-plist Tue Dec 14 21:41:53 2004 @@ -1,4 +1,5 @@ sbin/hotwayd +sbin/hotsmtpd %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/ChangeLog --- hotwayd-0.8.2,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 20:05:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BACB16A4CE; Wed, 15 Dec 2004 20:05:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC20F43D2D; Wed, 15 Dec 2004 20:05:10 +0000 (GMT) (envelope-from sf@FreeBSD.org) Received: from freefall.freebsd.org (sf@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFK5Acu062741; Wed, 15 Dec 2004 20:05:10 GMT (envelope-from sf@freefall.freebsd.org) Received: (from sf@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFK5Axs062736; Wed, 15 Dec 2004 20:05:10 GMT (envelope-from sf) Date: Wed, 15 Dec 2004 20:05:10 GMT From: FUJISHIMA Satsuki Message-Id: <200412152005.iBFK5Axs062736@freefall.freebsd.org> To: sf@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sf@FreeBSD.org Subject: Re: ports/75116: Update www/opera to 7.54u1 (security update) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 20:05:11 -0000 Synopsis: Update www/opera to 7.54u1 (security update) Responsible-Changed-From-To: freebsd-ports-bugs->sf Responsible-Changed-By: sf Responsible-Changed-When: Wed Dec 15 20:04:57 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75116 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 20:20:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B7D716A4F9 for ; Wed, 15 Dec 2004 20:20:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6AE743D2D for ; Wed, 15 Dec 2004 20:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFKKUxU067859 for ; Wed, 15 Dec 2004 20:20:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFKKUJ5067858; Wed, 15 Dec 2004 20:20:30 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 20:20:30 GMT Resent-Message-Id: <200412152020.iBFKKUJ5067858@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8529F16A4CE for ; Wed, 15 Dec 2004 20:12:51 +0000 (GMT) Received: from mail.seceidos.de (mail.seceidos.de [213.157.28.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42C1F43D5C for ; Wed, 15 Dec 2004 20:12:50 +0000 (GMT) root=freebsd-gnats-submit=freebsd.org=7d45f6c3b4adf33f63274392d7377e7a5e58050b@seceidos.de) Message-Id: <200412152012.iBFKCjoH035548@services.intern.seceidos.de> Date: Wed, 15 Dec 2004 21:12:45 +0100 (CET) From: Jan-Peter Koopmann To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75127: [MAINTAINER] mail/MailScanner: update to 4.36.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 20:20:31 -0000 >Number: 75127 >Category: ports >Synopsis: [MAINTAINER] mail/MailScanner: update to 4.36.4 >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 Dec 15 20:20:30 GMT 2004 >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.36.4 Removed file(s): - files/patch-lib:MailScanner:Message.pm ChangeLog: * New Features and Improvements * - Improved URL trimming in phishing net. - Various improvements and fixes in phishing net. - Added support for RedHat Enterprise Linux 4. - Added check for Password-Protected Archives setting when using clamavmodule. - Added support for "fast" parameter to all installation scripts. This reduces all waits to 1 second, greatly speeds installation! - Improved logging when there are too many attachments. - Added message ID to log of phishing attempts. - Added autoupdater for Panda. - Added %variables% to text and HTML report messages, so the email "signature" added to the end of each report is customised centrally from MailScanner.conf. This currently uses %org-long-name% and %web-site%. - Added upgrade_languages_conf script to automate upgrading of the languages.conf file in whatever translation directory you use. * Fixes * - Fixed outstanding problem in bitdefender-autoupdate, so that it works properly on new installations. - Fixed logging problem with phishing net on a few malformed messages. - Removed /var/tmp files from MailScanner-MIME-Base64 rpm build. - Fixed problem in Vexira parser. - Fixed problem where All-Viruses would cause every problem to be silent. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- MailScanner-4.36.4.patch begins here --- diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/Makefile /server-root/ports/mail/mailscanner/Makefile --- /server-root/ports/mail/mailscanner.orig/Makefile Wed Nov 10 11:44:48 2004 +++ /server-root/ports/mail/mailscanner/Makefile Wed Dec 15 21:05:48 2004 @@ -6,7 +6,7 @@ # PORTNAME= MailScanner -PORTVERSION= 4.35.11 +PORTVERSION= 4.36.4 CATEGORIES= mail MASTER_SITES= http://www.sng.ecs.soton.ac.uk/mailscanner/files/4/tar/ DISTNAME= ${PORTNAME}-install-${PORTVERSION}-${PATCHLEVEL} @@ -208,6 +208,18 @@ else \ ${ECHO} "Changes in MailScanner.conf found. Please look at \ ${PREFIX}/etc/MailScanner/MailScanner.conf.new.${PORTVERSION}" ; \ + fi + # Upgrading langauages.conf... Please wait... ATTENTION: English version only! + @${WRKSRC}/bin/upgrade_languages_conf \ + ${DATADIR}/reports/en/languages.conf \ + ${DATADIR}/reports/en/languages.conf.sample > \ + ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} \ + 2> /dev/null + @if diff -b -B -q ${DATADIR}/reports/en/languages.conf \ + ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ + then ${ECHO} "No changes in languages.conf found" ; \ + ${RM} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ + else ${CP} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ${DATADIR}/reports/en/languages.conf ; \ fi .endif @${SED} -e 's,%%PREFIX%%,${PREFIX},' pkg-message > ${PKGMESSAGE} diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/distinfo /server-root/ports/mail/mailscanner/distinfo --- /server-root/ports/mail/mailscanner.orig/distinfo Wed Nov 10 11:44:48 2004 +++ /server-root/ports/mail/mailscanner/distinfo Wed Dec 15 20:28:15 2004 @@ -1,2 +1,2 @@ -MD5 (MailScanner-install-4.35.11-1.tar.gz) = 2ce8d93b6526c33791ad696a7e61cc7d -SIZE (MailScanner-install-4.35.11-1.tar.gz) = 5508189 +MD5 (MailScanner-install-4.36.4-1.tar.gz) = 322f1b5d8f7e5f0f0bbf53046f1d2a20 +SIZE (MailScanner-install-4.36.4-1.tar.gz) = 5622620 diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8 /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8 --- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8 Mon Nov 1 21:10:10 2004 +++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8 Wed Dec 15 20:34:18 2004 @@ -1,8 +1,8 @@ ---- ../MailScanner-install-4.35.9.orig/docs/man/MailScanner.8 Mon Nov 1 18:03:10 2004 -+++ docs/man/MailScanner.8 Mon Nov 1 18:03:23 2004 +--- ../MailScanner-install-4.36.4.orig/docs/man/MailScanner.8 Wed Dec 15 20:31:43 2004 ++++ docs/man/MailScanner.8 Wed Dec 15 20:32:20 2004 @@ -1,4 +1,4 @@ -.TH "MailScanner" "8" "4.34.8" "Julian Field" "Mail" -+.TH "MailScanner" "8" "4.35.9" "Julian Field" "Mail" ++.TH "MailScanner" "8" "4.36.4" "Julian Field" "Mail" .SH "NAME" .LP MailScanner \- Virus/Spam Scanner for Sendmail, Exim and Postfix diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8.html /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8.html --- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8.html Mon Nov 1 21:10:10 2004 +++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8.html Wed Dec 15 20:34:18 2004 @@ -1,5 +1,5 @@ ---- ../MailScanner-install-4.35.9.orig/docs/man/MailScanner.8.html Mon Nov 1 18:03:10 2004 -+++ docs/man/MailScanner.8.html Mon Nov 1 18:03:28 2004 +--- ../MailScanner-install-4.36.4.orig/docs/man/MailScanner.8.html Wed Dec 15 20:31:43 2004 ++++ docs/man/MailScanner.8.html Wed Dec 15 20:32:06 2004 @@ -1,5 +1,5 @@ - diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5 /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5 --- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5 Mon Nov 1 21:10:10 2004 +++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5 Wed Dec 15 20:34:18 2004 @@ -1,8 +1,8 @@ ---- ../MailScanner-install-4.35.9.orig/docs/man/MailScanner.conf.5 Mon Nov 1 18:03:10 2004 -+++ docs/man/MailScanner.conf.5 Mon Nov 1 18:03:31 2004 +--- ../MailScanner-install-4.36.4.orig/docs/man/MailScanner.conf.5 Wed Dec 15 20:31:43 2004 ++++ docs/man/MailScanner.conf.5 Wed Dec 15 20:32:29 2004 @@ -1,4 +1,4 @@ -.TH "MailScanner.conf" "5" "4.34.8" "Julian Field" "Mail" -+.TH "MailScanner.conf" "5" "4.35.9" "Julian Field" "Mail" ++.TH "MailScanner.conf" "5" "4.36.4" "Julian Field" "Mail" .SH "NAME" .LP MailScanner.conf \- Main configuration for MailScanner diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5.html /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5.html --- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5.html Mon Nov 1 21:10:10 2004 +++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5.html Wed Dec 15 20:34:18 2004 @@ -1,5 +1,5 @@ ---- ../MailScanner-install-4.35.9.orig/docs/man/MailScanner.conf.5.html Mon Nov 1 18:03:10 2004 -+++ docs/man/MailScanner.conf.5.html Mon Nov 1 18:03:33 2004 +--- ../MailScanner-install-4.36.4.orig/docs/man/MailScanner.conf.5.html Wed Dec 15 20:31:43 2004 ++++ docs/man/MailScanner.conf.5.html Wed Dec 15 20:32:12 2004 @@ -1,5 +1,5 @@ - diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-lib:MailScanner:Message.pm /server-root/ports/mail/mailscanner/files/patch-lib:MailScanner:Message.pm --- /server-root/ports/mail/mailscanner.orig/files/patch-lib:MailScanner:Message.pm Wed Nov 10 11:44:48 2004 +++ /server-root/ports/mail/mailscanner/files/patch-lib:MailScanner:Message.pm Thu Jan 1 01:00:00 1970 @@ -1,24 +0,0 @@ ---- ../MailScanner-install-4.35.11.orig/lib/MailScanner/Message.pm Wed Nov 10 08:31:01 2004 -+++ lib/MailScanner/Message.pm Wed Nov 10 08:33:19 2004 -@@ -4043,6 +4043,8 @@ - $squashedtext =~ s#%([0-9a-f][0-9a-f])#chr(hex('0x' . $1))#gei; # Unescape - $squashedtext =~ s/\s+//g; # Remove any whitespace - $squashedtext =~ s/\\/\//g; -+ $squashedtext =~ s/(\<\/?[^>]*\>)*//ig; # Remove tags -+ #$squashedtext =~ s/^(\<\/?(br|p|ul)\>)*//ig; # Remove leading br, p, ul tags - #print STDERR "Text = \"$text\"\n"; - #print STDERR "1SquashedText = \"$squashedtext\"\n"; - #print STDERR "1LinkURL = \"$DisarmLinkURL\"\n"; -@@ -4055,9 +4057,11 @@ - $linkurl =~ s/\%a0//g; - $linkurl =~ s#%([0-9a-f][0-9a-f])#chr(hex('0x' . $1))#gei; # Unescape - $linkurl =~ s/\s+//; # Remove any whitespace -+ #$linkurl =~ s/(\<\/?[^>]*\>)*//ig; # Remove tags -+ #$linkurl =~ s/^(\<\/?(br|p|ul)\>)*//ig; # Remove leading br, p, ul tags - $linkurl =~ s/^(https?|ftp):\/\///; - $linkurl =~ s/\/.*$//; # Only compare up to the first '/' (hostname only) -- $linkurl =~ s/\<\/?(br|p)\>$//i; # Remove trailing
and

tags -+ $linkurl =~ s/(\<\/?(br|p|ul)\>)*$//ig; # Remove trailing br, p, ul tags - $linkurl =~ s/\/$//; # LinkURL is trimmed -- note - #print STDERR "2SquashedText = \"$squashedtext\"\n"; - #print STDERR "2LinkURL = \"$linkurl\"\n"; diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/pkg-message /server-root/ports/mail/mailscanner/pkg-message --- /server-root/ports/mail/mailscanner.orig/pkg-message Mon Nov 1 21:10:10 2004 +++ /server-root/ports/mail/mailscanner/pkg-message Wed Dec 15 21:07:36 2004 @@ -31,6 +31,10 @@ to update your virus-wrappers, autoupdates, reports and languages.conf + The english languages.conf is updated automatically. For all + other versions use the update_languages_conf tool found + in the work directory of this port. + Sophos users: Please take a look at the Sophos install script %%PREFIX%%/share/doc/MailScanner/Sophos.install.freebsd diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/pkg-plist /server-root/ports/mail/mailscanner/pkg-plist --- /server-root/ports/mail/mailscanner.orig/pkg-plist Mon Nov 1 21:10:10 2004 +++ /server-root/ports/mail/mailscanner/pkg-plist Wed Dec 15 20:45:42 2004 @@ -80,6 +80,7 @@ libexec/MailScanner/norman-autoupdate.sample libexec/MailScanner/norman-wrapper.sample libexec/MailScanner/panda-wrapper.sample +libexec/MailScanner/panda-autoupdate.sample libexec/MailScanner/rav-autoupdate.sample libexec/MailScanner/rav-wrapper.sample libexec/MailScanner/sophos-autoupdate.sample @@ -524,6 +525,7 @@ %%PORTDOCS%%%%DOCSDIR%%/poweredby.transtec.gif %%PORTDOCS%%%%DOCSDIR%%/phishing.html %%PORTDOCS%%%%DOCSDIR%%/phishing.jpg +%%PORTDOCS%%%%DOCSDIR%%/phishing2.jpg %%PORTDOCS%%%%DOCSDIR%%/pressreleases.html %%PORTDOCS%%%%DOCSDIR%%/presentations.html %%PORTDOCS%%%%DOCSDIR%%/press.html --- MailScanner-4.36.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 20:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50F6216A4CE for ; Wed, 15 Dec 2004 20:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A41443D1F for ; Wed, 15 Dec 2004 20:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFKoMvE070120 for ; Wed, 15 Dec 2004 20:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFKoMkY070119; Wed, 15 Dec 2004 20:50:22 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 20:50:22 GMT Resent-Message-Id: <200412152050.iBFKoMkY070119@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E38F016A4CE for ; Wed, 15 Dec 2004 20:42:33 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5578243D1F for ; Wed, 15 Dec 2004 20:42:33 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84109-84.ip.peterstar.net ([84.204.109.84] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1CefyX-000502-FT for FreeBSD-gnats-submit@freebsd.org; Wed, 15 Dec 2004 21:42:23 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBFKgKvn001852 for ; Wed, 15 Dec 2004 23:42:21 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBFKgK3Y001851; Wed, 15 Dec 2004 23:42:20 +0300 (MSK) (envelope-from igor) Message-Id: <200412152042.iBFKgK3Y001851@doom.homeunix.org> Date: Wed, 15 Dec 2004 23:42:20 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75129: Update port: graphics/ftgl 2.09 -> 2.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 20:50:23 -0000 >Number: 75129 >Category: ports >Synopsis: Update port: graphics/ftgl 2.09 -> 2.12 >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: Wed Dec 15 20:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Update to 2.12. Removed files: files/patch-unix_src_Makefile >How-To-Repeat: >Fix: --- ftgl.diff begins here --- diff -ruN /usr/ports/graphics/ftgl/Makefile ftgl/Makefile --- /usr/ports/graphics/ftgl/Makefile Sun Aug 1 21:22:53 2004 +++ ftgl/Makefile Wed Dec 15 22:08:51 2004 @@ -6,7 +6,7 @@ # PORTNAME= ftgl -PORTVERSION= 2.09 +PORTVERSION= 2.12 CATEGORIES= graphics MASTER_SITES= http://homepages.paradise.net.nz/henryj/code/ DISTNAME= ${PORTNAME}-${PORTVERSION:C/([[:digit:]])$/.\1/} diff -ruN /usr/ports/graphics/ftgl/distinfo ftgl/distinfo --- /usr/ports/graphics/ftgl/distinfo Mon Jun 21 06:21:05 2004 +++ ftgl/distinfo Wed Dec 15 22:07:26 2004 @@ -1,2 +1,2 @@ -MD5 (ftgl-2.0.9.tar.gz) = 2268267277c0655688879d0657b82650 -SIZE (ftgl-2.0.9.tar.gz) = 561543 +MD5 (ftgl-2.1.2.tar.gz) = 3eabec9ad37371c4d139408c7ffd2429 +SIZE (ftgl-2.1.2.tar.gz) = 568497 diff -ruN /usr/ports/graphics/ftgl/files/patch-unix_src_Makefile ftgl/files/patch-unix_src_Makefile --- /usr/ports/graphics/ftgl/files/patch-unix_src_Makefile Sun Jun 20 11:13:50 2004 +++ ftgl/files/patch-unix_src_Makefile Thu Jan 1 03:00:00 1970 @@ -1,13 +0,0 @@ ---- unix/src/Makefile.orig Tue Jun 15 11:39:46 2004 -+++ unix/src/Makefile Tue Jun 15 11:40:03 2004 -@@ -75,8 +75,8 @@ - install-local: libftgl.la - $(INSTALL) -d -m 0755 $(libdir) - $(LIBTOOL) --mode=install $(INSTALL) -m 0644 $(TARGET) $(libdir) -- $(INSTALL) -d -m 0755 $(includedir)/FTGL -- $(INSTALL) -m 0644 $(HEADER_FILES) $(includedir)/FTGL -+ $(INSTALL) -d -m 0755 $(includedir)/FTGL -+ $(INSTALL) -m 0644 $(HEADER_FILES) $(includedir)/FTGL - - - clean-local: --- ftgl.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 20:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8081216A4CF for ; Wed, 15 Dec 2004 20:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D7043D2F for ; Wed, 15 Dec 2004 20:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFKoMgv070106 for ; Wed, 15 Dec 2004 20:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFKoMC2070105; Wed, 15 Dec 2004 20:50:22 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 20:50:22 GMT Resent-Message-Id: <200412152050.iBFKoMC2070105@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6799916A4CE for ; Wed, 15 Dec 2004 20:40:15 +0000 (GMT) Received: from mail.seceidos.de (mail.seceidos.de [213.157.28.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C95043D49 for ; Wed, 15 Dec 2004 20:40:12 +0000 (GMT) root=freebsd-gnats-submit=freebsd.org=7d45f6c3b4adf33f63274392d7377e7a5e58050b@seceidos.de) Message-Id: <200412152039.iBFKdxI5049140@services.intern.seceidos.de> Date: Wed, 15 Dec 2004 21:39:59 +0100 (CET) From: Jan-Peter Koopmann To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75128: [MAINTAINER] mail/MailScanner-devel: update to 4.37.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 20:50:23 -0000 >Number: 75128 >Category: ports >Synopsis: [MAINTAINER] mail/MailScanner-devel: update to 4.37.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: Wed Dec 15 20:50:22 GMT 2004 >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.37.3 Change Log: * New Features and Improvements * - When stripping HTML messages to plain text, the contents of script and style tags are omitted. - Phishing net improved to ignore email addresses. - Now supports split sendmail queues where any incoming mqueue.in directory can have qf, df, xf, tf subdirectories, each containing the appropriate type of file for each message. This will greatly speed operation on big queues as the directories will be less than half the size of a combined queue directory. - New option "Keep Spam And MCP Archive Clean" which forces it to virus scan all spam that is quarantined. Any spam (or MCP messages) found to be virus- infected are removed from the quarantine, so you can safely let your users have access to the spam archive safe in the knowledge that they cannot get any viruses out of it. Note: This feature is disabled by default, as most people won't want the performance hit of all the extra scanning, as they don't their users access to the spam quarantine anyway. - Changed Postfix handling so that "Archive Mail" feature creates files with unique names so that re-used message-ids don't cause overwriting of older files in the same day with the same message-id. * Fixes * - Fixed sendmail and ZMailer problem where subject lines starting with a line-break were not tagged correctly. - Fixed minor problems with multi-line Subject: headers. - Fixed bugs with some MTAs when keeping spam archive clean. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- MailScanner-devel-4.37.3.patch begins here --- diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/Makefile /server-root/ports/mail/mailscanner-devel/Makefile --- /server-root/ports/mail/mailscanner-devel.orig/Makefile Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/Makefile Wed Dec 15 21:32:19 2004 @@ -6,7 +6,7 @@ # PORTNAME= MailScanner -PORTVERSION= 4.35.5 +PORTVERSION= 4.37.3 CATEGORIES= mail MASTER_SITES= http://www.sng.ecs.soton.ac.uk/mailscanner/files/4/tar/ PKGNAMESUFFIX= -devel @@ -71,7 +71,7 @@ rav-wrapper sophos-autoupdate post-extract: - cd ${WRKSRC} && ${TAR} xzf perl-tar/MailScanner-${PORTVERSION}-${PATCHLEVEL}.tar.gz > /dev/null && ${MV} MailScanner-${PORTVERSION}/* . + cd ${WRKSRC} && ${TAR} xvzf perl-tar/MailScanner-${PORTVERSION}-${PATCHLEVEL}.tar.gz > /dev/null && ${MV} MailScanner-${PORTVERSION}/* . do-build: ${PERL} -pi -e \ @@ -209,6 +209,18 @@ else \ ${ECHO} "Changes in MailScanner.conf found. Please look at \ ${PREFIX}/etc/MailScanner/MailScanner.conf.new.${PORTVERSION}" ; \ + fi + # Upgrading langauages.conf... Please wait... ATTENTION: English version only! + @${WRKSRC}/bin/upgrade_languages_conf \ + ${DATADIR}/reports/en/languages.conf \ + ${DATADIR}/reports/en/languages.conf.sample > \ + ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} \ + 2> /dev/null + @if diff -b -B -q ${DATADIR}/reports/en/languages.conf \ + ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ + then ${ECHO} "No changes in languages.conf found" ; \ + ${RM} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ + else ${CP} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ${DATADIR}/reports/en/languages.conf ; \ fi .endif @${SED} -e 's,%%PREFIX%%,${PREFIX},' pkg-message > ${PKGMESSAGE} diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/distinfo /server-root/ports/mail/mailscanner-devel/distinfo --- /server-root/ports/mail/mailscanner-devel.orig/distinfo Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/distinfo Wed Dec 15 21:16:44 2004 @@ -1,2 +1,2 @@ -MD5 (MailScanner-install-4.35.5-1.tar.gz) = 11ee29729d98e315eb3a925cb407251c -SIZE (MailScanner-install-4.35.5-1.tar.gz) = 5266876 +MD5 (MailScanner-install-4.37.3-1.tar.gz) = 27033636c42193a1f9dd3417d1533d16 +SIZE (MailScanner-install-4.37.3-1.tar.gz) = 5628665 diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.8 /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.8 --- /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.8 Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.8 Wed Dec 15 21:30:14 2004 @@ -1,8 +1,8 @@ ---- ../MailScanner-install-4.35.5.orig/docs/man/MailScanner.8 Fri Oct 22 08:13:43 2004 -+++ docs/man/MailScanner.8 Fri Oct 22 08:13:55 2004 +--- ../MailScanner-install-4.37.3.orig/docs/man/MailScanner.8 Wed Dec 15 21:17:17 2004 ++++ docs/man/MailScanner.8 Wed Dec 15 21:29:54 2004 @@ -1,4 +1,4 @@ -.TH "MailScanner" "8" "4.34.8" "Julian Field" "Mail" -+.TH "MailScanner" "8" "4.35.5" "Julian Field" "Mail" ++.TH "MailScanner" "8" "4.37.3" "Julian Field" "Mail" .SH "NAME" .LP MailScanner \- Virus/Spam Scanner for Sendmail, Exim and Postfix diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.8.html /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.8.html --- /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.8.html Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.8.html Wed Dec 15 21:30:14 2004 @@ -1,9 +1,9 @@ ---- ../MailScanner-install-4.35.5.orig/docs/man/MailScanner.8.html Fri Oct 22 08:13:44 2004 -+++ docs/man/MailScanner.8.html Fri Oct 22 08:13:57 2004 +--- ../MailScanner-install-4.37.3.orig/docs/man/MailScanner.8.html Wed Dec 15 21:17:17 2004 ++++ docs/man/MailScanner.8.html Wed Dec 15 21:29:56 2004 @@ -1,5 +1,5 @@ - -+ ++ diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.conf.5 /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.conf.5 --- /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.conf.5 Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.conf.5 Wed Dec 15 21:30:14 2004 @@ -1,8 +1,8 @@ ---- ../MailScanner-install-4.35.5.orig/docs/man/MailScanner.conf.5 Fri Oct 22 08:13:43 2004 -+++ docs/man/MailScanner.conf.5 Fri Oct 22 08:14:01 2004 +--- ../MailScanner-install-4.37.3.orig/docs/man/MailScanner.conf.5 Wed Dec 15 21:17:17 2004 ++++ docs/man/MailScanner.conf.5 Wed Dec 15 21:30:00 2004 @@ -1,4 +1,4 @@ -.TH "MailScanner.conf" "5" "4.34.8" "Julian Field" "Mail" -+.TH "MailScanner.conf" "5" "4.35.5" "Julian Field" "Mail" ++.TH "MailScanner.conf" "5" "4.37.3" "Julian Field" "Mail" .SH "NAME" .LP MailScanner.conf \- Main configuration for MailScanner @@ -15,7 +15,23 @@ .br .br -@@ -1266,12 +1266,11 @@ +@@ -781,6 +781,15 @@ + When an entire message is saved in the quarantine for any reason, do you want to save it as the raw data files out of the mail queue (which can be processed with the df2mbox script, and which is easier to send to its original recipients), or do you want a conventional message file consisting of the header followed by the body of the message. If the previous option is switched off, then this will only affect archived mail and quarantined spam. If the previous option is on, then this also affects quarantined infections. + + .TP ++\fBKeep Spam And MCP Archive Clean\fR ++Default: no ++.br ++ ++.br ++Do you want to stop any virus\-infected spam getting into the spam or MCP archives? If you have a system where users can release messages from the spam or MCP archives, then you probably want to stop them being able to release any infected messages, so set this to yes. It is set to no by default as it causes a small hit in performance, and many people don't allow users to access the spam quarantine, so don't need it. This can also be the filename of a ruleset. ++ ++ ++.TP + \fBLanguage Strings\fR + Default: %reports\-dir%/languages.conf + .br +@@ -1266,12 +1275,11 @@ .TP \fBAttachment Encoding Charset\fR @@ -30,7 +46,7 @@ .SH "Mail archiving and monitoring" .TP \fBArchive Mail\fR -@@ -1725,8 +1724,16 @@ +@@ -1725,8 +1733,16 @@ .br Log all the filenames that are allowed by the Filetype Rules, or just the filetypes that are denied? This can also be the filename of a ruleset. @@ -48,7 +64,7 @@ .TP \fBSpamAssassin User State Dir\fR -@@ -1734,7 +1741,7 @@ +@@ -1734,7 +1750,7 @@ .br .br diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.conf.5.html /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.conf.5.html --- /server-root/ports/mail/mailscanner-devel.orig/files/patch-docs:man:MailScanner.conf.5.html Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/files/patch-docs:man:MailScanner.conf.5.html Wed Dec 15 21:30:14 2004 @@ -1,52 +1,59 @@ ---- ../MailScanner-install-4.35.5.orig/docs/man/MailScanner.conf.5.html Fri Oct 22 08:13:44 2004 -+++ docs/man/MailScanner.conf.5.html Fri Oct 22 08:14:03 2004 +--- ../MailScanner-install-4.37.3.orig/docs/man/MailScanner.conf.5.html Wed Dec 15 21:17:17 2004 ++++ docs/man/MailScanner.conf.5.html Wed Dec 15 21:30:02 2004 @@ -1,5 +1,5 @@ -- -+ +- ++ -@@ -1389,8 +1389,9 @@ - kaspersky−4.5, kavdaemonclient, inoculate, inoculan, - nod32, nod32−1.99, f−secure, f−prot, - panda, rav, antivir, clamav, clamavmodule, css, trend, --norman, avg, vexira, none (no virus scanning at all). This --*cannot* be the filename of a ruleset.

-+norman, avg, vexira, symscanengine, generic, none (no virus -+scanning at all). This *cannot* be the filename of a +@@ -397,4 +397,5767 @@ + + + +-

the name of a fi@ +\ No newline at end of file ++

the name of a file containing a list of directory names, ++which can in turn contain wildcards.

++ ++ ++ ++ ++ ++ ++ ++
++

Example: ++/usr/local/etc/MailScanner/mqueue.in.list.conf

++ ++ ++ ++ ++ ++
++

Outgoing Queue Dir

++ ++ ++ ++ ++ - - -
++

Default: /var/spool/mqueue

++ ++

Directory in which MailScanner should place scanned ++e−mail messages. This can also be the filename of a +ruleset.

- -

Note for McAfee users: Do NOT use any symlinks with - McAfee at all. It is very strange but McAfee may not detect -@@ -3709,13 +3710,11 @@ -

--

Default: us−ascii

-+

Default: ISO−8859−1

- -

This is the name of the encoding character set used for --the contents of "VirusWarning.txt" attachments. If --your users do not use English as their preferred language, --you may want to set this to --"ISO−8859−1".

-+the contents of "VirusWarning.txt" -+attachments.

-
- -@@ -5031,6 +5030,27 @@ - be the filename of a ruleset.

- - ++ ++ + + + + + ++

Incoming work dir

+
-+

Log Silent Viruses

+ + + + ++
-+

Default: no

++

Default: /opt/MailScanner/var/incoming
++Default FreeBSD: /var/spool/MailScanner/incoming

+ -+

Log all occurrences of "Silent Viruses" as -+defined above? This can only be a simple yes/no value, not a ++

Directory in which to temporarily store unpacked MIME ++messages during scanning process.

++
++ ++ ++ ++ ++ ++
++

Quarantine Dir

++ ++ ++ ++ ++ +
++

Default: /opt/MailScanner/var/quarantine
++Default FreeBSD: /var/spool/MailScanner/quarantine

++ ++

Set where to store infected messages and attachments (if ++they are kept). This can also be the filename of a +ruleset.

+
- -

Advanced SpamAssassin Settings

- -@@ -5066,9 +5086,14 @@ -

The per−user files (bayes, auto−whitelist, - user_prefs) are looked for here and in ~/.spamassassin/. - Note the files are mutable. If this is unset then no extra --places are searched for. If using Postfix, you probably want --to set this to /var/spool/MailScanner/spamassassin and --do

-+places are searched for. NOTE: SpamAssassin is always called -+from MailScanner as the same user, and that is the "Run -+As" user specified in MailScanner.conf. So you can only -+have 1 set of "per−user" files, it’s -+just that you might possibly need to modify this location. -+You should not normally need to set this at all. If using -+Postfix, you probably want to set this to -+/var/spool/MailScanner/spamassassin and do

- - - ++ ++ ++ ++ ++ ++
++

PID file

++ ++ ++ ++ ++ ++
++

Default: /opt/MailScanner/var/MailScanner.pid
++Default FreeBSD: /var/run/MailScanner.pid

++ ++

Set where to store the process id number so you can stop ++MailScanner. In the FreeBSD port this should remain ++/var/run/MailScanner.pid in order for the start/stop script ++to work.

++
++ ++ ++ ++ ++ ++
++

Restart Every

++ ++ ++ ++ ++ ++
++

Default: 14400

++ ++

To avoid resource leaks the MailScanner parent process ++stops and restarts its child processes from time to time. ++Set the amount of seconds each child process is supposed to ++live here.

++
++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

MTA

++
++ ++

Default: sendmail

++
++
++ ++ ++ ++ ++ ++
++

MailScanner works with sendmail and exim. Since the queue ++handling differs a bit, you have to tell MailScanner which ++MTA you are using. Valid options are sendmail and exim.

++
++ ++ ++ ++ ++ ++
++

Sendmail

++ ++ ++ ++ ++ ++
++

Default: /usr/lib/sendmail
++Default FreeBSD: /usr/sbin/sendmail

++ ++

Set how to invoke MTA when sending messages MailScanner ++has created (e.g. to sender/recipient saying "found a ++virus in your message"). This can also be the filename ++of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Sendmail2

++ ++ ++ ++ ++ ++
++

Default: same value as the Sendmail setting

++ ++

Sendmail2 is provided for exim users. It is the command ++used to attempt delivery of outgoing cleaned/disinfected ++messages. This is not usually required for sendmail.
++For Exim users this could be: Sendmail2 = /usr/sbin/exim ++−C /usr/local/etc/exim/configure.out

++
++ ++

Incoming Work Dir Settings

++ ++ ++ ++ ++ ++
++

You should not normally need to touch these settings at ++all, unless you are using ClamAV and need to be able to use ++the external archive unpackers instead of ClamAV’s ++built−in ones.

++
++ ++ ++ ++ ++ ++
++

Incoming Work User

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you want to create the temporary working files so they ++are owned by a user other than the "Run As User" ++setting, you can change that here. Note: If the "Run As ++User" is not "root" then you cannot change ++the user but may still be able to change the group, if the ++"Run As User" is a member of both of the groups ++"Run As Group" and "Incoming Work ++Group".

++
++ ++ ++ ++ ++ ++
++

Incoming Work Group

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you want to create the temporary working files so they ++are owned by a group other than the "Run As User" ++setting, you can change that here. Note: If the "Run As ++User" is not "root" then you cannot change ++the user but may still be able to change the group, if the ++"Run As User" is a member of both of the groups ++"Run As Group" and "Incoming Work ++Group".

++
++ ++ ++ ++ ++ ++
++

Incoming Work Permissions

++ ++ ++ ++ ++ ++
++

Default: 0600

++ ++

If you want processes running under the same *group* as ++MailScanner to be able to read the working files (and list ++what is in the directories, of course), set to 0640. If you ++want *all* other users to be able to read them, set to 0644. ++For a detailed description, if you’re not already ++familiar with it, refer to ‘man 2 chmod‘. ++Typical use: external helper programs of virus scanners ++(notably ClamAV), like unpackers. Use with care, you may ++well open security holes.

++
++ ++

Quarantine and Archive Settings

++ ++ ++ ++ ++ ++
++

If, for example, you are using a web interface so that ++users can manage their quarantined files, you might want to ++change the ownership and permissions of the quarantined so ++that they can be read and/or deleted by the web server. ++Don’t touch this unless you know what you are ++doing!

++
++ ++ ++ ++ ++ ++
++

Quarantine User

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you want to create the quarantine/archive so the files ++are owned by a user other than the "Run As User" ++setting at the top of this file, you can change that here. ++Note: If the "Run As User" is not "root" ++then you cannot change the user but may still be able to ++change the group, if the "Run As User" is a member ++of both of the groups "Run As Group" and ++"Quarantine Group".

++
++ ++ ++ ++ ++ ++
++

Quarantine Group

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you want to create the quarantine/archive so the files ++are owned by a user other than the "Run As User" ++setting at the top of this file, you can change that here. ++Note: If the "Run As User" is not "root" ++then you cannot change the user but may still be able to ++change the group, if the "Run As User" is a member ++of both of the groups "Run As Group" and ++"Quarantine Group".

++
++ ++ ++ ++ ++ ++
++

Quarantine Permissions

++ ++ ++ ++ ++ ++
++

Default: 0600

++ ++

If you want processes running under the same *group* as ++MailScanner to be able to read the quarantined files (and ++list what is in the directories, of course), set to 0640. If ++you want *all* other users to be able to read them, set to ++0644. For a detailed description, if you’re not ++already familiar with it, refer to ‘man 2 ++chmod‘. Typical use: let the webserver have access to ++the files so users can download them if they really want to. ++Use with care, you may well open security holes.

++
++ ++

Process Incoming Mail

++ ++ ++ ++ ++ ++
++

Max Unscanned Bytes Per Scan

++ ++ ++ ++ ++ ++
++

Default: 100000000

++ ++

MailScanner handles messages in batches for efficiency. ++Messages are gathered (in strict date order) from the ++incoming queue directory, one at a time, until this or one ++of the following three limits is reached or the queue is ++empty.

++ ++

This setting limits the total size of messages per batch ++for which no scanning is done (i.e. Virus Scanning = ++no).

++
++ ++ ++ ++ ++ ++
++

Max Unsafe Bytes per Scan

++ ++ ++ ++ ++ ++
++

Default: 50000000

++ ++

This setting limits the total size of messages per batch ++for which scanning is done (i.e. Virus Scanning = yes).

++
++ ++ ++ ++ ++ ++
++

Max Unscanned Messages Per Scan

++ ++ ++ ++ ++ ++
++

Default: 100

++ ++

This setting limits the total number of messages per ++batch for which no scanning is done (i.e. Virus Scanning = ++no).

++
++ ++ ++ ++ ++ ++
++

Max Unsafe Messages per Scan

++ ++ ++ ++ ++ ++
++

Default: 100

++ ++

This setting limits the total number of messages per ++batch for which scanning is done (i.e. Virus Scanning = ++yes).

++
++ ++ ++ ++ ++ ++
++

Max Normal Queue Size

++ ++ ++ ++ ++ ++
++

Default: 1000

++ ++

If more messages are found in the queue than this, then ++switch to an "accelerated" mode of processing ++messages. This will cause it to stop scanning messages in ++strict date order, but in the order it finds them in the ++queue. If your queue is bigger than this size a lot of the ++time, then some messages could be greatly delayed. So treat ++this option as "in emergency only".

++
++ ++ ++ ++ ++ ++
++

Maximum Attachments Per Message

++ ++ ++ ++ ++ ++
++

Default: 200

++ ++

The maximum number of attachments allowed in a message ++before it is considered to be an error. Some email systems, ++if bouncing a message between 2 addresses repeatedly, add ++information about each bounce as an attachment, creating a ++message with thousands of attachments in just a few minutes. ++This can slow down or even stop MailScanner as it uses all ++available memory to unpack these thousands of attachments. ++This can also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Expand TNEF

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

TNEF is primarily used by Microsoft programs such as ++Outlook and Outlook Express when mails are formatted/sent in ++Rich−Text−Format. Attachments are all put ++together in one WINMAIL.DAT file.

++ ++

Should we use a TNEF decoder (external or Perl module)? ++This should be "yes" unless the scanner you are ++using (Sophos, McAfee) has the facility built−in. ++However, if you set it to "no", then the filenames ++within the TNEF attachment will not be checked against the ++filename rules.

++
++ ++ ++ ++ ++ ++
++

Deliver Unparsable TNEF

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Rich Text format attachments produced by some versions of ++Microsoft Outlook cannot be completely decoded at present. ++Setting this option to yes allows compatibility with the ++behaviour of earlier versions where these attachments were ++still delivered. This would introduce the slight chance of a ++virus getting through in the segment of the attachment that ++could not be decoded, but the setting may be necessary if ++you have a large number of Microsoft Outlook users who are ++troubled by the new behaviour.

++
++ ++ ++ ++ ++ ++
++

TNEF Expander

++ ++ ++ ++ ++ ++
++

Default: /opt/MailScanner/bin/tnef
++Default FreeBSD: /usr/local/bin/tnef

++ ++

Full pathname giving location of the MS−TNEF ++expander/decoder program, or the keyword internal which will ++force use of the optional Perl Convert::TNEF module instead ++of the external program.

++
++ ++ ++ ++ ++ ++
++

TNEF Timeout

++ ++ ++ ++ ++ ++
++

Default: 120

++ ++

The maximum length of time (in seconds) the TNEF Expander ++is allowed to run for diassembling one attachment.

++
++ ++ ++ ++ ++ ++
++

File Command

++ ++ ++ ++ ++ ++
++

Default: /usr/bin/file

++ ++

Where the "file" command is installed. This is ++used for checking the content type of files, regardless of ++their filename. To disable Filetype checking, set this value ++to blank.

++
++ ++ ++ ++ ++ ++
++

File Timeout

++ ++ ++ ++ ++ ++
++

Default: 20

++ ++

The maximum length of time the "file" command ++is allowed to run for one batch of messages (in ++seconds).

++
++ ++ ++ ++ ++ ++
++

Block Encrypted Messages

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

This is inteded for use with a ruleset to ensure that ++none of your users is covertly mailing sites with which you ++would not normally communicate (e.g. your competitors). If ++this is set to yes (or the ruleset evaluates to yes) ++encrypted messages are blocked.

++
++ ++ ++ ++ ++ ++
++

Block Unencrypted Messages

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

This is intended for use with a ruleset to ensure that ++mail is always encrypted before being sent. This could be ++used to ensure that mail to your business partners is sent ++securely.

++
++ ++ ++ ++ ++ ++
++

Allow Password−Protected Archives

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Should archives which contain any ++password−protected files be allowed? Leaving this set ++to "no" is a good way of protecting against all ++the protected zip files used by viruses at the moment. This ++can also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Maximum Message Size

++ ++ ++ ++ ++ ++
++

Default: 0

++ ++

The maximum size, in bytes, of any message including the ++headers. If this is set to zero, then no size checking is ++done. This can also be the filename of a ruleset, so you can ++have different settings for different users. You might want ++to set this quite small for dialup users so their email ++applications don’t time out downloading huge ++messages.

++
++ ++ ++ ++ ++ ++
++

Maximum Attachment Size

++ ++ ++ ++ ++ ++
++

Default: −1

++ ++

The maximum size, in bytes, of any attachment in a ++message. If this is set to zero, effectively no attachments ++are allowed. If this is set less than zero, then no size ++checking is done. This can also be the filename of a ++ruleset, so you can have different settings for different ++users. You might want to set this quite small for large ++mailing lists so they don’t get deluged by large ++attachments.

++
++ ++ ++ ++ ++ ++
++

Maximum Archive Depth

++ ++ ++ ++ ++ ++
++

Default: 3

++ ++

The maximum depth to which zip archives will be unpacked ++to allow for checking filenames and filetypes within zip ++archives. Setting this to 0 will disable ++filename/−type checks within zip files while still ++allowing to block password protected zip files.

++
++ ++ ++ ++ ++ ++
++

Find Archives By Content

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Find zip archives by filename or by file contents? ++Finding them by content is a far more reliable way of ++finding them, but it does mean that you cannot tell your ++users to avoid zip file checking by renaming the file from ++".zip" to "_zip" and tricks like that. ++Only set this to no (i.e. check by filename only) if you ++don’t want to reliably check the contents of zip ++files. Note this does not affect virus checking, but it will ++affect all the other checks done on the contents of the zip ++file. This can also be the filename of a ruleset.

++
++ ++

Options specific to Sophos Anti-Virus

++ ++ ++ ++ ++ ++
++

Allowed Sophos Error Messages

++ ++ ++ ++ ++ ++
++

Default:

++ ++

Anything on the next line that appears in brackets at the ++end of a line of output from Sophos will cause the ++error/infection to be ignored. Use of this option is ++dangerous, and should only be used if you are having trouble ++with lots of corrupt PDF files, for example. This option ++allows for multiple strings as well. In this case, the ++strings should be put in double quotes (") and each ++string separated with commas. Examples:
++Allowed Sophos Error Messages = corrupt format not ++supported
++Allowed Sophos Error Messages = "corrupt", ++"format not supported"

++ ++

The first version will match "corrupt format not ++supported" only. The second version will match ++"corrupt" and "format not ++supported".

++
++ ++ ++ ++ ++ ++
++

Sophos IDE Dir

++ ++ ++ ++ ++ ++
++

Default: /usr/local/Sophos/ide

++ ++

The directory (or a link to it) containing all the Sophos ++*.ide files. This is only used by the "sophossavi" ++virus scanner, and is irrelevant for all other scanners.

++
++ ++ ++ ++ ++ ++
++

Sophos Lib Dir

++ ++ ++ ++ ++ ++
++

Default: /usr/local/Sophos/lib

++ ++

The directory (or a link to it) containing all the Sophos ++*.so libraries.This is only used by the ++"sophossavi" virus scanner, and is irrelevant for ++all other scanners.

++
++ ++ ++ ++ ++ ++
++

Monitors For Sophos Updates

++ ++ ++ ++ ++ ++
++

Default: /usr/local/Sophos/ide/*ides.zip

++ ++

SophosSAVI only: monitor each of these files for changes ++in size to detect when a Sophos update has happened. The ++date of the Sophos Lib Dir is also monitored. This is only ++used by the "sophossavi" virus scanner, not the ++"sophos" scanner setting.

++
++ ++

Virus scanning and vulnerability testing

++ ++ ++ ++ ++ ++
++

Virus Scanning

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Do you want to scan email for viruses? A few people ++don’t have virus scanner licence and so want to ++disable all the virus scanning.
++NOTE: Switching this to no completely disables all ++virus−scanning functionality. If you just want to ++switch of actual virus scanning, then set "Virus ++Scanners = none" instead.
++If you want to be able to switch scanning on/off for ++different users or different domains, set this to the ++filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Virus Scanners

++ ++ ++ ++ ++ ++
++

Default: none

++ ++

Which Virus Scanning package to use. Possible choices are ++sophos, sophossavi, mcafee, command, bitdefender, kaspersky, ++kaspersky−4.5, kavdaemonclient, inoculate, inoculan, ++nod32, nod32−1.99, f−secure, f−prot, ++panda, rav, antivir, clamav, clamavmodule, css, trend, ++norman, avg, vexira, symscanengine, generic, none (no virus ++scanning at all). This *cannot* be the filename of a ++ruleset.

++ ++

Note for McAfee users: Do NOT use any symlinks with ++McAfee at all. It is very strange but McAfee may not detect ++all viruses when started from a symlink or scanning a ++directory path including symlinks.

++ ++

Note: If you want to use multiple virus scanners, then ++this should be a space−separated list of virus ++scanners.

++ ++

Note: Make sure that you check that the base installation ++directory in the 3rd column of virus.scanners.conf matches ++the location you have installed each of your virus scanners. ++The supplied virus.scanners.conf file assumes the default ++installation locations recommended by each of the virus ++scanner installation guides.

++
++ ++ ++ ++ ++ ++
++

Virus Scanner Timeout

++ ++ ++ ++ ++ ++
++

Default: 300

++ ++

The maximum time (in seconds) that the cirus scanner is ++allowed to take to scan one batch of messages.

++
++ ++ ++ ++ ++ ++
++

Deliver Disinfected Files

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Should infected attached documents be automatically ++disinfected and sent on to the original recipients? Less ++than 1% of viruses in the wild can be successfully ++disinfected,as macro viruses are now a rare occurrence. So ++the default has been changed to "no" as it gives a ++significant performance improvement.

++
++ ++ ++ ++ ++ ++
++

Silent Viruses

++ ++ ++ ++ ++ ++
++

Default: HTML−IFrame All−Viruses

++ ++

Messages whose virus reports contain any of the words ++listed here will be treated as "silent" viruses. ++No messages will be sent back to the senders of these ++viruses, and the delivery to the recipient of the message ++can be controlled by the next option "Still Deliver ++Silent Viruses". This is primarily designed for viruses ++such as "Klez" and "Bugbear" which put ++fake addresses on messages they send, so there is no point ++informing the sender of the message, as it won’t ++actually be them who sent it anyway. Other words that can be ++put in this list are the 5 special keywords

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

HTML−IFrame: inserting this will stop senders ++being warned about HTML Iframe tags, when they are not ++allowed.

++
++ ++

++
++ ++

HTML−Codebase: inserting this will stop senders ++being warned about HTML Object Codebase tags, when they are ++not allowed.

++
++ ++

++
++ ++

Zip−Password: inserting this will stop senders ++being warned about password−protected zip files when ++they are not allowd. This keyword is not needed if you ++include All−Viruses.

++
++ ++

++
++ ++

All−Viruses: inserting this will stop senders ++being warned about any virus, while still allowing you to ++warn senders about HTML−based attacks. This includes ++Zip−Password so you don’t need to include ++both.

++
++ ++ ++ ++ ++ ++
++

The default of "All−Viruses" means that ++no senders of viruses will be notified (as the sender ++address is always forged these days anyway), but anyone who ++sends a message that is blocked for other reasons will still ++be notified.

++ ++ ++ ++ ++ ++
++

Still Deliver Silent Viruses

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this is set to yes then disinfected messsages that ++originally contained one of the "silent" viruses ++will still be delivered to the original recipients, even ++those addresses were chosen at random by the infected PC and ++do not correspond to anything a user intended to send. Set ++this to yes so that your users (and your management) ++appreciate how much MailScanner is doing to protect them, ++but set it to no if they complain a lot about receiving lots ++of virus warnings.

++
++ ++ ++ ++ ++ ++
++

Non−Forging Viruses

++ ++ ++ ++ ++ ++
++

Default: Joke/ OF97/ WM97/ W97M/

++ ++

Strings listed here will be searched for in the output of ++the virus scanners. It works to achieve the opposite effect ++of the "Silent Viruses" listed above. If a string ++here is found in the output of the virus scanners, then the ++message will be treated as if it were not infected with a ++"Silent Virus". If a message is detected as both a ++silent virus and a non−forging virus, then the ++non−forging status will override the silent status. In ++simple terms, you should list virus names (or parts of them) ++that you know do *not* forge the From address. A good ++example of this is a document macro virus or a Joke program. ++Another word that can be put in this list is the special ++keyword "Zip−.Password". Inserting this will ++cause senders to be warned about password−protected ++zip files, whey they are not allowed.

++
++ ++

Options specific to ClamAV Anti-Virus

++ ++ ++ ++ ++ ++
++

Monitors for ClamAV Updates

++ ++ ++ ++ ++ ++
++

Default: /usr/local/share/clamav/*.cvd

++ ++

ClamAVModule only: monitor each of these files for ++changes in size to detect when a ClamAV update has happened. ++This is only used by the "clamavmodule" virus ++scanner, not the "clamav" scanner setting.

++
++ ++

Removing/Logging dangerous or potentially offensive content

++ ++ ++ ++ ++ ++
++

Allow Partial Messages

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to allow partial messages, which only contain ++a fraction of the attachments, not the whole thing? There is ++no way that "partial messages" can be scanned for ++viruses properly, as only a fragment of the message is ever ++processed, never the whole message at once.
++Setting this option to yes is very dangerous as it ++can let viruses in. But you might want to use a ruleset to ++set it for some customers’ outgoing mail, for ++example.

++
++ ++ ++ ++ ++ ++
++

Allow External Message Bodies

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

There is a mechanism, very rarely used, in which the body ++of a message is contained on a remote server, which the ++user’s email application should download when it ++displays the message. Currently, I am only aware of this ++feature being supported by a few versions of Netscape, and ++the only people who use it are the IETF. There is no way to ++guarantee that the fetched file has no viruses in it, as ++MailScanner never sees it.
++Setting this option to yes is very dangerous as it ++can let viruses in from remote "message body ++servers".

++
++ ++ ++ ++ ++ ++
++

Find Phishing Fraud

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to check for "Phishing" attacks? ++These are attacks that look like a genuine email message ++from your bank, which contain a link to click on to take you ++to the web site where you will be asked to type in personal ++information such as your account number or credit card ++details. Except it is not the real bank’s web site at ++all, it is a very good copy of it run by thieves who want to ++steal your personal information or credit card details. ++These can be spotted because the real address of the link in ++the message is not the same as the text that appears to be ++the link. Note: This does cause significant extra load, ++particularly on systems receiving lots of spam such as ++secondary MX hosts. This *cannot* be the filename of a ++ruleset, it must be ’yes’ or ++’no’.

++
++ ++ ++ ++ ++ ++
++

Allow IFrame Tags

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to allow HTML <IFrame> tags in email ++messages? This is not a good idea as it allows various ++Microsoft Outlook security vulnerabilities to go ++unprotected, but if you have a load of mailing lists sending ++them, then you will want to allow them to keep your users ++happy. This can also be the filename of a ruleset, so you ++can allow them from known mailing lists but ban them from ++everywhere else. Possible Values:

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

yes => Allow these tags to be in the message

++
++ ++

++
++ ++

no => Ban messages containing these tags

++
++ ++

++
++ ++

disarm => Allow these tags, but stop these tags from ++working

++
++ ++ ++ ++ ++ ++
++

Log IFrame Tags

++ ++ ++ ++ ++ ++
++

Default: no

++ ++ ++ ++ ++ ++
++

You may receive complaints from your users that HTML ++mailing lists they subscribe to have been stopped by the ++"Allow IFrame Tags" option above. So before you ++use the option above, set this option to "yes" and ++MailScanner will log the senders all messages which contain ++IFrame tags. You can then setup a ruleset for the option ++above which will allow IFrame tags in messages sent by well ++known (and trusted) mailing lists, while banning them from ++everywhere else.

++
++ ++ ++ ++ ++ ++
++

Allow Form Tags

++ ++ ++ ++ ++ ++
++

Default: disarm

++ ++

Do you want to allow <Form> tags in email messages? ++This is a bad idea as these are used as scams to persuade ++people to part with credit card information and other ++personal data. This can also be the filename of a ruleset. ++Possible values:

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

yes => Allow these tags to be in the message

++
++ ++

++
++ ++

no => Ban messages containing these tags

++
++ ++

++
++ ++

disarm => Allow these tags, but stop these tags from ++working

++
++ ++ ++ ++ ++ ++
++

Allow Script Tags

++ ++ ++ ++ ++ ++
++

Default: no

++ ++ ++ ++ ++ ++
++

Do you want to allow <Script> tags in email ++messages? This is a bad idea as these are used to exploit ++vulnerabilities in email applications and web browsers. This ++can also be the filename of a ruleset. Possible ++values:

++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

yes => Allow these tags to be in the message

++
++ ++

++
++ ++

no => Ban messages containing these tags

++
++ ++

++
++ ++

disarm => Allow these tags, but stop these tags from ++working

++
++ ++ ++ ++ ++ ++
++

Allow WebBugs

++ ++ ++ ++ ++ ++
++

Default: disarm

++ ++ ++ ++ ++ ++
++

Do you want to allow <Img> tags with very small ++images in email messages? This is a bad idea as these are ++used as ’web bugs’ to find out if a message has ++been read. It is not dangerous, it is just used to make you ++give away information. This can also be the filename of a ++ruleset. Possible values:

++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

yes => Allow these tags to be in the message

++
++ ++

++
++ ++

no => Ban messages containing these tags

++
++ ++

++
++ ++

disarm => Allow these tags, but stop these tags from ++working

++
++ ++ ++ ++ ++ ++
++

Allow Object Codebase Tags

++ ++ ++ ++ ++ ++
++

Default: no

++ ++ ++ ++ ++ ++
++

Do you want to allow <Object Codebase=...> tags in ++email messages? This is a bad idea as it leaves you ++unprotected against various Microsoft−specific ++security vulnerabilities. But if your users demand it, you ++can do it. This can also be the filename of a ruleset. ++Possible values:

++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

yes => Allow these tags to be in the message

++
++ ++

++
++ ++

no => Ban messages containing these tags

++
++ ++

++
++ ++

disarm => Allow these tags, but stop these tags from ++working

++
++ ++ ++ ++ ++ ++
++

Convert Dangerous HTML To Text

++ ++ ++ ++ ++ ++
++

Default: no

++ ++ ++ ++ ++ ++
++

This option interacts with the "Allow ... Tags" ++options above like this:

++ ++

Allow...Tags Convert Danger... Action
++============ ================= ++============================
++no no Blocked
++no yes Blocked
++disarm no Specified HTML tags disarmed
++disarm yes Specified HTML tags disarmed
++yes no Nothing
++yes yes All HTML tags stripped

++ ++

If an "Allow ... Tags = yes" is triggered by a ++message, and this "Convert Dangerous HTML To Text" ++is set to "yes", then the HTML message will be ++converted to plain text. This makes the HTML harmless, while ++still allowing your users to see the text content of the ++messages. Note that all graphical content will be ++removed.

++
++ ++ ++ ++ ++ ++
++

Convert HTML To Text

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If you have users who are children, or who are offended ++by things like pornographic spam email, you can protect them ++by converting incoming HTML email messages into plain text. ++HTML attachments will not be affected. You could set this to ++be a ruleset so you only convert messages addressed to some ++of your users, or not convert messages from some known ++trusted sources. This can be essential if you have a ++"duty of care" for some of your users.

++
++ ++ ++ ++ ++ ++
++

Allow Form Tags

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to allow <Form> tags in email messages? ++This is a bad idea as these are used as scams to pursuade ++people to part with credit card information and other ++personal data. This can also be the filename of a ++ruleset.

++
++ ++

Attachment filename checking

++ ++ ++ ++ ++ ++
++

Filename Rules

++ ++ ++ ++ ++ ++
++

Default: %etc−dir%/filename.rules.conf

++ ++

File in which to store the attachment filename ruleset. ++This can be a ruleset allowing different filename rules to ++apply to different users or domains. The syntax of this file ++is described in section "Attachment Filename ++Ruleset".

++
++ ++ ++ ++ ++ ++
++

Filetype Rules

++ ++ ++ ++ ++ ++
++

Default: %etc−dir%/filetype.rules.conf

++ ++

Set where to find the attachment filetype ruleset. The ++structure of this file is explained elsewhere, but it is ++used to accept or reject file attachments based on their ++content as determined by the "file" command, ++regardless of whether they are infected or not. This can ++also point to a ruleset, but the ruleset filename must end ++in ".rules" so that MailScanner can determine if ++the filename given a ruleset or not!

++
++ ++

Reports and responses

++ ++ ++ ++ ++ ++
++

Quarantine Infections

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Set this to store infected / dangerous attachments in ++directories created under the quarantine directory. Without ++this, they will be deleted. Due to laws on privacy and data ++protection in your country, you may be forced to set this to ++"no".

++
++ ++ ++ ++ ++ ++
++

Quarantine Silent Viruses

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

There is no point quarantining most viruses these days, ++so if you set this to "no" then no infections ++listed in your "Silent Viruses" setting will be ++quarantined, even if you have chosen to quarantine ++infections in general. This is currently set to ++"yes" so the behaviour is the same as it was in in ++previous versions. This can also be the filename of a ++ruleset.

++
++ ++ ++ ++ ++ ++
++

Quarantine Whole Message

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

When an infected message is stored in the quarantine, a ++copy of the entire message will be saved, in addition to ++copies of the infected attachments.

++
++ ++ ++ ++ ++ ++
++

Quarantine Whole Messages As Queue Files

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

When an entire message is saved in the quarantine for any ++reason, do you want to save it as the raw data files out of ++the mail queue (which can be processed with the df2mbox ++script, and which is easier to send to its original ++recipients), or do you want a conventional message file ++consisting of the header followed by the body of the ++message. If the previous option is switched off, then this ++will only affect archived mail and quarantined spam. If the ++previous option is on, then this also affects quarantined ++infections.

++
++ ++ ++ ++ ++ ++
++

Keep Spam And MCP Archive Clean

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to stop any virus−infected spam getting ++into the spam or MCP archives? If you have a system where ++users can release messages from the spam or MCP archives, ++then you probably want to stop them being able to release ++any infected messages, so set this to yes. It is set to no ++by default as it causes a small hit in performance, and many ++people don’t allow users to access the spam ++quarantine, so don’t need it. This can also be the ++filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Language Strings

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/languages.conf

++ ++

Set where to find all the strings used so they can be ++translated into your local language. This can also be the ++filename of a ruleset so you can produce different languages ++for different messages.

++
++ ++ ++ ++ ++ ++
++

Deleted Bad Filename Message Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/deleted.filename.message.txt

++ ++

When an attachment is deleted from a message because the ++filename failed the filename rules in force for the message, ++it is replaced by the contents of this file. A few variable ++substitutions can be made in this file, an example of each ++of which is contained in the supplied sample file.

++
++ ++ ++ ++ ++ ++
++

Deleted Virus Message Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/deleted.virus.message.txt

++ ++

When an attachment is deleted from a message because the ++attachment contained a virus or other dangerous content, it ++is replaced by the contents of this file. A few variable ++substitutions can be made in this file, an example of each ++of which is contained in the supplied sample file.

++
++ ++ ++ ++ ++ ++
++

Stored Bad Filename Message Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/stored.filename.message.txt

++ ++

When an attachment is deleted and stored from a message ++(and the attachment has been stored in the quarantine) ++because the filename failed the filename rules in force for ++the message, it is replaced by the contents of this file. A ++few variable substitutions can be made in this file, an ++example of each of which is contained in the supplied sample ++file.

++
++ ++ ++ ++ ++ ++
++

Deleted Bad Content Message Report

++ ++ ++ ++ ++ ++
++

Default: ++/%reports−dir%/deleted.content.message.txt

++ ++

This report is sent when a message is deleted because it ++contained bad or dangerous content. A few variable ++substitutions can be made in this file, an example of each ++of which is contained in the supplied sample file.

++
++ ++ ++ ++ ++ ++
++

Stored Bad Content Message Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/stored.content.message.txt

++ ++

This report is sent when a message is stored because it ++contained bad or dangerous content. A few variable ++substitutions can be made in this file, an example of each ++of which is contained in the supplied sample file.

++
++ ++ ++ ++ ++ ++
++

Disinfected Report

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/disinfected.report.txt

++ ++

When, for example, a Microsoft Word macro virus has been ++safely removed from a document, leaving the original ++document intact, it is delivered on to the original ++recipient. The contents of this text file will be put in the ++body of the new message, explaining to the user what has ++happened.

++
++ ++ ++ ++ ++ ++
++

Inline HTML Signature

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/inline.sig.html

++ ++

If the "Sign Clean Messages" option is set, ++then the contents of this file will be appended to the end ++of the body of every message that is scanned by MailScanner. ++You can use this to inform your users that MailScanner has ++scanned it, and you can also add any disclaimers you feel ++should be on mail travelling through your servers. This ++option corresponds to the contents that is appended to HTML ++messages.

++
++ ++ ++ ++ ++ ++
++

Inline Text Signature

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/inline.sig.txt

++ ++

If the "Sign Clean Messages" option is set, ++then the contents of this file will be appended to the end ++of the body of every message that is scanned by MailScanner. ++You can use this to inform your users that MailScanner has ++scanned it, and you can also add any disclaimers you feel ++should be on mail travelling through your servers. This ++option corresponds to the contents that is appended to text ++messages.

++
++ ++ ++ ++ ++ ++
++

Sender Error Report

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/sender.error.report.txt

++ ++

When a message could not be processed completely for some ++reason, such as bad message structure or unreadable ++winmail.dat TNEF attachments, this message is sent back to ++the sender. Read the example file supplied for a ++demonstration of what variables can be used inside the ++file.

++
++ ++ ++ ++ ++ ++
++

Sender Bad Filename Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/sender.filename.report.txt

++ ++

When an attachment is trapped by the filename rules, this ++message is sent back to the sender.

++
++ ++ ++ ++ ++ ++
++

Sender Virus Report

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/sender.virus.report.txt

++ ++

When an attachment is removed because of a virus, this ++message is sent back to the sender.

++
++ ++ ++ ++ ++ ++
++

Hide Incoming Work Dir

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

When this option is set, the full directory in which the ++virus was found will be removed from report messages sent to ++users. This makes the infection reports a lot easier to ++understand.

++
++ ++ ++ ++ ++ ++
++

Include Scanner Name in Reports

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Include the name of the virus scanner in each of the ++scanner reports. This also includes the translation of ++"MailScanner" in each of the report lines ++resulting from one of MailScanner’s own checks such as ++filename, filetype or dangerous HTML content. To change the ++name "MailScanner", look in ++reports/...../languages.conf.
++Very useful if you use several virus scanners, but a bad ++idea if you don’t want to let your customers know ++which scanners you use.

++
++ ++

Changes to message headers

++ ++ ++ ++ ++ ++
++

Mail Header

++ ++ ++ ++ ++ ++
++

Default: X−MailScanner:

++ ++

Extra header that should be added to all scanned messages ++to show they have been scanned. You might want to add an ++abbreviation of your site name to this, so that you can find ++headers that are added by your MailScanner server.

++
++ ++ ++ ++ ++ ++
++

Spam Header

++ ++ ++ ++ ++ ++
++

Default: X−MailScanner−SpamCheck:

++ ++

Name of the header to add to mail detected as spam. The ++text of the header is a list of the causes that think the ++message is spam.

++
++ ++ ++ ++ ++ ++
++

Spam Score Header

++ ++ ++ ++ ++ ++
++

Default: X−MailScanner−SpamScore:

++ ++

If the option "Spam Score" is set, this is the ++name of the header that is used to contain the list of ++characters.

++
++ ++ ++ ++ ++ ++
++

Information Header

++ ++ ++ ++ ++ ++
++

Default: X−MailScanner−Information:

++ ++

Name of the header to add to all messages, to be used for ++simply providing a URL or contact information for anyone ++receiving mail that has gone through MailScanner. If you do ++not want this header, simply set it blank.

++
++ ++ ++ ++ ++ ++
++

Add Envelope From Header

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Do you want to add the Envelope−From: header? This ++is very useful for tracking where spam came from as it ++contains the envelope sender address. This can also be the ++filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Add Envelope To Header

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to add the Envelope−To: header? This ++can be useful for tracking span destinations, but should be ++used with care due to possible privacy concerns with the use ++of Bcc: headers by users. This can also be the filename of a ++ruleset.

++
++ ++ ++ ++ ++ ++
++

Evelope From Header

++ ++ ++ ++ ++ ++
++

Default: ++X−%org−name%−MailScanner−From:

++ ++

This is the name of the Envelope From header controlled ++by the option above. This can also be the filename of a ++ruleset.

++
++ ++ ++ ++ ++ ++
++

Evelope To Header

++ ++ ++ ++ ++ ++
++

Default: ++X−%org−name%−MailScanner−To:

++ ++

This is the name of the Envelope To header controlled by ++the option above. This can also be the filename of a ++ruleset.

++
++ ++ ++ ++ ++ ++
++

Detailed Spam Report

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this is set to yes then you get the normal fully ++detailed spam report in spam messages. If this is set to no ++then you simply get a "spam" or "not ++spam" report. The exact text inserted can be configured ++in the languages.conf file for your language.

++
++ ++ ++ ++ ++ ++
++

Include Scores In SpamAssassin Report

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Do you want to include the numerical scores in the ++detailed SpamAssassin report, or just list the names of the ++scores?

++
++ ++ ++ ++ ++ ++
++

Spam Score Character

++ ++ ++ ++ ++ ++
++

Default: s

++ ++

If the option "Spam Score" is set, this is the ++character that will be repeated in the "Spam Score ++Header", one letter for each point in the SpamAssassin ++score.

++
++ ++ ++ ++ ++ ++
++

SpamScore Number Instead Of Stars

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this option is set to yes, you will get a ++spam−score header saying just the value of the spam ++score, instead of the row of characters representing the ++score. This can also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Minimum Stars If on Spam List

++ ++ ++ ++ ++ ++
++

Default: 0

++ ++

This sets the minimum number of "Spam Score ++Characters" which will appear if a message triggered ++the "Spam List" setting but received a very low ++SpamAssassin score. This means that people who only filter ++on the "Spam Stars" will still be able to catch ++messages which receive a very low SpamAssassin score. Set ++this value to 0 to disable it. This can also be the filename ++of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Clean header Value

++ ++ ++ ++ ++ ++
++

Default: Found to be clean

++ ++

This is the text that is added to the "Mail ++Header" when a message is found to be clean and free of ++viruses and other dangerous content.

++
++ ++ ++ ++ ++ ++
++

Infected Header Value

++ ++ ++ ++ ++ ++
++

Default: Found to be infected

++ ++

This is the text that is added to the "Mail ++Header" when a message is found to be infected with a ++virus or other dangerous content.

++
++ ++ ++ ++ ++ ++
++

Disinfected Header Value

++ ++ ++ ++ ++ ++
++

Default: Disinfected

++ ++

This is the text that is added to the "Mail ++Header" of a message that is created by MailScanner to ++contain disinfected documents containing macro viruses that ++could be completely removed, leaving the original document ++intact.

++
++ ++ ++ ++ ++ ++
++

Information Header Value

++ ++ ++ ++ ++ ++
++

Default: Please contact the ISP for more information

++ ++

This is the text that is added to the "Information ++Header" of a message that has passed through ++MailScanner at all. It could be used to provide a URL or ++contact address for recipients if they have any queries ++about the messages they have received. If the setting ++"Information Header" is blank, this message will ++not be added to the Mail Header.

++
++ ++ ++ ++ ++ ++
++

Multiple Headers

++ ++ ++ ++ ++ ++
++

Default: append

++ ++

When a message passes through more than one MailScanner ++server on your site, they will each try to add their own ++headers. This option controls what should happen when trying ++to add a MailScanner header that already exists in the ++message. Valid options are append (append the new data to ++the existing header), add (add a new header) and replace ++(replace the old data with the new data).

++
++ ++ ++ ++ ++ ++
++

Hostname

++ ++ ++ ++ ++ ++
++

Default: the MailScanner

++ ++

This is the name of the MailScanner server that is put in ++messages to users. If you have more than one MailScanner ++server on your site, you will want to change this on each ++server so that you can tell them apart.

++
++ ++ ++ ++ ++ ++
++

Sign Messages Already Processed

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If a message has already been processed by another ++MailScanner server on your site, then the "Inline ++HTML/Text Signature" is not added to the message again ++if this option is set. Without it, you will get one ++signature added for every MailScanner server that processes ++the message.

++
++ ++ ++ ++ ++ ++
++

Sign Clean Messages

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this option is set, then the "Inline HTML/Text ++Signature" will be added to the end of every clean ++message processed by MailScanner. You can use this to inform ++the recipient that the message has been checked, and also to ++add any legal disclaimer or copyright statement you want to ++add to every message. Using a ruleset for this option, you ++could very simply set it so that only messages leaving your ++site are signed, for example.

++
++ ++ ++ ++ ++ ++
++

Mark Infected Messages

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this option is set, then the "Inline HTML/Text ++Warning" is added to the start of every message that is ++found to be infected or has had attachments removed for any ++reason. This can be used to guide the recipients to read the ++infection reports contained in the replacement ++attachments.

++
++ ++ ++ ++ ++ ++
++

Mark Unscanned Messages

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this option is set, then any message which is not ++scanned by MailScanner gets the "Mail Header" ++added to it with the string contained in the "Unscanned ++Header Value" option. This can be used to advertise ++your MailScanner service to customers/clients who are ++currently not using it.

++
++ ++ ++ ++ ++ ++
++

Unscanned Header Value

++ ++ ++ ++ ++ ++
++

Default: Not scanned: please contact your Internet ++E−Mail Service Provider for details

++ ++

This supplies the text that is placed in the "Mail ++Header" of messages that have not been scanned, if the ++option "Mark Unscanned Messages" is set. It is a ++useful place to advertise your MailScanner service to new ++customers/clients.

++
++ ++ ++ ++ ++ ++
++

Remove These Headers

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If any of these headers are included in a a message, they ++will be deleted. This is very useful for removing ++return−receipt requests and any headers which mean ++special things to your email client application, such as # ++X−Mozilla−Status. Each header should end in a ++":", but MailScanner will add it if you forget. ++Headers should be separated by commas or spaces. This can ++also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Deliver Cleaned Messages

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Once a message has had all viruses and dangerous content ++removed from it, it will then be delivered to the original ++recipients if this option is set. If you want the behaviour ++from previous versions of MailScanner that had the ++"Deliver From Local Domains" keyword, then you ++should set this to be a ruleset that only returns ++"yes" for messages destined for inside your site, ++and "no" for messages going out of your site.

++
++ ++

Notifications back to the senders of blocked messages

++ ++ ++ ++ ++ ++
++

Notifiy Senders

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Do you want to notify the people who sent you messages ++containing viruses or badly−named filenames? The ++default value has been changed to "no" as most ++viruses now fake sender addresses and therefore should be on ++the "Silent Viruses" list. This can also be the ++filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Notify Senders Of Blocked Filenames Or ++Filetypes

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

*If* "Notify Senders" is set to yes, do you ++want to notify people who sent you messages containing ++attachments that are blocked due to their filename or file ++contents? This can also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Notify Senders Of Other Blocked Content

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

*If* "Notify Senders" is set to yes, do you ++want to notify people who sent you messages containing other ++blocked content, such as partial messages or messages with ++external bodies? This can also be the filename of a ++ruleset.

++
++ ++ ++ ++ ++ ++
++

Notify Senders Of Viruses

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

*If* "Notify Senders" is set to yes, do you ++want to notify people who sent you messages containing ++viruses? This can also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Never Notify Senders Of Precedence

++ ++ ++ ++ ++ ++
++

Default: list bulk

++ ++

If you supply a space−separated list of message ++"precedence" settings, then senders of those ++messages will not be warned about anything you rejected. ++This is particularly suitable for mailing lists, so that any ++MailScanner responses do not get sent to the entire ++list.

++
++ ++

Changes to subject line

++ ++ ++ ++ ++ ++
++

Scanned Modify Subject

++ ++ ++ ++ ++ ++
++

Default: no # end

++ ++

If this is set to "start" or "end" ++then the "Scanned Subject Text" is inserted at the ++start or the end of the Subject: line. This only happens if ++the Subject: line has not already been modified for any ++other reason.

++
++ ++ ++ ++ ++ ++
++

Scanned Subject Text

++ ++ ++ ++ ++ ++
++

Default: {Scanned}

++ ++

This is the text inserted at the start or the end of the ++Subject: line if the "Scanned Modify Subject" ++option above is in effect.

++
++ ++ ++ ++ ++ ++
++

Virus Modify Subject

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this is set, then the "Subject:" line of a ++message that was infected with a virus will have the ++"Virus Subject Text" text inserted at the ++start.

++
++ ++ ++ ++ ++ ++
++

Virus Subject Text

++ ++ ++ ++ ++ ++
++

Default: {Virus?}

++ ++

This is the text inserted at the start of the ++"Subject:" line if the "Virus Modify ++Subject" option is set.

++
++ ++ ++ ++ ++ ++
++

Filename Modify Subject

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this is set, then the "Subject:" line of a ++message that had an attachment with a dangerous filename ++will have the "Filename Subject Text" text ++inserted at the start.

++
++ ++ ++ ++ ++ ++
++

Filename Subject Text

++ ++ ++ ++ ++ ++
++

Default: {Virus?}

++ ++

This is the text inserted at the start of the ++"Subject:" line if the "Filename Modify ++Subject" option is set.

++
++ ++ ++ ++ ++ ++
++

Content Modify Subject

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this is set, then the "Subject:" line of a ++message that triggered a content check without anything else ++wrong in the message will have the "Content Subject ++Text" text inserted at the start.

++
++ ++ ++ ++ ++ ++
++

Content Subject Text

++ ++ ++ ++ ++ ++
++

Default: {Filename?}

++ ++

This is the text inserted at the start of the ++"Subject:" line if the "Content Modify ++Subject" option is set.

++
++ ++ ++ ++ ++ ++
++

Spam Modify Subject

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this is set, then the "Subject:" line of a ++message that was determined to be spam will have the ++"Spam Subject Text" text inserted at the ++start.

++
++ ++ ++ ++ ++ ++
++

Spam Subject Text

++ ++ ++ ++ ++ ++
++

Default: {Spam?}

++ ++

This is the text to add to the start of the subject if ++the "Spam Modify Subject" option is set. The exact ++string "_SCORE_" will be replaced by the numeric ++SpamAssassin score. This can also be the filename of a ++ruleset.

++
++ ++ ++ ++ ++ ++
++

High Scroing Spam Modify Subject

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this is set, then the "Subject:" line of a ++message that was determined to be spam, and had a ++SpamAssassin score greater than the "High SpamAssassin ++Score" will have the "High Scoring Spam Subject ++Text" text inserted at the start.

++
++ ++ ++ ++ ++ ++
++

High Scoring Spam Subject Text

++ ++ ++ ++ ++ ++
++

Default: {Spam?}

++ ++

This is just like the "Spam Subject Text" ++option above, except that it applies then the score from ++SpamAssassin is higher than the "High SpamAssassin ++Score" value. The exact string "_SCORE_" will ++be replaced by the numeric SpamAssassin score. This can also ++be the filename of a ruleset.

++
++ ++

Changes to the message body

++ ++ ++ ++ ++ ++
++

Warning Is Attachment

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

When an infected or dangerous attachment is replaced with ++a text message containing the infection report, should the ++replacement be an attachment (yes) or should it be included ++inline in the main text of the message (no).

++
++ ++ ++ ++ ++ ++
++

Attachment Warning Filename

++ ++ ++ ++ ++ ++
++

Default: ++%org−name%−Attachment−Warning.txt

++ ++

What an infected or dangerous attachment is replaced with ++a text message containing the infection report, this is the ++filename of the attachment that appears in the message.

++
++ ++ ++ ++ ++ ++
++

Attachment Encoding Charset

++ ++ ++ ++ ++ ++
++

Default: ISO−8859−1

++ ++

This is the name of the encoding character set used for ++the contents of "VirusWarning.txt" ++attachments.

++
++ ++

Mail archiving and monitoring

++ ++ ++ ++ ++ ++
++

Archive Mail

++ ++ ++ ++ ++ ++
++

Default:

++ ++

Space−separated list of any combination of

++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

1. email addresses to which mail should be ++forwarded,

++
++ ++

2. directory names where you want mail to be stored,

++
++ ++

3. file names to which mail will be appended.

++
++ ++ ++ ++ ++ ++
++

The files (option 3) are using the "mbox" ++format suitable for most Unix mail systems. These files must ++already exist since MailScanner will not create them!

++ ++

If you give this option a ruleset, you can control ++exactly whose mail is archived or forwarded. If you do this, ++beware of the legal implications as this could be deemed to ++be illegal interception unless the police have asked you to ++do this.

++
++ ++

Notices to system administrators

++ ++ ++ ++ ++ ++
++

Send Notices

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

Should system administrators listed in the "Notices ++To" option be notified of every infection found?

++
++ ++ ++ ++ ++ ++
++

Notices Include Full Headers

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this option is set, then the system administrator ++notices will include the full headers of every infected ++message. If this option is set to "no" then only a ++restricted set of headers is included in the notices.

++
++ ++ ++ ++ ++ ++
++

Hide Incoming Work Dir in Notices

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

When this option is set, the full directory in which the ++virus was found will be removed from report messages sent to ++administrators. This makes the infection reports a lot ++easier to understand. It is also very useful if your notices ++go to your customer sites.

++
++ ++ ++ ++ ++ ++
++

Notice Signature

++ ++ ++ ++ ++ ++
++

Default: −− \nMailScanner\nEmail Virus ++Scanner\nwww.mailscanner.info

++ ++

This string is added to the bottom of all system ++administrator notices, and is intended to be the signature ++of your MailScanner system. To insert ++"line−breaks" or "newline" ++characters, use the sequence 0

++
++ ++ ++ ++ ++ ++
++

Notices From

++ ++ ++ ++ ++ ++
++

Default: MailScanner

++ ++

The visible part of the email address used in the ++"From:" line of the notices. The ++<user@domain> part of the email address is set to the ++"Local Postmaster" setting.

++
++ ++ ++ ++ ++ ++
++

Notices To

++ ++ ++ ++ ++ ++
++

Default: postmaster

++ ++

This option provides a list of the addresses to which ++virus notices should be sent. You may want to set this to be ++a ruleset, providing different notification addresses for ++different domains that you administer.

++
++ ++ ++ ++ ++ ++
++

Local Postmaster

++ ++ ++ ++ ++ ++
++

Default: postmaster

++ ++

When virus warnings are sent to any users, this is the ++email address used as the "From:" header in the ++messages.

++
++ ++

Definitions of virus scanners and spam detectors

++ ++ ++ ++ ++ ++
++

Spam List Definitions

++ ++ ++ ++ ++ ++
++

Default: %etc−dir%/spam.lists.conf

++ ++

This file contains all the definitions of the "Spam ++Lists" (also known as RBL’s or DNSBL’s) ++which can be used to try to detect spam based on where each ++message came from. Many more spam lists can be added to this ++file, but it contains the most popular ones to get you ++started.

++
++ ++ ++ ++ ++ ++
++

Virus Scanner Definitions

++ ++ ++ ++ ++ ++
++

Default: %etc−dir%/virus.scanners.conf

++ ++

This file contains the locations of all the commands that ++are run for each virus scanner. Check this file before ++starting MailScanner to make sure it will run the correct ++command or wrapper script.

++
++ ++

Spam detection and spam lists (DNS blocklists)

++ ++ ++ ++ ++ ++
++

Spam Checks

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If this option is set, messages will be checked to see if ++they are spam.

++
++ ++ ++ ++ ++ ++
++

Spam List

++ ++ ++ ++ ++ ++
++

Default: ORDB−RBL Infinite−Monkeys

++ ++

This provides a space−separated list of "Spam ++Lists" (or RBL’s or DNSBL’s) which are ++checked for each message. These lists are based on the ++numeric IP address of the server that sent the message to ++your MailScanner server. Every list used here must be ++defined in the "Spam List Definitions" file ++mentioned above.

++
++ ++ ++ ++ ++ ++
++

Spam Domain List

++ ++ ++ ++ ++ ++
++

Default:

++ ++

This provides a space−separated list of "Spam ++Lists" (or RBL’s or DNSBL’s) which are ++checked for each message. These lists are based on the ++domain name of the sender address of each message. Every ++list used here must be defined in the "Spam List ++Definitions" file mentioned above.

++
++ ++ ++ ++ ++ ++
++

Spam Lists To Reach High Score

++ ++ ++ ++ ++ ++
++

Default: 5

++ ++

If a message appears in at least this number of ++"Spam Lists" (as defined above), then the message ++will be treated as "High Scoring Spam" and so the ++"High Scoring Spam Actions" will happen. You ++probably want to set this to 2 if you are actually using ++this feature. 5 is high enough that it will never happen ++unless you use lots of "Spam Lists". This can also ++be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Spam List Timeout

++ ++ ++ ++ ++ ++
++

Default: 10

++ ++

This is the number of seconds to wait for each "Spam ++List" lookup to complete. If the lookup takes longer ++than this, it is killed and ignored.

++
++ ++ ++ ++ ++ ++
++

Max Spam List Timeouts

++ ++ ++ ++ ++ ++
++

Default: 7

++ ++

If a "Spam List" lookup times out for this many ++consecutive checks without ever succeeding, then the ++particular "Spam List" entry will not be used any ++more, as it appears to be unreachable. When MailScanner ++restarts itself after a few hours, MailScanner will try to ++use the entry again, in case service has resumed ++properly.

++
++ ++ ++ ++ ++ ++
++

Spam List Timeouts History

++ ++ ++ ++ ++ ++
++

Default: 10

++ ++

The total number of Spam List attempts during which ++"Max Spam List Timeouts" will cause the spam list ++fo be marked as "unavailable". See the previous ++comment for more information. The default values of 5 and 10 ++mean that 5 timeouts in any sequence of 10 attempts will ++cause the list to be marked as "unavailable" until ++the next periodic restart (see "Restart ++Every").

++
++ ++ ++ ++ ++ ++
++

Is Definitely Not Spam

++ ++ ++ ++ ++ ++
++

Default: %rules−dir%/spam.whitelist.rules

++ ++

This option would normally be a ruleset. Any messages for ++which the ruleset result is "yes" will never be ++marked as spam. This is used to create a spam ++"whitelist" of addresses which are never spam. You ++will probably want to include your own site (or your own ++site’s IP addresses) in this ruleset.

++
++ ++ ++ ++ ++ ++
++

Is Definitely Spam

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

This option would normally be a ruleset. Any messages for ++which the ruleset result is "yes" will always be ++marked as spam. This is used to create a spam ++"blacklist" of addresses of known spammers.

++
++ ++ ++ ++ ++ ++
++

Definite Spam Is High Scoring

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Setting this to yes means that spam found in the ++blacklist is treated as "High Scoring Spam" in the ++"Spam Actions" section below. Setting it to no ++means that it will be treated as "normal" spam. ++This can also be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Ignore Spam Whitelist If Recipients ++Exceed

++ ++ ++ ++ ++ ++
++

Default: 20

++ ++

Spammers have learnt that they can get their message ++through by sending a message with lots of recipients, one of ++which chooses to whitelist everything coming to them, ++including the spammer. So if a message arrives with more ++than this number of recipients, ignore the "Is ++Definitely Not Spam" whitelist.

++
++ ++

SpamAssassin

++ ++ ++ ++ ++ ++
++

Use SpamAssassin

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to detect spam using the very good ++SpamAssassin package? You must have installed SpamAssassin ++before using this option, otherwise MailScanner will not ++start properly.
++NOTE for FreeBSD port user: The SpamAssassin port is not ++automatically installed with the MailScanner port. You can ++find it at ++/usr/ports/mail/p5−Mail−SpamAssassin.

++
++ ++ ++ ++ ++ ++
++

Max SpamAssassin Size

++ ++ ++ ++ ++ ++
++

Default: 90000

++ ++

SpamAssassin is quite slow when processing very large ++messages. To work round this problem, this option provides a ++maximum size for messages that are processed with ++SpamAssassin. Most real spam is usually less than about ++50,000 bytes per message.

++
++ ++ ++ ++ ++ ++
++

Required Spam Assassin Score

++ ++ ++ ++ ++ ++
++

Default: 6

++ ++

This gives the minimum SpamAssassin score value above ++which messages are spam. This replaces SpamAssassin’s ++own "required_hits" value, so that it can be a ++ruleset and set to different values for different ++users/domains.

++
++ ++ ++ ++ ++ ++
++

High SpamAssassin Score

++ ++ ++ ++ ++ ++
++

Default: 20

++ ++

Messages with a SpamAssassin score greater than this ++value are labelled as being "High Scoring Spam", ++and a different set of "Spam Actions" are applied ++to messages scoring at least this value.

++
++ ++ ++ ++ ++ ++
++

SpamAssassin Auto Whitelist

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

SpamAssassin has a feature which measures the ratio of ++spam to non−spam originating from different addresses, ++and will automatically add addresses to its own internal ++"whitelist" if most of the messages from an ++address is not spam. This option enables this feature of ++SpamAssassin. Please read their documentation for more ++information.

++
++ ++ ++ ++ ++ ++
++

SpamAssassin Prefs File

++ ++ ++ ++ ++ ++
++

Default: %etc−dir%/spam.assassin.prefs.conf

++ ++

SpamAssassin uses a "user preferences" file ++which can be used to set the values of various SpamAssassin ++options. This is the name of that file. Its most useful ++feature is that the RBL/DNSBL/"Spam List" checks ++done by SpamAssassin can be disabled as MailScanner already ++does them and there is little to be gained by doing these ++checks twice for every message.

++
++ ++ ++ ++ ++ ++
++

SpamAssassin Timeout

++ ++ ++ ++ ++ ++
++

Default: 30

++ ++

This option sets the maximum number of seconds to wait ++for SpamAssassin to process a message. This is a useful ++protection against occasional bugs in SpamAssassin that can ++cause it to take hours to process a single message.

++
++ ++ ++ ++ ++ ++
++

Max SpamAssasin Timeouts

++ ++ ++ ++ ++ ++
++

Default: 20

++ ++

If several consecutive calls to SpamAssassin time out, ++then MailScanner decides that there is something stopping ++SpamAssassin from working properly. It will therefore be ++disabled for the next few hours until MailScanner restarts ++itself, at which point it will be tried again.

++
++ ++ ++ ++ ++ ++
++

SpamAssassin Timeouts History

++ ++ ++ ++ ++ ++
++

Default: 30

++ ++

The total number of SpamAssassin attempts during which ++"Max SpamAssassin Timeouts" will cause ++SpamAssassin to be marked as "unavailable". See ++the previous comment for more information. The default ++values of 10 and 20 mean that 10 timeouts in any sequence of ++20 attempts will trigger the behaviour described above, ++until the next periodic restart (see "Restart ++Every").

++
++ ++ ++ ++ ++ ++
++

Check SpamAssassin If On Spam List

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If a message has already triggered any of the "Spam ++List" checks, the SpamAssassin check will be skipped if ++this option is set to "no". This can help reduce ++the load on your server if SpamAssassin checks take a long ++time for some reason.

++
++ ++ ++ ++ ++ ++
++

Always Include SpamAssasin Report

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this option is set, then the "Spam Header" ++will be included in the header of every message, so its ++presence cannot be used to filter out spam by your ++users’ e−mail applications.

++
++ ++ ++ ++ ++ ++
++

Spam Score

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

If a message is spam, and this option is set, then a ++header will be added to the message containing 1 character ++for each point in the SpamAssassin score. This allows users ++to choose for themselves the SpamAssassin scores at which ++they want to do different things with the message, such as ++file it or delete it.

++
++ ++ ++ ++ ++ ++
++

Rebuild Bayes Every

++ ++ ++ ++ ++ ++
++

Default: 0

++ ++

If you are using the Bayesian statistics engine on a busy ++server, you may well need to force a Bayesian database ++rebuild and expiry at regular intervals. This is measures in ++seconds. 24 hours = 86400 seconds. To disable this feature ++set this to 0.

++
++ ++ ++ ++ ++ ++
++

Wait During Bayes Rebuild

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

# The Bayesian database rebuild and expiry may take a 2 ++or 3 minutes # to complete. During this time you can either ++wait, or simply # disable SpamAssassin checks until it has ++completed. WaitDuringBayesRebuild = no

++
++ ++

What to do with spam

++ ++ ++ ++ ++ ++
++

Spam Actions

++ ++ ++ ++ ++ ++
++

Default: deliver

++ ++

This can be any combination of 1 or more of the following ++keywords, and these actions are applied to any message which ++is spam.

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

"deliver" − the message is delivered to ++the recipient as normal

++
++ ++

++
++ ++

"delete" − the message is deleted

++
++ ++

++
++ ++

"store" − the message is stored in the ++quarantine

++
++ ++

++
++ ++

"forward" − an email address is ++supplied, to which the message is forwarded

++
++ ++

++
++ ++

"notify" − Send the recipients a short ++notification that spam addressed to them was not delivered. ++They can then take action to request retrieval of the ++orginal message if they think it was not spam.

++
++ ++

++
++ ++

"striphtml" − convert all in−line ++HTML content in the message to be stripped to plain text, ++which removes all images and scripts and so can be used to ++protect your users from offensive spam. Note that using this ++action on its own does not imply that the message will be ++delivered, you will need to specify "deliver" or ++"forward" to actually deliver the message.

++
++ ++

++
++ ++

"attachment" − Convert the original ++message into an attachment of the message. This means the ++user has to take an extra step to open the spam, and stops ++"web bugs" very effectively.

++
++ ++

++
++ ++

"bounce" − bounce the spam message. This ++option should not be used and must be enabled with the ++"Enable Spam Bounce" option first.

++
++ ++ ++ ++ ++ ++
++

High Scoring Spam Actions

++ ++ ++ ++ ++ ++
++

Default: deliver

++ ++ ++ ++ ++ ++
++

This is the same as the "Spam Actions" option ++above, but it gives the actions to apply to any message ++whose SpamAssassin score is above the "High ++Scoring" threshold described above.

++
++ ++ ++ ++ ++ ++
++

Non Spam Actions

++ ++ ++ ++ ++ ++
++

Default: deliver

++ ++

This is the same as the "Spam Actions" option ++above, except that it applies to messages that are NOT spam. ++The bounce option does not make much sense here so do not ++use it.

++
++ ++ ++ ++ ++ ++
++

Sender Spam Report

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/sender.spam.report.txt

++ ++

When the "bounce" spam action is applied to a ++message that triggered both a "Spam List" check ++and SpamAssassin, this file gives the text to put in that ++message.

++
++ ++ ++ ++ ++ ++
++

Sender Spam List Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/sender.spam.rbl.report.txt

++ ++

When the "bounce" spam action is applied to a ++message that triggered a "Spam List" check, this ++file gives the text to put in that message.

++
++ ++ ++ ++ ++ ++
++

Sender SpamAssassin Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/sender.spam.sa.report.txt

++ ++

When the "bounce" spam action is applied to a ++message that triggered SpamAssassin, this file gives the ++text to put in that message.

++
++ ++ ++ ++ ++ ++
++

Inline Spam Warning

++ ++ ++ ++ ++ ++
++

Default: %reports−dir%/inline.spam.warning.txt

++ ++

If you use the ’attachment’ Spam Action or ++High Scoring Spam Action then this is the location of inline ++spam report that is inserted at the top of the message.

++
++ ++ ++ ++ ++ ++
++

Recipient Spam Report

++ ++ ++ ++ ++ ++
++

Default: ++%reports−dir%/recipient.spam.report.txt

++ ++

If you use the ’notify’ Spam Action or High ++Scoring Spam Action then this is the location of the ++notification message that is sent to the original recipients ++of the message.

++
++ ++ ++ ++ ++ ++
++

Enable Spam Bounce

++ ++ ++ ++ ++ ++
++

Default: %rules−dir%/bounce.rules

++ ++

You can use this ruleset to enable the "bounce" ++Spam Action. You must *only* enable this for mail from sites ++with which you have agreed to bounce possible spam. Use it ++on low−scoring spam only (<10) and only to your ++regular customers for use in the rare case that a message is ++mis−tagged as spam when it shouldn’t have been. ++Beware that many sites will automatically delete the bounce ++messages created by using this option unless you have agreed ++this with them in advance.

++
++ ++

System logging

++ ++ ++ ++ ++ ++
++

Syslog Facility

++ ++ ++ ++ ++ ++
++

Default: mail

++ ++

This is the name of the "facility" used by ++syslogd to log MailScanner’s messages. If this ++doesn’t mean anything to you, then either leave it ++alone or else read the "syslogd" man page.

++
++ ++ ++ ++ ++ ++
++

Log Speed

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to log the processing speed for each section ++of the code for a batch? This can be very useful for ++diagnosing speed problems, particularly in spam ++checking.

++
++ ++ ++ ++ ++ ++
++

Log Spam

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this option is set, then every spam message will be ++logged to syslog. If you get a lot of spam, or your server ++load is high, you will want to leave this option switched ++off. But if you are having trouble with spam detection, ++setting this to "yes" temporarily can provide ++useful debugging output.

++
++ ++ ++ ++ ++ ++
++

Log Non Spam

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want all non−spam to be logged? Useful if ++you want to see all the SpamAssassin reports of mail that ++was marked as non−spam. Note: It will generate a lot ++of log traffic.

++
++ ++ ++ ++ ++ ++
++

Log Permitted Filenames

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

If this option is set, then every attachment filename ++that passes the "filename rules" checks will be ++logged to syslog. Normally this is of no interest. But if ++you are having trouble getting your filename rules correct, ++setting, this can provide useful debugging output.

++
++ ++ ++ ++ ++ ++
++

Log Permitted Filetypes

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Log all the filenames that are allowed by the Filetype ++Rules, or just the filetypes that are denied? This can also ++be the filename of a ruleset.

++
++ ++ ++ ++ ++ ++
++

Log Silent Viruses

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Log all occurrences of "Silent Viruses" as ++defined above? This can only be a simple yes/no value, not a ++ruleset.

++
++ ++

Advanced SpamAssassin Settings

++ ++ ++ ++ ++ ++
++

If you are using Postfix you may well need to use some of ++the settings below, as the home directory for the ++"postfix" user cannot be written to by the ++"postfix" user. You may also need to use these if ++you have installed SpamAssassin somewhere other than the ++default location.

++
++ ++ ++ ++ ++ ++
++

SpamAssassin User State Dir

++ ++ ++ ++ ++ ++
++

Default:

++ ++

The per−user files (bayes, auto−whitelist, ++user_prefs) are looked for here and in ~/.spamassassin/. ++Note the files are mutable. If this is unset then no extra ++places are searched for. NOTE: SpamAssassin is always called ++from MailScanner as the same user, and that is the "Run ++As" user specified in MailScanner.conf. So you can only ++have 1 set of "per−user" files, it’s ++just that you might possibly need to modify this location. ++You should not normally need to set this at all. If using ++Postfix, you probably want to set this to ++/var/spool/MailScanner/spamassassin and do

++
++ ++ ++ ++ ++ ++
++

mkdir /var/spool/MailScanner/spamassassin
++chown postfix.postfix ++/var/spool/MailScanner/spamassassin

++ ++ ++ ++ ++ ++
++

SpamAssassin Install Prefix

++ ++ ++ ++ ++ ++
++

Default:

++ ++

This setting is useful if SpamAssassin is installed in an ++unusual place, e.g. /opt/MailScanner. The install prefix is ++used to find some fallback directories if neither of the ++following two settings work. If this is set then it adds to ++the list of places that are searched; otherwise it has no ++effect.

++
++ ++ ++ ++ ++ ++
++

SpamAssassin Local Rules Dir

++ ++ ++ ++ ++ ++
++

Default:

++ ++

This tells MailScanner where to look for the ++site−local rules. If this is set it adds to the list ++of places that are searched. MailScanner will always look at ++the following places (even if this option is not set):

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

prefix/etc/spamassassin

++
++
++ ++

++
++ ++

prefix/etc/mail/spamassassin

++
++
++ ++

++
++ ++

/usr/local/etc/spamassassin

++
++
++ ++

++
++ ++

/etc/spamassassin

++
++
++ ++

++
++ ++

/etc/mail/spamassassin

++
++
++ ++

++
++ ++

maybe others as well

++
++
++ ++ ++ ++ ++ ++
++

SpamAssassin Default Rules Dir

++ ++ ++ ++ ++ ++
++

Default:

++ ++ ++ ++ ++ ++
++

This tells MailScanner where to look for the default ++rules. If this is set it adds to the list of places that are ++searched. MailScanner will always look at the following ++places (even if this option is not set):

++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

prefix/share/spamassassin

++
++
++ ++

++
++ ++

/usr/local/share/spamassassin

++
++
++ ++

++
++ ++

/usr/share/spamassassin

++
++
++ ++

++
++ ++

maybe others as well

++
++
++ ++

Advanced Settings

++ ++ ++ ++ ++ ++
++

Spam Score Number Format

++ ++ ++ ++ ++ ++
++

Default: %d

++ ++

When putting the value of the spam score of a message ++into the headers, how do you want to format it. If you ++don’t know how to use sprintf() or printf() in C, ++please *do not modify* this value. This can also be the ++filename of a ruleset. A few examples for you:

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

%d

++
++ ++

==> 12

++
++
++ ++

%5.2f

++
++ ++

==> 12.34

++
++
++ ++

%05.1f

++
++ ++

==> 012.3

++
++
++ ++

Debug

++
++
++ ++ ++ ++ ++ ++
++

Default: no

++ ++ ++ ++ ++ ++
++

Not for use by normal users. Setting this option to ++"yes" will put MailScanner into debugging mode, in ++which it creates slightly more output and will not become a ++daemon.

++
++ ++ ++ ++ ++ ++
++

Debug SpamAssassin

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Do you want to debug SpamAssassin from within ++MailScanner?

++
++ ++ ++ ++ ++ ++
++

Run In Foreground

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

Set Run In Foreground to "yes" if you want ++MailScanner to operate normally in foreground (and not as a ++background daemon). Use this if you are controlling the ++execution of MailScanner with a tool like DJB’s ++’supervise’ (see ++http://cr.yp.to/daemontools.html).

++
++ ++ ++ ++ ++ ++
++

LDAP Server

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you are using an LDAP server to read the ++configuration, these are the details required for the LDAP ++connection. The connection is anonymous. Example: ++localhost

++
++ ++ ++ ++ ++ ++
++

LDAP Base

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you are using an LDAP server to read the ++configuration, these are the details required for the LDAP ++connection. The connection is anonymous. Example: o=fsl

++
++ ++ ++ ++ ++ ++
++

LDAP Site

++ ++ ++ ++ ++ ++
++

Default:

++ ++

If you are using an LDAP server to read the ++configuration, these are the details required for the LDAP ++connection. The connection is anonymous. Example: ++default

++
++ ++ ++ ++ ++ ++
++

Always Looked Up Last

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

The value of the option is actually never used, but it is ++evaluated at the end of processing a batch of messages. It ++is designed to be used in conjunction with a Custom ++Function. The Custom Function should then be written to have ++a "side effect" of doing something useful such as ++logging lots of information about the batch of messages to a ++file or an SQL database.

++
++ ++ ++ ++ ++ ++
++

Deliver in Background

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++

When attempting delivery of any messages (when the ++"Delivery Method = batch") the sendmail/Exim ++command will be run in the background so that MailScanner ++does not have to wait for the delivery attempt to complete. ++There are very few good reasons for setting this to ++"no".

++
++ ++ ++ ++ ++ ++
++

Lockfile Dir

++ ++ ++ ++ ++ ++
++

Default: /tmp

++ ++

This is the directory in which lock files are placed to ++stop the virus scanners used while they are in the middle of ++updating themselves with new virus definitions. If you ++change this at all, you will need to edit the ++"autoupdate" scripts for all your virus ++scanners.

++
++ ++ ++ ++ ++ ++
++

Custom Functions Dir

++ ++ ++ ++ ++ ++
++

Default: ++/opt/MailScanner/lib/MailScanner/CustomFunctions
++Default FreeBSD: ++/usr/local/lib/MailScanner/MailScanner/CustomFunctions

++ ++

Where to put the code for your "Custom ++Functions". No code in this directory should be ++over−written by the installation or upgrade process. ++All files starting with "." or ending with ++".rpmnew" will be ignored, all other files will be ++compiled and may be used with Custom Functions.

++
++ ++ ++ ++ ++ ++
++

Lock Type

++ ++ ++ ++ ++ ++
++

Do not set this option to anything unless you know ++exactly what you are doing. For sendmail and Exim, ++MailScanner will choose the correct value by default. This ++affects how mail queue files are locked, and your mail will ++be totally screwed up if you set this option to anything ++other than the correct value for your MTA. So leave it alone ++and let MailScanner choose the correct value for you.

++
++ ++ ++ ++ ++ ++
++

Minimum Code Status

++ ++ ++ ++ ++ ++
++

Default: supported

++ ++

Minimum acceptable code stability status −− ++if we come across code that’s not at least as stable ++as this, we barf. This is currently only used to check that ++you don’t end up using untested virus scanner support ++code without realising it. Don’t even *think* about ++setting this to anything other than "beta" or ++"supported" on a system that receives real mail ++until you have tested it yourself and are happy that it is ++all working as you expect it to. Don’t set it to ++anything other than "supported" on a system that ++could ever receive important mail. Levels used are:

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

++
++ ++

none − there may not even be any code.

++
++ ++

++
++ ++

unsupported − code may be completely untested, a ++contributed dirty hack, anything, really.

++
++ ++

++
++ ++

alpha − code is pretty well untested. Don’t ++assume it will work.

++
++ ++

++
++ ++

beta − code is tested a bit. It should work.

++
++ ++

++
++ ++

supported − code *should* be reliable.

++
++ ++ ++ ++ ++ ++
++

Split Exim Spool

++ ++ ++ ++ ++ ++
++

Default: yes

++ ++ ++ ++ ++ ++
++

Are you using Exim with split spool directories? If you ++don’t understand this, the answer is probably ++"no". Refer to the Exim documentation for more ++information about split spool directories.

++
++ ++ ++ ++ ++ ++
++

Use Default Rules With Multiple ++Recipients

++ ++ ++ ++ ++ ++
++

Default: no

++ ++

When trying to work out the value of configuration ++parameters which are using a ruleset, this controls the ++behaviour when a rule is checking the "To:" ++addresses. If this option is set to "no", then ++some rules will use the result they get from the first ++matching rule for any of the recipients of a message, so the ++exact value cannot be predicted for messages with more than ++1 recipient. This value *cannot* be the filename of a ++ruleset.
++If this option is set to "yes", then the following ++happens when checking the ruleset:

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

a)

++
++ ++

1 recipient. Same behaviour as normal.

++
++ ++

b)

++
++ ++

Several recipients, but all in the same domain ++(domain.com for example). The rules are checked for one that ++matches the string "*@domain.com".

++
++ ++

c)

++
++ ++

Several recipients, not all in the same domain. The ++rules are checked for one that matches the string ++"*@*".

++
++ ++

RULESETS

++ ++ ++ ++ ++ ++
++

Ruleset files should all be put in ++/opt/MailScanner/etc/rules (FreeBSD: ++/usr/local/etc/MailScanner/rules) and their filename should ++end in ".rules" wherever possible.

++ ++

All blank lines are ignored, and comments start with ++"#" and continue to the end of the line, like ++this: # This line is just a comment

++ ++

Other than that, every line is a rule and looks like this ++example: From: john.doe@domain.com yes

++ ++

As you can see, each rule has 3 fields:
++1. Direction
++2. Pattern to match
++3. Result value (or values)

++ ++

1. Direction should be one of the following:

++
++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
++ ++

From:

++
++ ++

Matches when the message is from a matching address

++
++
++ ++

To:

++
++ ++

Matches when the message is to a matching address

++
++
++ ++ ++ ++ ++ ++
++

FromOrTo:

++ ++ ++ ++ ++ ++
++

Matches when the message is from or to a matching ++address

++
++ ++ ++ ++ ++ ++
++

FromAndTo:

++ ++ ++ ++ ++ ++
++

Matches when the message is from and to a matching ++address

++
++ ++ ++ ++ ++ ++
++

The syntax of these is very loosely defined. Any word ++containing "from", any word containing ++"to", any word containing "from" and ++"to" (in either order), and any word containing ++"and" will work just fine. You can put them in ++upper or lower case, it doesn’t matter. And any ++additional punctuation will be ignored.

++ ++ ++ ++ ++ ++
++

This specifies the whether the rule should be matched ++against the sender’s address (or IP address), or the ++recipient’s address.

++
++ ++ ++ ++ ++ ++
++

2. The pattern describes what messages should match this ++rule. Some examples are:

++ ++

user@sub.domain.com # Individual address
++user@* # 1 user at any domain
++*@sub.domain.com # Any user at 1 domain
++*@*.domain.com # Any user at any sub−domain of ++"domain.com"
++*@domain.com # Any user at 1 specific domain
++/pattern/ # Any address matching this Perl regular
++# expression
++192.168. # Any SMTP client IP address in this network
++/pattern−with−no−letters/ # Any SMTP ++client IP address matching this
++# Perl regular expression
++/^192.168.1[4567]./ # Any SMTP client IP address in the ++networks
++# 192.168.14 − 192.168.17
++*@* # Default value
++default # Default value

++ ++

You should be able to do just about anything with ++that.

++ ++

3. The result value is what you could have put in the ++entry in the main mailscanner.conf file had you not given ++the filename of a ruleset instead.

++ ++

See the file EXAMPLES for a few ideas on how to do things ++with this system.

++
++ ++

ATTACHMENT FILENAME RULESET

++ ++ ++ ++ ++ ++
++

This is held in the filename pointed to by the ++configuration option Filename rules. It contains a set of ++rules that are used to judge whether any given file ++attachment should be accepted or rejected on the basis of ++its filename, regardless of whether it is found to be ++virus−infected or not. This can not only be used for ++draconian measures such as banning all .exe attachments, but ++it can be used with any Perl regular expression to provide ++facilities such as detection of attempts at hiding ++filenames.

++ ++

Many Windows e−mail programs (eg. Microsoft ++Outlook) hide common file extensions in an attempt to not ++baffle the user. The result is that while an attachment ++called "Your Document.doc" is helpfully displayed ++as "Your Document", a more sinister attachment ++just as "Looks Safe.txt.pif" will appear simply as ++"Looks Safe.txt". Many users recognise the .txt ++filename extension as applying to plain text files, which ++they know are safe. So even an experienced user may well ++double−click on this attachment thinking it is just ++going to start Notepad and display the text file. However, ++the file is really an MS−Dos shortcut (.pif file) and ++can execute any arbitrary commands the author wanted: all ++without any indication to the unwitting user.

++ ++

The rules are matched in order from the top to the bottom ++of the file, and the first rule containing a matching ++regular expression is used. Each line of the file is either ++blank, a comment (in which case it starts with a ++’#’ character) or is a rule made up of 4 fields ++separated by one or more TAB characters:

++
++ ++ ++ ++ ++ ++
++

allow / deny

++ ++ ++ ++ ++ ++
++

Accept or reject the attachment if its filename matches ++the regular expression

++
++ ++ ++ ++ ++ ++
++

regular expression

++ ++ ++ ++ ++ ++
++

The rule is executed if the attachment matches this ++expression. It may optionally be surrounded in ++’/’ characters.

++
++ ++ ++ ++ ++ ++
++

log text

++ ++ ++ ++ ++ ++
++

If the rule matches, this text is placed in the syslog. ++If the text is "−", no string is logged.

++
++ ++ ++ ++ ++ ++
++

user text

++ ++ ++ ++ ++ ++
++

If the rule matches, this text is placed in the text ++message sent to the user. If the text is ++"−", no text is used.

++
++ ++ ++ ++ ++ ++
++

Please have a look at the filename.rules.conf or ++filename.rules.conf.sample file provided with this ++distribution/package/port.

++
++ ++

SEE ALSO

++ ++ ++ ++ ++ ++
++

MailScanner(8)

++
++
++ ++ diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/pkg-message /server-root/ports/mail/mailscanner-devel/pkg-message --- /server-root/ports/mail/mailscanner-devel.orig/pkg-message Sun Jan 18 23:04:05 2004 +++ /server-root/ports/mail/mailscanner-devel/pkg-message Wed Dec 15 21:30:53 2004 @@ -31,6 +31,10 @@ to update your virus-wrappers, autoupdates, reports and languages.conf + The english languages.conf is updated automatically. For all + other versions use the update_languages_conf tool found + in the work directory of this port. + Sophos users: Please take a look at the Sophos install script %%PREFIX%%/share/doc/MailScanner/Sophos.install.freebsd diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/pkg-plist /server-root/ports/mail/mailscanner-devel/pkg-plist --- /server-root/ports/mail/mailscanner-devel.orig/pkg-plist Fri Oct 22 16:11:28 2004 +++ /server-root/ports/mail/mailscanner-devel/pkg-plist Wed Dec 15 21:33:29 2004 @@ -1,4 +1,4 @@ -@comment $FreeBSD: ports/mail/mailscanner-devel/pkg-plist,v 1.14 2004/10/22 14:11:28 sergei Exp $ +@comment $FreeBSD: ports/mail/mailscanner/pkg-plist,v 1.16 2004/11/01 20:10:10 sem Exp $ etc/MailScanner/MailScanner.conf.sample etc/MailScanner/filename.rules.conf.sample etc/MailScanner/filetype.rules.conf.sample @@ -80,6 +80,7 @@ libexec/MailScanner/norman-autoupdate.sample libexec/MailScanner/norman-wrapper.sample libexec/MailScanner/panda-wrapper.sample +libexec/MailScanner/panda-autoupdate.sample libexec/MailScanner/rav-autoupdate.sample libexec/MailScanner/rav-wrapper.sample libexec/MailScanner/sophos-autoupdate.sample @@ -451,6 +452,7 @@ %%PORTDOCS%%%%DOCSDIR%%/Sophos.install.freebsd %%PORTDOCS%%%%DOCSDIR%%/book.cover.gif %%PORTDOCS%%%%DOCSDIR%%/building.txt +%%PORTDOCS%%%%DOCSDIR%%/docs.html %%PORTDOCS%%%%DOCSDIR%%/donations.shtml %%PORTDOCS%%%%DOCSDIR%%/downloadgraphs.shtml %%PORTDOCS%%%%DOCSDIR%%/downloads.shtml @@ -522,9 +524,12 @@ %%PORTDOCS%%%%DOCSDIR%%/poetry.shtml %%PORTDOCS%%%%DOCSDIR%%/poweredby.google.gif %%PORTDOCS%%%%DOCSDIR%%/poweredby.transtec.gif +%%PORTDOCS%%%%DOCSDIR%%/phishing.html +%%PORTDOCS%%%%DOCSDIR%%/phishing.jpg +%%PORTDOCS%%%%DOCSDIR%%/phishing2.jpg +%%PORTDOCS%%%%DOCSDIR%%/pressreleases.html %%PORTDOCS%%%%DOCSDIR%%/presentations.html %%PORTDOCS%%%%DOCSDIR%%/press.html -%%PORTDOCS%%%%DOCSDIR%%/pressreleases.html %%PORTDOCS%%%%DOCSDIR%%/qmail/qmail-queue.zip %%PORTDOCS%%%%DOCSDIR%%/readme.shtml %%PORTDOCS%%%%DOCSDIR%%/reject.html --- MailScanner-devel-4.37.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 21:00:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9205916A50A for ; Wed, 15 Dec 2004 21:00:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB2043D60 for ; Wed, 15 Dec 2004 21:00:56 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFL0ukq070460 for ; Wed, 15 Dec 2004 21:00:56 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFL0u0c070456; Wed, 15 Dec 2004 21:00:56 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 21:00:56 GMT Resent-Message-Id: <200412152100.iBFL0u0c070456@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, Keith Ray Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E937D16A4CE for ; Wed, 15 Dec 2004 20:56:26 +0000 (GMT) Received: from mail.nullify.org (nullify.org [69.93.158.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FDE943D2D for ; Wed, 15 Dec 2004 20:56:26 +0000 (GMT) (envelope-from root@nullify.org) Received: from nullify.org (localhost [127.0.0.1]) by mail.nullify.org (8.13.1/8.13.1) with ESMTP id iBFKu9pW081730 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 15 Dec 2004 14:56:09 -0600 (CST) (envelope-from root@nullify.org) Received: (from root@localhost) by nullify.org (8.13.1/8.13.1/Submit) id iBFKu0R6081729; Wed, 15 Dec 2004 14:56:00 -0600 (CST) (envelope-from root) Message-Id: <200412152056.iBFKu0R6081729@nullify.org> Date: Wed, 15 Dec 2004 14:56:00 -0600 (CST) From: Keith Ray To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75130: [NEW PORT] www/mono-xsp: A light-weight web server written in C# X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Keith Ray List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 21:00:56 -0000 >Number: 75130 >Category: ports >Synopsis: [NEW PORT] www/mono-xsp: A light-weight web server written in C# >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 Dec 15 21:00:55 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Keith Ray >Release: FreeBSD 5.3-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD nullify.org 5.3-RELEASE-p1 FreeBSD 5.3-RELEASE-p1 #8: Fri Dec 3 10:45:13 CST 2004 root@nullify.org:/usr/obj/usr/src/sys/NULLIFY i386 >Description: XSP is a simple web server written in C# that can be used to run your ASP.NET applications. >How-To-Repeat: >Fix: --- mono-xsp.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: # # mono-xsp # mono-xsp/distinfo # mono-xsp/Makefile # mono-xsp/pkg-descr # mono-xsp/pkg-plist # echo c - mono-xsp mkdir -p mono-xsp > /dev/null 2>&1 echo x - mono-xsp/distinfo sed 's/^X//' >mono-xsp/distinfo << 'END-of-mono-xsp/distinfo' XMD5 (xsp-1.0.5.tar.gz) = be2859171349a9e21befddc5ef534a52 XSIZE (xsp-1.0.5.tar.gz) = 169065 END-of-mono-xsp/distinfo echo x - mono-xsp/Makefile sed 's/^X//' >mono-xsp/Makefile << 'END-of-mono-xsp/Makefile' X# New ports collection makefile for: mono-xsp X# Date created: 15 December 2004 X# Whom: Keith Ray X# X# $FreeBSD$ X# X XPORTNAME= mono-xsp XPORTVERSION= 1.0.5 XCATEGORIES= www XDISTNAME= xsp-${PORTVERSION} XMASTER_SITES= http://www.go-mono.com/archive/1.0.5/ X XMAINTAINER= keith@nullify.org XCOMMENT= A light-weight web server written in C# X XBUILD_DEPENDS= mcs:${PORTSDIR}/lang/mono X XUSE_GMAKE= yes XGNU_CONFIGURE= yes XCONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} X XMAN1= asp-state.1 dbsessmgr.1 mod-mono-server.1 xsp.1 X X.include END-of-mono-xsp/Makefile echo x - mono-xsp/pkg-descr sed 's/^X//' >mono-xsp/pkg-descr << 'END-of-mono-xsp/pkg-descr' XXSP is a simple web server written in C# that can be used to run your ASP.NET Xapplications. X XWWW: http://www.go-mono.com/asp-net.html#xsp X X- Keith Ray Xkeith@nullify.org END-of-mono-xsp/pkg-descr echo x - mono-xsp/pkg-plist sed 's/^X//' >mono-xsp/pkg-plist << 'END-of-mono-xsp/pkg-plist' Xbin/asp-state Xbin/dbsessmgr Xbin/mod-mono-server Xbin/xsp Xlib/mono/1.0/asp-state.exe Xlib/mono/1.0/asp-state.exe.config Xlib/mono/1.0/dbsessmgr.exe Xlib/mono/1.0/dbsessmgr.exe.config Xlib/mono/1.0/mod-mono-server.exe Xlib/mono/1.0/xsp.exe Xshare/doc/xsp/test/CompressExtension.cs Xshare/doc/xsp/test/ConverterService.asmx Xshare/doc/xsp/test/ServiceClient.exe Xshare/doc/xsp/test/ServiceClient.exe.config Xshare/doc/xsp/test/TestService.asmx Xshare/doc/xsp/test/authtest/index.aspx Xshare/doc/xsp/test/authtest/login.aspx Xshare/doc/xsp/test/authtest/web.config Xshare/doc/xsp/test/bin/codebehind1.dll Xshare/doc/xsp/test/bin/extensions.dll Xshare/doc/xsp/test/bin/tabcontrol.dll Xshare/doc/xsp/test/bin/tabcontrol2.dll Xshare/doc/xsp/test/bin/typedesc.dll Xshare/doc/xsp/test/body.inc Xshare/doc/xsp/test/browsercaps.aspx Xshare/doc/xsp/test/button.aspx Xshare/doc/xsp/test/calendar.aspx Xshare/doc/xsp/test/chunked.ashx Xshare/doc/xsp/test/code-render.aspx Xshare/doc/xsp/test/codebehind1.aspx Xshare/doc/xsp/test/databind-arraylist.aspx Xshare/doc/xsp/test/databind-attribute.aspx Xshare/doc/xsp/test/databind-class.aspx Xshare/doc/xsp/test/databind-template.aspx Xshare/doc/xsp/test/datalist.aspx Xshare/doc/xsp/test/dbpage1.aspx Xshare/doc/xsp/test/dbpage2.aspx Xshare/doc/xsp/test/extensions.dll Xshare/doc/xsp/test/favicon.ico Xshare/doc/xsp/test/global.asax Xshare/doc/xsp/test/header.inc Xshare/doc/xsp/test/htmlanchor.aspx Xshare/doc/xsp/test/htmlbutton.aspx Xshare/doc/xsp/test/htmlgeneric.aspx Xshare/doc/xsp/test/htmlimage.aspx Xshare/doc/xsp/test/htmlinputbutton.aspx Xshare/doc/xsp/test/htmlinputcheckbox.aspx Xshare/doc/xsp/test/htmlinputfile.aspx Xshare/doc/xsp/test/htmlinputhidden.aspx Xshare/doc/xsp/test/htmlinputimage.aspx Xshare/doc/xsp/test/htmlinputradiobutton.aspx Xshare/doc/xsp/test/htmlinputtext.aspx Xshare/doc/xsp/test/htmlselect.aspx Xshare/doc/xsp/test/htmltable.aspx Xshare/doc/xsp/test/htmltextarea.aspx Xshare/doc/xsp/test/includetest.aspx Xshare/doc/xsp/test/index.aspx Xshare/doc/xsp/test/listitem.aspx Xshare/doc/xsp/test/mod-mono-server.exe.config Xshare/doc/xsp/test/mono-powered-big.png Xshare/doc/xsp/test/mono-xsp.css Xshare/doc/xsp/test/mono.png Xshare/doc/xsp/test/monobutton.png Xshare/doc/xsp/test/monodoc.ashx Xshare/doc/xsp/test/people.xml Xshare/doc/xsp/test/peopletable.xsl Xshare/doc/xsp/test/registertest.aspx Xshare/doc/xsp/test/registertest1.ascx Xshare/doc/xsp/test/registertest2.ascx Xshare/doc/xsp/test/sample.webapp Xshare/doc/xsp/test/server-side-object.aspx Xshare/doc/xsp/test/session1.aspx Xshare/doc/xsp/test/small-icon.png Xshare/doc/xsp/test/tabcontrol.aspx Xshare/doc/xsp/test/tabcontrol2.aspx Xshare/doc/xsp/test/temperature.aspx Xshare/doc/xsp/test/typedesc.aspx Xshare/doc/xsp/test/validator1.aspx Xshare/doc/xsp/test/web.config Xshare/doc/xsp/test/web_adrotator.aspx Xshare/doc/xsp/test/web_adrotator.xml Xshare/doc/xsp/test/web_button.aspx Xshare/doc/xsp/test/web_checkbox.aspx Xshare/doc/xsp/test/web_checkboxlist.aspx Xshare/doc/xsp/test/web_datagrid.aspx Xshare/doc/xsp/test/web_datagrid_command.aspx Xshare/doc/xsp/test/web_dropdownlist.aspx Xshare/doc/xsp/test/web_hyperlink.aspx Xshare/doc/xsp/test/web_image.aspx Xshare/doc/xsp/test/web_imagebutton.aspx Xshare/doc/xsp/test/web_label.aspx Xshare/doc/xsp/test/web_linkbutton.aspx Xshare/doc/xsp/test/web_listbox.aspx Xshare/doc/xsp/test/web_literal.aspx Xshare/doc/xsp/test/web_panel.aspx Xshare/doc/xsp/test/web_placeholder.aspx Xshare/doc/xsp/test/web_radiobutton.aspx Xshare/doc/xsp/test/web_radiobuttonlist.aspx Xshare/doc/xsp/test/web_regularexpressionvalidator.aspx Xshare/doc/xsp/test/web_repeater.aspx Xshare/doc/xsp/test/web_table.aspx Xshare/doc/xsp/test/web_table2.aspx Xshare/doc/xsp/test/web_textbox.aspx Xshare/doc/xsp/test/web_xml.aspx Xshare/doc/xsp/test/webhandler.ashx Xshare/doc/xsp/test/xsp.exe.config X@dirrm share/doc/xsp/test/bin X@dirrm share/doc/xsp/test/authtest X@dirrm share/doc/xsp/test X@dirrm share/doc/xsp END-of-mono-xsp/pkg-plist exit --- mono-xsp.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 21:40:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BB1816A57C for ; Wed, 15 Dec 2004 21:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDCDA43D5A for ; Wed, 15 Dec 2004 21:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFLeLQ1079816 for ; Wed, 15 Dec 2004 21:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFLeL2d079815; Wed, 15 Dec 2004 21:40:21 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 21:40:21 GMT Resent-Message-Id: <200412152140.iBFLeL2d079815@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, Etienne Robillard Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE4B816A4CE for ; Wed, 15 Dec 2004 21:34:08 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0D4543D5A for ; Wed, 15 Dec 2004 21:34:08 +0000 (GMT) (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 iBFLY8t7048651 for ; Wed, 15 Dec 2004 21:34:08 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBFLNp4j012612; Wed, 15 Dec 2004 21:23:51 GMT (envelope-from nobody) Message-Id: <200412152123.iBFLNp4j012612@www.freebsd.org> Date: Wed, 15 Dec 2004 21:23:51 GMT From: Etienne Robillard To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75133: x11-server/xorg-server is missing dependencies to x11/xorg-libraries during compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 21:40:22 -0000 >Number: 75133 >Category: ports >Synopsis: x11-server/xorg-server is missing dependencies to x11/xorg-libraries during compilation >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 Dec 15 21:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Etienne Robillard >Release: FreeBSD-5.3 STABLE >Organization: Independant >Environment: FreeBSD fuba 5.3-STABLE FreeBSD 5.3-STABLE #5: Mon Dec 13 14:34:30 UTC 2004 erob@fuba:/usr/obj/usr/src/sys/HANNAH i386 >Description: - The 'xorg-server' port doesn't compile without having 'xorg-libraries' installed. - USE_XLIB is defined inside 'bsd.port.mk'. Is current configuration is set to: .if defined(USE_XLIB) LIB_DEPENDS+=X11.6:${X_LIBRARIES_PORT} ... Here's the scrubbed compilation result without having xorg-libraries installed: .. In file included from accessx.c:32: config.h:32:28: X11/IntrinsicP.h: No such file or directory config.h:33:28: X11/StringDefs.h: No such file or directory config.h:34:29: X11/Xmu/SysUtil.h: No such file or directory config.h:78:34: X11/extensions/XKBui.h: No such file or directory .. >How-To-Repeat: pkg_delete -rf 'xorg-libraries*'; pkg_delete -rf 'xorg-server*'; cd /usr/ports/x11-server/xorg-server && make distclean && make install clean; >Fix: As a work-around, change the line (in Mk/bsd.port.mk) where LIB_DEPENDS+=X11.6:${X_LIBRARIES_PORT} to BUILD_DEPENDS+=xorg-libraries:${X_LIBRARIES_PORT} and see if it's causing havoc with other X11 ports... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 22:10:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49A1E16A4CE for ; Wed, 15 Dec 2004 22:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B53243D4C for ; Wed, 15 Dec 2004 22:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFMANdt085306 for ; Wed, 15 Dec 2004 22:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFMAN4B085305; Wed, 15 Dec 2004 22:10:23 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 22:10:23 GMT Resent-Message-Id: <200412152210.iBFMAN4B085305@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, Diane Bruce Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C87F716A4CE for ; Wed, 15 Dec 2004 22:02:15 +0000 (GMT) Received: from heceta.db.net (heceta.db.net [142.46.199.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73A0743D45 for ; Wed, 15 Dec 2004 22:02:15 +0000 (GMT) (envelope-from db@db.net) Received: from heceta.db.net ([142.46.199.182] helo=localhost ident=mailnull) by heceta.db.net with esmtp (Exim 4.24; FreeBSD 4.8) id 1CehE3-0001Kt-6E for freebsd-gnats-submit@freebsd.org; Wed, 15 Dec 2004 17:02:27 -0500 Received: from localhost.dbn ([127.0.0.1] helo=night.dbn) by night.db.net with esmtp (Exim 4.43 (FreeBSD)) id 1CehE1-0007zN-W5 for FreeBSD-gnats-submit@freebsd.org; Wed, 15 Dec 2004 17:02:26 -0500 Received: (from db@localhost) by night.dbn (8.13.1/8.13.1/Submit) id iBFM2P3i030712; Wed, 15 Dec 2004 17:02:25 -0500 (EST) (envelope-from db) Message-Id: <200412152202.iBFM2P3i030712@night.dbn> Date: Wed, 15 Dec 2004 17:02:25 -0500 (EST) From: Diane Bruce To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75134: [MAINTAINER] comms/qsstv: update to 5.3b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 22:10:24 -0000 >Number: 75134 >Category: ports >Synopsis: [MAINTAINER] comms/qsstv: update to 5.3b >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 Dec 15 22:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Diane Bruce >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD night.db.net 5.3-STABLE FreeBSD 5.3-STABLE #5: Sat Nov 20 15:12:34 EST 2004 >Description: - Update to 5.3b Apparently 5.3a had documentation problems. See comments at http://users.telenet.be/on4qz Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- qsstv-5.3b.patch begins here --- diff -ruN --exclude=CVS /usr/ports/comms/qsstv/Makefile /oldusr/home/db/qsstv/Makefile --- /usr/ports/comms/qsstv/Makefile Wed Dec 15 16:40:43 2004 +++ /oldusr/home/db/qsstv/Makefile Wed Dec 15 16:40:57 2004 @@ -6,7 +6,7 @@ # PORTNAME= qsstv -PORTVERSION= 5.3a +PORTVERSION= 5.3b CATEGORIES= comms MASTER_SITES= http://users.telenet.be/on4qz/download/ diff -ruN --exclude=CVS /usr/ports/comms/qsstv/distinfo /oldusr/home/db/qsstv/distinfo --- /usr/ports/comms/qsstv/distinfo Thu Dec 9 17:08:55 2004 +++ /oldusr/home/db/qsstv/distinfo Wed Dec 15 16:44:23 2004 @@ -1,2 +1,2 @@ -MD5 (qsstv-5.3a.tar.gz) = fcbde3b771640d3de14a291057cb04cc -SIZE (qsstv-5.3a.tar.gz) = 1192395 +MD5 (qsstv-5.3b.tar.gz) = 139f9183b54a11a2ee9e81d6ff27020e +SIZE (qsstv-5.3b.tar.gz) = 1194440 --- qsstv-5.3b.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 22:40:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DF1716A4CF for ; Wed, 15 Dec 2004 22:40:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A7A643D45 for ; Wed, 15 Dec 2004 22:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFMeQMe087292 for ; Wed, 15 Dec 2004 22:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFMeQPV087291; Wed, 15 Dec 2004 22:40:26 GMT (envelope-from gnats) Resent-Date: Wed, 15 Dec 2004 22:40:26 GMT Resent-Message-Id: <200412152240.iBFMeQPV087291@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, Ted Faber Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B87E116A4CE for ; Wed, 15 Dec 2004 22:36:54 +0000 (GMT) Received: from pun.isi.edu (pun.isi.edu [128.9.160.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F51043D2D for ; Wed, 15 Dec 2004 22:36:54 +0000 (GMT) (envelope-from faber@pun.isi.edu) Received: from pun.isi.edu (localhost [127.0.0.1]) by pun.isi.edu (8.13.1/8.13.1) with ESMTP id iBFMarUg092442; Wed, 15 Dec 2004 14:36:53 -0800 (PST) (envelope-from faber@pun.isi.edu) Received: (from faber@localhost) by pun.isi.edu (8.13.1/8.13.1/Submit) id iBFMaqS8092441; Wed, 15 Dec 2004 14:36:52 -0800 (PST) (envelope-from faber) Message-Id: <200412152236.iBFMaqS8092441@pun.isi.edu> Date: Wed, 15 Dec 2004 14:36:52 -0800 (PST) From: Ted Faber To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Ted Faber Subject: ports/75136: New Port mail/xfaces (really a reinclusion) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ted Faber List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 22:40:27 -0000 >Number: 75136 >Category: ports >Synopsis: New Port mail/xfaces (really a reinclusion) >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 Dec 15 22:40:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ted Faber >Release: FreeBSD 6.0-CURRENT i386 >Organization: USC/ISI >Environment: System: FreeBSD pun.isi.edu 6.0-CURRENT FreeBSD 6.0-CURRENT #1: Tue Dec 14 15:31:35 PST 2004 root@pun.isi.edu:/usr/obj/usr/src/sys/PUN i386 >Description: New port mail/xfaces Xfaces used to be in the ports dir, but was replaced some time ago by mail/faces (on which it depends). Xfaces does some things that faces does not - presenting shaped transparent icons for the messages in the inbox and presenting more than 10 messages. I'd like to request a return of xfaces and I've included a working port that passes portlint to make that easy. >How-To-Repeat: N/A >Fix: Attached shar archive: # 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: # # xfaces/ # xfaces/Makefile # xfaces/distinfo # xfaces/pkg-plist # xfaces/pkg-descr # echo c - xfaces/ mkdir -p xfaces/ > /dev/null 2>&1 echo x - xfaces/Makefile sed 's/^X//' >xfaces/Makefile << 'END-of-xfaces/Makefile' X# New ports collection makefile for: xfaces-3.3 X# Date created: 15 Dec 2001 X# Whom: Ted Faber X# $FreeBSD$ X# X XPORTNAME= xfaces XPORTVERSION= 3.3 XPORTREVISION= 0 XCATEGORIES= mail XMASTER_SITES= ftp://ftp.cs.indiana.edu/pub/faces/xfaces/ XEXTRACT_SUFX= .tar.Z XDIST_SUBDIR= ${PORTNAME} X XPATCH_SITES= ${MASTER_SITES} XPATCHFILES= patch-charnier patch-faber patch-graaff patch-kinzler3 X# patch-graff above has a partial pathname in there that none of the others X# do. The default value for PATCH_DIST_STRIP [-p0] fails on that, this empty X# value keeps any -p option from the patch command and works. XPATCH_DIST_STRIP= X XMAINTAINER= faber@isi.edu XCOMMENT= Display shaped icons for mail spool contents X XLIB_DEPENDS=compface:${PORTSDIR}/mail/faces:install X X# GNU make properly processes some overridden rules in the makefile that X# imake generates. Specifically, installing the html docs. XUSE_GMAKE=yes XUSE_IMAKE=yes X XMAN1= xfaces.1 X X.include END-of-xfaces/Makefile echo x - xfaces/distinfo sed 's/^X//' >xfaces/distinfo << 'END-of-xfaces/distinfo' XMD5 (xfaces/xfaces-3.3.tar.Z) = c47b81f72b892be37d25dd29567bec04 XSIZE (xfaces/xfaces-3.3.tar.Z) = 182793 XMD5 (xfaces/patch-charnier) = 72a41efb8da8bccf7241b5b879c52678 XSIZE (xfaces/patch-charnier) = 1439 XMD5 (xfaces/patch-faber) = ffc8ac725a1730c9d35024a10c74e1ab XSIZE (xfaces/patch-faber) = 1057 XMD5 (xfaces/patch-graaff) = 26e7ffececf2f8c40fd3bbd3a54f1ce1 XSIZE (xfaces/patch-graaff) = 3950 XMD5 (xfaces/patch-kinzler3) = 253a7748f80d01e34f3d3fc6e2cc7857 XSIZE (xfaces/patch-kinzler3) = 2997 END-of-xfaces/distinfo echo x - xfaces/pkg-plist sed 's/^X//' >xfaces/pkg-plist << 'END-of-xfaces/pkg-plist' Xbin/xfaces Xlib/X11/app-defaults/XFaces END-of-xfaces/pkg-plist echo x - xfaces/pkg-descr sed 's/^X//' >xfaces/pkg-descr << 'END-of-xfaces/pkg-descr' XA program for monitoring mailspools (and other things) that can display Xshaped icons. X XWWW: ftp://ftp.cs.indiana.edu/pub/faces/index.html END-of-xfaces/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 22:51:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DA0516A4CE; Wed, 15 Dec 2004 22:51:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F03443D49; Wed, 15 Dec 2004 22:51:55 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFMptMx087689; Wed, 15 Dec 2004 22:51:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFMpts6087685; Wed, 15 Dec 2004 22:51:55 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 22:51:55 GMT From: Edwin Groothuis Message-Id: <200412152251.iBFMpts6087685@freefall.freebsd.org> To: fbsd@opal.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75117: update port: net/boinc-client - Makefile/plist correction for when package is used X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 22:51:55 -0000 Synopsis: update port: net/boinc-client - Makefile/plist correction for when package is used State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 22:51:52 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75117 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 22:57:10 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0424616A533; Wed, 15 Dec 2004 22:57:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF13843D2F; Wed, 15 Dec 2004 22:57:09 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFMv9df088046; Wed, 15 Dec 2004 22:57:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFMv9GN088042; Wed, 15 Dec 2004 22:57:09 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 22:57:09 GMT From: Edwin Groothuis Message-Id: <200412152257.iBFMv9GN088042@freefall.freebsd.org> To: antonio@php.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75123: New port: devel/pear-HTML_QuickForm_SelectFilter Element for PEAR::HTML_QuickForm that defines dynamic filters X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 22:57:10 -0000 Synopsis: New port: devel/pear-HTML_QuickForm_SelectFilter Element for PEAR::HTML_QuickForm that defines dynamic filters State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 22:57:08 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75123 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 22:57:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5408F16A4D0; Wed, 15 Dec 2004 22:57:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3138843D41; Wed, 15 Dec 2004 22:57:16 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFMvG5k088090; Wed, 15 Dec 2004 22:57:16 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFMvFRn088086; Wed, 15 Dec 2004 22:57:15 GMT (envelope-from pav) Date: Wed, 15 Dec 2004 22:57:15 GMT From: Pav Lucistnik Message-Id: <200412152257.iBFMvFRn088086@freefall.freebsd.org> To: freebsd-dr@durchnull.de, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74991: Update port: games/pydance X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 22:57:16 -0000 Synopsis: Update port: games/pydance State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Dec 15 22:57:09 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74991 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 23:05:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DF4016A4CE; Wed, 15 Dec 2004 23:05:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07DB643D45; Wed, 15 Dec 2004 23:05:46 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFN5jCP092245; Wed, 15 Dec 2004 23:05:45 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFN5jKa092241; Wed, 15 Dec 2004 23:05:45 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 23:05:45 GMT From: Edwin Groothuis Message-Id: <200412152305.iBFN5jKa092241@freefall.freebsd.org> To: cartola@openit.com.br, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71849: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 23:05:46 -0000 Synopsis: New port: graphics/hugin - a gui system to mount panoramic images from individual pictures State-Changed-From-To: suspended->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 23:05:36 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71849 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 23:11:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FF8316A4D2; Wed, 15 Dec 2004 23:11:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C7E343D48; Wed, 15 Dec 2004 23:11:56 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFNBtGF092788; Wed, 15 Dec 2004 23:11:55 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFNBtU7092784; Wed, 15 Dec 2004 23:11:55 GMT (envelope-from pav) Date: Wed, 15 Dec 2004 23:11:55 GMT From: Pav Lucistnik Message-Id: <200412152311.iBFNBtU7092784@freefall.freebsd.org> To: psh@iki.fi, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75084: [PATCH] math/clarence marked as BROKEN but works fine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 23:11:56 -0000 Synopsis: [PATCH] math/clarence marked as BROKEN but works fine State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Wed Dec 15 23:06:42 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75084 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 23:31:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B92E016A4CE; Wed, 15 Dec 2004 23:31:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B68143D5C; Wed, 15 Dec 2004 23:31:21 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFNVLGl094421; Wed, 15 Dec 2004 23:31:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFNVLFd094417; Wed, 15 Dec 2004 23:31:21 GMT (envelope-from edwin) Date: Wed, 15 Dec 2004 23:31:21 GMT From: Edwin Groothuis Message-Id: <200412152331.iBFNVLFd094417@freefall.freebsd.org> To: wjw@withagen.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74350: [Port update] devel/cocktail corrected for 64bits compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 23:31:21 -0000 Synopsis: [Port update] devel/cocktail corrected for 64bits compilation State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Wed Dec 15 23:30:02 GMT 2004 State-Changed-Why: Same as 71940 (most likely) WJW will have a look at it in the new year if it still breaks. http://www.freebsd.org/cgi/query-pr.cgi?pr=74350 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 23:45:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1E6916A4F7; Wed, 15 Dec 2004 23:45:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F37143D55; Wed, 15 Dec 2004 23:45:35 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from freefall.freebsd.org (lesi@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBFNjZ6f094824; Wed, 15 Dec 2004 23:45:35 GMT (envelope-from lesi@freefall.freebsd.org) Received: (from lesi@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBFNjYwn094820; Wed, 15 Dec 2004 23:45:34 GMT (envelope-from lesi) Date: Wed, 15 Dec 2004 23:45:34 GMT From: Dejan Lesjak Message-Id: <200412152345.iBFNjYwn094820@freefall.freebsd.org> To: lesi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org Subject: Re: ports/75133: x11-server/xorg-server is missing dependencies to x11/xorg-libraries during compilation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 23:45:41 -0000 Synopsis: x11-server/xorg-server is missing dependencies to x11/xorg-libraries during compilation Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: lesi Responsible-Changed-When: Wed Dec 15 23:44:49 GMT 2004 Responsible-Changed-Why: Over to x11@. http://www.freebsd.org/cgi/query-pr.cgi?pr=75133 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 00:10:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C698D16A4CE for ; Thu, 16 Dec 2004 00:10:09 +0000 (GMT) Received: from niobe.ijs.si (mail.ijs.si [193.2.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11EA543D55 for ; Thu, 16 Dec 2004 00:10:09 +0000 (GMT) (envelope-from lesi@freebsd.org) Received: from localhost (localhost.ijs.si [127.0.0.1]) by niobe.ijs.si (Postfix) with ESMTP id 47F48238CEC for ; Thu, 16 Dec 2004 01:10:08 +0100 (CET) Received: from niobe.ijs.si ([127.0.0.1]) by localhost (niobe.ijs.si [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24792-11 for ; Thu, 16 Dec 2004 01:10:06 +0100 (CET) Received: from metatron.ijs.si (metatron.ijs.si [193.2.4.152]) by niobe.ijs.si (Postfix) with ESMTP id DE28B238CDC for ; Thu, 16 Dec 2004 01:10:05 +0100 (CET) Received: from rincewind.ijs.si (rincewind.ijs.si [193.2.4.137]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by metatron.ijs.si (Postfix) with ESMTP id A7E231C00B0B for ; Thu, 16 Dec 2004 01:10:05 +0100 (CET) From: Dejan Lesjak To: freebsd-ports-bugs@freebsd.org Date: Thu, 16 Dec 2004 01:10:03 +0100 User-Agent: KMail/1.7.2 References: <200412142301.iBEN1KkM076739@freefall.freebsd.org> In-Reply-To: <200412142301.iBEN1KkM076739@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200412160110.04415.lesi@freebsd.org> X-Virus-Scanned: amavisd-new at ijs.si Subject: Re: ports/75079: Update audio/yammi to 1.2-rc; fix imake issue with new x.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 00:10:10 -0000 Doesn't seem to compile on 4.x: gmake[3]: Entering directory `/usr/ports/audio/yammi/work/yammi-1.2-rc/src' source='main.cpp' object='main.o' libtool=no \ depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \ depmode=gcc /bin/sh ../admin/depcomp \ c++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -DQT_THREAD_SUPPORT -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -O2 -O -pipe -D_THREAD_SAFE -fno-exceptions -fno-check-new -fno-common -c -o main.o `test -f 'main.cpp' || echo './'`main.cpp In file included from /usr/include/string.h:50, from /usr/X11R6/include/qcstring.h:46, from /usr/X11R6/include/qstring.h:42, from /usr/X11R6/include/qwindowdefs.h:44, from /usr/X11R6/include/qwidget.h:42, from /usr/X11R6/include/qdesktopwidget.h:40, from /usr/X11R6/include/qapplication.h:42, from /usr/local/include/kapplication.h:40, from /usr/local/include/kuniqueapplication.h:24, from main.cpp:7: /usr/include/sys/cdefs.h:273: warning: `_POSIX_C_SOURCE' is not defined /usr/include/sys/cdefs.h:279: warning: `_POSIX_C_SOURCE' is not defined In file included from /usr/include/g++/iostream.h:31, from /usr/include/g++/stl_alloc.h:45, from /usr/include/g++/alloc.h:21, from /usr/include/g++/std/bastring.h:39, from /usr/include/g++/string:6, from /usr/X11R6/include/qstring.h:56, from /usr/X11R6/include/qwindowdefs.h:44, from /usr/X11R6/include/qwidget.h:42, from /usr/X11R6/include/qdesktopwidget.h:40, from /usr/X11R6/include/qapplication.h:42, from /usr/local/include/kapplication.h:40, from /usr/local/include/kuniqueapplication.h:24, from main.cpp:7: /usr/include/g++/streambuf.h:58: warning: `_G_IO_IO_FILE_VERSION' is not defined /usr/include/g++/streambuf.h:416: warning: `_G_IO_IO_FILE_VERSION' is not defined In file included from /usr/include/g++/stl_alloc.h:45, from /usr/include/g++/alloc.h:21, from /usr/include/g++/std/bastring.h:39, from /usr/include/g++/string:6, from /usr/X11R6/include/qstring.h:56, from /usr/X11R6/include/qwindowdefs.h:44, from /usr/X11R6/include/qwidget.h:42, from /usr/X11R6/include/qdesktopwidget.h:40, from /usr/X11R6/include/qapplication.h:42, from /usr/local/include/kapplication.h:40, from /usr/local/include/kuniqueapplication.h:24, from main.cpp:7: /usr/include/g++/iostream.h:253: warning: `_G_CLOG_CONFLICT' is not defined main.cpp: In function `int main(int, char **)': main.cpp:64: implicit declaration of function `int time(...)' /usr/include/g++/stl_map.h: At top level: /usr/local/include/id3/globals.h:542: warning: `const char * ID3_v1_genre_description[148]' defined but not used gmake[3]: *** [main.o] Error 1 gmake[3]: Leaving directory `/usr/ports/audio/yammi/work/yammi-1.2-rc/src' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/audio/yammi/work/yammi-1.2-rc/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/audio/yammi/work/yammi-1.2-rc' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/audio/yammi. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 03:40:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5274716A4CE for ; Thu, 16 Dec 2004 03:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE22E43D5C for ; Thu, 16 Dec 2004 03:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG3eMmS023648 for ; Thu, 16 Dec 2004 03:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG3eMaG023647; Thu, 16 Dec 2004 03:40:22 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 03:40:22 GMT Resent-Message-Id: <200412160340.iBG3eMaG023647@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, Matt Dawson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8396C16A4CE for ; Thu, 16 Dec 2004 03:35:13 +0000 (GMT) Received: from central.local.mattsnetwork.co.uk (mattsnetwork.co.uk [82.152.151.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9832B43D45 for ; Thu, 16 Dec 2004 03:35:12 +0000 (GMT) (envelope-from matt@mattsnetwork.co.uk) Received: from workstation1.local.mattsnetwork.co.uk (workstation1.local.mattsnetwork.co.uk [192.168.0.137]) (authenticated bits=0)iBG3ZAJJ004092 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Thu, 16 Dec 2004 03:35:11 GMT (envelope-from matt@mattsnetwork.co.uk) Message-Id: <200412160335.10387.matt@mattsnetwork.co.uk> Date: Thu, 16 Dec 2004 03:35:10 +0000 From: Matt Dawson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75141: [maintainer-update] comms/xlog broken on alpha. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Dawson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 03:40:23 -0000 >Number: 75141 >Category: ports >Synopsis: [maintainer-update] comms/xlog broken on alpha. >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 Dec 16 03:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matt Dawson >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: n/a >Environment: System: FreeBSD workstation1 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #1: Tue Dec 7 21:23:42 GMT 2004 md001@workstation1:/usr/obj/usr/src/sys/WORKSTATION1 i386 >Description: xlog currently will not build on the Alpha platform >How-To-Repeat: Attempt a build on an EV4 >Fix: None at present. Mark port as NOT_FOR_ARCHS= alpha for now. Diff attached. --- xlog-1.0_1.diff begins here --- diff -ruN /usr/ports/comms/xlog/Makefile ./xlog/Makefile --- /usr/ports/comms/xlog/Makefile Thu Dec 16 03:29:06 2004 +++ ./xlog/Makefile Thu Dec 16 03:30:21 2004 @@ -6,6 +6,7 @@ PORTNAME= xlog PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= comms MASTER_SITES= http://pg4i.mattsnetwork.co.uk/download/ \ http://www.qsl.net/pg4i/download/ @@ -16,6 +17,7 @@ USE_X_PREFIX= yes USE_GNOME= libgnomeprint GNU_CONFIGURE= yes +NOT_FOR_ARCHS= alpha .if defined(WITH_HAMLIB) LIB_DEPENDS+= hamlib:${PORTSDIR}/comms/hamlib --- xlog-1.0_1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 07:30:09 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 432BD16A4CE for ; Thu, 16 Dec 2004 07:30:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A3C343D54 for ; Thu, 16 Dec 2004 07:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG7U8WZ078945 for ; Thu, 16 Dec 2004 07:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG7U8eP078942; Thu, 16 Dec 2004 07:30:08 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 07:30:08 GMT Resent-Message-Id: <200412160730.iBG7U8eP078942@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, "Evgueni V.Gavrilov" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C01916A4CE; Thu, 16 Dec 2004 07:20:49 +0000 (GMT) Received: from rusunix.org (rusunix.org [195.162.56.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id E914643D58; Thu, 16 Dec 2004 07:20:48 +0000 (GMT) (envelope-from aquatique@rusunix.org) Received: by rusunix.org (Postfix, from userid 1111) id 665F71CB788; Thu, 16 Dec 2004 13:20:46 +0600 (OMST) Message-Id: <20041216072046.665F71CB788@rusunix.org> Date: Thu, 16 Dec 2004 13:20:46 +0600 (OMST) From: "Evgueni V.Gavrilov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: petef@FreeBSD.org Subject: ports/75142: update devel/libevent to 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Evgueni V.Gavrilov" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 07:30:09 -0000 >Number: 75142 >Category: ports >Synopsis: update devel/libevent to 1.0 >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: Thu Dec 16 07:30:08 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Evgueni V. Gavrilov >Release: FreeBSD 4.10-RELEASE-p5 i386 >Organization: rusunix.org >Environment: System: FreeBSD rusunix.org 4.10-RELEASE-p5 FreeBSD 4.10-RELEASE-p5 #0: Mon Dec 6 17:10:22 OMST 2004 aquatique@rusunix.org:/usr/obj/usr/src/sys/NEWMONSTER i386 >Description: update devel/libevent to 1.0 >How-To-Repeat: patch < >Fix: diff -ruN libevent.orig/Makefile libevent/Makefile --- libevent.orig/Makefile Thu Dec 16 11:15:56 2004 +++ libevent/Makefile Thu Dec 16 11:16:20 2004 @@ -6,7 +6,7 @@ # PORTNAME= libevent -PORTVERSION= 0.9 +PORTVERSION= 1.0 CATEGORIES= devel MASTER_SITES= http://monkey.org/~provos/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.c$/c/} diff -ruN libevent.orig/distinfo libevent/distinfo --- libevent.orig/distinfo Thu Dec 16 11:15:56 2004 +++ libevent/distinfo Thu Dec 16 11:17:58 2004 @@ -1,2 +1,2 @@ -MD5 (libevent-0.9.tar.gz) = 1287b2a3021215ad8fb33f326f3b1930 -SIZE (libevent-0.9.tar.gz) = 98414 +MD5 (libevent-1.0.tar.gz) = 312136a01f7a1d7561ed12c702c8a6fb +SIZE (libevent-1.0.tar.gz) = 100906 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 08:18:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 366DC16A4CE; Thu, 16 Dec 2004 08:18:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13B5243D2D; Thu, 16 Dec 2004 08:18:26 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG8IPWm085269; Thu, 16 Dec 2004 08:18:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG8IP6E085265; Thu, 16 Dec 2004 08:18:25 GMT (envelope-from linimon) Date: Thu, 16 Dec 2004 08:18:25 GMT From: Mark Linimon Message-Id: <200412160818.iBG8IP6E085265@freefall.freebsd.org> To: linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75075: update: lang/munger - new port revision to eliminate use of DEPENDS_TARGET X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 08:18:26 -0000 Old Synopsis: Re: lang/munger - new port revision to eliminate use of DEPENDS_TARGET (PR# 74911) New Synopsis: update: lang/munger - new port revision to eliminate use of DEPENDS_TARGET Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Dec 16 08:17:16 GMT 2004 Responsible-Changed-Why: Rescue this from 'pending', where it was languishing because of the missing tag in the Synopsis line. http://www.freebsd.org/cgi/query-pr.cgi?pr=75075 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 08:19:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D56AF16A4CE; Thu, 16 Dec 2004 08:19:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B030A43D41; Thu, 16 Dec 2004 08:19:19 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG8JJpI085329; Thu, 16 Dec 2004 08:19:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG8JJ9R085325; Thu, 16 Dec 2004 08:19:19 GMT (envelope-from linimon) Date: Thu, 16 Dec 2004 08:19:19 GMT From: Mark Linimon Message-Id: <200412160819.iBG8JJ9R085325@freefall.freebsd.org> To: jimmy@jamesbailie.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74911: Update port: lang/munger - new port revision to eliminate use of DEPENDS_TARGET X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 08:19:19 -0000 Synopsis: Update port: lang/munger - new port revision to eliminate use of DEPENDS_TARGET State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Thu Dec 16 08:18:48 GMT 2004 State-Changed-Why: Superceeded by ports/75075. http://www.freebsd.org/cgi/query-pr.cgi?pr=74911 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 08:24:01 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 430C916A4CE; Thu, 16 Dec 2004 08:24:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E86943D41; Thu, 16 Dec 2004 08:24:01 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG8O10g085830; Thu, 16 Dec 2004 08:24:01 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG8O0e0085826; Thu, 16 Dec 2004 08:24:00 GMT (envelope-from linimon) Date: Thu, 16 Dec 2004 08:24:00 GMT From: Mark Linimon Message-Id: <200412160824.iBG8O0e0085826@freefall.freebsd.org> To: linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75105: [maintainer] databases/mysqlcc: fix compilation failure with mysql-4.1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 08:24:01 -0000 Old Synopsis: mysqlcc: compilation fails with mysql-4.1.7 New Synopsis: [maintainer] databases/mysqlcc: fix compilation failure with mysql-4.1.7 Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: linimon Class-Changed-When: Thu Dec 16 08:21:57 GMT 2004 Class-Changed-Why: Reformat so GNATS will like it. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Dec 16 08:21:57 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=75105 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 08:33:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 502F216A4CE; Thu, 16 Dec 2004 08:33:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C5F043D1D; Thu, 16 Dec 2004 08:33:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG8XZrH089368; Thu, 16 Dec 2004 08:33:35 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG8XYd9089364; Thu, 16 Dec 2004 08:33:34 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 08:33:34 GMT From: Volker Stolz Message-Id: <200412160833.iBG8XYd9089364@freefall.freebsd.org> To: joelh@piquan.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72090: [patch] math/maxima: Unbreak, upgrade, clean up X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 08:33:35 -0000 Synopsis: [patch] math/maxima: Unbreak, upgrade, clean up State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Dec 16 08:33:14 GMT 2004 State-Changed-Why: Sergey asked for maintainer approval http://www.freebsd.org/cgi/query-pr.cgi?pr=72090 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 08:55:53 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE2AF16A4CE; Thu, 16 Dec 2004 08:55:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AAAF43D46; Thu, 16 Dec 2004 08:55:53 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG8trNs090044; Thu, 16 Dec 2004 08:55:53 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG8treW090040; Thu, 16 Dec 2004 08:55:53 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 08:55:53 GMT From: Volker Stolz Message-Id: <200412160855.iBG8treW090040@freefall.freebsd.org> To: parv@pair.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71636: x11-toolkits/libjtoolbar - JToolBar_source-0.5.4.tar.gz is unfetchable ... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 08:55:53 -0000 Synopsis: x11-toolkits/libjtoolbar - JToolBar_source-0.5.4.tar.gz is unfetchable ... State-Changed-From-To: suspended->closed State-Changed-By: vs State-Changed-When: Thu Dec 16 08:55:32 GMT 2004 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=71636 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 09:23:04 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE89016A4CE; Thu, 16 Dec 2004 09:23:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BACD843D5C; Thu, 16 Dec 2004 09:23:04 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG9N46v094838; Thu, 16 Dec 2004 09:23:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG9N4jb094834; Thu, 16 Dec 2004 09:23:04 GMT (envelope-from edwin) Date: Thu, 16 Dec 2004 09:23:04 GMT From: Edwin Groothuis Message-Id: <200412160923.iBG9N4jb094834@freefall.freebsd.org> To: eps+psub0408@ana.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/70808: Update port: x11/x3270 to version 3.3.2p1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 09:23:05 -0000 Synopsis: Update port: x11/x3270 to version 3.3.2p1 State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Thu Dec 16 09:22:51 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=70808 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 09:25:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE73A16A4CF; Thu, 16 Dec 2004 09:25:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA7AA43D58; Thu, 16 Dec 2004 09:25:31 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG9PV66094915; Thu, 16 Dec 2004 09:25:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG9PVX0094911; Thu, 16 Dec 2004 09:25:31 GMT (envelope-from edwin) Date: Thu, 16 Dec 2004 09:25:31 GMT From: Edwin Groothuis Message-Id: <200412160925.iBG9PVX0094911@freefall.freebsd.org> To: pdseniura@techie.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/72367: New port: net/c3270 - to replace net/tn3270 - Full-screen curses-based remote login to IBM mainframes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 09:25:32 -0000 Synopsis: New port: net/c3270 - to replace net/tn3270 - Full-screen curses-based remote login to IBM mainframes State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Thu Dec 16 09:25:30 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=72367 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 09:45:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9999516A4CF; Thu, 16 Dec 2004 09:45:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C8F43D45; Thu, 16 Dec 2004 09:45:15 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBG9jFMS096373; Thu, 16 Dec 2004 09:45:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBG9jFJ2096369; Thu, 16 Dec 2004 09:45:15 GMT (envelope-from edwin) Date: Thu, 16 Dec 2004 09:45:15 GMT From: Edwin Groothuis Message-Id: <200412160945.iBG9jFJ2096369@freefall.freebsd.org> To: marc@bruenink.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/73013: New Port: net/coccinella jabber client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 09:45:15 -0000 Synopsis: New Port: net/coccinella jabber client State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Thu Dec 16 09:44:47 GMT 2004 State-Changed-Why: Moved install dir to ${PREFIX}/coccinella instead of ${PREFIX}/lib/coccinella. Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=73013 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 10:10:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F25A616A4CE for ; Thu, 16 Dec 2004 10:10:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C650A43D39 for ; Thu, 16 Dec 2004 10:10:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGAAIVN001028 for ; Thu, 16 Dec 2004 10:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGAAIAw001027; Thu, 16 Dec 2004 10:10:18 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 10:10:18 GMT Resent-Message-Id: <200412161010.iBGAAIAw001027@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 Yudin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFEC616A4CF for ; Thu, 16 Dec 2004 10:05:44 +0000 (GMT) Received: from ib.com.ua (ib.com.ua [217.144.67.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3D1F43D2D for ; Thu, 16 Dec 2004 10:05:43 +0000 (GMT) (envelope-from toha@ib.com.ua) Received: from ib.com.ua (localhost.ib.com.ua [127.0.0.1]) by ib.com.ua (8.13.1/8.12.10) with ESMTP id iBGA5Ton049205 for ; Thu, 16 Dec 2004 12:05:29 +0200 (EET) (envelope-from toha@ib.com.ua) Received: (from toha@localhost) by ib.com.ua (8.13.1/8.12.10/Submit) id iBGA5OTE049204; Thu, 16 Dec 2004 12:05:24 +0200 (EET) (envelope-from toha) Message-Id: <200412161005.iBGA5OTE049204@ib.com.ua> Date: Thu, 16 Dec 2004 12:05:24 +0200 (EET) From: Anton Yudin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75143: There is no way to specify jvm parameters when starting jakarta-tomcat. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Anton Yudin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 10:10:19 -0000 >Number: 75143 >Category: ports >Synopsis: There is no way to specify jvm parameters when starting jakarta-tomcat. >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 16 10:10:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Anton Yudin >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD .ua 4.10-STABLE FreeBSD 4.10-STABLE #0: Fri Oct 15 17:10:27 EEST 2004 root@.ua:/obj/usr/src/sys/ i386 >Description: There is no way to specify jvm parameters when starting jakarta-tomcat. >How-To-Repeat: >Fix: Patch www/jakarta-tomcat5/Makefile and www/jakarta-tomcat4/files/daemonctl.c Now it is possible to specify parameters for jvm in such way: tomcat50ctl start [jvm-arguments] for example: tomcat50ctl start -server -Xmx128m *** www/jakarta-tomcat5/Makefile.original Tue Dec 14 16:38:37 2004 --- www/jakarta-tomcat5/Makefile Tue Dec 14 16:18:02 2004 *************** *** 124,131 **** @${ECHO_CMD} -n ">> Compiling and installing control program..." @${SED} \ ! -e "/%%JAVA_ARGS%%/s//\"-Dcatalina.home=${APP_HOME:S/\//\\\//g}\",/g" \ ! -e "/%%JAR_ARGS%%/s//\"start\",/g" \ ${WRKDIR}/daemonctl.c > ${WRKDIR}/daemonctl_.c @cd ${WRKDIR} && ${CC} -ansi -o ${CONTROL_SCRIPT_NAME} daemonctl_.c @${CP} ${WRKDIR}/${CONTROL_SCRIPT_NAME} ${CONTROL_SCRIPT} --- 124,131 ---- @${ECHO_CMD} -n ">> Compiling and installing control program..." @${SED} \ ! -e "/%%JAVA_ARGS%%/s//-Dcatalina.home=${APP_HOME:S/\//\\\//g}/g" \ ! -e "/%%JAR_ARGS%%/s//start/g" \ ${WRKDIR}/daemonctl.c > ${WRKDIR}/daemonctl_.c @cd ${WRKDIR} && ${CC} -ansi -o ${CONTROL_SCRIPT_NAME} daemonctl_.c @${CP} ${WRKDIR}/${CONTROL_SCRIPT_NAME} ${CONTROL_SCRIPT} *** www/jakarta-tomcat4/files/daemonctl.c.original Thu Oct 10 02:10:32 2002 --- www/jakarta-tomcat4/files/daemonctl.c Thu Dec 16 11:48:24 2004 *************** *** 57,62 **** --- 57,64 ---- private void restart(void); + char** applicationArguments = NULL; + /** * Main function. This function is called when this program is executed. * *************** *** 84,93 **** --- 86,97 ---- argument = argv[1]; if (strcmp("start", argument) == 0) { + applicationArguments = argv + 2; start(); } else if (strcmp("stop", argument) == 0) { stop(); } else if (strcmp("restart", argument) == 0) { + applicationArguments = argv + 2; restart(); } else { fprintf(stderr, "%%CONTROL_SCRIPT_NAME%%: Illegal argument \"%s\".\n", argument); *************** *** 313,318 **** --- 317,325 ---- int stdoutLogFile; int stderrLogFile; struct stat sb; + char** arguments = NULL; + int ac = 0; + int i = 0; /* Open and read the PID file */ printf(">> Reading PID file (%%PID_FILE%%)..."); *************** *** 415,420 **** --- 422,449 ---- if (pid == 0) { + if (applicationArguments != NULL) + for (;applicationArguments[ac] != NULL;ac++) + + fprintf(stderr, "ac = %i\n", ac); + + arguments = malloc(sizeof(char*) * 6 + ac); + + arguments[0] = "%%JAVA_HOME%%/%%JAVA_CMD%%"; + for (i = 0; i < ac; i++) + arguments[1 + i] = applicationArguments[i]; + arguments[1 + i] = "-jar"; + arguments[2 + i] = "%%JAVA_ARGS%%"; + arguments[3 + i] = "%%JAR_FILE%%"; + arguments[4 + i] = "%%JAR_ARGS%%"; + arguments[5 + i] = NULL; + + #ifdef DEBUG + for (ac = 0; ac < i + 5; ac++) { + fprintf(stderr, "arg[%i] = (%s)\n", ac, arguments[ac]); + } + #endif + /* Redirect stdout to log file */ dup2(stdoutLogFile, STDOUT_FILENO); *************** *** 425,431 **** file using pipe(2) */ /* Execute the command */ ! execl("%%JAVA_HOME%%/%%JAVA_CMD%%", "%%JAVA_HOME%%/%%JAVA_CMD%%", "-jar", %%JAVA_ARGS%% "%%JAR_FILE%%", %%JAR_ARGS%% NULL); fprintf(stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to start %%APP_TITLE%% %%PORTVERSION%% since '%%JAVA_HOME%%/%%JAVA_CMD%% -jar %%JAR_FILE%%' in %%APP_HOME%%: "); perror(NULL); --- 454,460 ---- file using pipe(2) */ /* Execute the command */ ! execv("%%JAVA_HOME%%/%%JAVA_CMD%%", arguments); fprintf(stderr, "%%CONTROL_SCRIPT_NAME%%: Unable to start %%APP_TITLE%% %%PORTVERSION%% since '%%JAVA_HOME%%/%%JAVA_CMD%% -jar %%JAR_FILE%%' in %%APP_HOME%%: "); perror(NULL); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 10:32:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BD0616A4CE; Thu, 16 Dec 2004 10:32:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75E5943D4C; Thu, 16 Dec 2004 10:32:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGAWuja004331; Thu, 16 Dec 2004 10:32:56 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGAWu9m004327; Thu, 16 Dec 2004 10:32:56 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 10:32:56 GMT From: Volker Stolz Message-Id: <200412161032.iBGAWu9m004327@freefall.freebsd.org> To: xcas@cox.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/71557: [PATCH] x11-wm/pekwm: Update to 20040828 CVS snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 10:32:56 -0000 Synopsis: [PATCH] x11-wm/pekwm: Update to 20040828 CVS snapshot State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Dec 16 10:31:37 GMT 2004 State-Changed-Why: Do you mind if we keep the patch instead of the reinplace? Patches fail more loudly in case this changes in the future while reinplace will silently do nothing. Otherwise, this looks good. Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Thu Dec 16 10:31:37 GMT 2004 Responsible-Changed-Why: I'll track this http://www.freebsd.org/cgi/query-pr.cgi?pr=71557 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 10:47:56 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F4BB16A4CE; Thu, 16 Dec 2004 10:47:56 +0000 (GMT) Received: from terra.inf.ufsc.br (terra.inf.ufsc.br [150.162.60.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D51D943D45; Thu, 16 Dec 2004 10:47:55 +0000 (GMT) (envelope-from antonio@php.net) Received: from localhost (netuno.inf.ufsc.br [150.162.60.11]) (INE/CTC/UFSC)) with ESMTP id EEC1B63EA; Thu, 16 Dec 2004 08:47:54 -0200 (BRDT) Received: from netuno.inf.ufsc.br ([127.0.0.1]) by localhost (netuno [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31799-02; Thu, 16 Dec 2004 08:47:54 -0200 (BRDT) Received: from [10.1.1.191] (unknown [200.193.29.198]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested)(INE/CTC/UFSC)) with ESMTP id 7BAB06C8A3; Thu, 16 Dec 2004 08:47:54 -0200 (BRDT) Message-ID: <41C167D7.9020700@php.net> Date: Thu, 16 Dec 2004 08:47:51 -0200 From: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= User-Agent: Mozilla Thunderbird 1.0 (X11/20041214) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Edwin Groothuis References: <200412151220.iBFCK9l3006838@freefall.freebsd.org> In-Reply-To: <200412151220.iBFCK9l3006838@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inf.ufsc.br cc: freebsd-ports-bugs@FreeBSD.org cc: Markus Seifert cc: Alex Dupre cc: Thierry Thomas Subject: Re: ports/75103: New port: misc/pear-Text_Figlet Render text using FIGlet fonts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: antonio@php.net List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 10:47:56 -0000 Edwin, iconv extension is loaded on the new pear-PEAR port version. Can you please test it again? Edwin Groothuis wrote: > Synopsis: New port: misc/pear-Text_Figlet Render text using FIGlet fonts > > State-Changed-From-To: open->closed > State-Changed-By: edwin > State-Changed-When: Wed Dec 15 12:19:34 GMT 2004 > State-Changed-Why: > Committed, thanks! > > Any chance to look at the feedback at > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/74620? > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=75103 -- Ate' Antonio echo antonio php net | sed 's/ /@/;s/ /./g' FreeBSD/OpenBSD | PHP/MySQL | PGP Key ID 0x5BBEB073 "Can't buy what I want because its FREE!" - Pearl Jam From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 11:40:03 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF39A16A4CE; Thu, 16 Dec 2004 11:40:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD8043D55; Thu, 16 Dec 2004 11:40:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGBe345012346; Thu, 16 Dec 2004 11:40:03 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGBe3wb012342; Thu, 16 Dec 2004 11:40:03 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 11:40:03 GMT From: Volker Stolz Message-Id: <200412161140.iBGBe3wb012342@freefall.freebsd.org> To: vs@FreeBSD.org, ports@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68826: various anomalies with xemacs port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 11:40:04 -0000 Synopsis: various anomalies with xemacs port Responsible-Changed-From-To: ports@FreeBSD.org->freebsd-ports-bugs Responsible-Changed-By: vs Responsible-Changed-When: Thu Dec 16 11:39:21 GMT 2004 Responsible-Changed-Why: It's spelled freebsd-ports-bugs http://www.freebsd.org/cgi/query-pr.cgi?pr=68826 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 11:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0867C16A52C for ; Thu, 16 Dec 2004 11:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A096E43D1F for ; Thu, 16 Dec 2004 11:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGBeOtO012424 for ; Thu, 16 Dec 2004 11:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGBeObC012423; Thu, 16 Dec 2004 11:40:24 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 11:40:24 GMT Resent-Message-Id: <200412161140.iBGBeObC012423@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, Ulrich Spoerlein Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B3FD16A4CE for ; Thu, 16 Dec 2004 11:37:53 +0000 (GMT) Received: from wrzx35.rz.uni-wuerzburg.de (wrzx35.rz.uni-wuerzburg.de [132.187.3.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 608E843D49 for ; Thu, 16 Dec 2004 11:37:52 +0000 (GMT) (envelope-from q@uni.de) Received: from wrzx30.rz.uni-wuerzburg.de (wrzx30.rz.uni-wuerzburg.de [132.187.1.30]) by wrzx35.rz.uni-wuerzburg.de (Postfix) with ESMTP id 059CCDD715; Thu, 16 Dec 2004 12:37:51 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id C584BF2A; Thu, 16 Dec 2004 12:37:50 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id 07318F24; Thu, 16 Dec 2004 12:37:50 +0100 (CET) Received: from coyote.q.local (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 5A023D4B1D; Thu, 16 Dec 2004 12:37:48 +0100 (CET) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.1/8.13.1) with ESMTP id iBGBbl9Y034851; Thu, 16 Dec 2004 12:37:47 +0100 (CET) (envelope-from q@roadrunner.q.local) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.1/8.13.1) with ESMTP id iBGBbiOH023555; Thu, 16 Dec 2004 12:37:44 +0100 (CET) (envelope-from q@roadrunner.q.local) Received: (from q@localhost) by roadrunner.q.local (8.13.1/8.13.1/Submit) id iBGBbfXx023554; Thu, 16 Dec 2004 12:37:41 +0100 (CET) (envelope-from q) Message-Id: <200412161137.iBGBbfXx023554@roadrunner.q.local> Date: Thu, 16 Dec 2004 12:37:41 +0100 (CET) From: Ulrich Spoerlein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dbader@eece.unm.edu Subject: ports/75144: [PATCH] math/concorde: update to 20031219 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 11:40:25 -0000 >Number: 75144 >Category: ports >Synopsis: [PATCH] math/concorde: update to 20031219 >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 Dec 16 11:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ulrich Spoerlein >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD roadrunner 5.3-STABLE FreeBSD 5.3-STABLE #8: Tue Dec 14 19:33:14 CET 2004 >Description: - Update to 20031219 - Build all binaries (they are very useful!) - Install them to ${PREFIX}/bin/concorde/ to avoid name collision - Update pkg-descr to reflect Homepage Added file(s): - files/patch-killgrun.c Removed file(s): - files/patch-UTIL_urandom.c Port maintainer (dbader@eece.unm.edu) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- concorde-20031219.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/math/concorde/Makefile,v retrieving revision 1.6 diff -u -u -r1.6 Makefile --- Makefile 24 Apr 2003 01:56:27 -0000 1.6 +++ Makefile 16 Dec 2004 11:18:28 -0000 @@ -6,12 +6,11 @@ # PORTNAME= concorde -PORTVERSION= 1.0 -PORTREVISION= 1 +PORTVERSION= 20031219 CATEGORIES= math parallel -MASTER_SITES= http://www.math.princeton.edu/tsp/concorde/ \ - ftp://ftp.caam.rice.edu/pub/software/keck/ -DISTNAME= co991215 +MASTER_SITES= http://www.tsp.gatech.edu/concorde/ \ + http://www.math.princeton.edu/tsp/concorde/ +DISTNAME= co031219 EXTRACT_SUFX= .tgz MAINTAINER= dbader@eece.unm.edu @@ -19,14 +18,24 @@ WRKSRC= ${WRKDIR}/concorde -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes +ALL_TARGET= everything INCFILES= bigguy.h combs.h config.h consec1.h cut.h cuttree.h \ delaunay.h edgegen.h fmatch.h heldkarp.h kdtree.h \ linkern.h localcut.h lp.h machdefs.h macrorus.h mlinkern.h \ - necklace.h pq.h pqsets.h profdata.h profrus.h tinytsp.h \ + necklace.h pq.h pqsets.h tinytsp.h \ tsp.h util.h verify.h +BINFILES= BIGGUY/bg_test COMBS/combtest CUT/lin_all CUT/mincut \ + EDGEGEN/edgegen FMATCH/fmatch HELDKARP/heldkarp KDTREE/kdtree \ + LINKERN/linkern LOCALCUT/checker LOCALCUT/first \ + LOCALCUT/localcut LOCALCUT/peeler LOCALCUT/peeler2 PQ/pqtest \ + TINY/tinytsp TOOLS/edg2len TOOLS/edgunion TOOLS/fconvert \ + TOOLS/killgrun TOOLS/prob2tsp TOOLS/showres TOOLS/tourchk \ + TOOLS/tourlen TSP/bosstell TSP/concorde TSP/cutserv \ + TSP/poolcat TSP/probserv TSP/test_tsp VERIFY/verify + do-install: ${INSTALL_DATA} ${WRKSRC}/concorde.a ${PREFIX}/lib/libconcorde.a ${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 755 ${PREFIX}/include/concorde @@ -34,5 +43,10 @@ .for f in ${INCFILES} ${INSTALL_DATA} ${WRKSRC}/INCLUDE/${f} ${PREFIX}/include/concorde .endfor + ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 ${PREFIX}/bin/concorde +.for f in ${BINFILES} + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/concorde +.endfor + ${INSTALL_SCRIPT} ${WRKSRC}/TINY/randtsp.awk ${PREFIX}/bin/concorde .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/math/concorde/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 31 Mar 2004 03:09:27 -0000 1.2 +++ distinfo 16 Dec 2004 11:18:28 -0000 @@ -1,2 +1,2 @@ -MD5 (co991215.tgz) = 30c7dcccbde91a03d66e3e715f656650 -SIZE (co991215.tgz) = 732109 +MD5 (co031219.tgz) = 3476e01ae89b591bf7b329b2f5aa0353 +SIZE (co031219.tgz) = 698592 Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/math/concorde/pkg-descr,v retrieving revision 1.2 diff -u -u -r1.2 pkg-descr --- pkg-descr 24 Apr 2003 01:56:27 -0000 1.2 +++ pkg-descr 16 Dec 2004 11:18:28 -0000 @@ -1,20 +1,16 @@ -Concorde (99.12.15 release) This is the initial full release of Concorde. -More data about Concorde is available from the Concorde page at -http://www.math.princeton.edu/tsp/concorde.html. - Concorde is a computer code for the traveling salesman problem (TSP) and some related network optimization problems. The code is written in the ANSI C programming language and it is available for academic -research use; for other uses, contact concorde@caam.rice.edu for +research use; for other uses, contact bico@isye.gatech.edu for licensing options. Concorde's TSP solver has been used to obtain the optimal solutions to -all TSPLIB instances having up to 13,509 cities. +106 of the 110 TSPLIB instances; the largest having 15,112 cities. The Concorde callable library includes over 700 functions permitting users to create specialized codes for TSP-like problems. All Concorde -functions are thread-safe for prgramming in shared-memory parallel +functions are thread-safe for programming in shared-memory parallel environments; the main TSP solver includes code for running over networks of unix workstations. -WWW: http://www.math.princeton.edu/tsp/concorde.html +WWW: http://www.tsp.gatech.edu/concorde.html Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/math/concorde/pkg-plist,v retrieving revision 1.2 diff -u -u -r1.2 pkg-plist --- pkg-plist 1 Jul 2001 02:25:37 -0000 1.2 +++ pkg-plist 16 Dec 2004 11:18:28 -0000 @@ -1,3 +1,35 @@ +bin/concorde/bg_test +bin/concorde/bosstell +bin/concorde/checker +bin/concorde/combtest +bin/concorde/concorde +bin/concorde/cutserv +bin/concorde/edg2len +bin/concorde/edgegen +bin/concorde/edgunion +bin/concorde/fconvert +bin/concorde/first +bin/concorde/fmatch +bin/concorde/heldkarp +bin/concorde/kdtree +bin/concorde/killgrun +bin/concorde/lin_all +bin/concorde/linkern +bin/concorde/localcut +bin/concorde/mincut +bin/concorde/peeler +bin/concorde/peeler2 +bin/concorde/poolcat +bin/concorde/pqtest +bin/concorde/prob2tsp +bin/concorde/probserv +bin/concorde/randtsp.awk +bin/concorde/showres +bin/concorde/test_tsp +bin/concorde/tinytsp +bin/concorde/tourchk +bin/concorde/tourlen +bin/concorde/verify lib/libconcorde.a include/concorde/bigguy.h include/concorde/combs.h @@ -20,10 +52,9 @@ include/concorde/necklace.h include/concorde/pq.h include/concorde/pqsets.h -include/concorde/profdata.h -include/concorde/profrus.h include/concorde/tinytsp.h include/concorde/tsp.h include/concorde/util.h include/concorde/verify.h +@dirrm bin/concorde @dirrm include/concorde Index: files/patch-UTIL_urandom.c =================================================================== RCS file: files/patch-UTIL_urandom.c diff -N files/patch-UTIL_urandom.c --- files/patch-UTIL_urandom.c 12 Nov 2002 16:19:08 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,24 +0,0 @@ - -$FreeBSD: ports/math/concorde/files/patch-UTIL_urandom.c,v 1.1 2002/11/12 16:19:08 naddy Exp $ - ---- UTIL/urandom.c.orig Thu Dec 16 19:39:06 1999 -+++ UTIL/urandom.c Tue Nov 12 17:10:02 2002 -@@ -22,7 +22,7 @@ - /* */ - /* Written by: DIMACS (modified for TSP) */ - /* Date: February 7, 1995 (cofeb16) */ --/* */ -+/* September 18, 2001 (billenium fix) */ - /* */ - /* EXPORTED FUNCTIONS: */ - /* */ -@@ -66,6 +66,9 @@ - int i, ii; - int last, next; - int *arr = r->arr; -+ -+ seed %= CC_PRANDMAX; -+ if (seed < 0) seed += CC_PRANDMAX; - - arr[0] = last = seed; - next = 1; Index: files/patch-killgrun.c =================================================================== RCS file: files/patch-killgrun.c diff -N files/patch-killgrun.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-killgrun.c 16 Dec 2004 11:18:28 -0000 @@ -0,0 +1,18 @@ +--- TOOLS/killgrun.c.orig Thu Dec 16 11:26:57 2004 ++++ TOOLS/killgrun.c Thu Dec 16 11:27:06 2004 +@@ -75,13 +75,13 @@ + if (rval) { + perror ("kill"); + fprintf (stderr, "Unable to kill process %d\n", process); +-/* ++#if 0 + if (errno == ESRCH) { /* Does not work on Red Hat 8 */ + fprintf (stderr, "Process does not exist, telling boss anyway\n"); + } else { + goto CLEANUP; + } +-*/ ++#endif + fprintf (stderr, "Process does not exist, telling boss anyway\n"); + } + } --- concorde-20031219.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 12:20:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31C3016A518 for ; Thu, 16 Dec 2004 12:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A58043D2D for ; Thu, 16 Dec 2004 12:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGCKPPQ017857 for ; Thu, 16 Dec 2004 12:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGCKPci017856; Thu, 16 Dec 2004 12:20:25 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 12:20:25 GMT Resent-Message-Id: <200412161220.iBGCKPci017856@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, Christian Laursen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FFED16A4CE for ; Thu, 16 Dec 2004 12:14:01 +0000 (GMT) Received: from ferengi.borderworlds.dk (ferengi.borderworlds.dk [80.166.152.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67ACE43D49 for ; Thu, 16 Dec 2004 12:14:00 +0000 (GMT) (envelope-from xi@borderworlds.dk) Received: from borg.borderworlds.dk (localhost [127.0.0.1]) by ferengi.borderworlds.dk (Postfix) with ESMTP id 652CDB81D for ; Thu, 16 Dec 2004 13:13:58 +0100 (CET) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id 3EC341148C; Thu, 16 Dec 2004 13:13:58 +0100 (CET) Message-Id: <20041216121358.3EC341148C@borg.borderworlds.dk> Date: Thu, 16 Dec 2004 13:13:58 +0100 (CET) From: Christian Laursen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75145: Update port: mail/mlmmj Fix mlmmj-make-ml.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christian Laursen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 12:20:26 -0000 >Number: 75145 >Category: ports >Synopsis: Update port: mail/mlmmj Fix mlmmj-make-ml.sh >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 Dec 16 12:20:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Christian Laursen >Release: FreeBSD 5.3-RELEASE i386 >Organization: The Border Worlds >Environment: System: FreeBSD borg.borderworlds.dk 5.3-RELEASE FreeBSD 5.3-RELEASE #32: Wed Nov 17 20:27:18 CET 2004 root@borg.borderworlds.dk:/usr/obj/usr/src/sys/BORG i386 >Description: I apparently forgot a change to files/patch-mlmmj-make-ml.sh updating the path to the listtext directory when I submitted the upgrade to 1.1.0. The attached patch adds this change and bumps PORTREVISION. >How-To-Repeat: >Fix: --- mlmmj.diff begins here --- diff -urN /usr/ports/mail/mlmmj/Makefile mlmmj/Makefile --- /usr/ports/mail/mlmmj/Makefile Sat Dec 4 21:21:55 2004 +++ mlmmj/Makefile Thu Dec 16 13:06:51 2004 @@ -7,6 +7,7 @@ PORTNAME= mlmmj PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://mlmmj.mmj.dk/files/ diff -urN /usr/ports/mail/mlmmj/files/patch-mlmmj-make-ml.sh mlmmj/files/patch-mlmmj-make-ml.sh --- /usr/ports/mail/mlmmj/files/patch-mlmmj-make-ml.sh Mon Jun 28 11:39:24 2004 +++ mlmmj/files/patch-mlmmj-make-ml.sh Thu Dec 16 13:06:51 2004 @@ -13,10 +13,10 @@ echo "$OWNER" > "$LISTDIR"/"control/owner" -echo -n "The path to texts for the list? (listtexts/ dir in the src) [] : " -+echo -n "The path to texts for the list? (listtexts/ dir in the src) [$PREFIX/share/mlmmj/listtexts] : " ++echo -n "The path to texts for the list? (listtexts/ dir in the src) [$PREFIX/share/mlmmj/text.skel] : " read TEXTPATH +if [ -z "$TEXTPATH" ]; then -+ TEXTPATH="$PREFIX/share/mlmmj/listtexts" ++ TEXTPATH="$PREFIX/share/mlmmj/text.skel" +fi if [ -z "$TEXTPATH" -o ! -d "$TEXTPATH" ]; then echo "**NOTE** Could not copy the texts for the list" --- mlmmj.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 12:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF5AD16A4CE for ; Thu, 16 Dec 2004 12:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E748F43D48 for ; Thu, 16 Dec 2004 12:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGCUTog018232 for ; Thu, 16 Dec 2004 12:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGCUTPb018230; Thu, 16 Dec 2004 12:30:29 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 12:30:29 GMT Resent-Message-Id: <200412161230.iBGCUTPb018230@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 Novitsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92F4316A4CE for ; Thu, 16 Dec 2004 12:26:27 +0000 (GMT) Received: from mail.icc-vvd.ru (mail.icc-vvd.ru [62.141.104.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9690F43D49 for ; Thu, 16 Dec 2004 12:26:00 +0000 (GMT) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: from server.v42of.icc-vvd.ru (localhost.icc-vvd.ru [127.0.0.1]) by mail.icc-vvd.ru (8.12.10/8.12.9) with ESMTP id iBGCP9dQ036018; Thu, 16 Dec 2004 15:25:09 +0300 (MSK) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: (from root@localhost) by server.v42of.icc-vvd.ru (8.12.10/8.12.9/Submit) id iBGCOxsi036010; Thu, 16 Dec 2004 15:24:59 +0300 (MSK) Message-Id: <200412161224.iBGCOxsi036010@server.v42of.icc-vvd.ru> Date: Thu, 16 Dec 2004 15:24:59 +0300 (MSK) From: Alexander Novitsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: alecn2002@yandex.ru Subject: ports/75146: [MAINTAINER-UPDATE] sysutils/luma: update to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 12:30:30 -0000 >Number: 75146 >Category: ports >Synopsis: [MAINTAINER-UPDATE] sysutils/luma: update to 1.6 >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 Dec 16 12:30:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Novitsky >Release: FreeBSD 5.2-RELEASE i386 >Organization: Inzcomcentre VVD >Environment: System: FreeBSD server.v42of.icc-vvd.ru 5.2-RELEASE FreeBSD 5.2-RELEASE #2: Mon Jul 12 21:45:44 MSD 2004 >Description: - Update to 1.6 Port maintainer (alecn2002@yandex.ru) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- luma-1.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/luma.orig/Makefile /usr/ports/sysutils/luma/Makefile --- /usr/ports/sysutils/luma.orig/Makefile Thu Dec 16 15:20:19 2004 +++ /usr/ports/sysutils/luma/Makefile Thu Dec 16 15:20:37 2004 @@ -6,7 +6,7 @@ # PORTNAME= luma -PORTVERSION= 1.5 +PORTVERSION= 1.6 CATEGORIES= sysutils net-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -27,6 +27,14 @@ PYDISTUTILS_INSTALLARGS= --prefix=${PREFIX} USE_OPENLDAP= yes +MAN1= luma.1 + +.include + do-configure: -.include +pre-install: + ${MV} ${WRKSRC}/share/man ${WRKSRC}/ + ${RM} ${WRKSRC}/lib/luma/base/utils/backend/\.\#mkpasswd.py.1.9 + +.include diff -ruN --exclude=CVS /usr/ports/sysutils/luma.orig/distinfo /usr/ports/sysutils/luma/distinfo --- /usr/ports/sysutils/luma.orig/distinfo Thu Dec 16 15:20:19 2004 +++ /usr/ports/sysutils/luma/distinfo Thu Dec 16 15:20:37 2004 @@ -1,2 +1,2 @@ -MD5 (luma-1.5.tar.bz2) = d89c5d2253b407712c87aeb054c27873 -SIZE (luma-1.5.tar.bz2) = 358359 +MD5 (luma-1.6.tar.bz2) = eb6fdd9f2a655666fb1efeda4dbe95d6 +SIZE (luma-1.6.tar.bz2) = 371291 diff -ruN --exclude=CVS /usr/ports/sysutils/luma.orig/files/patch-install.py /usr/ports/sysutils/luma/files/patch-install.py --- /usr/ports/sysutils/luma.orig/files/patch-install.py Thu Dec 16 15:20:19 2004 +++ /usr/ports/sysutils/luma/files/patch-install.py Thu Dec 16 15:20:37 2004 @@ -1,14 +1,49 @@ ---- install.py.orig Tue May 18 22:01:47 2004 -+++ install.py Wed Jun 2 22:09:53 2004 -@@ -137,6 +137,7 @@ +--- install.py.orig Mon Dec 13 00:45:57 2004 ++++ install.py Tue Dec 14 13:28:05 2004 +@@ -99,26 +99,15 @@ + print "Copy program files...\n" + + try: +- a = Popen3("cp -R bin " + prefixDir) +- while a.poll() == -1: +- pass +- if a.poll() > 0: +- raise "CopyError", "Error!!! Could not copy File. Maybe wrong permissions?" ++ for idir in ["bin", "lib", "share", "man"]: ++ a = Popen3("cp -R " + idir + " " + prefixDir) ++ while a.poll() == -1: ++ pass ++ if a.poll() > 0: ++ raise "CopyError", "Error!!! Could not copy File. Maybe wrong permissions?" + +- a = Popen3("cp -R lib " + prefixDir) +- while a.poll() == -1: +- pass +- if a.poll() > 0: +- raise "CopyError", "Error!!! Could not copy File. Maybe wrong permissions?" +- +- a = Popen3("cp -R share " + prefixDir) +- while a.poll() == -1: +- pass +- if a.poll() > 0: +- raise "CopyError", "Error!!! Could not copy File. Maybe wrong permissions?" +- +- print "Finished copying program files.\n" +- print "LUMA installed succesfully! :)" ++ print "Finished copying program files.\n" ++ print "LUMA installed succesfully! :)" + + except "CopyError", errorMessage: + print errorMessage +@@ -157,6 +146,7 @@ helpString = """Install options: - --prefix=PATH \t\t Install path (e.g. /usr/local) + --prefix=PATH \t\t Install path (default is /usr/local) --compile-only \t Just compile source files. No installation. + build \t The same as --compile-only \n""" + print helpString - sys.exit(1) -@@ -166,7 +167,7 @@ +@@ -194,7 +184,7 @@ return for x in sys.argv[1:]: @@ -17,7 +52,7 @@ global compileOnly compileOnly = True elif x[:9] == "--prefix=": -@@ -174,7 +175,7 @@ +@@ -202,7 +192,7 @@ prefixDir = x[9:] if (prefixDir[-1] == "/") and (len(prefixDir) > 1): prefixDir = prefixDir[:-1] diff -ruN --exclude=CVS /usr/ports/sysutils/luma.orig/pkg-plist /usr/ports/sysutils/luma/pkg-plist --- /usr/ports/sysutils/luma.orig/pkg-plist Thu Dec 16 15:20:19 2004 +++ /usr/ports/sysutils/luma/pkg-plist Thu Dec 16 15:20:37 2004 @@ -11,6 +11,8 @@ lib/luma/base/backend/ServerList.pyc lib/luma/base/backend/ServerObject.py lib/luma/base/backend/ServerObject.pyc +lib/luma/base/backend/SmartDataObject.py +lib/luma/base/backend/SmartDataObject.pyc lib/luma/base/backend/__init__.py lib/luma/base/backend/__init__.pyc lib/luma/base/gui/AboutDialog.py @@ -245,99 +247,101 @@ lib/luma/plugins/usermanagement/plugin.meta lib/luma/plugins/usermanagement/usermanagement_plugin.py lib/luma/plugins/usermanagement/usermanagement_plugin.pyc -share/luma/doc/massive.help -share/luma/i18n/br.png -share/luma/i18n/de.png -share/luma/i18n/es.png -share/luma/i18n/gb.png -share/luma/i18n/luma_br.qm -share/luma/i18n/luma_de.qm -share/luma/i18n/luma_es.qm -share/luma/i18n/luma_fr.qm -share/luma/i18n/luma_no.qm -share/luma/i18n/luma_ru.qm -share/luma/i18n/luma_sv.qm -share/luma/i18n/no.png -share/luma/i18n/ru.png -share/luma/i18n/sv.png -share/luma/icons/AdvancedObjectWidget/binary.png -share/luma/icons/AdvancedObjectWidget/delete.png -share/luma/icons/AdvancedObjectWidget/displayall.png -share/luma/icons/AdvancedObjectWidget/save.png -share/luma/icons/AdvancedObjectWidget/single.png -share/luma/icons/addattribute.png -share/luma/icons/binary.png -share/luma/icons/clear.png -share/luma/icons/config.png -share/luma/icons/delete.png -share/luma/icons/deleteEntry.png -share/luma/icons/delete_small.png -share/luma/icons/displayall.png -share/luma/icons/edit.png -share/luma/icons/editdelete.png -share/luma/icons/email.png -share/luma/icons/error.png -share/luma/icons/exportBinary.png -share/luma/icons/exportLdif.png -share/luma/icons/final.png -share/luma/icons/folder.png -share/luma/icons/help.png -share/luma/icons/language.png -share/luma/icons/mainwin/bookmark.png -share/luma/icons/mainwin/configure.png -share/luma/icons/mainwin/domtreeviewer.png -share/luma/icons/mainwin/exit.png -share/luma/icons/mainwin/fileclose.png -share/luma/icons/mainwin/gear.png -share/luma/icons/mainwin/reload.png -share/luma/icons/manage.png -share/luma/icons/new.png -share/luma/icons/newEntry.png -share/luma/icons/no.png -share/luma/icons/objectclass.png -share/luma/icons/ok.png -share/luma/icons/password_big.png -share/luma/icons/passwordmedium.png -share/luma/icons/plugins/addressbook/addressbook.png -share/luma/icons/plugins/addressbook/category.png -share/luma/icons/plugins/addressbook/email.png -share/luma/icons/plugins/addressbook/home.png -share/luma/icons/plugins/addressbook/location.png -share/luma/icons/plugins/addressbook/person.png -share/luma/icons/plugins/addressbook/personal.png -share/luma/icons/plugins/addressbook/phone.png -share/luma/icons/plugins/addressbook/url.png -share/luma/icons/plugins/addressbook/work.png -share/luma/icons/plugins/admin_utils/admin_utils.png -share/luma/icons/plugins/admin_utils/date.png -share/luma/icons/plugins/admin_utils/secure.png -share/luma/icons/plugins/browser_plugin/plugin.png -share/luma/icons/plugins/mass_creation_plugin/massive_users.png -share/luma/icons/plugins/search_plugin/plugin.png -share/luma/icons/plugins/template_plugin/add.png -share/luma/icons/plugins/template_plugin/down.png -share/luma/icons/plugins/template_plugin/plugin.png -share/luma/icons/plugins/template_plugin/remove.png -share/luma/icons/plugins/template_plugin/up.png -share/luma/icons/plugins/usermanagement/email.png -share/luma/icons/plugins/usermanagement/entry.png -share/luma/icons/plugins/usermanagement/group.png -share/luma/icons/plugins/usermanagement/groupbig.png -share/luma/icons/plugins/usermanagement/home.png -share/luma/icons/plugins/usermanagement/password.png -share/luma/icons/plugins/usermanagement/shell.png -share/luma/icons/plugins/usermanagement/usermanagement.png -share/luma/icons/reload.png -share/luma/icons/save.png -share/luma/icons/secure.png -share/luma/icons/server.png -share/luma/icons/single.png -share/luma/icons/tip.png -share/luma/icons/view_icon.png -share/luma/icons/view_tree.png -share/luma/icons/warning.png -share/luma/icons/world.png -share/luma/icons/worldmedium.png +%%DATADIR%%/doc/massive.help +%%DATADIR%%/i18n/br.png +%%DATADIR%%/i18n/de.png +%%DATADIR%%/i18n/es.png +%%DATADIR%%/i18n/gb.png +%%DATADIR%%/i18n/luma_br.qm +%%DATADIR%%/i18n/luma_de.qm +%%DATADIR%%/i18n/luma_es.qm +%%DATADIR%%/i18n/luma_fr.qm +%%DATADIR%%/i18n/luma_no.qm +%%DATADIR%%/i18n/luma_ru.qm +%%DATADIR%%/i18n/luma_sv.qm +%%DATADIR%%/i18n/no.png +%%DATADIR%%/i18n/ru.png +%%DATADIR%%/i18n/sv.png +%%DATADIR%%/icons/AdvancedObjectWidget/binary.png +%%DATADIR%%/icons/AdvancedObjectWidget/delete.png +%%DATADIR%%/icons/AdvancedObjectWidget/displayall.png +%%DATADIR%%/icons/AdvancedObjectWidget/save.png +%%DATADIR%%/icons/AdvancedObjectWidget/single.png +%%DATADIR%%/icons/addattribute.png +%%DATADIR%%/icons/binary.png +%%DATADIR%%/icons/clear.png +%%DATADIR%%/icons/config.png +%%DATADIR%%/icons/delete.png +%%DATADIR%%/icons/deleteEntry.png +%%DATADIR%%/icons/delete_small.png +%%DATADIR%%/icons/displayall.png +%%DATADIR%%/icons/edit.png +%%DATADIR%%/icons/editdelete.png +%%DATADIR%%/icons/email.png +%%DATADIR%%/icons/error.png +%%DATADIR%%/icons/exportBinary.png +%%DATADIR%%/icons/exportLdif.png +%%DATADIR%%/icons/final.png +%%DATADIR%%/icons/folder.png +%%DATADIR%%/icons/help.png +%%DATADIR%%/icons/language.png +%%DATADIR%%/icons/mainwin/bookmark.png +%%DATADIR%%/icons/mainwin/configure.png +%%DATADIR%%/icons/mainwin/domtreeviewer.png +%%DATADIR%%/icons/mainwin/exit.png +%%DATADIR%%/icons/mainwin/fileclose.png +%%DATADIR%%/icons/mainwin/gear.png +%%DATADIR%%/icons/mainwin/reload.png +%%DATADIR%%/icons/manage.png +%%DATADIR%%/icons/new.png +%%DATADIR%%/icons/newEntry.png +%%DATADIR%%/icons/no.png +%%DATADIR%%/icons/objectclass.png +%%DATADIR%%/icons/ok.png +%%DATADIR%%/icons/password_big.png +%%DATADIR%%/icons/passwordmedium.png +%%DATADIR%%/icons/plugins/addressbook/addressbook.png +%%DATADIR%%/icons/plugins/addressbook/category.png +%%DATADIR%%/icons/plugins/addressbook/email.png +%%DATADIR%%/icons/plugins/addressbook/home.png +%%DATADIR%%/icons/plugins/addressbook/location.png +%%DATADIR%%/icons/plugins/addressbook/person.png +%%DATADIR%%/icons/plugins/addressbook/personal.png +%%DATADIR%%/icons/plugins/addressbook/phone.png +%%DATADIR%%/icons/plugins/addressbook/url.png +%%DATADIR%%/icons/plugins/addressbook/work.png +%%DATADIR%%/icons/plugins/admin_utils/admin_utils.png +%%DATADIR%%/icons/plugins/admin_utils/date.png +%%DATADIR%%/icons/plugins/admin_utils/secure.png +%%DATADIR%%/icons/plugins/browser_plugin/plugin.png +%%DATADIR%%/icons/plugins/mass_creation_plugin/massive_users.png +%%DATADIR%%/icons/plugins/search_plugin/plugin.png +%%DATADIR%%/icons/plugins/template_plugin/add.png +%%DATADIR%%/icons/plugins/template_plugin/down.png +%%DATADIR%%/icons/plugins/template_plugin/plugin.png +%%DATADIR%%/icons/plugins/template_plugin/remove.png +%%DATADIR%%/icons/plugins/template_plugin/up.png +%%DATADIR%%/icons/plugins/usermanagement/email.png +%%DATADIR%%/icons/plugins/usermanagement/entry.png +%%DATADIR%%/icons/plugins/usermanagement/group.png +%%DATADIR%%/icons/plugins/usermanagement/groupbig.png +%%DATADIR%%/icons/plugins/usermanagement/home.png +%%DATADIR%%/icons/plugins/usermanagement/password.png +%%DATADIR%%/icons/plugins/usermanagement/shell.png +%%DATADIR%%/icons/plugins/usermanagement/usermanagement.png +%%DATADIR%%/icons/alias.png +%%DATADIR%%/icons/reload.png +%%DATADIR%%/icons/save.png +%%DATADIR%%/icons/secure.png +%%DATADIR%%/icons/secure-alias.png +%%DATADIR%%/icons/server.png +%%DATADIR%%/icons/single.png +%%DATADIR%%/icons/tip.png +%%DATADIR%%/icons/view_icon.png +%%DATADIR%%/icons/view_tree.png +%%DATADIR%%/icons/warning.png +%%DATADIR%%/icons/world.png +%%DATADIR%%/icons/worldmedium.png @dirrm lib/luma/base/backend @dirrm lib/luma/base/gui @dirrm lib/luma/base/utils/backend @@ -354,17 +358,17 @@ @dirrm lib/luma/plugins/usermanagement @dirrm lib/luma/plugins @dirrm lib/luma -@dirrm share/luma/doc -@dirrm share/luma/i18n -@dirrm share/luma/icons/AdvancedObjectWidget -@dirrm share/luma/icons/mainwin -@dirrm share/luma/icons/plugins/addressbook -@dirrm share/luma/icons/plugins/admin_utils -@dirrm share/luma/icons/plugins/browser_plugin -@dirrm share/luma/icons/plugins/mass_creation_plugin -@dirrm share/luma/icons/plugins/search_plugin -@dirrm share/luma/icons/plugins/template_plugin -@dirrm share/luma/icons/plugins/usermanagement -@dirrm share/luma/icons/plugins -@dirrm share/luma/icons -@dirrm share/luma +@dirrm %%DATADIR%%/doc +@dirrm %%DATADIR%%/i18n +@dirrm %%DATADIR%%/icons/AdvancedObjectWidget +@dirrm %%DATADIR%%/icons/mainwin +@dirrm %%DATADIR%%/icons/plugins/addressbook +@dirrm %%DATADIR%%/icons/plugins/admin_utils +@dirrm %%DATADIR%%/icons/plugins/browser_plugin +@dirrm %%DATADIR%%/icons/plugins/mass_creation_plugin +@dirrm %%DATADIR%%/icons/plugins/search_plugin +@dirrm %%DATADIR%%/icons/plugins/template_plugin +@dirrm %%DATADIR%%/icons/plugins/usermanagement +@dirrm %%DATADIR%%/icons/plugins +@dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%% --- luma-1.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 12:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDDA516A4CF for ; Thu, 16 Dec 2004 12:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E39B43D39 for ; Thu, 16 Dec 2004 12:30:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGCUUR1018249 for ; Thu, 16 Dec 2004 12:30:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGCUU9S018248; Thu, 16 Dec 2004 12:30:30 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 12:30:30 GMT Resent-Message-Id: <200412161230.iBGCUU9S018248@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, Jilles Tjoelker Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 203D716A4CF for ; Thu, 16 Dec 2004 12:28:46 +0000 (GMT) Received: from mailhost.stack.nl (vaak.stack.nl [131.155.140.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id D196443D49 for ; Thu, 16 Dec 2004 12:28:44 +0000 (GMT) (envelope-from jilles@stack.nl) Received: from turtle.stack.nl (turtle.stack.nl [IPv6:2001:610:1108:5010::132]) by mailhost.stack.nl (Postfix) with ESMTP id C23E01F1CE for ; Thu, 16 Dec 2004 13:28:43 +0100 (CET) Received: by turtle.stack.nl (Postfix, from userid 1677) id A1D281D9BC; Thu, 16 Dec 2004 13:28:43 +0100 (CET) Message-Id: <20041216122843.A1D281D9BC@turtle.stack.nl> Date: Thu, 16 Dec 2004 13:28:43 +0100 (CET) From: Jilles Tjoelker To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75147: [PATCH] Several improvements to security/putty, mainly pterm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jilles Tjoelker List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 12:30:31 -0000 >Number: 75147 >Category: ports >Synopsis: [PATCH] Several improvements to security/putty, mainly pterm >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: Thu Dec 16 12:30:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jilles Tjoelker >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: MCGV Stack >Environment: System: FreeBSD turtle.stack.nl 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #5: Thu Dec 2 17:25:55 CET 2004 jilles@snail.stack.nl:/usr/obj/usr/src/sys/SNAIL i386 >Description: This concerns the security/putty port, which includes an xterm-like program called pterm. pterm sometimes fails to set up the pty properly. FreeBSD does not allow most tty ioctls on the master side unless the slave side is open, and pterm does not guarantee that. This patch makes it open the slave side in the parent process, before fork(2), and close it after forking. Also, it fixes a wrong initialization of pty_utmp_helper_pipe, namely to 0 instead of -1. This wrong initialization can be seen in some bogus output when starting pterm. (This latter thing no longer happens since the helper process is used for resetting permissions.) Additionally, ownership of the pty is now treated properly: if you do not set the setuid bit on pterm, it will use if the first free pty with an accessible slave device; it will still leave the slave device wide open (allowing easy terminal emulation exploits and similar nastiness), but that cannot be helped. If you set the setuid bit, pterm will chown/chmod the pty at start and set it back to root:wheel 666 later. The port does not respect PREFIX. Add an option, WITH_SETUID_PTERM, to make pterm setuid root. >How-To-Repeat: Install security/putty. Make next free /dev/tty[pqrsPQRS]* inaccessible for the current user and run non-setuid pterm. (old version will fail, patched version should work) Run setuid pterm, check which pty is used, exit it and check the permissions on the pty. (old version will not restore owner/permissions, patched version should) >Fix: Replace files/patch-pty.c with this one. Apply putty-Makefile.patch to ports/security/putty/Makefile. --- patch-pty.c begins here --- --- pty.c.orig Thu Dec 16 11:04:19 2004 +++ pty.c Thu Dec 16 11:24:21 2004 @@ -14,8 +14,11 @@ #define _XOPEN_SOURCE #define _XOPEN_SOURCE_EXTENDED #define _GNU_SOURCE +#ifndef __FreeBSD__ #include +#endif +#include #include #include #include @@ -32,6 +35,10 @@ #include #include +#ifdef __FreeBSD__ +#include +#endif + #include "putty.h" #ifndef FALSE @@ -68,6 +75,12 @@ #define HAVE_PUTUTLINE #endif #endif +#ifdef BSD +#define RESTORE_PTY_PERM +#endif +#if !defined(OMIT_UTMP) || defined(RESTORE_PTY_PERM) +#define FORK_HELPER +#endif static Config pty_cfg; static int pty_master_fd; @@ -76,7 +89,7 @@ static int pty_signal_pipe[2]; static int pty_stamped_utmp = 0; static int pty_child_pid; -static int pty_utmp_helper_pid, pty_utmp_helper_pipe; +static int pty_utmp_helper_pid, pty_utmp_helper_pipe = -1; static int pty_term_width, pty_term_height; static int pty_child_dead, pty_finished; static int pty_exit_code; @@ -174,6 +187,16 @@ #endif } +static void restore_pty_perm(void) +{ +#ifdef RESTORE_PTY_PERM + if (pty_name[0] == '\0') + return; + chown(pty_name, 0, 0); + chmod(pty_name, 0666); +#endif +} + static void sigchld_handler(int signum) { write(pty_signal_pipe[1], "x", 1); @@ -183,6 +206,7 @@ { putty_signal(signum, SIG_DFL); cleanup_utmp(); + restore_pty_perm(); setuid(getuid()); raise(signum); } @@ -190,8 +214,13 @@ static void pty_open_master(void) { #ifdef BSD_PTYS +#ifdef BSD + const char chars1[] = "pqrsPQRS"; + const char chars2[] = "0123456789abcdefghijklmnopqrstuv"; +#else const char chars1[] = "pqrstuvwxyz"; const char chars2[] = "0123456789abcdef"; +#endif const char *p1, *p2; char master_name[20]; struct group *gp; @@ -201,6 +230,7 @@ sprintf(master_name, "/dev/pty%c%c", *p1, *p2); pty_master_fd = open(master_name, O_RDWR); if (pty_master_fd >= 0) { + master_name[5] = 't'; /* /dev/ptyXX -> /dev/ttyXX */ if (geteuid() == 0 || access(master_name, R_OK | W_OK) == 0) goto got_one; @@ -214,7 +244,6 @@ got_one: strcpy(pty_name, master_name); - pty_name[5] = 't'; /* /dev/ptyXX -> /dev/ttyXX */ /* We need to chown/chmod the /dev/ttyXX device. */ gp = getgrnam("tty"); @@ -270,17 +299,19 @@ pty_open_master(); } -#ifndef OMIT_UTMP +#ifdef FORK_HELPER /* * Fork off the utmp helper. */ if (pipe(pipefd) < 0) { perror("pterm: pipe"); + restore_pty_perm(); exit(1); } pid = fork(); if (pid < 0) { perror("pterm: fork"); + restore_pty_perm(); exit(1); } else if (pid == 0) { char display[128], buffer[128]; @@ -288,6 +319,52 @@ close(pipefd[1]); /* + * Trap as many fatal signals as we can in the + * hope of having the best possible chance to + * clean up utmp and restore the pty permissions + * before termination. We are unfortunately + * unprotected against SIGKILL, but that's life. + */ + putty_signal(SIGHUP, fatal_sig_handler); + putty_signal(SIGINT, fatal_sig_handler); + putty_signal(SIGQUIT, fatal_sig_handler); + putty_signal(SIGILL, fatal_sig_handler); + putty_signal(SIGABRT, fatal_sig_handler); + putty_signal(SIGFPE, fatal_sig_handler); + putty_signal(SIGPIPE, fatal_sig_handler); + putty_signal(SIGALRM, fatal_sig_handler); + putty_signal(SIGTERM, fatal_sig_handler); + putty_signal(SIGSEGV, fatal_sig_handler); + putty_signal(SIGUSR1, fatal_sig_handler); + putty_signal(SIGUSR2, fatal_sig_handler); +#ifdef SIGBUS + putty_signal(SIGBUS, fatal_sig_handler); +#endif +#ifdef SIGPOLL + putty_signal(SIGPOLL, fatal_sig_handler); +#endif +#ifdef SIGPROF + putty_signal(SIGPROF, fatal_sig_handler); +#endif +#ifdef SIGSYS + putty_signal(SIGSYS, fatal_sig_handler); +#endif +#ifdef SIGTRAP + putty_signal(SIGTRAP, fatal_sig_handler); +#endif +#ifdef SIGVTALRM + putty_signal(SIGVTALRM, fatal_sig_handler); +#endif +#ifdef SIGXCPU + putty_signal(SIGXCPU, fatal_sig_handler); +#endif +#ifdef SIGXFSZ + putty_signal(SIGXFSZ, fatal_sig_handler); +#endif +#ifdef SIGIO + putty_signal(SIGIO, fatal_sig_handler); +#endif + /* * Now sit here until we receive a display name from the * other end of the pipe, and then stamp utmp. Unstamp utmp * again, and exit, when the pipe closes. @@ -299,6 +376,7 @@ ret = read(pipefd[0], buffer, lenof(buffer)); if (ret <= 0) { cleanup_utmp(); + restore_pty_perm(); _exit(0); } else if (!pty_stamped_utmp) { if (dlen < lenof(display)) @@ -310,52 +388,6 @@ * it, and stamp utmp. */ display[lenof(display)-1] = '\0'; - /* - * Trap as many fatal signals as we can in the - * hope of having the best possible chance to - * clean up utmp before termination. We are - * unfortunately unprotected against SIGKILL, - * but that's life. - */ - putty_signal(SIGHUP, fatal_sig_handler); - putty_signal(SIGINT, fatal_sig_handler); - putty_signal(SIGQUIT, fatal_sig_handler); - putty_signal(SIGILL, fatal_sig_handler); - putty_signal(SIGABRT, fatal_sig_handler); - putty_signal(SIGFPE, fatal_sig_handler); - putty_signal(SIGPIPE, fatal_sig_handler); - putty_signal(SIGALRM, fatal_sig_handler); - putty_signal(SIGTERM, fatal_sig_handler); - putty_signal(SIGSEGV, fatal_sig_handler); - putty_signal(SIGUSR1, fatal_sig_handler); - putty_signal(SIGUSR2, fatal_sig_handler); -#ifdef SIGBUS - putty_signal(SIGBUS, fatal_sig_handler); -#endif -#ifdef SIGPOLL - putty_signal(SIGPOLL, fatal_sig_handler); -#endif -#ifdef SIGPROF - putty_signal(SIGPROF, fatal_sig_handler); -#endif -#ifdef SIGSYS - putty_signal(SIGSYS, fatal_sig_handler); -#endif -#ifdef SIGTRAP - putty_signal(SIGTRAP, fatal_sig_handler); -#endif -#ifdef SIGVTALRM - putty_signal(SIGVTALRM, fatal_sig_handler); -#endif -#ifdef SIGXCPU - putty_signal(SIGXCPU, fatal_sig_handler); -#endif -#ifdef SIGXFSZ - putty_signal(SIGXFSZ, fatal_sig_handler); -#endif -#ifdef SIGIO - putty_signal(SIGIO, fatal_sig_handler); -#endif setup_utmp(pty_name, display); } } @@ -510,21 +542,15 @@ pty_open_master(); /* - * Set the backspace character to be whichever of ^H and ^? is - * specified by bksp_is_delete. - */ - { - struct termios attrs; - tcgetattr(pty_master_fd, &attrs); - attrs.c_cc[VERASE] = cfg->bksp_is_delete ? '\177' : '\010'; - tcsetattr(pty_master_fd, TCSANOW, &attrs); - } - - /* * Stamp utmp (that is, tell the utmp helper process to do so), * or not. */ +#ifdef FORK_HELPER +#ifndef RESTORE_PTY_PERM if (!cfg->stamp_utmp) { +#else + if (0) { +#endif close(pty_utmp_helper_pipe); /* just let the child process die */ pty_utmp_helper_pipe = -1; } else { @@ -541,10 +567,28 @@ pos += ret; } } +#endif windowid = get_windowid(pty_frontend); /* + * Open the slave in the parent process, that way it is open before we + * attempt to tcsetattr() or TIOCSWINSZ. FreeBSD requires this. + */ + slavefd = open(pty_name, O_RDWR); + + /* + * Set the backspace character to be whichever of ^H and ^? is + * specified by bksp_is_delete. + */ + { + struct termios attrs; + tcgetattr(pty_master_fd, &attrs); + attrs.c_cc[VERASE] = cfg->bksp_is_delete ? '\177' : '\010'; + tcsetattr(pty_master_fd, TCSANOW, &attrs); + } + + /* * Fork and execute the command. */ pid = fork(); @@ -559,7 +603,6 @@ * We are the child. */ - slavefd = open(pty_name, O_RDWR); if (slavefd < 0) { perror("slave pty: open"); _exit(1); @@ -574,9 +617,9 @@ ioctl(slavefd, TIOCSCTTY, 1); pgrp = getpid(); tcsetpgrp(slavefd, pgrp); - setpgrp(); + setpgrp( pgrp, -1 ); close(open(pty_name, O_WRONLY, 0)); - setpgrp(); + setpgrp( pgrp, -1 ); /* Close everything _else_, for tidiness. */ for (i = 3; i < 1024; i++) close(i); @@ -641,6 +684,7 @@ perror("exec"); _exit(127); } else { + close(slavefd); pty_child_pid = pid; pty_child_dead = FALSE; pty_finished = FALSE; --- patch-pty.c ends here --- --- putty-Makefile.patch begins here --- --- Makefile.orig Thu Oct 28 12:17:28 2004 +++ Makefile Thu Dec 16 13:18:15 2004 @@ -18,6 +18,7 @@ USE_REINPLACE= yes WRKSRC= ${WRKDIR}/${DISTNAME}/unix MAKEFILE= Makefile.gtk +MAKE_ARGS= prefix=${PREFIX} CFLAGS+= -DBSD_PTYS -DOMIT_UTMP .ifndef WITHOUT_IPV6 CFLAGS+= -DIPV6 @@ -44,6 +45,12 @@ do-configure: ${CP} ${FILESDIR}/wcrtomb.c ${FILESDIR}/mbrtowc.c \ ${WRKSRC}/ +.endif + +.ifdef WITH_SETUID_PTERM +post-install: + ${CHOWN} root ${PREFIX}/bin/pterm + ${CHMOD} u+s ${PREFIX}/bin/pterm .endif .include --- putty-Makefile.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 12:40:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7C1516A4CE for ; Thu, 16 Dec 2004 12:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59CE143D46 for ; Thu, 16 Dec 2004 12:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGCeNnT020970 for ; Thu, 16 Dec 2004 12:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGCeNWl020963; Thu, 16 Dec 2004 12:40:23 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 12:40:23 GMT Resent-Message-Id: <200412161240.iBGCeNWl020963@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, Ulrich Spoerlein Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBB9B16A4CE for ; Thu, 16 Dec 2004 12:30:26 +0000 (GMT) Received: from wrzx35.rz.uni-wuerzburg.de (wrzx35.rz.uni-wuerzburg.de [132.187.3.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0355343D60 for ; Thu, 16 Dec 2004 12:30:26 +0000 (GMT) (envelope-from q@uni.de) Received: from wrzx34.rz.uni-wuerzburg.de (wrzx34.rz.uni-wuerzburg.de [132.187.3.34]) by wrzx35.rz.uni-wuerzburg.de (Postfix) with ESMTP id 25992DD844; Thu, 16 Dec 2004 13:30:25 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id F358658E9D; Thu, 16 Dec 2004 13:30:24 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id BBA681D5A8; Thu, 16 Dec 2004 13:30:24 +0100 (CET) Received: from coyote.q.local (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 93056D4B07; Thu, 16 Dec 2004 13:30:24 +0100 (CET) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.1/8.13.1) with ESMTP id iBGCUOpR035073; Thu, 16 Dec 2004 13:30:24 +0100 (CET) (envelope-from q@roadrunner.q.local) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.1/8.13.1) with ESMTP id iBGCUNv2093139; Thu, 16 Dec 2004 13:30:23 +0100 (CET) (envelope-from q@roadrunner.q.local) Received: (from q@localhost) by roadrunner.q.local (8.13.1/8.13.1/Submit) id iBGCUNX9093138; Thu, 16 Dec 2004 13:30:23 +0100 (CET) (envelope-from q) Message-Id: <200412161230.iBGCUNX9093138@roadrunner.q.local> Date: Thu, 16 Dec 2004 13:30:23 +0100 (CET) From: Ulrich Spoerlein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dbader@eece.unm.edu Subject: ports/75148: [PATCH] math/concorde: update to 20031219 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 12:40:25 -0000 >Number: 75148 >Category: ports >Synopsis: [PATCH] math/concorde: update to 20031219 >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 Dec 16 12:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ulrich Spoerlein >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD roadrunner 5.3-STABLE FreeBSD 5.3-STABLE #8: Tue Dec 14 19:33:14 CET 2004 >Description: This supersedes ports/75144, my path setting shadowed the build error on my system. - Update to 20031219 - Build all binaries (they are very useful!) - Install them to ${PREFIX}/bin/concorde/ to avoid name collision - Update pkg-descr to reflect Homepage Added file(s): - files/patch-bigguy-Makefile.in - files/patch-killgrun.c Removed file(s): - files/patch-UTIL_urandom.c Port maintainer (dbader@eece.unm.edu) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- concorde-20031219.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/math/concorde/Makefile,v retrieving revision 1.6 diff -u -u -r1.6 Makefile --- Makefile 24 Apr 2003 01:56:27 -0000 1.6 +++ Makefile 16 Dec 2004 12:25:35 -0000 @@ -6,12 +6,11 @@ # PORTNAME= concorde -PORTVERSION= 1.0 -PORTREVISION= 1 +PORTVERSION= 20031219 CATEGORIES= math parallel -MASTER_SITES= http://www.math.princeton.edu/tsp/concorde/ \ - ftp://ftp.caam.rice.edu/pub/software/keck/ -DISTNAME= co991215 +MASTER_SITES= http://www.tsp.gatech.edu/concorde/ \ + http://www.math.princeton.edu/tsp/concorde/ +DISTNAME= co031219 EXTRACT_SUFX= .tgz MAINTAINER= dbader@eece.unm.edu @@ -19,14 +18,24 @@ WRKSRC= ${WRKDIR}/concorde -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes +ALL_TARGET= everything INCFILES= bigguy.h combs.h config.h consec1.h cut.h cuttree.h \ delaunay.h edgegen.h fmatch.h heldkarp.h kdtree.h \ linkern.h localcut.h lp.h machdefs.h macrorus.h mlinkern.h \ - necklace.h pq.h pqsets.h profdata.h profrus.h tinytsp.h \ + necklace.h pq.h pqsets.h tinytsp.h \ tsp.h util.h verify.h +BINFILES= BIGGUY/bg_test COMBS/combtest CUT/lin_all CUT/mincut \ + EDGEGEN/edgegen FMATCH/fmatch HELDKARP/heldkarp KDTREE/kdtree \ + LINKERN/linkern LOCALCUT/checker LOCALCUT/first \ + LOCALCUT/localcut LOCALCUT/peeler LOCALCUT/peeler2 PQ/pqtest \ + TINY/tinytsp TOOLS/edg2len TOOLS/edgunion TOOLS/fconvert \ + TOOLS/killgrun TOOLS/prob2tsp TOOLS/showres TOOLS/tourchk \ + TOOLS/tourlen TSP/bosstell TSP/concorde TSP/cutserv \ + TSP/poolcat TSP/probserv TSP/test_tsp VERIFY/verify + do-install: ${INSTALL_DATA} ${WRKSRC}/concorde.a ${PREFIX}/lib/libconcorde.a ${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 755 ${PREFIX}/include/concorde @@ -34,5 +43,10 @@ .for f in ${INCFILES} ${INSTALL_DATA} ${WRKSRC}/INCLUDE/${f} ${PREFIX}/include/concorde .endfor + ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 ${PREFIX}/bin/concorde +.for f in ${BINFILES} + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/concorde +.endfor + ${INSTALL_SCRIPT} ${WRKSRC}/TINY/randtsp.awk ${PREFIX}/bin/concorde .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/math/concorde/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 31 Mar 2004 03:09:27 -0000 1.2 +++ distinfo 16 Dec 2004 12:25:35 -0000 @@ -1,2 +1,2 @@ -MD5 (co991215.tgz) = 30c7dcccbde91a03d66e3e715f656650 -SIZE (co991215.tgz) = 732109 +MD5 (co031219.tgz) = 3476e01ae89b591bf7b329b2f5aa0353 +SIZE (co031219.tgz) = 698592 Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/math/concorde/pkg-descr,v retrieving revision 1.2 diff -u -u -r1.2 pkg-descr --- pkg-descr 24 Apr 2003 01:56:27 -0000 1.2 +++ pkg-descr 16 Dec 2004 12:25:35 -0000 @@ -1,20 +1,16 @@ -Concorde (99.12.15 release) This is the initial full release of Concorde. -More data about Concorde is available from the Concorde page at -http://www.math.princeton.edu/tsp/concorde.html. - Concorde is a computer code for the traveling salesman problem (TSP) and some related network optimization problems. The code is written in the ANSI C programming language and it is available for academic -research use; for other uses, contact concorde@caam.rice.edu for +research use; for other uses, contact bico@isye.gatech.edu for licensing options. Concorde's TSP solver has been used to obtain the optimal solutions to -all TSPLIB instances having up to 13,509 cities. +106 of the 110 TSPLIB instances; the largest having 15,112 cities. The Concorde callable library includes over 700 functions permitting users to create specialized codes for TSP-like problems. All Concorde -functions are thread-safe for prgramming in shared-memory parallel +functions are thread-safe for programming in shared-memory parallel environments; the main TSP solver includes code for running over networks of unix workstations. -WWW: http://www.math.princeton.edu/tsp/concorde.html +WWW: http://www.tsp.gatech.edu/concorde.html Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/math/concorde/pkg-plist,v retrieving revision 1.2 diff -u -u -r1.2 pkg-plist --- pkg-plist 1 Jul 2001 02:25:37 -0000 1.2 +++ pkg-plist 16 Dec 2004 12:25:35 -0000 @@ -1,3 +1,35 @@ +bin/concorde/bg_test +bin/concorde/bosstell +bin/concorde/checker +bin/concorde/combtest +bin/concorde/concorde +bin/concorde/cutserv +bin/concorde/edg2len +bin/concorde/edgegen +bin/concorde/edgunion +bin/concorde/fconvert +bin/concorde/first +bin/concorde/fmatch +bin/concorde/heldkarp +bin/concorde/kdtree +bin/concorde/killgrun +bin/concorde/lin_all +bin/concorde/linkern +bin/concorde/localcut +bin/concorde/mincut +bin/concorde/peeler +bin/concorde/peeler2 +bin/concorde/poolcat +bin/concorde/pqtest +bin/concorde/prob2tsp +bin/concorde/probserv +bin/concorde/randtsp.awk +bin/concorde/showres +bin/concorde/test_tsp +bin/concorde/tinytsp +bin/concorde/tourchk +bin/concorde/tourlen +bin/concorde/verify lib/libconcorde.a include/concorde/bigguy.h include/concorde/combs.h @@ -20,10 +52,9 @@ include/concorde/necklace.h include/concorde/pq.h include/concorde/pqsets.h -include/concorde/profdata.h -include/concorde/profrus.h include/concorde/tinytsp.h include/concorde/tsp.h include/concorde/util.h include/concorde/verify.h +@dirrm bin/concorde @dirrm include/concorde Index: files/patch-UTIL_urandom.c =================================================================== RCS file: files/patch-UTIL_urandom.c diff -N files/patch-UTIL_urandom.c --- files/patch-UTIL_urandom.c 12 Nov 2002 16:19:08 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,24 +0,0 @@ - -$FreeBSD: ports/math/concorde/files/patch-UTIL_urandom.c,v 1.1 2002/11/12 16:19:08 naddy Exp $ - ---- UTIL/urandom.c.orig Thu Dec 16 19:39:06 1999 -+++ UTIL/urandom.c Tue Nov 12 17:10:02 2002 -@@ -22,7 +22,7 @@ - /* */ - /* Written by: DIMACS (modified for TSP) */ - /* Date: February 7, 1995 (cofeb16) */ --/* */ -+/* September 18, 2001 (billenium fix) */ - /* */ - /* EXPORTED FUNCTIONS: */ - /* */ -@@ -66,6 +66,9 @@ - int i, ii; - int last, next; - int *arr = r->arr; -+ -+ seed %= CC_PRANDMAX; -+ if (seed < 0) seed += CC_PRANDMAX; - - arr[0] = last = seed; - next = 1; Index: files/patch-bigguy-Makefile.in =================================================================== RCS file: files/patch-bigguy-Makefile.in diff -N files/patch-bigguy-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-bigguy-Makefile.in 16 Dec 2004 12:25:35 -0000 @@ -0,0 +1,18 @@ +--- BIGGUY/Makefile.in.orig Thu Dec 16 20:22:41 1999 ++++ BIGGUY/Makefile.in Thu Dec 16 13:06:35 2004 +@@ -37,13 +37,13 @@ + + all: $(THISLIB) + +-everything: all bg_test test ++everything: all bg_test + + bg_test: bg_test.$o $(THISLIB) $(LIBS) + $(CC) $(LDFLAGS) -o $@ bg_test.$o $(THISLIB) $(LIBS) $(LIBFLAGS) + + test: bg_test +- time bg_test < $(srcdir)/bigguy.tst > bigguy.ts2 ++ time ./bg_test < $(srcdir)/bigguy.tst > bigguy.ts2 + cmp $(srcdir)/bigguy.tst bigguy.ts2 + + clean: Index: files/patch-killgrun.c =================================================================== RCS file: files/patch-killgrun.c diff -N files/patch-killgrun.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-killgrun.c 16 Dec 2004 12:25:35 -0000 @@ -0,0 +1,18 @@ +--- TOOLS/killgrun.c.orig Thu Dec 16 11:26:57 2004 ++++ TOOLS/killgrun.c Thu Dec 16 11:27:06 2004 +@@ -75,13 +75,13 @@ + if (rval) { + perror ("kill"); + fprintf (stderr, "Unable to kill process %d\n", process); +-/* ++#if 0 + if (errno == ESRCH) { /* Does not work on Red Hat 8 */ + fprintf (stderr, "Process does not exist, telling boss anyway\n"); + } else { + goto CLEANUP; + } +-*/ ++#endif + fprintf (stderr, "Process does not exist, telling boss anyway\n"); + } + } --- concorde-20031219.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 13:30:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97D3D16A4CF for ; Thu, 16 Dec 2004 13:30:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5826E43D41 for ; Thu, 16 Dec 2004 13:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGDUTMh026163 for ; Thu, 16 Dec 2004 13:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGDUTKS026162; Thu, 16 Dec 2004 13:30:29 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 13:30:29 GMT Resent-Message-Id: <200412161330.iBGDUTKS026162@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, Ilya Zhuravlev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85A0C16A4CE for ; Thu, 16 Dec 2004 13:28:44 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F78843D41 for ; Thu, 16 Dec 2004 13:28:44 +0000 (GMT) (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 iBGDSgBH008323 for ; Thu, 16 Dec 2004 13:28:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBGDSggV008322; Thu, 16 Dec 2004 13:28:42 GMT (envelope-from nobody) Message-Id: <200412161328.iBGDSggV008322@www.freebsd.org> Date: Thu, 16 Dec 2004 13:28:42 GMT From: Ilya Zhuravlev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75150: Authentification data leak in emails sent to addressees (Evolution 2.0.2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 13:30:29 -0000 >Number: 75150 >Category: ports >Synopsis: Authentification data leak in emails sent to addressees (Evolution 2.0.2) >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: Thu Dec 16 13:30:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ilya Zhuravlev >Release: 5.3 release p1 >Organization: None >Environment: FreeBSD host.cbtnet.ru 5.3-RELEASE-p1 FreeBSD 5.3-RELEASE-p1 #5: Tue Dec 14 13:36:59 IRKT 2004 ilya@crux.cbtnet.ru:/usr/src/sys/i386/compile/CRUX i386 >Description: X-Mailer: Evolution 2.0.2 FreeBSD GNOME Team Port X-Evolution-Transport:smtp://i.a.zhuravlev%40cbtnet.ru;auth=PLAIN@mail.cbtnet.ru/;use_ssl=when-possible X-Evolution-Account: Personal ---------------------------- This problem was discussed with developers of the program : http://support-forums.novell.com/group/novell.support.evolution/readerNoFrame.tpt/@thread@175@F@10@D-,D@ALL/@article@172 (See "Unwanted feature in Evolution") They assert, that did not include similar "functionality" in the Evolution. >How-To-Repeat: Sent email >Fix: Now X-headers are rewtitten on mail server >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 14:30:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 268E516A4D2 for ; Thu, 16 Dec 2004 14:30:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFE6743D45 for ; Thu, 16 Dec 2004 14:30:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGEUYCe033672 for ; Thu, 16 Dec 2004 14:30:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGEUYdB033671; Thu, 16 Dec 2004 14:30:34 GMT (envelope-from gnats) Date: Thu, 16 Dec 2004 14:30:34 GMT Message-Id: <200412161430.iBGEUYdB033671@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ulrich Spoerlein Subject: Re: ports/75144: [PATCH] math/concorde: update to 20031219 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ulrich Spoerlein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 14:30:35 -0000 The following reply was made to PR ports/75144; it has been noted by GNATS. From: Ulrich Spoerlein To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/75144: [PATCH] math/concorde: update to 20031219 Date: Thu, 16 Dec 2004 15:20:28 +0100 Superseded by ports/75148, please close this one. Ulrich Spoerlein -- PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 14:50:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE65E16A4CE for ; Thu, 16 Dec 2004 14:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF7FD43D1D for ; Thu, 16 Dec 2004 14:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGEoOUX036127 for ; Thu, 16 Dec 2004 14:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGEoOw7036125; Thu, 16 Dec 2004 14:50:24 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 14:50:24 GMT Resent-Message-Id: <200412161450.iBGEoOw7036125@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, Jim Geovedi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8342816A4CE for ; Thu, 16 Dec 2004 14:47:42 +0000 (GMT) Received: from mx2.ITB.ac.id (mx2.ITB.ac.id [167.205.1.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id E866443D5A for ; Thu, 16 Dec 2004 14:47:37 +0000 (GMT) (envelope-from negative@fileserver.lapi.itb.ac.id) Received: from mx4.ITB.ac.id (mx4.itb.ac.id [167.205.1.69]) by mx2.ITB.ac.id (Postfix) with ESMTP id 1AF0973EE6 for ; Thu, 16 Dec 2004 22:07:03 +0700 (WIT) Received: by mx4.ITB.ac.id (Postfix, from userid 66) id D6F1F4AC5C; Thu, 16 Dec 2004 21:46:04 +0700 (WIT) Received: from mx3.ITB.ac.id (backup-mx.itb.ac.id [167.205.1.72]) by mx4.itb.ac.id (VaMailArmor-2.0.1.16) id 67225-34588015; Thu, 16 Dec 2004 21:46:04 +0700 Received: from fileserver.lapi.itb.ac.id (fileserver.lapi.itb.ac.id [167.205.8.3]) by mx3.ITB.ac.id (Postfix) with ESMTP id 670B232A90 for ; Thu, 16 Dec 2004 21:47:25 +0700 (WIT) Received: from fileserver.lapi.itb.ac.id (localhost [127.0.0.1]) iBGElQh8066398 for ; Thu, 16 Dec 2004 21:47:26 +0700 (WIT) (envelope-from negative@fileserver.lapi.itb.ac.id) Received: (from negative@localhost) by fileserver.lapi.itb.ac.id (8.13.1/8.13.1/Submit) id iBGElPrr066397; Thu, 16 Dec 2004 21:47:25 +0700 (WIT) (envelope-from negative) Message-Id: <200412161447.iBGElPrr066397@fileserver.lapi.itb.ac.id> Date: Thu, 16 Dec 2004 21:47:25 +0700 (WIT) From: Jim Geovedi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75151: [MAINTAINER-UPDATE] security/flawfinder X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jim Geovedi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 14:50:25 -0000 >Number: 75151 >Category: ports >Synopsis: [MAINTAINER-UPDATE] security/flawfinder >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 Dec 16 14:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: negative >Release: FreeBSD 6.0-CURRENT i386 >Organization: Institut Teknologi Bandung >Environment: System: FreeBSD fileserver.lapi.itb.ac.id 6.0-CURRENT FreeBSD 6.0-CURRENT #1: Wed Dec 15 12:37:58 WIT 2004 dikshie@fileserver.lapi.itb.ac.id:/usr/obj/usr/src/sys/SAMBA i386 >Description: Maintainer update of security/flawfinder from 1.24 to 1.26. >How-To-Repeat: >Fix: diff -ruN /usr/ports/security/flawfinder/Makefile flawfinder/Makefile --- /usr/ports/security/flawfinder/Makefile Mon Jan 5 18:03:07 2004 +++ flawfinder/Makefile Thu Dec 16 21:33:47 2004 @@ -7,7 +7,7 @@ # PORTNAME= flawfinder -PORTVERSION= 1.24 +PORTVERSION= 1.26 CATEGORIES= security devel MASTER_SITES= http://www.dwheeler.com/flawfinder/ \ ${MASTER_SITE_PACKETSTORM} diff -ruN /usr/ports/security/flawfinder/distinfo flawfinder/distinfo --- /usr/ports/security/flawfinder/distinfo Sat Apr 3 00:18:58 2004 +++ flawfinder/distinfo Thu Dec 16 21:34:31 2004 @@ -1,2 +1,2 @@ -MD5 (flawfinder-1.24.tar.gz) = 85a291ae9bf5a6eec823169057f950df -SIZE (flawfinder-1.24.tar.gz) = 97222 +MD5 (flawfinder-1.26.tar.gz) = 242a90ecf2f21a709a2425c8771ef38e +SIZE (flawfinder-1.26.tar.gz) = 130412 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 14:50:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D623F16A4CE for ; Thu, 16 Dec 2004 14:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAC8943D1D for ; Thu, 16 Dec 2004 14:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGEoR84036180 for ; Thu, 16 Dec 2004 14:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGEoRUH036179; Thu, 16 Dec 2004 14:50:27 GMT (envelope-from gnats) Date: Thu, 16 Dec 2004 14:50:27 GMT Message-Id: <200412161450.iBGEoRUH036179@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matt Mills Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Mills List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 14:50:28 -0000 The following reply was made to PR ports/75054; it has been noted by GNATS. From: Matt Mills To: freebsd-gnats-submit@FreeBSD.org, sem@FreeBSD.org, vs@FreeBSD.org Cc: Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc Date: Thu, 16 Dec 2004 14:49:42 +0000 Find below a link to patches to take maintainership of port and update to v0.7. http://www.btinternet.com/~matt_mills/fbsd_diffs/nethirc/ -- Matt From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:01:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE98016A4CF; Thu, 16 Dec 2004 16:01:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C702543D39; Thu, 16 Dec 2004 16:01:32 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from freefall.freebsd.org (hq@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGG1WhU044248; Thu, 16 Dec 2004 16:01:32 GMT (envelope-from hq@freefall.freebsd.org) Received: (from hq@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGG1WRE044244; Thu, 16 Dec 2004 16:01:32 GMT (envelope-from hq) Date: Thu, 16 Dec 2004 16:01:32 GMT From: Herve Quiroz Message-Id: <200412161601.iBGG1WRE044244@freefall.freebsd.org> To: hq@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hq@FreeBSD.org Subject: Re: ports/75143: There is no way to specify jvm parameters when starting jakarta-tomcat. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:01:33 -0000 Synopsis: There is no way to specify jvm parameters when starting jakarta-tomcat. Responsible-Changed-From-To: freebsd-ports-bugs->hq Responsible-Changed-By: hq Responsible-Changed-When: Thu Dec 16 15:57:23 GMT 2004 Responsible-Changed-Why: I'll handle this as I'm already taking care of other tomcat related PRs. BTW, this port has a maintainer, so please CC him when sending a PR related to Tomcat. http://www.freebsd.org/cgi/query-pr.cgi?pr=75143 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:10:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB7E016A4CE for ; Thu, 16 Dec 2004 16:10:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49E3643D39 for ; Thu, 16 Dec 2004 16:10:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGAWSC048298 for ; Thu, 16 Dec 2004 16:10:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGAWkX048297; Thu, 16 Dec 2004 16:10:32 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 16:10:32 GMT Resent-Message-Id: <200412161610.iBGGAWkX048297@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, Kang Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1FA116A4CE for ; Thu, 16 Dec 2004 16:03:43 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8045943D31 for ; Thu, 16 Dec 2004 16:03:43 +0000 (GMT) (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 iBGG3gZ7041000 for ; Thu, 16 Dec 2004 16:03:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBGG3gGC040999; Thu, 16 Dec 2004 16:03:42 GMT (envelope-from nobody) Message-Id: <200412161603.iBGG3gGC040999@www.freebsd.org> Date: Thu, 16 Dec 2004 16:03:42 GMT From: Kang Liu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75152: [maintainer] update www/jakarta-tomcat5 to 5.0.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:10:33 -0000 >Number: 75152 >Category: ports >Synopsis: [maintainer] update www/jakarta-tomcat5 to 5.0.30 >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 Dec 16 16:10:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Kang Liu >Release: 4.10 & 5.3 >Organization: Beijing University of Technology >Environment: FreeBSD 4.11-PRERELEASE #81 >Description: 1. Update www/jakarta-tomcat to 5.0.30 2. Use MAN1 in Makefile 3. Improved way for Backing up config files during deinstall (suggested by Brent Verner in PR: ports/43565) 4. Fix pkg_add warnings. >How-To-Repeat: [2]. The manual page of tomcatctl5 will not be removed during deinstall. [3]. During deinstall, all config files would be removed, even backuped config files. [4]. Run make package, then pkg_add the newly built package. >Fix: Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/jakarta-tomcat5/distinfo,v retrieving revision 1.12 diff -u -r1.12 distinfo --- distinfo 3 Nov 2004 16:35:35 -0000 1.12 +++ distinfo 15 Dec 2004 13:48:35 -0000 @@ -1,2 +1,2 @@ -MD5 (jakarta-tomcat-5.0.29.tar.gz) = 7c2552f9de414fe17dcc7737088c6a61 -SIZE (jakarta-tomcat-5.0.29.tar.gz) = 10799056 +MD5 (jakarta-tomcat-5.0.30.tar.gz) = e140483d062de8dd703cfd6ecac58c71 +SIZE (jakarta-tomcat-5.0.30.tar.gz) = 10842790 Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/jakarta-tomcat5/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 3 Nov 2004 16:35:35 -0000 1.21 +++ Makefile 15 Dec 2004 17:07:24 -0000 @@ -6,7 +6,7 @@ # PORTNAME= jakarta-tomcat -PORTVERSION= 5.0.29 +PORTVERSION= 5.0.30 CATEGORIES= www java MASTER_SITES= ${MASTER_SITE_APACHE_JAKARTA} MASTER_SITE_SUBDIR= tomcat-5/v${PORTVERSION}/bin @@ -18,6 +18,10 @@ JAVA_VERSION= 1.3+ NO_BUILD= YES +.if !defined(NOPORTDOCS) +MAN1= ${CONTROL_SCRIPT_NAME}.1 +.endif + MAJOR_VER= ${PORTVERSION:R} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} APP_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION:R} @@ -50,6 +54,8 @@ WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} WWWOWN=${USER} WWWGRP=${GROUP} LATEST_LINK= ${APP_SHORTNAME} +CONF_EXT= sample +PLIST_SUB+= CONF_EXT=${CONF_EXT} .include pre-patch: @@ -113,13 +119,19 @@ @${MKDIR} ${LOG_DIR} @${ECHO_CMD} " [ DONE ]" - @${ECHO_CMD} -n ">> Backing up configuration files..." - @${MV} ${APP_HOME}/conf ${APP_HOME}/conf.orig 2>/dev/null || true - @${ECHO_CMD} " [ DONE ]" - - @${ECHO_CMD} -n ">> Copying files to destination directory..." + @${ECHO_CMD} ">> Copying files to destination directory..." + @${CP} ${WRKDIR}/server.xml ${WRKSRC}/conf/ + @(cd ${WRKSRC};${FIND} conf -type f | ${SED} -e '/${CONF_EXT}/d') \ + | while read a; do \ + ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.${CONF_EXT}; \ + if [ ! -e "${APP_HOME}/$$a" ]; then \ + ${ECHO_CMD} " Installing local configuration file: ${APP_HOME}/$$a"; \ + ${CP} ${WRKSRC}/$$a.${CONF_EXT} ${WRKSRC}/$$a; \ + else \ + ${ECHO_CMD} " Preserving local configuration file: ${APP_HOME}/$$a"; \ + fi; \ + done @${CP} -R ${WRKSRC}/* ${APP_HOME} - @${CP} ${WRKDIR}/server.xml ${APP_HOME}/conf/ @${ECHO_CMD} " [ DONE ]" @${ECHO_CMD} -n ">> Compiling and installing control program..." Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/www/jakarta-tomcat5/pkg-plist,v retrieving revision 1.13 diff -u -r1.13 pkg-plist --- pkg-plist 3 Nov 2004 16:35:35 -0000 1.13 +++ pkg-plist 16 Dec 2004 15:34:55 -0000 @@ -1,19 +1,13 @@ -@exec mkdir %D/%%T%%/server || true -@exec mkdir %D/%%T%%/server/classes || true -@exec mkdir %D/%%T%%/server/webapps/admin/connector || true -@exec mkdir %D/%%T%%/server/webapps/admin/defaultcontext || true -@exec mkdir %D/%%T%%/server/webapps/admin/host || true -@exec mkdir %D/%%T%%/server/webapps/admin/logger || true -@exec mkdir %D/%%T%%/server/webapps/admin/realm || true -@exec mkdir %D/%%T%%/server/webapps/admin/context || true -@exec mkdir %D/%%T%%/server/webapps/admin/server || true -@exec mkdir %D/%%T%%/server/webapps/admin/service || true -@exec mkdir %D/%%T%%/server/webapps/admin/valve || true -@exec mkdir %D/%%T%%/shared || true -@exec mkdir %D/%%T%%/shared/classes || true -@exec mkdir %D/%%T%%/shared/lib || true -@exec mkdir %D/%%T%%/temp || true -@exec mkdir %D/%%T%%/conf.orig || true +@unexec if cmp -s %D/%%T%%/conf/Catalina/localhost/admin.xml %D/%%T%%/conf/Catalina/localhost/admin.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/Catalina/localhost/admin.xml; else echo If permanently deleting this package, %D/%%T%%/conf/Catalina/localhost/admin.xml must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/Catalina/localhost/balancer.xml %D/%%T%%/conf/Catalina/localhost/balancer.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/Catalina/localhost/balancer.xml; else echo If permanently deleting this package, %D/%%T%%/conf/Catalina/localhost/balancer.xml must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/Catalina/localhost/manager.xml %D/%%T%%/conf/Catalina/localhost/manager.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/Catalina/localhost/manager.xml; else echo If permanently deleting this package, %D/%%T%%/conf/Catalina/localhost/manager.xml must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/catalina.policy %D/%%T%%/conf/catalina.policy.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/catalina.policy; else echo If permanently deleting this package, %D/%%T%%/conf/catalina.policy must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/catalina.properties %D/%%T%%/conf/catalina.properties.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/catalina.properties; else echo If permanently deleting this package, %D/%%T%%/conf/catalina.properties must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/jk2.properties %D/%%T%%/conf/jk2.properties.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/jk2.properties; else echo If permanently deleting this package, %D/%%T%%/conf/jk2.properties must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/server-minimal.xml %D/%%T%%/conf/server-minimal.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/server-minimal.xml; else echo If permanently deleting this package, %D/%%T%%/conf/server-minimal.xml must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/server.xml %D/%%T%%/conf/server.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/server.xml; else echo If permanently deleting this package, %D/%%T%%/conf/server.xml must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/tomcat-users.xml %D/%%T%%/conf/tomcat-users.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/tomcat-users.xml; else echo If permanently deleting this package, %D/%%T%%/conf/tomcat-users.xml must be removed manually; fi +@unexec if cmp -s %D/%%T%%/conf/web.xml %D/%%T%%/conf/web.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/web.xml; else echo If permanently deleting this package, %D/%%T%%/conf/web.xml must be removed manually; fi bin/tomcat50ctl etc/rc.d/020.jakarta-tomcat50.sh %%T%%/LICENSE @@ -28,6 +22,9 @@ %%T%%/bin/commons-daemon.jar %%T%%/bin/commons-launcher.jar %%T%%/bin/commons-logging-api.jar +%%T%%/bin/contrib/GNU-Linux/catalina.sh +%%T%%/bin/contrib/README.txt +%%T%%/bin/contrib/openVMS-alpha/TOMCAT_Setup_Java.com %%T%%/bin/digest.sh %%T%%/bin/jmx.jar %%T%%/bin/jsvc.tar.gz @@ -57,16 +54,16 @@ %%T%%/common/lib/naming-resources.jar %%T%%/common/lib/servlet-api.jar %%T%%/common/lib/tools.jar -%%T%%/conf/Catalina/localhost/admin.xml -%%T%%/conf/Catalina/localhost/balancer.xml -%%T%%/conf/Catalina/localhost/manager.xml -%%T%%/conf/catalina.policy -%%T%%/conf/catalina.properties -%%T%%/conf/jk2.properties -%%T%%/conf/server-minimal.xml -%%T%%/conf/server.xml -%%T%%/conf/tomcat-users.xml -%%T%%/conf/web.xml +%%T%%/conf/Catalina/localhost/admin.xml.%%CONF_EXT%% +%%T%%/conf/Catalina/localhost/balancer.xml.%%CONF_EXT%% +%%T%%/conf/Catalina/localhost/manager.xml.%%CONF_EXT%% +%%T%%/conf/catalina.policy.%%CONF_EXT%% +%%T%%/conf/catalina.properties.%%CONF_EXT%% +%%T%%/conf/jk2.properties.%%CONF_EXT%% +%%T%%/conf/server-minimal.xml.%%CONF_EXT%% +%%T%%/conf/server.xml.%%CONF_EXT%% +%%T%%/conf/tomcat-users.xml.%%CONF_EXT%% +%%T%%/conf/web.xml.%%CONF_EXT%% %%T%%/logs/stderr.log %%T%%/logs/stdout.log %%T%%/server/lib/catalina-ant.jar @@ -833,8 +830,11 @@ %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/session/package-summary.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/session/package-tree.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/ByteArrayServletOutputStream.html +%%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/ExpressionParseTree.html +%%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/ExpressionTokenizer.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/ResponseIncludeWrapper.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSICommand.html +%%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIConditional.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIConfig.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIEcho.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIExec.html @@ -851,9 +851,6 @@ %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIServletRequestUtil.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSISet.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIStopProcessingException.html -%%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/ExpressionParseTree.html -%%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/ExpressionTokenizer.html -%%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/SSIConditional.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/package-frame.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/package-summary.html %%T%%/webapps/tomcat-docs/catalina/docs/api/org/apache/catalina/ssi/package-tree.html @@ -1447,6 +1444,7 @@ %%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/runtime/package-summary.html %%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/runtime/package-tree.html %%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/security/SecurityClassLoad.html +%%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/security/SecurityUtil.html %%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/security/package-frame.html %%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/security/package-summary.html %%T%%/webapps/tomcat-docs/jasper/docs/api/org/apache/jasper/security/package-tree.html @@ -1749,8 +1747,22 @@ %%T%%/webapps/webdav/tomcat.gif @exec mkdir %D/%%T%%/work || true @exec mkdir %D/%%T%%/common/classes ||true +@exec mkdir %D/%%T%%/server/classes || true +@exec mkdir %D/%%T%%/server/webapps/admin/connector || true +@exec mkdir %D/%%T%%/server/webapps/admin/defaultcontext || true +@exec mkdir %D/%%T%%/server/webapps/admin/host || true +@exec mkdir %D/%%T%%/server/webapps/admin/logger || true +@exec mkdir %D/%%T%%/server/webapps/admin/realm || true +@exec mkdir %D/%%T%%/server/webapps/admin/context || true +@exec mkdir %D/%%T%%/server/webapps/admin/server || true +@exec mkdir %D/%%T%%/server/webapps/admin/service || true +@exec mkdir %D/%%T%%/server/webapps/admin/valve || true +@exec mkdir %D/%%T%%/shared || true +@exec mkdir %D/%%T%%/shared/classes || true +@exec mkdir %D/%%T%%/shared/lib || true +@exec mkdir %D/%%T%%/temp || true +@exec mkdir %D/%%T%%/webapps/balancer/images || true @exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%T%%/ -@unexec rm -Rf %%T%%/conf.orig @dirrm %%T%%/work @dirrm %%T%%/webapps/webdav/WEB-INF @dirrm %%T%%/webapps/webdav @@ -2006,5 +2018,8 @@ @dirrm %%T%%/common/endorsed @dirrm %%T%%/common/classes @dirrm %%T%%/common +@dirrm %%T%%/bin/contrib/openVMS-alpha +@dirrm %%T%%/bin/contrib/GNU-Linux +@dirrm %%T%%/bin/contrib @dirrm %%T%%/bin @dirrm %%T%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:25:49 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0AF216A4CE; Thu, 16 Dec 2004 16:25:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A765E43D31; Thu, 16 Dec 2004 16:25:49 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGPnBv048842; Thu, 16 Dec 2004 16:25:49 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGPn3I048838; Thu, 16 Dec 2004 16:25:49 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 16:25:49 GMT From: Volker Stolz Message-Id: <200412161625.iBGGPn3I048838@freefall.freebsd.org> To: aquatique@rusunix.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, petef@FreeBSD.org Subject: Re: ports/75142: update devel/libevent to 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:25:49 -0000 Synopsis: update devel/libevent to 1.0 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Thu Dec 16 16:24:58 GMT 2004 State-Changed-Why: Duplicate of ports/74848. Responsible-Changed-From-To: freebsd-ports-bugs->petef Responsible-Changed-By: vs Responsible-Changed-When: Thu Dec 16 16:24:58 GMT 2004 Responsible-Changed-Why: petef's stuff http://www.freebsd.org/cgi/query-pr.cgi?pr=75142 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:27:03 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D2CE16A4CF; Thu, 16 Dec 2004 16:27:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 486AC43D49; Thu, 16 Dec 2004 16:27:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGR3qB048924; Thu, 16 Dec 2004 16:27:03 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGR3Jt048920; Thu, 16 Dec 2004 16:27:03 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 16:27:03 GMT From: Volker Stolz Message-Id: <200412161627.iBGGR3Jt048920@freefall.freebsd.org> To: q@uni.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75144: [PATCH] math/concorde: update to 20031219 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:27:03 -0000 Synopsis: [PATCH] math/concorde: update to 20031219 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Thu Dec 16 16:26:37 GMT 2004 State-Changed-Why: Superseded by ports/75148 http://www.freebsd.org/cgi/query-pr.cgi?pr=75144 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:27:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5197116A4CE; Thu, 16 Dec 2004 16:27:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C1A143D3F; Thu, 16 Dec 2004 16:27:30 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from freefall.freebsd.org (hq@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGRTsQ048961; Thu, 16 Dec 2004 16:27:29 GMT (envelope-from hq@freefall.freebsd.org) Received: (from hq@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGRThK048957; Thu, 16 Dec 2004 16:27:29 GMT (envelope-from hq) Date: Thu, 16 Dec 2004 16:27:29 GMT From: Herve Quiroz Message-Id: <200412161627.iBGGRThK048957@freefall.freebsd.org> To: hq@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hq@FreeBSD.org Subject: Re: ports/75152: [maintainer] update www/jakarta-tomcat5 to 5.0.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:27:30 -0000 Synopsis: [maintainer] update www/jakarta-tomcat5 to 5.0.30 Responsible-Changed-From-To: freebsd-ports-bugs->hq Responsible-Changed-By: hq Responsible-Changed-When: Thu Dec 16 16:26:20 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75152 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:29:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DFD416A4CE; Thu, 16 Dec 2004 16:29:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7D6C43D46; Thu, 16 Dec 2004 16:29:54 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGTs2d049066; Thu, 16 Dec 2004 16:29:54 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGTsWj049062; Thu, 16 Dec 2004 16:29:54 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 16:29:54 GMT From: Volker Stolz Message-Id: <200412161629.iBGGTsWj049062@freefall.freebsd.org> To: i.a.zhuravlev@cbtnet.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/75150: Authentification data leak in emails sent to addressees (Evolution 2.0.2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:29:55 -0000 Synopsis: Authentification data leak in emails sent to addressees (Evolution 2.0.2) State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Dec 16 16:27:55 GMT 2004 State-Changed-Why: Can you please elaborate on what you expect us to do? Is this a vulnerability we should list? Also please note that the port is already at 2.0.3. Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: vs Responsible-Changed-When: Thu Dec 16 16:27:55 GMT 2004 Responsible-Changed-Why: Over to GNOME-team http://www.freebsd.org/cgi/query-pr.cgi?pr=75150 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:30:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44CF616A4D0 for ; Thu, 16 Dec 2004 16:30:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B50543D41 for ; Thu, 16 Dec 2004 16:30:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGUT60049188 for ; Thu, 16 Dec 2004 16:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGUT6b049184; Thu, 16 Dec 2004 16:30:29 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 16:30:29 GMT Resent-Message-Id: <200412161630.iBGGUT6b049184@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, "Ion-Mihai " IOnut " Tetcu" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BB4816A4CE for ; Thu, 16 Dec 2004 16:27:08 +0000 (GMT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34CC443D3F for ; Thu, 16 Dec 2004 16:27:07 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 12711 invoked by uid 89); 16 Dec 2004 16:32:37 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 16 Dec 2004 16:32:37 -0000 Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 22E5C119A2 for ; Thu, 16 Dec 2004 18:27:02 +0200 (EET) Message-Id: <1103214422.0@it.buh.tecnik93.com> Date: Thu, 16 Dec 2004 18:27:02 +0200 From: "Ion-Mihai " IOnut " Tetcu" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4 Subject: ports/75155: [PATCH] audio/baudline: fetching does not require linprocfs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:30:30 -0000 >Number: 75155 >Category: ports >Synopsis: [PATCH] audio/baudline: fetching does not require linprocfs >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 Dec 16 16:30:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ion-Mihai "IOnut" Tetcu >Release: FreeBSD 5.3-STABLE i386 >Organization: Tecnik'93 >Environment: System: FreeBSD 5.3-STABLE #12: Sat Dec 4 15:20:02 EET 2004 >Description: This port does not require linprocfs to have its distfiles fetched, so the attached patch changes the check for linprofs from pre-everything to pre-extrat. >How-To-Repeat: cd /usr/ports/audio/baudline && make fetch >Fix: --- Makefile.diff begins here --- --- Makefile.orig Thu Dec 16 18:19:19 2004 +++ Makefile Thu Dec 16 18:20:38 2004 @@ -44,7 +44,7 @@ LINPROCFS!= /sbin/mount | ${GREP} linprocfs | ${AWK} '{print $1}' -pre-everything:: +pre-extract: .if !empty(LINPROCFS) @${ECHO_CMD} "" @${ECHO_CMD} "Check if linprocfs is running: YES" --- Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 16:45:02 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89EFB16A4CE; Thu, 16 Dec 2004 16:45:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67F0A43D1F; Thu, 16 Dec 2004 16:45:02 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGGj2oT050667; Thu, 16 Dec 2004 16:45:02 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGGj29X050662; Thu, 16 Dec 2004 16:45:02 GMT (envelope-from vs) Date: Thu, 16 Dec 2004 16:45:02 GMT From: Volker Stolz Message-Id: <200412161645.iBGGj29X050662@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/75125: [MAINTAINER] mail/hotwayd: update to 0.8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 16:45:02 -0000 Synopsis: [MAINTAINER] mail/hotwayd: update to 0.8.2 Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Thu Dec 16 16:44:50 GMT 2004 Responsible-Changed-Why: I'd like to wibble with this http://www.freebsd.org/cgi/query-pr.cgi?pr=75125 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 17:00:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1417E16A4CE for ; Thu, 16 Dec 2004 17:00:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE08343D5E for ; Thu, 16 Dec 2004 17:00:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGH0Z8I051197 for ; Thu, 16 Dec 2004 17:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGH0Zve051195; Thu, 16 Dec 2004 17:00:35 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 17:00:35 GMT Resent-Message-Id: <200412161700.iBGH0Zve051195@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, Matthew Seaman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1841116A4CE for ; Thu, 16 Dec 2004 16:52:25 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id F35FE43D3F for ; Thu, 16 Dec 2004 16:52:24 +0000 (GMT) (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 iBGGqOrj098292 for ; Thu, 16 Dec 2004 16:52:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBGGqOQO098291; Thu, 16 Dec 2004 16:52:24 GMT (envelope-from nobody) Message-Id: <200412161652.iBGGqOQO098291@www.freebsd.org> Date: Thu, 16 Dec 2004 16:52:24 GMT From: Matthew Seaman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75158: [ maintainer ] databases/phpmyadmin -- security update to 2.6.1-rc1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 17:00:36 -0000 >Number: 75158 >Category: ports >Synopsis: [ maintainer ] databases/phpmyadmin -- security update to 2.6.1-rc1 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 16 17:00:35 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 5.3-STABLE i386 >Organization: Infracaninophile >Environment: FreeBSD gravitas.thebunker.net 5.3-STABLE FreeBSD 5.3-STABLE #3: Fri Dec 10 17:50:11 GMT 2004 root@gravitas.thebunker.net:/usr/obj/usr/src/sys/GRAVITAS i386 >Description: Update to phpMyAdmin-2.6.1-rc1 to solve command execution and file disclosure vulnerabilities. References: http://www.phpmyadmin.net/home_page/security.php?issue=PMASA-2004-4 http://www.exaprobe.com/labs/advisories/esa-2004-1213.html >How-To-Repeat: >Fix: --- phpmyadmin.diff begins here --- diff -Nur /usr/ports/databases/phpmyadmin/Makefile phpmyadmin/Makefile --- /usr/ports/databases/phpmyadmin/Makefile Thu Nov 25 13:02:26 2004 +++ phpmyadmin/Makefile Wed Dec 15 13:07:48 2004 @@ -6,11 +6,10 @@ # PORTNAME= phpMyAdmin -PORTVERSION= 2.6.0.3 CATEGORIES= databases www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= phpmyadmin -DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/-pl\1/} +DISTVERSION= 2.6.1-rc1 MAINTAINER= m.seaman@infracaninophile.co.uk COMMENT= A set of PHP-scripts to manage MySQL over the web diff -Nur /usr/ports/databases/phpmyadmin/distinfo phpmyadmin/distinfo --- /usr/ports/databases/phpmyadmin/distinfo Thu Nov 25 13:02:26 2004 +++ phpmyadmin/distinfo Wed Dec 15 13:09:39 2004 @@ -1,2 +1,2 @@ -MD5 (phpMyAdmin-2.6.0-pl3.tar.bz2) = 9580c5da497af4ff9ff3af7fa6e2793c -SIZE (phpMyAdmin-2.6.0-pl3.tar.bz2) = 1279183 +MD5 (phpMyAdmin-2.6.1-rc1.tar.bz2) = b413cc56b177547a94e387fa0f7d0334 +SIZE (phpMyAdmin-2.6.1-rc1.tar.bz2) = 1311277 --- phpmyadmin.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 17:30:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F83A16A4F5 for ; Thu, 16 Dec 2004 17:30:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F32C843D5E for ; Thu, 16 Dec 2004 17:30:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGHUeAI056189 for ; Thu, 16 Dec 2004 17:30:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGHUeSl056185; Thu, 16 Dec 2004 17:30:40 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 17:30:40 GMT Resent-Message-Id: <200412161730.iBGHUeSl056185@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 Novitsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F190416A4CE for ; Thu, 16 Dec 2004 17:24:25 +0000 (GMT) Received: from mail.icc-vvd.ru (mail.icc-vvd.ru [62.141.104.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F3D43D58 for ; Thu, 16 Dec 2004 17:24:24 +0000 (GMT) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: from server.v42of.icc-vvd.ru (localhost.icc-vvd.ru [127.0.0.1]) by mail.icc-vvd.ru (8.12.10/8.12.9) with ESMTP id iBGHONdQ054765; Thu, 16 Dec 2004 20:24:23 +0300 (MSK) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: (from root@localhost) by server.v42of.icc-vvd.ru (8.12.10/8.12.9/Submit) id iBGHOMH4054764; Thu, 16 Dec 2004 20:24:22 +0300 (MSK) Message-Id: <200412161724.iBGHOMH4054764@server.v42of.icc-vvd.ru> Date: Thu, 16 Dec 2004 20:24:22 +0300 (MSK) From: Alexander Novitsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: alecn2002@yandex.ru Subject: ports/75160: [MAINTAINER-UPDATE] x11-toolkits/fxscintilla: update to 1.62 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 17:30:41 -0000 >Number: 75160 >Category: ports >Synopsis: [MAINTAINER-UPDATE] x11-toolkits/fxscintilla: update to 1.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: Thu Dec 16 17:30:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Novitsky >Release: FreeBSD 5.2-RELEASE i386 >Organization: Inzhcomcentre VVD >Environment: System: FreeBSD server.v42of.icc-vvd.ru 5.2-RELEASE FreeBSD 5.2-RELEASE #2: Mon Jul 12 21:45:44 MSD 2004 >Description: - Update to 1.62 Please remove PR ports/74241 as it's obsoleted with this one Port maintainer (alecn2002@yandex.ru) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- fxscintilla-1.62.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/fxscintilla.orig/Makefile /usr/ports/x11-toolkits/fxscintilla/Makefile --- /usr/ports/x11-toolkits/fxscintilla.orig/Makefile Thu Dec 16 16:19:48 2004 +++ /usr/ports/x11-toolkits/fxscintilla/Makefile Thu Dec 16 19:57:50 2004 @@ -6,7 +6,7 @@ # PORTNAME= fxscintilla -PORTVERSION= 1.57 +PORTVERSION= 1.62 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,10 +14,20 @@ MAINTAINER= alecn2002@yandex.ru COMMENT= A Fox toolkit reimplementation of Scintilla editing widget +OPTIONS= FOX10 "FOX1.0 support (FOX1.2 by default)" off + +.if defined(WITH_FOX10) LIB_DEPENDS= FOX-1.0.0:${PORTSDIR}/x11-toolkits/fox +CONFIGURE_ARGS= --with-fox-1-0 +.else +LIB_DEPENDS= FOX-1.2:${PORTSDIR}/x11-toolkits/fox-devel +.endif + +GNU_CONFIGURE= yes -USE_INC_LIBTOOL_VER= 15 -CONFIGURE_ARGS= --enable-shared +USE_LIBTOOL_VER= 15 +CONFIGURE_ARGS+= --enable-shared \ + --disable-static INSTALLS_SHLIB= yes .include diff -ruN --exclude=CVS /usr/ports/x11-toolkits/fxscintilla.orig/distinfo /usr/ports/x11-toolkits/fxscintilla/distinfo --- /usr/ports/x11-toolkits/fxscintilla.orig/distinfo Thu Dec 16 16:19:48 2004 +++ /usr/ports/x11-toolkits/fxscintilla/distinfo Thu Dec 16 16:33:13 2004 @@ -1,2 +1,2 @@ -MD5 (fxscintilla-1.57.tar.gz) = 68aa25d2b8d626b6455736e611a3993f -SIZE (fxscintilla-1.57.tar.gz) = 798115 +MD5 (fxscintilla-1.62.tar.gz) = c4cb1b9d954b92e1e1fdcb75597662c6 +SIZE (fxscintilla-1.62.tar.gz) = 833249 diff -ruN --exclude=CVS /usr/ports/x11-toolkits/fxscintilla.orig/pkg-plist /usr/ports/x11-toolkits/fxscintilla/pkg-plist --- /usr/ports/x11-toolkits/fxscintilla.orig/pkg-plist Thu Dec 16 16:19:48 2004 +++ /usr/ports/x11-toolkits/fxscintilla/pkg-plist Thu Dec 16 20:04:00 2004 @@ -2,7 +2,6 @@ include/fxscintilla/SciLexer.h include/fxscintilla/Scintilla.h lib/libfxscintilla.a -lib/libfxscintilla.la lib/libfxscintilla.so -lib/libfxscintilla.so.11 +lib/libfxscintilla.so.16 @dirrm include/fxscintilla --- fxscintilla-1.62.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 17:40:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F80216A4CE for ; Thu, 16 Dec 2004 17:40:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8F8843D60 for ; Thu, 16 Dec 2004 17:40:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGHeWoO057508 for ; Thu, 16 Dec 2004 17:40:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGHeWEV057507; Thu, 16 Dec 2004 17:40:32 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 17:40:32 GMT Resent-Message-Id: <200412161740.iBGHeWEV057507@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, "Miguel Mendez" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E585D16A4CE for ; Thu, 16 Dec 2004 17:33:25 +0000 (GMT) Received: from mindfields.energyhq.es.eu.org (73.Red-213-97-200.pooles.rima-tde.net [213.97.200.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E3BD43D45 for ; Thu, 16 Dec 2004 17:33:09 +0000 (GMT) (envelope-from flynn@energyhq.es.eu.org) Received: from scienide.energyhq.es.eu.org (scienide.energyhq.es.eu.org [192.168.100.1]) by mindfields.energyhq.es.eu.org (Postfix) with ESMTP id C64653567D for ; Thu, 16 Dec 2004 18:33:07 +0100 (CET) Message-Id: <1103218374.0@scienide.energyhq.es.eu.org> Date: Thu, 16 Dec 2004 18:32:54 +0100 From: "Miguel Mendez" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/75162: Update java/netbeans to 4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 17:40:33 -0000 >Number: 75162 >Category: ports >Synopsis: Update java/netbeans to 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: Thu Dec 16 17:40:32 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Miguel Mendez >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD 5.3-STABLE #0: Thu Nov 25 19:00:55 CET 2004 root@scienide.energyhq.es.eu.org:/usr/obj/usr/src/sys/SCIENIDE >Description: 4.0 is out, update port. >How-To-Repeat: >Fix: --- netbeans.diff begins here --- diff -ruN netbeans.old/Makefile netbeans/Makefile --- netbeans.old/Makefile Tue Oct 12 11:10:40 2004 +++ netbeans/Makefile Thu Dec 16 18:23:17 2004 @@ -6,10 +6,10 @@ # PORTNAME= netbeans -PORTVERSION= 3.6 +PORTVERSION= 4.0 CATEGORIES= java devel MASTER_SITES= # http://www.netbeans.org/download/release36/promoted/FCS/ -DISTNAME= netbeans-3_6 +DISTNAME= netbeans-4_0-bin MAINTAINER= olgeni@FreeBSD.org COMMENT= A full-featured integrated environment for Java @@ -21,7 +21,7 @@ WRKSRC= ${WRKDIR}/netbeans -DOWNLOAD_URL?= http://www.netbeans.org/download/release36/promoted/FCS/release36-build-tar-bz2.html +DOWNLOAD_URL?= http://www.netbeans.info/downloads/download.php?p=1&a=bd&os=2&lang=1&rv=4.0&b_bt=2 .include @@ -29,16 +29,10 @@ IGNORE= You must manually fetch the source distribution (${DISTFILES}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again .endif -.if ${OSVERSION} >= 500000 -post-patch: - @${CAT} ${FILESDIR}/bin_runide.sh.diff | ${PATCH} ${WRKSRC}/bin/runide.sh - @${RM} ${WRKSRC}/bin/runide.sh.orig -.endif - do-install: @${MKDIR} ${PREFIX}/netbeans @${CP} -r ${WRKSRC}/* ${PREFIX}/netbeans @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/netbeans - @${LN} -sf ${PREFIX}/netbeans/bin/runide.sh ${PREFIX}/bin/netbeans + @${LN} -sf ${PREFIX}/netbeans/bin/netbeans ${PREFIX}/bin/netbeans .include diff -ruN netbeans.old/distinfo netbeans/distinfo --- netbeans.old/distinfo Fri Apr 16 15:51:22 2004 +++ netbeans/distinfo Thu Dec 16 18:00:08 2004 @@ -1,2 +1,2 @@ -MD5 (netbeans-3_6.tar.bz2) = 06c966aa9c7fdcd63e958d30e47d5dd6 -SIZE (netbeans-3_6.tar.bz2) = 32270184 +MD5 (netbeans-4_0-bin.tar.bz2) = 316d552aa2f09e1ad92e7075a44f87aa +SIZE (netbeans-4_0-bin.tar.bz2) = 31453414 diff -ruN netbeans.old/files/bin_runide.sh.diff netbeans/files/bin_runide.sh.diff --- netbeans.old/files/bin_runide.sh.diff Fri Apr 16 15:51:23 2004 +++ netbeans/files/bin_runide.sh.diff Thu Jan 1 01:00:00 1970 @@ -1,14 +0,0 @@ - -$FreeBSD: ports/java/netbeans/files/bin_runide.sh.diff,v 1.3 2004/04/16 13:51:23 olgeni Exp $ - ---- bin/runide.sh.orig Tue Jun 3 11:23:09 2003 -+++ bin/runide.sh Wed Jun 11 12:30:37 2003 -@@ -131,7 +131,7 @@ - fi - ;; - -- -J*) jopt=`expr "X-$1" : 'X--J\(.*\)'`; jargs="$jargs \"$jopt\"";; -+ -J*) jopt=`expr -- "X-$1" : 'X--J\(.*\)'`; jargs="$jargs \"$jopt\"";; - *) args="$args \"$1\"" ;; - esac - shift diff -ruN netbeans.old/pkg-plist netbeans/pkg-plist --- netbeans.old/pkg-plist Tue Oct 12 11:10:40 2004 +++ netbeans/pkg-plist Thu Dec 16 18:30:41 2004 @@ -1,1262 +1,965 @@ -netbeans/CREDITS.html -netbeans/README.html -netbeans/ant/lib/ant-antlr.jar -netbeans/ant/lib/ant-apache-bsf.jar -netbeans/ant/lib/ant-apache-resolver.jar -netbeans/ant/lib/ant-commons-logging.jar -netbeans/ant/lib/ant-commons-net.jar -netbeans/ant/lib/ant-icontract.jar -netbeans/ant/lib/ant-jai.jar -netbeans/ant/lib/ant-jakarta-bcel.jar -netbeans/ant/lib/ant-jakarta-log4j.jar -netbeans/ant/lib/ant-jakarta-oro.jar -netbeans/ant/lib/ant-jakarta-regexp.jar -netbeans/ant/lib/ant-javamail.jar -netbeans/ant/lib/ant-jdepend.jar -netbeans/ant/lib/ant-jmf.jar -netbeans/ant/lib/ant-jsch.jar -netbeans/ant/lib/ant-junit.jar -netbeans/ant/lib/ant-launcher.jar -netbeans/ant/lib/ant-netrexx.jar -netbeans/ant/lib/ant-nodeps.jar -netbeans/ant/lib/ant-starteam.jar -netbeans/ant/lib/ant-stylebook.jar -netbeans/ant/lib/ant-swing.jar -netbeans/ant/lib/ant-trax.jar -netbeans/ant/lib/ant-vaj.jar -netbeans/ant/lib/ant-weblogic.jar -netbeans/ant/lib/ant-xalan1.jar -netbeans/ant/lib/ant-xalan2.jar -netbeans/ant/lib/ant-xslp.jar -netbeans/ant/lib/ant.jar -netbeans/ant/nblib/bridge.jar -netbeans/beans/TimerBean.jar -netbeans/bin/.runide_defaults.sh -netbeans/bin/icons/ide.ico -netbeans/bin/icons/nb-mac.icns -netbeans/bin/icons/nb-os2.ico -netbeans/bin/icons/nb.ico -netbeans/bin/icons/nb128x128.png -netbeans/bin/icons/nb16x16.png -netbeans/bin/icons/nb16x16.xpm -netbeans/bin/icons/nb24x24.png -netbeans/bin/icons/nb24x24.xpm -netbeans/bin/icons/nb32x32.png -netbeans/bin/icons/nb32x32.xpm -netbeans/bin/icons/nb48x48.png -netbeans/bin/icons/nb48x48.xpm -netbeans/bin/icons/readme.ico -netbeans/bin/icons/web.ico -netbeans/bin/ide.cfg -netbeans/bin/ide.policy -netbeans/bin/macosx_launcher.dmg -netbeans/bin/runide.exe -netbeans/bin/runide.sh -netbeans/bin/runide_exe_defaults -netbeans/bin/runideopenvms.com -netbeans/bin/runideos2.cmd -netbeans/bin/runidew.exe +netbeans/ide4/docs/org/netbeans/modules/usersguide/ide.css +netbeans/ide4/docs/jsf10-doc.zip +netbeans/ide4/docs/jsp20-docs.zip +netbeans/ide4/docs/jstl-1.1.2-javadoc.zip +netbeans/ide4/docs/jstl11-doc.zip +netbeans/ide4/docs/junit-3.8.1-api.zip +netbeans/ide4/docs/servlet24-docs.zip +netbeans/ide4/docs/syntaxref20.zip +netbeans/ide4/docs/xml-apis.zip +netbeans/ide4/config/ModuleAutoDeps/org-netbeans-modules-java.xml +netbeans/ide4/config/Modules/org-netbeans-tasklistapi.xml +netbeans/ide4/config/Modules/javax-jmi-reflect.xml +netbeans/ide4/config/Modules/org-apache-tools-ant-module.xml +netbeans/ide4/config/Modules/org-netbeans-api-debugger-jpda.xml +netbeans/ide4/config/Modules/org-netbeans-api-debugger.xml +netbeans/ide4/config/Modules/org-netbeans-api-java.xml +netbeans/ide4/config/Modules/org-netbeans-api-mdr.xml +netbeans/ide4/config/Modules/org-netbeans-api-web-dd.xml +netbeans/ide4/config/Modules/org-netbeans-api-web-webmodule.xml +netbeans/ide4/config/Modules/org-netbeans-api-xml.xml +netbeans/ide4/config/Modules/org-netbeans-core-ide.xml +netbeans/ide4/config/Modules/org-netbeans-jmi-javamodel.xml +netbeans/ide4/config/Modules/org-openide-src.xml +netbeans/ide4/config/Modules/org-netbeans-lib-cvsclient.xml +netbeans/ide4/config/Modules/org-netbeans-libs-commons_logging.xml +netbeans/ide4/config/Modules/org-netbeans-libs-j2eeeditor.xml +netbeans/ide4/config/Modules/org-netbeans-libs-xerces.xml +netbeans/ide4/config/Modules/org-netbeans-modules-ant-browsetask.xml +netbeans/ide4/config/Modules/org-netbeans-modules-ant-freeform.xml +netbeans/ide4/config/Modules/org-netbeans-modules-ant-grammar.xml +netbeans/ide4/config/Modules/org-netbeans-modules-beans.xml +netbeans/ide4/config/Modules/org-netbeans-modules-classfile.xml +netbeans/ide4/config/Modules/org-netbeans-modules-clazz.xml +netbeans/ide4/config/Modules/org-netbeans-modules-css.xml +netbeans/ide4/config/Modules/org-openidex-util.xml +netbeans/ide4/config/Modules/org-netbeans-modules-db.xml +netbeans/ide4/config/Modules/org-netbeans-modules-debugger-jpda-ant.xml +netbeans/ide4/config/Modules/org-netbeans-modules-debugger-jpda-ui.xml +netbeans/ide4/config/Modules/org-netbeans-modules-debugger-jpdaimpl.xml +netbeans/ide4/config/Modules/org-netbeans-modules-diff.xml +netbeans/ide4/config/Modules/org-netbeans-modules-editor-fold.xml +netbeans/ide4/config/Modules/org-netbeans-modules-editor-lib.xml +netbeans/ide4/config/Modules/org-netbeans-modules-editor-util.xml +netbeans/ide4/config/Modules/org-netbeans-modules-editor.xml +netbeans/ide4/config/Modules/org-netbeans-modules-extbrowser.xml +netbeans/ide4/config/Modules/org-netbeans-modules-favorites.xml +netbeans/ide4/config/Modules/org-netbeans-modules-form.xml +netbeans/ide4/config/Modules/org-netbeans-modules-html.xml +netbeans/ide4/config/Modules/org-netbeans-modules-httpserver.xml +netbeans/ide4/config/Modules/org-netbeans-modules-i18n-form.xml +netbeans/ide4/config/Modules/org-netbeans-modules-i18n.xml +netbeans/ide4/config/Modules/org-netbeans-modules-image.xml +netbeans/ide4/config/Modules/org-netbeans-modules-j2ee-ant.xml +netbeans/ide4/config/Modules/org-netbeans-modules-j2eeapis.xml +netbeans/ide4/config/Modules/org-netbeans-modules-j2eeserver.xml +netbeans/ide4/config/Modules/org-netbeans-modules-java-examples.xml +netbeans/ide4/config/Modules/org-netbeans-modules-java-j2seplatform.xml +netbeans/ide4/config/Modules/javax-jmi-model.xml +netbeans/ide4/config/Modules/org-netbeans-modules-java-j2seproject.xml +netbeans/ide4/config/Modules/org-netbeans-modules-java-platform.xml +netbeans/ide4/config/Modules/org-netbeans-modules-java-project.xml +netbeans/ide4/config/Modules/org-netbeans-modules-java.xml +netbeans/ide4/config/Modules/org-netbeans-modules-javacore.xml +netbeans/ide4/config/Modules/org-netbeans-modules-javadoc.xml +netbeans/ide4/config/Modules/org-netbeans-modules-jmiutils.xml +netbeans/ide4/config/Modules/org-netbeans-modules-junit.xml +netbeans/ide4/config/Modules/org-netbeans-modules-mdr.xml +netbeans/ide4/config/Modules/org-netbeans-modules-project-ant.xml +netbeans/ide4/config/Modules/org-netbeans-modules-project-libraries.xml +netbeans/ide4/config/Modules/org-netbeans-modules-projectapi.xml +netbeans/ide4/config/Modules/org-netbeans-modules-projectui.xml +netbeans/ide4/config/Modules/org-netbeans-modules-projectuiapi.xml +netbeans/ide4/config/Modules/org-netbeans-modules-properties-syntax.xml +netbeans/ide4/config/Modules/org-netbeans-modules-properties.xml +netbeans/ide4/config/Modules/org-netbeans-modules-refactoring.xml +netbeans/ide4/config/Modules/org-netbeans-modules-schema2beans.xml +netbeans/ide4/config/Modules/org-netbeans-modules-servletapi.xml +netbeans/ide4/config/Modules/org-netbeans-modules-servletapi23.xml +netbeans/ide4/config/Modules/org-netbeans-modules-servletapi24.xml +netbeans/ide4/config/Modules/org-netbeans-modules-tomcat5.xml +netbeans/ide4/config/Modules/org-netbeans-modules-suggestions_framework.xml +netbeans/ide4/config/Modules/org-netbeans-modules-tasklist-core.xml +netbeans/ide4/config/Modules/org-netbeans-modules-tasklist-docscan.xml +netbeans/ide4/config/Modules/org-netbeans-modules-usersguide.xml +netbeans/ide4/config/Modules/org-netbeans-modules-utilities-project.xml +netbeans/ide4/config/Modules/org-netbeans-modules-utilities.xml +netbeans/ide4/config/Modules/org-netbeans-modules-vcs-advanced.xml +netbeans/ide4/config/Modules/org-netbeans-modules-vcs-profiles-cvsprofiles.xml +netbeans/ide4/config/Modules/org-netbeans-modules-vcs-profiles-pvcs.xml +netbeans/ide4/config/Modules/org-netbeans-modules-vcs-profiles-vss.xml +netbeans/ide4/config/Modules/org-netbeans-modules-vcscore.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-core-syntax.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-core.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-debug.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-jspparser.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-jstl11.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-monitor.xml +netbeans/ide4/config/Modules/org-netbeans-modules-web-project.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xml-catalog.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xml-core.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xml-schema.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xml-tax.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xml-text.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xml-tools.xml +netbeans/ide4/config/Modules/org-netbeans-modules-xsl.xml +netbeans/ide4/config/Modules/org-netbeans-spi-debugger-ui.xml +netbeans/ide4/config/Modules/org-netbeans-spi-viewmodel.xml +netbeans/ide4/config/TagLibraries/JSTL11/jstl.jar +netbeans/ide4/config/TagLibraries/JSTL11/standard.jar +netbeans/ide4/core/org-netbeans-modules-utilities-cli.jar +netbeans/ide4/ant/bin/runrc.cmd +netbeans/ide4/ant/bin/ant.bat +netbeans/ide4/ant/bin/ant.cmd +netbeans/ide4/ant/bin/antRun +netbeans/ide4/ant/bin/antRun.bat +netbeans/ide4/ant/bin/antRun.pl +netbeans/ide4/ant/bin/antenv.cmd +netbeans/ide4/ant/bin/complete-ant-cmd.pl +netbeans/ide4/ant/bin/envset.cmd +netbeans/ide4/ant/bin/lcp.bat +netbeans/ide4/ant/bin/runant.pl +netbeans/ide4/ant/bin/runant.py +netbeans/ide4/ant/bin/ant +netbeans/ide4/ant/etc/checkstyle/checkstyle-frames.xsl +netbeans/ide4/ant/etc/checkstyle/checkstyle-text.xsl +netbeans/ide4/ant/etc/checkstyle/checkstyle-xdoc.xsl +netbeans/ide4/ant/etc/ant-bootstrap.jar +netbeans/ide4/ant/etc/changelog.xsl +netbeans/ide4/ant/etc/coverage-frames.xsl +netbeans/ide4/ant/etc/jdepend-frames.xsl +netbeans/ide4/ant/etc/jdepend.xsl +netbeans/ide4/ant/etc/junit-frames-xalan1.xsl +netbeans/ide4/ant/etc/junit-frames.xsl +netbeans/ide4/ant/etc/junit-noframes.xsl +netbeans/ide4/ant/etc/log.xsl +netbeans/ide4/ant/etc/maudit-frames.xsl +netbeans/ide4/ant/etc/mmetrics-frames.xsl +netbeans/ide4/ant/etc/tagdiff.xsl +netbeans/ide4/ant/extra/copyfiles.jar +netbeans/ide4/ant/lib/ant.jar +netbeans/ide4/ant/lib/ant-apache-bcel.jar +netbeans/ide4/ant/lib/ant-apache-bsf.jar +netbeans/ide4/ant/lib/ant-apache-log4j.jar +netbeans/ide4/ant/lib/ant-apache-oro.jar +netbeans/ide4/ant/lib/ant-apache-regexp.jar +netbeans/ide4/ant/lib/ant-apache-resolver.jar +netbeans/ide4/ant/lib/ant-commons-logging.jar +netbeans/ide4/ant/lib/ant-commons-net.jar +netbeans/ide4/ant/lib/ant-icontract.jar +netbeans/ide4/ant/lib/ant-jai.jar +netbeans/ide4/ant/lib/ant-javamail.jar +netbeans/ide4/ant/lib/ant-jdepend.jar +netbeans/ide4/ant/lib/ant-jmf.jar +netbeans/ide4/ant/lib/ant-jsch.jar +netbeans/ide4/ant/lib/ant-junit.jar +netbeans/ide4/ant/lib/ant-launcher.jar +netbeans/ide4/ant/lib/ant-netrexx.jar +netbeans/ide4/ant/lib/ant-nodeps.jar +netbeans/ide4/ant/lib/ant-starteam.jar +netbeans/ide4/ant/lib/ant-stylebook.jar +netbeans/ide4/ant/lib/ant-swing.jar +netbeans/ide4/ant/lib/ant-trax.jar +netbeans/ide4/ant/lib/ant-vaj.jar +netbeans/ide4/ant/lib/ant-weblogic.jar +netbeans/ide4/ant/lib/ant-xalan1.jar +netbeans/ide4/ant/lib/ant-xslp.jar +netbeans/ide4/ant/lib/ant-antlr.jar +netbeans/ide4/ant/nblib/bridge.jar +netbeans/ide4/ant/nblib/org-netbeans-modules-ant-browsetask.jar +netbeans/ide4/ant/nblib/org-netbeans-modules-debugger-jpda-ant.jar +netbeans/ide4/ant/nblib/org-netbeans-modules-j2ee-ant.jar +netbeans/ide4/ant/sources/org/netbeans/modules/web/project/ant/CopyFiles.java +netbeans/ide4/ant/sources/org/netbeans/modules/web/project/ant/JspC.java +netbeans/ide4/ant/sources/org/netbeans/modules/web/project/ant/JspCSingle.java +netbeans/ide4/modules/docs/org-netbeans-modules-db.jar +netbeans/ide4/modules/docs/org-netbeans-modules-j2eeserver.jar +netbeans/ide4/modules/docs/org-netbeans-modules-tomcat5.jar +netbeans/ide4/modules/docs/org-netbeans-modules-usersguide.jar +netbeans/ide4/modules/docs/org-netbeans-modules-web-monitor.jar +netbeans/ide4/modules/eager/jstl11.jar +netbeans/ide4/modules/eager/properties-syntax.jar +netbeans/ide4/modules/ext/webserver.jar +netbeans/ide4/modules/ext/commons-logging-1.0.4.jar +netbeans/ide4/modules/ext/ddl.jar +netbeans/ide4/modules/ext/flute.jar +netbeans/ide4/modules/ext/gjast.jar +netbeans/ide4/modules/ext/java-parser.jar +netbeans/ide4/modules/ext/jmi.jar +netbeans/ide4/modules/ext/jmiutils.jar +netbeans/ide4/modules/ext/junit-3.8.1.jar +netbeans/ide4/modules/ext/mdr.jar +netbeans/ide4/modules/ext/mof.jar +netbeans/ide4/modules/ext/org-netbeans-modules-java-j2seplatform-probe.jar +netbeans/ide4/modules/ext/org-netbeans-modules-web-httpmonitor.jar +netbeans/ide4/modules/ext/resolver-1_1_nb.jar +netbeans/ide4/modules/ext/sac.jar +netbeans/ide4/modules/ext/AbsoluteLayout.jar +netbeans/ide4/modules/lib/extbrowser.dll +netbeans/ide4/modules/autoload/ext/xml-commons-dom-ranges-1.0.b2.jar +netbeans/ide4/modules/autoload/ext/j2eeeditor-1.0.jar +netbeans/ide4/modules/autoload/ext/jasper-compiler-5.0.28.jar +netbeans/ide4/modules/autoload/ext/jasper-runtime-5.0.28.jar +netbeans/ide4/modules/autoload/ext/jsp-api-2.0.jar +netbeans/ide4/modules/autoload/ext/jsp-parser-ext.jar +netbeans/ide4/modules/autoload/ext/jsr88javax.jar +netbeans/ide4/modules/autoload/ext/servlet-2.2.jar +netbeans/ide4/modules/autoload/ext/servlet-2.3.jar +netbeans/ide4/modules/autoload/ext/servlet-api-2.4.jar +netbeans/ide4/modules/autoload/ext/tax.jar +netbeans/ide4/modules/autoload/ext/xerces-2.6.2.jar +netbeans/ide4/modules/autoload/ext/commons-el.jar +netbeans/ide4/modules/autoload/j2eeapis.jar +netbeans/ide4/modules/autoload/j2eeeditor.jar +netbeans/ide4/modules/autoload/nb-xerces-wrapper.jar +netbeans/ide4/modules/autoload/servletapi.jar +netbeans/ide4/modules/autoload/servletapi23.jar +netbeans/ide4/modules/autoload/servletapi24.jar +netbeans/ide4/modules/autoload/suggestions-framework.jar +netbeans/ide4/modules/autoload/tasklist-api.jar +netbeans/ide4/modules/autoload/tasklist-core.jar +netbeans/ide4/modules/autoload/xml-tax.jar +netbeans/ide4/modules/org-apache-tools-ant-module.jar +netbeans/ide4/modules/org-netbeans-api-debugger-jpda.jar +netbeans/ide4/modules/org-netbeans-api-debugger.jar +netbeans/ide4/modules/org-netbeans-api-java.jar +netbeans/ide4/modules/org-netbeans-api-mdr.jar +netbeans/ide4/modules/org-netbeans-api-web-dd.jar +netbeans/ide4/modules/org-netbeans-api-web-webmodule.jar +netbeans/ide4/modules/org-netbeans-api-xml.jar +netbeans/ide4/modules/org-netbeans-core-ide.jar +netbeans/ide4/modules/org-netbeans-jmi-javamodel.jar +netbeans/ide4/modules/properties.jar +netbeans/ide4/modules/org-netbeans-lib-cvsclient.jar +netbeans/ide4/modules/org-netbeans-libs-commons_logging.jar +netbeans/ide4/modules/org-netbeans-modules-ant-browsetask.jar +netbeans/ide4/modules/org-netbeans-modules-ant-freeform.jar +netbeans/ide4/modules/org-netbeans-modules-ant-grammar.jar +netbeans/ide4/modules/org-netbeans-modules-beans.jar +netbeans/ide4/modules/org-netbeans-modules-classfile.jar +netbeans/ide4/modules/org-netbeans-modules-clazz.jar +netbeans/ide4/modules/org-netbeans-modules-db.jar +netbeans/ide4/modules/org-netbeans-modules-diff.jar +netbeans/ide4/modules/org-netbeans-modules-debugger-jpda-ant.jar +netbeans/ide4/modules/org-openide-src.jar +netbeans/ide4/modules/org-netbeans-modules-debugger-jpda-ui.jar +netbeans/ide4/modules/org-netbeans-modules-debugger-jpda.jar +netbeans/ide4/modules/org-netbeans-modules-editor-fold.jar +netbeans/ide4/modules/org-netbeans-modules-editor-lib.jar +netbeans/ide4/modules/org-netbeans-modules-editor-util.jar +netbeans/ide4/modules/org-netbeans-modules-editor.jar +netbeans/ide4/modules/org-netbeans-modules-extbrowser.jar +netbeans/ide4/modules/org-netbeans-modules-favorites.jar +netbeans/ide4/modules/org-netbeans-modules-form.jar +netbeans/ide4/modules/org-netbeans-modules-html.jar +netbeans/ide4/modules/org-netbeans-modules-httpserver.jar +netbeans/ide4/modules/vcsgen.jar +netbeans/ide4/modules/org-netbeans-modules-i18n-form.jar +netbeans/ide4/modules/org-netbeans-modules-i18n.jar +netbeans/ide4/modules/org-netbeans-modules-image.jar +netbeans/ide4/modules/org-netbeans-modules-j2ee-ant.jar +netbeans/ide4/modules/org-netbeans-modules-j2eeserver.jar +netbeans/ide4/modules/org-netbeans-modules-java-examples.jar +netbeans/ide4/modules/org-netbeans-modules-java-j2seplatform.jar +netbeans/ide4/modules/org-netbeans-modules-java-j2seproject.jar +netbeans/ide4/modules/org-netbeans-modules-java-platform.jar +netbeans/ide4/modules/org-netbeans-modules-java-project.jar +netbeans/ide4/modules/org-netbeans-modules-java.jar +netbeans/ide4/modules/org-netbeans-modules-javacore.jar +netbeans/ide4/modules/org-netbeans-modules-javadoc.jar +netbeans/ide4/modules/org-netbeans-modules-jmiutils.jar +netbeans/ide4/modules/org-netbeans-modules-junit.jar +netbeans/ide4/modules/org-netbeans-modules-mdr.jar +netbeans/ide4/modules/org-netbeans-modules-project-ant.jar +netbeans/ide4/modules/org-netbeans-modules-project-libraries.jar +netbeans/ide4/modules/org-netbeans-modules-projectapi.jar +netbeans/ide4/modules/org-netbeans-modules-projectui.jar +netbeans/ide4/modules/org-netbeans-modules-projectuiapi.jar +netbeans/ide4/modules/org-netbeans-modules-refactoring.jar +netbeans/ide4/modules/xsl.jar +netbeans/ide4/modules/org-netbeans-modules-schema2beans.jar +netbeans/ide4/modules/org-netbeans-modules-tomcat5.jar +netbeans/ide4/modules/org-netbeans-modules-usersguide.jar +netbeans/ide4/modules/org-netbeans-modules-utilities-project.jar +netbeans/ide4/modules/org-netbeans-modules-utilities.jar +netbeans/ide4/modules/org-netbeans-modules-vcscore.jar +netbeans/ide4/modules/org-netbeans-modules-web-core-syntax.jar +netbeans/ide4/modules/org-netbeans-modules-web-core.jar +netbeans/ide4/modules/org-netbeans-modules-web-debug.jar +netbeans/ide4/modules/org-netbeans-modules-web-jspparser.jar +netbeans/ide4/modules/org-netbeans-modules-web-monitor.jar +netbeans/ide4/modules/org-netbeans-modules-web-project.jar +netbeans/ide4/modules/org-netbeans-modules-xml-core.jar +netbeans/ide4/modules/org-netbeans-spi-debugger-ui.jar +netbeans/ide4/modules/org-netbeans-spi-viewmodel.jar +netbeans/ide4/modules/org-openidex-util.jar +netbeans/ide4/modules/pvcs-profile.jar +netbeans/ide4/modules/tasklist-docscan.jar +netbeans/ide4/modules/vss-profile.jar +netbeans/ide4/modules/xml-catalog.jar +netbeans/ide4/modules/xml-schema.jar +netbeans/ide4/modules/xml-text-edit.jar +netbeans/ide4/modules/xml-tools.jar +netbeans/ide4/modules/css.jar +netbeans/ide4/modules/cvs-profile.jar +netbeans/ide4/modules/javax-jmi-model.jar +netbeans/ide4/modules/javax-jmi-reflect.jar +netbeans/ide4/sources/org/netbeans/lib/awtextra/AbsoluteConstraints.java +netbeans/ide4/sources/org/netbeans/lib/awtextra/AbsoluteLayout.java +netbeans/ide4/sources/readme.txt +netbeans/ide4/update_tracking/org-netbeans-tasklistapi.xml +netbeans/ide4/update_tracking/javax-jmi-reflect.xml +netbeans/ide4/update_tracking/org-apache-tools-ant-module.xml +netbeans/ide4/update_tracking/org-netbeans-api-debugger-jpda.xml +netbeans/ide4/update_tracking/org-netbeans-api-debugger.xml +netbeans/ide4/update_tracking/org-netbeans-api-java.xml +netbeans/ide4/update_tracking/org-netbeans-api-mdr.xml +netbeans/ide4/update_tracking/org-netbeans-api-web-dd.xml +netbeans/ide4/update_tracking/org-netbeans-api-web-webmodule.xml +netbeans/ide4/update_tracking/org-netbeans-api-xml.xml +netbeans/ide4/update_tracking/org-netbeans-core-ide.xml +netbeans/ide4/update_tracking/org-netbeans-jmi-javamodel.xml +netbeans/ide4/update_tracking/org-openide-src.xml +netbeans/ide4/update_tracking/org-netbeans-lib-cvsclient.xml +netbeans/ide4/update_tracking/org-netbeans-libs-commons_logging.xml +netbeans/ide4/update_tracking/org-netbeans-libs-j2eeeditor.xml +netbeans/ide4/update_tracking/org-netbeans-libs-xerces.xml +netbeans/ide4/update_tracking/org-netbeans-modules-ant-browsetask.xml +netbeans/ide4/update_tracking/org-netbeans-modules-ant-freeform.xml +netbeans/ide4/update_tracking/org-netbeans-modules-ant-grammar.xml +netbeans/ide4/update_tracking/org-netbeans-modules-beans.xml +netbeans/ide4/update_tracking/org-netbeans-modules-classfile.xml +netbeans/ide4/update_tracking/org-netbeans-modules-clazz.xml +netbeans/ide4/update_tracking/org-netbeans-modules-css.xml +netbeans/ide4/update_tracking/org-openidex-util.xml +netbeans/ide4/update_tracking/org-netbeans-modules-db.xml +netbeans/ide4/update_tracking/org-netbeans-modules-debugger-jpda-ant.xml +netbeans/ide4/update_tracking/org-netbeans-modules-debugger-jpda-ui.xml +netbeans/ide4/update_tracking/org-netbeans-modules-debugger-jpdaimpl.xml +netbeans/ide4/update_tracking/org-netbeans-modules-diff.xml +netbeans/ide4/update_tracking/org-netbeans-modules-editor-fold.xml +netbeans/ide4/update_tracking/org-netbeans-modules-editor-lib.xml +netbeans/ide4/update_tracking/org-netbeans-modules-editor-util.xml +netbeans/ide4/update_tracking/org-netbeans-modules-editor.xml +netbeans/ide4/update_tracking/org-netbeans-modules-extbrowser.xml +netbeans/ide4/update_tracking/org-netbeans-modules-favorites.xml +netbeans/ide4/update_tracking/org-netbeans-modules-form.xml +netbeans/ide4/update_tracking/org-netbeans-modules-html.xml +netbeans/ide4/update_tracking/org-netbeans-modules-httpserver.xml +netbeans/ide4/update_tracking/org-netbeans-modules-i18n-form.xml +netbeans/ide4/update_tracking/org-netbeans-modules-i18n.xml +netbeans/ide4/update_tracking/org-netbeans-modules-image.xml +netbeans/ide4/update_tracking/org-netbeans-modules-j2ee-ant.xml +netbeans/ide4/update_tracking/org-netbeans-modules-j2eeapis.xml +netbeans/ide4/update_tracking/org-netbeans-modules-j2eeserver.xml +netbeans/ide4/update_tracking/org-netbeans-modules-java-examples.xml +netbeans/ide4/update_tracking/org-netbeans-modules-java-j2seplatform.xml +netbeans/ide4/update_tracking/javax-jmi-model.xml +netbeans/ide4/update_tracking/org-netbeans-modules-java-j2seproject.xml +netbeans/ide4/update_tracking/org-netbeans-modules-java-platform.xml +netbeans/ide4/update_tracking/org-netbeans-modules-java-project.xml +netbeans/ide4/update_tracking/org-netbeans-modules-java.xml +netbeans/ide4/update_tracking/org-netbeans-modules-javacore.xml +netbeans/ide4/update_tracking/org-netbeans-modules-javadoc.xml +netbeans/ide4/update_tracking/org-netbeans-modules-jmiutils.xml +netbeans/ide4/update_tracking/org-netbeans-modules-junit.xml +netbeans/ide4/update_tracking/org-netbeans-modules-mdr.xml +netbeans/ide4/update_tracking/org-netbeans-modules-project-ant.xml +netbeans/ide4/update_tracking/org-netbeans-modules-project-libraries.xml +netbeans/ide4/update_tracking/org-netbeans-modules-projectapi.xml +netbeans/ide4/update_tracking/org-netbeans-modules-projectui.xml +netbeans/ide4/update_tracking/org-netbeans-modules-projectuiapi.xml +netbeans/ide4/update_tracking/org-netbeans-modules-properties-syntax.xml +netbeans/ide4/update_tracking/org-netbeans-modules-properties.xml +netbeans/ide4/update_tracking/org-netbeans-modules-refactoring.xml +netbeans/ide4/update_tracking/org-netbeans-modules-schema2beans.xml +netbeans/ide4/update_tracking/org-netbeans-modules-servletapi.xml +netbeans/ide4/update_tracking/org-netbeans-modules-servletapi23.xml +netbeans/ide4/update_tracking/org-netbeans-modules-servletapi24.xml +netbeans/ide4/update_tracking/org-netbeans-modules-tomcat5.xml +netbeans/ide4/update_tracking/org-netbeans-modules-suggestions_framework.xml +netbeans/ide4/update_tracking/org-netbeans-modules-tasklist-core.xml +netbeans/ide4/update_tracking/org-netbeans-modules-tasklist-docscan.xml +netbeans/ide4/update_tracking/org-netbeans-modules-usersguide.xml +netbeans/ide4/update_tracking/org-netbeans-modules-utilities-project.xml +netbeans/ide4/update_tracking/org-netbeans-modules-utilities.xml +netbeans/ide4/update_tracking/org-netbeans-modules-vcs-advanced.xml +netbeans/ide4/update_tracking/org-netbeans-modules-vcs-profiles-cvsprofiles.xml +netbeans/ide4/update_tracking/org-netbeans-modules-vcs-profiles-pvcs.xml +netbeans/ide4/update_tracking/org-netbeans-modules-vcs-profiles-vss.xml +netbeans/ide4/update_tracking/org-netbeans-modules-vcscore.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-core-syntax.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-core.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-debug.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-jspparser.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-jstl11.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-monitor.xml +netbeans/ide4/update_tracking/org-netbeans-modules-web-project.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xml-catalog.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xml-core.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xml-schema.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xml-tax.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xml-text.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xml-tools.xml +netbeans/ide4/update_tracking/org-netbeans-modules-xsl.xml +netbeans/ide4/update_tracking/org-netbeans-spi-debugger-ui.xml +netbeans/ide4/update_tracking/org-netbeans-spi-viewmodel.xml +netbeans/bin/netbeans +netbeans/bin/nb.exe +netbeans/bin/netbeans.cmd +netbeans/bin/netbeans.exe +netbeans/nb4.0/update_tracking/org-netbeans-modules-updatecenters.xml +netbeans/nb4.0/update_tracking/org-netbeans-modules-ide-branding.xml +netbeans/nb4.0/update_tracking/org-netbeans-modules-tomcat5-bundled.xml +netbeans/nb4.0/update_tracking/org-netbeans-modules-applemenu.xml +netbeans/nb4.0/update_tracking/org-netbeans-modules-web-examples.xml +netbeans/nb4.0/update_tracking/org-netbeans-modules-welcome.xml +netbeans/nb4.0/update_tracking/org-netbeans-upgrader.xml +netbeans/nb4.0/config/Modules/org-netbeans-modules-applemenu.xml +netbeans/nb4.0/config/Modules/org-netbeans-modules-ide-branding.xml +netbeans/nb4.0/config/Modules/org-netbeans-modules-tomcat5-bundled.xml +netbeans/nb4.0/config/Modules/org-netbeans-modules-updatecenters.xml +netbeans/nb4.0/config/Modules/org-netbeans-modules-web-examples.xml +netbeans/nb4.0/config/Modules/org-netbeans-modules-welcome.xml +netbeans/nb4.0/core/locale/core_nb.jar +netbeans/nb4.0/core/org-netbeans-upgrade.jar +netbeans/nb4.0/docs/webmodule.gif +netbeans/nb4.0/docs/import_j2se_40.html +netbeans/nb4.0/docs/import_j2se_40_details.html +netbeans/nb4.0/docs/import_web_40.html +netbeans/nb4.0/docs/netbeans.css +netbeans/nb4.0/docs/open_ant_project1_web.png +netbeans/nb4.0/docs/open_ant_project2_j2se.png +netbeans/nb4.0/docs/open_ant_project2_web.png +netbeans/nb4.0/docs/open_project1_web.png +netbeans/nb4.0/docs/open_project2_j2se.png +netbeans/nb4.0/docs/open_project2_web.png +netbeans/nb4.0/docs/quickstart-40.html +netbeans/nb4.0/docs/transition-40.html +netbeans/nb4.0/docs/example_j2se.png +netbeans/nb4.0/modules/eager/tomcat5-bundled.jar +netbeans/nb4.0/modules/locale/org-netbeans-core-windows_nb.jar +netbeans/nb4.0/modules/org-netbeans-modules-updatecenters.jar +netbeans/nb4.0/modules/org-netbeans-modules-web-examples.jar +netbeans/nb4.0/modules/org-netbeans-modules-welcome.jar +netbeans/nb4.0/modules/org-netbeans-modules-ide-branding.jar +netbeans/nb4.0/modules/org-netbeans-modules-applemenu.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/temp/dummy +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/classes/dummy +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/endorsed/xercesImpl.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/endorsed/xml-apis.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/servlet-api.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/ant.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/commons-collections-3.1.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/commons-dbcp-1.2.1.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/commons-el.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/commons-pool-1.2.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/jasper-compiler.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/jasper-runtime.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/jsp-api.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/naming-common.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/naming-factory.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/naming-java.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/naming-resources.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/org-netbeans-modules-schema2beans.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/org-netbeans-modules-web-httpmonitor.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib/ant-launcher.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/Catalina/localhost/admin.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/Catalina/localhost/balancer.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/Catalina/localhost/manager.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/catalina.policy +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/catalina.properties +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/jk2.properties +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/server-minimal.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/server.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/tomcat-users.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/logs/dummy +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/tomcat-util.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina-cluster.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-es.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-fr.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-ja.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina-optional.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/commons-beanutils.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/commons-digester.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/commons-fileupload-1.0.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/commons-modeler.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/jakarta-regexp-1.3.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/jkconfig.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/jkshm.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/servlets-cgi.renametojar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/servlets-common.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/servlets-default.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/servlets-invoker.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/servlets-ssi.renametojar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/servlets-webdav.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/tomcat-coyote.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/tomcat-http11.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/tomcat-jk.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/tomcat-jk2.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/tomcat-jni.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib/catalina-ant.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/userDatabases.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/envEntries.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/listDataSources.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/listEnvEntries.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/listMailSessions.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/listResourceLinks.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/listUserDatabases.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/mailSessions.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/resourceLinks.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources/dataSources.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/linevertical.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Connector.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Context.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Datasource.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/DefaultContext.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/EnvironmentEntries.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Groups.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Host.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Logger.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Login.jpg +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/LoginBackgroundTile.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Mailsession.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/PaperTexture.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Realm.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/ResourceLink.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Roles.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Server.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Service.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Thumbs.db +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/TomcatBanner.jpg +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Users.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/Valve.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/folder_16_pad.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/handledownlast.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/handledownmiddle.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/handlerightlast.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/handlerightmiddle.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/linelastnode.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/linemiddlenode.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images/BlueTile.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/lib/catalina-admin.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/lib/struts.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/controls.tld +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/struts-bean.tld +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/struts-html.tld +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/struts-logic.tld +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/struts-config.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users/groups.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users/listGroups.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users/listRoles.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users/listUsers.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users/roles.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users/users.jspf +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/admin.css +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/admin.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/tree-control-test.css +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/WEB-INF/lib/catalina-manager.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/void.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/code.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/design.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/docs.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/fix.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/jakarta-logo.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/tomcat.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/update.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images/add.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/manager.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/status.xsd +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/xform.xsl +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/html-manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/version.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/catalina.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/digest.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/setclasspath.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/shutdown-using-launcher.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/shutdown.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/startup-using-launcher.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/startup.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/tool-wrapper-using-launcher.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/tool-wrapper.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/version.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/LauncherBootstrap.class +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/bootstrap.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/catalina.50.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/catalina.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/catalina.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/commons-daemon.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/commons-launcher.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/jmx.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/commons-logging-api.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/cpappend.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/digest.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/jsvc.tar.gz +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/launcher.properties +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/service.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/setclasspath.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/shutdown-using-launcher.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/shutdown.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/startup-using-launcher.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/startup.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/tomcat5.exe +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/tomcat5w.exe +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/tool-wrapper-using-launcher.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/tool-wrapper.bat +netbeans/nb4.0/jakarta-tomcat-5.0.28/bin/catalina.50.sh +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/classes/org/apache/jsp/index_jsp.class +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/lib/catalina-root.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/RELEASE-NOTES.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/index.jsp +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/jakarta-banner.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/tomcat-power.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/tomcat.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/WEB-INF/config/rules.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/WEB-INF/lib/catalina-balancer.jar +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/balancer.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/docs/README.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/src/mypackage/Hello.java +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web/images/tomcat.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web/hello.jsp +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/build.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/web.xml.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/deployment.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/installation.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/introduction.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/processes.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/source.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer/build.xml.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/deployment.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/installation.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/introduction.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/processes.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/source.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/web.xml.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/build.xml.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/requestProcess/requestProcess.pdf +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/requestProcess/roseModel.mdl +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/startup/serverStartup.pdf +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/startup/serverStartup.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/printer/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/printer/overview.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/printer/requestProcess.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/printer/startup.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/startup.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/overview.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/requestProcess.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/valve.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/context.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/defaultcontext.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/engine.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/globalresources.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/host.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/http.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/loader.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/logger.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/manager.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/realm.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/resources.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/server.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/service.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer/ajp.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/ajp.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/context.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/defaultcontext.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/engine.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/globalresources.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/host.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/http.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/loader.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/logger.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/manager.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/realm.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/resources.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/server.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/service.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/valve.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/void.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/code.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/design.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/docs.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/fix.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/jakarta-logo.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/printer.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/tomcat.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/update.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images/add.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/status.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/building.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/cgi-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/changelog.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/class-loader-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/cluster-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/default-servlet.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/deployer-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/developers.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/html-manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/introduction.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/jasper-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/jndi-datasource-examples-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/jndi-resources-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/proxy-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/mbeans-descriptor-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/realm-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/security-manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/setup.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/ssi-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/ssl-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer/balancer-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/changelog.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/class-loader-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/cluster-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/default-servlet.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/deployer-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/developers.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/html-manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/introduction.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/jasper-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/jndi-datasource-examples-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/jndi-resources-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/mbeans-descriptor-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/proxy-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/realm-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/security-manager-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/setup.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/ssi-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/ssl-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/status.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/RELEASE-NOTES.txt +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/balancer-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/build.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/building.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/cgi-howto.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/webdav/WEB-INF/web.xml +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/webdav/index.html +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/webdav/tomcat-power.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/webdav/tomcat.gif +netbeans/nb4.0/jakarta-tomcat-5.0.28/work/dummy +netbeans/nb4.0/jakarta-tomcat-5.0.28/LICENSE +netbeans/nb4.0/jakarta-tomcat-5.0.28/NOTICE +netbeans/nb4.0/jakarta-tomcat-5.0.28/RELEASE-NOTES +netbeans/nb4.0/jakarta-tomcat-5.0.28/RUNNING.txt +netbeans/nb4.0/nbos2icons.zip +netbeans/nb4.0/netbeans.icns +netbeans/nb4.0/netbeans.png +netbeans/nb4.0/shortcuts.pdf +netbeans/platform4/lib/nbexec +netbeans/platform4/lib/boot.jar +netbeans/platform4/lib/nbexec.cmd +netbeans/platform4/lib/nbexec.exe +netbeans/platform4/config/ModuleAutoDeps/org-netbeans-core.xml +netbeans/platform4/config/ModuleAutoDeps/org-openide-execution.xml +netbeans/platform4/config/ModuleAutoDeps/org-openide.xml +netbeans/platform4/config/Modules/org-openide-execution.xml +netbeans/platform4/config/Modules/org-netbeans-core-multiview.xml +netbeans/platform4/config/Modules/org-netbeans-core-output2.xml +netbeans/platform4/config/Modules/org-netbeans-core-ui.xml +netbeans/platform4/config/Modules/org-netbeans-core-windows.xml +netbeans/platform4/config/Modules/org-netbeans-modules-autoupdate.xml +netbeans/platform4/config/Modules/org-netbeans-modules-javahelp.xml +netbeans/platform4/config/Modules/org-netbeans-modules-masterfs.xml +netbeans/platform4/config/Modules/org-netbeans-modules-queries.xml +netbeans/platform4/config/Modules/org-netbeans-modules-settings.xml +netbeans/platform4/config/Modules/org-netbeans-swing-tabcontrol.xml +netbeans/platform4/config/Modules/org-openide-io.xml +netbeans/platform4/config/Modules/org-netbeans-core-execution.xml +netbeans/platform4/core/core.jar +netbeans/platform4/core/ide.ks +netbeans/platform4/core/openide-loaders.jar +netbeans/platform4/core/openide.jar +netbeans/platform4/core/org-netbeans-swing-plaf.jar +netbeans/platform4/core/updater.jar +netbeans/platform4/modules/ext/jh-2.0_01.jar +netbeans/platform4/modules/org-netbeans-core-execution.jar +netbeans/platform4/modules/org-netbeans-core-multiview.jar +netbeans/platform4/modules/org-netbeans-core-output2.jar +netbeans/platform4/modules/org-netbeans-core-ui.jar +netbeans/platform4/modules/org-netbeans-core-windows.jar +netbeans/platform4/modules/org-netbeans-modules-autoupdate.jar +netbeans/platform4/modules/org-netbeans-modules-javahelp.jar +netbeans/platform4/modules/org-netbeans-modules-masterfs.jar +netbeans/platform4/modules/org-netbeans-modules-queries.jar +netbeans/platform4/modules/org-netbeans-modules-settings.jar +netbeans/platform4/modules/org-netbeans-swing-tabcontrol.jar +netbeans/platform4/modules/org-openide-execution.jar +netbeans/platform4/modules/org-openide-io.jar +netbeans/platform4/update_tracking/org-openide.xml +netbeans/platform4/update_tracking/org-netbeans-core-multiview.xml +netbeans/platform4/update_tracking/org-netbeans-core-output2.xml +netbeans/platform4/update_tracking/org-netbeans-core-ui.xml +netbeans/platform4/update_tracking/org-netbeans-core-windows.xml +netbeans/platform4/update_tracking/org-netbeans-core.xml +netbeans/platform4/update_tracking/org-netbeans-modules-autoupdate.xml +netbeans/platform4/update_tracking/org-netbeans-modules-javahelp.xml +netbeans/platform4/update_tracking/org-netbeans-modules-masterfs.xml +netbeans/platform4/update_tracking/org-netbeans-modules-queries.xml +netbeans/platform4/update_tracking/org-netbeans-modules-settings.xml +netbeans/platform4/update_tracking/org-netbeans-swing-plaf.xml +netbeans/platform4/update_tracking/org-netbeans-swing-tabcontrol.xml +netbeans/platform4/update_tracking/org-openide-execution.xml +netbeans/platform4/update_tracking/org-openide-io.xml +netbeans/platform4/update_tracking/org-openide-loaders.xml +netbeans/platform4/update_tracking/org-netbeans-core-execution.xml +netbeans/etc/netbeans.conf +netbeans/moduleCluster.properties +netbeans/module_tracking.xml netbeans/build_info -netbeans/docs/NetBeansWeb.html -netbeans/docs/jsp20-docs.zip -netbeans/docs/junit-3.8.1-api.zip -netbeans/docs/org/netbeans/modules/usersguide/ide.css -netbeans/docs/servlet24-docs.zip -netbeans/docs/xml-apis.zip -netbeans/jakarta-tomcat-5.0.19/LICENSE -netbeans/jakarta-tomcat-5.0.19/RELEASE-NOTES -netbeans/jakarta-tomcat-5.0.19/RUNNING.txt -netbeans/jakarta-tomcat-5.0.19/bin/LauncherBootstrap.class -netbeans/jakarta-tomcat-5.0.19/bin/bootstrap.jar -netbeans/jakarta-tomcat-5.0.19/bin/catalina.bat -netbeans/jakarta-tomcat-5.0.19/bin/catalina.sh -netbeans/jakarta-tomcat-5.0.19/bin/catalina.xml -netbeans/jakarta-tomcat-5.0.19/bin/commons-daemon.jar -netbeans/jakarta-tomcat-5.0.19/bin/commons-launcher.jar -netbeans/jakarta-tomcat-5.0.19/bin/commons-logging-api.jar -netbeans/jakarta-tomcat-5.0.19/bin/cpappend.bat -netbeans/jakarta-tomcat-5.0.19/bin/digest.bat -netbeans/jakarta-tomcat-5.0.19/bin/digest.sh -netbeans/jakarta-tomcat-5.0.19/bin/jsvc.tar.gz -netbeans/jakarta-tomcat-5.0.19/bin/launcher.properties -netbeans/jakarta-tomcat-5.0.19/bin/service.bat -netbeans/jakarta-tomcat-5.0.19/bin/setclasspath.bat -netbeans/jakarta-tomcat-5.0.19/bin/setclasspath.sh -netbeans/jakarta-tomcat-5.0.19/bin/shutdown-using-launcher.bat -netbeans/jakarta-tomcat-5.0.19/bin/shutdown-using-launcher.sh -netbeans/jakarta-tomcat-5.0.19/bin/shutdown.bat -netbeans/jakarta-tomcat-5.0.19/bin/shutdown.sh -netbeans/jakarta-tomcat-5.0.19/bin/startup-using-launcher.bat -netbeans/jakarta-tomcat-5.0.19/bin/startup-using-launcher.sh -netbeans/jakarta-tomcat-5.0.19/bin/startup.bat -netbeans/jakarta-tomcat-5.0.19/bin/startup.sh -netbeans/jakarta-tomcat-5.0.19/bin/tomcat.exe -netbeans/jakarta-tomcat-5.0.19/bin/tomcatw.exe -netbeans/jakarta-tomcat-5.0.19/bin/tool-wrapper-using-launcher.bat -netbeans/jakarta-tomcat-5.0.19/bin/tool-wrapper-using-launcher.sh -netbeans/jakarta-tomcat-5.0.19/bin/tool-wrapper.bat -netbeans/jakarta-tomcat-5.0.19/bin/tool-wrapper.sh -netbeans/jakarta-tomcat-5.0.19/common/classes/dummy -netbeans/jakarta-tomcat-5.0.19/common/endorsed/xercesImpl.jar -netbeans/jakarta-tomcat-5.0.19/common/endorsed/xmlParserAPIs.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/ant.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/commons-collections.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/commons-dbcp-1.1.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/commons-el.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/commons-pool-1.1.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/httpmonitor.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/jasper-compiler.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/jasper-runtime.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/jmx.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/jsp-api.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/naming-common.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/naming-factory.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/naming-java.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/naming-resources.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/schema2beans.jar -netbeans/jakarta-tomcat-5.0.19/common/lib/servlet-api.jar -netbeans/jakarta-tomcat-5.0.19/conf/Catalina/localhost/admin.xml -netbeans/jakarta-tomcat-5.0.19/conf/Catalina/localhost/balancer.xml -netbeans/jakarta-tomcat-5.0.19/conf/Catalina/localhost/manager.xml -netbeans/jakarta-tomcat-5.0.19/conf/catalina.policy -netbeans/jakarta-tomcat-5.0.19/conf/catalina.properties -netbeans/jakarta-tomcat-5.0.19/conf/jk2.properties -netbeans/jakarta-tomcat-5.0.19/conf/server-minimal.xml -netbeans/jakarta-tomcat-5.0.19/conf/server.xml -netbeans/jakarta-tomcat-5.0.19/conf/tomcat-users.xml -netbeans/jakarta-tomcat-5.0.19/conf/web.xml -netbeans/jakarta-tomcat-5.0.19/logs/dummy -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina-ant.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina-cluster.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina-i18n-es.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina-i18n-fr.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina-i18n-ja.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina-optional.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/catalina.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/commons-beanutils.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/commons-digester.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/commons-fileupload-1.0.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/commons-modeler.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/jakarta-regexp-1.3.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/jkconfig.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/jkshm.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/servlets-cgi.renametojar -netbeans/jakarta-tomcat-5.0.19/server/lib/servlets-common.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/servlets-default.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/servlets-invoker.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/servlets-ssi.renametojar -netbeans/jakarta-tomcat-5.0.19/server/lib/servlets-webdav.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/tomcat-coyote.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/tomcat-http11.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/tomcat-jk.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/tomcat-jk2.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/tomcat-jni.jar -netbeans/jakarta-tomcat-5.0.19/server/lib/tomcat-util.jar -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/controls.tld -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/lib/catalina-admin.jar -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/lib/struts.jar -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/struts-bean.tld -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/struts-config.xml -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/struts-html.tld -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/struts-logic.tld -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/admin.css -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/admin.xml -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/BlueTile.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Connector.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Context.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Datasource.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/DefaultContext.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/EnvironmentEntries.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Groups.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Host.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Logger.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Login.jpg -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/LoginBackgroundTile.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Mailsession.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/PaperTexture.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Realm.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/ResourceLink.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Roles.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Server.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Service.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Thumbs.db -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/TomcatBanner.jpg -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Users.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/Valve.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/folder_16_pad.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/handledownlast.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/handledownmiddle.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/handlerightlast.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/handlerightmiddle.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/linelastnode.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/linemiddlenode.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images/linevertical.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/dataSources.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/envEntries.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/listDataSources.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/listEnvEntries.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/listMailSessions.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/listResourceLinks.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/listUserDatabases.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/mailSessions.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/resourceLinks.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources/userDatabases.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/tree-control-test.css -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users/groups.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users/listGroups.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users/listRoles.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users/listUsers.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users/roles.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users/users.jspf -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/WEB-INF/lib/catalina-manager.jar -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/html-manager-howto.html -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/add.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/code.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/design.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/docs.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/fix.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/jakarta-logo.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/tomcat.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/update.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images/void.gif -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/manager-howto.html -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/manager.xml -netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/xform.xsl -netbeans/jakarta-tomcat-5.0.19/temp/dummy -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/RELEASE-NOTES.txt -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/classes/org/apache/jsp/index_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/lib/catalina-root.jar -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/index.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/jakarta-banner.gif -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/tomcat-power.gif -netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/tomcat.gif -netbeans/jakarta-tomcat-5.0.19/webapps/balancer/WEB-INF/config/rules.xml -netbeans/jakarta-tomcat-5.0.19/webapps/balancer/WEB-INF/lib/catalina-balancer.jar -netbeans/jakarta-tomcat-5.0.19/webapps/balancer/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/balancer/balancer.xml -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/Entries.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/Entries.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/Entry.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/Entry.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/JspCalendar.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/JspCalendar.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/TableBean.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal/TableBean.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/checkbox/CheckTest.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/checkbox/CheckTest.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/colors/ColorGameBean.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/colors/ColorGameBean.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/dates/JspCalendar.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/dates/JspCalendar.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/error/Smart.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/error/Smart.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/ExampleTagBase.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/ExampleTagBase.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/FooTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/FooTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/FooTagExtraInfo.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/FooTagExtraInfo.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/LogTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/LogTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/ShowSource.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples/ShowSource.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters/ExampleFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters/ExampleFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters/RequestDumperFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters/RequestDumperFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/BookBean.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/BookBean.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/FooBean.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/FooBean.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/el/Functions.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/el/Functions.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/listeners/ContextListener.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/listeners/ContextListener.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/listeners/SessionListener.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/listeners/SessionListener.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/num/NumberGuessBean.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/num/NumberGuessBean.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/cal/cal1_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/cal/cal2_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/checkbox/checkresult_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/colors/colrs_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/dates/date_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/error/err_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/error/errorpge_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/forward/forward_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/forward/one_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/include/foo_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/include/include_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/el/basic_002darithmetic_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/el/basic_002dcomparisons_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/el/functions_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/el/implicit_002dobjects_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspattribute/jspattribute_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspattribute/shuffle_jsp$shuffle_jspHelper.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspattribute/shuffle_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspx/basic_jspx$basic_jspxHelper.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspx/basic_jspx.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspx/textRotate_jspx.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/misc/config_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/misc/dynamicattrs_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/simpletag/book_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/simpletag/hello_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/simpletag/repeat_jsp$repeat_jspHelper.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/simpletag/repeat_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/tagfiles/hello_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/tagfiles/panel_jsp$panel_jspHelper.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/tagfiles/panel_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/tagfiles/products_jsp$products_jspHelper.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/tagfiles/products_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsptoserv/hello_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsptoserv/jsptoservlet_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/num/numguess_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/plugin/plugin_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/security/protected_/error_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/security/protected_/index_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/security/protected_/login_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/sessions/carts_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/simpletag/foo_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/snp/snoop_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/source_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tag/web/displayProducts_tag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tag/web/helloWorld_tag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tag/web/panel_tag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tag/web/xhtmlbasic_tag.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/choose_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$1.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$2.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$3.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$4.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$5.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$6.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$7.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$8.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp$9.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/foreach_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin/if_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/xml/xml_jsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/servletToJsp.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/servletToJsp.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/sessions/DummyCart.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/sessions/DummyCart.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/util/HTMLFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/util/HTMLFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/validators/DebugValidator.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/validators/DebugValidator.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp/applet/Clock2.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp/debug-taglib.tld -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp/example-taglib.tld -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp2/jsp2-example-taglib.tld -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/lib/jstl.jar -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/lib/standard.jar -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/tagPlugins.xml -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/tags/displayProducts.tag -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/tags/helloWorld.tag -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/tags/panel.tag -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/tags/xhtmlbasic.tag -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/Entries.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/Entry.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/JspCalendar.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/TableBean.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/cal1.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/cal1.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/cal2.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/cal2.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/calendar.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal/login.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/checkbox/CheckTest.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/checkbox/check.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/checkbox/checkresult.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/checkbox/checkresult.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/checkbox/cresult.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/colors/ColorGameBean.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/colors/clr.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/colors/colors.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/colors/colrs.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/colors/colrs.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/dates/date.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/dates/date.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/dates/date.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/error/er.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/error/err.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/error/err.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/error/error.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/error/errorpge.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/forward/forward.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/forward/forward.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/forward/fwd.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/forward/one.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/forward/two.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/images/code.gif -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/images/execute.gif -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/images/read.gif -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/images/return.gif -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/include/foo.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/include/foo.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/include/inc.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/include/include.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/include/include.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/Functions.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/basic-arithmetic.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/basic-arithmetic.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/basic-arithmetic.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/basic-comparisons.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/basic-comparisons.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/basic-comparisons.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/functions.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/functions.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/functions.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/implicit-objects.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/implicit-objects.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el/implicit-objects.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/FooBean.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/HelloWorldSimpleTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/ShuffleSimpleTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/TileSimpleTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/jspattribute.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/jspattribute.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/jspattribute.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/shuffle.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/shuffle.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute/shuffle.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/basic.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/basic.jspx -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/basic.jspx.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/svgexample.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/textRotate.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/textRotate.jpg -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/textRotate.jspx -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx/textRotate.jspx.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/EchoAttributesTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/coda.jspf -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/coda.jspf.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/config.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/config.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/config.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/dynamicattrs.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/dynamicattrs.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/dynamicattrs.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/prelude.jspf -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc/prelude.jspf.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/BookBean.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/FindBookSimpleTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/Functions.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/HelloWorldSimpleTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/RepeatSimpleTag.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/book.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/book.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/book.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/hello.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/hello.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/hello.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/repeat.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/repeat.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag/repeat.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/displayProducts.tag.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/hello.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/hello.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/hello.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/helloWorld.tag.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/panel.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/panel.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/panel.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/panel.tag.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/products.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/products.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/products.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles/xhtmlbasic.tag.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsptoserv/hello.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsptoserv/jsptoservlet.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsptoserv/jsptoservlet.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsptoserv/jts.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsptoserv/servletToJsp.java.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/num/numguess.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/num/numguess.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/num/numguess.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin/applet/Clock2.class -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin/applet/Clock2.java -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin/plugin.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin/plugin.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin/plugin.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/security/protected/error.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/security/protected/index.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/security/protected/login.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/sessions/DummyCart.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/sessions/carts.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/sessions/carts.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/sessions/carts.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/sessions/crt.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/simpletag/foo.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/simpletag/foo.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/simpletag/foo.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/snp/snoop.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/snp/snoop.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/snp/snoop.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/source.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/choose.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/choose.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/choose.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/foreach.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/foreach.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/foreach.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/if.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/if.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/if.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin/notes.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/xml/xml.html -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/xml/xml.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/xml/xml.jsp.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/CookieExample.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/CookieExample.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/HelloWorldExample.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/HelloWorldExample.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/LocalStrings.properties -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/LocalStrings_en.properties -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/LocalStrings_es.properties -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/LocalStrings_fr.properties -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/RequestHeaderExample.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/RequestHeaderExample.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/RequestInfoExample.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/RequestInfoExample.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/RequestParamExample.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/RequestParamExample.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/SessionExample.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/SessionExample.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters/ExampleFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters/ExampleFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters/RequestDumperFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters/RequestDumperFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/listeners/ContextListener.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/listeners/ContextListener.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/listeners/SessionListener.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/listeners/SessionListener.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/util/HTMLFilter.class -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/util/HTMLFilter.java -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/cookies.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/helloworld.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/images/code.gif -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/images/execute.gif -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/images/return.gif -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/reqheaders.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/reqinfo.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/reqparams.html -netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/sessions.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/RELEASE-NOTES.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/build.xml.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/deployment.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/installation.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/introduction.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/build.xml.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/deployment.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/installation.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/introduction.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/processes.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/source.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer/web.xml.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/processes.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/build.xml -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/docs/README.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/src/mypackage/Hello.java -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web/hello.jsp -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web/images/tomcat.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/source.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/web.xml.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/overview.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/printer/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/printer/overview.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/printer/requestProcess.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/printer/startup.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/requestProcess.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/requestProcess/requestProcess.pdf -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/requestProcess/roseModel.mdl -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/startup.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/startup/serverStartup.pdf -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/startup/serverStartup.txt -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/balancer-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/build.xml -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/building.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/cgi-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/changelog.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/class-loader-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/cluster-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/ajp.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/context.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/defaultcontext.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/engine.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/globalresources.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/host.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/http.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/loader.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/logger.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/manager.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/ajp.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/context.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/defaultcontext.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/engine.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/globalresources.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/host.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/http.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/loader.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/logger.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/manager.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/realm.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/resources.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/server.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/service.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer/valve.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/realm.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/resources.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/server.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/service.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/valve.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/default-servlet.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/deployer-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/developers.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/html-manager-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/add.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/code.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/design.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/docs.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/fix.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/jakarta-logo.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/printer.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/tomcat.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/update.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images/void.gif -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/introduction.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/jasper-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/jndi-datasource-examples-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/jndi-resources-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/manager-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/mbeans-descriptor-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/balancer-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/building.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/cgi-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/changelog.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/class-loader-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/cluster-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/default-servlet.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/deployer-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/developers.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/html-manager-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/introduction.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/jasper-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/jndi-datasource-examples-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/jndi-resources-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/manager-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/mbeans-descriptor-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/proxy-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/realm-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/security-manager-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/setup.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/ssi-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/ssl-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer/status.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/proxy-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/realm-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/security-manager-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/setup.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/ssi-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/ssl-howto.html -netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/status.html -netbeans/jakarta-tomcat-5.0.19/webapps/webdav/WEB-INF/web.xml -netbeans/jakarta-tomcat-5.0.19/webapps/webdav/index.html -netbeans/jakarta-tomcat-5.0.19/webapps/webdav/tomcat-power.gif -netbeans/jakarta-tomcat-5.0.19/webapps/webdav/tomcat.gif -netbeans/jakarta-tomcat-5.0.19/work/dummy -netbeans/lib/core.jar -netbeans/lib/ext/boot.jar -netbeans/lib/ide.ks -netbeans/lib/openfile-cli.jar -netbeans/lib/openide-loaders.jar -netbeans/lib/openide.jar -netbeans/lib/updater.jar -netbeans/modules/ant.jar -netbeans/modules/applet.jar -netbeans/modules/autoload/classfile.jar -netbeans/modules/autoload/core-compiler.jar -netbeans/modules/autoload/core-deprecated.jar -netbeans/modules/autoload/core-execution.jar -netbeans/modules/autoload/core-output.jar -netbeans/modules/autoload/core-settings.jar -netbeans/modules/autoload/cvslib.jar -netbeans/modules/autoload/ddapi.jar -netbeans/modules/autoload/debuggerCore.jar -netbeans/modules/autoload/docs/xml-core.jar -netbeans/modules/autoload/ext/commons-el.jar -netbeans/modules/autoload/ext/commons-logging-api.jar -netbeans/modules/autoload/ext/ejb20.jar -netbeans/modules/autoload/ext/j2eeeditor-1.0.jar -netbeans/modules/autoload/ext/jasper-compiler-5.0.19.jar -netbeans/modules/autoload/ext/jasper-runtime-5.0.19.jar -netbeans/modules/autoload/ext/javax77.jar -netbeans/modules/autoload/ext/jh-2.0_01.jar -netbeans/modules/autoload/ext/jmxri.jar -netbeans/modules/autoload/ext/jsp-api-2.0.jar -netbeans/modules/autoload/ext/jsp-parser-ext.jar -netbeans/modules/autoload/ext/jsr88javax.jar -netbeans/modules/autoload/ext/regexp-1.2.jar -netbeans/modules/autoload/ext/servlet-2.2.jar -netbeans/modules/autoload/ext/servlet-2.3.jar -netbeans/modules/autoload/ext/servlet-api-2.4.jar -netbeans/modules/autoload/ext/tax.jar -netbeans/modules/autoload/ext/xalan-2.5.2.jar -netbeans/modules/autoload/ext/xerces-2.6.0.jar -netbeans/modules/autoload/ext/xerces2.jar -netbeans/modules/autoload/ext/xml-commons-dom-ranges-1.0.b2.jar -netbeans/modules/autoload/j2eeapis.jar -netbeans/modules/autoload/j2eeeditor.jar -netbeans/modules/autoload/j2eeserver.jar -netbeans/modules/autoload/java-api.jar -netbeans/modules/autoload/java-src-model.jar -netbeans/modules/autoload/javahelp-api.jar -netbeans/modules/autoload/jaxp.jar -netbeans/modules/autoload/jsp-parser.jar -netbeans/modules/autoload/jsp-syntax.jar -netbeans/modules/autoload/nb-regexp-wrapper.jar -netbeans/modules/autoload/nb-xalan-wrapper.jar -netbeans/modules/autoload/nb-xerces-wrapper.jar -netbeans/modules/autoload/openide-compiler.jar -netbeans/modules/autoload/openide-debugger.jar -netbeans/modules/autoload/openide-deprecated.jar -netbeans/modules/autoload/openide-execution.jar -netbeans/modules/autoload/openide-io.jar -netbeans/modules/autoload/openidex.jar -netbeans/modules/autoload/schema2beans.jar -netbeans/modules/autoload/schema2beansdev.jar -netbeans/modules/autoload/servletapi.jar -netbeans/modules/autoload/servletapi23.jar -netbeans/modules/autoload/servletapi24.jar -netbeans/modules/autoload/suggestions-framework.jar -netbeans/modules/autoload/tasklist-api.jar -netbeans/modules/autoload/tasklist-core.jar -netbeans/modules/autoload/terminalemulator.jar -netbeans/modules/autoload/vcscore.jar -netbeans/modules/autoload/xml-api.jar -netbeans/modules/autoload/xml-core.jar -netbeans/modules/autoload/xml-tax.jar -netbeans/modules/autoupdate.jar -netbeans/modules/beans.jar -netbeans/modules/bin/extbrowser.dll -netbeans/modules/clazz.jar -netbeans/modules/core-ide.jar -netbeans/modules/core-ui.jar -netbeans/modules/core-windows.jar -netbeans/modules/css.jar -netbeans/modules/cvs-profile.jar -netbeans/modules/cvscompat.jar -netbeans/modules/db.jar -netbeans/modules/diff.jar -netbeans/modules/docs/db.jar -netbeans/modules/docs/jspie.jar -netbeans/modules/docs/junit-module-help.jar -netbeans/modules/docs/monitor.jar -netbeans/modules/docs/tomcat5.jar -netbeans/modules/docs/usersguide.jar -netbeans/modules/eager/autoupdate-updatecenters.jar -netbeans/modules/eager/i18n-form.jar -netbeans/modules/eager/properties-syntax.jar -netbeans/modules/eager/tomcat5-bundled.jar -netbeans/modules/editor.jar -netbeans/modules/ext/AbsoluteLayout.jar -netbeans/modules/ext/ddl.jar -netbeans/modules/ext/flute.jar -netbeans/modules/ext/httpmonitor.jar -netbeans/modules/ext/java-gj.jar -netbeans/modules/ext/javac.jar -netbeans/modules/ext/javamake-1.2.12.jar -netbeans/modules/ext/junit-3.8.1.jar -netbeans/modules/ext/junit-testrunner.jar -netbeans/modules/ext/nb-editor.jar -netbeans/modules/ext/resolver-1_1_nb.jar -netbeans/modules/ext/sac.jar -netbeans/modules/ext/webserver.jar -netbeans/modules/extbrowser.jar -netbeans/modules/form.jar -netbeans/modules/group.jar -netbeans/modules/html.jar -netbeans/modules/httpserver.jar -netbeans/modules/i18n.jar -netbeans/modules/image.jar -netbeans/modules/jarpackager.jar -netbeans/modules/java.jar -netbeans/modules/javacvscompat.jar -netbeans/modules/javadoc.jar -netbeans/modules/jpdaDebugger.jar -netbeans/modules/jsp.jar -netbeans/modules/jspdebug.jar -netbeans/modules/jspie.jar -netbeans/modules/junit.jar -netbeans/modules/monitor.jar -netbeans/modules/projects.jar -netbeans/modules/properties.jar -netbeans/modules/pvcs-profile.jar -netbeans/modules/taglibed.jar -netbeans/modules/tasklist-docscan.jar -netbeans/modules/text.jar -netbeans/modules/tomcat5.jar -netbeans/modules/usersguide.jar -netbeans/modules/utilities.jar -netbeans/modules/vcsgen.jar -netbeans/modules/vss-profile.jar -netbeans/modules/welcome.jar -netbeans/modules/xml-catalog.jar -netbeans/modules/xml-schema.jar -netbeans/modules/xml-text-edit.jar -netbeans/modules/xml-tools.jar -netbeans/modules/xsl.jar netbeans/netbeans.css -netbeans/shortcuts.pdf -netbeans/sources/org/netbeans/examples/lib/timerbean/MANIFEST.MF -netbeans/sources/org/netbeans/examples/lib/timerbean/Timer.java -netbeans/sources/org/netbeans/examples/lib/timerbean/TimerBeanInfo.java -netbeans/sources/org/netbeans/examples/lib/timerbean/TimerListener.java -netbeans/sources/org/netbeans/examples/lib/timerbean/timer.gif -netbeans/sources/org/netbeans/lib/awtextra/AbsoluteConstraints.java -netbeans/sources/org/netbeans/lib/awtextra/AbsoluteLayout.java -netbeans/sources/readme.txt -netbeans/system/ModuleAutoDeps/org-netbeans-core.xml -netbeans/system/ModuleAutoDeps/org-openide-deprecated.xml -netbeans/system/ModuleAutoDeps/org-openide.xml -netbeans/system/Modules/org-apache-tools-ant-module.xml -netbeans/system/Modules/org-netbeans-api-java.xml -netbeans/system/Modules/org-netbeans-api-web-dd.xml -netbeans/system/Modules/org-netbeans-api-xml.xml -netbeans/system/Modules/org-netbeans-core-compiler.xml -netbeans/system/Modules/org-netbeans-core-deprecated.xml -netbeans/system/Modules/org-netbeans-core-execution.xml -netbeans/system/Modules/org-netbeans-core-ide.xml -netbeans/system/Modules/org-netbeans-core-output.xml -netbeans/system/Modules/org-netbeans-core-ui.xml -netbeans/system/Modules/org-netbeans-core-windows.xml -netbeans/system/Modules/org-netbeans-lib-cvsclient.xml -netbeans/system/Modules/org-netbeans-lib-terminalemulator.xml -netbeans/system/Modules/org-netbeans-libs-j2eeeditor.xml -netbeans/system/Modules/org-netbeans-libs-jaxp.xml -netbeans/system/Modules/org-netbeans-libs-regexp.xml -netbeans/system/Modules/org-netbeans-libs-xalan.xml -netbeans/system/Modules/org-netbeans-libs-xerces.xml -netbeans/system/Modules/org-netbeans-modules-applet.xml -netbeans/system/Modules/org-netbeans-modules-autoupdate.xml -netbeans/system/Modules/org-netbeans-modules-beans.xml -netbeans/system/Modules/org-netbeans-modules-classfile.xml -netbeans/system/Modules/org-netbeans-modules-clazz.xml -netbeans/system/Modules/org-netbeans-modules-css.xml -netbeans/system/Modules/org-netbeans-modules-cvsclient.xml -netbeans/system/Modules/org-netbeans-modules-db.xml -netbeans/system/Modules/org-netbeans-modules-debugger-core.xml -netbeans/system/Modules/org-netbeans-modules-debugger-jpda.xml -netbeans/system/Modules/org-netbeans-modules-diff.xml -netbeans/system/Modules/org-netbeans-modules-editor.xml -netbeans/system/Modules/org-netbeans-modules-extbrowser.xml -netbeans/system/Modules/org-netbeans-modules-form.xml -netbeans/system/Modules/org-netbeans-modules-group.xml -netbeans/system/Modules/org-netbeans-modules-html.xml -netbeans/system/Modules/org-netbeans-modules-httpserver.xml -netbeans/system/Modules/org-netbeans-modules-i18n-form.xml -netbeans/system/Modules/org-netbeans-modules-i18n.xml -netbeans/system/Modules/org-netbeans-modules-image.xml -netbeans/system/Modules/org-netbeans-modules-j2eeapis.xml -netbeans/system/Modules/org-netbeans-modules-j2eeserver.xml -netbeans/system/Modules/org-netbeans-modules-jarpackager.xml -netbeans/system/Modules/org-netbeans-modules-java.xml -netbeans/system/Modules/org-netbeans-modules-javadoc.xml -netbeans/system/Modules/org-netbeans-modules-javahelp.xml -netbeans/system/Modules/org-netbeans-modules-junit.xml -netbeans/system/Modules/org-netbeans-modules-projects.xml -netbeans/system/Modules/org-netbeans-modules-properties-syntax.xml -netbeans/system/Modules/org-netbeans-modules-properties.xml -netbeans/system/Modules/org-netbeans-modules-schema2beans.xml -netbeans/system/Modules/org-netbeans-modules-schema2beansdev.xml -netbeans/system/Modules/org-netbeans-modules-servletapi.xml -netbeans/system/Modules/org-netbeans-modules-servletapi23.xml -netbeans/system/Modules/org-netbeans-modules-servletapi24.xml -netbeans/system/Modules/org-netbeans-modules-settings.xml -netbeans/system/Modules/org-netbeans-modules-suggestions_framework.xml -netbeans/system/Modules/org-netbeans-modules-tasklist-core.xml -netbeans/system/Modules/org-netbeans-modules-tasklist-docscan.xml -netbeans/system/Modules/org-netbeans-modules-text.xml -netbeans/system/Modules/org-netbeans-modules-tomcat5-bundled.xml -netbeans/system/Modules/org-netbeans-modules-tomcat5.xml -netbeans/system/Modules/org-netbeans-modules-updatecenters.xml -netbeans/system/Modules/org-netbeans-modules-usersguide.xml -netbeans/system/Modules/org-netbeans-modules-utilities.xml -netbeans/system/Modules/org-netbeans-modules-vcs-advanced.xml -netbeans/system/Modules/org-netbeans-modules-vcs-cmdline-compat.xml -netbeans/system/Modules/org-netbeans-modules-vcs-profiles-cvsprofiles.xml -netbeans/system/Modules/org-netbeans-modules-vcs-profiles-pvcs.xml -netbeans/system/Modules/org-netbeans-modules-vcs-profiles-vss.xml -netbeans/system/Modules/org-netbeans-modules-vcscore.xml -netbeans/system/Modules/org-netbeans-modules-web-core-syntax.xml -netbeans/system/Modules/org-netbeans-modules-web-core.xml -netbeans/system/Modules/org-netbeans-modules-web-debug.xml -netbeans/system/Modules/org-netbeans-modules-web-ie.xml -netbeans/system/Modules/org-netbeans-modules-web-jspparser.xml -netbeans/system/Modules/org-netbeans-modules-web-monitor.xml -netbeans/system/Modules/org-netbeans-modules-web-taglibed.xml -netbeans/system/Modules/org-netbeans-modules-welcome.xml -netbeans/system/Modules/org-netbeans-modules-xml-catalog.xml -netbeans/system/Modules/org-netbeans-modules-xml-core.xml -netbeans/system/Modules/org-netbeans-modules-xml-schema.xml -netbeans/system/Modules/org-netbeans-modules-xml-tax.xml -netbeans/system/Modules/org-netbeans-modules-xml-text.xml -netbeans/system/Modules/org-netbeans-modules-xml-tools.xml -netbeans/system/Modules/org-netbeans-modules-xsl.xml -netbeans/system/Modules/org-netbeans-tasklistapi.xml -netbeans/system/Modules/org-openide-compiler.xml -netbeans/system/Modules/org-openide-debugger.xml -netbeans/system/Modules/org-openide-deprecated.xml -netbeans/system/Modules/org-openide-execution.xml -netbeans/system/Modules/org-openide-io.xml -netbeans/system/Modules/org-openide-src.xml -netbeans/system/Modules/org-openidex-util.xml -netbeans/system/ParserDB/JUnit-3.8.1.jcb -netbeans/system/ParserDB/JUnit-3.8.1.jcs -netbeans/system/ParserDB/jdk14.jcb -netbeans/system/ParserDB/jdk14.jcs -netbeans/system/ParserDB/jsp20.jcb -netbeans/system/ParserDB/jsp20.jcs -netbeans/system/ParserDB/servlet24.jcb -netbeans/system/ParserDB/servlet24.jcs -netbeans/system/ParserDB/xml-apis.jcb -netbeans/system/ParserDB/xml-apis.jcs -netbeans/update_tracking/org-apache-tools-ant-module.xml -netbeans/update_tracking/org-netbeans-api-java.xml -netbeans/update_tracking/org-netbeans-api-web-dd.xml -netbeans/update_tracking/org-netbeans-api-xml.xml -netbeans/update_tracking/org-netbeans-core-compiler.xml -netbeans/update_tracking/org-netbeans-core-deprecated.xml -netbeans/update_tracking/org-netbeans-core-execution.xml -netbeans/update_tracking/org-netbeans-core-ide.xml -netbeans/update_tracking/org-netbeans-core-output.xml -netbeans/update_tracking/org-netbeans-core-ui.xml -netbeans/update_tracking/org-netbeans-core-windows.xml -netbeans/update_tracking/org-netbeans-core.xml -netbeans/update_tracking/org-netbeans-lib-cvsclient.xml -netbeans/update_tracking/org-netbeans-lib-terminalemulator.xml -netbeans/update_tracking/org-netbeans-libs-j2eeeditor.xml -netbeans/update_tracking/org-netbeans-libs-jaxp.xml -netbeans/update_tracking/org-netbeans-libs-regexp.xml -netbeans/update_tracking/org-netbeans-libs-xalan.xml -netbeans/update_tracking/org-netbeans-libs-xerces.xml -netbeans/update_tracking/org-netbeans-modules-applet.xml -netbeans/update_tracking/org-netbeans-modules-autoupdate.xml -netbeans/update_tracking/org-netbeans-modules-beans.xml -netbeans/update_tracking/org-netbeans-modules-classfile.xml -netbeans/update_tracking/org-netbeans-modules-clazz.xml -netbeans/update_tracking/org-netbeans-modules-css.xml -netbeans/update_tracking/org-netbeans-modules-cvsclient.xml -netbeans/update_tracking/org-netbeans-modules-db.xml -netbeans/update_tracking/org-netbeans-modules-debugger-core.xml -netbeans/update_tracking/org-netbeans-modules-debugger-jpda.xml -netbeans/update_tracking/org-netbeans-modules-diff.xml -netbeans/update_tracking/org-netbeans-modules-editor.xml -netbeans/update_tracking/org-netbeans-modules-extbrowser.xml -netbeans/update_tracking/org-netbeans-modules-form.xml -netbeans/update_tracking/org-netbeans-modules-group.xml -netbeans/update_tracking/org-netbeans-modules-html.xml -netbeans/update_tracking/org-netbeans-modules-httpserver.xml -netbeans/update_tracking/org-netbeans-modules-i18n.xml -netbeans/update_tracking/org-netbeans-modules-image.xml -netbeans/update_tracking/org-netbeans-modules-j2eeapis.xml -netbeans/update_tracking/org-netbeans-modules-j2eeserver.xml -netbeans/update_tracking/org-netbeans-modules-jarpackager.xml -netbeans/update_tracking/org-netbeans-modules-java.xml -netbeans/update_tracking/org-netbeans-modules-javadoc.xml -netbeans/update_tracking/org-netbeans-modules-javahelp.xml -netbeans/update_tracking/org-netbeans-modules-junit.xml -netbeans/update_tracking/org-netbeans-modules-projects.xml -netbeans/update_tracking/org-netbeans-modules-properties.xml -netbeans/update_tracking/org-netbeans-modules-servletapi.xml -netbeans/update_tracking/org-netbeans-modules-servletapi23.xml -netbeans/update_tracking/org-netbeans-modules-servletapi24.xml -netbeans/update_tracking/org-netbeans-modules-settings.xml -netbeans/update_tracking/org-netbeans-modules-suggestions_framework.xml -netbeans/update_tracking/org-netbeans-modules-tasklist-core.xml -netbeans/update_tracking/org-netbeans-modules-tasklist-docscan.xml -netbeans/update_tracking/org-netbeans-modules-text.xml -netbeans/update_tracking/org-netbeans-modules-tomcat5-bundled.xml -netbeans/update_tracking/org-netbeans-modules-tomcat5.xml -netbeans/update_tracking/org-netbeans-modules-updatecenters.xml -netbeans/update_tracking/org-netbeans-modules-usersguide.xml -netbeans/update_tracking/org-netbeans-modules-utilities.xml -netbeans/update_tracking/org-netbeans-modules-vcs-advanced.xml -netbeans/update_tracking/org-netbeans-modules-vcs-cmdline-compat.xml -netbeans/update_tracking/org-netbeans-modules-vcs-profiles-cvsprofiles.xml -netbeans/update_tracking/org-netbeans-modules-vcs-profiles-pvcs.xml -netbeans/update_tracking/org-netbeans-modules-vcs-profiles-vss.xml -netbeans/update_tracking/org-netbeans-modules-vcscore.xml -netbeans/update_tracking/org-netbeans-modules-web-core-syntax.xml -netbeans/update_tracking/org-netbeans-modules-web-core.xml -netbeans/update_tracking/org-netbeans-modules-web-debug.xml -netbeans/update_tracking/org-netbeans-modules-web-ie.xml -netbeans/update_tracking/org-netbeans-modules-web-jspparser.xml -netbeans/update_tracking/org-netbeans-modules-web-monitor.xml -netbeans/update_tracking/org-netbeans-modules-web-taglibed.xml -netbeans/update_tracking/org-netbeans-modules-welcome.xml -netbeans/update_tracking/org-netbeans-modules-xml-catalog.xml -netbeans/update_tracking/org-netbeans-modules-xml-core.xml -netbeans/update_tracking/org-netbeans-modules-xml-schema.xml -netbeans/update_tracking/org-netbeans-modules-xml-tax.xml -netbeans/update_tracking/org-netbeans-modules-xml-text.xml -netbeans/update_tracking/org-netbeans-modules-xml-tools.xml -netbeans/update_tracking/org-netbeans-modules-xsl.xml -netbeans/update_tracking/org-netbeans-tasklistapi.xml -netbeans/update_tracking/org-openide-compiler.xml -netbeans/update_tracking/org-openide-debugger.xml -netbeans/update_tracking/org-openide-deprecated.xml -netbeans/update_tracking/org-openide-execution.xml -netbeans/update_tracking/org-openide-io.xml -netbeans/update_tracking/org-openide-loaders.xml -netbeans/update_tracking/org-openide-src.xml -netbeans/update_tracking/org-openidex-util.xml +netbeans/README.html +netbeans/CREDITS.html -@dirrm netbeans/update_tracking -@dirrm netbeans/system/ParserDB -@dirrm netbeans/system/Modules -@dirrm netbeans/system/ModuleAutoDeps -@dirrm netbeans/system -@dirrm netbeans/sources/org/netbeans/lib/awtextra -@dirrm netbeans/sources/org/netbeans/lib -@dirrm netbeans/sources/org/netbeans/examples/lib/timerbean -@dirrm netbeans/sources/org/netbeans/examples/lib -@dirrm netbeans/sources/org/netbeans/examples -@dirrm netbeans/sources/org/netbeans -@dirrm netbeans/sources/org -@dirrm netbeans/sources -@dirrm netbeans/modules/ext -@dirrm netbeans/modules/eager -@dirrm netbeans/modules/docs -@dirrm netbeans/modules/bin -@dirrm netbeans/modules/autoload/ext -@dirrm netbeans/modules/autoload/docs -@dirrm netbeans/modules/autoload -@dirrm netbeans/modules -@dirrm netbeans/lib/patches -@dirrm netbeans/lib/ext -@dirrm netbeans/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/work -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/webdav/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/webdav -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/printer -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/images -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config/printer -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/config -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/startup -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/requestProcess -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture/printer -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/architecture -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web/images -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/web -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/src/mypackage -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/src -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample/docs -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/sample -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev/printer -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/appdev -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/tomcat-docs -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/images -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/util -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/listeners -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/filters -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes/compressionFilters -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF/classes -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/servlets-examples -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/xml -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/tagplugin -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/snp -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/simpletag -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/sessions -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/security/protected -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/security -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin/applet -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/plugin -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/num -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsptoserv -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/tagfiles -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/simpletag -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/misc -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspx -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/jspattribute -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2/el -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/jsp2 -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/include -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/images -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/forward -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/error -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/dates -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/colors -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/checkbox -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/cal -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/tags -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp2 -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp/applet -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/jsp -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/validators -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/util -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/sessions -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/xml -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tagplugin -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tag/web -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/tag -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/snp -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/simpletag -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/sessions -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/security/protected_ -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/security -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/plugin -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/num -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsptoserv -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/tagfiles -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/simpletag -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/misc -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspx -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/jspattribute -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/el -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2 -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/include -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/forward -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/error -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/dates -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/colors -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/checkbox -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/cal -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache/jsp -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org/apache -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/org -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/num -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/listeners -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/simpletag -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples/el -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2/examples -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/jsp2 -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/filters -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/examples -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/error -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/dates -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/compressionFilters -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/colors -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/checkbox -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes/cal -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF/classes -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/jsp-examples -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/balancer/images -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/balancer/WEB-INF/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/balancer/WEB-INF/config -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/balancer/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/balancer -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/classes/org/apache/jsp -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/classes/org/apache -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/classes/org -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/classes -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps/ROOT -@dirrm netbeans/jakarta-tomcat-5.0.19/webapps -@dirrm netbeans/jakarta-tomcat-5.0.19/temp -@dirrm netbeans/jakarta-tomcat-5.0.19/shared/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/shared/classes -@dirrm netbeans/jakarta-tomcat-5.0.19/shared -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/images -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/WEB-INF/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/manager/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/manager -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/valve -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/users -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/service -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/server -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/resources -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/realm -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/logger -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/images -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/host -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/defaultcontext -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/context -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/connector -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin/WEB-INF -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps/admin -@dirrm netbeans/jakarta-tomcat-5.0.19/server/webapps -@dirrm netbeans/jakarta-tomcat-5.0.19/server/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/server/classes -@dirrm netbeans/jakarta-tomcat-5.0.19/server -@dirrm netbeans/jakarta-tomcat-5.0.19/logs -@dirrm netbeans/jakarta-tomcat-5.0.19/conf/Catalina/localhost -@dirrm netbeans/jakarta-tomcat-5.0.19/conf/Catalina -@dirrm netbeans/jakarta-tomcat-5.0.19/conf -@dirrm netbeans/jakarta-tomcat-5.0.19/common/lib -@dirrm netbeans/jakarta-tomcat-5.0.19/common/endorsed -@dirrm netbeans/jakarta-tomcat-5.0.19/common/classes -@dirrm netbeans/jakarta-tomcat-5.0.19/common -@dirrm netbeans/jakarta-tomcat-5.0.19/bin -@dirrm netbeans/jakarta-tomcat-5.0.19 -@dirrm netbeans/docs/org/netbeans/modules/usersguide -@dirrm netbeans/docs/org/netbeans/modules -@dirrm netbeans/docs/org/netbeans -@dirrm netbeans/docs/org -@dirrm netbeans/docs -@dirrm netbeans/bin/icons +@dirrm netbeans/platform4/update_tracking +@dirrm netbeans/platform4/modules/ext +@dirrm netbeans/platform4/modules +@dirrm netbeans/platform4/lib +@dirrm netbeans/platform4/core +@dirrm netbeans/platform4/config/Modules +@dirrm netbeans/platform4/config/ModuleAutoDeps +@dirrm netbeans/platform4/config +@dirrm netbeans/platform4 +@dirrm netbeans/nb4.0/update_tracking +@dirrm netbeans/nb4.0/modules/locale +@dirrm netbeans/nb4.0/modules/eager +@dirrm netbeans/nb4.0/modules +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/work +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/webdav/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/webdav +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/printer +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/images +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config/printer +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/config +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/startup +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/requestProcess +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture/printer +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/architecture +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web/images +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/web +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/src/mypackage +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/src +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample/docs +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/sample +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev/printer +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/appdev +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/tomcat-docs +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/images +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/WEB-INF/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/WEB-INF/config +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/balancer +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/classes/org/apache/jsp +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/classes/org/apache +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/classes/org +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF/classes +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps/ROOT +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/webapps +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/temp +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/shared/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/shared/classes +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/shared +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/images +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/WEB-INF/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/manager +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/valve +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/users +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/service +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/server +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/resources +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/realm +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/logger +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/images +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/host +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/defaultcontext +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/context +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/connector +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin/WEB-INF +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps/admin +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/webapps +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server/classes +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/server +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/logs +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/Catalina/localhost +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/conf/Catalina +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/conf +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/common/lib +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/common/endorsed +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/common/classes +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/common +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28/bin +@dirrm netbeans/nb4.0/jakarta-tomcat-5.0.28 +@dirrm netbeans/nb4.0/docs +@dirrm netbeans/nb4.0/core/locale +@dirrm netbeans/nb4.0/core +@dirrm netbeans/nb4.0/config/Modules +@dirrm netbeans/nb4.0/config +@dirrm netbeans/nb4.0 +@dirrm netbeans/ide4/update_tracking +@dirrm netbeans/ide4/sources/org/netbeans/lib/awtextra +@dirrm netbeans/ide4/sources/org/netbeans/lib +@dirrm netbeans/ide4/sources/org/netbeans +@dirrm netbeans/ide4/sources/org +@dirrm netbeans/ide4/sources +@dirrm netbeans/ide4/modules/lib +@dirrm netbeans/ide4/modules/ext +@dirrm netbeans/ide4/modules/eager +@dirrm netbeans/ide4/modules/docs +@dirrm netbeans/ide4/modules/autoload/ext +@dirrm netbeans/ide4/modules/autoload +@dirrm netbeans/ide4/modules +@dirrm netbeans/ide4/docs/org/netbeans/modules/usersguide +@dirrm netbeans/ide4/docs/org/netbeans/modules +@dirrm netbeans/ide4/docs/org/netbeans +@dirrm netbeans/ide4/docs/org +@dirrm netbeans/ide4/docs +@dirrm netbeans/ide4/core +@dirrm netbeans/ide4/config/TagLibraries/JSTL11 +@dirrm netbeans/ide4/config/TagLibraries +@dirrm netbeans/ide4/config/Modules +@dirrm netbeans/ide4/config/ModuleAutoDeps +@dirrm netbeans/ide4/config +@dirrm netbeans/ide4/ant/sources/org/netbeans/modules/web/project/ant +@dirrm netbeans/ide4/ant/sources/org/netbeans/modules/web/project +@dirrm netbeans/ide4/ant/sources/org/netbeans/modules/web +@dirrm netbeans/ide4/ant/sources/org/netbeans/modules +@dirrm netbeans/ide4/ant/sources/org/netbeans +@dirrm netbeans/ide4/ant/sources/org +@dirrm netbeans/ide4/ant/sources +@dirrm netbeans/ide4/ant/nblib +@dirrm netbeans/ide4/ant/lib +@dirrm netbeans/ide4/ant/extra +@dirrm netbeans/ide4/ant/etc/checkstyle +@dirrm netbeans/ide4/ant/etc +@dirrm netbeans/ide4/ant/bin +@dirrm netbeans/ide4/ant +@dirrm netbeans/ide4 +@dirrm netbeans/etc +@dirrm netbeans/doc @dirrm netbeans/bin -@dirrm netbeans/beans -@dirrm netbeans/ant/nblib -@dirrm netbeans/ant/lib -@dirrm netbeans/ant @dirrm netbeans -@exec /bin/ln -sf %%PREFIX%%/netbeans/bin/runide.sh %%PREFIX%%/bin/netbeans +@exec /bin/ln -sf %%PREFIX%%/netbeans/bin/netbeans %%PREFIX%%/bin/netbeans @unexec /bin/rm -f %%PREFIX%%/bin/netbeans --- netbeans.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 17:50:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7782816A4CF for ; Thu, 16 Dec 2004 17:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A6E243D4C for ; Thu, 16 Dec 2004 17:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGHoLM7057763 for ; Thu, 16 Dec 2004 17:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGHoL5m057762; Thu, 16 Dec 2004 17:50:21 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 17:50:21 GMT Resent-Message-Id: <200412161750.iBGHoL5m057762@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, "Filippo Natali" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59F0A16A4CE for ; Thu, 16 Dec 2004 17:42:07 +0000 (GMT) Received: from w1001.widhost.net (w1001.widhost.net [209.235.192.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id E736843D46 for ; Thu, 16 Dec 2004 17:42:06 +0000 (GMT) (envelope-from filippo@widestore.net) Received: from mx0.hq.widestore.net (mx0.hq.widestore.net [212.97.46.42]) by w1001.widhost.net (Postfix) with ESMTP id 133FC218CC for ; Thu, 16 Dec 2004 12:42:06 -0500 (EST) Received: from cagnina.hq.widestore.net (cagnina.hq.widestore.net [192.168.1.1]) by mx0.hq.widestore.net (Postfix) with ESMTP id 6A38058 for ; Thu, 16 Dec 2004 18:41:46 +0100 (CET) Message-Id: <1103218906.0@cagnina.hq.widestore.net> Date: Thu, 16 Dec 2004 18:41:46 +0100 From: "Filippo Natali" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/75163: [MAINTAINER UPDATE] multimedia/xmms-skins: update distinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 17:50:21 -0000 >Number: 75163 >Category: ports >Synopsis: [MAINTAINER UPDATE] multimedia/xmms-skins: update distinfo >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 Dec 16 17:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Filippo Natali >Release: FreeBSD 5.3-STABLE i386 >Organization: Widestore srl >Environment: System: FreeBSD 5.3-STABLE #0: Tue Dec 14 11:08:37 CET 2004 filippo@cagnina.hq.widestore.net:/usr/obj/usr/src/sys/CAGNINA >Description: Update multimedia/xmms-skins distinfo to make files fetchable. Reported by Kris. >How-To-Repeat: >Fix: --- xmms-skins-20041216.diff begins here --- diff -Nru /usr/ports/multimedia/xmms-skins/distinfo xmms-skins/distinfo --- /usr/ports/multimedia/xmms-skins/distinfo Wed Dec 15 03:44:06 2004 +++ xmms-skins/distinfo Thu Dec 16 18:21:33 2004 @@ -104,8 +104,8 @@ SIZE (XawMMS.zip) = 12891 MD5 (arctic_Xmms.zip) = 2eef6028cb492eb6c61e3d4833f050d1 SIZE (arctic_Xmms.zip) = 158027 -MD5 (blackstar.zip) = 81d6331ac0793a2fcef3f9f63206e69d -SIZE (blackstar.zip) = 9216 +MD5 (blackstar.zip) = 4140e5eba2bc39b0ecc51b7fb278bb55 +SIZE (blackstar.zip) = 162113 MD5 (blueHeart-xmms-20.zip) = 09d143d39f10fd64ad3a0c04ee59305e SIZE (blueHeart-xmms-20.zip) = 173450 MD5 (blueHeart_Xmms.zip) = 51ac94d86d3f4a6e6946a4737d24571c --- xmms-skins-20041216.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 17:56:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47FB216A4CE; Thu, 16 Dec 2004 17:56:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29F2043D2D; Thu, 16 Dec 2004 17:56:36 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from freefall.freebsd.org (olgeni@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGHua4o057988; Thu, 16 Dec 2004 17:56:36 GMT (envelope-from olgeni@freefall.freebsd.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGHuaKq057984; Thu, 16 Dec 2004 17:56:36 GMT (envelope-from olgeni) Date: Thu, 16 Dec 2004 17:56:36 GMT From: Jimmy Olgeni Message-Id: <200412161756.iBGHuaKq057984@freefall.freebsd.org> To: olgeni@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org Subject: Re: ports/75162: Update java/netbeans to 4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 17:56:36 -0000 Synopsis: Update java/netbeans to 4.0 Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: olgeni Responsible-Changed-When: Thu Dec 16 17:55:35 GMT 2004 Responsible-Changed-Why: Pending repocopy from ports/74574. http://www.freebsd.org/cgi/query-pr.cgi?pr=75162 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 18:00:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19E6516A4CE for ; Thu, 16 Dec 2004 18:00:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D735A43D45 for ; Thu, 16 Dec 2004 18:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGI0eGQ058091 for ; Thu, 16 Dec 2004 18:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGI0eTX058086; Thu, 16 Dec 2004 18:00:40 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 18:00:40 GMT Resent-Message-Id: <200412161800.iBGI0eTX058086@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 Novitsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 946C616A4CE for ; Thu, 16 Dec 2004 17:51:04 +0000 (GMT) Received: from mail.icc-vvd.ru (mail.icc-vvd.ru [62.141.104.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CFD643D31 for ; Thu, 16 Dec 2004 17:51:03 +0000 (GMT) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: from server.v42of.icc-vvd.ru (localhost.icc-vvd.ru [127.0.0.1]) by mail.icc-vvd.ru (8.12.10/8.12.9) with ESMTP id iBGHp1dQ071315; Thu, 16 Dec 2004 20:51:01 +0300 (MSK) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: (from root@localhost) by server.v42of.icc-vvd.ru (8.12.10/8.12.9/Submit) id iBGHp1d6071310; Thu, 16 Dec 2004 20:51:01 +0300 (MSK) Message-Id: <200412161751.iBGHp1d6071310@server.v42of.icc-vvd.ru> Date: Thu, 16 Dec 2004 20:51:01 +0300 (MSK) From: Alexander Novitsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: alecn2002@yandex.ru Subject: ports/75164: [MAINTAINER-UPDATE] devel/ruby18-freebase: update to 0.9.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 18:00:41 -0000 >Number: 75164 >Category: ports >Synopsis: [MAINTAINER-UPDATE] devel/ruby18-freebase: update to 0.9.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: Thu Dec 16 18:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Novitsky >Release: FreeBSD 5.2-RELEASE i386 >Organization: Inzhcomcentre VVD >Environment: System: FreeBSD server.v42of.icc-vvd.ru 5.2-RELEASE FreeBSD 5.2-RELEASE #2: Mon Jul 12 21:45:44 MSD 2004 >Description: - Update to 0.9.2 Port maintainer (alecn2002@yandex.ru) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- ruby18-freebase-0.9.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/freebase.orig/Makefile /usr/ports/devel/freebase/Makefile --- /usr/ports/devel/freebase.orig/Makefile Thu Dec 16 16:13:34 2004 +++ /usr/ports/devel/freebase/Makefile Thu Dec 16 20:43:06 2004 @@ -6,9 +6,9 @@ # PORTNAME= freebase -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.2 CATEGORIES= devel ruby -MASTER_SITES= http://rubyforge.org/frs/download.php/2030/ +MASTER_SITES= http://rubyforge.org/frs/download.php/2185/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= freeride-${PORTVERSION} DIST_SUBDIR= ruby diff -ruN --exclude=CVS /usr/ports/devel/freebase.orig/distinfo /usr/ports/devel/freebase/distinfo --- /usr/ports/devel/freebase.orig/distinfo Thu Dec 16 16:13:34 2004 +++ /usr/ports/devel/freebase/distinfo Thu Dec 16 20:28:58 2004 @@ -1,2 +1,2 @@ -MD5 (ruby/freeride-0.9.0.tar.gz) = b2e281fd846ef5d5056ece5d8b294862 -SIZE (ruby/freeride-0.9.0.tar.gz) = 547185 +MD5 (ruby/freeride-0.9.2.tar.gz) = 04a9802f712074085349eac6d0d1483d +SIZE (ruby/freeride-0.9.2.tar.gz) = 496043 diff -ruN --exclude=CVS /usr/ports/devel/freebase.orig/files/patch-freebase:bin:install.rb /usr/ports/devel/freebase/files/patch-freebase:bin:install.rb --- /usr/ports/devel/freebase.orig/files/patch-freebase:bin:install.rb Thu Dec 16 16:13:34 2004 +++ /usr/ports/devel/freebase/files/patch-freebase:bin:install.rb Thu Dec 16 20:42:42 2004 @@ -1,15 +1,19 @@ ---- bin/install.rb.orig Tue Aug 24 18:05:55 2004 -+++ bin/install.rb Tue Aug 24 18:22:07 2004 -@@ -10,12 +10,7 @@ +--- bin/install.rb.orig Mon Mar 24 07:10:57 2003 ++++ bin/install.rb Thu Dec 16 20:42:15 2004 +@@ -8,14 +8,9 @@ + + $srcdir = CONFIG["srcdir"] $version = CONFIG["MAJOR"]+"."+CONFIG["MINOR"] - $libdir = File.join(CONFIG["libdir"], "ruby", $version) - $archdir = File.join($libdir, CONFIG["arch"]) +-$libdir = File.join(CONFIG["libdir"], "ruby", $version) +-$archdir = File.join($libdir, CONFIG["arch"]) -$site_libdir = $:.find {|x| x =~ /site_ruby$/} -if !$site_libdir - $site_libdir = File.join($libdir, "site_ruby") -elsif $site_libdir !~ Regexp.quote($version) - $site_libdir = File.join($site_libdir, $version) -end ++$libdir = CONFIG["rubylibdir"] ++$archdir = CONFIG["archdir"] +$site_libdir = CONFIG["sitelibdir"] def install_rb(srcdir = nil) --- ruby18-freebase-0.9.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 19:40:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC00416A4CE for ; Thu, 16 Dec 2004 19:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A01743D55 for ; Thu, 16 Dec 2004 19:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGJeN7I073037 for ; Thu, 16 Dec 2004 19:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGJeNSE073036; Thu, 16 Dec 2004 19:40:23 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 19:40:23 GMT Resent-Message-Id: <200412161940.iBGJeNSE073036@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92CCB16A4CE for ; Thu, 16 Dec 2004 19:36:59 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AF3843D31 for ; Thu, 16 Dec 2004 19:36:58 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBGJatZO096008 for ; Thu, 16 Dec 2004 17:36:56 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBGJasP0096007; Thu, 16 Dec 2004 17:36:54 -0200 (BRST) Message-Id: <200412161936.iBGJasP0096007@digitalsign.com> Date: Thu, 16 Dec 2004 17:36:54 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75166: Update port: devel/pear-PEAR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 19:40:23 -0000 >Number: 75166 >Category: ports >Synopsis: Update port: devel/pear-PEAR >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 Dec 16 19:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: + make PHP extension runtime dependencies enforced by the USE_PHP=ext knob, not by the pear install. >How-To-Repeat: >Fix: diff -ruN pear-PEAR.orig/Makefile pear-PEAR/Makefile --- pear-PEAR.orig/Makefile Thu Dec 16 17:23:23 2004 +++ pear-PEAR/Makefile Thu Dec 16 17:24:46 2004 @@ -7,7 +7,7 @@ PORTNAME= PEAR PORTVERSION= 1.3.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel www pear MAINTAINER= antonio@php.net diff -ruN pear-PEAR.orig/files/patch-scripts::pearcmd.php pear-PEAR/files/patch-scripts::pearcmd.php --- pear-PEAR.orig/files/patch-scripts::pearcmd.php Thu Dec 16 17:23:23 2004 +++ pear-PEAR/files/patch-scripts::pearcmd.php Thu Dec 16 17:30:55 2004 @@ -1,20 +1,17 @@ --- scripts/pearcmd.php.orig Wed Oct 27 02:58:21 2004 -+++ scripts/pearcmd.php Tue Dec 14 14:56:46 2004 ++++ scripts/pearcmd.php Thu Dec 16 17:30:19 2004 @@ -1,3 +1,4 @@ -+#!@php_bin@ -q -dsafe_mode=0 -doutput_buffering=1 ++#!@php_bin@ -n -q -dsafe_mode=0 -doutput_buffering=1 Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 20:10:49 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D7B616A4CF; Thu, 16 Dec 2004 20:10:49 +0000 (GMT) Received: from fed1rmmtao04.cox.net (fed1rmmtao04.cox.net [68.230.241.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B6F643D45; Thu, 16 Dec 2004 20:10:49 +0000 (GMT) (envelope-from xcas@cox.net) Received: from [192.168.1.104] (really [68.2.128.106]) by fed1rmmtao04.cox.net (InterMail vM.6.01.04.00 201-2131-117-20041022) with ESMTP id <20041216201047.SCEV23615.fed1rmmtao04.cox.net@[192.168.1.104]>; Thu, 16 Dec 2004 15:10:47 -0500 Message-ID: <41C1EBCE.20205@cox.net> Date: Thu, 16 Dec 2004 13:10:54 -0700 From: "Greg J." User-Agent: Mozilla Thunderbird 1.0 (X11/20041211) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <200412161032.iBGAWu9m004327@freefall.freebsd.org> In-Reply-To: <200412161032.iBGAWu9m004327@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/71557: [PATCH] x11-wm/pekwm: Update to 20040828 CVS snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 20:10:49 -0000 Volker Stolz wrote: > Synopsis: [PATCH] x11-wm/pekwm: Update to 20040828 CVS snapshot > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Thu Dec 16 10:31:37 GMT 2004 > State-Changed-Why: > Do you mind if we keep the patch instead of the reinplace? > Patches fail more loudly in case this changes in the future > while reinplace will silently do nothing. Otherwise, this > looks good. > > > Responsible-Changed-From-To: freebsd-ports-bugs->vs > Responsible-Changed-By: vs > Responsible-Changed-When: Thu Dec 16 10:31:37 GMT 2004 > Responsible-Changed-Why: > I'll track this > > http://www.freebsd.org/cgi/query-pr.cgi?pr=71557 > Sure.. keeping the patch would work. Thanks. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 20:30:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B040F16A4CE for ; Thu, 16 Dec 2004 20:30:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6E9643D1D for ; Thu, 16 Dec 2004 20:30:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGKUX64079084 for ; Thu, 16 Dec 2004 20:30:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGKUXj2079082; Thu, 16 Dec 2004 20:30:33 GMT (envelope-from gnats) Date: Thu, 16 Dec 2004 20:30:33 GMT Message-Id: <200412162030.iBGKUXj2079082@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thierry Thomas Subject: Re: ports/75166: Update port: devel/pear-PEAR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thierry Thomas List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 20:30:33 -0000 The following reply was made to PR ports/75166; it has been noted by GNATS. From: Thierry Thomas To: Antonio Carlos Venancio Junior Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/75166: Update port: devel/pear-PEAR Date: Thu, 16 Dec 2004 21:26:03 +0100 Le Jeu 16 déc 04 à 20:36:54 +0100, Antonio Carlos Venancio Junior écrivait : > > >Number: 75166 > >Category: ports > >Synopsis: Update port: devel/pear-PEAR > >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 Dec 16 19:40:23 GMT 2004 > >Closed-Date: > >Last-Modified: > >Originator: Antônio Carlos Venâncio Júnior > >Release: FreeBSD 4.10-STABLE i386 > >Organization: > >Environment: > System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 > >Description: > + make PHP extension runtime dependencies enforced by the USE_PHP=ext knob, not by the pear install. Thanks, but don't forget to chase this update in misc/pear-Text_Figlet. Regards, -- Th. Thomas. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 20:50:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9F0816A4CF for ; Thu, 16 Dec 2004 20:50:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FAAA43D31 for ; Thu, 16 Dec 2004 20:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGKoV88080805 for ; Thu, 16 Dec 2004 20:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGKoV1k080804; Thu, 16 Dec 2004 20:50:31 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 20:50:31 GMT Resent-Message-Id: <200412162050.iBGKoV1k080804@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, Joerg Pulz Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3E6416A4CE for ; Thu, 16 Dec 2004 20:42:44 +0000 (GMT) Received: from mailhost.frm2.tum.de (mailhost.frm2.tum.de [129.187.179.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 621D543D2D for ; Thu, 16 Dec 2004 20:42:41 +0000 (GMT) (envelope-from Joerg.Pulz@frm2.tum.de) Received: from localhost (mailhost.frm2.tum.de [129.187.179.12]) iBGKge6c063531; Thu, 16 Dec 2004 21:42:40 +0100 (CET) (envelope-from jpulz@frm2.tum.de) Received: from hades.admin.frm2 (hades.admin.frm2 [172.25.1.10]) by mailhost.frm2.tum.de (8.12.10/8.12.10) with ESMTP id iBGKgUVd063523 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 16 Dec 2004 21:42:30 +0100 (CET) (envelope-from jpulz@frm2.tum.de) Received: from hades.admin.frm2 (localhost [127.0.0.1]) by hades.admin.frm2 (8.13.1/8.13.1) with ESMTP id iBGKgUuq097649; Thu, 16 Dec 2004 21:42:30 +0100 (CET) (envelope-from jpulz@frm2.tum.de) Received: (from jpulz@localhost) by hades.admin.frm2 (8.13.1/8.13.1/Submit) id iBGKgUP1097648; Thu, 16 Dec 2004 21:42:30 +0100 (CET) (envelope-from jpulz) Message-Id: <200412162042.iBGKgUP1097648@hades.admin.frm2> Date: Thu, 16 Dec 2004 21:42:30 +0100 (CET) From: Joerg Pulz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Maintainer Subject: ports/75168: [security] update net/samba3 to 3.0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Joerg Pulz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 20:50:31 -0000 >Number: 75168 >Category: ports >Synopsis: [security] update net/samba3 to 3.0.10 >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: Thu Dec 16 20:50:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Joerg Pulz >Release: FreeBSD 5.3-RELEASE-p1 i386 >Organization: TU-Munich / ZWE FRM-II >Environment: System: FreeBSD hades.admin.frm2 5.3-RELEASE-p1 FreeBSD 5.3-RELEASE-p1 #10: Fri Nov 19 18:49:33 CET 2004 jpulz@hades.admin.frm2:/usr/obj/usr/src/sys/HADES i386 >Description: - security update for net/samba3 to 3.0.10 > see: http://us1.samba.org/samba/security/CAN-2004-1154.html Additionally - make SAMBA_CONFDIR user defineable like SAMBA_PRIVATE > therefor set RC_DIR to ${PREFIX}/etc/rc.d instead of ${SAMBA_CONFDIR}/rc.d > small changes to pkg-plist and PLIST_SUB > the samba.sh script is able to handle this without modifications please, please, please don't remove the user defineable SAMBA_CONFDIR stuff. I like it very much and it is running on all my machines this way for several versions now. It is really annoying to change this ever and ever again for every update on every machine. >How-To-Repeat: >Fix: - remove net/samba3/files/patch-script_installswat.sh (this is fixed in 3.0.10) - apply the patch --- samba-3_0_10.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/samba3/Makefile,v retrieving revision 1.131 diff -u -r1.131 Makefile --- Makefile 23 Nov 2004 17:34:51 -0000 1.131 +++ Makefile 16 Dec 2004 20:19:33 -0000 @@ -6,7 +6,7 @@ # PORTNAME= samba -PORTVERSION= 3.0.9 +PORTVERSION= 3.0.10 PORTREVISION?= 0 PORTEPOCH?= 1 CATEGORIES?= net @@ -33,10 +33,10 @@ SAMBA_RUNDIR= ${VARDIR}/run SAMBA_LOCKDIR?= ${VARDIR}/db/samba SAMBA_PRIVATE?= ${PREFIX}/private -SAMBA_CONFDIR= ${PREFIX}/etc +SAMBA_CONFDIR?= ${PREFIX}/etc SAMBA_SWATDIR= ${PREFIX}/share/swat SAMBA_LIBDIR= ${PREFIX}/lib -RC_DIR= ${SAMBA_CONFDIR}/rc.d +RC_DIR= ${PREFIX}/etc/rc.d SAMBA_CONFIG= ${SAMBA_CONFDIR}/smb.conf CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ @@ -259,7 +259,8 @@ PLIST_SUB+= RC_DIR=${RC_DIR} \ SAMBA_LOGDIR=${SAMBA_LOGDIR} \ - SAMBA_LOCKDIR=${SAMBA_LOCKDIR} + SAMBA_LOCKDIR=${SAMBA_LOCKDIR} \ + SAMBA_CONFIG=${SAMBA_CONFIG} RC_SCRIPTS_SUB= PREFIX=${PREFIX} \ CUPS=${CUPS} \ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/samba3/distinfo,v retrieving revision 1.60 diff -u -r1.60 distinfo --- distinfo 23 Nov 2004 17:34:51 -0000 1.60 +++ distinfo 16 Dec 2004 20:19:33 -0000 @@ -1,2 +1,2 @@ -MD5 (samba-3.0.9.tar.gz) = 9cf2bcef71509a81687dec8732545400 -SIZE (samba-3.0.9.tar.gz) = 15172821 +MD5 (samba-3.0.10.tar.gz) = b19fd86d3c11a1b43f75a5988cd9ceeb +SIZE (samba-3.0.10.tar.gz) = 15176926 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/samba3/pkg-plist,v retrieving revision 1.57 diff -u -r1.57 pkg-plist --- pkg-plist 23 Nov 2004 17:34:51 -0000 1.57 +++ pkg-plist 16 Dec 2004 20:19:33 -0000 @@ -23,8 +23,8 @@ %%WINBIND%%bin/wbinfo @unexec %D/etc/rc.d/samba.sh forcestop 2>/dev/null || true etc/rc.d/samba.sh -@unexec if cmp -s %D/etc/smb.conf %D/etc/smb.conf.default; then rm -f %D/etc/smb.conf; fi -etc/smb.conf.default +@unexec if cmp -s %%SAMBA_CONFIG%% %%SAMBA_CONFIG%%.default; then rm -f %%SAMBA_CONFIG%%; fi +@unexec rm -f %%SAMBA_CONFIG%%.default 2>/dev/null || true sbin/smbd sbin/nmbd sbin/swat @@ -434,6 +434,7 @@ share/swat/help/nmbd.8.html share/swat/help/nmblookup.1.html share/swat/help/ntlm_auth.1.html +share/swat/help/pam_winbind.8.html share/swat/help/pdbedit.8.html share/swat/help/profiles.1.html share/swat/help/rpcclient.1.html Index: files/patch-lib_util_str.c =================================================================== RCS file: /home/ncvs/ports/net/samba3/files/patch-lib_util_str.c,v retrieving revision 1.1 diff -u -r1.1 patch-lib_util_str.c --- files/patch-lib_util_str.c 18 May 2004 14:52:47 -0000 1.1 +++ files/patch-lib_util_str.c 16 Dec 2004 20:19:33 -0000 @@ -1,23 +1,23 @@ ---- lib/util_str.c.orig Tue Apr 20 22:42:55 2004 -+++ lib/util_str.c Fri May 14 02:02:30 2004 -@@ -1980,10 +1980,16 @@ +--- lib/util_str.c.orig Thu Dec 16 20:46:53 2004 ++++ lib/util_str.c Thu Dec 16 20:48:54 2004 +@@ -2008,10 +2008,16 @@ { int bits = 0; int char_count = 0; - size_t out_cnt = 0; - size_t len = data.length; - size_t output_len = data.length * 2; -- char *result = malloc(output_len); /* get us plenty of space */ +- char *result = SMB_MALLOC(output_len); /* get us plenty of space */ + size_t out_cnt, len, output_len; + char *result; + -+ if (!data.length || !data.data) ++ if (!data.length || !data.data) + return NULL; + + out_cnt = 0; + len = data.length; + output_len = data.length * 2; -+ result = malloc(output_len); /* get us plenty of space */ ++ result = SMB_MALLOC(output_len); /* get us plenty of space */ while (len-- && out_cnt < (data.length * 2) - 5) { int c = (unsigned char) *(data.data++); --- samba-3_0_10.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 21:12:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 468A616A4CF; Thu, 16 Dec 2004 21:12:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CB9843D31; Thu, 16 Dec 2004 21:12:36 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGLCaIA085711; Thu, 16 Dec 2004 21:12:36 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGLCZ34085707; Thu, 16 Dec 2004 21:12:35 GMT (envelope-from edwin) Date: Thu, 16 Dec 2004 21:12:35 GMT From: Edwin Groothuis Message-Id: <200412162112.iBGLCZ34085707@freefall.freebsd.org> To: filippo@widestore.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75163: [MAINTAINER UPDATE] multimedia/xmms-skins: update distinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 21:12:36 -0000 Synopsis: [MAINTAINER UPDATE] multimedia/xmms-skins: update distinfo State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Thu Dec 16 21:10:50 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75163 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 16 22:30:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7EA916A4CE for ; Thu, 16 Dec 2004 22:30:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A8F843D2D for ; Thu, 16 Dec 2004 22:30:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBGMUWDS092684 for ; Thu, 16 Dec 2004 22:30:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBGMUWBf092679; Thu, 16 Dec 2004 22:30:32 GMT (envelope-from gnats) Resent-Date: Thu, 16 Dec 2004 22:30:32 GMT Resent-Message-Id: <200412162230.iBGMUWBf092679@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46EEF16A4CE for ; Thu, 16 Dec 2004 22:27:02 +0000 (GMT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A8643D41 for ; Thu, 16 Dec 2004 22:27:01 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.240.136] (helo=santinel.home.ua) by mail-kv.alkar.net with esmtp (Exim 4.34 (FreeBSD)) id 1Cf45M-0001mI-G5 for FreeBSD-gnats-submit@freebsd.org; Fri, 17 Dec 2004 00:27:01 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1Cf3md-00035b-5B for ; Fri, 17 Dec 2004 00:07:39 +0200 Message-Id: Date: Fri, 17 Dec 2004 00:07:39 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75169: [MAINTAINER] net/kf: fix build on the 4-stable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 22:30:32 -0000 >Number: 75169 >Category: ports >Synopsis: [MAINTAINER] net/kf: fix build on the 4-stable >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: Thu Dec 16 22:30:32 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: New file: files/patch-src-emoticons.c Fix build on the FreeBSD < 5 >How-To-Repeat: >Fix: --- kf.diff begins here --- diff -ruN /usr/ports/net/kf/files/patch-src-emoticons.c kf/files/patch-src-emoticons.c --- /usr/ports/net/kf/files/patch-src-emoticons.c Thu Jan 1 03:00:00 1970 +++ kf/files/patch-src-emoticons.c Thu Dec 16 22:53:36 2004 @@ -0,0 +1,13 @@ +--- src/emoticons.c.orig Thu Dec 16 22:50:31 2004 ++++ src/emoticons.c Thu Dec 16 22:51:27 2004 +@@ -347,9 +347,9 @@ + gchar *caption; /* Should be enough... */ + + if (kf_preferences_get_int ("chatShowStamps")) { ++ gchar *sstamp; + struct tm *stime; + stime = localtime ((time_t *) &stamp); +- gchar *sstamp; + + gtk_text_buffer_get_end_iter (buffer, &iter); + if (stamp < time (NULL) - 3600 * 24) { --- kf.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 01:00:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5F3D16A4D0 for ; Fri, 17 Dec 2004 01:00:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D06D943D2D for ; Fri, 17 Dec 2004 01:00:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH10ZCw010360 for ; Fri, 17 Dec 2004 01:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH10ZPp010359; Fri, 17 Dec 2004 01:00:35 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 01:00:35 GMT Message-Id: <200412170100.iBH10ZPp010359@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Internet Partners Inc. Support" Subject: Re: ports/40396: New port: Logging daemon for Linksys BEFSR11/41/81 Routers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Internet Partners Inc. Support" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 01:00:36 -0000 The following reply was made to PR ports/40396; it has been noted by GNATS. From: "Internet Partners Inc. Support" To: Cc: Subject: Re: ports/40396: New port: Logging daemon for Linksys BEFSR11/41/81 Routers Date: Thu, 16 Dec 2004 16:58:00 -0800 Looks like the master site for this port, http://www.nexusxi.com/download/ doesen't exist anymore. I have placed the tar archive of this package here: http://www.freebsd-corp-net-guide.com/software/linksyslogd-1.0.tar pending further notification from the author of the software as to whether or not it has a website. Looks also like someone else borrowed the name for their logger: http://www.accelerationstudios.com/site/contents.acc?doc=16 Ted From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 02:20:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B939B16A4CE for ; Fri, 17 Dec 2004 02:20:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 819C343D45 for ; Fri, 17 Dec 2004 02:20:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH2KNtI021883 for ; Fri, 17 Dec 2004 02:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH2KNLP021882; Fri, 17 Dec 2004 02:20:23 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 02:20:23 GMT Resent-Message-Id: <200412170220.iBH2KNLP021882@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, "Adam McLaurin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D8A916A4CE for ; Fri, 17 Dec 2004 02:12:43 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14EAE43D45 for ; Fri, 17 Dec 2004 02:12:42 +0000 (GMT) (envelope-from adam.freebsd@fastmail.fm) Received: from jake (h000f6659d2d2.ne.client2.attbi.com[66.30.207.113]) by comcast.net (rwcrmhc11) with SMTP id <2004121702124101300fupcne>; Fri, 17 Dec 2004 02:12:41 +0000 Message-Id: <1103249561.0@jake> Date: Thu, 16 Dec 2004 21:12:41 -0500 From: "Adam McLaurin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 cc: adam.freebsd@fastmail.fm Subject: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 02:20:23 -0000 >Number: 75173 >Category: ports >Synopsis: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof >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 Dec 17 02:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Adam McLaurin >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD 5.3-STABLE #2: Sun Nov 21 00:42:14 EST 2004 root@jake:/usr/obj/usr/src/sys/ESKI >Description: cgprof generates colored graphs for profiled executables using gcc and gprof. cgprof helps to have a better understanding of program structure and execution. It makes hot spots identification visual and intuitive. It is a shell script using gnu awk, that should run on any Unix like system. WWW: http://mvertes.free.fr/ >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 02:50:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4061816A4CE for ; Fri, 17 Dec 2004 02:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26BDE43D1D for ; Fri, 17 Dec 2004 02:50:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH2oR8k025204 for ; Fri, 17 Dec 2004 02:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH2oRF7025203; Fri, 17 Dec 2004 02:50:27 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 02:50:27 GMT Message-Id: <200412170250.iBH2oRF7025203@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Adam McLaurin Subject: Re: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Adam McLaurin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 02:50:28 -0000 The following reply was made to PR ports/75173; it has been noted by GNATS. From: Adam McLaurin To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof Date: Thu, 16 Dec 2004 21:42:31 -0500 This is a multi-part message in MIME format. --Multipart=_Thu__16_Dec_2004_21_42_31_-0500_rPT+fKWH.4omCvJt Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Forgot to submit cgprof.shar file. See attachment. Also, you may set the MAINTAINER to adam.freebsd@fastmail.fm I don't mind maintaining it. Thanks, Adam McLaurin --Multipart=_Thu__16_Dec_2004_21_42_31_-0500_rPT+fKWH.4omCvJt Content-Type: application/octet-stream; name="cgprof.shar" Content-Disposition: attachment; filename="cgprof.shar" Content-Transfer-Encoding: base64 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJLi9jZ3Byb2YKIwkuL2NncHJv Zi9kaXN0aW5mbwojCS4vY2dwcm9mL3BrZy1kZXNjcgojCS4vY2dwcm9mL01ha2VmaWxlCiMKZWNo byBjIC0gLi9jZ3Byb2YKbWtkaXIgLXAgLi9jZ3Byb2YgPiAvZGV2L251bGwgMj4mMQplY2hvIHgg LSAuL2NncHJvZi9kaXN0aW5mbwpzZWQgJ3MvXlgvLycgPi4vY2dwcm9mL2Rpc3RpbmZvIDw8ICdF TkQtb2YtLi9jZ3Byb2YvZGlzdGluZm8nClhNRDUgKGNncHJvZi0xLjIudGFyLmd6KSA9IGRjZjlm OTEzNjdmYjM0OGY1NmJiODE2ZTA3MzJlNTAwClhTSVpFIChjZ3Byb2YtMS4yLnRhci5neikgPSAx NzQ1OApFTkQtb2YtLi9jZ3Byb2YvZGlzdGluZm8KZWNobyB4IC0gLi9jZ3Byb2YvcGtnLWRlc2Ny CnNlZCAncy9eWC8vJyA+Li9jZ3Byb2YvcGtnLWRlc2NyIDw8ICdFTkQtb2YtLi9jZ3Byb2YvcGtn LWRlc2NyJwpYY2dwcm9mIGdlbmVyYXRlcyBjb2xvcmVkIGdyYXBocyBmb3IgcHJvZmlsZWQgZXhl Y3V0YWJsZXMgdXNpbmcgZ2NjIGFuZCBncHJvZi4gIApYY2dwcm9mIGhlbHBzIHRvIGhhdmUgYSBi ZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiBwcm9ncmFtIHN0cnVjdHVyZSBhbmQgZXhlY3V0aW9uLgpY SXQgbWFrZXMgaG90IHNwb3RzIGlkZW50aWZpY2F0aW9uIHZpc3VhbCBhbmQgaW50dWl0aXZlLgkK WEl0IGlzIGEgc2hlbGwgc2NyaXB0IHVzaW5nIGdudSBhd2ssIHRoYXQgc2hvdWxkIHJ1biBvbiBh bnkgVW5peCBsaWtlIHN5c3RlbS4KWApYV1dXOiBodHRwOi8vbXZlcnRlcy5mcmVlLmZyLwpFTkQt b2YtLi9jZ3Byb2YvcGtnLWRlc2NyCmVjaG8geCAtIC4vY2dwcm9mL01ha2VmaWxlCnNlZCAncy9e WC8vJyA+Li9jZ3Byb2YvTWFrZWZpbGUgPDwgJ0VORC1vZi0uL2NncHJvZi9NYWtlZmlsZScKWCMg TmV3IHBvcnRzIGNvbGxlY3Rpb24gbWFrZWZpbGUgZm9yOiAgIGNncHJvZgpYIyBEYXRlIGNyZWF0 ZWQ6ICAgICAgICAxNiBEZWNlbWJlciAyMDA0ClgjIFdob206ICAgICAgICAgICAgICAgIEFkYW0g TWNMYXVyaW4KWCMKWCMgJEZyZWVCU0Q6IHBvcnRzL2RldmVsL2NncHJvZi9NYWtlZmlsZSAkClgj ClgKWFBPUlROQU1FPSAgICAgIGNncHJvZgpYUE9SVFZFUlNJT049ICAgMS4yClhDQVRFR09SSUVT PSAgICBkZXZlbApYTUFTVEVSX1NJVEVTPSAgaHR0cDovL212ZXJ0ZXMuZnJlZS5mci9kb3dubG9h ZC8KWApYTUFJTlRBSU5FUj0gICAgcG9ydHNAZnJlZWJzZC5vcmcKWENPTU1FTlQ9ICAgICAgICBH ZW5lcmF0ZXMgY29sb3JlZCBncmFwaHMgZm9yIHByb2ZpbGVkIGV4ZWN1dGFibGVzIHVzaW5nIGdj YyBhbmQgZ3Byb2YKWApYQlVJTERfREVQRU5EUz0JZ2F3azoke1BPUlRTRElSfS9sYW5nL2dhd2sK WFJVTl9ERVBFTkRTPQkke0JVSUxEX0RFUEVORFN9ClgKWEFMTF9UQVJHRVQ9CWNncHJvZi4xClhJ TlNUQUxMX1RBUkdFVD0JaW5zdGFsbCBwcmVmaXg9JHtQUkVGSVh9ClgKWE1BTjE9ICAgICAgICAg IGNncHJvZi4xClgKWFBMSVNUX0ZJTEVTPQliaW4vY2dwcm9mClgKWC5pbmNsdWRlIDxic2QucG9y dC5taz4KRU5ELW9mLS4vY2dwcm9mL01ha2VmaWxlCmV4aXQKCg== --Multipart=_Thu__16_Dec_2004_21_42_31_-0500_rPT+fKWH.4omCvJt-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 03:10:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71FAC16A4D4 for ; Fri, 17 Dec 2004 03:10:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87CDB43D1D for ; Fri, 17 Dec 2004 03:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH3ALIf029732 for ; Fri, 17 Dec 2004 03:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH3ALaS029731; Fri, 17 Dec 2004 03:10:21 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 03:10:21 GMT Message-Id: <200412170310.iBH3ALaS029731@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Adam McLaurin Subject: Re: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Adam McLaurin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 03:10:29 -0000 The following reply was made to PR ports/75173; it has been noted by GNATS. From: Adam McLaurin To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof Date: Thu, 16 Dec 2004 22:05:39 -0500 This is a multi-part message in MIME format. --Multipart=_Thu__16_Dec_2004_22_05_39_-0500_q2R4cvgMJ1KS.oVu Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Doesn't appear that file attachments are allowed. The contents of the cgprof.shar are below: Thanks, Adam McLaurin *************************************************************************************** # 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: # # ./cgprof # ./cgprof/distinfo # ./cgprof/pkg-descr # ./cgprof/Makefile # echo c - ./cgprof mkdir -p ./cgprof > /dev/null 2>&1 echo x - ./cgprof/distinfo sed 's/^X//' >./cgprof/distinfo << 'END-of-./cgprof/distinfo' XMD5 (cgprof-1.2.tar.gz) = dcf9f91367fb348f56bb816e0732e500 XSIZE (cgprof-1.2.tar.gz) = 17458 END-of-./cgprof/distinfo echo x - ./cgprof/pkg-descr sed 's/^X//' >./cgprof/pkg-descr << 'END-of-./cgprof/pkg-descr' Xcgprof generates colored graphs for profiled executables using gcc and gprof. Xcgprof helps to have a better understanding of program structure and execution. XIt makes hot spots identification visual and intuitive. XIt is a shell script using gnu awk, that should run on any Unix like system. X XWWW: http://mvertes.free.fr/ END-of-./cgprof/pkg-descr echo x - ./cgprof/Makefile sed 's/^X//' >./cgprof/Makefile << 'END-of-./cgprof/Makefile' X# New ports collection makefile for: cgprof X# Date created: 16 December 2004 X# Whom: Adam McLaurin X# X# $FreeBSD: ports/devel/cgprof/Makefile $ X# X XPORTNAME= cgprof XPORTVERSION= 1.2 XCATEGORIES= devel XMASTER_SITES= http://mvertes.free.fr/download/ X XMAINTAINER= adam.freebsd@fastmail.fm XCOMMENT= Generates colored graphs for profiled executables using gcc and gprof X XBUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk XRUN_DEPENDS= ${BUILD_DEPENDS} X XALL_TARGET= cgprof.1 XINSTALL_TARGET= install prefix=${PREFIX} X XMAN1= cgprof.1 X XPLIST_FILES= bin/cgprof X X.include END-of-./cgprof/Makefile exit *************************************************************************************** --Multipart=_Thu__16_Dec_2004_22_05_39_-0500_q2R4cvgMJ1KS.oVu Content-Type: application/octet-stream; name="cgprof.shar" Content-Disposition: attachment; filename="cgprof.shar" Content-Transfer-Encoding: base64 IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJLi9jZ3Byb2YKIwkuL2NncHJv Zi9kaXN0aW5mbwojCS4vY2dwcm9mL3BrZy1kZXNjcgojCS4vY2dwcm9mL01ha2VmaWxlCiMKZWNo byBjIC0gLi9jZ3Byb2YKbWtkaXIgLXAgLi9jZ3Byb2YgPiAvZGV2L251bGwgMj4mMQplY2hvIHgg LSAuL2NncHJvZi9kaXN0aW5mbwpzZWQgJ3MvXlgvLycgPi4vY2dwcm9mL2Rpc3RpbmZvIDw8ICdF TkQtb2YtLi9jZ3Byb2YvZGlzdGluZm8nClhNRDUgKGNncHJvZi0xLjIudGFyLmd6KSA9IGRjZjlm OTEzNjdmYjM0OGY1NmJiODE2ZTA3MzJlNTAwClhTSVpFIChjZ3Byb2YtMS4yLnRhci5neikgPSAx NzQ1OApFTkQtb2YtLi9jZ3Byb2YvZGlzdGluZm8KZWNobyB4IC0gLi9jZ3Byb2YvcGtnLWRlc2Ny CnNlZCAncy9eWC8vJyA+Li9jZ3Byb2YvcGtnLWRlc2NyIDw8ICdFTkQtb2YtLi9jZ3Byb2YvcGtn LWRlc2NyJwpYY2dwcm9mIGdlbmVyYXRlcyBjb2xvcmVkIGdyYXBocyBmb3IgcHJvZmlsZWQgZXhl Y3V0YWJsZXMgdXNpbmcgZ2NjIGFuZCBncHJvZi4gIApYY2dwcm9mIGhlbHBzIHRvIGhhdmUgYSBi ZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiBwcm9ncmFtIHN0cnVjdHVyZSBhbmQgZXhlY3V0aW9uLgpY SXQgbWFrZXMgaG90IHNwb3RzIGlkZW50aWZpY2F0aW9uIHZpc3VhbCBhbmQgaW50dWl0aXZlLgkK WEl0IGlzIGEgc2hlbGwgc2NyaXB0IHVzaW5nIGdudSBhd2ssIHRoYXQgc2hvdWxkIHJ1biBvbiBh bnkgVW5peCBsaWtlIHN5c3RlbS4KWApYV1dXOiBodHRwOi8vbXZlcnRlcy5mcmVlLmZyLwpFTkQt b2YtLi9jZ3Byb2YvcGtnLWRlc2NyCmVjaG8geCAtIC4vY2dwcm9mL01ha2VmaWxlCnNlZCAncy9e WC8vJyA+Li9jZ3Byb2YvTWFrZWZpbGUgPDwgJ0VORC1vZi0uL2NncHJvZi9NYWtlZmlsZScKWCMg TmV3IHBvcnRzIGNvbGxlY3Rpb24gbWFrZWZpbGUgZm9yOiAgIGNncHJvZgpYIyBEYXRlIGNyZWF0 ZWQ6ICAgICAgICAxNiBEZWNlbWJlciAyMDA0ClgjIFdob206ICAgICAgICAgICAgICAgIEFkYW0g TWNMYXVyaW4KWCMKWCMgJEZyZWVCU0Q6IHBvcnRzL2RldmVsL2NncHJvZi9NYWtlZmlsZSAkClgj ClgKWFBPUlROQU1FPSAgICAgIGNncHJvZgpYUE9SVFZFUlNJT049ICAgMS4yClhDQVRFR09SSUVT PSAgICBkZXZlbApYTUFTVEVSX1NJVEVTPSAgaHR0cDovL212ZXJ0ZXMuZnJlZS5mci9kb3dubG9h ZC8KWApYTUFJTlRBSU5FUj0gICAgcG9ydHNAZnJlZWJzZC5vcmcKWENPTU1FTlQ9ICAgICAgICBH ZW5lcmF0ZXMgY29sb3JlZCBncmFwaHMgZm9yIHByb2ZpbGVkIGV4ZWN1dGFibGVzIHVzaW5nIGdj YyBhbmQgZ3Byb2YKWApYQlVJTERfREVQRU5EUz0JZ2F3azoke1BPUlRTRElSfS9sYW5nL2dhd2sK WFJVTl9ERVBFTkRTPQkke0JVSUxEX0RFUEVORFN9ClgKWEFMTF9UQVJHRVQ9CWNncHJvZi4xClhJ TlNUQUxMX1RBUkdFVD0JaW5zdGFsbCBwcmVmaXg9JHtQUkVGSVh9ClgKWE1BTjE9ICAgICAgICAg IGNncHJvZi4xClgKWFBMSVNUX0ZJTEVTPQliaW4vY2dwcm9mClgKWC5pbmNsdWRlIDxic2QucG9y dC5taz4KRU5ELW9mLS4vY2dwcm9mL01ha2VmaWxlCmV4aXQKCg== --Multipart=_Thu__16_Dec_2004_22_05_39_-0500_q2R4cvgMJ1KS.oVu-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 03:20:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24DB916A4CE for ; Fri, 17 Dec 2004 03:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA5F943D3F for ; Fri, 17 Dec 2004 03:20:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH3KPiq030326 for ; Fri, 17 Dec 2004 03:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH3KPsD030325; Fri, 17 Dec 2004 03:20:25 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 03:20:25 GMT Message-Id: <200412170320.iBH3KPsD030325@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mario Sergio Fujikawa Ferreira Subject: Re: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mario Sergio Fujikawa Ferreira List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 03:20:26 -0000 The following reply was made to PR ports/75173; it has been noted by GNATS. From: Mario Sergio Fujikawa Ferreira To: FreeBSD-gnats-submit@FreeBSD.org Cc: Adam McLaurin Subject: Re: ports/75173: New port: devel/cgprof Generates colored graphs for profiled executables using gcc and gprof Date: Fri, 17 Dec 2004 01:16:40 -0200 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Submitter forgot to attach the port shar :) He also wishes to be the MAINTAINER I am following up in his behalf. He is having problems with FreeBSD.org smtp server. -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature --UlVJffcvxoiEqYs2 Content-Type: application/x-shar Content-Disposition: attachment; filename="cgprof.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# ./cgprof=0A# ./cgpr= of/distinfo=0A# ./cgprof/pkg-descr=0A# ./cgprof/Makefile=0A#=0Aecho c - ./c= gprof=0Amkdir -p ./cgprof > /dev/null 2>&1=0Aecho x - ./cgprof/distinfo=0As= ed 's/^X//' >./cgprof/distinfo << 'END-of-./cgprof/distinfo'=0AXMD5 (cgprof= -1.2.tar.gz) =3D dcf9f91367fb348f56bb816e0732e500=0AXSIZE (cgprof-1.2.tar.g= z) =3D 17458=0AEND-of-./cgprof/distinfo=0Aecho x - ./cgprof/pkg-descr=0Ased= 's/^X//' >./cgprof/pkg-descr << 'END-of-./cgprof/pkg-descr'=0AXcgprof gene= rates colored graphs for profiled executables using gcc and gprof. =0AXcgp= rof helps to have a better understanding of program structure and execution= =2E=0AXIt makes hot spots identification visual and intuitive. =0AXIt is a = shell script using gnu awk, that should run on any Unix like system.=0AX=0A= XWWW: http://mvertes.free.fr/=0AEND-of-./cgprof/pkg-descr=0Aecho x - ./cgpr= of/Makefile=0Ased 's/^X//' >./cgprof/Makefile << 'END-of-./cgprof/Makefile'= =0AX# New ports collection makefile for: cgprof=0AX# Date created: = 16 December 2004=0AX# Whom: Adam McLaurin=0AX#=0AX# $FreeBS= D: ports/devel/cgprof/Makefile $=0AX#=0AX=0AXPORTNAME=3D cgprof=0AXPOR= TVERSION=3D 1.2=0AXCATEGORIES=3D devel=0AXMASTER_SITES=3D http://mver= tes.free.fr/download/=0AX=0AXMAINTAINER=3D adam.freebsd@fastmail.fm=0AXC= OMMENT=3D Generates colored graphs for profiled executables using gc= c and gprof=0AX=0AXBUILD_DEPENDS=3D gawk:${PORTSDIR}/lang/gawk=0AXRUN_DEPEN= DS=3D ${BUILD_DEPENDS}=0AX=0AXALL_TARGET=3D cgprof.1=0AXINSTALL_TARGET=3D i= nstall prefix=3D${PREFIX}=0AX=0AXMAN1=3D cgprof.1=0AX=0AXPLIST_FIL= ES=3D bin/cgprof=0AX=0AX.include =0AEND-of-./cgprof/Makefile= =0Aexit=0A=0A --UlVJffcvxoiEqYs2-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 03:20:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB2ED16A4CE for ; Fri, 17 Dec 2004 03:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A4DF43D3F for ; Fri, 17 Dec 2004 03:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH3KQ1j030339 for ; Fri, 17 Dec 2004 03:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH3KQRG030338; Fri, 17 Dec 2004 03:20:26 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 03:20:26 GMT Resent-Message-Id: <200412170320.iBH3KQRG030338@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, Hernán Di Pietro Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D5EC16A4CE for ; Fri, 17 Dec 2004 03:18:58 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A2E743D46 for ; Fri, 17 Dec 2004 03:18:58 +0000 (GMT) (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 iBH3Ivf7036007 for ; Fri, 17 Dec 2004 03:18:57 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBH3IvQK036006; Fri, 17 Dec 2004 03:18:57 GMT (envelope-from nobody) Message-Id: <200412170318.iBH3IvQK036006@www.freebsd.org> Date: Fri, 17 Dec 2004 03:18:57 GMT From: Hernán Di Pietro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75174: Anjuta 1.2.2_3 crashes on opening a new project file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 03:20:26 -0000 >Number: 75174 >Category: ports >Synopsis: Anjuta 1.2.2_3 crashes on opening a new project 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: Fri Dec 17 03:20:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hernán Di Pietro >Release: FreeBSD 5.3 RELEASE (GENERIC) i386 >Organization: >Environment: FreeBSD unix.mshome.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: When you create a new project using the AppWizard from Anjuta, it crashes displaying 'application has unexpectedly quit' message. >How-To-Repeat: * Create a new project (any C/C++ type) * Open the folder where the source files are on the project manager. Double click on 'main'. Anjuta should crash with a dialog box. debug without symbols:Backtrace was generated from '/usr/X11R6/bin/anjuta-bin' (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found). ..(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols foun d)...(no debugging symbols found)...(no debugging symbols fo! und)...( no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...[Switching to LWP 100092] 0x28f654d7 in wait4 () from /lib/libc.so.5 #0 0x28f654d7 in wait4 () from /lib/libc.so.5 #1 0x28f568df in waitpid () from /lib/libc.so.5 #2 0x28efa089 in waitpid () from /usr/lib/libpthread.so.1 #3 0x2824d3c3 in libgnomeui_module_info_get () from /usr/X11R6/lib/libgnomeui-2.so.800 #4 0x28f006ef in sigaction () from /usr/lib/libpthread.so.1 #5 0xbfbfff94 in ?? () #6 0x0000000b in ?? () #7 0xbfbfd970 in ?? () #8 0xbfbfd6b0 in ?? () #9 0x00000000 in ?? () #10 0x28f0041c in sigaction () from /usr/lib/libpthread.so.1 #11 0x08171518 in Style::Realise () #12 0x0816f423 in ViewStyle::Refresh () #13 0x08157d80 in Editor::RefreshStyleData () #14 0x0815f5c5 in Editor::SetScrollBars () #15 0x08160d19 in Editor::NotifyModified () #16 0x0815562c in Document::NotifyModified () #17 0x08153466 in Document::InsertStyledString () #18 0x08153a0b in Document::InsertString () #19 0x08166727 in Editor::WndProc () #20 0x0816cd87 in ScintillaBase::WndProc () #21 0x08149d8b in ScintillaGTK::WndProc () #22 0x0814c7be in scintilla_send_message () #23 0x080e7edc in text_editor_set_line_marker () #24 0x080e82be in text_editor_load_file () #25 0x080e6579 in text_editor_new () #26 0x080f8f1c in anjuta_append_text_editor () #27 0x080f9721 in anjuta_goto_file_line_mark () #28 0x0807d808 in anjuta_fv_open_file () #29 0x080d60a0 in on_project_edit1_activate () #30 0x080d6be8 in on_project_add_file1_activate () #31 0x2874f544 in gtk_marshal_VOID__UINT_STRING () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #32 0x28c553dc in g_closure_invoke () from /usr/local/lib/libgobject-2.0.so.400 #33 0x28c6b9ca in signal_emit_unlocked_R () from /usr/local/lib/libgobject-2.0.so.400 #34 0x28c6ac33 in g_signal_emit_valist () from /usr/local/lib/libgobject-2.0.so.400 #35 0x28c6ae95 in g_signal_emit () from /usr/local/lib/libgobject-2.0.so.400 #36 0x28818c6b in gtk_tree_view_row_activated () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #37 0x2880bd07 in gtk_tree_view_get_type () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #38 0x2874de84 in gtk_marshal_VOID__UINT_STRING () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #39 0x28c55682 in g_type_class_meta_marshal () from /usr/local/lib/libgobject-2.0.so.400 #40 0x28c553dc in g_closure_invoke () from /usr/local/lib/libgobject-2.0.so.400 #41 0x28c6bbeb in signal_emit_unlocked_R () from /usr/local/lib/libgobject-2.0.so.400 #42 0x28c6ac8b in g_signal_emit_valist () from /usr/local/lib/libgobject-2.0.so.400 #43 0x28c6ae95 in g_signal_emit () from /usr/local/lib/libgobject-2.0.so.400 #44 0x28831d8c in gtk_widget_send_expose () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #45 0x288319bc in gtk_widget_event () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #46 0x2874c850 in gtk_propagate_event () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #47 0x2874b748 in gtk_main_do_event () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #48 0x2891c8bf in gdk_x11_register_standard_event_type () from /usr/X11R6/lib/libgdk-x11-2.0.so.400 #49 0x28cad0fb in g_main_dispatch () from /usr/local/lib/libglib-2.0.so.400 #50 0x28cadfc7 in g_main_context_dispatch () from /usr/local/lib/libglib-2.0.so.400 #51 0x28cae3a6 in g_main_context_iterate () from /usr/local/lib/libglib-2.0.so.400 #52 0x28caea12 in g_main_loop_run () from /usr/local/lib/libglib-2.0.so.400 #53 0x2874b02a in gtk_main () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #54 0x080bac5a in main () Thread 1 (LWP 100092): #0 0x28f654d7 in wait4 () from /lib/libc.so.5 No symbol table info available. #1 0x28f568df in waitpid () from /lib/libc.so.5 No symbol table info available. #2 0x28efa089 in waitpid () from /usr/lib/libpthread.so.1 No symbol table info available. #3 0x2824d3c3 in libgnomeui_module_info_get () from /usr/X11R6/lib/libgnomeui-2.so.800 No symbol table info available. #4 0x28f006ef in sigaction () from /usr/lib/libpthread.so.1 No symbol table info available. #5 0xbfbfff94 in ?? () No symbol table info available. #6 0x0000000b in ?? () No symbol table info available. #7 0xbfbfd970 in ?? () No symbol table info available. #8 0xbfbfd6b0 in ?? () No symbol table info available. #9 0x00000000 in ?? () No symbol table info available. #10 0x28f0041c in sigaction () from /usr/lib/libpthread.so.1 No symbol table info available. #11 0x08171518 in Style::Realise () No symbol table info available. #12 0x0816f423 in ViewStyle::Refresh () No symbol table info available. #13 0x08157d80 in Editor::RefreshStyleData () No symbol table info available. #14 0x0815f5c5 in Editor::SetScrollBars () No symbol table info available. #15 0x08160d19 in Editor::NotifyModified () No symbol table info available. #16 0x0815562c in Document::NotifyModified () No symbol table info available. #17 0x08153466 in Document::InsertStyledString () No symbol table info available. #18 0x08153a0b in Document::InsertString () No symbol table info available. #19 0x08166727 in Editor::WndProc () No symbol table info available. #20 0x0816cd87 in ScintillaBase::WndProc () No symbol table info available. #21 0x08149d8b in ScintillaGTK::WndProc () No symbol table info available. #22 0x0814c7be in scintilla_send_message () No symbol table info available. #23 0x080e7edc in text_editor_set_line_marker () No symbol table info available. #24 0x080e82be in text_editor_load_file () No symbol table info available. #25 0x080e6579 in text_editor_new () No symbol table info available. #26 0x080f8f1c in anjuta_append_text_editor () No symbol table info available. #27 0x080f9721 in anjuta_goto_file_line_mark () No symbol table info available. #28 0x0807d808 in anjuta_fv_open_file () No symbol table info available. #29 0x080d60a0 in on_project_edit1_activate () No symbol table info available. #30 0x080d6be8 in on_project_add_file1_activate () No symbol table info available. #31 0x2874f544 in gtk_marshal_VOID__UINT_STRING () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #32 0x28c553dc in g_closure_invoke () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #33 0x28c6b9ca in signal_emit_unlocked_R () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #34 0x28c6ac33 in g_signal_emit_valist () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #35 0x28c6ae95 in g_signal_emit () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #36 0x28818c6b in gtk_tree_view_row_activated () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #37 0x2880bd07 in gtk_tree_view_get_type () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #38 0x2874de84 in gtk_marshal_VOID__UINT_STRING () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #39 0x28c55682 in g_type_class_meta_marshal () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #40 0x28c553dc in g_closure_invoke () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #41 0x28c6bbeb in signal_emit_unlocked_R () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #42 0x28c6ac8b in g_signal_emit_valist () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #43 0x28c6ae95 in g_signal_emit () from /usr/local/lib/libgobject-2.0.so.400 No symbol table info available. #44 0x28831d8c in gtk_widget_send_expose () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #45 0x288319bc in gtk_widget_event () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #46 0x2874c850 in gtk_propagate_event () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #47 0x2874b748 in gtk_main_do_event () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #48 0x2891c8bf in gdk_x11_register_standard_event_type () from /usr/X11R6/lib/libgdk-x11-2.0.so.400 No symbol table info available. #49 0x28cad0fb in g_main_dispatch () from /usr/local/lib/libglib-2.0.so.400 No symbol table info available. #50 0x28cadfc7 in g_main_context_dispatch () from /usr/local/lib/libglib-2.0.so.400 No symbol table info available. #51 0x28cae3a6 in g_main_context_iterate () from /usr/local/lib/libglib-2.0.so.400 No symbol table info available. #52 0x28caea12 in g_main_loop_run () from /usr/local/lib/libglib-2.0.so.400 No symbol table info available. #53 0x2874b02a in gtk_main () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 No symbol table info available. #54 0x080bac5a in main () No symbol table info available. >Fix: No fix. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 04:40:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7187416A4CE for ; Fri, 17 Dec 2004 04:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EE9243D5D for ; Fri, 17 Dec 2004 04:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH4eM5K043447 for ; Fri, 17 Dec 2004 04:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH4eL87043446; Fri, 17 Dec 2004 04:40:21 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 04:40:21 GMT Resent-Message-Id: <200412170440.iBH4eL87043446@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, Dryice Liu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74B4C16A4CE for ; Fri, 17 Dec 2004 04:37:30 +0000 (GMT) Received: from smtp-out.hotpop.com (smtp-out.hotpop.com [38.113.3.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id F167143D2F for ; Fri, 17 Dec 2004 04:37:29 +0000 (GMT) (envelope-from dryice@hotpop.com) Received: from hotpop.com (kubrick.hotpop.com [38.113.3.103]) by smtp-out.hotpop.com (Postfix) with SMTP id 4A320B5C47B for ; Fri, 17 Dec 2004 04:37:24 +0000 (UTC) Received: from hotpop.com (unknown [219.146.249.202]) by smtp-1.hotpop.com (Postfix) with ESMTP id EB2B31A0196; Fri, 17 Dec 2004 04:37:15 +0000 (UTC) Received: by hotpop.com (sSMTP sendmail emulation); Fri, 17 Dec 2004 12:37:10 +0800 Message-Id: <20041217043715.EB2B31A0196@smtp-1.hotpop.com> Date: Fri, 17 Dec 2004 12:37:10 +0800 From: Dryice Liu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dryice Liu Subject: ports/75176: [maintainer update] chinese/xpdf: fix file permission changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 04:40:22 -0000 >Number: 75176 >Category: ports >Synopsis: [maintainer update] chinese/xpdf: fix file permission changes >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 Dec 17 04:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dryice Liu >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD dryice.3322.org 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Dec 7 10:38:59 CST 2004 >Description: Changes: - fix file permission changes pointed out by Kris - utilize DATADIR in pkg-plist >How-To-Repeat: $ ll /usr/X11R6/etc/xpdfrc -r--r--r-- 1 root wheel 4993 12 17 12:34 /usr/X11R6/etc/xpdfrc $ cd /usr/ports/chinese/xpdf; make install deinstall [...snip] $ ll /usr/X11R6/etc/xpdfrc -rw-r--r-- 1 root wheel 4993 12 17 12:38 /usr/X11R6/etc/xpdfrc >Fix: --- xpdf.diff begins here --- diff -ruN xpdf.old/pkg-install xpdf/pkg-install --- xpdf.old/pkg-install Sun Aug 4 03:32:54 2002 +++ xpdf/pkg-install Fri Dec 17 11:32:44 2004 @@ -5,6 +5,5 @@ XPDFRC=${PKG_PREFIX}/etc/xpdfrc ADDRESOURCE=${PKG_PREFIX}/share/xpdf/chinese-traditional/dot.xpdfrc /usr/bin/grep -F -v --file=${ADDRESOURCE} ${XPDFRC} > ${XPDFRC}.nochinese-traditional -/bin/rm -f ${XPDFRC} /bin/cat ${XPDFRC}.nochinese-traditional ${ADDRESOURCE} > ${XPDFRC} /bin/rm -f ${XPDFRC}.nochinese-traditional diff -ruN xpdf.old/pkg-plist xpdf/pkg-plist --- xpdf.old/pkg-plist Mon Aug 2 10:35:54 2004 +++ xpdf/pkg-plist Fri Dec 17 12:23:51 2004 @@ -1,15 +1,15 @@ -share/xpdf/chinese-simplified/Adobe-GB1.cidToUnicode -share/xpdf/chinese-simplified/EUC-CN.unicodeMap -share/xpdf/chinese-simplified/GBK.unicodeMap -share/xpdf/chinese-simplified/ISO-2022-CN.unicodeMap -share/xpdf/chinese-simplified/README -share/xpdf/chinese-traditional/Adobe-CNS1.cidToUnicode -share/xpdf/chinese-traditional/Big5.unicodeMap -share/xpdf/chinese-traditional/Big5ascii.unicodeMap -share/xpdf/chinese-traditional/README -@unexec mv -f %D/etc/xpdfrc %D/etc/xpdfrc.chinese-traditional -@unexec grep -F -v --file=%D/share/xpdf/chinese-traditional/dot.xpdfrc %D/etc/xpdfrc.chinese-traditional > %D/etc/xpdfrc -share/xpdf/chinese-traditional/dot.xpdfrc +%%DATADIR%%/chinese-simplified/Adobe-GB1.cidToUnicode +%%DATADIR%%/chinese-simplified/EUC-CN.unicodeMap +%%DATADIR%%/chinese-simplified/GBK.unicodeMap +%%DATADIR%%/chinese-simplified/ISO-2022-CN.unicodeMap +%%DATADIR%%/chinese-simplified/README +%%DATADIR%%/chinese-traditional/Adobe-CNS1.cidToUnicode +%%DATADIR%%/chinese-traditional/Big5.unicodeMap +%%DATADIR%%/chinese-traditional/Big5ascii.unicodeMap +%%DATADIR%%/chinese-traditional/README +@unexec cp %D/etc/xpdfrc %D/etc/xpdfrc.chinese-traditional +@unexec grep -F -v --file=%D/%%DATADIR%%/chinese-traditional/dot.xpdfrc %D/etc/xpdfrc.chinese-traditional > %D/etc/xpdfrc +%%DATADIR%%/chinese-traditional/dot.xpdfrc @unexec rm -f %D/etc/xpdfrc.chinese-traditional -@dirrm share/xpdf/chinese-simplified -@dirrm share/xpdf/chinese-traditional +@dirrm %%DATADIR%%/chinese-simplified +@dirrm %%DATADIR%%/chinese-traditional --- xpdf.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 06:17:39 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C21116A4CE; Fri, 17 Dec 2004 06:17:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2315C43D1D; Fri, 17 Dec 2004 06:17:39 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH6Hcsl084299; Fri, 17 Dec 2004 06:17:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH6Hc3b084295; Fri, 17 Dec 2004 06:17:38 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 06:17:38 GMT From: Edwin Groothuis Message-Id: <200412170617.iBH6Hc3b084295@freefall.freebsd.org> To: aragorn+ports@teaser.fr, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75101: [MAINTAINER] mail/milter-greylist: update to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 06:17:39 -0000 Synopsis: [MAINTAINER] mail/milter-greylist: update to 1.6 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 06:17:37 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75101 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 07:32:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61A216A4CE; Fri, 17 Dec 2004 07:32:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A89A43D48; Fri, 17 Dec 2004 07:32:37 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH7WbT2096560; Fri, 17 Dec 2004 07:32:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH7WbAF096556; Fri, 17 Dec 2004 07:32:37 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 07:32:37 GMT From: Edwin Groothuis Message-Id: <200412170732.iBH7WbAF096556@freefall.freebsd.org> To: j.koopmann@seceidos.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75127: [MAINTAINER] mail/MailScanner: update to 4.36.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 07:32:37 -0000 Synopsis: [MAINTAINER] mail/MailScanner: update to 4.36.4 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 07:32:36 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75127 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:20:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC0F616A4D1 for ; Fri, 17 Dec 2004 08:20:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C75443D2F for ; Fri, 17 Dec 2004 08:20:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8KT8u002193 for ; Fri, 17 Dec 2004 08:20:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8KT2I002192; Fri, 17 Dec 2004 08:20:29 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 08:20:29 GMT Message-Id: <200412170820.iBH8KT2I002192@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dryice Liu Subject: Re: ports/75176: [maintainer update] chinese/xpdf: fix file permission changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:20:30 -0000 The following reply was made to PR ports/75176; it has been noted by GNATS. From: Dryice Liu To: freebsd-gnats-submit@FreeBSD.org, dryice@liu.com.cn Cc: Subject: Re: ports/75176: [maintainer update] chinese/xpdf: fix file permission changes Date: Fri, 17 Dec 2004 16:16:57 +0800 Thanks Kris for pointing me a better solution. It also fix the maybe-not-empty directory share/xpdf problem. Please use this diff: ====================================================================== diff -ruN xpdf.old/pkg-install xpdf/pkg-install --- xpdf.old/pkg-install Sun Aug 4 03:32:54 2002 +++ xpdf/pkg-install Fri Dec 17 11:32:44 2004 @@ -5,6 +5,5 @@ XPDFRC=${PKG_PREFIX}/etc/xpdfrc ADDRESOURCE=${PKG_PREFIX}/share/xpdf/chinese-traditional/dot.xpdfrc /usr/bin/grep -F -v --file=${ADDRESOURCE} ${XPDFRC} > ${XPDFRC}.nochinese-traditional -/bin/rm -f ${XPDFRC} /bin/cat ${XPDFRC}.nochinese-traditional ${ADDRESOURCE} > ${XPDFRC} /bin/rm -f ${XPDFRC}.nochinese-traditional diff -ruN xpdf.old/pkg-plist xpdf/pkg-plist --- xpdf.old/pkg-plist Mon Aug 2 10:35:54 2004 +++ xpdf/pkg-plist Fri Dec 17 16:06:47 2004 @@ -1,15 +1,16 @@ -share/xpdf/chinese-simplified/Adobe-GB1.cidToUnicode -share/xpdf/chinese-simplified/EUC-CN.unicodeMap -share/xpdf/chinese-simplified/GBK.unicodeMap -share/xpdf/chinese-simplified/ISO-2022-CN.unicodeMap -share/xpdf/chinese-simplified/README -share/xpdf/chinese-traditional/Adobe-CNS1.cidToUnicode -share/xpdf/chinese-traditional/Big5.unicodeMap -share/xpdf/chinese-traditional/Big5ascii.unicodeMap -share/xpdf/chinese-traditional/README -@unexec mv -f %D/etc/xpdfrc %D/etc/xpdfrc.chinese-traditional -@unexec grep -F -v --file=%D/share/xpdf/chinese-traditional/dot.xpdfrc %D/etc/xpdfrc.chinese-traditional > %D/etc/xpdfrc -share/xpdf/chinese-traditional/dot.xpdfrc +%%DATADIR%%/chinese-simplified/Adobe-GB1.cidToUnicode +%%DATADIR%%/chinese-simplified/EUC-CN.unicodeMap +%%DATADIR%%/chinese-simplified/GBK.unicodeMap +%%DATADIR%%/chinese-simplified/ISO-2022-CN.unicodeMap +%%DATADIR%%/chinese-simplified/README +%%DATADIR%%/chinese-traditional/Adobe-CNS1.cidToUnicode +%%DATADIR%%/chinese-traditional/Big5.unicodeMap +%%DATADIR%%/chinese-traditional/Big5ascii.unicodeMap +%%DATADIR%%/chinese-traditional/README +@unexec cp %D/etc/xpdfrc %D/etc/xpdfrc.chinese-traditional +@unexec grep -F -v --file=%D/%%DATADIR%%/chinese-traditional/dot.xpdfrc %D/etc/xpdfrc.chinese-traditional > %D/etc/xpdfrc +%%DATADIR%%/chinese-traditional/dot.xpdfrc @unexec rm -f %D/etc/xpdfrc.chinese-traditional -@dirrm share/xpdf/chinese-simplified -@dirrm share/xpdf/chinese-traditional +@dirrm %%DATADIR%%/chinese-simplified +@dirrm %%DATADIR%%/chinese-traditional +@unexec rmdir %%DATADIR%% 2> /dev/null || true ====================================================================== -- Cheers, Dryice http://dryice.3322.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:24:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6075616A4CE; Fri, 17 Dec 2004 08:24:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3732E43D2F; Fri, 17 Dec 2004 08:24:23 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8ONTr002323; Fri, 17 Dec 2004 08:24:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8OMXo002319; Fri, 17 Dec 2004 08:24:22 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 08:24:22 GMT From: Edwin Groothuis Message-Id: <200412170824.iBH8OMXo002319@freefall.freebsd.org> To: j.koopmann@seceidos.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75128: [MAINTAINER] mail/MailScanner-devel: update to 4.37.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:24:23 -0000 Synopsis: [MAINTAINER] mail/MailScanner-devel: update to 4.37.3 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 08:24:17 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75128 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:28:04 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0DB516A4CE; Fri, 17 Dec 2004 08:28:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8B5243D64; Fri, 17 Dec 2004 08:28:04 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8S41h002477; Fri, 17 Dec 2004 08:28:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8S4jJ002473; Fri, 17 Dec 2004 08:28:04 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 08:28:04 GMT From: Edwin Groothuis Message-Id: <200412170828.iBH8S4jJ002473@freefall.freebsd.org> To: paul+ports@it.ca, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75018: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:28:05 -0000 Synopsis: [maintainer update]: net-mgmt/rotorouter was missing a file from its plist... State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 08:27:59 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75018 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:30:40 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5348C16A4CE for ; Fri, 17 Dec 2004 08:30:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 149B943D31 for ; Fri, 17 Dec 2004 08:30:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8Udq8002905 for ; Fri, 17 Dec 2004 08:30:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8UdHU002894; Fri, 17 Dec 2004 08:30:39 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 08:30:39 GMT Message-Id: <200412170830.iBH8UdHU002894@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dryice Liu Subject: Re: ports/75176: [maintainer update] chinese/xpdf: fix file permission changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dryice Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:30:40 -0000 The following reply was made to PR ports/75176; it has been noted by GNATS. From: Dryice Liu To: freebsd-gnats-submit@FreeBSD.org, dryice@liu.com.cn Cc: Subject: Re: ports/75176: [maintainer update] chinese/xpdf: fix file permission changes Date: Fri, 17 Dec 2004 08:23:06 +0000 (UTC) --text follows this line-- Thanks Kris for pointing me a better solution. It also fix the maybe-not-empty directory share/xpdf problem. Please use this diff: Date: Fri, 17 Dec 2004 16:23:08 +0800 Message-ID: <86r7lpwcyb.fsf@dryice.3322.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii ====================================================================== diff -ruN xpdf.old/pkg-install xpdf/pkg-install --- xpdf.old/pkg-install Sun Aug 4 03:32:54 2002 +++ xpdf/pkg-install Fri Dec 17 11:32:44 2004 @@ -5,6 +5,5 @@ XPDFRC=${PKG_PREFIX}/etc/xpdfrc ADDRESOURCE=${PKG_PREFIX}/share/xpdf/chinese-traditional/dot.xpdfrc /usr/bin/grep -F -v --file=${ADDRESOURCE} ${XPDFRC} > ${XPDFRC}.nochinese-traditional -/bin/rm -f ${XPDFRC} /bin/cat ${XPDFRC}.nochinese-traditional ${ADDRESOURCE} > ${XPDFRC} /bin/rm -f ${XPDFRC}.nochinese-traditional diff -ruN xpdf.old/pkg-plist xpdf/pkg-plist --- xpdf.old/pkg-plist Mon Aug 2 10:35:54 2004 +++ xpdf/pkg-plist Fri Dec 17 16:06:47 2004 @@ -1,15 +1,16 @@ -share/xpdf/chinese-simplified/Adobe-GB1.cidToUnicode -share/xpdf/chinese-simplified/EUC-CN.unicodeMap -share/xpdf/chinese-simplified/GBK.unicodeMap -share/xpdf/chinese-simplified/ISO-2022-CN.unicodeMap -share/xpdf/chinese-simplified/README -share/xpdf/chinese-traditional/Adobe-CNS1.cidToUnicode -share/xpdf/chinese-traditional/Big5.unicodeMap -share/xpdf/chinese-traditional/Big5ascii.unicodeMap -share/xpdf/chinese-traditional/README -@unexec mv -f %D/etc/xpdfrc %D/etc/xpdfrc.chinese-traditional -@unexec grep -F -v --file=%D/share/xpdf/chinese-traditional/dot.xpdfrc %D/etc/xpdfrc.chinese-traditional > %D/etc/xpdfrc -share/xpdf/chinese-traditional/dot.xpdfrc +%%DATADIR%%/chinese-simplified/Adobe-GB1.cidToUnicode +%%DATADIR%%/chinese-simplified/EUC-CN.unicodeMap +%%DATADIR%%/chinese-simplified/GBK.unicodeMap +%%DATADIR%%/chinese-simplified/ISO-2022-CN.unicodeMap +%%DATADIR%%/chinese-simplified/README +%%DATADIR%%/chinese-traditional/Adobe-CNS1.cidToUnicode +%%DATADIR%%/chinese-traditional/Big5.unicodeMap +%%DATADIR%%/chinese-traditional/Big5ascii.unicodeMap +%%DATADIR%%/chinese-traditional/README +@unexec cp %D/etc/xpdfrc %D/etc/xpdfrc.chinese-traditional +@unexec grep -F -v --file=%D/%%DATADIR%%/chinese-traditional/dot.xpdfrc %D/etc/xpdfrc.chinese-traditional > %D/etc/xpdfrc +%%DATADIR%%/chinese-traditional/dot.xpdfrc @unexec rm -f %D/etc/xpdfrc.chinese-traditional -@dirrm share/xpdf/chinese-simplified -@dirrm share/xpdf/chinese-traditional +@dirrm %%DATADIR%%/chinese-simplified +@dirrm %%DATADIR%%/chinese-traditional +@unexec rmdir %%DATADIR%% 2> /dev/null || true ====================================================================== -- Cheers, Dryice http://dryice.3322.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:40:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AD4D16A4CE for ; Fri, 17 Dec 2004 08:40:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4CF943D5E for ; Fri, 17 Dec 2004 08:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8eUdk004011 for ; Fri, 17 Dec 2004 08:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8eUS9004010; Fri, 17 Dec 2004 08:40:30 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 08:40:30 GMT Message-Id: <200412170840.iBH8eUS9004010@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Akifyev Subject: Re: ports/74312: [patch] cups-lpr does not fully replaces the standard lpr binaries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Akifyev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:40:31 -0000 The following reply was made to PR ports/74312; it has been noted by GNATS. From: Sergey Akifyev To: Volker Stolz Cc: freebsd-gnats-submit@freebsd.org, nardin@inf.ufsc.br, Sergey Akifyev Subject: Re: ports/74312: [patch] cups-lpr does not fully replaces the standard lpr binaries Date: Fri, 17 Dec 2004 11:31:04 +0300 --=-9VwCN70P2I2V7rejxNxJ Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: quoted-printable On =DE=D4, 2004-12-09 at 10:43 +0100, Volker Stolz wrote: > Dear maintainer. please review the proposed patch! Commit is approved. Please note my new email address. --=20 regards, Sergey Akifyev AGAVA PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-9VwCN70P2I2V7rejxNxJ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBwplHbu06QwmNwNsRAsFwAJ9mFloeDG+9DoNaCZm7+jY+R6/oKwCfWH9m JfWY7yjxtdZzT1IUt5lLpl4= =qu2c -----END PGP SIGNATURE----- --=-9VwCN70P2I2V7rejxNxJ-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:44:42 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64CCD16A517; Fri, 17 Dec 2004 08:44:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A96243D54; Fri, 17 Dec 2004 08:44:42 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8igS7004200; Fri, 17 Dec 2004 08:44:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8ignO004196; Fri, 17 Dec 2004 08:44:42 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 08:44:42 GMT From: Edwin Groothuis Message-Id: <200412170844.iBH8ignO004196@freefall.freebsd.org> To: mike@skew.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:44:42 -0000 Synopsis: Update port: textproc/py-xml update to 0.8.4 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 08:44:41 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74974 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 08:58:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F94816A4CF; Fri, 17 Dec 2004 08:58:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1621843D54; Fri, 17 Dec 2004 08:58:22 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH8wLrG004509; Fri, 17 Dec 2004 08:58:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH8wLKQ004505; Fri, 17 Dec 2004 08:58:21 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 08:58:21 GMT From: Edwin Groothuis Message-Id: <200412170858.iBH8wLKQ004505@freefall.freebsd.org> To: yonas_@yahoo.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74934: games/linux-q3ademo - libGL.so symbolic link needed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 08:58:22 -0000 Synopsis: games/linux-q3ademo - libGL.so symbolic link needed State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 08:58:20 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74934 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 09:00:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 936A516A4CE; Fri, 17 Dec 2004 09:00:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F1E743D4C; Fri, 17 Dec 2004 09:00:22 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH90M1c004587; Fri, 17 Dec 2004 09:00:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH90L3P004583; Fri, 17 Dec 2004 09:00:21 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 09:00:21 GMT From: Edwin Groothuis Message-Id: <200412170900.iBH90L3P004583@freefall.freebsd.org> To: hendrik@scholz.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74924: pointyhat-fix: cad/fandango X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 09:00:24 -0000 Synopsis: pointyhat-fix: cad/fandango State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 09:00:21 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74924 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 09:01:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E281F16A569 for ; Fri, 17 Dec 2004 09:01:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55B7B43D49 for ; Fri, 17 Dec 2004 09:00:57 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH90v2l004632 for ; Fri, 17 Dec 2004 09:00:57 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH90unT004616; Fri, 17 Dec 2004 09:00:56 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 09:00:56 GMT Resent-Message-Id: <200412170900.iBH90unT004616@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 Deiter Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB31C16A4CE for ; Fri, 17 Dec 2004 08:54:57 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9393A43D53 for ; Fri, 17 Dec 2004 08:54:57 +0000 (GMT) (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 iBH8sv7u092954 for ; Fri, 17 Dec 2004 08:54:57 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBH8sv4H092951; Fri, 17 Dec 2004 08:54:57 GMT (envelope-from nobody) Message-Id: <200412170854.iBH8sv4H092951@www.freebsd.org> Date: Fri, 17 Dec 2004 08:54:57 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75179: sendmail+bdb patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 09:01:15 -0000 >Number: 75179 >Category: ports >Synopsis: sendmail+bdb patch >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: Fri Dec 17 09:00:56 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 5.3 >Organization: MTS Komi >Environment: FreeBSD samba.komi.mts.ru 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #0: Wed Dec 15 19:01:41 MSK 2004 root@samba.komi.mts.ru:/usr/obj/usr/src/sys/GENERIC i386 >Description: port mail/sendmail cannot build with SENDMAIL_WITH_BERKELEYDB_VER=XY and cannot make all-depends-list >How-To-Repeat: # make SENDMAIL_WITH_BERKELEYDB_VER=42 clean make: don't know how to make all-depends-list. Stop ===> Cleaning for sendmail+db42-8.13.2 # make SENDMAIL_WITH_BERKELEYDB_VER=42 .. cc -o sendmail -I/usr/local/lib main.o alias.o arpadate.o bf.o collect.o conf.o control.o convtime.o daemon.o deliver.o domain.o envelope.o err.o headers.o macro.o map.o mci.o milter.o mime.o parseaddr.o queue.o ratectrl.o readcf.o recipient.o sasl.o savemail.o sfsasl.o shmticklib.o sm_resolve.o srvrsmtp.o stab.o stats.o sysexits.o timers.o tls.o trace.o udb.o usersmtp.o util.o version.o -lwrap -ldb-4.2 /var/tmp/usr/ports/mail/sendmail/work/sendmail-8.13.2/obj.FreeBSD.5.3-RELEASE-p2.i386/libsmutil/libsmutil.a /var/tmp/usr/ports/mail/sendmail/work/sendmail-8.13.2/obj.FreeBSD.5.3-RELEASE-p2.i386/libsm/libsm.a -lutil /usr/bin/ld: cannot find -ldb-4.2 *** Error code 1 >Fix: --- Makefile.orig Fri Dec 17 09:06:23 2004 +++ Makefile Fri Dec 17 09:40:03 2004 @@ -95,7 +95,7 @@ BERKELEYDB_LIB?= db-4.2 BERKELEYDB_INCLUDE?= ${LOCALBASE}/include/db42 .endif -LIB_DEPENDS+= ${BERKELEYDB_LIB}:${PORTSDIR}/${BERKLEYDB_PORT} +LIB_DEPENDS+= ${BERKELEYDB_LIB}:${PORTSDIR}/${BERKELEYDB_PORT} CONFLICTS+= sendmail+tls-8.* \ sendmail+tls+ldap-8.* \ sendmail+tls+sasl-8.* \ @@ -287,7 +287,7 @@ 'APPENDDEF(`confENVDEF'\'', `-I${BERKELEYDB_INCLUDE}'\'')' \ >> ${WCONF}/site.config.m4 ${ECHO_CMD} \ - 'APPENDDEF(`confLIBDIRS'\'', `-I${LOCALBASE}/lib'\'')' \ + 'APPENDDEF(`confLIBDIRS'\'', `-L${LOCALBASE}/lib'\'')' \ >> ${WCONF}/site.config.m4 .for i in sendmail editmap makemap praliases vacation ${ECHO_CMD} \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 09:05:05 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86B1F16A4CE; Fri, 17 Dec 2004 09:05:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D84A43D45; Fri, 17 Dec 2004 09:05:05 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH955qo004900; Fri, 17 Dec 2004 09:05:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH954gA004896; Fri, 17 Dec 2004 09:05:04 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 09:05:04 GMT From: Edwin Groothuis Message-Id: <200412170905.iBH954gA004896@freefall.freebsd.org> To: ebrandi.home@uol.com.br, jeremy@smart-serv.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74900: sysutils/livecd: Bad sh syntax. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 09:05:05 -0000 Synopsis: sysutils/livecd: Bad sh syntax. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Dec 17 09:04:50 GMT 2004 State-Changed-Why: Committed, thanks! Please CC the maintainer next time! http://www.freebsd.org/cgi/query-pr.cgi?pr=74900 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 09:08:08 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1292616A4CF; Fri, 17 Dec 2004 09:08:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFD8A43D1F; Fri, 17 Dec 2004 09:08:07 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH987Uj008880; Fri, 17 Dec 2004 09:08:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH987fF008876; Fri, 17 Dec 2004 09:08:07 GMT (envelope-from edwin) Date: Fri, 17 Dec 2004 09:08:07 GMT From: Edwin Groothuis Message-Id: <200412170908.iBH987fF008876@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Subject: Re: ports/75179: sendmail+bdb patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 09:08:08 -0000 Synopsis: sendmail+bdb patch Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 17 09:07:44 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=75179 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 09:35:44 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9EA116A4CE; Fri, 17 Dec 2004 09:35:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B115543D1D; Fri, 17 Dec 2004 09:35:44 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBH9ZiXU011412; Fri, 17 Dec 2004 09:35:44 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBH9Zig5011408; Fri, 17 Dec 2004 09:35:44 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 09:35:44 GMT From: Kirill Ponomarew Message-Id: <200412170935.iBH9Zig5011408@freefall.freebsd.org> To: matt@mattsnetwork.co.uk, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75141: [maintainer-update] comms/xlog broken on alpha. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 09:35:45 -0000 Synopsis: [maintainer-update] comms/xlog broken on alpha. State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Dec 17 09:35:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75141 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:09:02 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57AD716A4CE; Fri, 17 Dec 2004 10:09:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E6B943D2F; Fri, 17 Dec 2004 10:09:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHA924W017059; Fri, 17 Dec 2004 10:09:02 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHA8x4V017054; Fri, 17 Dec 2004 10:08:59 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 10:08:59 GMT From: Kirill Ponomarew Message-Id: <200412171008.iBHA8x4V017054@freefall.freebsd.org> To: db@db.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75134: [MAINTAINER] comms/qsstv: update to 5.3b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:09:02 -0000 Synopsis: [MAINTAINER] comms/qsstv: update to 5.3b State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Dec 17 10:08:54 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75134 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:10:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6A6A16A4DF for ; Fri, 17 Dec 2004 10:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6B4143D39 for ; Fri, 17 Dec 2004 10:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHAASk1017109 for ; Fri, 17 Dec 2004 10:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHAASpb017108; Fri, 17 Dec 2004 10:10:28 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 10:10:28 GMT Resent-Message-Id: <200412171010.iBHAASpb017108@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 Bushkov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDC6D16A4E3 for ; Fri, 17 Dec 2004 10:09:04 +0000 (GMT) Received: from stinger.cc.rsu.ru (stinger.cc.rsu.ru [195.208.252.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93C6943D2F for ; Fri, 17 Dec 2004 10:09:03 +0000 (GMT) (envelope-from bushman@stinger.cc.rsu.ru) Received: from stinger.cc.rsu.ru (localhost [127.0.0.1]) by stinger.cc.rsu.ru (8.12.11/8.12.10) with ESMTP id iBHAEbuI070930 for ; Fri, 17 Dec 2004 13:14:37 +0300 (MSK) (envelope-from bushman@stinger.cc.rsu.ru) Received: (from bushman@localhost) by stinger.cc.rsu.ru (8.12.11/8.12.10/Submit) id iBHAEbJe070929; Fri, 17 Dec 2004 13:14:37 +0300 (MSK) (envelope-from bushman) Message-Id: <200412171014.iBHAEbJe070929@stinger.cc.rsu.ru> Date: Fri, 17 Dec 2004 13:14:37 +0300 (MSK) From: Michael Bushkov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75181: [maintainer-update] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Bushkov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:10:29 -0000 >Number: 75181 >Category: ports >Synopsis: [maintainer-update] >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 Dec 17 10:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Bushkov >Release: FreeBSD 5.2-CURRENT i386 >Organization: Rostov State University >Environment: System: FreeBSD stinger.cc.rsu.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #1: Fri Jun 25 12:56:22 MSD 2004 bushman@stinger.cc.rsu.ru:/usr/obj/usr/src/sys/STINGER i386 >Description: Error in pkg-plist file: nss_lookupd.so, nss_lookupd.so.1, lookupd.conf.5.gz and lookupd.8.gz files are not removed from the system after deinstall. >How-To-Repeat: >Fix: --- lookupd.diff begins here --- diff -ruN /usr/ports/sysutils/lookupd/pkg-plist lookupd/pkg-plist --- /usr/ports/sysutils/lookupd/pkg-plist Sat Jul 24 21:27:36 2004 +++ lookupd/pkg-plist Fri Dec 17 12:49:18 2004 @@ -4,10 +4,14 @@ lib/lkpd_files.so.1 lib/lkpd_dns.so lib/lkpd_dns.so.1 +lib/nss_lookupd.so.1 +lib/nss_lookupd.so include/lookupd/passwd_defs.h include/lookupd/group_defs.h include/lookupd/host_defs.h include/lookupd/lookupd_defs.h +man/man5/lookupd.conf.5.gz +man/man8/lookupd.8.gz @dirrm include/lookupd %%EXAMPLESDIR%%/nsswitch.conf.sample %%EXAMPLESDIR%%/lookupd.conf.sample --- lookupd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:15:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77D6516A4D6; Fri, 17 Dec 2004 10:15:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FC3E43D1F; Fri, 17 Dec 2004 10:15:52 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHAFqiU017417; Fri, 17 Dec 2004 10:15:52 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHAFpM9017405; Fri, 17 Dec 2004 10:15:51 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 10:15:51 GMT From: Kirill Ponomarew Message-Id: <200412171015.iBHAFpM9017405@freefall.freebsd.org> To: jim@corebsd.or.id, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75151: [MAINTAINER-UPDATE] security/flawfinder X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:15:52 -0000 Synopsis: [MAINTAINER-UPDATE] security/flawfinder State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Dec 17 10:15:47 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75151 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:16:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46DC316A4CE; Fri, 17 Dec 2004 10:16:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F79E43D31; Fri, 17 Dec 2004 10:16:35 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHAGZ5E017492; Fri, 17 Dec 2004 10:16:35 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHAGYjv017488; Fri, 17 Dec 2004 10:16:34 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 10:16:34 GMT From: Kirill Ponomarew Message-Id: <200412171016.iBHAGYjv017488@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/75174: Anjuta 1.2.2_3 crashes on opening a new project file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:16:35 -0000 Synopsis: Anjuta 1.2.2_3 crashes on opening a new project file Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: krion Responsible-Changed-When: Fri Dec 17 10:16:25 GMT 2004 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=75174 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:19:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0858116A4CE; Fri, 17 Dec 2004 10:19:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D45A143D55; Fri, 17 Dec 2004 10:19:45 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHAJjBM017584; Fri, 17 Dec 2004 10:19:45 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHAJjIu017580; Fri, 17 Dec 2004 10:19:45 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 10:19:45 GMT From: Kirill Ponomarew Message-Id: <200412171019.iBHAJjIu017580@freefall.freebsd.org> To: ip@doom.homeunix.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75129: Update port: graphics/ftgl 2.09 -> 2.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:19:46 -0000 Synopsis: Update port: graphics/ftgl 2.09 -> 2.12 State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Fri Dec 17 10:19:26 GMT 2004 State-Changed-Why: => Attempting to fetch from http://homepages.paradise.net.nz/henryj/code/. fetch: http://homepages.paradise.net.nz/henryj/code/ftgl-2.1.2.tar.gz: Not Found http://www.freebsd.org/cgi/query-pr.cgi?pr=75129 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:21:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B0CA16A4CE; Fri, 17 Dec 2004 10:21:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52E1843D31; Fri, 17 Dec 2004 10:21:32 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHALWXF017765; Fri, 17 Dec 2004 10:21:32 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHALWTO017761; Fri, 17 Dec 2004 10:21:32 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 10:21:32 GMT From: Kirill Ponomarew Message-Id: <200412171021.iBHALWTO017761@freefall.freebsd.org> To: bushman@stinger.cc.rsu.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75181: [maintainer-update] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:21:32 -0000 Synopsis: [maintainer-update] State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Dec 17 10:21:27 GMT 2004 State-Changed-Why: It was already fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=75181 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:28:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC04C16A4DA; Fri, 17 Dec 2004 10:28:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 830C843D2D; Fri, 17 Dec 2004 10:28:35 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHASZR7018133; Fri, 17 Dec 2004 10:28:35 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHASZVx018129; Fri, 17 Dec 2004 10:28:35 GMT (envelope-from krion) Date: Fri, 17 Dec 2004 10:28:35 GMT From: Kirill Ponomarew Message-Id: <200412171028.iBHASZVx018129@freefall.freebsd.org> To: alecn2002@yandex.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75164: [MAINTAINER-UPDATE] devel/ruby18-freebase: update to 0.9.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:28:35 -0000 Synopsis: [MAINTAINER-UPDATE] devel/ruby18-freebase: update to 0.9.2 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Dec 17 10:28:31 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75164 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:40:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85DB716A4CE for ; Fri, 17 Dec 2004 10:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42A0443D45 for ; Fri, 17 Dec 2004 10:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHAeS1j020006 for ; Fri, 17 Dec 2004 10:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHAeSPK020005; Fri, 17 Dec 2004 10:40:28 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 10:40:28 GMT Resent-Message-Id: <200412171040.iBHAeSPK020005@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3A6F16A4CE for ; Fri, 17 Dec 2004 10:39:36 +0000 (GMT) Received: from scone.ki.iif.hu (scone.ki.iif.hu [193.6.222.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28D5443D2F for ; Fri, 17 Dec 2004 10:39:36 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.13.1/8.13.1) id iBHAdIXe021612; Fri, 17 Dec 2004 11:39:19 +0100 (CET) (envelope-from mohacsi) Message-Id: <200412171039.iBHAdIXe021612@scone.ki.iif.hu> Date: Fri, 17 Dec 2004 11:39:19 +0100 (CET) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75182: [MAINTAINER] net/beacon: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:40:28 -0000 >Number: 75182 >Category: ports >Synopsis: [MAINTAINER] net/beacon: [SUMMARIZE CHANGES] >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 Dec 17 10:40:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.3-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 5.3-STABLE FreeBSD 5.3-STABLE #5: Thu Nov 11 05:45:29 CET 2004 >Description: Maintainer Update to net/beacon version 1.1 to version 1.1 revision 1 Changes: fixes pkg-plist errors. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: Apply this diff. >Fix: --- beacon-1.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/beacon.orig/Makefile /usr/ports/net/beacon/Makefile --- /usr/ports/net/beacon.orig/Makefile Mon Nov 22 18:03:26 2004 +++ /usr/ports/net/beacon/Makefile Fri Dec 17 11:08:11 2004 @@ -7,6 +7,7 @@ PORTNAME= beacon PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= net perl5 mbone ipv6 MASTER_SITES= http://dast.nlanr.net/Projects/Beacon/releases/ DISTNAME= ${PORTNAME}-${PORTVERSION}-0 diff -ruN --exclude=CVS /usr/ports/net/beacon.orig/pkg-plist /usr/ports/net/beacon/pkg-plist --- /usr/ports/net/beacon.orig/pkg-plist Fri Oct 29 12:03:40 2004 +++ /usr/ports/net/beacon/pkg-plist Fri Dec 17 11:30:59 2004 @@ -2,13 +2,14 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Multicast/Beacon/Beacon.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Multicast/Beacon/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/Net/Multicast/Beacon.pm +lib/perl5/%%PERL_VERSION%%/%%PERL_ARCH%%/perllocal.pod @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Multicast/Beacon @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Multicast/ @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Net/Multicast/ @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Net 2>/dev/null || true www/beacon-%%VERSION%%/beacon -www/beacon-%%VERSION%% +@dirrm www/beacon-%%VERSION%% etc/beacon.conf.sample %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% --- beacon-1.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 10:50:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2F3816A4CE for ; Fri, 17 Dec 2004 10:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92EC143D5A for ; Fri, 17 Dec 2004 10:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHAoQOb020344 for ; Fri, 17 Dec 2004 10:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHAoQY5020343; Fri, 17 Dec 2004 10:50:26 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 10:50:26 GMT Message-Id: <200412171050.iBHAoQY5020343@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= Subject: Re: ports/75166: Update port: devel/pear-PEAR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 10:50:26 -0000 The following reply was made to PR ports/75166; it has been noted by GNATS. From: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= To: Thierry Thomas Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/75166: Update port: devel/pear-PEAR Date: Fri, 17 Dec 2004 08:41:08 -0200 Thierry, Thierry Thomas wrote: >>+ make PHP extension runtime dependencies enforced by the USE_PHP=ext knob, not by the pear install. > > > Thanks, but don't forget to chase this update in misc/pear-Text_Figlet. > > Regards, done. -- Ate' Antonio echo antonio php net | sed 's/ /@/;s/ /./g' FreeBSD/OpenBSD | PHP/MySQL | PGP Key ID 0x5BBEB073 "Can't buy what I want because its FREE!" - Pearl Jam From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 11:54:43 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ABF916A4CE; Fri, 17 Dec 2004 11:54:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3310E43D1D; Fri, 17 Dec 2004 11:54:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHBsh6x026794; Fri, 17 Dec 2004 11:54:43 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHBshOB026790; Fri, 17 Dec 2004 11:54:43 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 11:54:43 GMT From: Volker Stolz Message-Id: <200412171154.iBHBshOB026790@freefall.freebsd.org> To: anray@inet.ua, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/75169: [MAINTAINER] net/kf: fix build on the 4-stable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 11:54:43 -0000 Synopsis: [MAINTAINER] net/kf: fix build on the 4-stable State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Dec 17 11:50:33 GMT 2004 State-Changed-Why: This is not yet sufficient: -lX11 -lpango-1.0 -lm -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lXss -L/usr/X11R6/lib -liconv main.o: In function `parse_cmdline': main.o(.text+0x132): undefined reference to `getopt_long' *** Error code 1 Your CONFIGURE_ENV-handling is not right. You unconditionally nuke LDFLAGS for example. Please check what will already be contained in CONFIGURE_ENV before modifying it. The main problem is src/Makefile.{in,am}, which says: CFLAGS = -Wall -Wmissing-declarations LDFLAGS = -g You should patch these to use the actual values passed during configuration. Also, this should probably be reported upstream. Cheers, Volker Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Fri Dec 17 11:50:33 GMT 2004 Responsible-Changed-Why: I'll track this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75169 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:00:51 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEA5F16A4D0 for ; Fri, 17 Dec 2004 12:00:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C389143D55 for ; Fri, 17 Dec 2004 12:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHC0m5O026919 for ; Fri, 17 Dec 2004 12:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHC0m9V026912; Fri, 17 Dec 2004 12:00:48 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 12:00:48 GMT Resent-Message-Id: <200412171200.iBHC0m9V026912@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, Gavin Mu Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59BB516A4CE for ; Fri, 17 Dec 2004 11:56:03 +0000 (GMT) Received: from smtp.tju.edu.cn (smtp.tju.edu.cn [202.113.15.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF52C43D4C for ; Fri, 17 Dec 2004 11:56:00 +0000 (GMT) (envelope-from gavin@freebsdchina.org) Received: from localhost (localhost [127.0.0.1]) by smtp.tju.edu.cn (CA-JinChen KSG) with SMTP id 383CC2240BA; Fri, 17 Dec 2004 19:55:42 +0800 (CST) Received: from mscenter.tju.edu.cn (mscenter.tju.edu.cn [202.113.13.35]) by smtp.tju.edu.cn (CA-JinChen KSG) with SMTP id E830A224041; Fri, 17 Dec 2004 19:55:30 +0800 (CST) Received: by mscenter.tju.edu.cn (sSMTP sendmail emulation); Fri, 17 Dec 2004 19:54:20 +0800 Message-Id: <20041217115530.E830A224041@smtp.tju.edu.cn> Date: Fri, 17 Dec 2004 19:54:20 +0800 From: Gavin Mu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Gavin Mu Subject: ports/75183: [PATCH] chinese/qterm: fix build on 4.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gavin Mu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:00:52 -0000 >Number: 75183 >Category: ports >Synopsis: [PATCH] chinese/qterm: fix build on 4.x >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 Dec 17 12:00:48 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Gavin Mu >Release: FreeBSD 5.3-STABLE i386 >Organization: Tianjin University, China >Environment: System: FreeBSD mscenter.tju.edu.cn 5.3-STABLE FreeBSD 5.3-STABLE #2: Sun Nov 21 11:47:44 CST 2004 root@mscenter.tju.edu.cn:/usr/obj/usr/src/sys/gavin-CNPROJ i386 >Description: fix build on FreeBSD 4.x I have test this on FreeBSD 4.10-RELEASE and maybe this can also make build correctly on FreeBSD4/ALPHA >How-To-Repeat: N/A >Fix: --- qterm.diff begins here --- diff -ruN qterm.orig/files/patch-qterm_qtermcanvas.cpp qterm/files/patch-qterm_qtermcanvas.cpp --- qterm.orig/files/patch-qterm_qtermcanvas.cpp Thu Jan 1 08:00:00 1970 +++ qterm/files/patch-qterm_qtermcanvas.cpp Fri Dec 17 19:41:34 2004 @@ -0,0 +1,11 @@ +--- qterm/qtermcanvas.cpp.orig Fri Dec 17 19:26:35 2004 ++++ qterm/qtermcanvas.cpp Fri Dec 17 19:26:39 2004 +@@ -238,7 +238,7 @@ + if(strSave.isEmpty()) + return; + QString fmt = fi.extension(false).upper(); +- if(!pxm.save(strSave, fmt=="JPG"?"JPEG":fmt)) ++ if(!pxm.save(strSave, fmt=="JPG"?QString("JPEG"):fmt)) + QMessageBox::warning(this, "Failed to save file", "Cant save file, maybe format not supported"); + } + diff -ruN qterm.orig/files/patch-qterm_qtermiplocation.cpp qterm/files/patch-qterm_qtermiplocation.cpp --- qterm.orig/files/patch-qterm_qtermiplocation.cpp Wed Dec 15 13:46:24 2004 +++ qterm/files/patch-qterm_qtermiplocation.cpp Fri Dec 17 19:41:34 2004 @@ -1,5 +1,15 @@ ---- qterm/qtermiplocation.cpp.orig Tue Dec 14 18:45:37 2004 -+++ qterm/qtermiplocation.cpp Tue Dec 14 18:46:21 2004 +--- qterm/qtermiplocation.cpp.orig Tue Dec 7 03:23:24 2004 ++++ qterm/qtermiplocation.cpp Fri Dec 17 19:24:22 2004 +@@ -9,8 +9,8 @@ + #ifdef Q_OS_WIN32 + #include + #else +-#include + #include ++#include + #endif + + #include @@ -79,13 +79,13 @@ if( fseek( fp, (long)offset, SEEK_SET ) ==-1 ) { --- qterm.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:30:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CF1316A4CE for ; Fri, 17 Dec 2004 12:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3E5843D5E for ; Fri, 17 Dec 2004 12:30:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCUPfl031690 for ; Fri, 17 Dec 2004 12:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCUPPC031689; Fri, 17 Dec 2004 12:30:25 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 12:30:25 GMT Resent-Message-Id: <200412171230.iBHCUPPC031689@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FE8A16A4CE for ; Fri, 17 Dec 2004 12:26:37 +0000 (GMT) Received: from scone.ki.iif.hu (scone.ki.iif.hu [193.6.222.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC45043D1F for ; Fri, 17 Dec 2004 12:26:36 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.13.1/8.13.1) id iBHCP4R1029596; Fri, 17 Dec 2004 13:25:04 +0100 (CET) (envelope-from mohacsi) Message-Id: <200412171225.iBHCP4R1029596@scone.ki.iif.hu> Date: Fri, 17 Dec 2004 13:25:04 +0100 (CET) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Janos.Mohacsi@bsd.hu Subject: ports/75184: [Maintainer update] net/tcpreen: update to 1.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:30:26 -0000 >Number: 75184 >Category: ports >Synopsis: [Maintainer update] net/tcpreen: update to 1.4.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: Fri Dec 17 12:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.3-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 5.3-STABLE FreeBSD 5.3-STABLE #5: Thu Nov 11 05:45:29 CET 2004 >Description: - Update to 1.4.1 Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- tcpreen-1.4.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/tcpreen.orig/Makefile /usr/ports/net/tcpreen/Makefile --- /usr/ports/net/tcpreen.orig/Makefile Sat Jul 10 21:32:49 2004 +++ /usr/ports/net/tcpreen/Makefile Fri Dec 17 13:07:25 2004 @@ -6,12 +6,12 @@ # PORTNAME= tcpreen -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= net ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= Janos.Mohacsi@bsd.hu +MAINTAINER= janos.mohacsi@bsd.hu COMMENT= A simple TCP session re-engineering tool USE_BZIP2= yes diff -ruN --exclude=CVS /usr/ports/net/tcpreen.orig/distinfo /usr/ports/net/tcpreen/distinfo --- /usr/ports/net/tcpreen.orig/distinfo Mon Jun 28 16:21:02 2004 +++ /usr/ports/net/tcpreen/distinfo Fri Dec 17 12:44:54 2004 @@ -1,2 +1,2 @@ -MD5 (tcpreen-1.4.0.tar.bz2) = 89c99afc642f4897ba529420a0206f70 -SIZE (tcpreen-1.4.0.tar.bz2) = 172933 +MD5 (tcpreen-1.4.1.tar.bz2) = caf985960725196de5b6388ba628fa63 +SIZE (tcpreen-1.4.1.tar.bz2) = 175386 diff -ruN --exclude=CVS /usr/ports/net/tcpreen.orig/pkg-plist /usr/ports/net/tcpreen/pkg-plist --- /usr/ports/net/tcpreen.orig/pkg-plist Sat Jul 10 21:32:49 2004 +++ /usr/ports/net/tcpreen/pkg-plist Fri Dec 17 13:03:11 2004 @@ -1,8 +1,8 @@ bin/tcpreen %%NLS%%share/locale/fr/LC_MESSAGES/tcpreen.mo -%%PORTDOCS%%share/doc/tcpreen/AUTHORS -%%PORTDOCS%%share/doc/tcpreen/NEWS -%%PORTDOCS%%share/doc/tcpreen/README -%%PORTDOCS%%share/doc/tcpreen/THANKS -%%PORTDOCS%%share/doc/tcpreen/TODO -%%PORTDOCS%%@dirrm share/doc/tcpreen +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/THANKS +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%@dirrm %%DOCSDIR%% --- tcpreen-1.4.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:41:53 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0179916A4CE; Fri, 17 Dec 2004 12:41:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBC1843D31; Fri, 17 Dec 2004 12:41:52 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCfqxq033238; Fri, 17 Dec 2004 12:41:52 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCfqUb033234; Fri, 17 Dec 2004 12:41:52 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 12:41:52 GMT From: Volker Stolz Message-Id: <200412171241.iBHCfqUb033234@freefall.freebsd.org> To: xi@borderworlds.dk, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75145: Update port: mail/mlmmj Fix mlmmj-make-ml.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:41:53 -0000 Synopsis: Update port: mail/mlmmj Fix mlmmj-make-ml.sh State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Fri Dec 17 12:41:42 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75145 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:44:02 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B16B16A4CE; Fri, 17 Dec 2004 12:44:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73CEE43D4C; Fri, 17 Dec 2004 12:44:02 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCi2wP033316; Fri, 17 Dec 2004 12:44:02 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCi2Fj033312; Fri, 17 Dec 2004 12:44:02 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 12:44:02 GMT From: Volker Stolz Message-Id: <200412171244.iBHCi2Fj033312@freefall.freebsd.org> To: jilles@stack.nl, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75147: [PATCH] Several improvements to security/putty, mainly pterm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:44:02 -0000 Synopsis: [PATCH] Several improvements to security/putty, mainly pterm State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Dec 17 12:42:43 GMT 2004 State-Changed-Why: Did you consider reporting this to the upstream author? I'm a bit wary of committing extensive patches that I don't understand :) http://www.freebsd.org/cgi/query-pr.cgi?pr=75147 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:48:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADD1616A4CE; Fri, 17 Dec 2004 12:48:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73CF143D4C; Fri, 17 Dec 2004 12:48:59 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCmxHA033423; Fri, 17 Dec 2004 12:48:59 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCmxtN033419; Fri, 17 Dec 2004 12:48:59 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 12:48:59 GMT From: Volker Stolz Message-Id: <200412171248.iBHCmxtN033419@freefall.freebsd.org> To: alecn2002@yandex.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75146: [MAINTAINER-UPDATE] sysutils/luma: update to 1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:48:59 -0000 Synopsis: [MAINTAINER-UPDATE] sysutils/luma: update to 1.6 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Fri Dec 17 12:48:51 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75146 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:50:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4066816A4CF for ; Fri, 17 Dec 2004 12:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E367943D5D for ; Fri, 17 Dec 2004 12:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCoMd7033528 for ; Fri, 17 Dec 2004 12:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCoMEl033525; Fri, 17 Dec 2004 12:50:22 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 12:50:22 GMT Resent-Message-Id: <200412171250.iBHCoMEl033525@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 Yudin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B0B916A4CE for ; Fri, 17 Dec 2004 12:48:40 +0000 (GMT) Received: from toha.org.ua (inferno.argus.kharkov.ua [217.144.73.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id E508743D31 for ; Fri, 17 Dec 2004 12:48:37 +0000 (GMT) (envelope-from root@toha.org.ua) Received: from toha.org.ua (localhost [127.0.0.1]) by toha.org.ua (8.13.1/8.13.1) with ESMTP id iBHCmjEq031731 for ; Fri, 17 Dec 2004 14:48:45 +0200 (EET) (envelope-from root@toha.org.ua) Received: (from root@localhost) by toha.org.ua (8.13.1/8.13.1/Submit) id iBHCmiap031730; Fri, 17 Dec 2004 14:48:44 +0200 (EET) (envelope-from root) Message-Id: <200412171248.iBHCmiap031730@toha.org.ua> Date: Fri, 17 Dec 2004 14:48:44 +0200 (EET) From: Anton Yudin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75186: New port games/wormux and patch for devel/clanlib-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Anton Yudin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:50:23 -0000 >Number: 75186 >Category: ports >Synopsis: New port games/wormux and patch for devel/clanlib-devel >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: Fri Dec 17 12:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Anton Yudin >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD pandemonium 5.3-STABLE FreeBSD 5.3-STABLE #0: Sun Nov 14 19:08:07 EET 2004 root@pandemonium:/obj/obj/usr/src/sys/NKERNEL i386 >Description: New port games/wormux. --->8--- Almost everyone has heard of the Worms(R) series of games, developed by Team17. Worms was created in 1990, the goal of the game consisting of a several teams of "worms" fighting to the death on a 2D map. Wormux is heavily influenced by all games in this genre, including Scorched Earth and Liero. Wormux is free software clone of this game concept. Though currently under heavy development, it is already very playable, with lots of weapons (Dynamite, Baseball Bat, Teleportation, etc.). There are also lots of maps available for your battling pleasure! Wormux takes the genre to the next level, with great customisation options leading to great gameplay. There is a wide selection of teams, from the Aliens to the Chickens. Also, new battlefields can be downloaded from the Internet, making strategy an important part of each battle. --->8--- This port requires devel/clanlib-devel. But there is unresolved symbol in libclanGL.so. This is path for devel/clanlib-devel. patch for libclanGL.so, name file patch-Sources::GL::GLX::display_window_opengl.cpp and put in devel/libclan-devel/files *** Sources/GL/GLX/display_window_opengl.cpp.original Thu Dec 16 20:52:50 2004 --- Sources/GL/GLX/display_window_opengl.cpp Thu Dec 16 20:53:41 2004 *************** *** 375,389 **** if (access(pathname, R_OK) == 0) { ! try { get_ic()->add_joystick(CL_InputDevice(new CL_InputDevice_LinuxJoystick(pathname))); } catch (CL_Error& err) { CL_Log::log("debug", "Joystick Error: %1", err.message); ! done = true; ! } } else { --- 375,391 ---- if (access(pathname, R_OK) == 0) { ! /* try { + get_ic()->add_joystick(CL_InputDevice(new CL_InputDevice_LinuxJoystick(pathname))); } catch (CL_Error& err) { CL_Log::log("debug", "Joystick Error: %1", err.message); ! */ done = true; ! /* } ! */ } else { >How-To-Repeat: >Fix: Use new port. Shar: # 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: # # games/wormux # games/wormux/Makefile # games/wormux/distinfo # games/wormux/pkg-descr # echo c - games/wormux mkdir -p games/wormux > /dev/null 2>&1 echo x - games/wormux/Makefile sed 's/^X//' >games/wormux/Makefile << 'END-of-games/wormux/Makefile' X# Ports collection makefile for: wormux X# Date created: Thu Dec 16 18:46:55 EET 2004 X# Whom: Anton Yudin X# X# $FreeBSD$ X# X XPORTNAME= wormux XPORTVERSION= 0.5.0 XCATEGORIES= games XMASTER_SITES= http://download.gna.org/wormux/ XDISTNAME= ${PORTNAME}-src-${PORTVERSION} X XMAINTAINER= toha@toha.org.ua XCOMMENT= Wormux game X XUSE_BZIP2= yes XUSE_SDL= sdl XUSE_GETTEXT= yes X XLIB_DEPENDS+= clanGUI-0.7:${PORTSDIR}/devel/clanlib-devel XLIB_DEPENDS+= xml\\+\\+-1.0.1:${PORTSDIR}/textproc/libxml++ X XCONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib -lintl" X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X XPLIST_FILES= bin/wormux X XCONFIGURE_ARGS+=--prefix=${PREFIX} XGNU_CONFIGURE=yes X X.include X Xpost-install: X.for dir in ${PREFIX}/share/${PORTNAME} X @${FIND} ${dir} ! -type d | \ X ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} X @${FIND} ${dir} -type d | ${SORT} -r | \ X ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} X.endfor X X.include END-of-games/wormux/Makefile echo x - games/wormux/distinfo sed 's/^X//' >games/wormux/distinfo << 'END-of-games/wormux/distinfo' XMD5 (wormux-src-0.5.0.tar.bz2) = e09c8a699da7a3a60e0c379b75986573 XSIZE (wormux-src-0.5.0.tar.bz2) = 18787309 END-of-games/wormux/distinfo echo x - games/wormux/pkg-descr sed 's/^X//' >games/wormux/pkg-descr << 'END-of-games/wormux/pkg-descr' XAlmost everyone has heard of the Worms(R) series of games, developed by Team17. XWorms was created in 1990, the goal of the game consisting of a several teams of X"worms" fighting to the death on a 2D map. Wormux is heavily influenced by all Xgames in this genre, including Scorched Earth and Liero. X XWormux is free software clone of this game concept. Though currently under heavy Xdevelopment, it is already very playable, with lots of weapons (Dynamite, XBaseball Bat, Teleportation, etc.). There are also lots of maps available for Xyour battling pleasure! Wormux takes the genre to the next level, with great Xcustomisation options leading to great gameplay. There is a wide selection of Xteams, from the Aliens to the Chickens. Also, new battlefields can be downloaded Xfrom the Internet, making strategy an important part of each battle. X XWWW: http://www.wormux.org/ END-of-games/wormux/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:51:38 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F56516A4CF; Fri, 17 Dec 2004 12:51:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0731A43D46; Fri, 17 Dec 2004 12:51:38 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCpbXF033670; Fri, 17 Dec 2004 12:51:37 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCpbCJ033666; Fri, 17 Dec 2004 12:51:37 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 12:51:37 GMT From: Volker Stolz Message-Id: <200412171251.iBHCpbCJ033666@freefall.freebsd.org> To: molnarcs@gmail.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75081: avidemux2 build error (missing aclocal19) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:51:38 -0000 Synopsis: avidemux2 build error (missing aclocal19) State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Dec 17 12:51:22 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75081 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 12:54:03 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18EE716A4CE; Fri, 17 Dec 2004 12:54:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E355043D55; Fri, 17 Dec 2004 12:54:02 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHCs28K033756; Fri, 17 Dec 2004 12:54:02 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHCs2af033752; Fri, 17 Dec 2004 12:54:02 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 12:54:02 GMT From: Volker Stolz Message-Id: <200412171254.iBHCs2af033752@freefall.freebsd.org> To: jimmy@jamesbailie.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75075: update: lang/munger - new port revision to eliminate use of DEPENDS_TARGET X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 12:54:03 -0000 Synopsis: update: lang/munger - new port revision to eliminate use of DEPENDS_TARGET State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Dec 17 12:52:39 GMT 2004 State-Changed-Why: Please provide updates in unified diff format! Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: vs Class-Changed-When: Fri Dec 17 12:52:39 GMT 2004 Class-Changed-Why: Fix class http://www.freebsd.org/cgi/query-pr.cgi?pr=75075 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 13:00:57 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B77F16A4D1 for ; Fri, 17 Dec 2004 13:00:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F1C843D5A for ; Fri, 17 Dec 2004 13:00:57 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHD0vhe034021 for ; Fri, 17 Dec 2004 13:00:57 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHD0vf3034020; Fri, 17 Dec 2004 13:00:57 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 13:00:57 GMT Message-Id: <200412171300.iBHD0vf3034020@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/75081: avidemux2 build error (missing aclocal19) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 13:00:57 -0000 The following reply was made to PR ports/75081; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, molnarcs@gmail.com, amistry@am-productions.biz Cc: Subject: Re: ports/75081: avidemux2 build error (missing aclocal19) Date: Fri, 17 Dec 2004 13:50:59 +0100 Dear maintainer, please look into this issue! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 13:10:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFC1416A4CE for ; Fri, 17 Dec 2004 13:10:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73A1D43D46 for ; Fri, 17 Dec 2004 13:10:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHDAU0Y038294 for ; Fri, 17 Dec 2004 13:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHDAUAq038293; Fri, 17 Dec 2004 13:10:30 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 13:10:30 GMT Resent-Message-Id: <200412171310.iBHDAUAq038293@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, Xavier Beaudouin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3616316A4CE for ; Fri, 17 Dec 2004 13:05:56 +0000 (GMT) Received: from mx2.oav.net (mx2.oav.net [195.154.253.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id DED2C43D1D for ; Fri, 17 Dec 2004 13:05:55 +0000 (GMT) (envelope-from kiwi@mx2.oav.net) Received: by mx2.oav.net (Postfix, from userid 1000) id 5C0D94AC7F; Fri, 17 Dec 2004 14:05:54 +0100 (CET) Message-Id: <20041217130554.5C0D94AC7F@mx2.oav.net> Date: Fri, 17 Dec 2004 14:05:54 +0100 (CET) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75187: [MAINTAINER] lang/pike76: Fix PDF lib dependcy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 13:10:30 -0000 >Number: 75187 >Category: ports >Synopsis: [MAINTAINER] lang/pike76: Fix PDF lib dependcy >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 Dec 17 13:10:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Xavier Beaudouin >Release: FreeBSD 5.2.1-RELEASE-p3 i386 >Organization: The Caudium Group / Association Kazar >Environment: System: FreeBSD domu.oav.net 5.2.1-RELEASE-p3 FreeBSD 5.2.1-RELEASE-p3 #0: Thu Mar 18 12:25:33 CET 2004 >Description: PDFlib has bumped version. This patch will fix compilation of Pike with PDF support. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- pike76-7.6.24.patch begins here --- diff -ruN --exclude=CVS /usr/ports/lang/pike76.old/Makefile /usr/ports/lang/pike76/Makefile --- /usr/ports/lang/pike76.old/Makefile Fri Dec 17 14:04:07 2004 +++ /usr/ports/lang/pike76/Makefile Fri Dec 17 14:04:29 2004 @@ -189,7 +189,7 @@ .endif .if defined(WITH_PDF) -LIB_DEPENDS+= pdf.6:${PORTSDIR}/print/pdflib \ +LIB_DEPENDS+= pdf.7:${PORTSDIR}/print/pdflib \ panda.0:${PORTSDIR}/print/panda CONFIGURE_ARGS+= --with-libpdf --with-libpanda .else --- pike76-7.6.24.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 13:38:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB18A16A4CE; Fri, 17 Dec 2004 13:38:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93BA043D31; Fri, 17 Dec 2004 13:38:41 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from freefall.freebsd.org (hq@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHDcfdu040840; Fri, 17 Dec 2004 13:38:41 GMT (envelope-from hq@freefall.freebsd.org) Received: (from hq@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHDcfZZ040836; Fri, 17 Dec 2004 13:38:41 GMT (envelope-from hq) Date: Fri, 17 Dec 2004 13:38:41 GMT From: Herve Quiroz Message-Id: <200412171338.iBHDcfZZ040836@freefall.freebsd.org> To: hq@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hq@FreeBSD.org Subject: Re: ports/75032: JBoss4 update. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 13:38:41 -0000 Synopsis: JBoss4 update. Responsible-Changed-From-To: freebsd-ports-bugs->hq Responsible-Changed-By: hq Responsible-Changed-When: Fri Dec 17 13:38:02 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75032 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:09:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D51D416A4CE; Fri, 17 Dec 2004 14:09:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD0CA43D5D; Fri, 17 Dec 2004 14:09:50 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHE9oS0045716; Fri, 17 Dec 2004 14:09:50 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHE9odb045712; Fri, 17 Dec 2004 14:09:50 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 14:09:50 GMT From: Volker Stolz Message-Id: <200412171409.iBHE9odb045712@freefall.freebsd.org> To: martin@tradex.sk, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75060: [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:09:50 -0000 Synopsis: [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Dec 17 14:09:34 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75060 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:10:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C8E116A4CE for ; Fri, 17 Dec 2004 14:10:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6373F43D45 for ; Fri, 17 Dec 2004 14:10:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHEAVoK045787 for ; Fri, 17 Dec 2004 14:10:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHEAVhB045786; Fri, 17 Dec 2004 14:10:31 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 14:10:31 GMT Message-Id: <200412171410.iBHEAVhB045786@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/75060: [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:10:31 -0000 The following reply was made to PR ports/75060; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, martin@tradex.sk, dom@happygiraffe.net Cc: Subject: Re: ports/75060: [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 Date: Fri, 17 Dec 2004 15:08:01 +0100 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:13:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C460A16A4CE; Fri, 17 Dec 2004 14:13:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B65343D5A; Fri, 17 Dec 2004 14:13:23 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHEDNS2045983; Fri, 17 Dec 2004 14:13:23 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHEDNHZ045979; Fri, 17 Dec 2004 14:13:23 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 14:13:23 GMT From: Volker Stolz Message-Id: <200412171413.iBHEDNHZ045979@freefall.freebsd.org> To: matt_mills@btopenworld.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75054: Take maintainership of ports/irc/nethirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:13:23 -0000 Synopsis: Take maintainership of ports/irc/nethirc State-Changed-From-To: feedback->open State-Changed-By: vs State-Changed-When: Fri Dec 17 14:12:22 GMT 2004 State-Changed-Why: Feedback received, but I can't do perl 5.8-stuff atm. http://www.freebsd.org/cgi/query-pr.cgi?pr=75054 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:17:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FFAB16A4CE; Fri, 17 Dec 2004 14:17:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAAEA43D53; Fri, 17 Dec 2004 14:17:58 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHEHwXO046078; Fri, 17 Dec 2004 14:17:58 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHEHw03046074; Fri, 17 Dec 2004 14:17:58 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 14:17:58 GMT From: Volker Stolz Message-Id: <200412171417.iBHEHw03046074@freefall.freebsd.org> To: croyle@gelemna.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74983: plist fix for news/p5_gateway X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:17:59 -0000 Synopsis: plist fix for news/p5_gateway State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Fri Dec 17 14:17:49 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74983 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:28:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1F1316A4CE; Fri, 17 Dec 2004 14:27:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA73F43D53; Fri, 17 Dec 2004 14:27:59 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHERxk6046336; Fri, 17 Dec 2004 14:27:59 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHERxN9046331; Fri, 17 Dec 2004 14:27:59 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 14:27:59 GMT From: Volker Stolz Message-Id: <200412171427.iBHERxN9046331@freefall.freebsd.org> To: nardin@inf.ufsc.br, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74312: [patch] cups-lpr does not fully replaces the standard lpr binaries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:28:00 -0000 Synopsis: [patch] cups-lpr does not fully replaces the standard lpr binaries State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Fri Dec 17 14:27:47 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=74312 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:31:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BCB516A4CE; Fri, 17 Dec 2004 14:31:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D09D943D46; Fri, 17 Dec 2004 14:31:29 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHEVTQI047516; Fri, 17 Dec 2004 14:31:29 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHEVT3P047435; Fri, 17 Dec 2004 14:31:29 GMT (envelope-from sem) Date: Fri, 17 Dec 2004 14:31:29 GMT From: Sergey Matveychuk Message-Id: <200412171431.iBHEVT3P047435@freefall.freebsd.org> To: Joerg.Pulz@frm2.tum.de, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75168: [security] update net/samba3 to 3.0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:31:30 -0000 Synopsis: [security] update net/samba3 to 3.0.10 State-Changed-From-To: open->suspended State-Changed-By: sem State-Changed-When: Fri Dec 17 14:30:04 GMT 2004 State-Changed-Why: Maintainer asks to wait his patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=75168 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 14:45:35 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 956FD16A4CE; Fri, 17 Dec 2004 14:45:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C69C43D46; Fri, 17 Dec 2004 14:45:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHEjZpV047965; Fri, 17 Dec 2004 14:45:35 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHEjTJf047959; Fri, 17 Dec 2004 14:45:29 GMT (envelope-from vs) Date: Fri, 17 Dec 2004 14:45:29 GMT From: Volker Stolz Message-Id: <200412171445.iBHEjTJf047959@freefall.freebsd.org> To: flynn@energyhq.es.eu.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74303: update emulators/dosbox to 0.63 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 14:45:35 -0000 Synopsis: update emulators/dosbox to 0.63 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Fri Dec 17 14:44:58 GMT 2004 State-Changed-Why: Committed,thanks! Please remember to list added/removed files explicitly. http://www.freebsd.org/cgi/query-pr.cgi?pr=74303 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 15:00:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C94A216A4CF for ; Fri, 17 Dec 2004 15:00:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A465C43D2F for ; Fri, 17 Dec 2004 15:00:55 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHF0tVH048287 for ; Fri, 17 Dec 2004 15:00:55 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHF0t1b048286; Fri, 17 Dec 2004 15:00:55 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 15:00:55 GMT Resent-Message-Id: <200412171500.iBHF0t1b048286@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, Thomas Kempka Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D0CD16A4CE for ; Fri, 17 Dec 2004 14:50:56 +0000 (GMT) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A76643D53 for ; Fri, 17 Dec 2004 14:50:55 +0000 (GMT) (envelope-from tk@mail.wurstundkuchen.de) Received: from port-212-202-10-31.dynamic.qsc.de ([212.202.10.31] helo=mail.wurstundkuchen.de) by mx02.qsc.de with esmtp (Exim 3.35 #1) id 1CfJRW-0007ac-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 17 Dec 2004 15:50:54 +0100 Received: by mail.wurstundkuchen.de (Postfix, from userid 1001) id B5D271141D; Fri, 17 Dec 2004 15:50:53 +0100 (CET) Message-Id: <20041217145053.B5D271141D@mail.wurstundkuchen.de> Date: Fri, 17 Dec 2004 15:50:53 +0100 (CET) From: Thomas Kempka To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75189: misc/wminfo MASTER_SITES update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas Kempka List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 15:00:55 -0000 >Number: 75189 >Category: ports >Synopsis: misc/wminfo MASTER_SITES update >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: Fri Dec 17 15:00:55 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Thomas Kempka >Release: FreeBSD 5.2.1-RELEASE-p13 i386 >Organization: >Environment: System: FreeBSD lala.wurstkoffer-regiert.net 5.2.1-RELEASE-p13 FreeBSD 5.2.1-RELEASE-p13 #3: Sat Dec 4 11:23:29 CET 2004 root@lala.wurstkoffer-regiert.net:/usr/obj/usr/src/sys/LALA i386 >Description: MASTER_SITES update. >How-To-Repeat: >Fix: --- wminfo-mastersite.diff begins here --- diff -ruN misc/wminfo/Makefile.orig misc/wminfo/Makefile --- misc/wminfo/Makefile.orig Fri Feb 20 21:32:50 2004 +++ misc/wminfo/Makefile Wed Dec 15 18:38:38 2004 @@ -8,7 +8,8 @@ PORTNAME= wminfo PORTVERSION= 1.51 CATEGORIES= misc windowmaker -MASTER_SITES= http://kling.mine.nu/files/ +MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG} +MASTER_SITE_SUBDIR= ports/distfiles MAINTAINER= t.kempka@web.de COMMENT= Dockapp to run shell scripts and display the output --- wminfo-mastersite.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 16:40:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AD4516A4CE for ; Fri, 17 Dec 2004 16:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF75743D54 for ; Fri, 17 Dec 2004 16:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHGeRLR061390 for ; Fri, 17 Dec 2004 16:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHGeRkG061386; Fri, 17 Dec 2004 16:40:27 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 16:40:27 GMT Resent-Message-Id: <200412171640.iBHGeRkG061386@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, Lewis Thompson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94CF716A4CE for ; Fri, 17 Dec 2004 16:31:59 +0000 (GMT) Received: from infidel.fajita.org (81-178-93-221.dsl.pipex.com [81.178.93.221]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02DB543D31 for ; Fri, 17 Dec 2004 16:31:56 +0000 (GMT) (envelope-from lewiz@fajita.org) Received: from black.fajita.org (black.fajita.org [192.168.0.13]) by infidel.fajita.org (8.13.1/8.13.1) with ESMTP id iBHGWgJL069741 for ; Fri, 17 Dec 2004 16:32:42 GMT (envelope-from lewiz@fajita.org) Received: (from lewiz@localhost) by black.fajita.org (8.13.1/8.13.1/Submit) id iBHGVrfH001001; Fri, 17 Dec 2004 16:31:53 GMT (envelope-from lewiz) Message-Id: <200412171631.iBHGVrfH001001@black.fajita.org> Date: Fri, 17 Dec 2004 16:31:53 GMT From: Lewis Thompson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75190: [ PORT FIX ] comms/lirc (fix libirman and devdir) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lewis Thompson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 16:40:28 -0000 >Number: 75190 >Category: ports >Synopsis: [ PORT FIX ] comms/lirc (fix libirman and devdir) >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 Dec 17 16:40:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lewis Thompson >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD black.fajita.org 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Mon Nov 8 18:05:07 GMT 2004 root@black.fajita.org:/usr/src/sys/i386/compile/BLACK i386 >Description: 1. comms/lirc build fails with WITH_IRMAN defined. It looks for libirman.a in ${LOCALBASE} instead of ${LOCALBASE}/lib. 2. lircd tries to create a socket entires in /dev, instead change this to /var/lirc, where it can succeed. >How-To-Repeat: >Fix: diff -ruN lirc.orig/Makefile lirc/Makefile --- lirc.orig/Makefile Fri Dec 17 14:43:40 2004 +++ lirc/Makefile Fri Dec 17 15:10:35 2004 @@ -22,13 +22,13 @@ USE_REINPLACE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS= --disable-manage-devices +CONFIGURE_ARGS= --disable-manage-devices --with-devdir=/var/lirc .include .if defined(WITH_IRMAN) CONFIGURE_ARGS+= --with-driver=irman -BUILD_DEPENDS= ${LOCALBASE}/libirman.a:${PORTSDIR}/comms/libirman +BUILD_DEPENDS= ${LOCALBASE}/lib/libirman.a:${PORTSDIR}/comms/libirman .if ${OSVERSION} >= 500041 # These are already included in the getopt_long case on < 50041 CPPFLAGS+= -I${LOCALBASE}/include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 17:10:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C82116A4CE for ; Fri, 17 Dec 2004 17:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03C4E43D49 for ; Fri, 17 Dec 2004 17:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHHASD2066055 for ; Fri, 17 Dec 2004 17:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHHASaN066054; Fri, 17 Dec 2004 17:10:28 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 17:10:28 GMT Resent-Message-Id: <200412171710.iBHHASaN066054@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C46416A4CE for ; Fri, 17 Dec 2004 17:03:06 +0000 (GMT) Received: from scone.ki.iif.hu (scone.ki.iif.hu [193.6.222.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171A943D46 for ; Fri, 17 Dec 2004 17:03:02 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.13.1/8.13.1) id iBHH2g2D078772; Fri, 17 Dec 2004 18:02:42 +0100 (CET) (envelope-from mohacsi) Message-Id: <200412171702.iBHH2g2D078772@scone.ki.iif.hu> Date: Fri, 17 Dec 2004 18:02:42 +0100 (CET) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75191: [MAINTAINER] net/py23-BitTornado: update to 0.3.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Janos Mohacsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 17:10:29 -0000 >Number: 75191 >Category: ports >Synopsis: [MAINTAINER] net/py23-BitTornado: update to 0.3.9 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 17 17:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.3-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 5.3-STABLE FreeBSD 5.3-STABLE #5: Thu Nov 11 05:45:29 CET 2004 >Description: Maintainer Update to net/py-bittornado-0.3.7_2,1 to version 0.3.9,1 Removed file(s) - man files already included: - files/bittorrent-downloader.1 - files/bittorrent-multi-downloader.1 - files/btcompletedir.1 - files/btcopyannounce.1 - files/btdownloadcurses.1 - files/btdownloadheadless.1 - files/btlaunchmany.1 - files/btlaunchmanycurses.1 - files/btmakemetafile.1 - files/btreannounce.1 - files/btrename.1 - files/btsethttpseeds.1 - files/btshowmetainfo.1 - files/bttrack.1 Better CONFLICTS pattern. Hopefully fixes python 2.4 incompatiblities. New download location. Doc files location are splitted. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: Apply this diff. >Fix: --- py23-BitTornado-0.3.9,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/Makefile /usr/ports/net/py-bittornado/Makefile --- /usr/ports/net/py-bittornado.orig/Makefile Tue Nov 9 11:52:37 2004 +++ /usr/ports/net/py-bittornado/Makefile Fri Dec 17 17:27:27 2004 @@ -6,36 +6,37 @@ # PORTNAME= BitTornado -PORTVERSION= 0.3.7 -PORTREVISION= 2 +PORTVERSION= 0.3.9 PORTEPOCH= 1 CATEGORIES?= net python ipv6 -MASTER_SITES= http://e.scarywater.net/bt/download/ \ +MASTER_SITES= http://www.bittornado.com/download/ \ + http://e.scarywater.net/bt/download/ \ http://mediahost.inetsalestech.com/shadow/ \ http://www.hypermax.net.au/~gamr/ \ http://ftp.acc.umu.se/mirror/bittornado/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME}-${PORTVERSION}a MAINTAINER= janos.mohacsi@bsd.hu COMMENT?= An extended BitTorrent peer-to-peer tool for distributing files -CONFLICTS= py??-*[Bb]it[Tt]ornado* py??-*[Bb]it[Tt]orrent* btqueue* +CONFLICTS= py??-*[Bb]it[Tt]ornado-core-[0-9]* py??-*[Bb]it[Tt]orrent*-[0-9]* btqueue-[0-9]* USE_PYTHON= yes USE_PYDISTUTILS=yes USE_REINPLACE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-CVS -DOC_FILES= BUILD.windows.txt FAQ.txt IMPORTANT-multitracker-readme.txt \ - INSTALL.unix.txt LICENSE.txt README.txt \ - README-experimental.txt credits.txt multitracker-spec.txt \ - README-Psyco.txt todo.txt webseed-spec.txt +DOC_FILES1= BUILD.windows.txt FAQ.txt IMPORTANT-multitracker-readme.txt \ + INSTALL.unix.txt credits.txt multitracker-spec.txt \ + README-Psyco.txt webseed-spec.txt +DOC_FILES2= LICENSE.txt README.txt EXTRA_DOC_FILES= multitracker/README.txt MAN1= bittorrent-downloader.1 bittorrent-multi-downloader.1 \ btcompletedir.1 btcopyannounce.1 btdownloadcurses.1 \ - btdownloadheadless.1 btlaunchmany.1 btlaunchmanycurses.1 \ - btmakemetafile.1 btreannounce.1 btrename.1 btsethttpseeds.1 \ - btshowmetainfo.1 bttrack.1 + btdownloadgui.1 btdownloadheadless.1 btlaunchmany.1 \ + btlaunchmanycurses.1 btmakemetafile.1 btreannounce.1 \ + btrename.1 btsethttpseeds.1 btshowmetainfo.1 bttrack.1 # required for GUI .ifndef(WITHOUT_GUI) @@ -74,7 +75,10 @@ post-install: .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} +.for file in ${DOC_FILES1} + @${INSTALL_DATA} ${WRKSRC}/docs/${file} ${DOCSDIR} +.endfor +.for file in ${DOC_FILES2} @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .for file in ${EXTRA_DOC_FILES} @@ -85,7 +89,7 @@ .endif .ifndef(NO_INSTALL_MANPAGES) .for file in ${MAN1} - ${INSTALL_MAN} ${FILESDIR}/${file} ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/docs/man/${file} ${PREFIX}/man/man1 .endfor .endif diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/distinfo /usr/ports/net/py-bittornado/distinfo --- /usr/ports/net/py-bittornado.orig/distinfo Thu Jul 15 23:25:51 2004 +++ /usr/ports/net/py-bittornado/distinfo Fri Dec 17 13:39:32 2004 @@ -1,2 +1,2 @@ -MD5 (BitTornado-0.3.7.tar.gz) = ffeccfa4ee6a5732ea036332ccf34e92 -SIZE (BitTornado-0.3.7.tar.gz) = 176879 +MD5 (BitTornado-0.3.9a.tar.gz) = 8a3973b01bfc6b1d7b001e2e5c5ca53a +SIZE (BitTornado-0.3.9a.tar.gz) = 185847 diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/bittorrent-downloader.1 /usr/ports/net/py-bittornado/files/bittorrent-downloader.1 --- /usr/ports/net/py-bittornado.orig/files/bittorrent-downloader.1 Tue Sep 14 19:27:34 2004 +++ /usr/ports/net/py-bittornado/files/bittorrent-downloader.1 Thu Jan 1 01:00:00 1970 @@ -1,125 +0,0 @@ -.TH "BITTORRENT-DOWNLOADER" 1 "Sep 24 2003" -.SH NAME -bittorrent-downloader \- download files using a scatter-gather network -.SH SYNOPSIS -.nf -.B btdownloadheadless [ option ... ] \fIURL\fB -.B btdownloadheadless [ option ... ] \fIfilename\fB -.B btdownloadcurses [ option ... ] \fIURL\fB -.B btdownloadcurses [ option ... ] \fIfilename\fB -.B btdownloadgui [ option ... ] \fIURL\fB -.B btdownloadgui [ option ... ] \fIfilename\fB -.fi -.br -.B -.SH DESCRIPTION -This manual page documents briefly the \fBbtdownloadheadless\fP, -\fBbtdownloadcurses\fP, and \fBbtdownloadgui\fP commands. -.PP -These are all programs that allow a user to download files using -bittorrent, a peer to peer, scatter-gather network protocol. -They all have the same options. -.SH OPTIONS -These programs follow the usual GNU command line syntax, with long -options starting with two dashes (`-'). -A summary of options is included below. -.TP -.B \-\-responsefile \fIfilename\fP -treat \fIfilename\fP as a file which the server reponse was stored in. If this -option is used, no filename or URL should be present on the command line. -.TP -.B \-\-url \fIurl\fP -retrieve the torrent info file from \fIurl\fP. If this option is used, no -filename or URL should be present on the command line. -.TP -.B \-i \fIip\fP | \-\-ip \fIip\fP -report \fIip\fP as your IP to the tracker -.TP -.B \-\-bind \fIip\fP -bind to \fIip\fP instead of the default -.TP -.B \-\-minport \fIportnum\fP -set \fIportnum\fP as the minimum port to listen on, counts up if unavailable (default 6881) -.TP -.B \-\-maxport \fIportnum\fP -set \fIportnum\fP as the maximum port to listen on (default 6889) -.TP -.B \-\-saveas \fIfilename\fP -store the downloaded file to \fIfilename\fP, instead of querying user (gui) or -using the filename stored in the torrent info file -.TP -.B \-\-max_uploads \fInum\fP -Only allow \fInum\fP uploads at once (default 4) -.TP -.B \-\-max_upload_rate \fIkbytes\fP -maximum rate to upload at in kilobytes, 0 means no limit (default 0) -.TP -.B \-\-keepalive_interval \fIsecs\fP -pause \fIsecs\fP seconds between sending keepalives (default 120.0) -.TP -.B \-\-download_slice_size \fIbytes\fP -query for \fIbytes\fP bytes per request (default 32768) -.TP -.B \-\-request_backlog \fInum\fP -keep \fInum\fP requests in a single pipe at once (default 5) -.TP -.B \-\-max_message_length \fIbytes\fP -set \fIbytes\fP to the maximum length prefix encoding you'll accept over the wire - larger values get the connection dropped (default 8388608) -.TP -.B \-\-timeout \fIsecs\fP -wait \fIsecs\fP before closing sockets which nothing has been recieved on (default 300.0) -.TP -.B \-\-timeout_check_interval \fIsecs\fP -check whether connections have timed out every \fIsecs\fP seconds (default 60.0) -.TP -.B \-\-max_slice_length \fIbytes\fP -requests from peers larger than \fIbytes\fP bytes are ignored (default 131072) -.TP -.B \-\-max_rate_recalculate_interval \fIsecs\fP -connections that pause longer than \fIsecs\fP seconds are given reduced rate (default 15.0) -.TP -.B \-\-max_rate_period \fIsecs\fP -set \fIsecs\fP to the maximum amount of time to guess the current rate estimate represents (default 20.0) -.TP -.B \-\-upload_rate_fudge \fIsecs\fP -set the time equivalent of writing to kernel-level TCP buffer to \fIsecs\fP (default 5.0) -.TP -.B \-\-display_interval \fIsecs\fP -update displayed information every \fIsecs\fP seconds (default 0.1) -.TP -.B \-\-rerequest_interval \fIsecs\fP -request more peers every \fIsecs\fP seconds (default 300) -.TP -.B \-\-min_peers \fInum\fP -do not rerequest if we have \fInum\fP peers already (default 20) -.TP -.B \-\-http_timeout \fIsecs\fP -wait \fIsecs\fP seconds before assuming a http connection has timed out (default 60) -.TP -.B \-\-snub_time \fIsecs\fP -wait \fIsecs\fP seconds for data to come in over a connection before assuming it's semi-permanently choked (default 30.0) -.TP -.B \-\-spew \fI 1 | 0 \fP -whether to display diagnostic info to stdout. This option is not useful when -using btdownloadcurses or btdownloadgui. (default 0) -.B \-\-max_initiate \fInum\fP -stop initiating new connections when we have \fInum\fP peers (default 40) -.TP -.B \-\-check_hashes \fI 1 | 0 \fP -whether to check hashes on disk (defaults to 1) -.TP -.B \-\-report_hash_failures \fI 1 | 0 \fP -whether to report to the user that hash failuers occur (non-fatal, common error) (default 0) -.TP -.B \-\-rarest_first_priority_cutoff \fInum\fP -the number of peers which need to have a piece before other partials take -priority over rarest first (default 3) - -.SH SEE ALSO -.BR bttrack (1), -.BR btmakemetafile (1), -.BR btlaunchmany (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/bittorrent-multi-downloader.1 /usr/ports/net/py-bittornado/files/bittorrent-multi-downloader.1 --- /usr/ports/net/py-bittornado.orig/files/bittorrent-multi-downloader.1 Tue Sep 14 19:27:42 2004 +++ /usr/ports/net/py-bittornado/files/bittorrent-multi-downloader.1 Thu Jan 1 01:00:00 1970 @@ -1,29 +0,0 @@ -.TH "BITTORRENT-MULTI-DOWNLOADER" 1 "Jan 18 2003" -.SH NAME -bittorrent-multi-downloader \- multiple file clients for bittorrent -.SH SYNOPSIS -.nf -.B btlaunchmany \fIdirname\fP [ option ... ] -.B btlaunchmanycurses \fIdirname\fP [ option ... ] -.fi -.SH DESCRIPTION -This manual page documents briefly the \fBbtlaunchmany\fP and -\fBbtlaunchmanycurses\fP commands. -.PP -\fBbtlaunchmany\fP is a program that eases the use of -bittorrent in multiple-downloader situations. The program checks -a directory for torrent files. When it finds any, it starts a -separate downloader thread for each file. -.SH OPTIONS - -These programs have the exact same options as the normal -downloaders, which are documented in \fBbittorrent-downloader\fP(1). - -.SH SEE ALSO -.BR bittorrent-downloader (1), -.BR btmakemetafile (1), -.BR bttrack (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btcompletedir.1 /usr/ports/net/py-bittornado/files/btcompletedir.1 --- /usr/ports/net/py-bittornado.orig/files/btcompletedir.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btcompletedir.1 Thu Jan 1 01:00:00 1970 @@ -1,95 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTCOMPLETEDIR "1" "May 2004" "btcompletedir" "User Commands" -.SH NAME -btcompletedir \- manual page for btcompletedir -.SH SYNOPSIS -.B btcompletedir -\fI \fR[\fIdir\fR...] [\fIparams\fR...] -.SH DESCRIPTION -makes a .torrent file for every file or directory present in each dir. -.PP -\fB\-\-announce_list\fR -.IP -a list of announce URLs - explained below (defaults to '') -.PP -\fB\-\-piece_size_pow2\fR -.IP -which power of 2 to set the piece size to (0 = automatic) (defaults -to 0) -.PP -\fB\-\-comment\fR -.IP -optional human-readable comment to put in .torrent (defaults to '') -.PP -\fB\-\-target\fR -.IP -optional target file for the torrent (defaults to '') -.IP -announce_list = optional list of redundant/backup tracker URLs, in the format: -.IP -url[,url...][|url[,url...]...] -.IP -where URLs separated by commas are all tried first -before the next group of URLs separated by the pipe is checked. -If none is given, it is assumed you don't want one in the metafile. -If announce_list is given, clients which support it -will ignore the value. -.IP -Examples: -.IP -http://tracker1.com|http://tracker2.com|http://tracker3.com -.IP -(tries trackers 1-3 in order) -.IP -http://tracker1.com,http://tracker2.com,http://tracker3.com -.IP -(tries trackers 1-3 in a randomly selected order) -.IP -http://tracker1.com|http://backup1.com,http://backup2.com -.IP -(tries tracker 1 first, then tries between the 2 backups randomly) -.PP -makes a .torrent file for every file or directory present in each dir. -.PP -\fB\-\-announce_list\fR -.IP -a list of announce URLs - explained below (defaults to '') -.PP -\fB\-\-piece_size_pow2\fR -.IP -which power of 2 to set the piece size to (0 = automatic) (defaults -to 0) -.PP -\fB\-\-comment\fR -.IP -optional human-readable comment to put in .torrent (defaults to '') -.PP -\fB\-\-target\fR -.IP -optional target file for the torrent (defaults to '') -.IP -announce_list = optional list of redundant/backup tracker URLs, in the format: -.IP -url[,url...][|url[,url...]...] -.IP -where URLs separated by commas are all tried first -before the next group of URLs separated by the pipe is checked. -If none is given, it is assumed you don't want one in the metafile. -If announce_list is given, clients which support it -will ignore the value. -.IP -Examples: -.IP -http://tracker1.com|http://tracker2.com|http://tracker3.com -.IP -(tries trackers 1-3 in order) -.IP -http://tracker1.com,http://tracker2.com,http://tracker3.com -.IP -(tries trackers 1-3 in a randomly selected order) -.IP -http://tracker1.com|http://backup1.com,http://backup2.com -.IP -(tries tracker 1 first, then tries between the 2 backups randomly) -.SH "SEE ALSO" -http://bittornado.org diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btcopyannounce.1 /usr/ports/net/py-bittornado/files/btcopyannounce.1 --- /usr/ports/net/py-bittornado.orig/files/btcopyannounce.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btcopyannounce.1 Thu Jan 1 01:00:00 1970 @@ -1,13 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTCOPYANNOUNCE "1" "May 2004" "btcopyannounce" "User Commands" -.SH NAME -Btcopyannounce \- manual page for btcopyannounce -.SH SYNOPSIS -.B btcopyannounce -\fI \fR[\fIfile2.torrent\fR...] -.SH DESCRIPTION -copies announce information from source to all specified torrents -.PP -copies announce information from source to all specified torrents -.SH "SEE ALSO" -http://bittornado.org diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btdownloadcurses.1 /usr/ports/net/py-bittornado/files/btdownloadcurses.1 --- /usr/ports/net/py-bittornado.orig/files/btdownloadcurses.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btdownloadcurses.1 Thu Jan 1 01:00:00 1970 @@ -1,477 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTDOWNLOADCURSES "1" "August 2004" "btdownloadcurses (bittornado)" "User Commands" -.SH NAME -Btdownloadcurses \- curses bittornado download interface -.SH SYNOPSIS -.B btdownloadcurses -\fI\fR -.SH DESCRIPTION -Arguments are: -.PP -\fB\-\-max_uploads\fR -.IP -the maximum number of uploads to allow at once. (defaults to 7) -.PP -\fB\-\-keepalive_interval\fR -.IP -number of seconds to pause between sending keepalives (defaults to 120.0) -.PP -\fB\-\-download_slice_size\fR -.IP -How many bytes to query for per request. (defaults to 16384) -.PP -\fB\-\-upload_unit_size\fR -.IP -when limiting upload rate, how many bytes to send at a time (defaults to 1460) -.PP -\fB\-\-request_backlog\fR -.IP -maximum number of requests to keep in a single pipe at once. (defaults to 10) -.PP -\fB\-\-max_message_length\fR -.IP -maximum length prefix encoding you'll accept over the wire - larger values get the -connection dropped. (defaults to 8388608) -.PP -\fB\-\-ip\fR -.IP -ip to report you have to the tracker. (defaults to '') -.PP -\fB\-\-minport\fR -.IP -minimum port to listen on, counts up if unavailable (defaults to 10000) -.PP -\fB\-\-maxport\fR -.IP -maximum port to listen on (defaults to 60000) -.PP -\fB\-\-random_port\fR -.IP -whether to choose randomly inside the port range instead of counting up linearly -(defaults to 1) -.PP -\fB\-\-responsefile\fR -.IP -file the server response was stored in, alternative to url (defaults to '') -.PP -\fB\-\-url\fR -.IP -url to get file from, alternative to responsefile (defaults to '') -.PP -\fB\-\-selector_enabled\fR -.IP -whether to enable the file selector and fast resume function (defaults to 1) -.PP -\fB\-\-expire_cache_data\fR -.IP -the number of days after which you wish to expire old cache data (0 = disabled) (defaults -to 10) -.PP -\fB\-\-priority\fR -.IP -a list of file priorities separated by commas, must be one per file, 0 = highest, 1 = -normal, 2 = lowest, \fB\-1\fR = download disabled (defaults to '') -.PP -\fB\-\-saveas\fR -.IP -local file name to save the file as, null indicates query user (defaults to '') -.PP -\fB\-\-timeout\fR -.IP -time to wait between closing sockets which nothing has been received on (defaults to -300.0) -.PP -\fB\-\-timeout_check_interval\fR -.IP -time to wait between checking if any connections have timed out (defaults to 60.0) -.PP -\fB\-\-max_slice_length\fR -.IP -maximum length slice to send to peers, larger requests are ignored (defaults to 131072) -.PP -\fB\-\-max_rate_period\fR -.IP -maximum amount of time to guess the current rate estimate represents (defaults to 20.0) -.PP -\fB\-\-bind\fR -.IP -comma-separated list of ips/hostnames to bind to locally (defaults to '') -.PP -\fB\-\-ipv6_enabled\fR -.IP -allow the client to connect to peers via IPv6 (defaults to 0) -.PP -\fB\-\-ipv6_binds_v4\fR -.IP -set if an IPv6 server socket will also field IPv4 connections (defaults to 1) -.PP -\fB\-\-upnp_nat_access\fR -.IP -attempt to autoconfigure a UPnP router to forward a server port (0 = disabled, 1 = mode 1 -[fast], 2 = mode 2 [slow]) (defaults to 1) -.PP -\fB\-\-upload_rate_fudge\fR -.IP -time equivalent of writing to kernel-level TCP buffer, for rate adjustment (defaults to -5.0) -.PP -\fB\-\-tcp_ack_fudge\fR -.IP -how much TCP ACK download overhead to add to upload rate calculations (0 = disabled) -(defaults to 0.029999999999999999) -.PP -\fB\-\-display_interval\fR -.IP -time between updates of displayed information (defaults to 0.5) -.PP -\fB\-\-rerequest_interval\fR -.IP -time to wait between requesting more peers (defaults to 300) -.PP -\fB\-\-min_peers\fR -.IP -minimum number of peers to not do rerequesting (defaults to 20) -.PP -\fB\-\-http_timeout\fR -.IP -number of seconds to wait before assuming that an http connection has timed out (defaults -to 60) -.PP -\fB\-\-max_initiate\fR -.IP -number of peers at which to stop initiating new connections (defaults to 40) -.PP -\fB\-\-check_hashes\fR -.IP -whether to check hashes on disk (defaults to 1) -.PP -\fB\-\-max_upload_rate\fR -.IP -maximum kB/s to upload at (0 = no limit, \fB\-1\fR = automatic) (defaults to 0) -.PP -\fB\-\-max_download_rate\fR -.IP -maximum kB/s to download at (0 = no limit) (defaults to 0) -.PP -\fB\-\-alloc_type\fR -.IP -allocation type (may be normal, background, pre-allocate or sparse) (defaults to -\&'normal') -.PP -\fB\-\-alloc_rate\fR -.IP -rate (in MiB/s) to allocate space at using background allocation (defaults to 2.0) -.PP -\fB\-\-buffer_reads\fR -.IP -whether to buffer disk reads (defaults to 1) -.PP -\fB\-\-write_buffer_size\fR -.IP -the maximum amount of space to use for buffering disk writes (in megabytes, 0 = disabled) -(defaults to 4) -.PP -\fB\-\-snub_time\fR -.IP -seconds to wait for data to come in over a connection before assuming it's -semi-permanently choked (defaults to 30.0) -.PP -\fB\-\-spew\fR -.IP -whether to display diagnostic info to stdout (defaults to 0) -.PP -\fB\-\-rarest_first_cutoff\fR -.IP -number of downloads at which to switch from random to rarest first (defaults to 2) -.PP -\fB\-\-rarest_first_priority_cutoff\fR -.IP -the number of peers which need to have a piece before other partials take priority over -rarest first (defaults to 5) -.PP -\fB\-\-min_uploads\fR -.IP -the number of uploads to fill out to with extra optimistic unchokes (defaults to 4) -.PP -\fB\-\-max_files_open\fR -.IP -the maximum number of files to keep open at a time, 0 means no limit (defaults to 50) -.PP -\fB\-\-round_robin_period\fR -.IP -the number of seconds between the client's switching upload targets (defaults to 30) -.PP -\fB\-\-super_seeder\fR -.IP -whether to use special upload-efficiency-maximizing routines (only for dedicated seeds) -(defaults to 0) -.PP -\fB\-\-security\fR -.IP -whether to enable extra security features intended to prevent abuse (defaults to 1) -.PP -\fB\-\-max_connections\fR -.IP -the absolute maximum number of peers to connect with (0 = no limit) (defaults to 0) -.PP -\fB\-\-auto_kick\fR -.IP -whether to allow the client to automatically kick/ban peers that send bad data (defaults -to 1) -.PP -\fB\-\-double_check\fR -.IP -whether to double-check data being written to the disk for errors (may increase CPU load) -(defaults to 1) -.PP -\fB\-\-triple_check\fR -.IP -whether to thoroughly check data being written to the disk (may slow disk access) -(defaults to 0) -.PP -\fB\-\-lock_files\fR -.IP -whether to lock files the client is working with (defaults to 1) -.PP -\fB\-\-lock_while_reading\fR -.IP -whether to lock access to files being read (defaults to 0) -.PP -\fB\-\-auto_flush\fR -.IP -minutes between automatic flushes to disk (0 = disabled) (defaults to 0) -.PP -Arguments are: -.PP -\fB\-\-max_uploads\fR -.IP -the maximum number of uploads to allow at once. (defaults to 7) -.PP -\fB\-\-keepalive_interval\fR -.IP -number of seconds to pause between sending keepalives (defaults to 120.0) -.PP -\fB\-\-download_slice_size\fR -.IP -How many bytes to query for per request. (defaults to 16384) -.PP -\fB\-\-upload_unit_size\fR -.IP -when limiting upload rate, how many bytes to send at a time (defaults to 1460) -.PP -\fB\-\-request_backlog\fR -.IP -maximum number of requests to keep in a single pipe at once. (defaults to 10) -.PP -\fB\-\-max_message_length\fR -.IP -maximum length prefix encoding you'll accept over the wire - larger values get the -connection dropped. (defaults to 8388608) -.PP -\fB\-\-ip\fR -.IP -ip to report you have to the tracker. (defaults to '') -.PP -\fB\-\-minport\fR -.IP -minimum port to listen on, counts up if unavailable (defaults to 10000) -.PP -\fB\-\-maxport\fR -.IP -maximum port to listen on (defaults to 60000) -.PP -\fB\-\-random_port\fR -.IP -whether to choose randomly inside the port range instead of counting up linearly -(defaults to 1) -.PP -\fB\-\-responsefile\fR -.IP -file the server response was stored in, alternative to url (defaults to '') -.PP -\fB\-\-url\fR -.IP -url to get file from, alternative to responsefile (defaults to '') -.PP -\fB\-\-selector_enabled\fR -.IP -whether to enable the file selector and fast resume function (defaults to 1) -.PP -\fB\-\-expire_cache_data\fR -.IP -the number of days after which you wish to expire old cache data (0 = disabled) (defaults -to 10) -.PP -\fB\-\-priority\fR -.IP -a list of file priorities separated by commas, must be one per file, 0 = highest, 1 = -normal, 2 = lowest, \fB\-1\fR = download disabled (defaults to '') -.PP -\fB\-\-saveas\fR -.IP -local file name to save the file as, null indicates query user (defaults to '') -.PP -\fB\-\-timeout\fR -.IP -time to wait between closing sockets which nothing has been received on (defaults to -300.0) -.PP -\fB\-\-timeout_check_interval\fR -.IP -time to wait between checking if any connections have timed out (defaults to 60.0) -.PP -\fB\-\-max_slice_length\fR -.IP -maximum length slice to send to peers, larger requests are ignored (defaults to 131072) -.PP -\fB\-\-max_rate_period\fR -.IP -maximum amount of time to guess the current rate estimate represents (defaults to 20.0) -.PP -\fB\-\-bind\fR -.IP -comma-separated list of ips/hostnames to bind to locally (defaults to '') -.PP -\fB\-\-ipv6_enabled\fR -.IP -allow the client to connect to peers via IPv6 (defaults to 0) -.PP -\fB\-\-ipv6_binds_v4\fR -.IP -set if an IPv6 server socket will also field IPv4 connections (defaults to 1) -.PP -\fB\-\-upnp_nat_access\fR -.IP -attempt to autoconfigure a UPnP router to forward a server port (0 = disabled, 1 = mode 1 -[fast], 2 = mode 2 [slow]) (defaults to 1) -.PP -\fB\-\-upload_rate_fudge\fR -.IP -time equivalent of writing to kernel-level TCP buffer, for rate adjustment (defaults to -5.0) -.PP -\fB\-\-tcp_ack_fudge\fR -.IP -how much TCP ACK download overhead to add to upload rate calculations (0 = disabled) -(defaults to 0.029999999999999999) -.PP -\fB\-\-display_interval\fR -.IP -time between updates of displayed information (defaults to 0.5) -.PP -\fB\-\-rerequest_interval\fR -.IP -time to wait between requesting more peers (defaults to 300) -.PP -\fB\-\-min_peers\fR -.IP -minimum number of peers to not do rerequesting (defaults to 20) -.PP -\fB\-\-http_timeout\fR -.IP -number of seconds to wait before assuming that an http connection has timed out (defaults -to 60) -.PP -\fB\-\-max_initiate\fR -.IP -number of peers at which to stop initiating new connections (defaults to 40) -.PP -\fB\-\-check_hashes\fR -.IP -whether to check hashes on disk (defaults to 1) -.PP -\fB\-\-max_upload_rate\fR -.IP -maximum kB/s to upload at (0 = no limit, \fB\-1\fR = automatic) (defaults to 0) -.PP -\fB\-\-max_download_rate\fR -.IP -maximum kB/s to download at (0 = no limit) (defaults to 0) -.PP -\fB\-\-alloc_type\fR -.IP -allocation type (may be normal, background, pre-allocate or sparse) (defaults to -\&'normal') -.PP -\fB\-\-alloc_rate\fR -.IP -rate (in MiB/s) to allocate space at using background allocation (defaults to 2.0) -.PP -\fB\-\-buffer_reads\fR -.IP -whether to buffer disk reads (defaults to 1) -.PP -\fB\-\-write_buffer_size\fR -.IP -the maximum amount of space to use for buffering disk writes (in megabytes, 0 = disabled) -(defaults to 4) -.PP -\fB\-\-snub_time\fR -.IP -seconds to wait for data to come in over a connection before assuming it's -semi-permanently choked (defaults to 30.0) -.PP -\fB\-\-spew\fR -.IP -whether to display diagnostic info to stdout (defaults to 0) -.PP -\fB\-\-rarest_first_cutoff\fR -.IP -number of downloads at which to switch from random to rarest first (defaults to 2) -.PP -\fB\-\-rarest_first_priority_cutoff\fR -.IP -the number of peers which need to have a piece before other partials take priority over -rarest first (defaults to 5) -.PP -\fB\-\-min_uploads\fR -.IP -the number of uploads to fill out to with extra optimistic unchokes (defaults to 4) -.PP -\fB\-\-max_files_open\fR -.IP -the maximum number of files to keep open at a time, 0 means no limit (defaults to 50) -.PP -\fB\-\-round_robin_period\fR -.IP -the number of seconds between the client's switching upload targets (defaults to 30) -.PP -\fB\-\-super_seeder\fR -.IP -whether to use special upload-efficiency-maximizing routines (only for dedicated seeds) -(defaults to 0) -.PP -\fB\-\-security\fR -.IP -whether to enable extra security features intended to prevent abuse (defaults to 1) -.PP -\fB\-\-max_connections\fR -.IP -the absolute maximum number of peers to connect with (0 = no limit) (defaults to 0) -.PP -\fB\-\-auto_kick\fR -.IP -whether to allow the client to automatically kick/ban peers that send bad data (defaults -to 1) -.PP -\fB\-\-double_check\fR -.IP -whether to double-check data being written to the disk for errors (may increase CPU load) -(defaults to 1) -.PP -\fB\-\-triple_check\fR -.IP -whether to thoroughly check data being written to the disk (may slow disk access) -(defaults to 0) -.PP -\fB\-\-lock_files\fR -.IP -whether to lock files the client is working with (defaults to 1) -.PP -\fB\-\-lock_while_reading\fR -.IP -whether to lock access to files being read (defaults to 0) -.PP -\fB\-\-auto_flush\fR -.IP -minutes between automatic flushes to disk (0 = disabled) (defaults to 0) diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btdownloadheadless.1 /usr/ports/net/py-bittornado/files/btdownloadheadless.1 --- /usr/ports/net/py-bittornado.orig/files/btdownloadheadless.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btdownloadheadless.1 Thu Jan 1 01:00:00 1970 @@ -1,268 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTDOWNLOADHEADLESS "1" "August 2004" "btdownloadheadless (bittornado)" "User Commands" -.SH NAME -btdownloadheadless \- headless bittornado download interface -.SH DESCRIPTION -Arguments are: -.PP -\fB\-\-max_uploads\fR -.IP -the maximum number of uploads to allow at once. (defaults to 7) -.PP -\fB\-\-keepalive_interval\fR -.IP -number of seconds to pause between sending keepalives (defaults to -120.0) -.PP -\fB\-\-download_slice_size\fR -.IP -How many bytes to query for per request. (defaults to 16384) -.PP -\fB\-\-upload_unit_size\fR -.IP -when limiting upload rate, how many bytes to send at a time (defaults -to 1460) -.PP -\fB\-\-request_backlog\fR -.IP -maximum number of requests to keep in a single pipe at once. -(defaults to 10) -.PP -\fB\-\-max_message_length\fR -.IP -maximum length prefix encoding you'll accept over the wire - larger -values get the connection dropped. (defaults to 8388608) -.PP -\fB\-\-ip\fR -.IP -ip to report you have to the tracker. (defaults to '') -.PP -\fB\-\-minport\fR -.IP -minimum port to listen on, counts up if unavailable (defaults to -10000) -.PP -\fB\-\-maxport\fR -.IP -maximum port to listen on (defaults to 60000) -.PP -\fB\-\-random_port\fR -.IP -whether to choose randomly inside the port range instead of counting -up linearly (defaults to 1) -.PP -\fB\-\-responsefile\fR -.IP -file the server response was stored in, alternative to url (defaults -to '') -.PP -\fB\-\-url\fR -.IP -url to get file from, alternative to responsefile (defaults to '') -.PP -\fB\-\-selector_enabled\fR -.IP -whether to enable the file selector and fast resume function -(defaults to 1) -.PP -\fB\-\-expire_cache_data\fR -.IP -the number of days after which you wish to expire old cache data (0 = -disabled) (defaults to 10) -.PP -\fB\-\-priority\fR -.IP -a list of file priorities separated by commas, must be one per file, -0 = highest, 1 = normal, 2 = lowest, \fB\-1\fR = download disabled (defaults -to '') -.PP -\fB\-\-saveas\fR -.IP -local file name to save the file as, null indicates query user -(defaults to '') -.PP -\fB\-\-timeout\fR -.IP -time to wait between closing sockets which nothing has been received -on (defaults to 300.0) -.PP -\fB\-\-timeout_check_interval\fR -.IP -time to wait between checking if any connections have timed out -(defaults to 60.0) -.PP -\fB\-\-max_slice_length\fR -.IP -maximum length slice to send to peers, larger requests are ignored -(defaults to 131072) -.PP -\fB\-\-max_rate_period\fR -.IP -maximum amount of time to guess the current rate estimate represents -(defaults to 20.0) -.PP -\fB\-\-bind\fR -.IP -comma-separated list of ips/hostnames to bind to locally (defaults to -\&'') -.PP -\fB\-\-ipv6_enabled\fR -.IP -allow the client to connect to peers via IPv6 (defaults to 0) -.PP -\fB\-\-ipv6_binds_v4\fR -.IP -set if an IPv6 server socket will also field IPv4 connections -(defaults to 1) -.PP -\fB\-\-upnp_nat_access\fR -.IP -attempt to autoconfigure a UPnP router to forward a server port (0 = -disabled, 1 = mode 1 [fast], 2 = mode 2 [slow]) (defaults to 1) -.PP -\fB\-\-upload_rate_fudge\fR -.IP -time equivalent of writing to kernel-level TCP buffer, for rate -adjustment (defaults to 5.0) -.PP -\fB\-\-tcp_ack_fudge\fR -.IP -how much TCP ACK download overhead to add to upload rate calculations -(0 = disabled) (defaults to 0.029999999999999999) -.PP -\fB\-\-display_interval\fR -.IP -time between updates of displayed information (defaults to 0.5) -.PP -\fB\-\-rerequest_interval\fR -.IP -time to wait between requesting more peers (defaults to 300) -.PP -\fB\-\-min_peers\fR -.IP -minimum number of peers to not do rerequesting (defaults to 20) -.PP -\fB\-\-http_timeout\fR -.IP -number of seconds to wait before assuming that an http connection has -timed out (defaults to 60) -.PP -\fB\-\-max_initiate\fR -.IP -number of peers at which to stop initiating new connections (defaults -to 40) -.PP -\fB\-\-check_hashes\fR -.IP -whether to check hashes on disk (defaults to 1) -.PP -\fB\-\-max_upload_rate\fR -.IP -maximum kB/s to upload at (0 = no limit, \fB\-1\fR = automatic) (defaults to -0) -.PP -\fB\-\-max_download_rate\fR -.IP -maximum kB/s to download at (0 = no limit) (defaults to 0) -.PP -\fB\-\-alloc_type\fR -.IP -allocation type (may be normal, background, pre-allocate or sparse) -(defaults to 'normal') -.PP -\fB\-\-alloc_rate\fR -.IP -rate (in MiB/s) to allocate space at using background allocation -(defaults to 2.0) -.PP -\fB\-\-buffer_reads\fR -.IP -whether to buffer disk reads (defaults to 1) -.PP -\fB\-\-write_buffer_size\fR -.IP -the maximum amount of space to use for buffering disk writes (in -megabytes, 0 = disabled) (defaults to 4) -.PP -\fB\-\-snub_time\fR -.IP -seconds to wait for data to come in over a connection before assuming -it's semi-permanently choked (defaults to 30.0) -.PP -\fB\-\-spew\fR -.IP -whether to display diagnostic info to stdout (defaults to 0) -.PP -\fB\-\-rarest_first_cutoff\fR -.IP -number of downloads at which to switch from random to rarest first -(defaults to 2) -.PP -\fB\-\-rarest_first_priority_cutoff\fR -.IP -the number of peers which need to have a piece before other partials -take priority over rarest first (defaults to 5) -.PP -\fB\-\-min_uploads\fR -.IP -the number of uploads to fill out to with extra optimistic unchokes -(defaults to 4) -.PP -\fB\-\-max_files_open\fR -.IP -the maximum number of files to keep open at a time, 0 means no limit -(defaults to 50) -.PP -\fB\-\-round_robin_period\fR -.IP -the number of seconds between the client's switching upload targets -(defaults to 30) -.PP -\fB\-\-super_seeder\fR -.IP -whether to use special upload-efficiency-maximizing routines (only -for dedicated seeds) (defaults to 0) -.PP -\fB\-\-security\fR -.IP -whether to enable extra security features intended to prevent abuse -(defaults to 1) -.PP -\fB\-\-max_connections\fR -.IP -the absolute maximum number of peers to connect with (0 = no limit) -(defaults to 0) -.PP -\fB\-\-auto_kick\fR -.IP -whether to allow the client to automatically kick/ban peers that send -bad data (defaults to 1) -.PP -\fB\-\-double_check\fR -.IP -whether to double-check data being written to the disk for errors -(may increase CPU load) (defaults to 1) -.PP -\fB\-\-triple_check\fR -.IP -whether to thoroughly check data being written to the disk (may slow -disk access) (defaults to 0) -.PP -\fB\-\-lock_files\fR -.IP -whether to lock files the client is working with (defaults to 1) -.PP -\fB\-\-lock_while_reading\fR -.IP -whether to lock access to files being read (defaults to 0) -.PP -\fB\-\-auto_flush\fR -.IP -minutes between automatic flushes to disk (0 = disabled) (defaults to -0) -.PP -\fB\-\-save_options\fR -.IP -whether to save the current options as the new default configuration -(only for btdownloadheadless.py) (defaults to 0) -.PP diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btlaunchmany.1 /usr/ports/net/py-bittornado/files/btlaunchmany.1 --- /usr/ports/net/py-bittornado.orig/files/btlaunchmany.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btlaunchmany.1 Thu Jan 1 01:00:00 1970 @@ -1,288 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTLAUNCHMANY "1" "August 2004" "btlaunchmany (bttornado)" "User Commands" -.SH NAME -Btlaunchmany \- manual page for btlaunchmany -.SH SYNOPSIS -.B btlaunchmany -\fI \fR -.SH DESCRIPTION - - directory to look for .torrent files (semi-recursive) -Arguments are: -.PP -\fB\-\-max_uploads\fR -.IP -the maximum number of uploads to allow at once. (defaults to 7) -.PP -\fB\-\-keepalive_interval\fR -.IP -number of seconds to pause between sending keepalives (defaults to -120.0) -.PP -\fB\-\-download_slice_size\fR -.IP -How many bytes to query for per request. (defaults to 16384) -.PP -\fB\-\-upload_unit_size\fR -.IP -when limiting upload rate, how many bytes to send at a time (defaults -to 1460) -.PP -\fB\-\-request_backlog\fR -.IP -maximum number of requests to keep in a single pipe at once. -(defaults to 10) -.PP -\fB\-\-max_message_length\fR -.IP -maximum length prefix encoding you'll accept over the wire - larger -values get the connection dropped. (defaults to 8388608) -.PP -\fB\-\-ip\fR -.IP -ip to report you have to the tracker. (defaults to '') -.PP -\fB\-\-minport\fR -.IP -minimum port to listen on, counts up if unavailable (defaults to -10000) -.PP -\fB\-\-maxport\fR -.IP -maximum port to listen on (defaults to 60000) -.PP -\fB\-\-random_port\fR -.IP -whether to choose randomly inside the port range instead of counting -up linearly (defaults to 1) -.PP -\fB\-\-responsefile\fR -.IP -file the server response was stored in, alternative to url (defaults -to '') -.PP -\fB\-\-url\fR -.IP -url to get file from, alternative to responsefile (defaults to '') -.PP -\fB\-\-selector_enabled\fR -.IP -whether to enable the file selector and fast resume function -(defaults to 1) -.PP -\fB\-\-expire_cache_data\fR -.IP -the number of days after which you wish to expire old cache data (0 = -disabled) (defaults to 10) -.PP -\fB\-\-priority\fR -.IP -a list of file priorities separated by commas, must be one per file, -0 = highest, 1 = normal, 2 = lowest, \fB\-1\fR = download disabled (defaults -to '') -.PP -\fB\-\-saveas\fR -.IP -local file name to save the file as, null indicates query user -(defaults to '') -.PP -\fB\-\-timeout\fR -.IP -time to wait between closing sockets which nothing has been received -on (defaults to 300.0) -.PP -\fB\-\-timeout_check_interval\fR -.IP -time to wait between checking if any connections have timed out -(defaults to 60.0) -.PP -\fB\-\-max_slice_length\fR -.IP -maximum length slice to send to peers, larger requests are ignored -(defaults to 131072) -.PP -\fB\-\-max_rate_period\fR -.IP -maximum amount of time to guess the current rate estimate represents -(defaults to 20.0) -.PP -\fB\-\-bind\fR -.IP -comma-separated list of ips/hostnames to bind to locally (defaults to -\&'') -.PP -\fB\-\-ipv6_enabled\fR -.IP -allow the client to connect to peers via IPv6 (defaults to 0) -.PP -\fB\-\-ipv6_binds_v4\fR -.IP -set if an IPv6 server socket will also field IPv4 connections -(defaults to 1) -.PP -\fB\-\-upnp_nat_access\fR -.IP -attempt to autoconfigure a UPnP router to forward a server port (0 = -disabled, 1 = mode 1 [fast], 2 = mode 2 [slow]) (defaults to 1) -.PP -\fB\-\-upload_rate_fudge\fR -.IP -time equivalent of writing to kernel-level TCP buffer, for rate -adjustment (defaults to 5.0) -.PP -\fB\-\-tcp_ack_fudge\fR -.IP -how much TCP ACK download overhead to add to upload rate calculations -(0 = disabled) (defaults to 0.029999999999999999) -.PP -\fB\-\-display_interval\fR -.IP -time between updates of displayed information (defaults to 0.5) -.PP -\fB\-\-rerequest_interval\fR -.IP -time to wait between requesting more peers (defaults to 300) -.PP -\fB\-\-min_peers\fR -.IP -minimum number of peers to not do rerequesting (defaults to 20) -.PP -\fB\-\-http_timeout\fR -.IP -number of seconds to wait before assuming that an http connection has -timed out (defaults to 60) -.PP -\fB\-\-max_initiate\fR -.IP -number of peers at which to stop initiating new connections (defaults -to 40) -.PP -\fB\-\-check_hashes\fR -.IP -whether to check hashes on disk (defaults to 1) -.PP -\fB\-\-max_upload_rate\fR -.IP -maximum kB/s to upload at (0 = no limit, \fB\-1\fR = automatic) (defaults to -0) -.PP -\fB\-\-max_download_rate\fR -.IP -maximum kB/s to download at (0 = no limit) (defaults to 0) -.PP -\fB\-\-alloc_type\fR -.IP -allocation type (may be normal, background, pre-allocate or sparse) -(defaults to 'normal') -.PP -\fB\-\-alloc_rate\fR -.IP -rate (in MiB/s) to allocate space at using background allocation -(defaults to 2.0) -.PP -\fB\-\-buffer_reads\fR -.IP -whether to buffer disk reads (defaults to 1) -.PP -\fB\-\-write_buffer_size\fR -.IP -the maximum amount of space to use for buffering disk writes (in -megabytes, 0 = disabled) (defaults to 4) -.PP -\fB\-\-snub_time\fR -.IP -seconds to wait for data to come in over a connection before assuming -it's semi-permanently choked (defaults to 30.0) -.PP -\fB\-\-spew\fR -.IP -whether to display diagnostic info to stdout (defaults to 0) -.PP -\fB\-\-rarest_first_cutoff\fR -.IP -number of downloads at which to switch from random to rarest first -(defaults to 2) -.PP -\fB\-\-rarest_first_priority_cutoff\fR -.IP -the number of peers which need to have a piece before other partials -take priority over rarest first (defaults to 5) -.PP -\fB\-\-min_uploads\fR -.IP -the number of uploads to fill out to with extra optimistic unchokes -(defaults to 4) -.PP -\fB\-\-max_files_open\fR -.IP -the maximum number of files to keep open at a time, 0 means no limit -(defaults to 50) -.PP -\fB\-\-round_robin_period\fR -.IP -the number of seconds between the client's switching upload targets -(defaults to 30) -.PP -\fB\-\-super_seeder\fR -.IP -whether to use special upload-efficiency-maximizing routines (only -for dedicated seeds) (defaults to 0) -.PP -\fB\-\-security\fR -.IP -whether to enable extra security features intended to prevent abuse -(defaults to 1) -.PP -\fB\-\-max_connections\fR -.IP -the absolute maximum number of peers to connect with (0 = no limit) -(defaults to 0) -.PP -\fB\-\-auto_kick\fR -.IP -whether to allow the client to automatically kick/ban peers that send -bad data (defaults to 1) -.PP -\fB\-\-double_check\fR -.IP -whether to double-check data being written to the disk for errors -(may increase CPU load) (defaults to 1) -.PP -\fB\-\-triple_check\fR -.IP -whether to thoroughly check data being written to the disk (may slow -disk access) (defaults to 0) -.PP -\fB\-\-lock_files\fR -.IP -whether to lock files the client is working with (defaults to 1) -.PP -\fB\-\-lock_while_reading\fR -.IP -whether to lock access to files being read (defaults to 0) -.PP -\fB\-\-auto_flush\fR -.IP -minutes between automatic flushes to disk (0 = disabled) (defaults to -0) -.PP -\fB\-\-parse_dir_interval\fR -.IP -how often to rescan the torrent directory, in seconds (defaults to -60) -.PP -\fB\-\-saveas_style\fR -.IP -How to name torrent downloads (1 = rename to torrent name, 2 = save -under name in torrent, 3 = save in directory under torrent name) -(defaults to 1) -.PP -\fB\-\-display_path\fR -.IP -whether to display the full path or the torrent contents for each -torrent (defaults to 1) -.PP -\fB\-\-save_options\fR -.IP -whether to save the current options as the new default configuration -(only for btlaunchmany) (defaults to 0) -.PP diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btlaunchmanycurses.1 /usr/ports/net/py-bittornado/files/btlaunchmanycurses.1 --- /usr/ports/net/py-bittornado.orig/files/btlaunchmanycurses.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btlaunchmanycurses.1 Thu Jan 1 01:00:00 1970 @@ -1,288 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTLAUNCHMANYCURSES "1" "August 2004" "btlaunchmanycurses (bittornado)" "User Commands" -.SH NAME -Btlaunchmanycurses: \- launch separate torrent download threads for each .torrent file in directory -.SH SYNOPSIS -.B btlaunchmanycurses -\fI \fR -.SH DESCRIPTION - - directory to look for .torrent files (semi-recursive) -Arguments are: -.PP -\fB\-\-max_uploads\fR -.IP -the maximum number of uploads to allow at once. (defaults to 7) -.PP -\fB\-\-keepalive_interval\fR -.IP -number of seconds to pause between sending keepalives (defaults to -120.0) -.PP -\fB\-\-download_slice_size\fR -.IP -How many bytes to query for per request. (defaults to 16384) -.PP -\fB\-\-upload_unit_size\fR -.IP -when limiting upload rate, how many bytes to send at a time (defaults -to 1460) -.PP -\fB\-\-request_backlog\fR -.IP -maximum number of requests to keep in a single pipe at once. -(defaults to 10) -.PP -\fB\-\-max_message_length\fR -.IP -maximum length prefix encoding you'll accept over the wire - larger -values get the connection dropped. (defaults to 8388608) -.PP -\fB\-\-ip\fR -.IP -ip to report you have to the tracker. (defaults to '') -.PP -\fB\-\-minport\fR -.IP -minimum port to listen on, counts up if unavailable (defaults to -10000) -.PP -\fB\-\-maxport\fR -.IP -maximum port to listen on (defaults to 60000) -.PP -\fB\-\-random_port\fR -.IP -whether to choose randomly inside the port range instead of counting -up linearly (defaults to 1) -.PP -\fB\-\-responsefile\fR -.IP -file the server response was stored in, alternative to url (defaults -to '') -.PP -\fB\-\-url\fR -.IP -url to get file from, alternative to responsefile (defaults to '') -.PP -\fB\-\-selector_enabled\fR -.IP -whether to enable the file selector and fast resume function -(defaults to 1) -.PP -\fB\-\-expire_cache_data\fR -.IP -the number of days after which you wish to expire old cache data (0 = -disabled) (defaults to 10) -.PP -\fB\-\-priority\fR -.IP -a list of file priorities separated by commas, must be one per file, -0 = highest, 1 = normal, 2 = lowest, \fB\-1\fR = download disabled (defaults -to '') -.PP -\fB\-\-saveas\fR -.IP -local file name to save the file as, null indicates query user -(defaults to '') -.PP -\fB\-\-timeout\fR -.IP -time to wait between closing sockets which nothing has been received -on (defaults to 300.0) -.PP -\fB\-\-timeout_check_interval\fR -.IP -time to wait between checking if any connections have timed out -(defaults to 60.0) -.PP -\fB\-\-max_slice_length\fR -.IP -maximum length slice to send to peers, larger requests are ignored -(defaults to 131072) -.PP -\fB\-\-max_rate_period\fR -.IP -maximum amount of time to guess the current rate estimate represents -(defaults to 20.0) -.PP -\fB\-\-bind\fR -.IP -comma-separated list of ips/hostnames to bind to locally (defaults to -\&'') -.PP -\fB\-\-ipv6_enabled\fR -.IP -allow the client to connect to peers via IPv6 (defaults to 0) -.PP -\fB\-\-ipv6_binds_v4\fR -.IP -set if an IPv6 server socket will also field IPv4 connections -(defaults to 1) -.PP -\fB\-\-upnp_nat_access\fR -.IP -attempt to autoconfigure a UPnP router to forward a server port (0 = -disabled, 1 = mode 1 [fast], 2 = mode 2 [slow]) (defaults to 1) -.PP -\fB\-\-upload_rate_fudge\fR -.IP -time equivalent of writing to kernel-level TCP buffer, for rate -adjustment (defaults to 5.0) -.PP -\fB\-\-tcp_ack_fudge\fR -.IP -how much TCP ACK download overhead to add to upload rate calculations -(0 = disabled) (defaults to 0.029999999999999999) -.PP -\fB\-\-display_interval\fR -.IP -time between updates of displayed information (defaults to 0.5) -.PP -\fB\-\-rerequest_interval\fR -.IP -time to wait between requesting more peers (defaults to 300) -.PP -\fB\-\-min_peers\fR -.IP -minimum number of peers to not do rerequesting (defaults to 20) -.PP -\fB\-\-http_timeout\fR -.IP -number of seconds to wait before assuming that an http connection has -timed out (defaults to 60) -.PP -\fB\-\-max_initiate\fR -.IP -number of peers at which to stop initiating new connections (defaults -to 40) -.PP -\fB\-\-check_hashes\fR -.IP -whether to check hashes on disk (defaults to 1) -.PP -\fB\-\-max_upload_rate\fR -.IP -maximum kB/s to upload at (0 = no limit, \fB\-1\fR = automatic) (defaults to -0) -.PP -\fB\-\-max_download_rate\fR -.IP -maximum kB/s to download at (0 = no limit) (defaults to 0) -.PP -\fB\-\-alloc_type\fR -.IP -allocation type (may be normal, background, pre-allocate or sparse) -(defaults to 'normal') -.PP -\fB\-\-alloc_rate\fR -.IP -rate (in MiB/s) to allocate space at using background allocation -(defaults to 2.0) -.PP -\fB\-\-buffer_reads\fR -.IP -whether to buffer disk reads (defaults to 1) -.PP -\fB\-\-write_buffer_size\fR -.IP -the maximum amount of space to use for buffering disk writes (in -megabytes, 0 = disabled) (defaults to 4) -.PP -\fB\-\-snub_time\fR -.IP -seconds to wait for data to come in over a connection before assuming -it's semi-permanently choked (defaults to 30.0) -.PP -\fB\-\-spew\fR -.IP -whether to display diagnostic info to stdout (defaults to 0) -.PP -\fB\-\-rarest_first_cutoff\fR -.IP -number of downloads at which to switch from random to rarest first -(defaults to 2) -.PP -\fB\-\-rarest_first_priority_cutoff\fR -.IP -the number of peers which need to have a piece before other partials -take priority over rarest first (defaults to 5) -.PP -\fB\-\-min_uploads\fR -.IP -the number of uploads to fill out to with extra optimistic unchokes -(defaults to 4) -.PP -\fB\-\-max_files_open\fR -.IP -the maximum number of files to keep open at a time, 0 means no limit -(defaults to 50) -.PP -\fB\-\-round_robin_period\fR -.IP -the number of seconds between the client's switching upload targets -(defaults to 30) -.PP -\fB\-\-super_seeder\fR -.IP -whether to use special upload-efficiency-maximizing routines (only -for dedicated seeds) (defaults to 0) -.PP -\fB\-\-security\fR -.IP -whether to enable extra security features intended to prevent abuse -(defaults to 1) -.PP -\fB\-\-max_connections\fR -.IP -the absolute maximum number of peers to connect with (0 = no limit) -(defaults to 0) -.PP -\fB\-\-auto_kick\fR -.IP -whether to allow the client to automatically kick/ban peers that send -bad data (defaults to 1) -.PP -\fB\-\-double_check\fR -.IP -whether to double-check data being written to the disk for errors -(may increase CPU load) (defaults to 1) -.PP -\fB\-\-triple_check\fR -.IP -whether to thoroughly check data being written to the disk (may slow -disk access) (defaults to 0) -.PP -\fB\-\-lock_files\fR -.IP -whether to lock files the client is working with (defaults to 1) -.PP -\fB\-\-lock_while_reading\fR -.IP -whether to lock access to files being read (defaults to 0) -.PP -\fB\-\-auto_flush\fR -.IP -minutes between automatic flushes to disk (0 = disabled) (defaults to -0) -.PP -\fB\-\-parse_dir_interval\fR -.IP -how often to rescan the torrent directory, in seconds (defaults to -60) -.PP -\fB\-\-saveas_style\fR -.IP -How to name torrent downloads (1 = rename to torrent name, 2 = save -under name in torrent, 3 = save in directory under torrent name) -(defaults to 2) -.PP -\fB\-\-display_path\fR -.IP -whether to display the full path or the torrent contents for each -torrent (defaults to 0) -.PP -\fB\-\-save_options\fR -.IP -whether to save the current options as the new default configuration -(only for btlaunchmanycurses.py) (defaults to 0) -.PP diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btmakemetafile.1 /usr/ports/net/py-bittornado/files/btmakemetafile.1 --- /usr/ports/net/py-bittornado.orig/files/btmakemetafile.1 Tue Sep 14 19:27:15 2004 +++ /usr/ports/net/py-bittornado/files/btmakemetafile.1 Thu Jan 1 01:00:00 1970 @@ -1,50 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH "BTMAKEMETAFILE" 1 "Jan 18 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -btmakemetafile \- program to generate torrent info files for bittorrent -.SH SYNOPSIS -.B btmakemetafile \fItracker_announce_address\fP \fIfile\fP [ option ... ] -.SH DESCRIPTION -This manual page documents briefly the \fBbtmakemetafile\fP -command. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBbtmakemetafile\fP is a program that generates the torrent info files -which are distributed to bittorrent clients (usually via the WWW) in order -to inform them where the designated tracker for the torrent is located, and -to allow them to verify the file's contents. -.PP -\fBbtmakemetafile\fP takes two arguments. Both are required. The first -is the file that the torrent info file will be generated for. The second is -the "announce" address of a tracker (ex. http://127.0.0.1:6969/announce). -.SH OPTIONS -.TP -.B \-\-piece_size_pow2 \fIarg\fP -which power of 2 to set the piece size to (default: 18) - -.SH SEE ALSO -.BR bittorrent-downloader (1), -.BR btrename (1), -.BR btreannounce (1), -.BR bttrack (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btreannounce.1 /usr/ports/net/py-bittornado/files/btreannounce.1 --- /usr/ports/net/py-bittornado.orig/files/btreannounce.1 Tue Sep 14 19:29:20 2004 +++ /usr/ports/net/py-bittornado/files/btreannounce.1 Thu Jan 1 01:00:00 1970 @@ -1,42 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH "BTREANNOUNCE" 1 "Jan 18 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -btreannounce \- change the announce address of a torrent file. -.SH SYNOPSIS -\fBbttrack\fP \fIurl\fP \fIoldtorrent\fP \fInewtorrent\fP -.SH DESCRIPTION -This manual page documents briefly the \fBbtreannounce\fP -command. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBbtreannounce\fP is a program which will change the announce -address of a existing torrent file. The torrent specified by -the \fIoldtorrent\fP argument will be modified to use the new -announce url given by the \fIurl\fP argument, and the changed -file will be saved as \fInewtorrent\fP. - -.SH SEE ALSO -.BR bittorrent-downloader (1), -.BR btmakemetafile (1), -.BR btrename (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btrename.1 /usr/ports/net/py-bittornado/files/btrename.1 --- /usr/ports/net/py-bittornado.orig/files/btrename.1 Tue Sep 14 19:29:31 2004 +++ /usr/ports/net/py-bittornado/files/btrename.1 Thu Jan 1 01:00:00 1970 @@ -1,42 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH "BTRENAME" 1 "Jan 18 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -btrename \- change the suggested filename inside a bittorrent file -.SH SYNOPSIS -\fBbttrack\fP \fItorrent\fP \fInewfilename\fP -.SH DESCRIPTION -This manual page documents briefly the \fBbtrename\fP -command. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBbtrename\fP is a program which will change the suggested -filename presented to the user for a bittorrent file. This -will make the downloader save it as a different name by default. -The torrent specified by the \fItorrent\fP option is modified -in-place, changing the suggested filename to \fInewfilename\fP. - -.SH SEE ALSO -.BR bittorrent-downloader (1), -.BR btmakemetafile (1), -.BR btreannounce (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btsethttpseeds.1 /usr/ports/net/py-bittornado/files/btsethttpseeds.1 --- /usr/ports/net/py-bittornado.orig/files/btsethttpseeds.1 Tue Sep 14 19:02:47 2004 +++ /usr/ports/net/py-bittornado/files/btsethttpseeds.1 Thu Jan 1 01:00:00 1970 @@ -1,26 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.33. -.TH BTSETHTTPSEEDS "1" "May 2004" "btsethttpseeds" "User Commands" -.SH NAME -Btsethttpseeds \- manual page for btsethttpseeds -.SH SYNOPSIS -.B btsethttpseeds -\fI file1.torrent \fR[\fIfile2.torrent\fR...] -.SH DESCRIPTION -.IP -Where: -.IP -http-seeds = list of seed URLs, in the format: -.IP -url[|url...] or 0 -.IP -if the list is a zero, any http seeds will be stripped. -.IP -Where: -.IP -http-seeds = list of seed URLs, in the format: -.IP -url[|url...] or 0 -.IP -if the list is a zero, any http seeds will be stripped. -.SH "SEE ALSO" -http://bittornado.org diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/btshowmetainfo.1 /usr/ports/net/py-bittornado/files/btshowmetainfo.1 --- /usr/ports/net/py-bittornado.orig/files/btshowmetainfo.1 Tue Sep 14 19:29:48 2004 +++ /usr/ports/net/py-bittornado/files/btshowmetainfo.1 Thu Jan 1 01:00:00 1970 @@ -1,38 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH "BTSHOWMETAINFO" 1 "Jan 18 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -btshowmetainfo \- display information in bittorrent files -.SH SYNOPSIS -\fBbtshowmetainfo\fP \fIfile\fP [ file ... ] -.SH DESCRIPTION -This manual page documents briefly the \fBbtshowmetainfo\fP -command. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBbtshowmetainfo\fP is a program which will display the information -stored in a bittorrent file. - -.SH SEE ALSO -.BR bittorrent-downloader (1), -.BR btmakemetafile (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/bttrack.1 /usr/ports/net/py-bittornado/files/bttrack.1 --- /usr/ports/net/py-bittornado.orig/files/bttrack.1 Tue Sep 14 19:29:56 2004 +++ /usr/ports/net/py-bittornado/files/bttrack.1 Thu Jan 1 01:00:00 1970 @@ -1,86 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH "BTTRACK" 1 "Jan 18 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -bttrack \- tracker for bittorrent -.SH SYNOPSIS -.B bttrack \fI [ option ... ] -.SH DESCRIPTION -This manual page documents briefly the \fIbttrack\fP -command. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBbttrack\fP is a program that serves as a "tracker" for -bittorrent clients. This program keeps track of the completion -of each client, and communcates that information when requested -to other clients. -.SH OPTIONS -These programs follow the usual GNU command line syntax, with long -options starting with two dashes (`-'). -A summary of options is included below. -.TP -.B \-\-port \fIportnum\fP -listen on port \fIportnum\fP (default 80) -.TP -.B \-\-dfile \fIfilename\fP -store recent downloader info in \fIfilename\fP -.TP -.B \-\-bind \fIip\fP -bind to \fIip\fP instead of the default -.TP -.B \-\-socket_timeout \fIsecs\fP -timeout for closing connections (default 15) -.TP -.B \-\-save_dfile_interval \fIsecs\fP -seconds between saving dfile (default 300) -.TP -.B \-\-timeout_downloaders_interval \fIsecs\fP -seconds between expiring downloaders (default 2700) -.TP -.B \-\-reannounce_interval \fIsecs\fP -seconds downloaders should wait between reannouncements (default 1800) -.TP -.B \-\-response_size \fInum\fP -number of peers to send in an info message (default 50) -.TP -.B \-\-timeout_check_interval \fIsecs\fP -time to wait between checking if any connections have timed out (default 5) -.TP -.B \-\-nat_check \fI[ 1 | 0 ]\fP -whether to check back and ban downloaders behind NAT (default 1) -.TP -.B \-\-min_time_between_log_flushes \fIsecs\fP -minimum time it must have been since the last flush to do another one (default 3.0) -.TP -.B \-\-allowed_dir \fIpath\fP -only allow downloads for .torrents in this directory (default '') -.TP -.B \-\-parse_allowed_interval \fImins\fP -minutes between reloading of allowed_dir (default 15) -.TP -.B \-\-show_names \fI[ 1 | 0 ]\fP -whether to display names from alowed dir (default 1) - -.SH SEE ALSO -.BR bittorrent-downloader (1), -.BR btmakemetafile (1). -.br -.SH AUTHOR -This manual page was written by Michael Janssen , -for the Debian GNU/Linux system (but may be used by others). diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/extra-gui-patch-setup.py /usr/ports/net/py-bittornado/files/extra-gui-patch-setup.py --- /usr/ports/net/py-bittornado.orig/files/extra-gui-patch-setup.py Tue May 25 15:47:28 2004 +++ /usr/ports/net/py-bittornado/files/extra-gui-patch-setup.py Fri Dec 17 17:24:24 2004 @@ -10,7 +10,7 @@ - ] + ], + data_files = [('share/BitTornado', -+ ['alloc.gif','black1.ico','black.ico','blue.ico','green1.ico','green.ico', -+ 'icon_bt.ico','icon_done.ico','red.ico','white.ico', -+ 'yellow1.ico','yellow.ico'])] ++ ['icons/alloc.gif','icons/black1.ico','icons/black.ico','icons/blue.ico','icons/green1.ico','icons/green.ico', ++ 'icons/icon_bt.ico','icons/icon_done.ico','icons/red.ico','icons/white.ico', ++ 'icons/yellow1.ico','icons/yellow.ico'])] ) diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/files/extra-nogui-patch-setup.py /usr/ports/net/py-bittornado/files/extra-nogui-patch-setup.py --- /usr/ports/net/py-bittornado.orig/files/extra-nogui-patch-setup.py Tue May 25 15:47:28 2004 +++ /usr/ports/net/py-bittornado/files/extra-nogui-patch-setup.py Fri Dec 17 17:44:56 2004 @@ -1,9 +1,6 @@ - -$FreeBSD: ports/net/py-bittornado/files/extra-nogui-patch-setup.py,v 1.3 2004/05/25 13:47:28 pav Exp $ - ---- setup.py.orig Sun May 16 13:40:26 2004 -+++ setup.py Tue May 25 10:21:43 2004 -@@ -18,12 +18,16 @@ +--- setup.py.orig Wed Oct 6 11:50:10 2004 ++++ setup.py Fri Dec 17 17:42:32 2004 +@@ -18,11 +18,15 @@ packages = ["BitTornado","BitTornado.BT1"], @@ -13,14 +10,13 @@ - "btdownloadcurses.py", "btcompletedirgui.py", "btlaunchmanycurses.py", + "btdownloadcurses.py", "btlaunchmanycurses.py", "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py", - "bttest.py", - 'btmaketorrentgui.py', 'btcopyannounce.py', 'btsethttpseeds.py', + 'btcopyannounce.py', 'btsethttpseeds.py', 'bt-t-make.py', - ] + ], + data_files = [('share/BitTornado', -+ ['alloc.gif','black1.ico','black.ico','blue.ico','green1.ico','green.ico', -+ 'icon_bt.ico','icon_done.ico','red.ico','white.ico', -+ 'yellow1.ico','yellow.ico'])] ++ ['icons/alloc.gif','icons/black1.ico','icons/black.ico','icons/blue.ico','icons/green1.ico','icons/green.ico', ++ 'icons/icon_bt.ico','icons/icon_done.ico','icons/red.ico','icons/white.ico', ++ 'icons/yellow1.ico','icons/yellow.ico'])] ) diff -ruN --exclude=CVS /usr/ports/net/py-bittornado.orig/pkg-plist /usr/ports/net/py-bittornado/pkg-plist --- /usr/ports/net/py-bittornado.orig/pkg-plist Fri Oct 15 14:10:29 2004 +++ /usr/ports/net/py-bittornado/pkg-plist Fri Dec 17 17:20:29 2004 @@ -13,7 +13,6 @@ bin/btrename.py bin/btsethttpseeds.py bin/btshowmetainfo.py -bin/bttest.py bin/bttrack.py %%PYTHON_SITELIBDIR%%/BitTornado/BT1/Choker.py %%PYTHON_SITELIBDIR%%/BitTornado/BT1/Choker.pyc @@ -156,34 +155,32 @@ %%PYTHON_SITELIBDIR%%/BitTornado/zurllib.py %%PYTHON_SITELIBDIR%%/BitTornado/zurllib.pyc %%PYTHON_SITELIBDIR%%/BitTornado/zurllib.pyo -share/BitTornado/alloc.gif -share/BitTornado/black1.ico -share/BitTornado/black.ico -share/BitTornado/blue.ico -share/BitTornado/green1.ico -share/BitTornado/green.ico -share/BitTornado/icon_bt.ico -share/BitTornado/icon_done.ico -share/BitTornado/red.ico -share/BitTornado/white.ico -share/BitTornado/yellow1.ico -share/BitTornado/yellow.ico +%%DATADIR%%/alloc.gif +%%DATADIR%%/black1.ico +%%DATADIR%%/black.ico +%%DATADIR%%/blue.ico +%%DATADIR%%/green1.ico +%%DATADIR%%/green.ico +%%DATADIR%%/icon_bt.ico +%%DATADIR%%/icon_done.ico +%%DATADIR%%/red.ico +%%DATADIR%%/white.ico +%%DATADIR%%/yellow1.ico +%%DATADIR%%/yellow.ico %%PORTDOCS%%%%DOCSDIR%%/BUILD.windows.txt %%PORTDOCS%%%%DOCSDIR%%/FAQ.txt %%PORTDOCS%%%%DOCSDIR%%/IMPORTANT-multitracker-readme.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.unix.txt %%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt %%PORTDOCS%%%%DOCSDIR%%/README-Psyco.txt -%%PORTDOCS%%%%DOCSDIR%%/README-experimental.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/credits.txt %%PORTDOCS%%%%DOCSDIR%%/multitracker-spec.txt %%PORTDOCS%%%%DOCSDIR%%/multitracker_README.txt -%%PORTDOCS%%%%DOCSDIR%%/todo.txt %%PORTDOCS%%%%DOCSDIR%%/webseed-spec.txt %%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%%%EXAMPLESDIR%%/bittornado.sh.sample %%PORTDOCS%%@dirrm %%EXAMPLESDIR%% @dirrm %%PYTHON_SITELIBDIR%%/BitTornado/BT1 @dirrm %%PYTHON_SITELIBDIR%%/BitTornado -@dirrm share/BitTornado/ +@dirrm %%DATADIR%% --- py23-BitTornado-0.3.9,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 17:10:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B513716A4CE for ; Fri, 17 Dec 2004 17:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FAF443D55 for ; Fri, 17 Dec 2004 17:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHHATUw066111 for ; Fri, 17 Dec 2004 17:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHHATmm066110; Fri, 17 Dec 2004 17:10:29 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 17:10:29 GMT Resent-Message-Id: <200412171710.iBHHATmm066110@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, Nicolas Jombart Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5563D16A4CE for ; Fri, 17 Dec 2004 17:06:00 +0000 (GMT) Received: from shiva.ipv42.net (shiva.ipv42.net [62.4.22.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id E566E43D5D for ; Fri, 17 Dec 2004 17:05:59 +0000 (GMT) (envelope-from ecu@shiva.ipv42.net) Received: by shiva.ipv42.net (Postfix, from userid 1000) id BC04715246; Fri, 17 Dec 2004 18:05:57 +0100 (CET) Message-Id: <20041217170557.BC04715246@shiva.ipv42.net> Date: Fri, 17 Dec 2004 18:05:57 +0100 (CET) From: Nicolas Jombart To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75192: [MAINTAINER] net/Net-Divert: fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 17:10:29 -0000 >Number: 75192 >Category: ports >Synopsis: [MAINTAINER] net/Net-Divert: fix plist >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 Dec 17 17:10:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Nicolas Jombart >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD shiva.int.ipv42.net 4.10-STABLE FreeBSD 4.10-STABLE #0: Fri Aug 20 20:25:27 CEST 2004 >Description: Hopefully fix plist Pointed out by: kris Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- p5-Net-Divert-0.01.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-Net-Divert/pkg-plist /usr/home/ecu/ports/ports/net/p5-Net-Divert/pkg-plist --- /usr/ports/net/p5-Net-Divert/pkg-plist Sun Oct 26 10:00:18 2003 +++ /usr/home/ecu/ports/ports/net/p5-Net-Divert/pkg-plist Fri Dec 17 17:57:07 2004 @@ -1,6 +1,8 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Divert/.packlist %%SITE_PERL%%/Net/Divert.pm %%SITE_PERL%%/auto/Net/Divert/autosplit.ix -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Divert/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Divert +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true @dirrm %%SITE_PERL%%/auto/Net/Divert @unexec rmdir %D/%%SITE_PERL%%/auto/Net 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Net 2>/dev/null || true --- p5-Net-Divert-0.01.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 17:40:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1CC816A4CE for ; Fri, 17 Dec 2004 17:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B604643D5C for ; Fri, 17 Dec 2004 17:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHHeNJC067634 for ; Fri, 17 Dec 2004 17:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHHeNvI067633; Fri, 17 Dec 2004 17:40:23 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 17:40:23 GMT Resent-Message-Id: <200412171740.iBHHeNvI067633@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, Stuart Barkley Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97D8016A4CE for ; Fri, 17 Dec 2004 17:39:47 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F4E43D46 for ; Fri, 17 Dec 2004 17:39:47 +0000 (GMT) (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 iBHHdl7D098581 for ; Fri, 17 Dec 2004 17:39:47 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBHHdleD098580; Fri, 17 Dec 2004 17:39:47 GMT (envelope-from nobody) Message-Id: <200412171739.iBHHdleD098580@www.freebsd.org> Date: Fri, 17 Dec 2004 17:39:47 GMT From: Stuart Barkley To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75193: asterisk build on 5.3: work around tr bug (VI_ZERO) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 17:40:27 -0000 >Number: 75193 >Category: ports >Synopsis: asterisk build on 5.3: work around tr bug (VI_ZERO) >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 Dec 17 17:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Stuart Barkley >Release: 5.3-RELEASE >Organization: >Environment: FreeBSD delphi-5.4gh.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Wed Dec 8 11:37:19 EST 2004 stuartb@delphi-5.4gh.net:/usr/src/sys/i386/compile/4GH i386 >Description: Building net/asterisk on FreeBSD 5.3-RELEASE fails with error: map.c:682: error: `VI_ZERO' undeclared here (not in a function) >How-To-Repeat: cd /usr/ports/net/asterisk make >Fix: --- editline/makelist.orig Fri Dec 17 01:58:14 2004 +++ editline/makelist Fri Dec 17 01:58:46 2004 @@ -145,7 +145,7 @@ # -fh) cat $FILES | $AWK '/el_action_t/ { print $3 }' | \ - sort | tr '[a-z]' '[A-Z]' | $AWK ' + sort | tr 'a-z' 'A-Z' | $AWK ' BEGIN { printf("/* Automatically generated file, do not edit */\n"); printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n"); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 17:45:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B7CD16A4CE; Fri, 17 Dec 2004 17:45:11 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19E7F43D5A; Fri, 17 Dec 2004 17:45:11 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84110-67.ip.peterstar.net ([84.204.110.67] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1CfM9z-000He2-PH; Fri, 17 Dec 2004 18:45:01 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBHHib6b006264; Fri, 17 Dec 2004 20:44:38 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBHHibGF006263; Fri, 17 Dec 2004 20:44:37 +0300 (MSK) (envelope-from igor) Date: Fri, 17 Dec 2004 20:44:37 +0300 From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20041217174437.GA6213@doom.homeunix.org> References: <200412152042.iBFKgK3Y001851@doom.homeunix.org> <200412152050.iBFKoMDs070112@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200412152050.iBFKoMDs070112@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: krion@FreeBSD.org Subject: Re: ports/75129: Update port: graphics/ftgl 2.09 -> 2.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 17:45:11 -0000 Fetch problem fixed. Here is the updated patch. diff -ruN /usr/ports/graphics/ftgl/Makefile ftgl/Makefile --- /usr/ports/graphics/ftgl/Makefile Sun Aug 1 21:22:53 2004 +++ ftgl/Makefile Fri Dec 17 20:39:29 2004 @@ -6,9 +6,9 @@ # PORTNAME= ftgl -PORTVERSION= 2.09 +PORTVERSION= 2.12 CATEGORIES= graphics -MASTER_SITES= http://homepages.paradise.net.nz/henryj/code/ +MASTER_SITES= http://opengl.geek.nz/ftgl/ DISTNAME= ${PORTNAME}-${PORTVERSION:C/([[:digit:]])$/.\1/} MAINTAINER= ip@doom.homeunix.org diff -ruN /usr/ports/graphics/ftgl/distinfo ftgl/distinfo --- /usr/ports/graphics/ftgl/distinfo Mon Jun 21 06:21:05 2004 +++ ftgl/distinfo Fri Dec 17 20:36:37 2004 @@ -1,2 +1,2 @@ -MD5 (ftgl-2.0.9.tar.gz) = 2268267277c0655688879d0657b82650 -SIZE (ftgl-2.0.9.tar.gz) = 561543 +MD5 (ftgl-2.1.2.tar.gz) = 3eabec9ad37371c4d139408c7ffd2429 +SIZE (ftgl-2.1.2.tar.gz) = 568497 diff -ruN /usr/ports/graphics/ftgl/files/patch-unix_src_Makefile ftgl/files/patch-unix_src_Makefile --- /usr/ports/graphics/ftgl/files/patch-unix_src_Makefile Sun Jun 20 11:13:50 2004 +++ ftgl/files/patch-unix_src_Makefile Thu Jan 1 03:00:00 1970 @@ -1,13 +0,0 @@ ---- unix/src/Makefile.orig Tue Jun 15 11:39:46 2004 -+++ unix/src/Makefile Tue Jun 15 11:40:03 2004 -@@ -75,8 +75,8 @@ - install-local: libftgl.la - $(INSTALL) -d -m 0755 $(libdir) - $(LIBTOOL) --mode=install $(INSTALL) -m 0644 $(TARGET) $(libdir) -- $(INSTALL) -d -m 0755 $(includedir)/FTGL -- $(INSTALL) -m 0644 $(HEADER_FILES) $(includedir)/FTGL -+ $(INSTALL) -d -m 0755 $(includedir)/FTGL -+ $(INSTALL) -m 0644 $(HEADER_FILES) $(includedir)/FTGL - - - clean-local: -ip -- No man is lonely while eating spaghetti. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 17:50:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C381A16A4D2 for ; Fri, 17 Dec 2004 17:50:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9F7443D48 for ; Fri, 17 Dec 2004 17:50:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHHoTOR067956 for ; Fri, 17 Dec 2004 17:50:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHHoTxw067948; Fri, 17 Dec 2004 17:50:29 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 17:50:29 GMT Message-Id: <200412171750.iBHHoTxw067948@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Igor Pokrovsky Subject: Re: ports/75129: Update port: graphics/ftgl 2.09 -> 2.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 17:50:29 -0000 The following reply was made to PR ports/75129; it has been noted by GNATS. From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: krion@FreeBSD.org Subject: Re: ports/75129: Update port: graphics/ftgl 2.09 -> 2.12 Date: Fri, 17 Dec 2004 20:44:37 +0300 Fetch problem fixed. Here is the updated patch. diff -ruN /usr/ports/graphics/ftgl/Makefile ftgl/Makefile --- /usr/ports/graphics/ftgl/Makefile Sun Aug 1 21:22:53 2004 +++ ftgl/Makefile Fri Dec 17 20:39:29 2004 @@ -6,9 +6,9 @@ # PORTNAME= ftgl -PORTVERSION= 2.09 +PORTVERSION= 2.12 CATEGORIES= graphics -MASTER_SITES= http://homepages.paradise.net.nz/henryj/code/ +MASTER_SITES= http://opengl.geek.nz/ftgl/ DISTNAME= ${PORTNAME}-${PORTVERSION:C/([[:digit:]])$/.\1/} MAINTAINER= ip@doom.homeunix.org diff -ruN /usr/ports/graphics/ftgl/distinfo ftgl/distinfo --- /usr/ports/graphics/ftgl/distinfo Mon Jun 21 06:21:05 2004 +++ ftgl/distinfo Fri Dec 17 20:36:37 2004 @@ -1,2 +1,2 @@ -MD5 (ftgl-2.0.9.tar.gz) = 2268267277c0655688879d0657b82650 -SIZE (ftgl-2.0.9.tar.gz) = 561543 +MD5 (ftgl-2.1.2.tar.gz) = 3eabec9ad37371c4d139408c7ffd2429 +SIZE (ftgl-2.1.2.tar.gz) = 568497 diff -ruN /usr/ports/graphics/ftgl/files/patch-unix_src_Makefile ftgl/files/patch-unix_src_Makefile --- /usr/ports/graphics/ftgl/files/patch-unix_src_Makefile Sun Jun 20 11:13:50 2004 +++ ftgl/files/patch-unix_src_Makefile Thu Jan 1 03:00:00 1970 @@ -1,13 +0,0 @@ ---- unix/src/Makefile.orig Tue Jun 15 11:39:46 2004 -+++ unix/src/Makefile Tue Jun 15 11:40:03 2004 -@@ -75,8 +75,8 @@ - install-local: libftgl.la - $(INSTALL) -d -m 0755 $(libdir) - $(LIBTOOL) --mode=install $(INSTALL) -m 0644 $(TARGET) $(libdir) -- $(INSTALL) -d -m 0755 $(includedir)/FTGL -- $(INSTALL) -m 0644 $(HEADER_FILES) $(includedir)/FTGL -+ $(INSTALL) -d -m 0755 $(includedir)/FTGL -+ $(INSTALL) -m 0644 $(HEADER_FILES) $(includedir)/FTGL - - - clean-local: -ip -- No man is lonely while eating spaghetti. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 18:00:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFA9E16A4CE for ; Fri, 17 Dec 2004 18:00:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE85943D1F for ; Fri, 17 Dec 2004 18:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHI0kX4068248 for ; Fri, 17 Dec 2004 18:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHI0kCI068246; Fri, 17 Dec 2004 18:00:46 GMT (envelope-from gnats) Date: Fri, 17 Dec 2004 18:00:46 GMT Message-Id: <200412171800.iBHI0kCI068246@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Anish Mistry Subject: Re: ports/75081: avidemux2 build error (missing aclocal19) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Anish Mistry List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 18:00:46 -0000 The following reply was made to PR ports/75081; it has been noted by GNATS. From: Anish Mistry To: "Volker Stolz" Cc: freebsd-gnats-submit@freebsd.org, molnarcs@gmail.com Subject: Re: ports/75081: avidemux2 build error (missing aclocal19) Date: Fri, 17 Dec 2004 12:53:46 -0500 --nextPart2759022.RFubZcokuo Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 17 December 2004 07:50 am, Volker Stolz wrote: > Dear maintainer, please look into this issue! > =46orgot to add the dependancy to the latest automake19, I'll roll it in wi= th=20 the updated version this weekend. =2D-=20 Anish Mistry --nextPart2759022.RFubZcokuo Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBwx0yxqA5ziudZT0RAj0OAKCa0PsZZVADT3Xu1hpcprTWUkxoKACfdO20 5KyKe0v9PKTVPuxRnMV5zL0= =Sfol -----END PGP SIGNATURE----- --nextPart2759022.RFubZcokuo-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 18:00:47 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 606BD16A4CE for ; Fri, 17 Dec 2004 18:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24EA543D5A for ; Fri, 17 Dec 2004 18:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHI0lqT068261 for ; Fri, 17 Dec 2004 18:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHI0keS068260; Fri, 17 Dec 2004 18:00:47 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 18:00:47 GMT Resent-Message-Id: <200412171800.iBHI0keS068260@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 Bailie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6640516A4CE for ; Fri, 17 Dec 2004 17:59:13 +0000 (GMT) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id 1304F43D31 for ; Fri, 17 Dec 2004 17:59:12 +0000 (GMT) (envelope-from jimm@jamesbailie.com) Received: from unknown (HELO jamesbailie.com) (jazzturk@69.193.180.82 with login) by smtp102.rog.mail.re2.yahoo.com with SMTP; 17 Dec 2004 17:59:10 -0000 Received: by jamesbailie.com (sSMTP sendmail emulation); Fri, 17 Dec 2004 12:59:10 -0500 Message-Id: <20041217175912.1304F43D31@mx1.FreeBSD.org> Date: Fri, 17 Dec 2004 12:59:10 -0500 From: James Bailie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75194: Unified diff to correct checksum mismatch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Fri, 17 Dec 2004 18:00:47 -0000 >Number: 75194 >Category: ports >Synopsis: Unified diff to correct checksum mismatch >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 Dec 17 18:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 4.11-PRERELEASE i386 >Organization: >Environment: System: FreeBSD localhost 4.11-PRERELEASE FreeBSD 4.11-PRERELEASE #20: Mon Dec 13 14:10:46 EST 2004 jbailie@localhost:/usr/src/sys/compile/LOCAL i386 >Description: >How-To-Repeat: >Fix: --- diff.txt begins here --- --- query-pr.cgi.html Fri Dec 17 12:55:06 2004 +++ /usr/local/www/html/munger.sh Wed Dec 15 16:04:28 2004 @@ -62,8 +62,8 @@ END-of-munger/pkg-descr echo x - munger/distinfo sed 's/^X//' >munger/distinfo << 'END-of-munger/distinfo' -XMD5 (munger-4.39.tar.gz) = b9ad9dff19584a6eb91215ba5125103d -XSIZE (munger-4.39.tar.gz) = 168756 +XMD5 (munger-4.39.tar.gz) = 0e932f6f71cd24ac64d456b90a9b2d20 +XSIZE (munger-4.39.tar.gz) = 168754 END-of-munger/distinfo echo x - munger/Makefile sed 's/^X//' >munger/Makefile << 'END-of-munger/Makefile' @@ -139,3 +139,4 @@ X****************************************************************** END-of-munger/pkg-message exit + --- diff.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 18:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDE6E16A4CE for ; Fri, 17 Dec 2004 18:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7EF243D31 for ; Fri, 17 Dec 2004 18:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHIAOOR072463 for ; Fri, 17 Dec 2004 18:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHIAO3f072462; Fri, 17 Dec 2004 18:10:24 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 18:10:24 GMT Resent-Message-Id: <200412171810.iBHIAO3f072462@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C78916A4CE for ; Fri, 17 Dec 2004 18:08:45 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CEB843D2F for ; Fri, 17 Dec 2004 18:08:44 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBHI8dZO013626 for ; Fri, 17 Dec 2004 16:08:40 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBHI8bIc013625; Fri, 17 Dec 2004 16:08:37 -0200 (BRST) Message-Id: <200412171808.iBHI8bIc013625@digitalsign.com> Date: Fri, 17 Dec 2004 16:08:37 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75195: Update port: sysutils/pear-File_Find to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 18:10:25 -0000 >Number: 75195 >Category: ports >Synopsis: Update port: sysutils/pear-File_Find 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: Fri Dec 17 18:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: + update port: sysutils/pear-File_Find to 0.3.0 + take maintainership + fix Makefile + fix pkg-descr >How-To-Repeat: >Fix: diff -ruN pear-File_Find.orig/Makefile pear-File_Find/Makefile --- pear-File_Find.orig/Makefile Fri Dec 17 15:51:33 2004 +++ pear-File_Find/Makefile Fri Dec 17 15:57:34 2004 @@ -6,22 +6,19 @@ # PORTNAME= File_Find -PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTVERSION= 0.3.0 CATEGORIES= sysutils www pear -MASTER_SITES= http://pear.php.net/get/ -PKGNAMEPREFIX= pear- -EXTRACT_SUFX= .tgz -DIST_SUBDIR= PEAR -MAINTAINER= ports@FreeBSD.org -COMMENT= A PEAR Class to facilitate the search of filesystems +MAINTAINER= antonio@php.net +COMMENT= PEAR class that facillitates the search of filesystems -BUILD_DEPENDS= ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR RUN_DEPENDS= ${BUILD_DEPENDS} CATEGORY= File FILES= Find.php +TESTS= setup.php 01glob.phpt 02maptree.phpt 03maptreemultiple.phpt \ + 04search.phpt bug2773.phpt .include .include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" diff -ruN pear-File_Find.orig/distinfo pear-File_Find/distinfo --- pear-File_Find.orig/distinfo Fri Dec 17 15:51:33 2004 +++ pear-File_Find/distinfo Fri Dec 17 15:56:12 2004 @@ -1,2 +1,2 @@ -MD5 (PEAR/File_Find-0.2.0.tgz) = 6560a5dc0d750f959b00d4aefc427fb6 -SIZE (PEAR/File_Find-0.2.0.tgz) = 3245 +MD5 (PEAR/File_Find-0.3.0.tgz) = 71a55f5e4c1014a2ff285ee90a04685b +SIZE (PEAR/File_Find-0.3.0.tgz) = 4342 diff -ruN pear-File_Find.orig/pkg-descr pear-File_Find/pkg-descr --- pear-File_Find.orig/pkg-descr Fri Dec 17 15:51:33 2004 +++ pear-File_Find/pkg-descr Fri Dec 17 15:57:05 2004 @@ -1,5 +1,5 @@ -PEAR::File_Find, created as a replacement for its Perl counterpart, also named -File_Find, is a directory searcher, which handles, globbing, recursive -directory searching, as well as a slew of other cool features. +PEAR::File_Find, created as a replacement for its Perl counterpart, also +named File_Find, is a directory searcher, which handles, globbing, recursive +directory searching, as well as a slew of other cool features. -WWW: http://pear.php.net/package-info.php?package=File_Find +WWW: http://pear.php.net/package/File_Find/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 18:50:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A6C916A509 for ; Fri, 17 Dec 2004 18:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A8DF43D64 for ; Fri, 17 Dec 2004 18:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHIoPTw074613 for ; Fri, 17 Dec 2004 18:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHIoPke074611; Fri, 17 Dec 2004 18:50:25 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 18:50:25 GMT Resent-Message-Id: <200412171850.iBHIoPke074611@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, Antonio Carlos Venancio Junior Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5169C16A4CE for ; Fri, 17 Dec 2004 18:44:58 +0000 (GMT) Received: from digitalsign.com (cm-virtua-fln-C8B08F9E.brdterra.com.br [200.176.143.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ABD143D5A for ; Fri, 17 Dec 2004 18:44:57 +0000 (GMT) (envelope-from antonio@digitalsign.com) Received: from digitalsign.com (localhost [127.0.0.1]) by digitalsign.com (8.12.6/8.12.6) with ESMTP id iBHIitZO013735 for ; Fri, 17 Dec 2004 16:44:55 -0200 (BRST) (envelope-from antonio@digitalsign.com) Received: (from antonio@localhost) by digitalsign.com (8.12.6/8.12.6/Submit) id iBHIis0v013734; Fri, 17 Dec 2004 16:44:54 -0200 (BRST) Message-Id: <200412171844.iBHIis0v013734@digitalsign.com> Date: Fri, 17 Dec 2004 16:44:54 -0200 (BRST) From: Antonio Carlos Venancio Junior To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75196: Update port: sysutils/pear-File to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Carlos Venancio Junior List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 18:50:25 -0000 >Number: 75196 >Category: ports >Synopsis: Update port: sysutils/pear-File to 1.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: Fri Dec 17 18:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antônio Carlos Venâncio Júnior >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD antonio.cb.sc.gov.br 4.10-STABLE FreeBSD 4.10-STABLE #6: Wed Nov 24 10:18:56 BRST 2004 root@antonio.cb.sc.gov.br:/usr/src/sys/compile/ANTONIO i386 >Description: + update port: sysutils/pear-File to 1.1.0 + fix Makefile + fix pkg-descr >How-To-Repeat: >Fix: diff -ruN pear-File.orig/Makefile pear-File/Makefile --- pear-File.orig/Makefile Fri Dec 17 11:46:03 2004 +++ pear-File/Makefile Fri Dec 17 11:48:51 2004 @@ -6,9 +6,9 @@ # PORTNAME= File -PORTVERSION= 1.0.3 -PORTREVISION= 2 +PORTVERSION= 1.1.0 CATEGORIES= sysutils www pear +DISTNAME= ${PORTNAME}-${PORTVERSION}RC1 MAINTAINER= antonio@php.net COMMENT= PEAR common file and directory routines @@ -17,7 +17,7 @@ RUN_DEPENDS= ${BUILD_DEPENDS} FILES= File.php File/CSV.php -TESTS= parser.php test.csv +TESTS= parser.php test.csv FileTest.php .include .include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" diff -ruN pear-File.orig/distinfo pear-File/distinfo --- pear-File.orig/distinfo Fri Dec 17 11:46:03 2004 +++ pear-File/distinfo Fri Dec 17 11:48:58 2004 @@ -1,2 +1,2 @@ -MD5 (PEAR/File-1.0.3.tgz) = 13b14cd0b226408bd09948f175bec677 -SIZE (PEAR/File-1.0.3.tgz) = 8670 +MD5 (PEAR/File-1.1.0RC1.tgz) = 32f3ed86f4efa7d3da3b7d66c75ca06e +SIZE (PEAR/File-1.1.0RC1.tgz) = 11169 diff -ruN pear-File.orig/pkg-descr pear-File/pkg-descr --- pear-File.orig/pkg-descr Fri Dec 17 11:46:03 2004 +++ pear-File/pkg-descr Fri Dec 17 11:50:53 2004 @@ -1,5 +1,5 @@ -PEAR classes providing easy access to read/write to files along with -some common routines to deal with paths. Also provides interface for -handling CSV files. +Provides easy access to read/write to files along with +some common routines to deal with paths. Also provides +interface for handling CSV files. -WWW: http://pear.php.net/package-info.php?package=File +WWW: http://pear.php.net/package/File/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 18:50:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0144616A509 for ; Fri, 17 Dec 2004 18:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B62C043D64 for ; Fri, 17 Dec 2004 18:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHIoPRF074668 for ; Fri, 17 Dec 2004 18:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHIoPVU074666; Fri, 17 Dec 2004 18:50:25 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 18:50:25 GMT Resent-Message-Id: <200412171850.iBHIoPVU074666@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 Magda Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F31D16A4CE; Fri, 17 Dec 2004 18:46:15 +0000 (GMT) Received: from tomts5-srv.bellnexxia.net (tomts5.bellnexxia.net [209.226.175.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16FD943D2D; Fri, 17 Dec 2004 18:46:10 +0000 (GMT) (envelope-from dmagda@magda.ca) Received: from number6.magda.ca ([65.92.114.106]) by tomts5-srv.bellnexxia.netESMTP <20041217184605.KAOV2026.tomts5-srv.bellnexxia.net@number6.magda.ca>; Fri, 17 Dec 2004 13:46:05 -0500 Received: from number6.magda.ca (localhost.magda.ca [127.0.0.1]) by number6.magda.ca (8.13.1/8.13.1) with ESMTP id iBHIk5Zl002584 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 17 Dec 2004 13:46:05 -0500 (EST) (envelope-from dmagda@magda.ca) Received: (from dmagda@localhost) by number6.magda.ca (8.13.1/8.13.1/Submit) id iBHIk5fs002583; Fri, 17 Dec 2004 13:46:05 -0500 (EST) (envelope-from dmagda) Message-Id: <200412171846.iBHIk5fs002583@number6.magda.ca> Date: Fri, 17 Dec 2004 13:46:05 -0500 (EST) From: David Magda To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hrs@FreeBSD.org Subject: ports/75197: editors/nxml-emacs21 does not su to root on a 'make install' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Magda List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 18:50:26 -0000 >Number: 75197 >Category: ports >Synopsis: editors/nxml-emacs21 does not su to root on a 'make install' >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 Dec 17 18:50:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: David Magda >Release: FreeBSD 4.10-STABLE i386 >Organization: We're organized? >Environment: System: FreeBSD number6.magda.ca 4.10-STABLE FreeBSD 4.10-STABLE #5: Wed Dec 1 16:07:51 EST 2004 dave@number6.magda.ca:/usr/obj/usr/src/sys/MYKERNELE i386 >Description: I build ports (and run 'make install') as a regular user in the wheel group. When I tried to do that with the 'nxml' port the build worked fine, but the installation died. Here's the error messsage: myhost:/usr/ports/editors/nxml-emacs21$ make install ===> Installing for nxml-mode-20041004 ===> nxml-mode-20041004 depends on file: /usr/local/bin/emacs-21.3 - found mkdir: /usr/local/share/emacs/21.3/site-lisp/nxml: Permission denied *** Error code 1 Stop in /usr/ports/editors/nxml-emacs21. myhost:/usr/ports/editors/nxml-emacs21$ Doing an 'su' and then running 'make install' works fine. >How-To-Repeat: As a regular user in the 'wheel' group: $ cd /usr/ports/editors/nxml-emacs21 $ make build [ works ] $ make install [ dies ] >Fix: I don't know enough about the Ports system's system to offer one. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 18:50:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FAC516A509 for ; Fri, 17 Dec 2004 18:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 117CC43D67 for ; Fri, 17 Dec 2004 18:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHIoP6n074681 for ; Fri, 17 Dec 2004 18:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHIoPVO074680; Fri, 17 Dec 2004 18:50:25 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 18:50:25 GMT Resent-Message-Id: <200412171850.iBHIoPVO074680@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, Conor McDermottroe Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D805816A4CE for ; Fri, 17 Dec 2004 18:49:32 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id A247243D45 for ; Fri, 17 Dec 2004 18:49:32 +0000 (GMT) (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 iBHInWBo066154 for ; Fri, 17 Dec 2004 18:49:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBHInWKJ066153; Fri, 17 Dec 2004 18:49:32 GMT (envelope-from nobody) Message-Id: <200412171849.iBHInWKJ066153@www.freebsd.org> Date: Fri, 17 Dec 2004 18:49:32 GMT From: Conor McDermottroe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75198: [PATCH] [MAINTAINER UPDATE] java/jflex 1.4 -> 1.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 18:50:26 -0000 >Number: 75198 >Category: ports >Synopsis: [PATCH] [MAINTAINER UPDATE] java/jflex 1.4 -> 1.4.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: Fri Dec 17 18:50:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Conor McDermottroe >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: FreeBSD oxygen.office.edgespace.net. 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #7: Fri Aug 20 23:02:52 IST 2004 root@mcdermc:/usr/obj/usr/src/sys/MCDERMC i386 >Description: Updating the port java/jflex from version 1.4 to 1.4.1 >How-To-Repeat: >Fix: diff -ruN jflex.orig/Makefile jflex/Makefile --- jflex.orig/Makefile Tue Nov 30 02:20:26 2004 +++ jflex/Makefile Mon Nov 29 21:11:27 2004 @@ -6,14 +6,14 @@ # PORTNAME= jflex -PORTVERSION= 1.4 +PORTVERSION= 1.4.1 CATEGORIES= java devel MASTER_SITES= http://www.jflex.de/:jflexde \ http://jflex.sourceforge.net/jar/devel/:jflexsf -DISTFILES= jflex-1.4.tar.gz:jflexde \ +DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz:jflexde \ JFlex.jar:jflexsf \ java_cup.jar:jflexsf -EXTRACT_ONLY= jflex-1.4.tar.gz +EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}.tar.gz MAINTAINER= ports@mcdermottroe.com COMMENT= The Fast Lexical Analyser Generator for Java[tm] diff -ruN jflex.orig/distinfo jflex/distinfo --- jflex.orig/distinfo Tue Nov 30 02:20:26 2004 +++ jflex/distinfo Mon Nov 29 21:15:48 2004 @@ -1,6 +1,6 @@ -MD5 (jflex-1.4.tar.gz) = 120cedc76b278a476682edfa6828841f -SIZE (jflex-1.4.tar.gz) = 912690 -MD5 (JFlex.jar) = da256e01b8ef7d87fb02b10554c15d0e -SIZE (JFlex.jar) = 171538 +MD5 (jflex-1.4.1.tar.gz) = 9e4be6e826e6b344e84c0434d6fd4b46 +SIZE (jflex-1.4.1.tar.gz) = 986546 +MD5 (JFlex.jar) = 626c0c66135a48c042d3b35af95d274d +SIZE (JFlex.jar) = 169629 MD5 (java_cup.jar) = 26aef43b31cf3e0b581017e75a325b7b SIZE (java_cup.jar) = 97241 diff -ruN jflex.orig/pkg-plist jflex/pkg-plist --- jflex.orig/pkg-plist Tue Nov 30 02:20:26 2004 +++ jflex/pkg-plist Tue Nov 30 02:45:28 2004 @@ -49,6 +49,7 @@ %%EXAMPLESDIR%%/java/Makefile %%EXAMPLESDIR%%/java/README %%EXAMPLESDIR%%/java/TestLexer.java +%%EXAMPLESDIR%%/java/build.xml %%EXAMPLESDIR%%/java/java.flex %%EXAMPLESDIR%%/java/java12.cup %%EXAMPLESDIR%%/java/lexer-output.good >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 19:50:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B3BA16A4CE for ; Fri, 17 Dec 2004 19:50:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCCE43D48 for ; Fri, 17 Dec 2004 19:50:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHJoJp6081730 for ; Fri, 17 Dec 2004 19:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHJoJm1081728; Fri, 17 Dec 2004 19:50:19 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 19:50:19 GMT Resent-Message-Id: <200412171950.iBHJoJm1081728@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 Novitsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BEA116A4CE for ; Fri, 17 Dec 2004 19:42:10 +0000 (GMT) Received: from mail.icc-vvd.ru (mail.icc-vvd.ru [62.141.104.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5419C43D54 for ; Fri, 17 Dec 2004 19:42:08 +0000 (GMT) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: from server.v42of.icc-vvd.ru (localhost.icc-vvd.ru [127.0.0.1]) by mail.icc-vvd.ru (8.12.10/8.12.9) with ESMTP id iBHJg6dQ048107; Fri, 17 Dec 2004 22:42:06 +0300 (MSK) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: (from root@localhost) by server.v42of.icc-vvd.ru (8.12.10/8.12.9/Submit) id iBHJg5KO048106; Fri, 17 Dec 2004 22:42:05 +0300 (MSK) Message-Id: <200412171942.iBHJg5KO048106@server.v42of.icc-vvd.ru> Date: Fri, 17 Dec 2004 22:42:05 +0300 (MSK) From: Alexander Novitsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: alecn2002@yandex.ru Subject: ports/75199: [NEW PORT] x11-toolkits/ruby18-fox-devel: Ruby extension module to use FOX 1.2, aka FXRuby X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 19:50:19 -0000 >Number: 75199 >Category: ports >Synopsis: [NEW PORT] x11-toolkits/ruby18-fox-devel: Ruby extension module to use FOX 1.2, aka FXRuby >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 Dec 17 19:50:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Novitsky >Release: FreeBSD 5.2-RELEASE i386 >Organization: >Environment: System: FreeBSD server.v42of.icc-vvd.ru 5.2-RELEASE FreeBSD 5.2-RELEASE #2: Mon Jul 12 21:45:44 MSD 2004 >Description: FXRuby 1.2 is a Ruby extension module that provides an interface to the FOX 1.2 GUI library. Author: Lyle Johnson WWW: http://fxruby.sourceforge.net/ Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- ruby18-fox-devel-1.2.2.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: # # ruby-fox-devel # ruby-fox-devel/Makefile # ruby-fox-devel/distinfo # ruby-fox-devel/pkg-descr # ruby-fox-devel/pkg-plist # echo c - ruby-fox-devel mkdir -p ruby-fox-devel > /dev/null 2>&1 echo x - ruby-fox-devel/Makefile sed 's/^X//' >ruby-fox-devel/Makefile << 'END-of-ruby-fox-devel/Makefile' X# New ports collection makefile for: FXRuby-devel X# Date created: 07 July 2004 X# Whom: Alexander Novitsky X# X# $FreeBSD$ X# X XPORTNAME= fox XPORTVERSION= 1.2.2 XCATEGORIES= x11-toolkits ruby XMASTER_SITES= http://rubyforge.org/frs/download.php/1612/ XMASTER_SITE_SUBDIR= fxruby XPKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} XPKGNAMESUFFIX= -devel XDISTNAME= FXRuby-${PORTVERSION} XDIST_SUBDIR= ruby X XMAINTAINER= alecn2002@yandex.ru XCOMMENT= Ruby extension module to use FOX 1.2, aka FXRuby X XLIB_DEPENDS= FOX-1.2:${PORTSDIR}/x11-toolkits/fox-devel \ X png.5:${PORTSDIR}/graphics/png \ X jpeg.9:${PORTSDIR}/graphics/jpeg \ X fxscintilla.16:${PORTSDIR}/x11-toolkits/fxscintilla X XUSE_RUBY= yes XUSE_RUBY_SETUP= yes XRUBY_SETUP= install.rb XCONFIGURE_ARGS= --prefix=${PREFIX} XRUBY_INSTALL_ARGS= --prefix=${PREFIX} XNOHARM_ARGS= --no-harm X XUSE_XLIB= yes XUSE_GL= yes X X# DOCS_EN= ANNOUNCE ChangeLog README \ X# index.html doc X Xinstall-noharm: X cd ${WRKSRC}; \ X ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install ${NOHARM_ARGS} ${RUBY_INSTALL_ARGS} X Xdo-install: X @${ECHO_MSG} "===> Running ${RUBY_SETUP} to install" X @cd ${INSTALL_WRKSRC}; \ X ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install ${RUBY_INSTALL_ARGS} X X.include END-of-ruby-fox-devel/Makefile echo x - ruby-fox-devel/distinfo sed 's/^X//' >ruby-fox-devel/distinfo << 'END-of-ruby-fox-devel/distinfo' XMD5 (ruby/FXRuby-1.2.2.tar.gz) = 1c899d20b8072396dce69c215bcc9c4e XSIZE (ruby/FXRuby-1.2.2.tar.gz) = 1667148 END-of-ruby-fox-devel/distinfo echo x - ruby-fox-devel/pkg-descr sed 's/^X//' >ruby-fox-devel/pkg-descr << 'END-of-ruby-fox-devel/pkg-descr' XFXRuby is a Ruby extension module that provides an interface to the XFOX GUI library. X XAuthor: Lyle Johnson XWWW: http://fxruby.sourceforge.net/ END-of-ruby-fox-devel/pkg-descr echo x - ruby-fox-devel/pkg-plist sed 's/^X//' >ruby-fox-devel/pkg-plist << 'END-of-ruby-fox-devel/pkg-plist' X%%RUBY_SITELIBDIR%%/fox12/aliases.rb X%%RUBY_SITELIBDIR%%/fox12/bitmapview.rb X%%RUBY_SITELIBDIR%%/fox12/calendar.rb X%%RUBY_SITELIBDIR%%/fox12/chore.rb X%%RUBY_SITELIBDIR%%/fox12/colors.rb X%%RUBY_SITELIBDIR%%/fox12/core.rb X%%RUBY_SITELIBDIR%%/fox12/dict.rb X%%RUBY_SITELIBDIR%%/fox12/glgroup.rb X%%RUBY_SITELIBDIR%%/fox12/glshapes.rb X%%RUBY_SITELIBDIR%%/fox12/input.rb X%%RUBY_SITELIBDIR%%/fox12/irb.rb X%%RUBY_SITELIBDIR%%/fox12/iterators.rb X%%RUBY_SITELIBDIR%%/fox12/keys.rb X%%RUBY_SITELIBDIR%%/fox12/missingdep.rb X%%RUBY_SITELIBDIR%%/fox12/pseudokeyboard.rb X%%RUBY_SITELIBDIR%%/fox12/pseudomouse.rb X%%RUBY_SITELIBDIR%%/fox12/responder.rb X%%RUBY_SITELIBDIR%%/fox12/responder2.rb X%%RUBY_SITELIBDIR%%/fox12/scintilla.rb X%%RUBY_SITELIBDIR%%/fox12/settings.rb X%%RUBY_SITELIBDIR%%/fox12/signal.rb X%%RUBY_SITELIBDIR%%/fox12/timeout.rb X%%RUBY_SITELIBDIR%%/fox12/undolist.rb X%%RUBY_SITELIBDIR%%/fox12/version.rb X%%RUBY_SITEARCHLIBDIR%%/fox12.so X@dirrm %%RUBY_SITELIBDIR%%/fox12 END-of-ruby-fox-devel/pkg-plist exit --- ruby18-fox-devel-1.2.2.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 19:50:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A6E516A4CE for ; Fri, 17 Dec 2004 19:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C06A043D48 for ; Fri, 17 Dec 2004 19:50:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHJoJx5081787 for ; Fri, 17 Dec 2004 19:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHJoJSK081786; Fri, 17 Dec 2004 19:50:19 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 19:50:19 GMT Resent-Message-Id: <200412171950.iBHJoJSK081786@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 Novitsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7556816A4CE for ; Fri, 17 Dec 2004 19:49:00 +0000 (GMT) Received: from mail.icc-vvd.ru (mail.icc-vvd.ru [62.141.104.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id C160543D48 for ; Fri, 17 Dec 2004 19:48:58 +0000 (GMT) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: from server.v42of.icc-vvd.ru (localhost.icc-vvd.ru [127.0.0.1]) by mail.icc-vvd.ru (8.12.10/8.12.9) with ESMTP id iBHJmvdQ048452; Fri, 17 Dec 2004 22:48:57 +0300 (MSK) (envelope-from alecn@server.v42of.icc-vvd.ru) Received: (from root@localhost) by server.v42of.icc-vvd.ru (8.12.10/8.12.9/Submit) id iBHJmvZu048451; Fri, 17 Dec 2004 22:48:57 +0300 (MSK) Message-Id: <200412171948.iBHJmvZu048451@server.v42of.icc-vvd.ru> Date: Fri, 17 Dec 2004 22:48:57 +0300 (MSK) From: Alexander Novitsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: alecn2002@yandex.ru Subject: ports/75200: [MAINTAINER-UPDATE] devel/ruby18-freeride: update to 0.9.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 19:50:20 -0000 >Number: 75200 >Category: ports >Synopsis: [MAINTAINER-UPDATE] devel/ruby18-freeride: update to 0.9.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: Fri Dec 17 19:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Novitsky >Release: FreeBSD 5.2-RELEASE i386 >Organization: >Environment: System: FreeBSD server.v42of.icc-vvd.ru 5.2-RELEASE FreeBSD 5.2-RELEASE #2: Mon Jul 12 21:45:44 MSD 2004 >Description: - Update to 0.9.2 x11-toolkits/ruby-fox-devel just posted by maintainer of this port, no PR number is known at the moment Port maintainer (alecn2002@yandex.ru) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- ruby18-freeride-0.9.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/freeride.orig/Makefile /usr/ports/devel/freeride/Makefile --- /usr/ports/devel/freeride.orig/Makefile Thu Dec 16 16:13:44 2004 +++ /usr/ports/devel/freeride/Makefile Thu Dec 16 22:35:07 2004 @@ -6,16 +6,16 @@ # PORTNAME= freeride -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.2 CATEGORIES= devel ruby -MASTER_SITES= http://rubyforge.org/frs/download.php/2030/ +MASTER_SITES= http://rubyforge.org/frs/download.php/2185/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= alecn2002@yandex.ru COMMENT= Ruby Integrated Developement Environment written in Ruby -RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/fox.so:${PORTSDIR}/x11-toolkits/ruby-fox \ +RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/fox12.so:${PORTSDIR}/x11-toolkits/ruby-fox-devel \ ${RUBY_SITELIBDIR}/freebase/freebase.rb:${PORTSDIR}/devel/freebase USE_RUBY= yes diff -ruN --exclude=CVS /usr/ports/devel/freeride.orig/distinfo /usr/ports/devel/freeride/distinfo --- /usr/ports/devel/freeride.orig/distinfo Thu Dec 16 16:13:44 2004 +++ /usr/ports/devel/freeride/distinfo Thu Dec 16 20:54:00 2004 @@ -1,2 +1,2 @@ -MD5 (ruby/freeride-0.9.0.tar.gz) = b2e281fd846ef5d5056ece5d8b294862 -SIZE (ruby/freeride-0.9.0.tar.gz) = 547185 +MD5 (ruby/freeride-0.9.2.tar.gz) = 04a9802f712074085349eac6d0d1483d +SIZE (ruby/freeride-0.9.2.tar.gz) = 496043 diff -ruN --exclude=CVS /usr/ports/devel/freeride.orig/pkg-plist /usr/ports/devel/freeride/pkg-plist --- /usr/ports/devel/freeride.orig/pkg-plist Thu Dec 16 16:13:44 2004 +++ /usr/ports/devel/freeride/pkg-plist Thu Dec 16 21:02:07 2004 @@ -171,33 +171,6 @@ %%RUBY_SITELIBDIR%%/freeride/redist/rrb/cui_interface.rb %%RUBY_SITELIBDIR%%/freeride/redist/rrb/completion.rb %%RUBY_SITELIBDIR%%/freeride/redist/rrb/common_visitor.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/xpath.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/xmldecl.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/text.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/streamlistener.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/source.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/rexml.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/parseexception.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/parent.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/node.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/namespace.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/instruction.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/functions.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/element.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/document.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/doctype.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/comment.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/child.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/cdata.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/dtd/notationdecl.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/dtd/entitydecl.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/dtd/elementdecl.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/dtd/dtd.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/dtd/attlistdecl.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/README -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/attribute.rb -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/GPL.txt -%%RUBY_SITELIBDIR%%/freeride/redist/rexml/LICENSE.txt %%RUBY_SITELIBDIR%%/freeride/redist/%%RUBY_ARCH%%/rrb_ripper.so %%RUBY_SITELIBDIR%%/freeride/redist/%%RUBY_ARCH%%/rrb_reflection.so %%RUBY_SITELIBDIR%%/freeride/redist/%%RUBY_ARCH%%/ripper.so @@ -209,10 +182,8 @@ @dirrm %%RUBY_SITELIBDIR%%/freeride/redist/runit/cui @dirrm %%RUBY_SITELIBDIR%%/freeride/redist/runit @dirrm %%RUBY_SITELIBDIR%%/freeride/redist/rrb -@dirrm %%RUBY_SITELIBDIR%%/freeride/redist/rexml/dtd -@dirrm %%RUBY_SITELIBDIR%%/freeride/redist/rexml @dirrm %%RUBY_SITELIBDIR%%/freeride/redist/%%RUBY_ARCH%% -@dirrm %%RUBY_SITELIBDIR%%/freeride/redist/ +@dirrm %%RUBY_SITELIBDIR%%/freeride/redist @dirrm %%RUBY_SITELIBDIR%%/freeride/plugins/rubyide_util_logger @dirrm %%RUBY_SITELIBDIR%%/freeride/plugins/rubyide_tools_source_parser @dirrm %%RUBY_SITELIBDIR%%/freeride/plugins/rubyide_tools_rrb @@ -236,5 +207,5 @@ @dirrm %%RUBY_SITELIBDIR%%/freeride/plugins/rubyide_fox_gui @dirrm %%RUBY_SITELIBDIR%%/freeride/plugins/rubyide_commands @dirrm %%RUBY_SITELIBDIR%%/freeride/plugins -@dirrm %%RUBY_SITELIBDIR%%/freeride/config/ -@dirrm %%RUBY_SITELIBDIR%%/freeride/ +@dirrm %%RUBY_SITELIBDIR%%/freeride/config +@dirrm %%RUBY_SITELIBDIR%%/freeride --- ruby18-freeride-0.9.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 21:20:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DF0216A4CE for ; Fri, 17 Dec 2004 21:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F04C643D5D for ; Fri, 17 Dec 2004 21:20:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHLKLan092976 for ; Fri, 17 Dec 2004 21:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHLKLAo092975; Fri, 17 Dec 2004 21:20:21 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 21:20:21 GMT Resent-Message-Id: <200412172120.iBHLKLAo092975@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E9AD16A4CE for ; Fri, 17 Dec 2004 21:11:23 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9D2643D1F for ; Fri, 17 Dec 2004 21:11:22 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84125-28.ip.peterstar.net ([84.204.125.28] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1CfPNV-000I6I-L3 for FreeBSD-gnats-submit@freebsd.org; Fri, 17 Dec 2004 22:11:12 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBHLAkk2004528 for ; Sat, 18 Dec 2004 00:10:55 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBHLAfgj004527; Sat, 18 Dec 2004 00:10:41 +0300 (MSK) (envelope-from igor) Message-Id: <200412172110.iBHLAfgj004527@doom.homeunix.org> Date: Sat, 18 Dec 2004 00:10:41 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75203: Update port: games/glbsp 2.05 -> 2.10c X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 21:20:22 -0000 >Number: 75203 >Category: ports >Synopsis: Update port: games/glbsp 2.05 -> 2.10c >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 Dec 17 21:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Update to 2.10c. Removed files: files/patch-cmdline-makefile.unx files/patch-fltk-makefile.unx Added files: files/patch-GUI.mak files/patch-Makefile >How-To-Repeat: >Fix: --- glbsp.diff begins here --- diff -ruN /usr/ports/games/glbsp/Makefile glbsp/Makefile --- /usr/ports/games/glbsp/Makefile Sun Aug 1 21:22:06 2004 +++ glbsp/Makefile Sat Dec 18 00:04:05 2004 @@ -6,8 +6,7 @@ # PORTNAME= glbsp -PORTVERSION= 2.05 -PORTREVISION= 1 +PORTVERSION= 2.10c CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -23,7 +22,7 @@ USE_GMAKE= yes USE_REINPLACE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/[[:alpha:]]//} .if !defined (WITH_GUI_VERSION) PLIST_SUB= GUI_VERSION="@comment " @@ -39,23 +38,20 @@ .endif .ifdef (WITH_GUI_VERSION) -post-patch: - @${REINPLACE_CMD} -e 's|%%FLTK_CONFIG%%|${X11BASE}\/bin\/fltk-config|g' \ - ${WRKSRC}/fltk/makefile.unx -.endif - -do-build: - ${SETENV} CC=${CC} "CFLAGS=${CFLAGS}" \ - ${GMAKE} -C ${WRKSRC}/cmdline -f makefile.unx all -.ifdef (WITH_GUI_VERSION) - ${SETENV} CC=${CC} CXX=${CXX} "CFLAGS=${CFLAGS}" "CXXFLAGS=${CXXFLAGS}" \ - ${GMAKE} -C ${WRKSRC}/fltk -f makefile.unx all +post-build: + ${SETENV} CC=${CC} \ + CXX=${CXX} \ + CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ + X11BASE=${X11BASE} \ + LOCALBASE=${LOCALBASE} \ + ${GMAKE} -C ${WRKSRC} -f GUI.mak all .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/cmdline/glbsp ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/glbsp ${PREFIX}/bin .ifdef (WITH_GUI_VERSION) - ${INSTALL_PROGRAM} ${WRKSRC}/fltk/glBSPX ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/glBSPX ${PREFIX}/bin .endif .ifndef (NOPORTDOCS) diff -ruN /usr/ports/games/glbsp/distinfo glbsp/distinfo --- /usr/ports/games/glbsp/distinfo Wed Mar 31 07:07:53 2004 +++ glbsp/distinfo Fri Dec 17 23:41:21 2004 @@ -1,2 +1,2 @@ -MD5 (glbsp_src_205.tar.gz) = fd6779afb5fb8ffe5f266fe038584ac9 -SIZE (glbsp_src_205.tar.gz) = 179352 +MD5 (glbsp_src_210c.tar.gz) = 6d4891492866543ee81febf8b2b19dfb +SIZE (glbsp_src_210c.tar.gz) = 184427 diff -ruN /usr/ports/games/glbsp/files/patch-GUI.mak glbsp/files/patch-GUI.mak --- /usr/ports/games/glbsp/files/patch-GUI.mak Thu Jan 1 03:00:00 1970 +++ glbsp/files/patch-GUI.mak Sat Dec 18 00:01:59 2004 @@ -0,0 +1,25 @@ + +$FreeBSD$ + +--- GUI.mak.orig ++++ GUI.mak +@@ -8,14 +8,14 @@ + + PROGNAME=glBSPX + +-FLTK_CFLAGS=-I/usr/local/lib ++FLTK_CFLAGS=-I${X11BASE}/include + FLTK_LIBS=-lfltk_images -lfltk -lX11 -lXext -lpng -ljpeg + +-CC=gcc +-CXX=g++ +-CFLAGS=-O2 -Wall -DGLBSP_GUI -DUNIX -DINLINE_G=inline $(FLTK_CFLAGS) ++CC?=gcc ++CXX?=g++ ++CFLAGS+=-O2 -Wall -DGLBSP_GUI -DUNIX -DINLINE_G=inline $(FLTK_CFLAGS) + CXXFLAGS=$(CFLAGS) +-LDFLAGS=-L/usr/X11R6/lib ++LDFLAGS=-L${X11BASE}/lib -L${LOCALBASE}/lib + LIBS=-lm $(FLTK_LIBS) + + OBJS=$(SYSDIR)/main.o \ diff -ruN /usr/ports/games/glbsp/files/patch-Makefile glbsp/files/patch-Makefile --- /usr/ports/games/glbsp/files/patch-Makefile Thu Jan 1 03:00:00 1970 +++ glbsp/files/patch-Makefile Fri Dec 17 23:48:02 2004 @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- Makefile.orig ++++ Makefile +@@ -8,8 +8,8 @@ + + PROGNAME=glbsp + +-CC=cc +-CFLAGS=-O3 -Wall -DGLBSP_TEXT -DUNIX -DINLINE_G=inline ++CC?=cc ++CFLAGS+=-O3 -Wall -DGLBSP_TEXT -DUNIX -DINLINE_G=inline + LIBS=-lm + + OBJS=$(SYSDIR)/main.o \ diff -ruN /usr/ports/games/glbsp/files/patch-cmdline-makefile.unx glbsp/files/patch-cmdline-makefile.unx --- /usr/ports/games/glbsp/files/patch-cmdline-makefile.unx Fri Jan 23 12:55:33 2004 +++ glbsp/files/patch-cmdline-makefile.unx Thu Jan 1 03:00:00 1970 @@ -1,13 +0,0 @@ ---- cmdline/makefile.unx.orig Thu Jan 22 12:16:08 2004 -+++ cmdline/makefile.unx Thu Jan 22 12:18:10 2004 -@@ -8,8 +8,8 @@ - - PROGNAME=glbsp - --CC=cc --CFLAGS=-O3 -Wall -DGLBSP_TEXT -DUNIX -DINLINE_G=inline -+CC?=gcc -+CFLAGS+=-O3 -Wall -DGLBSP_TEXT -DUNIX -DINLINE_G=inline - LIBS=-lm - - OBJS=$(SYSDIR)/main.o \ diff -ruN /usr/ports/games/glbsp/files/patch-fltk-makefile.unx glbsp/files/patch-fltk-makefile.unx --- /usr/ports/games/glbsp/files/patch-fltk-makefile.unx Fri Jan 23 12:55:33 2004 +++ glbsp/files/patch-fltk-makefile.unx Thu Jan 1 03:00:00 1970 @@ -1,24 +0,0 @@ ---- fltk/makefile.unx.orig Thu Jan 22 12:32:28 2004 -+++ fltk/makefile.unx Thu Jan 22 12:35:18 2004 -@@ -8,14 +8,14 @@ - - PROGNAME=glBSPX - --FLTK_CFLAGS=-I/usr/local/lib --FLTK_LIBS=-lfltk_images -lfltk -lX11 -lXext -lpng -ljpeg -+FLTK_CFLAGS=`%%FLTK_CONFIG%% --cflags` -+FLTK_LIBS=`%%FLTK_CONFIG%% --ldflags` -lfltk_images - --CC=gcc --CXX=g++ --CFLAGS=-O2 -Wall -DGLBSP_GUI -DUNIX -DINLINE_G=inline $(FLTK_CFLAGS) --CXXFLAGS=$(CFLAGS) --LDFLAGS=-L/usr/X11R6/lib -+CC?=gcc -+CXX?=g++ -+CFLAGS+=-O2 -Wall -DGLBSP_GUI -DUNIX -DINLINE_G=inline $(FLTK_CFLAGS) -+CXXFLAGS+=$(CFLAGS) -+LDFLAGS=-L${X11BASE}/lib - LIBS=-lm $(FLTK_LIBS) - - OBJS=$(SYSDIR)/main.o \ --- glbsp.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 21:40:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F89E16A4CF for ; Fri, 17 Dec 2004 21:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D74EE43D5A for ; Fri, 17 Dec 2004 21:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHLeL6l095021 for ; Fri, 17 Dec 2004 21:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHLeLtd095020; Fri, 17 Dec 2004 21:40:21 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 21:40:21 GMT Resent-Message-Id: <200412172140.iBHLeLtd095020@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, Andriy Gapon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3EB016A4CE for ; Fri, 17 Dec 2004 21:34:16 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2DCA43D5D for ; Fri, 17 Dec 2004 21:34:16 +0000 (GMT) (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 iBHLYF5x016009 for ; Fri, 17 Dec 2004 21: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 iBHLYFiF016008; Fri, 17 Dec 2004 21:34:15 GMT (envelope-from nobody) Message-Id: <200412172134.iBHLYFiF016008@www.freebsd.org> Date: Fri, 17 Dec 2004 21:34:15 GMT From: Andriy Gapon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75204: security/openssh-portable sshd may crash on login of user with expired password X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 21:40:22 -0000 >Number: 75204 >Category: ports >Synopsis: security/openssh-portable sshd may crash on login of user with expired password >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: Fri Dec 17 21:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: 5.2.1-RELEASE-p13 >Organization: >Environment: FreeBSD 5.2.1-RELEASE-p13 i386 openssh-portable-overwrite-base-3.9.0.1,1 built from ports >Description: sshd child process crashes when user with expired password logs in >How-To-Repeat: This problem may not be 100% reproducable since random factors are at play (see fix section): 1. set password expiry field for a user to 1 2. try to login via ssh as that user 3. you are thrown out - sshd crashed >Fix: the problem results from trying to free memory pointed by un-initialized pointer: files/patch-session.c:66 -+ char *newcommand; ++ char *newcommand = NULL; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 21:50:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6942F16A505 for ; Fri, 17 Dec 2004 21:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A89F43D41 for ; Fri, 17 Dec 2004 21:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHLoLn3095310 for ; Fri, 17 Dec 2004 21:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHLoLxU095309; Fri, 17 Dec 2004 21:50:21 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 21:50:21 GMT Resent-Message-Id: <200412172150.iBHLoLxU095309@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, Fernan Aguero Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E72EF16A4CE for ; Fri, 17 Dec 2004 21:41:05 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id E149343D67 for ; Fri, 17 Dec 2004 21:41:00 +0000 (GMT) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id iBHLpKcS034232 for ; Fri, 17 Dec 2004 18:51:20 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id iBHLelV8038034 for ; Fri, 17 Dec 2004 18:40:47 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id iBHLelL1038033; Fri, 17 Dec 2004 18:40:47 -0300 (ART) (envelope-from fernan) Message-Id: <200412172140.iBHLelL1038033@pi.iib.unsam.edu.ar> Date: Fri, 17 Dec 2004 18:40:47 -0300 (ART) From: Fernan Aguero To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75205: [maintainer update] distinfo update, X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Fernan Aguero List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 21:50:24 -0000 >Number: 75205 >Category: ports >Synopsis: [maintainer update] distinfo update, >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 Dec 17 21:50:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Fernan Aguero >Release: FreeBSD 4.10-RELEASE i386 >Organization: IIB-UNSAM >Environment: FreeBSD pi.iib.unsam.edu.ar 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Wed May 26 12:56:43 ART 2004 fernan@pi.iib.unsam.edu.ar:/usr/obj/usr/src/sys/PI i386 >Description: seaview was recently updated again, causing new checksum mismatches. Update the port version to the latest release, and make pointyhat happy :) >How-To-Repeat: >Fix: --- seaview.diff begins here --- diff -ruN /usr/ports/biology/seaview/Makefile seaview/Makefile --- /usr/ports/biology/seaview/Makefile Wed Dec 15 12:15:12 2004 +++ seaview/Makefile Fri Dec 17 18:27:48 2004 @@ -7,7 +7,7 @@ # PORTNAME= seaview -PORTVERSION= 2004.09.24 +PORTVERSION= 2004.12.16 CATEGORIES= biology MASTER_SITES= ftp://pbil.univ-lyon1.fr/pub/mol_phylogeny/seaview/ DISTNAME= ${PORTNAME} diff -ruN /usr/ports/biology/seaview/distinfo seaview/distinfo --- /usr/ports/biology/seaview/distinfo Wed Dec 15 12:15:12 2004 +++ seaview/distinfo Thu Dec 16 14:23:25 2004 @@ -1,2 +1,2 @@ -MD5 (seaview-2004.09.24/seaview.tar) = bef06edecac9a3d1a032e6d926a61fef -SIZE (seaview-2004.09.24/seaview.tar) = 560640 +MD5 (seaview-2004.12.16/seaview.tar) = 2786e787fb45f4d7f065aeed3c4a7903 +SIZE (seaview-2004.12.16/seaview.tar) = 561152 --- seaview.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 21:50:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6AC816A4D4 for ; Fri, 17 Dec 2004 21:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9409C43D41 for ; Fri, 17 Dec 2004 21:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHLoLPi095323 for ; Fri, 17 Dec 2004 21:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHLoLKi095322; Fri, 17 Dec 2004 21:50:21 GMT (envelope-from gnats) Resent-Date: Fri, 17 Dec 2004 21:50:21 GMT Resent-Message-Id: <200412172150.iBHLoLKi095322@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, Fernan Aguero Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99B2616A4CF for ; Fri, 17 Dec 2004 21:41:06 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3FFD43D68 for ; Fri, 17 Dec 2004 21:41:00 +0000 (GMT) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id iBHLpJcS034229 for ; Fri, 17 Dec 2004 18:51:19 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id iBHLekhv038017 for ; Fri, 17 Dec 2004 18:40:46 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id iBHLekBP038016; Fri, 17 Dec 2004 18:40:46 -0300 (ART) (envelope-from fernan) Message-Id: <200412172140.iBHLekBP038016@pi.iib.unsam.edu.ar> Date: Fri, 17 Dec 2004 18:40:46 -0300 (ART) From: Fernan Aguero To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75206: [new port] print/latexmk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Fernan Aguero List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 21:50:24 -0000 >Number: 75206 >Category: ports >Synopsis: [new port] print/latexmk >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 Dec 17 21:50:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Fernan Aguero >Release: FreeBSD 4.10-RELEASE i386 >Organization: IIB-UNSAM >Environment: FreeBSD pi.iib.unsam.edu.ar 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Wed May 26 12:56:43 ART 2004 fernan@pi.iib.unsam.edu.ar:/usr/obj/usr/src/sys/PI i386 >Description: From the pkg-descr: LatexMk completely automates the process of generating a LaTeX document. Essentially, it is a highly specialized relative of the general make utility. Given the source files for a document, latexmk issues the appropriate sequence of commands to generate a .dvi, .ps, .pdf or hardcopy version of the document. It can also be set to run continuously with a previewer; the needed commands are rerun whenever one of the source files is modified. >How-To-Repeat: >Fix: --- latexmk.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: # # latexmk # latexmk/distinfo # latexmk/Makefile # latexmk/pkg-descr # latexmk/pkg-message # latexmk/pkg-plist # echo c - latexmk mkdir -p latexmk > /dev/null 2>&1 echo x - latexmk/distinfo sed 's/^X//' >latexmk/distinfo << 'END-of-latexmk/distinfo' XMD5 (latexmk-307a.zip) = 20646ab0ada12bb07f9df83cc810f0d9 XSIZE (latexmk-307a.zip) = 145238 END-of-latexmk/distinfo echo x - latexmk/Makefile sed 's/^X//' >latexmk/Makefile << 'END-of-latexmk/Makefile' X# ex:ts=8 X# New ports collection makefile for: latexmk X# Date created: 17 Dec 2004 X# Whom: Fernan Aguero X# X# $FreeBSD$ X# X XPORTNAME= latexmk XPORTVERSION= 307a XCATEGORIES= print XMASTER_SITES= http://www.phys.psu.edu/~collins/software/latexmk/ X XMAINTAINER= fernan@iib.unsam.edu.ar XCOMMENT= A tool to completely automate the process of generating output from a LaTeX document X XRUN_DEPENDS= latex:${PORTSDIR}/print/teTeX X XUSE_PERL5_RUN= yes XUSE_ZIP= yes XNO_WRKSUBDIR= yes XNO_BUILD= yes XPKGMESSAGE= ${.CURDIR}/pkg-message X XMAN1= latexmk.1 XDOCS= CHANGES COPYING INSTALL README latexmk.pdf latexmk.ps latexmk.txt X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/latexmk.pl ${PREFIX}/bin/latexmk X ${INSTALL_MAN} ${WRKSRC}/latexmk.1 ${PREFIX}/man/man1/ X.if !defined(NOPORTDOCS) X @ ${MKDIR} ${DOCSDIR} X.for doc in ${DOCS} X ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} X.endfor X.endif X Xpost-install: X.if !defined(BATCH) X @ ${CAT} ${PKGMESSAGE} X.endif X X.include END-of-latexmk/Makefile echo x - latexmk/pkg-descr sed 's/^X//' >latexmk/pkg-descr << 'END-of-latexmk/pkg-descr' XLatexMk completely automates the process of generating a LaTeX document. XEssentially, it is a highly specialized relative of the general make Xutility. Given the source files for a document, latexmk issues the Xappropriate sequence of commands to generate a .dvi, .ps, .pdf or Xhardcopy version of the document. It can also be set to run continuously Xwith a previewer; the needed commands are rerun whenever one of the Xsource files is modified. X XWWW: http://www.phys.psu.edu/~collins/software/latexmk/ END-of-latexmk/pkg-descr echo x - latexmk/pkg-message sed 's/^X//' >latexmk/pkg-message << 'END-of-latexmk/pkg-message' X====================================================================== X X In order for the 'pvc' (preview continuously) option to work X perfectly, latexmk needs to know the correct way to invoke ps(1) X in each operating system. Thus, users may have to change the $pscmd X variable in their ~/.latexmkrc files. X X For FreeBSD-4.x the following is known to work: X $pscmd = "ps -w -f -u $ENV{USER}" X X====================================================================== END-of-latexmk/pkg-message echo x - latexmk/pkg-plist sed 's/^X//' >latexmk/pkg-plist << 'END-of-latexmk/pkg-plist' Xbin/latexmk X%%PORTDOCS%%%%DOCSDIR%%/CHANGES X%%PORTDOCS%%%%DOCSDIR%%/COPYING X%%PORTDOCS%%%%DOCSDIR%%/INSTALL X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/latexmk.pdf X%%PORTDOCS%%%%DOCSDIR%%/latexmk.ps X%%PORTDOCS%%%%DOCSDIR%%/latexmk.txt X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-latexmk/pkg-plist exit --- latexmk.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 22:05:05 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0272416A4CE; Fri, 17 Dec 2004 22:05:05 +0000 (GMT) Received: from chilled.skew.org (skew.org [65.101.207.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id C633B43D46; Fri, 17 Dec 2004 22:05:04 +0000 (GMT) (envelope-from mike@skew.org) Received: from chilled.skew.org (localhost.skew.org [127.0.0.1]) by chilled.skew.org (8.13.1/8.13.1) with ESMTP id iBHM555O039103; Fri, 17 Dec 2004 15:05:05 -0700 (MST) (envelope-from mike@chilled.skew.org) Received: (from mike@localhost) by chilled.skew.org (8.13.1/8.13.1/Submit) id iBHM55ud039102; Fri, 17 Dec 2004 15:05:05 -0700 (MST) (envelope-from mike) From: Mike Brown Message-Id: <200412172205.iBHM55ud039102@chilled.skew.org> To: edwin@freebsd.org Date: Fri, 17 Dec 2004 15:05:04 -0700 (MST) X-Whoa: whoa. X-Mailer: ELM [version 2.4ME+ PL119 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=UTF-8 cc: freebsd-ports-bugs@freebsd.org Subject: Re: ports/74974: Update port: textproc/py-xml update to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 22:05:05 -0000 Thanks for committing the changes to the py-xml port. Looks like the listing on http://www.freebsd.org/ports/textproc.html is in a state of transition? It is still at 0.8.3 but has the new pkg-descr. Speaking of which, any chance you could sneak this URL fix in? Thanks Mike --- pkg-descr Fri Dec 17 14:55:26 2004 +++ pkg-descr.old Sun Dec 12 01:25:41 2004 @@ -17,7 +17,7 @@ (xml.xpath). Experimental XSLT 1.0 support for minidom can be added if the port is installed with WITH_XSLT defined (e.g. "make install WITH_XSLT=yes"). -WWW: http://pyxml.sourceforge.net/ +WWW: http://www.pyxml.sourceforge.net/ See also: http://www.python.org/sigs/xml-sig/ -- Mike J. Brown (current port maintainer) From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 22:45:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A602716A4CE for ; Fri, 17 Dec 2004 22:45:30 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4620743D2F for ; Fri, 17 Dec 2004 22:45:30 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from red (host-14-37-230-24.midco.net [24.230.37.14]) iBHMpZRr028015 for ; Fri, 17 Dec 2004 15:51:35 -0700 (MST) (envelope-from estover@nativenerds.com) From: Ed Stover To: freebsd-ports-bugs@freebsd.org Content-Type: text/plain Organization: Native Nerds Date: Fri, 17 Dec 2004 15:45:23 -0700 Message-Id: <1103323523.558.4.camel@red.nativenerds.com> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com Subject: FreeBSD 5.3 stable openoffice errors X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 22:45:30 -0000 I keep failing at building this port. Here is my error and any help would be great, thanks ahead of time. com_sun_star_lib_connections_pipe_PipeConnection.c: At top level: com_sun_star_lib_connections_pipe_PipeConnection.c:558: syntax error before "void" dmake: Error code 1, while making '../../unxfbsd.pro/slo/com_sun_star_lib_connections_pipe_PipeConnection.obj' ---* TG_SLO.MK *--- ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice-1.1/work/OOo_1.1.3_src/jurt/source/pipe dmake: Error code 1, while making 'build_all' ---* TG_SLO.MK *--- *** Error code 255 Stop in /usr/ports/editors/openoffice-1.1. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 22:46:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D491C16A4CE; Fri, 17 Dec 2004 22:46:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0AF743D1F; Fri, 17 Dec 2004 22:46:48 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHMkmml002518; Fri, 17 Dec 2004 22:46:48 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHMkm36002514; Fri, 17 Dec 2004 22:46:48 GMT (envelope-from mezz) Date: Fri, 17 Dec 2004 22:46:48 GMT From: Jeremy Messenger Message-Id: <200412172246.iBHMkm36002514@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org Subject: Re: ports/75191: [MAINTAINER] net/py23-BitTornado: update to 0.3.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 22:46:48 -0000 Synopsis: [MAINTAINER] net/py23-BitTornado: update to 0.3.9 Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: mezz Responsible-Changed-When: Fri Dec 17 22:46:32 GMT 2004 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75191 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 17 23:03:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F67F16A4CE; Fri, 17 Dec 2004 23:03:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED81C43D2F; Fri, 17 Dec 2004 23:03:16 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHN3Ggm003149; Fri, 17 Dec 2004 23:03:16 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBHN3GV9003145; Fri, 17 Dec 2004 23:03:16 GMT (envelope-from arved) Date: Fri, 17 Dec 2004 23:03:16 GMT From: Tilman Linneweh Message-Id: <200412172303.iBHN3GV9003145@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/75193: asterisk build on 5.3: work around tr bug (VI_ZERO) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 23:03:17 -0000 Synopsis: asterisk build on 5.3: work around tr bug (VI_ZERO) Responsible-Changed-From-To: freebsd-ports-bugs-> sobomax Responsible-Changed-By: arved Responsible-Changed-When: Fri Dec 17 23:02:43 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=75193 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 00:30:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8295D16A4CE for ; Sat, 18 Dec 2004 00:30:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5F7D43D66 for ; Sat, 18 Dec 2004 00:30:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI0USKd014670 for ; Sat, 18 Dec 2004 00:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI0USx9014669; Sat, 18 Dec 2004 00:30:28 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 00:30:28 GMT Resent-Message-Id: <200412180030.iBI0USx9014669@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, Rudolf Polzer Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EBE316A4CE for ; Sat, 18 Dec 2004 00:26:29 +0000 (GMT) Received: from ccc-offenbach.org (pD9EA669D.dip.t-dialin.net [217.234.102.157]) by mx1.FreeBSD.org (Postfix) with ESMTP id 788A743D31 for ; Sat, 18 Dec 2004 00:26:27 +0000 (GMT) (envelope-from rpolzer@durchnull.ath.cx) Received: (qmail 58871 invoked by uid 1000); 18 Dec 2004 00:26:25 -0000 Message-Id: <20041218002625.58870.qmail@durchnull.ath.cx> Date: 18 Dec 2004 00:26:25 -0000 From: Rudolf Polzer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: fph@ngi.it Subject: ports/75208: games/bastet does busy waiting X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 00:30:32 -0000 >Number: 75208 >Category: ports >Synopsis: games/bastet does busy waiting >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 Dec 18 00:30:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rudolf Polzer >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD katsuragi.div0.ccc-offenbach.org 5.3-STABLE FreeBSD 5.3-STABLE #3: Thu Dec 2 07:47:37 CET 2004 root@katsuragi.div0.ccc-offenbach.org:/usr/obj/usr/src/sys/DIV0_KERNEL i386 Athlon XP, nothing else required IMHO >Description: bastet does busy waiting because the select() call in game.c returns with EINVAL. The reason is that timeout does not point to the struct timeval in the program but to a ncurses function with the same name. I renamed the variable to fix it. Also the value 1000000 is not a valid timeout value because it would have to be encoded as 1 second and 0 microseconds. I fixed it trivially by using 999999 for that value. Also I fixed a gcc warning. Anyway I think the function bast_clear has to be declared somewhere else. Should be easy to fix - temporarily I just put the diff below in my files/ directory of the port. Thanks! >How-To-Repeat: Play bastet (especially at level 0) and look at it in top. >Fix: diff -ru game.c bastet-0.41/game.c --- game.c Sat Dec 18 00:28:00 2004 +++ bastet-0.41/game.c Sat Dec 18 00:56:26 2004 @@ -12,6 +12,9 @@ #include "game.h" #include "main.h" #include "bast.h" +#include + +void bast_clear(); const DOT block_data[BLOCK_TYPES][BLOCK_ORIENTS][BLOCK_DOTS] = { @@ -66,7 +70,7 @@ /* Delay before block drop one step down (usec). We start at one sec. and then decreases the delay by 23% at each level. */ -const int delay[NO_LEVELS] = {1000000, 770000, 593000, 457000, 352000, 271000, 208000, 160000, 124000, 95000}; +const int delay[NO_LEVELS] = {999999, 770000, 593000, 457000, 352000, 271000, 208000, 160000, 124000, 95000}; /* Window in which the action takes place. */ WINDOW *well_win; @@ -278,6 +282,7 @@ refresh(); } +struct timeval mytimeout; /* Drop a block in the well. When done return y-cord. of where block ended. If it's not possible to even start with a new block return -1. */ int drop_block(int type, int level) @@ -288,14 +293,13 @@ int orient = 0; int ch; fd_set inputs, test_fds; - struct timeval timeout; int sel_ret; if (0 == check_block_pos(y, x, type, orient)) return -1; /* Oh no, game over. */ - timeout.tv_sec = 0; - timeout.tv_usec = delay[level]; + mytimeout.tv_sec = 0; + mytimeout.tv_usec = delay[level]; FD_ZERO(&inputs); FD_SET(0, &inputs); @@ -308,7 +312,7 @@ while(1) { test_fds = inputs; - sel_ret = select(FD_SETSIZE, &test_fds, (fd_set *) 0, (fd_set *) 0, &timeout); + sel_ret = select(FD_SETSIZE, &test_fds, (fd_set *) 0, (fd_set *) 0, &mytimeout); ch = getch(); @@ -391,8 +402,8 @@ set_block(y, x, type, orient); return y; } - timeout.tv_sec = 0; - timeout.tv_usec = delay[level]; + mytimeout.tv_sec = 0; + mytimeout.tv_usec = delay[level]; } } } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 01:32:12 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEE9D16A4CE; Sat, 18 Dec 2004 01:32:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A44E043D5A; Sat, 18 Dec 2004 01:32:12 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from freefall.freebsd.org (hq@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI1WCXV022233; Sat, 18 Dec 2004 01:32:12 GMT (envelope-from hq@freefall.freebsd.org) Received: (from hq@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI1WC2H022229; Sat, 18 Dec 2004 01:32:12 GMT (envelope-from hq) Date: Sat, 18 Dec 2004 01:32:12 GMT From: Herve Quiroz Message-Id: <200412180132.iBI1WC2H022229@freefall.freebsd.org> To: hq@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hq@FreeBSD.org Subject: Re: ports/75198: [PATCH] [MAINTAINER UPDATE] java/jflex 1.4 -> 1.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 01:32:13 -0000 Synopsis: [PATCH] [MAINTAINER UPDATE] java/jflex 1.4 -> 1.4.1 Responsible-Changed-From-To: freebsd-ports-bugs->hq Responsible-Changed-By: hq Responsible-Changed-When: Sat Dec 18 01:31:12 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75198 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 02:26:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5592F16A4CE; Sat, 18 Dec 2004 02:26:46 +0000 (GMT) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94C2C43D58; Sat, 18 Dec 2004 02:26:45 +0000 (GMT) (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 5CE13B8F3; Sat, 18 Dec 2004 11:26:44 +0900 (JST) Received: from localhost.home.utahime.org (localhost.home.utahime.org [127.0.0.1])3CEC55570; Sat, 18 Dec 2004 11:26:44 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost.home.utahime.org (AvMailGate-2.0.2-5) id 65014-060E4471; Sat, 18 Dec 2004 11:26:44 +0900 Received: from localhost (angel.home.utahime.org [192.168.174.4]) by eastasia.home.utahime.org (Postfix) with ESMTP id 125CC5566; Sat, 18 Dec 2004 11:26:44 +0900 (JST) Date: Sat, 18 Dec 2004 11:26:41 +0900 (JST) Message-Id: <20041218.112641.11257436.yasu@utahime.org> To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: KIMURA Yasuhiro In-Reply-To: <200412050740.iB57eHrB096345@freefall.freebsd.org> References: <20041205073827.9639BB821@sugar.home.utahime.org> <200412050740.iB57eHrB096345@freefall.freebsd.org> X-Mailer: Mew version 4.1.52 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: checked by AntiVir MailGate (version: 2.0.2-5; AVE: 6.29.0.5; VDF: 6.29.0.23; host: eastasia.home.utahime.org) cc: vs@FreebSD.org Subject: Re: ports/74707: japanese/lookup : remove runtime dependency upon japanese/eblook X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 02:26:46 -0000 MAINTAINER of this port is reset by portmgr and it seems unlikely for ex-maintainer to respond. So please commit it or take any other action. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 06:10:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82EA616A4CE for ; Sat, 18 Dec 2004 06:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41C5243D45 for ; Sat, 18 Dec 2004 06:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI6AORA088854 for ; Sat, 18 Dec 2004 06:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI6AONN088852; Sat, 18 Dec 2004 06:10:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 06:10:24 GMT Resent-Message-Id: <200412180610.iBI6AONN088852@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, "Joel Diaz" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 890B416A4CE for ; Sat, 18 Dec 2004 06:02:30 +0000 (GMT) Received: from imf24aec.mail.bellsouth.net (imf24aec.mail.bellsouth.net [205.152.59.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0648043D1F for ; Sat, 18 Dec 2004 06:02:30 +0000 (GMT) (envelope-from joeldiaz@bellsouth.net) Received: from fbsd.launchmodem.com ([65.9.22.67]) by imf24aec.mail.bellsouth.netESMTP <20041218060229.NZTG2421.imf24aec.mail.bellsouth.net@fbsd.launchmodem.com> for ; Sat, 18 Dec 2004 01:02:29 -0500 Message-Id: <1103349749.0@fbsd.launchmodem.com> Date: Sat, 18 Dec 2004 01:02:29 -0500 From: "Joel Diaz" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.1 Subject: ports/75212: PATCH audio/tunesbrowser - fix glade file path X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 06:10:24 -0000 >Number: 75212 >Category: ports >Synopsis: PATCH audio/tunesbrowser - fix glade file path >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: Sat Dec 18 06:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Joel Diaz >Release: FreeBSD 6.0-CURRENT i386 >Organization: >Environment: System: FreeBSD 6.0-CURRENT #3: Sat Dec 18 00:35:17 EST 2004 jdiaz@fbsd.launchmodem.com:/usr/obj/usr/src/sys/MYKERNEL >Description: audio/tunesbrowser builds fine, but the path to the glade file is incorrect. This patch fixes it so that tunesbrowser actually shows its GUI. >How-To-Repeat: Build and run tunesbrowser and watch it not display its GUI. >Fix: --- patch-main.c begins here --- --- main.c.orig Tue Apr 13 03:17:50 2004 +++ main.c Sat Dec 18 00:55:53 2004 @@ -46,7 +46,7 @@ gtk_init(&argc, &argv); - xml = glade_xml_new(XSTR(UIDIR) "/tunesbrowser.glade", NULL, NULL); + xml = glade_xml_new(XSTR(UIDIR) "/gnome/tunesbrowser/tunesbrowser.glade", NULL, NULL); glade_xml_signal_autoconnect(xml); --- patch-main.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 07:10:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 133C516A4CE for ; Sat, 18 Dec 2004 07:10:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E94243D3F for ; Sat, 18 Dec 2004 07:10:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI7AACF098046 for ; Sat, 18 Dec 2004 07:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI7AAuI098045; Sat, 18 Dec 2004 07:10:10 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 07:10:10 GMT Resent-Message-Id: <200412180710.iBI7AAuI098045@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, Joel Ray Holveck Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1768C16A4CE for ; Sat, 18 Dec 2004 07:02:59 +0000 (GMT) Received: from thor.piquan.org (adsl-66-125-235-59.dsl.sntc01.pacbell.net [66.125.235.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D2D443D1F for ; Sat, 18 Dec 2004 07:02:58 +0000 (GMT) (envelope-from joelh@thor.piquan.org) Received: from thor.piquan.org (joelh@localhost [127.0.0.1]) by thor.piquan.org (8.12.10/8.12.10) with ESMTP id iBI72vkt021056 for ; Fri, 17 Dec 2004 23:02:57 -0800 (PST) (envelope-from joelh@thor.piquan.org) Received: (from joelh@localhost) by thor.piquan.org (8.12.10/8.12.10/Submit) id iBI72uBn021055; Fri, 17 Dec 2004 23:02:56 -0800 (PST) (envelope-from joelh) Message-Id: <200412180702.iBI72uBn021055@thor.piquan.org> Date: Fri, 17 Dec 2004 23:02:56 -0800 (PST) From: Joel Ray Holveck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75213: [PATCH] games/inform : upgrade to 6.30, lib 6.11, DM4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Joel Ray Holveck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 07:10:11 -0000 >Number: 75213 >Category: ports >Synopsis: [PATCH] games/inform : upgrade to 6.30, lib 6.11, DM4 >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 Dec 18 07:10:10 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Joel Ray Holveck >Release: FreeBSD 5.2.1-RELEASE-p12 i386 >Organization: >Environment: System: FreeBSD thor.piquan.org 5.2.1-RELEASE-p12 FreeBSD 5.2.1-RELEASE-p12 #3: Sat Nov 20 13:31:59 PST 2004 joelh@thor.piquan.org:/usr/local/src/freebsd/obj/usr/local/src/freebsd/src/sys/THOR i386 >Description: The games/inform port is out of date. The port installs 6.21 of the compiler, 6.10 of the library, and an unknown old version of the Designer's Manual. The current versions are 6.30 of the compiler, 6.11 of the library, and v4 of the Designer's Manual. >How-To-Repeat: >Fix: Note that patch-ab has been folded into the upstream source, and can now be deleted. --- inform-diff begins here --- diff -ruN inform.old/Makefile inform/Makefile --- inform.old/Makefile Sat Apr 24 05:06:03 2004 +++ inform/Makefile Fri Dec 17 22:41:40 2004 @@ -6,67 +6,51 @@ # PORTNAME= inform -PORTVERSION= 6.21 +PORTVERSION= 6.30 CATEGORIES= games MASTER_SITES= ftp://ftp.ifarchive.org/if-archive/infocom/compilers/inform6/source/ \ ftp://ftp.ifarchive.org/if-archive/infocom/compilers/inform6/library/ -DISTFILES= inform621_source.zip inform_library610.zip +DISTFILES= inform630_source.zip inform_library611.zip MAINTAINER= mph@freebsd.org COMMENT= Compiler for producing text adventure games .if !defined(NOPORTDOCS) -MASTER_SITES+= ftp://ftp.ifarchive.org/if-archive/infocom/compilers/inform6/manuals/old/ -DISTFILES+= designers_manual_html.zip +MASTER_SITES+= ftp://ftp.ifarchive.org/if-archive/infocom/compilers/inform6/manuals/ +DISTFILES+= designers_manual_4.zip .endif DIST_SUBDIR= inform NO_WRKSUBDIR= yes -EXTRACT_ONLY= inform621_source.zip +EXTRACT_ONLY= inform630_source.zip USE_ZIP= yes BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip -# I can hardly believe it, but the ".c" and ".h" extensions are -# not present on the source files. post-extract: - @${MV} ${WRKSRC}/header ${WRKSRC}/header.h -.for file in arrays asm bpatch chars directs errors expressc expressp \ - files inform lexer linker memory objects states symbols syntax \ - tables text veneer verbs - @${MV} ${WRKSRC}/${file} ${WRKSRC}/${file}.c -.endfor @${CP} ${FILESDIR}/Makefile.inform ${WRKSRC}/Makefile -# Install the library files in ${PREFIX}/share/inform. The compiler -# is configured to use extensions under Unix, so we need to tack ".h" -# onto each filename. Set perms and ownership, because they're odd in -# the archive. Many games include "VerbLib" instead of "Verblib" so -# make a symlink. Finally, install documentation if appropriate. +# Install the library files in ${PREFIX}/share/inform, and install +# documentation if appropriate. post-install: - @${MKDIR} ${PREFIX}/share/inform - @(cd ${PREFIX}/share/inform && \ - unzip -qq -o ${DISTDIR}/${DIST_SUBDIR}/inform_library610.zip) -.for file in English Grammar Parser Verblib infix linklpa linklv parserm \ - verblibm - @${MV} ${PREFIX}/share/inform/${file} ${PREFIX}/share/inform/${file}.h - @ ${CHMOD} ${SHAREMODE} ${PREFIX}/share/inform/${file}.h - @ ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/inform/${file}.h + ${MKDIR} ${PREFIX}/share/inform + (cd ${PREFIX}/share/inform && \ + unzip -qq -o ${DISTDIR}/${DIST_SUBDIR}/inform_library611.zip) +.for file in English.h Grammar.h Parser.h VerbLib.h infix.h linklpa.h \ + linklv.h parserm.h verblibm.h + ${CHMOD} ${SHAREMODE} ${PREFIX}/share/inform/${file} + ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/inform/${file} .endfor - @${LN} -fs Verblib.h ${PREFIX}/share/inform/VerbLib.h - @ ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/inform/VerbLib.h .if defined(NOPORTDOCS) - @${RM} ${PREFIX}/share/inform/Relnote ${PREFIX}/share/inform/Relnote2 + ${RM} ${PREFIX}/share/inform/readme.txt .else - @ (umask 222 && unzip -qq -o -d ${PREFIX}/share/doc \ - ${DISTDIR}/${DIST_SUBDIR}/designers_manual_html.zip) - @${MKDIR} ${PREFIX}/share/doc/inform - @${MV} ${PREFIX}/share/doc/dman/* ${PREFIX}/share/doc/inform - @${RMDIR} ${PREFIX}/share/doc/dman - @${MV} ${PREFIX}/share/inform/Relnote ${PREFIX}/share/inform/Relnote2 ${PREFIX}/share/doc/inform - @ ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/inform - + ${MKDIR} ${PREFIX}/share/doc/inform + (umask 222 && unzip -qq -o -d ${PREFIX}/share/doc/inform \ + ${DISTDIR}/${DIST_SUBDIR}/designers_manual_4.zip) + ${MV} ${PREFIX}/share/inform/readme.txt ${PREFIX}/share/doc/inform + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/inform .endif + .include diff -ruN inform.old/distinfo inform/distinfo --- inform.old/distinfo Sat Apr 3 05:00:43 2004 +++ inform/distinfo Fri Dec 17 22:38:43 2004 @@ -1,6 +1,6 @@ -MD5 (inform/inform621_source.zip) = f154597285bc13eee318f2c679a3e0b6 -SIZE (inform/inform621_source.zip) = 200106 -MD5 (inform/inform_library610.zip) = e8fbb2cb74d3d5893b7f3602877575fd -SIZE (inform/inform_library610.zip) = 84630 -MD5 (inform/designers_manual_html.zip) = 377f2f0224059171296360f6e67d8a95 -SIZE (inform/designers_manual_html.zip) = 344887 +MD5 (inform/inform630_source.zip) = 5d600f1d430e96ab0d6c4fff0cf88672 +SIZE (inform/inform630_source.zip) = 249490 +MD5 (inform/inform_library611.zip) = cce6a8f73838a1d13d33a24ba1cce282 +SIZE (inform/inform_library611.zip) = 100163 +MD5 (inform/designers_manual_4.zip) = 0063968c3378636add1a0697b6d1fc16 +SIZE (inform/designers_manual_4.zip) = 1141939 diff -ruN inform.old/files/patch-aa inform/files/patch-aa --- inform.old/files/patch-aa Sun Jun 28 08:16:07 1998 +++ inform/files/patch-aa Fri Dec 17 22:30:47 2004 @@ -1,10 +1,10 @@ --- header.h.orig Sun Jun 28 00:54:48 1998 +++ header.h Sun Jun 28 00:58:25 1998 -@@ -66,7 +66,7 @@ +@@ -68,7 +68,7 @@ /* out a block of definitions like those below.) */ /* ------------------------------------------------------------------------- */ --#define ARCHIMEDES +-/* #define UNIX */ +#define UNIX /* ------------------------------------------------------------------------- */ diff -ruN inform.old/files/patch-ab inform/files/patch-ab --- inform.old/files/patch-ab Fri Jul 18 15:50:46 2003 +++ inform/files/patch-ab Wed Dec 31 16:00:00 1969 @@ -1,38 +0,0 @@ ---- veneer.c.orig Sun May 23 13:23:38 1999 -+++ veneer.c Sun May 23 13:24:16 1999 -@@ -6,6 +6,12 @@ - /* Part of Inform 6.21 */ - /* copyright (c) Graham Nelson 1993, 1994, 1995, 1996, 1997, 1998, 1999 */ - /* */ -+/* Incorporates the patch by Andrew Plotkin/Torbörn Andersson which was */ -+/* posted on r.a.i.f. on 5 May 1999 by Michael Baum. This fixes a memory */ -+/* problem on some platforms and also fixes a bug which occurs when debug */ -+/* mode is off. Note that you have to turn off strict mode, i.e. -~S, to */ -+/* turn off the debug mode. */ -+/* */ - /* ------------------------------------------------------------------------- */ - - #include "header.h" -@@ -243,13 +249,18 @@ - @check_arg_count 7 ?~A__x;y++;@check_arg_count 8 ?~A__x;y++;.A__x;", - "#ifdef INFIX;if (obj has infix__watching) n=1;#endif;\ - #ifdef DEBUG;if (debug_flag & 1 ~= 0) n=1;#endif;\ -- if (n==1) { n=debug_flag & 1; debug_flag=debug_flag-n;\ -- print \"[ ~\", (name) obj, \"~.\", (property) id, \"(\";\ -- switch(y) { 1: print a; 2: print a,\",\",b; 3: print a,\",\",b,\",\",c;\ -+ if (n==1) {\ -+ #ifdef DEBUG;n=debug_flag & 1;\ -+debug_flag=debug_flag-n;#endif;\ -+ print \"[ ~\", (name) obj, \"~.\", (property) id, \"(\";\ -+ switch(y) { 1: print a; 2: print a,\",\",b; 3: print \ -+a,\",\",b,\",\",c;\ - 4: print a,\",\",b,\",\",c,\",\",d;\ - 5: print a,\",\",b,\",\",c,\",\",d,\",\",e;\ - 6: print a,\",\",b,\",\",c,\",\",d,\",\",e,\",\",f; }\ -- print \") ]^\"; debug_flag = debug_flag + n; }" -+ print \") ]^\";\ -+ #ifdef DEBUG;debug_flag = debug_flag + n;#endif;\ -+ }", - "if (id > 0 && id < 64)\ - { x = obj.&id; if (x==0) { x=$000a-->0 + 2*(id-1); n=2; }\ - else n = obj.#id; }\ diff -ruN inform.old/pkg-plist inform/pkg-plist --- inform.old/pkg-plist Sat Dec 4 18:07:36 1999 +++ inform/pkg-plist Fri Dec 17 22:44:07 2004 @@ -6,172 +6,145 @@ share/inform/linklv.h share/inform/Parser.h share/inform/parserm.h -share/inform/Verblib.h share/inform/verblibm.h share/inform/VerbLib.h -share/doc/inform/Relnote -share/doc/inform/Relnote2 -share/doc/inform/answers1/answer10.html -share/doc/inform/answers1/answer11.html -share/doc/inform/answers1/answer12.html -share/doc/inform/answers1/answer13.html -share/doc/inform/answers1/answer14.html -share/doc/inform/answers1/answer15.html -share/doc/inform/answers1/answer16.html -share/doc/inform/answers1/answer17.html -share/doc/inform/answers1/answer18.html -share/doc/inform/answers1/answer19.html -share/doc/inform/answers1/answer2.html -share/doc/inform/answers1/answer20.html -share/doc/inform/answers1/answer21.html -share/doc/inform/answers1/answer22.html -share/doc/inform/answers1/answer23.html -share/doc/inform/answers1/answer24.html -share/doc/inform/answers1/answer25.html -share/doc/inform/answers1/answer26.html -share/doc/inform/answers1/answer27.html -share/doc/inform/answers1/answer28.html -share/doc/inform/answers1/answer29.html -share/doc/inform/answers1/answer3.html -share/doc/inform/answers1/answer30.html -share/doc/inform/answers1/answer31.html -share/doc/inform/answers1/answer32.html -share/doc/inform/answers1/answer33.html -share/doc/inform/answers1/answer34.html -share/doc/inform/answers1/answer35.html -share/doc/inform/answers1/answer36.html -share/doc/inform/answers1/answer37.html -share/doc/inform/answers1/answer38.html -share/doc/inform/answers1/answer39.html -share/doc/inform/answers1/answer4.html -share/doc/inform/answers1/answer40.html -share/doc/inform/answers1/answer41.html -share/doc/inform/answers1/answer42.html -share/doc/inform/answers1/answer43.html -share/doc/inform/answers1/answer44.html -share/doc/inform/answers1/answer45.html -share/doc/inform/answers1/answer46.html -share/doc/inform/answers1/answer47.html -share/doc/inform/answers1/answer48.html -share/doc/inform/answers1/answer49.html -share/doc/inform/answers1/answer5.html -share/doc/inform/answers1/answer50.html -share/doc/inform/answers1/answer6.html -share/doc/inform/answers1/answer7.html -share/doc/inform/answers1/answer8.html -share/doc/inform/answers1/answer9.html -share/doc/inform/answers1/answer1.html -share/doc/inform/answers2/answer52.html -share/doc/inform/answers2/answer53.html -share/doc/inform/answers2/answer54.html -share/doc/inform/answers2/answer55.html -share/doc/inform/answers2/answer56.html -share/doc/inform/answers2/answer57.html -share/doc/inform/answers2/answer58.html -share/doc/inform/answers2/answer59.html -share/doc/inform/answers2/answer60.html -share/doc/inform/answers2/answer61.html -share/doc/inform/answers2/answer62.html -share/doc/inform/answers2/answer63.html -share/doc/inform/answers2/answer64.html -share/doc/inform/answers2/answer65.html -share/doc/inform/answers2/answer66.html -share/doc/inform/answers2/answer67.html -share/doc/inform/answers2/answer68.html -share/doc/inform/answers2/answer69.html -share/doc/inform/answers2/answer70.html -share/doc/inform/answers2/answer71.html -share/doc/inform/answers2/answer72.html -share/doc/inform/answers2/answer73.html -share/doc/inform/answers2/answer74.html -share/doc/inform/answers2/answer75.html -share/doc/inform/answers2/answer76.html -share/doc/inform/answers2/answer77.html -share/doc/inform/answers2/answer78.html -share/doc/inform/answers2/answer79.html -share/doc/inform/answers2/answer80.html -share/doc/inform/answers2/answer81.html -share/doc/inform/answers2/answer82.html -share/doc/inform/answers2/answer83.html -share/doc/inform/answers2/answer84.html -share/doc/inform/answers2/answer85.html -share/doc/inform/answers2/answer86.html -share/doc/inform/answers2/answer87.html -share/doc/inform/answers2/answer88.html -share/doc/inform/answers2/answer89.html -share/doc/inform/answers2/answer90.html -share/doc/inform/answers2/answer91.html -share/doc/inform/answers2/answer92.html -share/doc/inform/answers2/answer93.html -share/doc/inform/answers2/answer94.html -share/doc/inform/answers2/answer95.html -share/doc/inform/answers2/answer96.html -share/doc/inform/answers2/answer51.html -share/doc/inform/chapter2.html -share/doc/inform/chapter3.html -share/doc/inform/chapter4.html -share/doc/inform/chapter5.html -share/doc/inform/chapter6.html -share/doc/inform/chapterA.html +share/doc/inform/readme.txt +share/doc/inform/app.html +share/doc/inform/backcover.html +share/doc/inform/ch1.html +share/doc/inform/ch2.html +share/doc/inform/ch3.html +share/doc/inform/ch4.html +share/doc/inform/ch5.html +share/doc/inform/ch6.html +share/doc/inform/ch7.html +share/doc/inform/ch8.html +share/doc/inform/cited.html +share/doc/inform/colophon.html share/doc/inform/contents.html +share/doc/inform/dm4-011_1.jpg +share/doc/inform/dm4-015_1.jpg +share/doc/inform/dm4-048_1.jpg +share/doc/inform/dm4-057_1.jpg +share/doc/inform/dm4-084_1.jpg +share/doc/inform/dm4-092_1.jpg +share/doc/inform/dm4-097_1.jpg +share/doc/inform/dm4-106_1.jpg +share/doc/inform/dm4-116_1.jpg +share/doc/inform/dm4-122_1.jpg +share/doc/inform/dm4-125_1.jpg +share/doc/inform/dm4-126_1.jpg +share/doc/inform/dm4-128_1.jpg +share/doc/inform/dm4-132_1.jpg +share/doc/inform/dm4-135_1.jpg +share/doc/inform/dm4-137_1.jpg +share/doc/inform/dm4-141_1.jpg +share/doc/inform/dm4-144_1.jpg +share/doc/inform/dm4-148_1.jpg +share/doc/inform/dm4-154_1.jpg +share/doc/inform/dm4-157_1.jpg +share/doc/inform/dm4-162_1.jpg +share/doc/inform/dm4-170_1.jpg +share/doc/inform/dm4-176_1.jpg +share/doc/inform/dm4-178_1.jpg +share/doc/inform/dm4-186_1.jpg +share/doc/inform/dm4-198_1.jpg +share/doc/inform/dm4-204_1.jpg +share/doc/inform/dm4-211_1.jpg +share/doc/inform/dm4-216_1.jpg +share/doc/inform/dm4-222_1.jpg +share/doc/inform/dm4-225_1.jpg +share/doc/inform/dm4-232_1.jpg +share/doc/inform/dm4-241_1.jpg +share/doc/inform/dm4-247_1.jpg +share/doc/inform/dm4-253_1.jpg +share/doc/inform/dm4-260_1.jpg +share/doc/inform/dm4-262_1.jpg +share/doc/inform/dm4-267_1.jpg +share/doc/inform/dm4-279_1.jpg +share/doc/inform/dm4-288_1.jpg +share/doc/inform/dm4-295_1.jpg +share/doc/inform/dm4-300_1.jpg +share/doc/inform/dm4-314_1.jpg +share/doc/inform/dm4-318_1.jpg +share/doc/inform/dm4-331_1.jpg +share/doc/inform/dm4-336_1.jpg +share/doc/inform/dm4-344_1.jpg +share/doc/inform/dm4-349_1.jpg +share/doc/inform/dm4-352_1.jpg +share/doc/inform/dm4-374_1.jpg +share/doc/inform/dm4-378_1.jpg +share/doc/inform/dm4-391_1.jpg +share/doc/inform/dm4-392_1.jpg +share/doc/inform/dm4-406_1.jpg +share/doc/inform/dm4-412_1.jpg +share/doc/inform/dm4-538_1.jpg +share/doc/inform/dm4-546_1.jpg +share/doc/inform/dm4-572_1.jpg +share/doc/inform/dm4.css +share/doc/inform/dm4index.html +share/doc/inform/exindex.html share/doc/inform/index.html -share/doc/inform/icons/ddbend.gif -share/doc/inform/icons/dddbend.gif -share/doc/inform/icons/dexercise.gif -share/doc/inform/icons/exercise.gif -share/doc/inform/icons/refs.gif -share/doc/inform/icons/warning.gif -share/doc/inform/icons/dbend.gif -share/doc/inform/icons/ddexercise.gif share/doc/inform/intro.html -share/doc/inform/section1.html -share/doc/inform/section11.html -share/doc/inform/section12.html -share/doc/inform/section14.html -share/doc/inform/section15.html -share/doc/inform/section17.html -share/doc/inform/section18.html -share/doc/inform/section2.html -share/doc/inform/section20.html -share/doc/inform/section21.html -share/doc/inform/section23.html -share/doc/inform/section24.html -share/doc/inform/section26.html -share/doc/inform/section27.html -share/doc/inform/section29.html -share/doc/inform/section3.html -share/doc/inform/section30.html -share/doc/inform/section32.html -share/doc/inform/section33.html -share/doc/inform/section4.html -share/doc/inform/section5.html -share/doc/inform/section6.html -share/doc/inform/section7.html -share/doc/inform/section8.html -share/doc/inform/section9.html -share/doc/inform/sectionA10.html -share/doc/inform/sectionA11.html -share/doc/inform/sectionA2.html -share/doc/inform/sectionA3.html -share/doc/inform/sectionA5.html -share/doc/inform/sectionA6.html -share/doc/inform/sectionA8.html -share/doc/inform/sectionA9.html -share/doc/inform/chapter1.html -share/doc/inform/section10.html -share/doc/inform/section13.html -share/doc/inform/section16.html -share/doc/inform/section19.html -share/doc/inform/section22.html -share/doc/inform/section25.html -share/doc/inform/section28.html -share/doc/inform/section31.html -share/doc/inform/sectionA1.html -share/doc/inform/sectionA12.html -share/doc/inform/sectionA4.html -share/doc/inform/sectionA7.html +share/doc/inform/roller2.jpg +share/doc/inform/s1.html +share/doc/inform/s10.html +share/doc/inform/s11.html +share/doc/inform/s12.html +share/doc/inform/s13.html +share/doc/inform/s14.html +share/doc/inform/s15.html +share/doc/inform/s16.html +share/doc/inform/s17.html +share/doc/inform/s18.html +share/doc/inform/s19.html +share/doc/inform/s2.html +share/doc/inform/s20.html +share/doc/inform/s21.html +share/doc/inform/s22.html +share/doc/inform/s23.html +share/doc/inform/s24.html +share/doc/inform/s25.html +share/doc/inform/s26.html +share/doc/inform/s27.html +share/doc/inform/s28.html +share/doc/inform/s29.html +share/doc/inform/s3.html +share/doc/inform/s30.html +share/doc/inform/s31.html +share/doc/inform/s32.html +share/doc/inform/s33.html +share/doc/inform/s34.html +share/doc/inform/s35.html +share/doc/inform/s36.html +share/doc/inform/s37.html +share/doc/inform/s38.html +share/doc/inform/s39.html +share/doc/inform/s4.html +share/doc/inform/s40.html +share/doc/inform/s41.html +share/doc/inform/s42.html +share/doc/inform/s43.html +share/doc/inform/s44.html +share/doc/inform/s45.html +share/doc/inform/s46.html +share/doc/inform/s47.html +share/doc/inform/s48.html +share/doc/inform/s49.html +share/doc/inform/s5.html +share/doc/inform/s50.html +share/doc/inform/s51.html +share/doc/inform/s52.html +share/doc/inform/s6.html +share/doc/inform/s7.html +share/doc/inform/s8.html +share/doc/inform/s9.html +share/doc/inform/sa1.html +share/doc/inform/sa2.html +share/doc/inform/sa3.html +share/doc/inform/sa4.html +share/doc/inform/sa5.html +share/doc/inform/sa6.html +share/doc/inform/tables.html @dirrm share/inform -@dirrm share/doc/inform/answers1 -@dirrm share/doc/inform/answers2 -@dirrm share/doc/inform/icons @dirrm share/doc/inform --- inform-diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 07:22:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05D9516A4CE; Sat, 18 Dec 2004 07:22:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C566643D45; Sat, 18 Dec 2004 07:22:13 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from freefall.freebsd.org (ahze@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI7MDtM098516; Sat, 18 Dec 2004 07:22:13 GMT (envelope-from ahze@freefall.freebsd.org) Received: (from ahze@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI7MDmU098512; Sat, 18 Dec 2004 07:22:13 GMT (envelope-from ahze) Date: Sat, 18 Dec 2004 07:22:13 GMT From: Michael Johnson Message-Id: <200412180722.iBI7MDmU098512@freefall.freebsd.org> To: joeldiaz@bellsouth.net, ahze@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75212: PATCH audio/tunesbrowser - fix glade file path X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 07:22:14 -0000 Synopsis: PATCH audio/tunesbrowser - fix glade file path State-Changed-From-To: open->closed State-Changed-By: ahze State-Changed-When: Sat Dec 18 07:22:02 GMT 2004 State-Changed-Why: Committed, Thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=75212 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 08:49:03 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F33F116A4CE; Sat, 18 Dec 2004 08:49:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD8DF43D1D; Sat, 18 Dec 2004 08:49:02 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (clive@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI8n2eu006344; Sat, 18 Dec 2004 08:49:02 GMT (envelope-from clive@freefall.freebsd.org) Received: (from clive@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI8mvEu006340; Sat, 18 Dec 2004 08:48:57 GMT (envelope-from clive) Date: Sat, 18 Dec 2004 08:48:57 GMT From: Clive Lin Message-Id: <200412180848.iBI8mvEu006340@freefall.freebsd.org> To: gavin@FreeBSDChina.org, clive@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75183: [PATCH] chinese/qterm: fix build on 4.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 08:49:03 -0000 Synopsis: [PATCH] chinese/qterm: fix build on 4.x State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Sat Dec 18 08:48:43 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=75183 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 09:30:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E264616A4D0 for ; Sat, 18 Dec 2004 09:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A578043D41 for ; Sat, 18 Dec 2004 09:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI9URLI011196 for ; Sat, 18 Dec 2004 09:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI9URcB011188; Sat, 18 Dec 2004 09:30:27 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 09:30:27 GMT Resent-Message-Id: <200412180930.iBI9URcB011188@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB09716A4CE for ; Sat, 18 Dec 2004 09:24:37 +0000 (GMT) Received: from FreeBSD.csie.NCTU.edu.tw (freebsd.csie.nctu.edu.tw [140.113.17.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CDFD43D1F for ; Sat, 18 Dec 2004 09:24:37 +0000 (GMT) (envelope-from clsung@FreeBSD.csie.NCTU.edu.tw) Received: from localhost (unknown [127.0.0.1]) by FreeBSD.csie.NCTU.edu.tw (Postfix) with ESMTP id 867DA106C66; Sat, 18 Dec 2004 17:24:27 +0800 (CST) Received: from FreeBSD.csie.NCTU.edu.tw ([127.0.0.1]) by localhost (FreeBSD.csie.NCTU.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16059-10; Sat, 18 Dec 2004 17:24:27 +0800 (CST) Received: by FreeBSD.csie.NCTU.edu.tw (Postfix, from userid 1038) id 17650106C65; Sat, 18 Dec 2004 17:24:27 +0800 (CST) Message-Id: <20041218092427.17650106C65@FreeBSD.csie.NCTU.edu.tw> Date: Sat, 18 Dec 2004 17:24:27 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: elvis@sslab.cs.ccu.edu.tw Subject: ports/75214: [PATCH] www/p5-Kwiki-NewPage: update to 0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 09:30:28 -0000 >Number: 75214 >Category: ports >Synopsis: [PATCH] www/p5-Kwiki-NewPage: update to 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: Sat Dec 18 09:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-STABLE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD FreeBSD.csie.NCTU.edu.tw 4.10-STABLE FreeBSD 4.10-STABLE #1: Mon Nov 15 22:13:47 CST 2004 >Description: - Update to 0.12 - to compatable with Kwiki-0.35 Port maintainer (elvis@sslab.cs.ccu.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- p5-Kwiki-NewPage-0.12.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-Kwiki-NewPage/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 30 Aug 2004 16:22:15 -0000 1.1 +++ Makefile 18 Dec 2004 09:24:05 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Kwiki-NewPage -PORTVERSION= 0.11 +PORTVERSION= 0.12 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Kwiki Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/p5-Kwiki-NewPage/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 30 Aug 2004 16:22:15 -0000 1.1 +++ distinfo 18 Dec 2004 09:24:05 -0000 @@ -1,2 +1,2 @@ -MD5 (Kwiki-NewPage-0.11.tar.gz) = 50a12d1ab0196ae499945fc6dad96e6c -SIZE (Kwiki-NewPage-0.11.tar.gz) = 8423 +MD5 (Kwiki-NewPage-0.12.tar.gz) = 14feb28dc087ea07dccad58f05842302 +SIZE (Kwiki-NewPage-0.12.tar.gz) = 8154 --- p5-Kwiki-NewPage-0.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 09:31:42 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F15116A4CE; Sat, 18 Dec 2004 09:31:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C10243D3F; Sat, 18 Dec 2004 09:31:42 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (clsung@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBI9VfxD012186; Sat, 18 Dec 2004 09:31:41 GMT (envelope-from clsung@freefall.freebsd.org) Received: (from clsung@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBI9Vfa3012182; Sat, 18 Dec 2004 09:31:41 GMT (envelope-from clsung) Date: Sat, 18 Dec 2004 09:31:41 GMT From: Cheng-Lung Sung Message-Id: <200412180931.iBI9Vfa3012182@freefall.freebsd.org> To: clsung@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Subject: Re: ports/75214: [PATCH] www/p5-Kwiki-NewPage: update to 0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 09:31:42 -0000 Synopsis: [PATCH] www/p5-Kwiki-NewPage: update to 0.12 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: clsung Responsible-Changed-When: Sat Dec 18 09:31:29 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=75214 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 10:10:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C6FC16A4CE for ; Sat, 18 Dec 2004 10:10:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39DD043D48 for ; Sat, 18 Dec 2004 10:10:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIAAQNs016950 for ; Sat, 18 Dec 2004 10:10:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIAAQ9l016949; Sat, 18 Dec 2004 10:10:26 GMT (envelope-from gnats) Date: Sat, 18 Dec 2004 10:10:26 GMT Message-Id: <200412181010.iBIAAQ9l016949@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Parv Subject: Re: ports/73404: shells/ksh93 - notify option + output redirected to nonexistent file cause crash w/ segfault X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Parv List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 10:10:27 -0000 The following reply was made to PR ports/73404; it has been noted by GNATS. From: Parv To: Joe Kelsey Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/73404: shells/ksh93 - notify option + output redirected to nonexistent file cause crash w/ segfault Date: Sat, 18 Dec 2004 05:01:13 -0500 in message <1102483426.616.148.camel@zircon.zircon.seattle.wa.us>, wrote Joe Kelsey thusly... > > On Tue, 2004-12-07 at 23:56 -0500, Parv wrote: > > in message <1102478713.616.140.camel@zircon.zircon.seattle.wa.us>, > > wrote Joe Kelsey thusly... > > > > > > Unfortunately, you do not present enough information for me to > > > actually reporduce your problem. > > ... > > > If you can give me an actual command line which causes the > > > problem, then maybe I can attempt to debug the problem. Simply > > > stating that you invoke it from bash really is not helpful. > > > > The PR has everything in it. Yes, simply invoking from another > > (interactive) shell does not cause crash, only under a particular > > situation. > > > > To reiterate & rephrase, edit "~/.profile" to have ... > > > > ENV="${HOME}/.kshrc-segfault" > > export ENV > > rm -f initially-nonexistent-file > > > initially-nonexistent-file & > > What effect do you expect the redirection with & to have? Why > exactly do you use this particular idiom? It does not make any > sense to me. Do you really mean to actually use exec with > redirection? No, i did not mean to use exec along w/ redirection. Above could just as well had echo command prefixed that sent some text to a file which may or may not exist or could actually be a named pipe. As i had expressed in my PR, the code given is/was the minimum example that i could muster to show the crash. In actual usage, i would like to be able to send some messages to a regular file -- which may or may not exist initially -- or a named pipe, in ksh93 too not just in bash, while the shell is going through its initialization w/o crashing. > Do you expect the above redirection to have some other > effect instead of just redirecting the following exec? If you mean this exec usage ... > > exec $0 ... then ... No, i do not expect anything unusal that does not already happen besides the crash. I expect the redirection (in the example code given) to either create a non existing file or truncate the already existing file in background. I expect above quoted exec to execute the shell in which ~/.profile was sourced. > Also, why do you feel the need to put this in a .profile? Does > naming the script file .profile serve any purpose? They are in ~/.profile because ksh93 reads it during initialization, which i have stated above. > Does putting it in some different file make any difference? I have not tried but that would be like putting what goes in .profile in another file AND sourcing that file inside the .profile. - Parv -- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 12:00:46 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A40A716A4CE for ; Sat, 18 Dec 2004 12:00:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D3243D49 for ; Sat, 18 Dec 2004 12:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIC0kV7025133 for ; Sat, 18 Dec 2004 12:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIC0kuM025128; Sat, 18 Dec 2004 12:00:46 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 12:00:46 GMT Resent-Message-Id: <200412181200.iBIC0kuM025128@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 507AD16A4CE for ; Sat, 18 Dec 2004 11:56:43 +0000 (GMT) Received: from mail.seceidos.de (mail.seceidos.de [213.157.28.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 843D443D49 for ; Sat, 18 Dec 2004 11:56:42 +0000 (GMT) root=freebsd-gnats-submit=freebsd.org=7d45f6c3b4adf33f63274392d7377e7a5e58050b@seceidos.de) Message-Id: <200412181156.iBIBuW6L015299@services.intern.seceidos.de> Date: Sat, 18 Dec 2004 12:56:32 +0100 (CET) From: Jan-Peter Koopmann To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75215: [MAINTAINER] mail/MailScanner: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 12:00:46 -0000 >Number: 75215 >Category: ports >Synopsis: [MAINTAINER] mail/MailScanner: [SUMMARIZE CHANGES] >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: Sat Dec 18 12:00:45 GMT 2004 >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: Makefile change: Now all languages.conf are updated using Julians new upgrade_languages_conf script. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- MailScanner-4.36.4_1.patch begins here --- diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/Makefile /server-root/ports/mail/mailscanner/Makefile --- /server-root/ports/mail/mailscanner.orig/Makefile Fri Dec 17 08:32:44 2004 +++ /server-root/ports/mail/mailscanner/Makefile Sat Dec 18 12:53:52 2004 @@ -2,11 +2,12 @@ # Date created: 17 March 2003 # Whom: Jan-Peter Koopmann # -# $FreeBSD: ports/mail/mailscanner/Makefile,v 1.30 2004/12/17 07:32:44 edwin Exp $ +# $FreeBSD: ports/mail/mailscanner/Makefile,v 1.29 2004/11/10 10:44:48 vs Exp $ # PORTNAME= MailScanner PORTVERSION= 4.36.4 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.sng.ecs.soton.ac.uk/mailscanner/files/4/tar/ DISTNAME= ${PORTNAME}-install-${PORTVERSION}-${PATCHLEVEL} @@ -209,18 +210,23 @@ ${ECHO} "Changes in MailScanner.conf found. Please look at \ ${PREFIX}/etc/MailScanner/MailScanner.conf.new.${PORTVERSION}" ; \ fi - # Upgrading langauages.conf... Please wait... ATTENTION: English version only! - @${WRKSRC}/bin/upgrade_languages_conf \ - ${DATADIR}/reports/en/languages.conf \ - ${DATADIR}/reports/en/languages.conf.sample > \ - ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} \ - 2> /dev/null - @if diff -b -B -q ${DATADIR}/reports/en/languages.conf \ - ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ - then ${ECHO} "No changes in languages.conf found" ; \ - ${RM} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ - else ${CP} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ${DATADIR}/reports/en/languages.conf ; \ - fi + @for LANG_DIR in ${DATADIR}/reports/*; do \ + if [ -f $${LANG_DIR}/languages.conf ]; then \ + ${ECHO} -n Upgrading $${LANG_DIR}/languages.conf... Please wait...; \ + ${WRKSRC}/bin/upgrade_languages_conf \ + $${LANG_DIR}/languages.conf \ + $${LANG_DIR}/languages.conf.sample > \ + $${LANG_DIR}/languages.conf.new.${PORTVERSION} \ + 2> /dev/null ; \ + if diff -b -B -q $${LANG_DIR}/languages.conf \ + $${LANG_DIR}/languages.conf.new.${PORTVERSION} ; \ + then ${ECHO} " no changes"; \ + ${RM} $${LANG_DIR}/languages.conf.new.${PORTVERSION} ; \ + else ${ECHO} " done"; \ + ${CP} $${LANG_DIR}/languages.conf.new.${PORTVERSION} $${LANG_DIR}/languages.conf ; \ + fi; \ + fi; \ + done .endif @${SED} -e 's,%%PREFIX%%,${PREFIX},' pkg-message > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} --- MailScanner-4.36.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 12:10:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1897B16A4CE for ; Sat, 18 Dec 2004 12:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D53C143D45 for ; Sat, 18 Dec 2004 12:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBICAOBD029417 for ; Sat, 18 Dec 2004 12:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBICAOqM029410; Sat, 18 Dec 2004 12:10:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 12:10:24 GMT Resent-Message-Id: <200412181210.iBICAOqM029410@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B5FD16A4CE for ; Sat, 18 Dec 2004 12:07:52 +0000 (GMT) Received: from mail.seceidos.de (mail.seceidos.de [213.157.28.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F56F43D1D for ; Sat, 18 Dec 2004 12:07:51 +0000 (GMT) root=freebsd-gnats-submit=freebsd.org=7d45f6c3b4adf33f63274392d7377e7a5e58050b@seceidos.de) Message-Id: <200412181207.iBIC7kqJ022174@services.intern.seceidos.de> Date: Sat, 18 Dec 2004 13:07:46 +0100 (CET) From: Jan-Peter Koopmann To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75216: [MAINTAINER] mail/MailScanner-devel: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 12:10:25 -0000 >Number: 75216 >Category: ports >Synopsis: [MAINTAINER] mail/MailScanner-devel: [SUMMARIZE CHANGES] >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: Sat Dec 18 12:10:23 GMT 2004 >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: Change in Makefile: This version will update all languages.conf and not only the english one. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- MailScanner-devel-4.37.3_1.patch begins here --- diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner-devel.orig/Makefile /server-root/ports/mail/mailscanner-devel/Makefile --- /server-root/ports/mail/mailscanner-devel.orig/Makefile Fri Dec 17 09:24:24 2004 +++ /server-root/ports/mail/mailscanner-devel/Makefile Sat Dec 18 13:06:22 2004 @@ -7,6 +7,7 @@ PORTNAME= MailScanner PORTVERSION= 4.37.3 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.sng.ecs.soton.ac.uk/mailscanner/files/4/tar/ PKGNAMESUFFIX= -devel @@ -210,19 +211,24 @@ ${ECHO} "Changes in MailScanner.conf found. Please look at \ ${PREFIX}/etc/MailScanner/MailScanner.conf.new.${PORTVERSION}" ; \ fi - # Upgrading langauages.conf... Please wait... ATTENTION: English version only! - @${WRKSRC}/bin/upgrade_languages_conf \ - ${DATADIR}/reports/en/languages.conf \ - ${DATADIR}/reports/en/languages.conf.sample > \ - ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} \ - 2> /dev/null - @if diff -b -B -q ${DATADIR}/reports/en/languages.conf \ - ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ - then ${ECHO} "No changes in languages.conf found" ; \ - ${RM} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ; \ - else ${CP} ${DATADIR}/reports/en/languages.conf.new.${PORTVERSION} ${DATADIR}/reports/en/languages.conf ; \ - fi .endif + @for LANG_DIR in ${DATADIR}/reports/*; do \ + if [ -f $${LANG_DIR}/languages.conf ]; then \ + ${ECHO} -n Upgrading $${LANG_DIR}/languages.conf... Please wait...; \ + ${WRKSRC}/bin/upgrade_languages_conf \ + $${LANG_DIR}/languages.conf \ + $${LANG_DIR}/languages.conf.sample > \ + $${LANG_DIR}/languages.conf.new.${PORTVERSION} \ + 2> /dev/null ; \ + if diff -b -B -q $${LANG_DIR}/languages.conf \ + $${LANG_DIR}/languages.conf.new.${PORTVERSION} ; \ + then ${ECHO} " no changes"; \ + ${RM} $${LANG_DIR}/languages.conf.new.${PORTVERSION} ; \ + else ${ECHO} " done"; \ + ${CP} $${LANG_DIR}/languages.conf.new.${PORTVERSION} $${LANG_DIR}/languages.conf ; \ + fi; \ + fi; \ + done @${SED} -e 's,%%PREFIX%%,${PREFIX},' pkg-message > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} --- MailScanner-devel-4.37.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 13:30:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EEFE16A4CF for ; Sat, 18 Dec 2004 13:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E787C43D53 for ; Sat, 18 Dec 2004 13:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIDUMt7037655 for ; Sat, 18 Dec 2004 13:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIDUMxh037654; Sat, 18 Dec 2004 13:30:22 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 13:30:22 GMT Resent-Message-Id: <200412181330.iBIDUMxh037654@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, Pasi Hirvonen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BFBF16A4CE for ; Sat, 18 Dec 2004 13:21:46 +0000 (GMT) Received: from mandy.eunet.fi (mandy.eunet.fi [193.66.1.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3905F43D53 for ; Sat, 18 Dec 2004 13:21:46 +0000 (GMT) (envelope-from psh@iki.fi) Received: from mirp.foo (opiskelijat.joensuunelli.fi [193.65.112.51]) by mandy.eunet.fi (Postfix) with ESMTP id 08512140C46; Sat, 18 Dec 2004 15:21:44 +0200 (EET) Received: from mirp.foo (localhost [127.0.0.1]) by mirp.foo (8.13.1/8.13.1) with ESMTP id iBIDLh2I031747; Sat, 18 Dec 2004 15:21:43 +0200 (EET) (envelope-from pasi@localhost.localdomain) Received: (from pasi@localhost) by mirp.foo (8.13.1/8.13.1/Submit) id iBIDLcfP031746; Sat, 18 Dec 2004 15:21:38 +0200 (EET) (envelope-from pasi) Message-Id: <200412181321.iBIDLcfP031746@mirp.foo> Date: Sat, 18 Dec 2004 15:21:38 +0200 (EET) From: Pasi Hirvonen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: jus@security.za.net Subject: ports/75217: [PATCH] ftp/nftpd unfetchable on modern systems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Pasi Hirvonen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 13:30:23 -0000 >Number: 75217 >Category: ports >Synopsis: [PATCH] ftp/nftpd unfetchable on modern systems >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 Dec 18 13:30:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Pasi Hirvonen >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD mirp.foo 5.3-STABLE FreeBSD 5.3-STABLE #3: Thu Dec 9 18:48:50 EET 2004 pasi@mirp.foo:/usr/obj/usr/src/sys/MIRP i386 >Description: ftp/nftpd port's Makefile uses OSVERSION to detect which version of nctpd to download. The 5.2.1 tarball the port tries to fetch on systems with OSVERSION >= 500000 does not exist anymore, it's been renamed to ncftpd-2.8.1-freebsd5.3-i386-export.tar.gz. (Thanks pointyhat!) >How-To-Repeat: >Fix: --- ncftpd.patch begins here --- diff -uNr ncftpd.orig/Makefile ncftpd/Makefile --- ncftpd.orig/Makefile Sat Dec 18 15:14:20 2004 +++ ncftpd/Makefile Sat Dec 18 15:13:12 2004 @@ -24,7 +24,7 @@ .include .if ${OSVERSION} >= 500000 -BINVER= 5.2.1 +BINVER= 5.3 .elif ${OSVERSION} >= 480000 BINVER= 4.8 .elif ${OSVERSION} >= 350000 diff -uNr ncftpd.orig/distinfo ncftpd/distinfo --- ncftpd.orig/distinfo Sat Dec 18 15:13:50 2004 +++ ncftpd/distinfo Sat Dec 18 15:16:18 2004 @@ -1,5 +1,5 @@ -MD5 (ncftpd-2.8.1-freebsd3.5.1-i386-export.tar.gz) = 18b169c321c96d7be9de43a20c3ad3e7 -SIZE (ncftpd-2.8.1-freebsd3.5.1-i386-export.tar.gz) = 351191 +MD5 (ncftpd-2.8.1-freebsd5.3-i386-export.tar.gz) = 27ccc9c69a53f87a7bf347d32fbf252b +SIZE (ncftpd-2.8.1-freebsd5.3-i386-export.tar.gz) = 381828 MD5 (ncftpd-2.8.1-freebsd4.8-i386-export.tar.gz) = b7a0d1351ccb73615da30e6e60640f2f SIZE (ncftpd-2.8.1-freebsd4.8-i386-export.tar.gz) = 377612 MD5 (ncftpd-2.8.1-freebsd5.2.1-i386-export.tar.gz) = 47461a861adc84d52214d08f82b82775 --- ncftpd.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:00:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B4F316A4CE for ; Sat, 18 Dec 2004 14:00:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35FB443D48 for ; Sat, 18 Dec 2004 14:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIE0eNX040112 for ; Sat, 18 Dec 2004 14:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIE0eFc040111; Sat, 18 Dec 2004 14:00:40 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 14:00:40 GMT Resent-Message-Id: <200412181400.iBIE0eFc040111@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8AA016A4CF for ; Sat, 18 Dec 2004 13:52:18 +0000 (GMT) Received: from scone.ki.iif.hu (scone.ki.iif.hu [193.6.222.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2768E43D2F for ; Sat, 18 Dec 2004 13:52:18 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.13.1/8.13.1) id iBIDpoE7088043; Sat, 18 Dec 2004 14:51:50 +0100 (CET) (envelope-from mohacsi) Message-Id: <200412181351.iBIDpoE7088043@scone.ki.iif.hu> Date: Sat, 18 Dec 2004 14:51:50 +0100 (CET) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75218: [MAINTAINER] comms/scmxx: fixes for german and russian manual pages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Janos Mohacsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:00:41 -0000 >Number: 75218 >Category: ports >Synopsis: [MAINTAINER] comms/scmxx: fixes for german and russian manual pages >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 Dec 18 14:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.3-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 5.3-STABLE FreeBSD 5.3-STABLE #5: Thu Nov 11 05:45:29 CET 2004 >Description: Maintainer Update to comms/scmxx 0.7.4 fixes for german and russian manual pages Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- scmxx-0.7.4_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/comms/scmxx.orig/Makefile /usr/ports/comms/scmxx/Makefile --- /usr/ports/comms/scmxx.orig/Makefile Fri Oct 15 18:17:23 2004 +++ /usr/ports/comms/scmxx/Makefile Sat Dec 18 14:43:52 2004 @@ -7,6 +7,7 @@ PORTNAME= scmxx PORTVERSION= 0.7.4 +PORTREVISION= 1 CATEGORIES= comms MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN --exclude=CVS /usr/ports/comms/scmxx.orig/pkg-plist /usr/ports/comms/scmxx/pkg-plist --- /usr/ports/comms/scmxx.orig/pkg-plist Fri Oct 15 18:17:23 2004 +++ /usr/ports/comms/scmxx/pkg-plist Sat Dec 18 14:43:26 2004 @@ -11,3 +11,7 @@ %%EXAMPLESDIR%%/vCalendar.vcs %%EXAMPLESDIR%%/vCard.vcf @dirrm %%EXAMPLESDIR%% +@unexec rmdir %D/man/de/man1 2>/dev/null || true +@unexec rmdir %D/man/de/ 2>/dev/null || true +@unexec rmdir %D/man/ru/man1 2>/dev/null || true +@unexec rmdir %D/man/ru/ 2>/dev/null || true --- scmxx-0.7.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:10:19 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E870416A4CF for ; Sat, 18 Dec 2004 14:10:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C27AA43D41 for ; Sat, 18 Dec 2004 14:10:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIEAIou044290 for ; Sat, 18 Dec 2004 14:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIEAIoI044289; Sat, 18 Dec 2004 14:10:18 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 14:10:18 GMT Resent-Message-Id: <200412181410.iBIEAIoI044289@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B438316A4CE for ; Sat, 18 Dec 2004 14:08:15 +0000 (GMT) Received: from scone.ki.iif.hu (scone.ki.iif.hu [193.6.222.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id D630643D49 for ; Sat, 18 Dec 2004 14:08:14 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.13.1/8.13.1) id iBIE7mkY097371; Sat, 18 Dec 2004 15:07:48 +0100 (CET) (envelope-from mohacsi) Message-Id: <200412181407.iBIE7mkY097371@scone.ki.iif.hu> Date: Sat, 18 Dec 2004 15:07:48 +0100 (CET) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75219: [Maintainer update] security/tinyca: update to 0.6.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Janos Mohacsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:10:19 -0000 >Number: 75219 >Category: ports >Synopsis: [Maintainer update] security/tinyca: update to 0.6.7 >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 Dec 18 14:10:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.3-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 5.3-STABLE FreeBSD 5.3-STABLE #5: Thu Nov 11 05:45:29 CET 2004 >Description: - Update to 0.6.7 - fixes for configuration file. - change to bzip2 archive Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: Apply this diff. >Fix: --- tinyca-0.6.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/tinyca.orig/Makefile /usr/ports/security/tinyca/Makefile --- /usr/ports/security/tinyca.orig/Makefile Thu Aug 26 19:38:18 2004 +++ /usr/ports/security/tinyca/Makefile Sat Dec 18 15:05:28 2004 @@ -6,12 +6,12 @@ # PORTNAME= tinyca -PORTVERSION= 0.6.6 +PORTVERSION= 0.6.7 CATEGORIES= security net MASTER_SITES= http://tinyca.sm-zone.net/ \ http://tinyca.sm-zone.net/old/ -MAINTAINER= Janos.Mohacsi@bsd.hu +MAINTAINER= janos.mohacsi@bsd.hu COMMENT= Simple graphical interface to manage a small Certification Authority RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Gnome.pm:${PORTSDIR}/x11-toolkits/p5-Gnome \ @@ -19,6 +19,7 @@ zip:${PORTSDIR}/archivers/zip \ ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 +USE_BZIP2= yes USE_PERL5= yes USE_OPENSSL= yes NO_BUILD= yes @@ -35,7 +36,7 @@ .for file in ${LIB2_FILES} @${INSTALL_DATA} ${WRKSRC}/lib/GUI/${file} ${SITE_PERL}/${PORTNAME}/GUI .endfor - @${INSTALL_DATA} ${WRKSRC}/templates/openssl.cnf ${PREFIX}/etc/tinyca.cnf + @${INSTALL_DATA} ${WRKSRC}/templates/openssl.cnf ${PREFIX}/etc/tinyca.cnf.sample @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" -e "s:%%SITE_PERL%%:${SITE_PERL}:g" \ ${WRKSRC}/tinyca >${WRKSRC}/tinyca.new @${INSTALL_SCRIPT} ${WRKSRC}/tinyca.new ${PREFIX}/bin/tinyca diff -ruN --exclude=CVS /usr/ports/security/tinyca.orig/distinfo /usr/ports/security/tinyca/distinfo --- /usr/ports/security/tinyca.orig/distinfo Wed Aug 25 15:55:31 2004 +++ /usr/ports/security/tinyca/distinfo Sat Dec 18 14:55:23 2004 @@ -1,2 +1,2 @@ -MD5 (tinyca-0.6.6.tar.gz) = 4da34ffc6de64484ccd77400d764fd7c -SIZE (tinyca-0.6.6.tar.gz) = 152810 +MD5 (tinyca-0.6.7.tar.bz2) = e517b0bf86918330e65c2ebb32b22541 +SIZE (tinyca-0.6.7.tar.bz2) = 111989 diff -ruN --exclude=CVS /usr/ports/security/tinyca.orig/pkg-plist /usr/ports/security/tinyca/pkg-plist --- /usr/ports/security/tinyca.orig/pkg-plist Fri Jul 23 18:56:04 2004 +++ /usr/ports/security/tinyca/pkg-plist Sat Dec 18 14:54:42 2004 @@ -1,4 +1,5 @@ bin/tinyca +etc/tinyca.cnf.sample %%SITE_PERL%%/tinyca/CA.pm %%SITE_PERL%%/tinyca/CERT.pm %%SITE_PERL%%/tinyca/GUI.pm --- tinyca-0.6.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:20:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29E7E16A4D6 for ; Sat, 18 Dec 2004 14:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B71D43D45 for ; Sat, 18 Dec 2004 14:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIEKPuk044550 for ; Sat, 18 Dec 2004 14:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIEKP5I044549; Sat, 18 Dec 2004 14:20:25 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 14:20:25 GMT Resent-Message-Id: <200412181420.iBIEKP5I044549@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 Grando Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C07FF16A4CE for ; Sat, 18 Dec 2004 14:19:07 +0000 (GMT) Received: from gwmail1.grupos.com.br (gwmail1.grupos.com.br [66.90.64.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 938E743D54 for ; Sat, 18 Dec 2004 14:19:07 +0000 (GMT) (envelope-from root@corp.grupos.com.br) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by gwmail1.grupos.com.br (Postfix) with ESMTP id C12DC3C5E5 for ; Sat, 18 Dec 2004 12:19:06 -0200 (BRST) Received: by corp.grupos.com.br (Postfix, from userid 0) id DB25F20A74; Sat, 18 Dec 2004 12:19:05 -0200 (BRST) Message-Id: <20041218141905.DB25F20A74@corp.grupos.com.br> Date: Sat, 18 Dec 2004 12:19:05 -0200 (BRST) From: Marcus Grando To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75220: Update port: databases/py-MySQLdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcus Grando List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:20:26 -0000 >Number: 75220 >Category: ports >Synopsis: Update port: databases/py-MySQLdb update >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 Dec 18 14:20:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Marcus Grando >Release: FreeBSD 4.11-PRERELEASE i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD corp.grupos.com.br 4.11-PRERELEASE FreeBSD 4.11-PRERELEASE #33: Wed Dec 15 09:04:46 BRST 2004 root@corp.grupos.com.br:/usr/obj/usr/src/sys/CORP i386 >Description: Update port: databases/py-MySQLdb * Change PORTNAME and add PKGNAMEPREFIX (If it need change UPDATING please make) * Remove OPTIONS and include pre-fetch comment (because this PR/74866) * Add CONFLICTS >How-To-Repeat: >Fix: --- py-MySQLdb.patch begins here --- diff -ruN py-MySQLdb.old/Makefile py-MySQLdb/Makefile --- py-MySQLdb.old/Makefile Sun Nov 28 19:43:52 2004 +++ py-MySQLdb/Makefile Sat Dec 18 11:55:21 2004 @@ -5,12 +5,13 @@ # $FreeBSD: ports/databases/py-MySQLdb/Makefile,v 1.26 2004/11/28 21:43:52 clement Exp $ # -PORTNAME= py-MySQLdb +PORTNAME= MySQLdb PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= mysql-python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= MySQL-python-${PORTVERSION} MAINTAINER= marcus@corp.grupos.com.br @@ -20,13 +21,16 @@ USE_PYDISTUTILS= yes USE_MYSQL= yes -OPTIONS= MYSQLCLIENT_R "Use mysqlclient_r lib" off \ - MYSQLSSL "Use SSL support" off \ - MYSQLCRYPTO "Use CRYPTO support" off +CONFLICTS= py*-MySQLdb-devel-* -PORTDOCS= MANIFEST README - -.include +pre-fetch: + @${ECHO} "" + @${ECHO} "You may use the following build options:" + @${ECHO} "" + @${ECHO} " WITH_MYSQLCLIENT_R=yes Use mysqlclient_r lib" + @${ECHO} " WITH_MYSQLSSL=yes Use SSL support" + @${ECHO} " WITH_MYSQLCRYPTO=yes Use CRYPTO support" + @${ECHO} "" .if defined(WITH_MYSQLCLIENT_R) MAKE_ENV+= mysqlclient="mysqlclient_r" @@ -48,6 +52,8 @@ .endif .endif +PORTDOCS= MANIFEST README + .if !defined(NOPORTDOCS) post-install: @${MKDIR} ${DOCSDIR} @@ -56,4 +62,4 @@ .endfor .endif -.include +.include --- py-MySQLdb.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:30:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01E3516A4CF for ; Sat, 18 Dec 2004 14:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3E4B43D2D for ; Sat, 18 Dec 2004 14:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIEUQWZ044802 for ; Sat, 18 Dec 2004 14:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIEUQBm044800; Sat, 18 Dec 2004 14:30:26 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 14:30:26 GMT Resent-Message-Id: <200412181430.iBIEUQBm044800@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 Grando Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBB0816A4CE for ; Sat, 18 Dec 2004 14:22:24 +0000 (GMT) Received: from gwmail1.grupos.com.br (gwmail1.grupos.com.br [66.90.64.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AFE543D2F for ; Sat, 18 Dec 2004 14:22:24 +0000 (GMT) (envelope-from root@corp.grupos.com.br) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by gwmail1.grupos.com.br (Postfix) with ESMTP id 21CBD3D390 for ; Sat, 18 Dec 2004 12:22:24 -0200 (BRST) Received: by corp.grupos.com.br (Postfix, from userid 0) id 6A04020A74; Sat, 18 Dec 2004 12:22:23 -0200 (BRST) Message-Id: <20041218142223.6A04020A74@corp.grupos.com.br> Date: Sat, 18 Dec 2004 12:22:23 -0200 (BRST) From: Marcus Grando To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75221: Update port: databases/py-MySQLdb-devel changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcus Grando List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:30:27 -0000 >Number: 75221 >Category: ports >Synopsis: Update port: databases/py-MySQLdb-devel changes >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 Dec 18 14:30:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Marcus Grando >Release: FreeBSD 4.11-PRERELEASE i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD corp.grupos.com.br 4.11-PRERELEASE FreeBSD 4.11-PRERELEASE #33: Wed Dec 15 09:04:46 BRST 2004 root@corp.grupos.com.br:/usr/obj/usr/src/sys/CORP i386 >Description: Update port: databases/py-MySQLdb-devel * Change PORTNAME and add PKGNAMEPREFIX (If it need change UPDATING please make) * Remove OPTIONS and include pre-fetch comment (because this PR/74866) * Change CONFLICTS >How-To-Repeat: >Fix: --- py-MySQLdb-devel.patch begins here --- diff -ruN py-MySQLdb-devel.old/Makefile py-MySQLdb-devel/Makefile --- py-MySQLdb-devel.old/Makefile Sun Nov 28 19:55:24 2004 +++ py-MySQLdb-devel/Makefile Sat Dec 18 11:58:13 2004 @@ -1,16 +1,17 @@ -# New ports collection makefile for: py-MySQLdb -# Date created: 04 April 2000 -# Whom: Maxim Sobolev +# New ports collection makefile for: MySQLdb-devel +# Date created: 29 Nov 2004 +# Whom: Marcus Grando # # $FreeBSD: ports/databases/py-MySQLdb-devel/Makefile,v 1.26 2004/11/28 21:55:24 clement Exp $ # -PORTNAME= py-MySQLdb +PORTNAME= MySQLdb-devel PORTVERSION= 1.1.7 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= mysql-python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= MySQL-python-${PORTVERSION} MAINTAINER= marcus@corp.grupos.com.br @@ -20,13 +21,16 @@ USE_PYDISTUTILS= yes USE_MYSQL= yes -CONFLICTS= py-MySQLdb-0.* py-MySQLdb-1.[0,2-9].* +CONFLICTS= py*-MySQLdb-* -OPTIONS= MYSQLCLIENT_R "Use mysqlclient_r lib" off \ - MYSQLSSL "Use SSL support" off \ - MYSQLCRYPTO "Use CRYPTO support" off - -.include +pre-fetch: + @${ECHO} "" + @${ECHO} "You may use the following build options:" + @${ECHO} "" + @${ECHO} " WITH_MYSQLCLIENT_R=yes Use mysqlclient_r lib" + @${ECHO} " WITH_MYSQLSSL=yes Use SSL support" + @${ECHO} " WITH_MYSQLCRYPTO=yes Use CRYPTO support" + @${ECHO} "" .if defined(WITH_MYSQLCLIENT_R) MAKE_ENV+= mysqlclient="mysqlclient_r" @@ -58,4 +62,4 @@ .endfor .endif -.include +.include --- py-MySQLdb-devel.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:30:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DDCA16A4CE for ; Sat, 18 Dec 2004 14:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FF9443D4C for ; Sat, 18 Dec 2004 14:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIEUQ9w044860 for ; Sat, 18 Dec 2004 14:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIEUQjo044859; Sat, 18 Dec 2004 14:30:26 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 14:30:26 GMT Resent-Message-Id: <200412181430.iBIEUQjo044859@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA25016A4CE for ; Sat, 18 Dec 2004 14:24:55 +0000 (GMT) Received: from scone.ki.iif.hu (scone.ki.iif.hu [193.6.222.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46E3043D2D for ; Sat, 18 Dec 2004 14:24:55 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.13.1/8.13.1) id iBIEOSfD098326; Sat, 18 Dec 2004 15:24:28 +0100 (CET) (envelope-from mohacsi) Message-Id: <200412181424.iBIEOSfD098326@scone.ki.iif.hu> Date: Sat, 18 Dec 2004 15:24:28 +0100 (CET) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75222: [MAINTAINER] net-mgmt/rancid: fixes to pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Janos Mohacsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:30:27 -0000 >Number: 75222 >Category: ports >Synopsis: [MAINTAINER] net-mgmt/rancid: fixes to pkg-plist >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 Dec 18 14:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.3-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD scone.ki.iif.hu 5.3-STABLE FreeBSD 5.3-STABLE #5: Thu Nov 11 05:45:29 CET 2004 >Description: Maintainer Update to net-mgmt/rancid 2.3.1 to revision 1 - pkg-plist fix. >How-To-Repeat: Apply this diff. >Fix: --- rancid-2.3.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net-mgmt/rancid.orig/Makefile /usr/ports/net-mgmt/rancid/Makefile --- /usr/ports/net-mgmt/rancid.orig/Makefile Tue Nov 9 11:52:39 2004 +++ /usr/ports/net-mgmt/rancid/Makefile Sat Dec 18 15:21:42 2004 @@ -7,6 +7,7 @@ PORTNAME= rancid PORTVERSION= 2.3.1 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.shrubbery.net/pub/rancid/ diff -ruN --exclude=CVS /usr/ports/net-mgmt/rancid.orig/pkg-plist /usr/ports/net-mgmt/rancid/pkg-plist --- /usr/ports/net-mgmt/rancid.orig/pkg-plist Fri May 28 19:13:55 2004 +++ /usr/ports/net-mgmt/rancid/pkg-plist Sat Dec 18 15:16:17 2004 @@ -1,5 +1,6 @@ @exec mkdir -p %D/var/rancid @exec chmod 775 %D/var/rancid +@unexec rmdir %D/var 2>/dev/null || true bin/rancid-cvs bin/rancid-run libexec/rancid/alogin --- rancid-2.3.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:50:59 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FCE716A4CE; Sat, 18 Dec 2004 14:50:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 324C943D2D; Sat, 18 Dec 2004 14:50:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIEoxgA046528; Sat, 18 Dec 2004 14:50:59 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIEowBF046524; Sat, 18 Dec 2004 14:50:58 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 14:50:58 GMT From: Pav Lucistnik Message-Id: <200412181450.iBIEowBF046524@freefall.freebsd.org> To: jimmy@jamesbailie.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75194: Unified diff to correct checksum mismatch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:50:59 -0000 Synopsis: Unified diff to correct checksum mismatch State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 14:49:56 GMT 2004 State-Changed-Why: (In followup to ports/75075) Please provide updates in unified diff format. Not only the update for checksum, but the whole update 4.38 -> 4.39, which you provided as a shar. http://www.freebsd.org/cgi/query-pr.cgi?pr=75194 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:51:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B75E516A4D0; Sat, 18 Dec 2004 14:51:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B9CF43D4C; Sat, 18 Dec 2004 14:51:27 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIEpR8N046612; Sat, 18 Dec 2004 14:51:27 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIEpRs4046608; Sat, 18 Dec 2004 14:51:27 GMT (envelope-from sem) Date: Sat, 18 Dec 2004 14:51:27 GMT From: Sergey Matveychuk Message-Id: <200412181451.iBIEpRs4046608@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75218: [MAINTAINER] comms/scmxx: fixes for german and russian manual pages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:51:27 -0000 Synopsis: [MAINTAINER] comms/scmxx: fixes for german and russian manual pages State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Dec 18 14:51:21 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75218 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 14:59:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DBEA16A4CE; Sat, 18 Dec 2004 14:59:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4146543D55; Sat, 18 Dec 2004 14:59:21 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIExLOa046742; Sat, 18 Dec 2004 14:59:21 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIExLwV046738; Sat, 18 Dec 2004 14:59:21 GMT (envelope-from sem) Date: Sat, 18 Dec 2004 14:59:21 GMT From: Sergey Matveychuk Message-Id: <200412181459.iBIExLwV046738@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/75168: [security] update net/samba3 to 3.0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 14:59:21 -0000 Synopsis: [security] update net/samba3 to 3.0.10 Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Dec 18 14:59:15 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=75168 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:00:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2077816A4CE for ; Sat, 18 Dec 2004 15:00:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0341C43D54 for ; Sat, 18 Dec 2004 15:00:55 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIF0s6W046854 for ; Sat, 18 Dec 2004 15:00:54 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIF0spV046853; Sat, 18 Dec 2004 15:00:54 GMT (envelope-from gnats) Date: Sat, 18 Dec 2004 15:00:54 GMT Message-Id: <200412181500.iBIF0spV046853@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marcus Grando Subject: Re: ports/74462: Update mail/postfix to support TLS+SPF X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcus Grando List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:00:55 -0000 The following reply was made to PR ports/74462; it has been noted by GNATS. From: Marcus Grando To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/74462: Update mail/postfix to support TLS+SPF Date: Sat, 18 Dec 2004 12:59:43 -0200 Please close this PR, another PR/74858 is running. Regards -- Marcus Grando Grupos Internet S/A marcus(at)corp.grupos.com.br From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:15:04 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A0516A4CE; Sat, 18 Dec 2004 15:15:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B103E43D41; Sat, 18 Dec 2004 15:15:04 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIFF4PM051187; Sat, 18 Dec 2004 15:15:04 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIFF3pl051183; Sat, 18 Dec 2004 15:15:03 GMT (envelope-from sem) Date: Sat, 18 Dec 2004 15:15:03 GMT From: Sergey Matveychuk Message-Id: <200412181515.iBIFF3pl051183@freefall.freebsd.org> To: fernan@iib.unsam.edu.ar, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75205: [maintainer update] distinfo update, X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:15:04 -0000 Synopsis: [maintainer update] distinfo update, State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Dec 18 15:14:54 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75205 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:15:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24E3216A4CE; Sat, 18 Dec 2004 15:15:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0873643D53; Sat, 18 Dec 2004 15:15:20 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIFFJJ7051243; Sat, 18 Dec 2004 15:15:19 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIFFJP6051239; Sat, 18 Dec 2004 15:15:19 GMT (envelope-from sem) Date: Sat, 18 Dec 2004 15:15:19 GMT From: Sergey Matveychuk Message-Id: <200412181515.iBIFFJP6051239@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75222: [MAINTAINER] net-mgmt/rancid: fixes to pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:15:20 -0000 Synopsis: [MAINTAINER] net-mgmt/rancid: fixes to pkg-plist State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Dec 18 15:15:13 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75222 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:26:16 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D18316A4CE; Sat, 18 Dec 2004 15:26:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EA7643D5C; Sat, 18 Dec 2004 15:26:16 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIFQFMv051630; Sat, 18 Dec 2004 15:26:15 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIFQFCx051626; Sat, 18 Dec 2004 15:26:15 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 15:26:15 GMT From: Pav Lucistnik Message-Id: <200412181526.iBIFQFCx051626@freefall.freebsd.org> To: ecu@ipv42.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75192: [MAINTAINER] net/Net-Divert: fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:26:16 -0000 Synopsis: [MAINTAINER] net/Net-Divert: fix plist State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 15:26:09 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75192 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:34:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3702016A4CE; Sat, 18 Dec 2004 15:34:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB86143D1D; Sat, 18 Dec 2004 15:34:35 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIFYZsk053150; Sat, 18 Dec 2004 15:34:35 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIFYZRO053146; Sat, 18 Dec 2004 15:34:35 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 15:34:35 GMT From: Pav Lucistnik Message-Id: <200412181534.iBIFYZRO053146@freefall.freebsd.org> To: kiwi@oav.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75187: [MAINTAINER] lang/pike76: Fix PDF lib dependcy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:34:36 -0000 Synopsis: [MAINTAINER] lang/pike76: Fix PDF lib dependcy State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 15:34:29 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75187 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:42:12 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9142716A4CE; Sat, 18 Dec 2004 15:42:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F4D43D54; Sat, 18 Dec 2004 15:42:12 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIFgCrv053554; Sat, 18 Dec 2004 15:42:12 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIFgC3G053550; Sat, 18 Dec 2004 15:42:12 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 15:42:12 GMT From: Pav Lucistnik Message-Id: <200412181542.iBIFgC3G053550@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75184: [Maintainer update] net/tcpreen: update to 1.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:42:12 -0000 Synopsis: [Maintainer update] net/tcpreen: update to 1.4.1 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 15:42:05 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75184 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 15:57:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECAAC16A4CE; Sat, 18 Dec 2004 15:57:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE7C343D5C; Sat, 18 Dec 2004 15:57:28 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIFvS4R053977; Sat, 18 Dec 2004 15:57:28 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIFvStA053973; Sat, 18 Dec 2004 15:57:28 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 15:57:28 GMT From: Pav Lucistnik Message-Id: <200412181557.iBIFvStA053973@freefall.freebsd.org> To: janos.mohacsi@niif.hu, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/75182: [MAINTAINER] net/beacon: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 15:57:29 -0000 Synopsis: [MAINTAINER] net/beacon: [SUMMARIZE CHANGES] State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Sat Dec 18 15:56:35 GMT 2004 State-Changed-Why: I don't believe the thing you did to perllocal.pod is correct. I've seen other ports being tweaked to prevent installation of that file at all. Would this patch do? --- Net-Multicast-Beacon/Makefile.in.orig Tue Jul 13 20:56:28 2004 +++ Net-Multicast-Beacon/Makefile.in Sat Dec 18 16:52:21 2004 @@ -300,7 +300,7 @@ $(PERL) Makefile.PL MAKEFILE=$@ install-data-local: - $(MAKE) -fMakefile.perl install + $(MAKE) -fMakefile.perl pure_install clean-local: if test -f Makefile.perl; then $(MAKE) -fMakefile.perl realclean; fi rm -f Makefile.perl Makefile.perl.old Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Sat Dec 18 15:56:35 GMT 2004 Responsible-Changed-Why: Watch http://www.freebsd.org/cgi/query-pr.cgi?pr=75182 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 16:47:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A6C616A4CE; Sat, 18 Dec 2004 16:47:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28F3543D2F; Sat, 18 Dec 2004 16:47:30 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIGlU2H060363; Sat, 18 Dec 2004 16:47:30 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIGlUtV060359; Sat, 18 Dec 2004 16:47:30 GMT (envelope-from sem) Date: Sat, 18 Dec 2004 16:47:30 GMT From: Sergey Matveychuk Message-Id: <200412181647.iBIGlUtV060359@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75219: [Maintainer update] security/tinyca: update to 0.6.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 16:47:30 -0000 Synopsis: [Maintainer update] security/tinyca: update to 0.6.7 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Dec 18 16:47:19 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75219 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 16:51:49 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEBB316A4CE; Sat, 18 Dec 2004 16:51:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A59A643D31; Sat, 18 Dec 2004 16:51:49 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIGpn29060617; Sat, 18 Dec 2004 16:51:49 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIGpkCb060611; Sat, 18 Dec 2004 16:51:46 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 16:51:46 GMT From: Pav Lucistnik Message-Id: <200412181651.iBIGpkCb060611@freefall.freebsd.org> To: dryice@liu.com.cn, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75176: [maintainer update] chinese/xpdf: fix file permission changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 16:51:50 -0000 Synopsis: [maintainer update] chinese/xpdf: fix file permission changes State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 16:51:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75176 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:10:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DAEA16A4D0 for ; Sat, 18 Dec 2004 17:10:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6CB443D5C for ; Sat, 18 Dec 2004 17:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHAT7K064910 for ; Sat, 18 Dec 2004 17:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHAT8Q064909; Sat, 18 Dec 2004 17:10:29 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:10:29 GMT Resent-Message-Id: <200412181710.iBIHAT8Q064909@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFD2F16A4CE for ; Sat, 18 Dec 2004 17:08:32 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96CA543D3F for ; Sat, 18 Dec 2004 17:08:32 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84127-107.ip.peterstar.net ([84.204.127.107] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1Cfi44-0002Fr-1c for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 2004 18:08:22 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBIH8LRF000535 for ; Sat, 18 Dec 2004 20:08:22 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBIDAE6d029642; Sat, 18 Dec 2004 16:10:14 +0300 (MSK) (envelope-from igor) Message-Id: <200412181310.iBIDAE6d029642@doom.homeunix.org> Date: Sat, 18 Dec 2004 16:10:14 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75223: Update port: graphics/pixie 1.3.22 -> 1.3.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:10:30 -0000 >Number: 75223 >Category: ports >Synopsis: Update port: graphics/pixie 1.3.22 -> 1.3.25 >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: Sat Dec 18 17:10:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Update to 1.3.25. >How-To-Repeat: >Fix: --- pixie.diff begins here --- diff -ru /usr/ports/graphics/pixie/Makefile pixie/Makefile --- /usr/ports/graphics/pixie/Makefile Wed Nov 10 17:11:19 2004 +++ pixie/Makefile Sat Dec 18 15:47:47 2004 @@ -6,7 +6,7 @@ # PORTNAME= pixie -PORTVERSION= 1.3.22 +PORTVERSION= 1.3.25 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ru /usr/ports/graphics/pixie/distinfo pixie/distinfo --- /usr/ports/graphics/pixie/distinfo Wed Nov 10 17:11:19 2004 +++ pixie/distinfo Sat Dec 18 15:47:50 2004 @@ -1,2 +1,2 @@ -MD5 (Pixie-src-1.3.22.tgz) = 195ef1e327738224b0693bb0994caefd -SIZE (Pixie-src-1.3.22.tgz) = 4916714 +MD5 (Pixie-src-1.3.25.tgz) = f0a726a007f7f35f6d13d56bbb4ebd29 +SIZE (Pixie-src-1.3.25.tgz) = 4973521 --- pixie.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:10:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69A6D16A4CE for ; Sat, 18 Dec 2004 17:10:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 270DD43D5E for ; Sat, 18 Dec 2004 17:10:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHAU6w064965 for ; Sat, 18 Dec 2004 17:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHAUpq064962; Sat, 18 Dec 2004 17:10:30 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:10:30 GMT Resent-Message-Id: <200412181710.iBIHAUpq064962@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0D4416A4CF for ; Sat, 18 Dec 2004 17:08:32 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0ED043D41 for ; Sat, 18 Dec 2004 17:08:32 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84127-107.ip.peterstar.net ([84.204.127.107] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1Cfi44-0002Fs-38 for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 2004 18:08:23 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBIH8LRH000535 for ; Sat, 18 Dec 2004 20:08:22 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBICkxet017573; Sat, 18 Dec 2004 15:46:59 +0300 (MSK) (envelope-from igor) Message-Id: <200412181246.iBICkxet017573@doom.homeunix.org> Date: Sat, 18 Dec 2004 15:46:59 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75224: Update port: graphics/glew 1.2.3 -> 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:10:30 -0000 >Number: 75224 >Category: ports >Synopsis: Update port: graphics/glew 1.2.3 -> 1.2.5 >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: Sat Dec 18 17:10:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Update to 1.2.5. >How-To-Repeat: >Fix: --- glew.diff begins here --- diff -ru /usr/ports/graphics/glew/Makefile glew/Makefile --- /usr/ports/graphics/glew/Makefile Fri Aug 27 11:53:06 2004 +++ glew/Makefile Sat Dec 18 15:41:05 2004 @@ -6,7 +6,7 @@ # PORTNAME= glew -PORTVERSION= 1.2.3 +PORTVERSION= 1.2.5 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ru /usr/ports/graphics/glew/distinfo glew/distinfo --- /usr/ports/graphics/glew/distinfo Fri Aug 27 11:53:06 2004 +++ glew/distinfo Sat Dec 18 15:41:09 2004 @@ -1,2 +1,2 @@ -MD5 (glew-1.2.3-src.tgz) = 16ca7e9d9de30455526fd7e7551abe51 -SIZE (glew-1.2.3-src.tgz) = 281475 +MD5 (glew-1.2.5-src.tgz) = fcbefbe1ce0c6b0c9f6bd56aafe23927 +SIZE (glew-1.2.5-src.tgz) = 286866 --- glew.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:10:31 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFCBE16A4CE for ; Sat, 18 Dec 2004 17:10:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84E1A43D58 for ; Sat, 18 Dec 2004 17:10:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHAU4d064980 for ; Sat, 18 Dec 2004 17:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHAU1Q064978; Sat, 18 Dec 2004 17:10:30 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:10:30 GMT Resent-Message-Id: <200412181710.iBIHAU1Q064978@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C49B316A4D0 for ; Sat, 18 Dec 2004 17:08:33 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FB3343D41 for ; Sat, 18 Dec 2004 17:08:33 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from dialup84127-107.ip.peterstar.net ([84.204.127.107] helo=doom.homeunix.org) by voodoo.oberon.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.43 (FreeBSD)) id 1Cfi44-0002Ft-0m for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 2004 18:08:23 +0100 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.1/8.13.1) with ESMTP id iBIH8LRJ000535 for ; Sat, 18 Dec 2004 20:08:22 +0300 (MSK) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.1/8.13.1/Submit) id iBICddAq016597; Sat, 18 Dec 2004 15:39:39 +0300 (MSK) (envelope-from igor) Message-Id: <200412181239.iBICddAq016597@doom.homeunix.org> Date: Sat, 18 Dec 2004 15:39:39 +0300 (MSK) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75225: Update port: print/gl2ps 1.2.1 -> 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:10:31 -0000 >Number: 75225 >Category: ports >Synopsis: Update port: print/gl2ps 1.2.1 -> 1.2.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: Sat Dec 18 17:10:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Mon Nov 22 09:16:46 MSK 2004 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 >Description: Update to 1.2.2. >How-To-Repeat: >Fix: --- gl2ps.diff begins here --- diff -ru /usr/ports/print/gl2ps/Makefile gl2ps/Makefile --- /usr/ports/print/gl2ps/Makefile Sun Dec 5 21:34:39 2004 +++ gl2ps/Makefile Sat Dec 18 15:37:17 2004 @@ -6,9 +6,10 @@ # PORTNAME= gl2ps -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= print graphics MASTER_SITES= http://www.geuz.org/gl2ps/src/ +EXTRACT_SUFX= .tgz MAINTAINER= ip@doom.homeunix.org COMMENT= A C library providing vector output for OpenGL application @@ -35,7 +36,7 @@ .ifndef (NOPORTDOCS) @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/gl2ps.ps ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/gl2ps.pdf ${DOCSDIR} .endif .include diff -ru /usr/ports/print/gl2ps/distinfo gl2ps/distinfo --- /usr/ports/print/gl2ps/distinfo Fri Aug 13 21:01:45 2004 +++ gl2ps/distinfo Sat Dec 18 15:35:31 2004 @@ -1,2 +1,2 @@ -MD5 (gl2ps-1.2.1.tar.gz) = a990bbb4ae970b43ff2f957cf2983346 -SIZE (gl2ps-1.2.1.tar.gz) = 316375 +MD5 (gl2ps-1.2.2.tgz) = b43cadf6d1a69b28f2bd2bf683649d6b +SIZE (gl2ps-1.2.2.tgz) = 189321 diff -ru /usr/ports/print/gl2ps/pkg-plist gl2ps/pkg-plist --- /usr/ports/print/gl2ps/pkg-plist Sat Jan 31 16:40:44 2004 +++ gl2ps/pkg-plist Sat Dec 18 15:37:22 2004 @@ -4,5 +4,5 @@ %%EXAMPLESDIR%%/gl2psTest.c %%EXAMPLESDIR%%/Makefile @dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%%%DOCSDIR%%/gl2ps.ps +%%PORTDOCS%%%%DOCSDIR%%/gl2ps.pdf %%PORTDOCS%%@dirrm %%DOCSDIR%% --- gl2ps.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:20:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05E2116A4D4 for ; Sat, 18 Dec 2004 17:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B78C43D64 for ; Sat, 18 Dec 2004 17:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHKQZ1065199 for ; Sat, 18 Dec 2004 17:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHKQVE065198; Sat, 18 Dec 2004 17:20:26 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:20:26 GMT Resent-Message-Id: <200412181720.iBIHKQVE065198@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0203F16A4CE for ; Sat, 18 Dec 2004 17:18:04 +0000 (GMT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE6C543D3F for ; Sat, 18 Dec 2004 17:18:03 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.238.123] (helo=santinel.home.ua) by mail-kv.alkar.net with esmtp (Exim 4.34 (FreeBSD)) id 1CfiDS-000LxE-7M; Sat, 18 Dec 2004 19:18:02 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1CfiDH-00035e-7z; Sat, 18 Dec 2004 19:17:51 +0200 Message-Id: Date: Sat, 18 Dec 2004 19:17:51 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: jylitalo@iki.fi Subject: ports/75226: [PATCH] graphics/xpcd: fix MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:20:27 -0000 >Number: 75226 >Category: ports >Synopsis: [PATCH] graphics/xpcd: fix MASTER_SITES >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 Dec 18 17:20:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: Fix MASTER_SITES >How-To-Repeat: >Fix: --- xpcd.diff begins here --- Index: graphics/xpcd/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/xpcd/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- graphics/xpcd/Makefile 14 Mar 2004 06:16:44 -0000 1.4 +++ graphics/xpcd/Makefile 18 Dec 2004 17:10:23 -0000 @@ -9,7 +9,7 @@ PORTVERSION= 2.08 PORTREVISION= 2 CATEGORIES+= graphics -MASTER_SITES= http://bytesex.org/misc/ +MASTER_SITES= http://dl.bytesex.org/releases/xpcd/ MAINTAINER?= jylitalo@iki.fi COMMENT?= PhotoCD tool collection --- xpcd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:30:15 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21B9616A4CE for ; Sat, 18 Dec 2004 17:30:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 087A243D5A for ; Sat, 18 Dec 2004 17:30:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHUEB2065427 for ; Sat, 18 Dec 2004 17:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHUEWW065420; Sat, 18 Dec 2004 17:30:14 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:30:14 GMT Resent-Message-Id: <200412181730.iBIHUEWW065420@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, Sergey Lyubka Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E385A16A4CE for ; Sat, 18 Dec 2004 17:28:25 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id B915D43D31 for ; Sat, 18 Dec 2004 17:28:25 +0000 (GMT) (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 iBIHSP4q040979 for ; Sat, 18 Dec 2004 17:28:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBIHSPEh040976; Sat, 18 Dec 2004 17:28:25 GMT (envelope-from nobody) Message-Id: <200412181728.iBIHSPEh040976@www.freebsd.org> Date: Sat, 18 Dec 2004 17:28:25 GMT From: Sergey Lyubka To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75227: Update port: www/shttpd (conditional SSL build, new sources version) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:30:15 -0000 >Number: 75227 >Category: ports >Synopsis: Update port: www/shttpd (conditional SSL build, new sources version) >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 Dec 18 17:30:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sergey Lyubka >Release: RELENG_5 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: http://oasis.uptsoft.com/~devnull/port-shttpd-1.2.diff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:40:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F12716A533 for ; Sat, 18 Dec 2004 17:40:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86E3243D39 for ; Sat, 18 Dec 2004 17:40:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHeave066746 for ; Sat, 18 Dec 2004 17:40:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHeaYa066744; Sat, 18 Dec 2004 17:40:36 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:40:36 GMT Resent-Message-Id: <200412181740.iBIHeaYa066744@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, Andrey Slusar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B46C16A4CE for ; Sat, 18 Dec 2004 17:31:18 +0000 (GMT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4824343D3F for ; Sat, 18 Dec 2004 17:31:18 +0000 (GMT) (envelope-from anray@inet.ua) Received: from [212.86.238.123] (helo=santinel.home.ua) by mail-kv.alkar.net with esmtp (Exim 4.34 (FreeBSD)) id 1CfiQG-000Mzd-Gr for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 2004 19:31:17 +0200 Received: from anray by santinel.home.ua with local (Exim 4.43; FreeBSD) id 1CfiQI-0003ss-F5 for ; Sat, 18 Dec 2004 19:31:18 +0200 Message-Id: Date: Sat, 18 Dec 2004 19:31:18 +0200 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75228: [MAINTAINER] news/s-news: fix duplicate define. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:40:41 -0000 >Number: 75228 >Category: ports >Synopsis: [MAINTAINER] news/s-news: fix duplicate define. >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 Dec 18 17:40:36 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.3-STABLE i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: Fix duplicate HAVE_MALLOC_H. >How-To-Repeat: >Fix: --- s-news.diff begins here --- Index: news/s-news/files/patch-qnews.c =================================================================== RCS file: /home/ncvs/ports/news/s-news/files/patch-qnews.c,v retrieving revision 1.2 diff -u -r1.2 patch-qnews.c --- news/s-news/files/patch-qnews.c 4 Aug 2004 10:07:22 -0000 1.2 +++ news/s-news/files/patch-qnews.c 18 Dec 2004 17:25:01 -0000 @@ -1,5 +1,5 @@ --- qnews.c.orig Sat May 18 22:21:42 2002 -+++ qnews.c Wed Aug 4 03:24:43 2004 ++++ qnews.c Sat Dec 18 19:21:57 2004 @@ -2,6 +2,8 @@ * S-News version 0.1.9 - A Simple News Server * Copyright (C) 1998 Christopher John Purnell @@ -9,7 +9,7 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -@@ -22,7 +24,18 @@ +@@ -22,12 +24,20 @@ #include "config.h" #endif @@ -20,15 +20,17 @@ +#endif +#include + -+#ifdef HAVE_MALLOC_H -+#include -+#else -+#include -+#endif #ifdef HAVE_UNISTD_H #include #endif -@@ -79,15 +92,37 @@ + #ifdef HAVE_MALLOC_H + #include ++#else ++#include + #endif + #ifdef STDC_HEADERS + #include +@@ -79,15 +89,37 @@ if (match_group(ptr->value,line,end)) { FILE *fp; @@ -49,7 +51,7 @@ - return (1); + perror(file); + return (1); - } ++ } + if (flock(fd,LOCK_EX) == -1) + { + perror(file); @@ -59,7 +61,7 @@ + { + perror(file); + return (1); -+ } + } + #else + if (!(fp = fopen(file,"a"))) + { @@ -70,7 +72,7 @@ if (fputs(line,fp) < 0 || fputc('\n',fp) < 0) -@@ -103,6 +138,9 @@ +@@ -103,6 +135,9 @@ return (1); } @@ -80,7 +82,7 @@ break; } } -@@ -204,7 +242,7 @@ +@@ -204,7 +239,7 @@ return (0); break; case '[': @@ -89,7 +91,7 @@ { unsigned char rev,mat=0,l=0,h,u=*str; -@@ -229,6 +267,8 @@ +@@ -229,6 +264,8 @@ if (mat==rev) return (0); } --- s-news.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 17:50:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 399CB16A4CE for ; Sat, 18 Dec 2004 17:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E214B43D5C for ; Sat, 18 Dec 2004 17:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIHoOjb066956 for ; Sat, 18 Dec 2004 17:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIHoOq2066951; Sat, 18 Dec 2004 17:50:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 17:50:24 GMT Resent-Message-Id: <200412181750.iBIHoOq2066951@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB49016A4CE for ; Sat, 18 Dec 2004 17:47:09 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B295843D54 for ; Sat, 18 Dec 2004 17:47:08 +0000 (GMT) (envelope-from h.eichmann@gmx.de) Received: (qmail invoked by alias); 18 Dec 2004 17:47:07 -0000 Received: from pD95ED833.dip.t-dialin.net (EHLO [192.168.254.42]) (217.94.216.51) by mail.gmx.net (mp002) with SMTP; 18 Dec 2004 18:47:07 +0100 Message-Id: <200412181847.27157.h.eichmann@gmx.de> Date: Sat, 18 Dec 2004 18:47:27 +0100 From: Heiner To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75229: Port upgrade: x11-fm/krusader to 1.51 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 17:50:25 -0000 >Number: 75229 >Category: ports >Synopsis: Port upgrade: x11-fm/krusader to 1.51 >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 Dec 18 17:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Heiner Eichmann >Release: FreeBSD 4.10-STABLE i386 >Organization: Sirius Cybernetics Corp. >Environment: =46reeBSD 7of9.unimatrix-zero.borg 4.10-STABLE FreeBSD 4.10-STABLE #1: Sun = Jun=20 2014:49:25 CEST 2004 =A0 =A0=20 root@7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL =A0i386 >Description: Upgrade to 1.51 >How-To-Repeat: >Fix: see attached diff --Boundary-00=_v0GxBOvwhdvrPbn Content-Type: text/x-diff; charset="iso-8859-1"; name="krusader.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="krusader.diff" diff -urN ../../x11-fm/krusader/Makefile ./Makefile --- ../../x11-fm/krusader/Makefile Mon Nov 15 20:15:51 2004 +++ ./Makefile Sat Dec 18 18:45:47 2004 @@ -6,7 +6,7 @@ # PORTNAME= krusader -PORTVERSION= 1.50 +PORTVERSION= 1.51 CATEGORIES= x11-fm kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=krusader @@ -32,7 +32,7 @@ @${ECHO_MSG} "The following settings are assumed:" @${ECHO_MSG} "Installation directory of qt3: QTDIR=${QTDIR}" @${ECHO_MSG} "Installation directory of KDE3: KDEDIR=${KDEDIR}" - @${ECHO_MSG} "If these assumptions are wrong, stop the build NOW and set the variables correpondingly!" + @${ECHO_MSG} "If these assumptions are wrong, stop the build NOW and set the variables correspondingly!" @${ECHO_MSG} @sleep 3 diff -urN ../../x11-fm/krusader/distinfo ./distinfo --- ../../x11-fm/krusader/distinfo Mon Nov 15 20:15:51 2004 +++ ./distinfo Thu Dec 16 18:22:21 2004 @@ -1,2 +1,2 @@ -MD5 (krusader-1.50.tar.gz) = 24f86f89aa8fc10afa64afe9b966ca94 -SIZE (krusader-1.50.tar.gz) = 2755404 +MD5 (krusader-1.51.tar.gz) = 3b31a49db60b9e7f0884d78ed1ee3eb6 +SIZE (krusader-1.51.tar.gz) = 2898752 diff -urN ../../x11-fm/krusader/files/patch-krusader_DiskUsage_filelightParts_fileTree.h ./files/patch-krusader_DiskUsage_filelightParts_fileTree.h --- ../../x11-fm/krusader/files/patch-krusader_DiskUsage_filelightParts_fileTree.h Thu Jan 1 01:00:00 1970 +++ ./files/patch-krusader_DiskUsage_filelightParts_fileTree.h Thu Dec 16 18:37:57 2004 @@ -0,0 +1,10 @@ +--- krusader/DiskUsage/filelightParts/fileTree.h.orig Tue Nov 23 07:52:07 2004 ++++ krusader/DiskUsage/filelightParts/fileTree.h Thu Dec 16 18:35:46 2004 +@@ -5,6 +5,7 @@ + #define FILETREE_H + + #include ++#include + #include + + //TODO these are pointlessly general purpose now, make them incredibly specific diff -urN ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_map.cpp ./files/patch-krusader_DiskUsage_radialMap_map.cpp --- ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_map.cpp Thu Jan 1 01:00:00 1970 +++ ./files/patch-krusader_DiskUsage_radialMap_map.cpp Thu Dec 16 19:33:26 2004 @@ -0,0 +1,17 @@ +--- krusader/DiskUsage/radialMap/map.cpp.orig Tue Nov 23 00:45:27 2004 ++++ krusader/DiskUsage/radialMap/map.cpp Thu Dec 16 19:30:23 2004 +@@ -392,3 +392,14 @@ + + paint.end(); + } ++ ++#if __GLIBC__ < 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ < 1 ++ ++ void ++ sincos( double angleRadians, double *Sin, double *Cos ) ++ { ++ *Sin = sin( angleRadians ); ++ *Cos = cos( angleRadians ); ++ } ++ ++#endif diff -urN ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_sincos.h ./files/patch-krusader_DiskUsage_radialMap_sincos.h --- ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_sincos.h Thu Jan 1 01:00:00 1970 +++ ./files/patch-krusader_DiskUsage_radialMap_sincos.h Thu Dec 16 19:33:00 2004 @@ -0,0 +1,18 @@ +--- krusader/DiskUsage/radialMap/sincos.h.orig Mon Nov 22 23:55:25 2004 ++++ krusader/DiskUsage/radialMap/sincos.h Thu Dec 16 19:30:32 2004 +@@ -7,13 +7,9 @@ + #include + + #if __GLIBC__ < 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ < 1 +- ++ + void +- sincos( int angleRadians, int *Sin, int *Cos ) +- { +- *Sin = sin( angleRadians ); +- *Cos = cos( angleRadians ); +- } ++ sincos( double angleRadians, double *Sin, double *Cos ); + + #endif + diff -urN ../../x11-fm/krusader/pkg-plist ./pkg-plist --- ../../x11-fm/krusader/pkg-plist Mon Nov 15 20:15:51 2004 +++ ./pkg-plist Thu Dec 16 19:58:09 2004 @@ -105,10 +105,6 @@ share/doc/HTML/en/krusader/index.docbook share/doc/HTML/en/krusader/installation.docbook share/doc/HTML/en/krusader/introduction.docbook -share/doc/HTML/en/krusader/kgadvanced.png -share/doc/HTML/en/krusader/kgarchives.png -share/doc/HTML/en/krusader/kggeneral.png -share/doc/HTML/en/krusader/kglookfeel.png share/doc/HTML/en/krusader/kgstartup.png share/doc/HTML/en/krusader/konfigurator.docbook share/doc/HTML/en/krusader/krusader-tools.docbook @@ -120,6 +116,7 @@ share/doc/HTML/en/krusader/remoteman.png share/doc/HTML/en/krusader/search_advanced.png share/doc/HTML/en/krusader/search_general.png +share/doc/HTML/en/krusader/syncdir.png share/doc/HTML/en/krusader/tabbed_browsing.png share/doc/HTML/en/krusader/terminalEmu.png share/doc/HTML/en/krusader/toolbar.png @@ -147,9 +144,11 @@ share/locale/ja/LC_MESSAGES/krusader.mo share/locale/nl/LC_MESSAGES/krusader.mo share/locale/pl/LC_MESSAGES/krusader.mo +share/locale/pt/LC_MESSAGES/krusader.mo share/locale/ru/LC_MESSAGES/krusader.mo share/locale/sk/LC_MESSAGES/krusader.mo share/locale/sv/LC_MESSAGES/krusader.mo +share/locale/uk/LC_MESSAGES/krusader.mo share/locale/zh_CN/LC_MESSAGES/krusader.mo share/services/iso.protocol share/services/krarc.protocol --Boundary-00=_v0GxBOvwhdvrPbn-- >Release-Note: >Audit-Trail: >Unformatted: --Boundary-00=_v0GxBOvwhdvrPbn Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-send-pr-version: send-pr 3.113 X-GNATS-Notify: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 18:00:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D00AB16A4D1 for ; Sat, 18 Dec 2004 18:00:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 553F443D58 for ; Sat, 18 Dec 2004 18:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBII0m5C067250 for ; Sat, 18 Dec 2004 18:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBII0mJH067249; Sat, 18 Dec 2004 18:00:48 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 18:00:48 GMT Resent-Message-Id: <200412181800.iBII0mJH067249@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01A9116A4CE for ; Sat, 18 Dec 2004 17:51:13 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 29E8A43D5D for ; Sat, 18 Dec 2004 17:51:12 +0000 (GMT) (envelope-from h.eichmann@gmx.de) Received: (qmail invoked by alias); 18 Dec 2004 17:51:10 -0000 Received: from pD95ED833.dip.t-dialin.net (EHLO [192.168.254.42]) (217.94.216.51) by mail.gmx.net (mp011) with SMTP; 18 Dec 2004 18:51:10 +0100 Message-Id: <200412181851.35828.h.eichmann@gmx.de> Date: Sat, 18 Dec 2004 18:51:35 +0100 From: Heiner To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/75230: Port upgrade: german/ksteak to 1.0.0pre2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 18:00:49 -0000 >Number: 75230 >Category: ports >Synopsis: Port upgrade: german/ksteak to 1.0.0pre2 >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 Dec 18 18:00:47 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Heiner Eichmann >Release: FreeBSD 4.10-STABLE i386 >Organization: Sirius Cybernetics Corp. >Environment: =46reeBSD 7of9.unimatrix-zero.borg 4.10-STABLE FreeBSD 4.10-STABLE #1: Sun = Jun=20 2014:49:25 CEST 2004 =A0 =A0=20 root@7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL =A0i386 >Description: Upgrade to 1.0.0pre2 >How-To-Repeat: >Fix: see attached diff --Boundary-00=_n4GxBBLgZZmpCjH Content-Type: text/x-diff; charset="iso-8859-1"; name="ksteak.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ksteak.diff" diff -urN ../../german/ksteak/Makefile ./Makefile --- ../../german/ksteak/Makefile Thu Aug 12 07:47:33 2004 +++ ./Makefile Thu Dec 16 18:27:48 2004 @@ -6,8 +6,7 @@ # PORTNAME= ksteak -PORTVERSION= 0.9.4 -PORTREVISION= 2 +PORTVERSION= 1.0.0pre2 CATEGORIES= german kde MASTER_SITES= http://www.der-fritz.de/ksteak/ @@ -27,7 +26,7 @@ GNU_CONFIGURE= yes -post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/ksteak/ksteakui.rc ${PREFIX}/share/apps/ksteak +#post-install: +# ${INSTALL_SCRIPT} ${WRKSRC}/ksteak/ksteakui.rc ${PREFIX}/share/apps/ksteak .include diff -urN ../../german/ksteak/distinfo ./distinfo --- ../../german/ksteak/distinfo Thu Apr 29 20:30:29 2004 +++ ./distinfo Thu Dec 16 18:18:22 2004 @@ -1,2 +1,2 @@ -MD5 (ksteak-0.9.4.tar.bz2) = 2e60a99e1b4ffd271494bc67b800ec4d -SIZE (ksteak-0.9.4.tar.bz2) = 422031 +MD5 (ksteak-1.0.0pre2.tar.bz2) = b78971ffdb32e002931cff19bb6c8ba7 +SIZE (ksteak-1.0.0pre2.tar.bz2) = 460454 diff -urN ../../german/ksteak/pkg-plist ./pkg-plist --- ../../german/ksteak/pkg-plist Fri Jun 13 13:36:33 2003 +++ ./pkg-plist Thu Dec 16 18:23:44 2004 @@ -1,13 +1,9 @@ bin/ksteak -lib/libksteakplugin.so.0 -lib/libksteakplugin.so lib/libksteakplugin.la -share/doc/HTML/en/ksteak/index.docbook -share/doc/HTML/en/ksteak/index.cache.bz2 -share/doc/HTML/en/ksteak/common -share/doc/HTML/de/ksteak/index.docbook -share/doc/HTML/de/ksteak/index.cache.bz2 -share/doc/HTML/de/ksteak/common +lib/libksteakplugin.so +lib/libksteakplugin.so.0 +share/applnk/Utilities/ksteak.desktop +share/apps/khtml/kpartplugins/ksteakplugin.rc share/apps/ksteak/ksteakui.rc share/apps/ksteak/pics/and.png share/apps/ksteak/pics/case.png @@ -18,20 +14,18 @@ share/apps/ksteak/pics/ksteak-dock-watch.png share/apps/ksteak/pics/ksteak-dock.png share/apps/ksteak/pics/or.png -share/apps/khtml/kpartplugins/ksteakplugin.rc +share/doc/HTML/de/ksteak/common +share/doc/HTML/de/ksteak/index.cache.bz2 +share/doc/HTML/de/ksteak/index.docbook +share/doc/HTML/en/ksteak/common +share/doc/HTML/en/ksteak/index.cache.bz2 +share/doc/HTML/en/ksteak/index.docbook share/icons/hicolor/16x16/apps/ksteak.png share/icons/hicolor/16x16/apps/ksteakplugin.png -share/icons/hicolor/22x22/apps/ksteak.png share/icons/hicolor/22x22/apps/ksteakplugin.png share/icons/hicolor/32x32/apps/ksteak.png share/icons/hicolor/32x32/apps/ksteakplugin.png -share/icons/locolor/16x16/apps/ksteak.png share/icons/locolor/16x16/apps/ksteakplugin.png -share/icons/locolor/22x22/apps/ksteak.png -share/icons/locolor/32x32/apps/ksteak.png -share/applnk/Applications/ksteak.desktop share/locale/de/LC_MESSAGES/ksteak.mo -@dirrm share/doc/HTML/en/ksteak -@dirrm share/doc/HTML/de/ksteak @dirrm share/apps/ksteak/pics @dirrm share/apps/ksteak --Boundary-00=_n4GxBBLgZZmpCjH-- >Release-Note: >Audit-Trail: >Unformatted: --Boundary-00=_n4GxBBLgZZmpCjH Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-send-pr-version: send-pr 3.113 X-GNATS-Notify: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 18:18:51 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FED616A4CE; Sat, 18 Dec 2004 18:18:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D07A43D31; Sat, 18 Dec 2004 18:18:51 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIIIpu5071782; Sat, 18 Dec 2004 18:18:51 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIIIpLH071778; Sat, 18 Dec 2004 18:18:51 GMT (envelope-from krion) Date: Sat, 18 Dec 2004 18:18:51 GMT From: Kirill Ponomarew Message-Id: <200412181818.iBIIIpLH071778@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/75113: Update port: games/qgo to 1.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 18:18:51 -0000 Synopsis: Update port: games/qgo to 1.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Sat Dec 18 18:18:47 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=75113 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 18:19:02 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E605A16A4CE; Sat, 18 Dec 2004 18:19:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C307043D2D; Sat, 18 Dec 2004 18:19:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIIJ2WF071851; Sat, 18 Dec 2004 18:19:02 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIIJ2jM071847; Sat, 18 Dec 2004 18:19:02 GMT (envelope-from krion) Date: Sat, 18 Dec 2004 18:19:02 GMT From: Kirill Ponomarew Message-Id: <200412181819.iBIIJ2jM071847@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/75106: Update port: biology/gperiodic to 2.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 18:19:03 -0000 Synopsis: Update port: biology/gperiodic to 2.0.8 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Sat Dec 18 18:18:59 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=75106 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 18:20:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D059416A4CE for ; Sat, 18 Dec 2004 18:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1221E43D4C for ; Sat, 18 Dec 2004 18:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIIKOFC071889 for ; Sat, 18 Dec 2004 18:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIIKOWp071888; Sat, 18 Dec 2004 18:20:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 18:20:24 GMT Resent-Message-Id: <200412181820.iBIIKOWp071888@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE2916A4CF for ; Sat, 18 Dec 2004 18:13:29 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7319F43D53 for ; Sat, 18 Dec 2004 18:13:28 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.248] (port=49911 helo=novel.zapto.org) by mx2.mail.ru with esmtp id 1Cfj50-0002WD-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 18 Dec 2004 21:13:23 +0300 Message-Id: Date: Sat, 18 Dec 2004 21:13:23 +0300 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75231: [ maintainer ] audio/mpg123: non-critial security fix, rename patches X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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, 18 Dec 2004 18:20:24 -0000 >Number: 75231 >Category: ports >Synopsis: [ maintainer ] audio/mpg123: non-critial security fix, rename patches >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: Sat Dec 18 18:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.3-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #3: Sat Dec 11 21:01:26 MSK 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/MIRRORBOX i386 >Description: - Change patch name style from patch-a[a-z] to patch-$file_to_patch - Security fix: bof in find_next_file()@mpg123.c, source: http://tigger.uic.edu/~jlongs2/holes/mpg123.txt. But I has not succeeded in finding file called "8.list" (refered in the advisory) so I cannot test whether my patch is correct. I guest, it should be reviewed by the security team. - Bump PORTREVISION >How-To-Repeat: >Fix: --- port.mpg123.security begins here --- diff -ruN mpg123.orig/Makefile mpg123/Makefile --- mpg123.orig/Makefile Sat Dec 18 20:19:54 2004 +++ mpg123/Makefile Sat Dec 18 20:50:43 2004 @@ -7,7 +7,7 @@ PORTNAME= mpg123 PORTVERSION= 0.59r -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= audio ipv6 MASTER_SITES= http://www.mpg123.de/mpg123/ \ http://www-ti.informatik.uni-tuebingen.de/~hippm/mpg123/ diff -ruN mpg123.orig/files/patch-Makefile mpg123/files/patch-Makefile --- mpg123.orig/files/patch-Makefile Thu Jan 1 03:00:00 1970 +++ mpg123/files/patch-Makefile Tue Oct 26 22:13:46 2004 @@ -0,0 +1,123 @@ +--- Makefile.orig Wed Sep 15 21:14:24 2004 ++++ Makefile Wed Sep 15 21:14:41 2004 +@@ -4,13 +4,15 @@ + + # Where to install binary and manpage on "make install": + +-PREFIX=/usr/local ++#PREFIX=/usr/local + BINDIR=$(PREFIX)/bin + MANDIR=$(PREFIX)/man + SECTION=1 + + # Enable the below line If your plathome support IPv6 +-#CFLAGS+= -DINET6 ++.if defined(USE_INET6) ++CFLAGS+= -DINET6 ++.endif + # Additional LIBDIR and libraries if exist + IPV6LIBDIR= + IPV6LIB= +@@ -300,6 +302,9 @@ + #CFLAGS='$(CFLAGS) -DI386_ASSEM -O2 -DREAL_IS_FLOAT -DLINUX -Wall -g' + #CFLAGS='$(CFLAGS) -DI386_ASSEM -DREAL_IS_FLOAT -DLINUX -Wall -O2 -m486 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math -malign-loops=2 -malign-jumps=2 -malign-functions=2' + ++CC ?= cc ++LDFLAGS = ++ + .if defined(WITH_ICONV) + CFLAGS+=-DWITH_ICONV -I${LOCALBASE}/include + LDFLAGS+=-L${LOCALBASE}/lib -liconv +@@ -308,35 +313,62 @@ + .endif + .endif + ++.if ${MACHINE_ARCH} == "i386" ++ARCHOPT= -funroll-all-loops -ffast-math -fomit-frame-pointer \ ++ -DROT_I386 -DI386_ASSEM -DREAL_IS_FLOAT ++ARCHFILES= decode_i386.o ++CFLAGS ?=-O4 -m486 ++.if !defined(OPT_ARCH) ++ARCHFILES+= dct64_i386.c ++.else ++.if (${OPT_ARCH} == "i486") ++ARCHOPT+= -DI486_OPT ++ARCHFILES+= decode_i486.o dct64_i486.o dct64_i386.o ++.elif (${OPT_ARCH} == "i586") ++ARCHOPT+= -DPENTIUM_OPT ++ARCHFILES+= decode_i586.o dct64_i386.o ++.elif (${OPT_ARCH} == "3dnow") ++ARCHOPT+= -DPENTIUM_OPT -DUSE_3DNOW ++ARCHFILES+= dct64_3dnow.o decode_3dnow.o ++dct64_3dnow.o: ++ ${INSTALL} ./precompiled/linux-i386/dct64_3dnow.o . ++decode_3dnow.o: ++ ${INSTALL} ./precompiled/linux-i386/decode_3dnow.o . ++.endif ++.endif ++.else ++ARCHOPT= -funroll-loops ++ARCHFILES= decode.o dct64.o ++.endif ++ ++CFLAGS +=-Wall -ansi -pedantic ${ARCHOPT} \ ++ -DREAD_MMAP -DUSE_MMAP -DOSS -DTERM_CONTROL ++ ++.if defined(HAVE_ESOUND) ++CFLAGS +=-I${LOCALBASE}/include ++LDFLAGS+=-L${LOCALBASE}/lib ++.elif defined(HAVE_NAS) ++CFLAGS +=-I${X11BASE}/include -DNAS ++LDFLAGS+=-L${X11BASE}/lib ++.endif ++ + freebsd: +- $(MAKE) CC=cc LDFLAGS= \ +- OBJECTS='decode_i386.o dct64_i386.o audio_oss.o' \ +- CFLAGS='$(CFLAGS) -Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ +- -funroll-all-loops -ffast-math -DROT_I386 \ +- -DREAD_MMAP \ +- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ ++ ${MAKE} OBJECTS='${ARCHFILES} audio_oss.o term.o' \ + mpg123-make + + freebsd-esd: +- $(MAKE) CC=cc LDFLAGS= \ +- AUDIO_LIB='-lesd -laudiofile' \ +- OBJECTS='decode_i386.o dct64_i386.o $(GETBITS) audio_esd.o' \ +- CFLAGS='$(CFLAGS) -Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ +- -funroll-all-loops -ffast-math -DROT_I386 \ +- -DREAD_MMAP \ +- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS \ +- -I/usr/local/include -L/usr/local/lib \ +- $(CFLAGS)' \ ++ $(MAKE) AUDIO_LIB='-lesd -laudiofile' \ ++ OBJECTS='${ARCHFILES} audio_esd.o term.o' \ ++ mpg123-make ++ ++freebsd-nas: ++ $(MAKE) AUDIO_LIB='-laudio -lXau -lXt' \ ++ OBJECTS='${ARCHFILES} audio_nas.o term.o' \ + mpg123-make + + freebsd-frontend: +- $(MAKE) CC=cc LDFLAGS= \ +- OBJECTS='decode_i386.o dct64_i386.o audio_oss.o \ ++ $(MAKE) OBJECTS='${ARCHFILES} audio_oss.o \ + control_sajber.o control_tk3play.o' \ +- CFLAGS='$(CFLAGS) -Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ +- -funroll-all-loops -ffast-math -DROT_I386 \ +- -DFRONTEND \ +- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ + $(FRONTEND) + + +@@ -575,7 +607,7 @@ + @ $(MAKE) CFLAGS='$(CFLAGS)' BINNAME=mpg123m mpg123 + + mpg123-make: +- @ $(MAKE) CFLAGS='$(CFLAGS)' BINNAME=mpg123 mpg123 ++ @ $(MAKE) LDFLAGS='$(LDFLAGS)' CFLAGS='$(CFLAGS)' BINNAME=mpg123 mpg123 + + mpg123: mpg123.o common.o $(OBJECTS) decode_2to1.o decode_4to1.o \ + tabinit.o audio.o layer1.o layer2.o layer3.o buffer.o \ diff -ruN mpg123.orig/files/patch-aa mpg123/files/patch-aa --- mpg123.orig/files/patch-aa Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-aa Thu Jan 1 03:00:00 1970 @@ -1,123 +0,0 @@ ---- Makefile.orig Wed Sep 15 21:14:24 2004 -+++ Makefile Wed Sep 15 21:14:41 2004 -@@ -4,13 +4,15 @@ - - # Where to install binary and manpage on "make install": - --PREFIX=/usr/local -+#PREFIX=/usr/local - BINDIR=$(PREFIX)/bin - MANDIR=$(PREFIX)/man - SECTION=1 - - # Enable the below line If your plathome support IPv6 --#CFLAGS+= -DINET6 -+.if defined(USE_INET6) -+CFLAGS+= -DINET6 -+.endif - # Additional LIBDIR and libraries if exist - IPV6LIBDIR= - IPV6LIB= -@@ -300,6 +302,9 @@ - #CFLAGS='$(CFLAGS) -DI386_ASSEM -O2 -DREAL_IS_FLOAT -DLINUX -Wall -g' - #CFLAGS='$(CFLAGS) -DI386_ASSEM -DREAL_IS_FLOAT -DLINUX -Wall -O2 -m486 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math -malign-loops=2 -malign-jumps=2 -malign-functions=2' - -+CC ?= cc -+LDFLAGS = -+ - .if defined(WITH_ICONV) - CFLAGS+=-DWITH_ICONV -I${LOCALBASE}/include - LDFLAGS+=-L${LOCALBASE}/lib -liconv -@@ -308,35 +313,62 @@ - .endif - .endif - -+.if ${MACHINE_ARCH} == "i386" -+ARCHOPT= -funroll-all-loops -ffast-math -fomit-frame-pointer \ -+ -DROT_I386 -DI386_ASSEM -DREAL_IS_FLOAT -+ARCHFILES= decode_i386.o -+CFLAGS ?=-O4 -m486 -+.if !defined(OPT_ARCH) -+ARCHFILES+= dct64_i386.c -+.else -+.if (${OPT_ARCH} == "i486") -+ARCHOPT+= -DI486_OPT -+ARCHFILES+= decode_i486.o dct64_i486.o dct64_i386.o -+.elif (${OPT_ARCH} == "i586") -+ARCHOPT+= -DPENTIUM_OPT -+ARCHFILES+= decode_i586.o dct64_i386.o -+.elif (${OPT_ARCH} == "3dnow") -+ARCHOPT+= -DPENTIUM_OPT -DUSE_3DNOW -+ARCHFILES+= dct64_3dnow.o decode_3dnow.o -+dct64_3dnow.o: -+ ${INSTALL} ./precompiled/linux-i386/dct64_3dnow.o . -+decode_3dnow.o: -+ ${INSTALL} ./precompiled/linux-i386/decode_3dnow.o . -+.endif -+.endif -+.else -+ARCHOPT= -funroll-loops -+ARCHFILES= decode.o dct64.o -+.endif -+ -+CFLAGS +=-Wall -ansi -pedantic ${ARCHOPT} \ -+ -DREAD_MMAP -DUSE_MMAP -DOSS -DTERM_CONTROL -+ -+.if defined(HAVE_ESOUND) -+CFLAGS +=-I${LOCALBASE}/include -+LDFLAGS+=-L${LOCALBASE}/lib -+.elif defined(HAVE_NAS) -+CFLAGS +=-I${X11BASE}/include -DNAS -+LDFLAGS+=-L${X11BASE}/lib -+.endif -+ - freebsd: -- $(MAKE) CC=cc LDFLAGS= \ -- OBJECTS='decode_i386.o dct64_i386.o audio_oss.o' \ -- CFLAGS='$(CFLAGS) -Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ -- -funroll-all-loops -ffast-math -DROT_I386 \ -- -DREAD_MMAP \ -- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ -+ ${MAKE} OBJECTS='${ARCHFILES} audio_oss.o term.o' \ - mpg123-make - - freebsd-esd: -- $(MAKE) CC=cc LDFLAGS= \ -- AUDIO_LIB='-lesd -laudiofile' \ -- OBJECTS='decode_i386.o dct64_i386.o $(GETBITS) audio_esd.o' \ -- CFLAGS='$(CFLAGS) -Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ -- -funroll-all-loops -ffast-math -DROT_I386 \ -- -DREAD_MMAP \ -- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS \ -- -I/usr/local/include -L/usr/local/lib \ -- $(CFLAGS)' \ -+ $(MAKE) AUDIO_LIB='-lesd -laudiofile' \ -+ OBJECTS='${ARCHFILES} audio_esd.o term.o' \ -+ mpg123-make -+ -+freebsd-nas: -+ $(MAKE) AUDIO_LIB='-laudio -lXau -lXt' \ -+ OBJECTS='${ARCHFILES} audio_nas.o term.o' \ - mpg123-make - - freebsd-frontend: -- $(MAKE) CC=cc LDFLAGS= \ -- OBJECTS='decode_i386.o dct64_i386.o audio_oss.o \ -+ $(MAKE) OBJECTS='${ARCHFILES} audio_oss.o \ - control_sajber.o control_tk3play.o' \ -- CFLAGS='$(CFLAGS) -Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ -- -funroll-all-loops -ffast-math -DROT_I386 \ -- -DFRONTEND \ -- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP -DOSS' \ - $(FRONTEND) - - -@@ -575,7 +607,7 @@ - @ $(MAKE) CFLAGS='$(CFLAGS)' BINNAME=mpg123m mpg123 - - mpg123-make: -- @ $(MAKE) CFLAGS='$(CFLAGS)' BINNAME=mpg123 mpg123 -+ @ $(MAKE) LDFLAGS='$(LDFLAGS)' CFLAGS='$(CFLAGS)' BINNAME=mpg123 mpg123 - - mpg123: mpg123.o common.o $(OBJECTS) decode_2to1.o decode_4to1.o \ - tabinit.o audio.o layer1.o layer2.o layer3.o buffer.o \ diff -ruN mpg123.orig/files/patch-ab mpg123/files/patch-ab --- mpg123.orig/files/patch-ab Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-ab Thu Jan 1 03:00:00 1970 @@ -1,51 +0,0 @@ ---- mpg123.c.orig Tue Aug 21 19:48:17 2001 -+++ mpg123.c Tue Aug 21 19:49:02 2001 -@@ -27,6 +27,10 @@ - #include - #endif - -+#ifdef __FreeBSD__ -+#include -+#endif -+ - #include "mpg123.h" - #include "getlopt.h" - #include "buffer.h" -@@ -223,7 +227,7 @@ - { - int loop, rannum; - -- srand(time(NULL)); -+ srandomdev(); - if(shuffleord) - free(shuffleord); - shuffleord = (int *) malloc((numfiles + 1) * sizeof(int)); -@@ -239,7 +243,7 @@ - /* now shuffle them */ - if(numfiles >= 2) { - for (loop = 0; loop < numfiles; loop++) { -- rannum = (rand() % (numfiles * 4 - 4)) / 4; -+ rannum = (random() % (numfiles * 4 - 4)) / 4; - rannum += (rannum >= loop); - shuffleord[loop] ^= shuffleord[rannum]; - shuffleord[rannum] ^= shuffleord[loop]; -@@ -381,7 +385,7 @@ - curfile++; - } - else { -- newfile = shufflist[ rand() % shuffle_listsize ]; -+ newfile = shufflist[ random() % shuffle_listsize ]; - } - - return newfile; -@@ -784,6 +788,10 @@ - _wildcard(&argc,&argv); - #endif - -+#ifdef __FreeBSD__ -+ fpsetmask(0); -+#endif -+ - if(sizeof(short) != 2) { - fprintf(stderr,"Ouch SHORT has size of %d bytes (required: '2')\n",(int)sizeof(short)); - exit(1); diff -ruN mpg123.orig/files/patch-ac mpg123/files/patch-ac --- mpg123.orig/files/patch-ac Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-ac Thu Jan 1 03:00:00 1970 @@ -1,11 +0,0 @@ ---- audio_esd.c-- Fri May 28 20:36:29 1999 -+++ audio_esd.c Thu Nov 11 10:14:30 1999 -@@ -75,7 +75,7 @@ - else if (ai->rate > esd_rate) - return -1; - -- ai->fn = esd_play_stream_fallback(format, ai->rate, esdserver, "mpg123"); -+ ai->fn = esd_play_stream_fallback(format, ai->rate, NULL, "mpg123"); - return (ai->fn); - } - diff -ruN mpg123.orig/files/patch-ae mpg123/files/patch-ae --- mpg123.orig/files/patch-ae Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-ae Thu Jan 1 03:00:00 1970 @@ -1,11 +0,0 @@ ---- control_generic.c.orig Fri Mar 2 16:10:49 2001 -+++ control_generic.c Fri Mar 2 16:10:51 2001 -@@ -26,6 +26,8 @@ - extern int buffer_pid; - extern int tabsel_123[2][3][16]; - -+void generic_sendmsg (char *, ...) __printflike(1,2); -+ - void generic_sendmsg (char *fmt, ...) - { - va_list ap; diff -ruN mpg123.orig/files/patch-af mpg123/files/patch-af --- mpg123.orig/files/patch-af Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-af Thu Jan 1 03:00:00 1970 @@ -1,11 +0,0 @@ ---- audio_oss.c.orig Sat Jan 31 23:14:08 1998 -+++ audio_oss.c Sun May 12 15:35:49 2002 -@@ -31,7 +31,7 @@ - #elif defined(__bsdi__) - #include - #else --#include -+#include - #endif - - int audio_open(struct audio_info_struct *ai) diff -ruN mpg123.orig/files/patch-ag mpg123/files/patch-ag --- mpg123.orig/files/patch-ag Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-ag Thu Jan 1 03:00:00 1970 @@ -1,17 +0,0 @@ ---- mpg123.c.orig Fri Jun 18 14:18:11 1999 -+++ mpg123.c Mon Feb 10 11:58:08 2003 -@@ -920,10 +920,10 @@ - - #if !defined(GENERIC) - { -- const char *term_type; -- term_type = getenv("TERM"); -- if (!strcmp(term_type,"xterm")) -- { -+ const char *term_type; -+ -+ if (((term_type = getenv("TERM")) != NULL) -+ && (!strcmp(term_type,"xterm"))) { - fprintf(stderr, "\033]0;%s\007", filename); - } - } diff -ruN mpg123.orig/files/patch-ah mpg123/files/patch-ah --- mpg123.orig/files/patch-ah Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-ah Thu Jan 1 03:00:00 1970 @@ -1,56 +0,0 @@ ---- layer3.c.xx Wed Oct 22 19:19:01 2003 -+++ layer3.c Wed Oct 22 19:20:30 2003 -@@ -608,7 +608,7 @@ - * Dequantize samples (includes huffman decoding) - */ - /* 24 is enough because tab13 has max. a 19 bit huffvector */ --#ifdef __alpha -+#ifndef __i386__ - #define BITSHIFT ((sizeof(int)-1)*8) - #define REFRESH_MASK \ - while(num < BITSHIFT) { \ -@@ -634,7 +634,7 @@ - int *me; - - int num=getbitoffset(); --#ifdef __alpha -+#ifndef __i386__ - int mask = (int) getbits(num)<<(BITSHIFT+8-num); - #else - long mask = (long) getbits(num)<<(BITSHIFT+8-num); -@@ -722,7 +722,7 @@ - if(x == 15 && h->linbits) { - max[lwin] = cb; - REFRESH_MASK; --#ifdef __alpha -+#ifndef __i386__ - x += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); - #else - x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); -@@ -750,7 +750,7 @@ - if(y == 15 && h->linbits) { - max[lwin] = cb; - REFRESH_MASK; --#ifdef __alpha -+#ifndef __i386__ - y += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); - #else - y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); -@@ -904,7 +904,7 @@ - if (x == 15 && h->linbits) { - max = cb; - REFRESH_MASK; --#ifdef __alpha -+#ifndef __i386__ - x += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); - #else - x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); -@@ -932,7 +932,7 @@ - if (y == 15 && h->linbits) { - max = cb; - REFRESH_MASK; --#ifdef __alpha -+#ifndef __i386__ - y += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); - #else - y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); diff -ruN mpg123.orig/files/patch-ai mpg123/files/patch-ai --- mpg123.orig/files/patch-ai Sat Dec 18 20:19:54 2004 +++ mpg123/files/patch-ai Thu Jan 1 03:00:00 1970 @@ -1,41 +0,0 @@ ---- audio.c.orig Tue Apr 6 17:53:05 1999 -+++ audio.c Sat Jan 31 18:41:14 2004 -@@ -75,7 +75,11 @@ - return; - } - -+#ifdef WITH_FREEBSD_DSP_ONLY -+ memset(capabilities,1,sizeof(capabilities)); -+#else - memset(capabilities,0,sizeof(capabilities)); -+#endif - if(param.force_rate) { - rates[NUM_RATES-1] = param.force_rate; - k1 = NUM_RATES; -@@ -86,8 +90,16 @@ - exit(1); - } - -+#ifdef WITH_FREEBSD_DSP_ONLY -+ if(param.force_rate) -+#endif - for(i=0;irate > esd_rate) + return -1; + +- ai->fn = esd_play_stream_fallback(format, ai->rate, esdserver, "mpg123"); ++ ai->fn = esd_play_stream_fallback(format, ai->rate, NULL, "mpg123"); + return (ai->fn); + } + diff -ruN mpg123.orig/files/patch-audio_oss.c mpg123/files/patch-audio_oss.c --- mpg123.orig/files/patch-audio_oss.c Thu Jan 1 03:00:00 1970 +++ mpg123/files/patch-audio_oss.c Tue Oct 26 22:13:46 2004 @@ -0,0 +1,11 @@ +--- audio_oss.c.orig Sat Jan 31 23:14:08 1998 ++++ audio_oss.c Sun May 12 15:35:49 2002 +@@ -31,7 +31,7 @@ + #elif defined(__bsdi__) + #include + #else +-#include ++#include + #endif + + int audio_open(struct audio_info_struct *ai) diff -ruN mpg123.orig/files/patch-control_generic.c mpg123/files/patch-control_generic.c --- mpg123.orig/files/patch-control_generic.c Thu Jan 1 03:00:00 1970 +++ mpg123/files/patch-control_generic.c Tue Oct 26 22:13:46 2004 @@ -0,0 +1,11 @@ +--- control_generic.c.orig Fri Mar 2 16:10:49 2001 ++++ control_generic.c Fri Mar 2 16:10:51 2001 +@@ -26,6 +26,8 @@ + extern int buffer_pid; + extern int tabsel_123[2][3][16]; + ++void generic_sendmsg (char *, ...) __printflike(1,2); ++ + void generic_sendmsg (char *fmt, ...) + { + va_list ap; diff -ruN mpg123.orig/files/patch-layer3.c mpg123/files/patch-layer3.c --- mpg123.orig/files/patch-layer3.c Thu Jan 1 03:00:00 1970 +++ mpg123/files/patch-layer3.c Tue Oct 26 22:13:46 2004 @@ -0,0 +1,56 @@ +--- layer3.c.xx Wed Oct 22 19:19:01 2003 ++++ layer3.c Wed Oct 22 19:20:30 2003 +@@ -608,7 +608,7 @@ + * Dequantize samples (includes huffman decoding) + */ + /* 24 is enough because tab13 has max. a 19 bit huffvector */ +-#ifdef __alpha ++#ifndef __i386__ + #define BITSHIFT ((sizeof(int)-1)*8) + #define REFRESH_MASK \ + while(num < BITSHIFT) { \ +@@ -634,7 +634,7 @@ + int *me; + + int num=getbitoffset(); +-#ifdef __alpha ++#ifndef __i386__ + int mask = (int) getbits(num)<<(BITSHIFT+8-num); + #else + long mask = (long) getbits(num)<<(BITSHIFT+8-num); +@@ -722,7 +722,7 @@ + if(x == 15 && h->linbits) { + max[lwin] = cb; + REFRESH_MASK; +-#ifdef __alpha ++#ifndef __i386__ + x += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); + #else + x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); +@@ -750,7 +750,7 @@ + if(y == 15 && h->linbits) { + max[lwin] = cb; + REFRESH_MASK; +-#ifdef __alpha ++#ifndef __i386__ + y += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); + #else + y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); +@@ -904,7 +904,7 @@ + if (x == 15 && h->linbits) { + max = cb; + REFRESH_MASK; +-#ifdef __alpha ++#ifndef __i386__ + x += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); + #else + x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); +@@ -932,7 +932,7 @@ + if (y == 15 && h->linbits) { + max = cb; + REFRESH_MASK; +-#ifdef __alpha ++#ifndef __i386__ + y += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits); + #else + y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); diff -ruN mpg123.orig/files/patch-mpg123.c mpg123/files/patch-mpg123.c --- mpg123.orig/files/patch-mpg123.c Thu Jan 1 03:00:00 1970 +++ mpg123/files/patch-mpg123.c Sat Dec 18 20:45:54 2004 @@ -0,0 +1,79 @@ +--- mpg123.c.orig Sat Dec 18 20:25:54 2004 ++++ mpg123.c Sat Dec 18 20:45:09 2004 +@@ -27,6 +27,10 @@ + #include + #endif + ++#ifdef __FreeBSD__ ++#include ++#endif ++ + #include "mpg123.h" + #include "getlopt.h" + #include "buffer.h" +@@ -223,7 +227,7 @@ + { + int loop, rannum; + +- srand(time(NULL)); ++ srandomdev(); + if(shuffleord) + free(shuffleord); + shuffleord = (int *) malloc((numfiles + 1) * sizeof(int)); +@@ -239,7 +243,7 @@ + /* now shuffle them */ + if(numfiles >= 2) { + for (loop = 0; loop < numfiles; loop++) { +- rannum = (rand() % (numfiles * 4 - 4)) / 4; ++ rannum = (random() % (numfiles * 4 - 4)) / 4; + rannum += (rannum >= loop); + shuffleord[loop] ^= shuffleord[rannum]; + shuffleord[rannum] ^= shuffleord[loop]; +@@ -307,9 +311,9 @@ + if (line[0]=='\0' || line[0]=='#') + continue; + if ((listnamedir) && (line[0]!='/') && (line[0]!='\\')){ +- strcpy (linetmp, listnamedir); +- strcat (linetmp, line); +- strcpy (line, linetmp); ++ strncpy (linetmp, listnamedir, sizeof(linetmp)); ++ strncat (linetmp, line, sizeof(linetmp) - sizeof(line) - 1); ++ strncpy (line, linetmp, sizeof(linetmp)); + } + return (line); + } +@@ -381,7 +385,7 @@ + curfile++; + } + else { +- newfile = shufflist[ rand() % shuffle_listsize ]; ++ newfile = shufflist[ random() % shuffle_listsize ]; + } + + return newfile; +@@ -787,6 +791,10 @@ + _wildcard(&argc,&argv); + #endif + ++#ifdef __FreeBSD__ ++ fpsetmask(0); ++#endif ++ + if(sizeof(short) != 2) { + fprintf(stderr,"Ouch SHORT has size of %d bytes (required: '2')\n",(int)sizeof(short)); + exit(1); +@@ -926,10 +934,10 @@ + + #if !defined(GENERIC) + { +- const char *term_type; +- term_type = getenv("TERM"); +- if (!strcmp(term_type,"xterm")) +- { ++ const char *term_type; ++ ++ if (((term_type = getenv("TERM")) != NULL) ++ && (!strcmp(term_type,"xterm"))) { + fprintf(stderr, "\033]0;%s\007", filename); + } + } --- port.mpg123.security ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 18:20:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D912E16A4CF for ; Sat, 18 Dec 2004 18:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85C9743D54 for ; Sat, 18 Dec 2004 18:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIIKOr3071945 for ; Sat, 18 Dec 2004 18:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIIKOTh071944; Sat, 18 Dec 2004 18:20:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 18:20:24 GMT Resent-Message-Id: <200412181820.iBIIKOTh071944@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, Clayton Rollins Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A49D416A4CE for ; Sat, 18 Dec 2004 18:20:09 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7913843D31 for ; Sat, 18 Dec 2004 18:20:09 +0000 (GMT) (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 iBIIK951046356 for ; Sat, 18 Dec 2004 18:20:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBIIK9gR046355; Sat, 18 Dec 2004 18:20:09 GMT (envelope-from nobody) Message-Id: <200412181820.iBIIK9gR046355@www.freebsd.org> Date: Sat, 18 Dec 2004 18:20:09 GMT From: Clayton Rollins To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/75232: net/gtk-gnutella update to 0.95 [MAINTAINER-PATCH] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 18:20:25 -0000 >Number: 75232 >Category: ports >Synopsis: net/gtk-gnutella update to 0.95 [MAINTAINER-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: Sat Dec 18 18:20:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Clayton Rollins >Release: 4.10 stable >Organization: n/a >Environment: FreeBSD riot.1138.ws 4.10-STABLE FreeBSD 4.10-STABLE #1: Wed Aug 25 14:54:01 MST 2004 root@riot.1138.ws:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: New release of the ported software is available; the patch below brings the port up to date. The patch also fixes PR 71789: http://www.freebsd.org/cgi/query-pr.cgi?pr=71789 (I kind of understated it there, so, for the record, the change does disable ICU checking.) Due to a failing hard drive, I cannot fully test the port in its current state. (Some pkg_info's are corrupted, so pkg_add won't work to add and test the packages. I did do a install/deinstall/reinstall and checked the port with portlint.) If you are hesitant to commit this in its current state, let the PR sit for a while; I'll test it more fully when I get a new hard drive (in a week or so) and send a note down ports@ when appropriate. As always, mail me if the web form mangles the patch. >How-To-Repeat: n/a >Fix: Apply the following patch: diff -urN ./gtk-gnutella.orig/Makefile ./gtk-gnutella/Makefile --- ./gtk-gnutella.orig/Makefile Tue Dec 14 19:28:51 2004 +++ ./gtk-gnutella/Makefile Tue Dec 14 19:29:43 2004 @@ -27,7 +27,7 @@ # PORTNAME= gtk-gnutella -PORTVERSION= 0.94 +PORTVERSION= 0.95 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://gtk-gnutella.sourceforge.net/download/ \ @@ -80,6 +80,8 @@ # Add threading to the ld flags; icuuc requires these by default CONFIGURE_ARGS+= -Dldflags=${PTHREAD_LIBS} +.else +CONFIGURE_ARGS+= -Dd_icu=false .endif .if defined(WITH_PORTABILITY) diff -urN ./gtk-gnutella.orig/distinfo ./gtk-gnutella/distinfo --- ./gtk-gnutella.orig/distinfo Mon Jul 12 02:55:46 2004 +++ ./gtk-gnutella/distinfo Tue Dec 14 19:36:02 2004 @@ -1,2 +1,2 @@ -MD5 (gtk-gnutella-0.94.tar.bz2) = 8319ff7b8a5a5a7be995894c2ad3280f -SIZE (gtk-gnutella-0.94.tar.bz2) = 1435586 +MD5 (gtk-gnutella-0.95.tar.bz2) = de2ff4973c975ee16cdd69ca72c06bcd +SIZE (gtk-gnutella-0.95.tar.bz2) = 2191028 diff -urN ./gtk-gnutella.orig/pkg-plist ./gtk-gnutella/pkg-plist --- ./gtk-gnutella.orig/pkg-plist Mon Jul 12 02:55:46 2004 +++ ./gtk-gnutella/pkg-plist Tue Dec 14 20:14:00 2004 @@ -1,4 +1,6 @@ bin/gtk-gnutella +share/gtk-gnutella/bogons.txt +share/gtk-gnutella/geo-ip.txt share/gtk-gnutella/gwcache.boot share/gtk-gnutella/hostiles.txt share/gtk-gnutella/pixmaps/arrow_down.xpm @@ -12,6 +14,10 @@ share/gtk-gnutella/pixmaps/exit.xpm share/gtk-gnutella/pixmaps/filter.xpm share/gtk-gnutella/pixmaps/firewall.xpm +share/gtk-gnutella/pixmaps/firewall_punchable.xpm +share/gtk-gnutella/pixmaps/firewall_tcp.xpm +share/gtk-gnutella/pixmaps/firewall_udp.xpm +share/gtk-gnutella/pixmaps/firewall_udp_punchable.xpm share/gtk-gnutella/pixmaps/freeze.xpm share/gtk-gnutella/pixmaps/icon.xpm share/gtk-gnutella/pixmaps/leaf.xpm @@ -21,13 +27,15 @@ share/gtk-gnutella/pixmaps/online.xpm share/gtk-gnutella/pixmaps/save.xpm share/gtk-gnutella/pixmaps/smallserver.xpm +share/gtk-gnutella/pixmaps/stock_form-time-field-16.xpm share/gtk-gnutella/pixmaps/thaw.xpm share/gtk-gnutella/pixmaps/ultra.xpm share/gtk-gnutella/pixmaps/upload.xpm -share/gtk-gnutella/pixmaps/stock_form-time-field-16.xpm +share/gtk-gnutella/pixmaps/warning.xpm share/locale/de/LC_MESSAGES/gtk-gnutella.mo share/locale/es/LC_MESSAGES/gtk-gnutella.mo share/locale/fr/LC_MESSAGES/gtk-gnutella.mo +share/locale/ja/LC_MESSAGES/gtk-gnutella.mo share/locale/nl/LC_MESSAGES/gtk-gnutella.mo share/locale/hu/LC_MESSAGES/gtk-gnutella.mo @dirrm share/gtk-gnutella/pixmaps >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 18:33:26 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A49BD16A4CE; Sat, 18 Dec 2004 18:33:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D78C43D45; Sat, 18 Dec 2004 18:33:26 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIIXQDM077599; Sat, 18 Dec 2004 18:33:26 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIIXQHS077595; Sat, 18 Dec 2004 18:33:26 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 18:33:26 GMT From: Pav Lucistnik Message-Id: <200412181833.iBIIXQHS077595@freefall.freebsd.org> To: ip@doom.homeunix.org, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75203: Update port: games/glbsp 2.05 -> 2.10c X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 18:33:26 -0000 Synopsis: Update port: games/glbsp 2.05 -> 2.10c State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 18:33:20 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75203 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:02:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CE7716A4CE; Sat, 18 Dec 2004 19:02:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F01F43D4C; Sat, 18 Dec 2004 19:02:48 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJ2mUf078521; Sat, 18 Dec 2004 19:02:48 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJ2lMJ078517; Sat, 18 Dec 2004 19:02:47 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:02:47 GMT From: Pav Lucistnik Message-Id: <200412181902.iBIJ2lMJ078517@freefall.freebsd.org> To: alecn2002@yandex.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/75199: [NEW PORT] x11-toolkits/ruby18-fox-devel: Ruby extension module to use FOX 1.2, aka FXRuby X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:02:48 -0000 Synopsis: [NEW PORT] x11-toolkits/ruby18-fox-devel: Ruby extension module to use FOX 1.2, aka FXRuby State-Changed-From-To: open->repocopy State-Changed-By: pav State-Changed-When: Sat Dec 18 19:02:29 GMT 2004 State-Changed-Why: Repocopy x11-toolkits/ruby-fox -> x11-toolkits/ruby-fox-devel Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: pav Responsible-Changed-When: Sat Dec 18 19:02:29 GMT 2004 Responsible-Changed-Why: Repocopy x11-toolkits/ruby-fox -> x11-toolkits/ruby-fox-devel http://www.freebsd.org/cgi/query-pr.cgi?pr=75199 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:16:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB7AE16A4D0; Sat, 18 Dec 2004 19:16:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9092D43D45; Sat, 18 Dec 2004 19:16:29 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJGTEq082873; Sat, 18 Dec 2004 19:16:29 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJGTkX082869; Sat, 18 Dec 2004 19:16:29 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:16:29 GMT From: Pav Lucistnik Message-Id: <200412181916.iBIJGTkX082869@freefall.freebsd.org> To: avg@icyb.net.ua, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75204: security/openssh-portable sshd may crash on login of user with expired password X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:16:30 -0000 Synopsis: security/openssh-portable sshd may crash on login of user with expired password State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 19:16:18 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75204 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:18:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E94816A4CE; Sat, 18 Dec 2004 19:18:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0858C43D2D; Sat, 18 Dec 2004 19:18:11 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJIADR082993; Sat, 18 Dec 2004 19:18:10 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJIAWL082989; Sat, 18 Dec 2004 19:18:10 GMT (envelope-from mezz) Date: Sat, 18 Dec 2004 19:18:10 GMT From: Jeremy Messenger Message-Id: <200412181918.iBIJIAWL082989@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org Subject: Re: ports/74204: [ new port ] editors/gphpedit: PHP/HTML/CSS editor for Gnome X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:18:11 -0000 Synopsis: [ new port ] editors/gphpedit: PHP/HTML/CSS editor for Gnome Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: mezz Responsible-Changed-When: Sat Dec 18 19:17:47 GMT 2004 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=74204 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:18:14 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2E2316A4CE; Sat, 18 Dec 2004 19:18:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB69E43D41; Sat, 18 Dec 2004 19:18:14 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJIENH083011; Sat, 18 Dec 2004 19:18:14 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJIEXG083007; Sat, 18 Dec 2004 19:18:14 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:18:14 GMT From: Pav Lucistnik Message-Id: <200412181918.iBIJIEXG083007@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hrs@FreeBSD.org Subject: Re: ports/75197: editors/nxml-emacs21 does not su to root on a 'make install' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:18:15 -0000 Synopsis: editors/nxml-emacs21 does not su to root on a 'make install' Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: pav Responsible-Changed-When: Sat Dec 18 19:17:45 GMT 2004 Responsible-Changed-Why: Assign to maintainer. Fix is to move ${MKDIR} from pre-install to pre-su-install. http://www.freebsd.org/cgi/query-pr.cgi?pr=75197 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:36:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBD6116A4CE; Sat, 18 Dec 2004 19:36:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92F5E43D3F; Sat, 18 Dec 2004 19:36:29 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJaTvW087096; Sat, 18 Dec 2004 19:36:29 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJaTed087092; Sat, 18 Dec 2004 19:36:29 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:36:29 GMT From: Pav Lucistnik Message-Id: <200412181936.iBIJaTed087092@freefall.freebsd.org> To: antonio@php.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75195: Update port: sysutils/pear-File_Find to 0.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:36:29 -0000 Synopsis: Update port: sysutils/pear-File_Find to 0.3.0 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 19:36:22 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75195 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:39:32 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DADD816A4CE; Sat, 18 Dec 2004 19:39:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0F6243D31; Sat, 18 Dec 2004 19:39:32 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJdWDn087184; Sat, 18 Dec 2004 19:39:32 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJdWSY087180; Sat, 18 Dec 2004 19:39:32 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:39:32 GMT From: Pav Lucistnik Message-Id: <200412181939.iBIJdWSY087180@freefall.freebsd.org> To: antonio@php.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75196: Update port: sysutils/pear-File to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:39:33 -0000 Synopsis: Update port: sysutils/pear-File to 1.1.0 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 19:39:26 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75196 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:40:55 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C966916A4CE; Sat, 18 Dec 2004 19:40:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A02E543D54; Sat, 18 Dec 2004 19:40:55 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJeto9087391; Sat, 18 Dec 2004 19:40:55 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJetU8087387; Sat, 18 Dec 2004 19:40:55 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:40:55 GMT From: Pav Lucistnik Message-Id: <200412181940.iBIJetU8087387@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: ports/75190: [ PORT FIX ] comms/lirc (fix libirman and devdir) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:40:55 -0000 Synopsis: [ PORT FIX ] comms/lirc (fix libirman and devdir) Responsible-Changed-From-To: freebsd-ports-bugs->mikeh Responsible-Changed-By: pav Responsible-Changed-When: Sat Dec 18 19:40:48 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=75190 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 19:45:40 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04AED16A4CE; Sat, 18 Dec 2004 19:45:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE9D843D53; Sat, 18 Dec 2004 19:45:39 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIJjdIP087503; Sat, 18 Dec 2004 19:45:39 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIJjdik087499; Sat, 18 Dec 2004 19:45:39 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 19:45:39 GMT From: Pav Lucistnik Message-Id: <200412181945.iBIJjdik087499@freefall.freebsd.org> To: t.kempka@web.de, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75189: misc/wminfo MASTER_SITES update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 19:45:40 -0000 Synopsis: misc/wminfo MASTER_SITES update State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 19:44:57 GMT 2004 State-Changed-Why: Chicken-and-egg problem, you can't download from mirror where downloaded files are posted. ;) Instead I put the distfile on FreeBSD.org's ftp space designed exactly for abandoned distfiles like this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75189 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 20:20:41 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 293BD16A4CE for ; Sat, 18 Dec 2004 20:20:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1A243D1F for ; Sat, 18 Dec 2004 20:20:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIKKZFJ092316 for ; Sat, 18 Dec 2004 20:20:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIKKZLh092315; Sat, 18 Dec 2004 20:20:35 GMT (envelope-from gnats) Date: Sat, 18 Dec 2004 20:20:35 GMT Message-Id: <200412182020.iBIKKZLh092315@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Joe Kelsey Subject: Re: ports/73404: shells/ksh93 - notify option + output redirected to nonexistent file cause crash w/ segfault X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 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: Sat, 18 Dec 2004 20:20:41 -0000 The following reply was made to PR ports/73404; it has been noted by GNATS. From: Joe Kelsey To: Parv Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/73404: shells/ksh93 - notify option + output redirected to nonexistent file cause crash w/ segfault Date: Sat, 18 Dec 2004 12:16:55 -0800 The point I am trying to make to you is that I do not understand what effect you want to achieve and exactly why you think that you can only achieve this effect through the use of commands in .profile or use of the source command. Nothing you have stated in your PR or in your communication with me tells me exactly what effect you want to achieve and why you think this effect can only occur in a .profile or a sourced file. I need to understand exactly what you want to have happen so that I can debug and help you solve your problems. The documentation for the notify option states that it operates exactly like the -b flag. Have you used the -b flag and found the same effect? /Joe From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 20:30:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7001D16A4CE for ; Sat, 18 Dec 2004 20:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ECA143D31 for ; Sat, 18 Dec 2004 20:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIKUOOT092641 for ; Sat, 18 Dec 2004 20:30:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIKUOpo092640; Sat, 18 Dec 2004 20:30:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 20:30:24 GMT Resent-Message-Id: <200412182030.iBIKUOpo092640@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, tjs Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C8ED16A4CE; Sat, 18 Dec 2004 20:28:14 +0000 (GMT) Received: from Pluto.CDPA.nsysu.edu.tw (Pluto.CDPA.nsysu.edu.tw [140.117.205.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id D076B43D3F; Sat, 18 Dec 2004 20:28:13 +0000 (GMT) (envelope-from tjs@Pluto.CDPA.nsysu.edu.tw) Received: from Pluto.CDPA.nsysu.edu.tw (localhost [127.0.0.1]) iBIKS9ul050783; Sun, 19 Dec 2004 04:28:09 +0800 (CST) (envelope-from tjs@Pluto.CDPA.nsysu.edu.tw) Received: (from tjs@localhost) by Pluto.CDPA.nsysu.edu.tw (8.13.1/8.13.1/Submit) id iBIKS8aB050782; Sun, 19 Dec 2004 04:28:08 +0800 (CST) (envelope-from tjs) Message-Id: <200412182028.iBIKS8aB050782@Pluto.CDPA.nsysu.edu.tw> Date: Sun, 19 Dec 2004 04:28:08 +0800 (CST) From: tjs To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: sobomax Subject: ports/75234: ports/audio/flite MASTER_SITES change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tjs List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 20:30:24 -0000 >Number: 75234 >Category: ports >Synopsis: ports/audio/flite MASTER_SITES change >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 Dec 18 20:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jin-Shan Tseng >Release: FreeBSD 5.3-STABLE i386 >Organization: NSYSU-CDPA >Environment: System: FreeBSD Pluto.CDPA.nsysu.edu.tw 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Nov 29 17:36:06 CST 2004 tjs@Pluto.CDPA.nsysu.edu.tw:/usr/obj/usr/src/sys/Pluto i386 >Description: ports/audio/flite tarball isn't available at http://ccache.samba.org/ftp/ccache/ but http://www.speech.cs.cmu.edu/flite/packed/flite-1.2/ ref: http://www.speech.cs.cmu.edu/flite/download.html >How-To-Repeat: >Fix: --- Makefile.orig Sun Dec 19 04:13:08 2004 +++ Makefile Sun Dec 19 04:15:48 2004 @@ -8,7 +8,7 @@ PORTNAME= flite PORTVERSION= 1.2 CATEGORIES= audio -MASTER_SITES= http://ccache.samba.org/ftp/ccache/ +MASTER_SITES= http://www.speech.cs.cmu.edu/flite/packed/${PKGNAME}/ DISTNAME= ${PKGNAME}-release MAINTAINER= sobomax@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 20:52:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97C2016A4CF; Sat, 18 Dec 2004 20:52:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C2AA43D1D; Sat, 18 Dec 2004 20:52:24 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIKqOHK094788; Sat, 18 Dec 2004 20:52:24 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIKqLXf094784; Sat, 18 Dec 2004 20:52:21 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 20:52:21 GMT From: Pav Lucistnik Message-Id: <200412182052.iBIKqLXf094784@freefall.freebsd.org> To: fernan@iib.unsam.edu.ar, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75206: [new port] print/latexmk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 20:52:24 -0000 Synopsis: [new port] print/latexmk State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 20:52:13 GMT 2004 State-Changed-Why: New port added, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=75206 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 20:59:11 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28F9716A4CE; Sat, 18 Dec 2004 20:59:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0A0543D2D; Sat, 18 Dec 2004 20:59:10 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIKxA8K094917; Sat, 18 Dec 2004 20:59:10 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIKxAqA094913; Sat, 18 Dec 2004 20:59:10 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 20:59:10 GMT From: Pav Lucistnik Message-Id: <200412182059.iBIKxAqA094913@freefall.freebsd.org> To: alecn2002@yandex.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/74241: [MAINTAINER-UPDATE] x11-toolkits/fxscintilla: update to 1.62 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 20:59:11 -0000 Synopsis: [MAINTAINER-UPDATE] x11-toolkits/fxscintilla: update to 1.62 State-Changed-From-To: feedback->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 20:58:59 GMT 2004 State-Changed-Why: Fixed update at ports/75160 http://www.freebsd.org/cgi/query-pr.cgi?pr=74241 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 22:20:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C60A16A4CE for ; Sat, 18 Dec 2004 22:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5132F43D41 for ; Sat, 18 Dec 2004 22:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIMKTlX008747 for ; Sat, 18 Dec 2004 22:20:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIMKTda008746; Sat, 18 Dec 2004 22:20:29 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 22:20:29 GMT Resent-Message-Id: <200412182220.iBIMKTda008746@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, Anish Mistry Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F25116A4CE; Sat, 18 Dec 2004 22:19:29 +0000 (GMT) Received: from smtp2.fuse.net (mail-out2.fuse.net [216.68.8.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C81743D49; Sat, 18 Dec 2004 22:19:28 +0000 (GMT) (envelope-from amistry@united-ware.com) Received: from gx5.fuse.net ([216.196.153.245]) by smtp2.fuse.net (InterMail vM.6.01.03.04 201-2131-111-106-20040729) with ESMTP id <20041218221807.RZH26919.smtp2.fuse.net@gx5.fuse.net>; Sat, 18 Dec 2004 17:18:07 -0500 Received: from www.united-ware.com ([216.196.153.245]) by gx5.fuse.net (InterMail vG.1.00.00.00 201-2136-104-20040331) with ESMTP id <20041218221715.XUAI7549.gx5.fuse.net@www.united-ware.com>; Sat, 18 Dec 2004 17:17:15 -0500 Received: from www.united-ware.com (localhost [127.0.0.1]) by www.united-ware.com (8.12.9p2/8.12.9) with ESMTP id iBIM5IKp018121 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 18 Dec 2004 17:05:19 -0500 (EST) (envelope-from amistry@www.united-ware.com) Received: (from amistry@localhost) by www.united-ware.com (8.12.9p2/8.12.9/Submit) id iBIM5IVn018120; Sat, 18 Dec 2004 17:05:18 -0500 (EST) (envelope-from amistry) Message-Id: <200412182205.iBIM5IVn018120@www.united-ware.com> Date: Sat, 18 Dec 2004 17:05:18 -0500 (EST) From: Anish Mistry To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Adam McLaurin cc: Volker Stolz Subject: ports/75236: Update Avidemux2 to 2.0.34-test2 and fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Anish Mistry List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 22:20:30 -0000 >Number: 75236 >Category: ports >Synopsis: Update Avidemux2 to 2.0.34-test2 and fix build >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 Dec 18 22:20:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Anish Mistry >Release: FreeBSD 5.3-STABLE i386 >Organization: AM Productions >Environment: System: FreeBSD bigguy.am-productions.biz 5.3-STABLE FreeBSD 5.3-STABLE #0: Thu Dec 16 18:59:52 EST 2004 amistry@bigguy.am-productions.biz:/usr/obj/usr/src/sys/BIGGUY i386 >Description: >How-To-Repeat: >Fix: --- avidemux-2.0.34-test2.patch begins here --- diff -ruN avidemux2.orig/Makefile avidemux2/Makefile --- avidemux2.orig/Makefile Thu Dec 9 16:40:41 2004 +++ avidemux2/Makefile Sat Dec 18 14:44:33 2004 @@ -10,11 +10,13 @@ CATEGORIES= multimedia MASTER_SITES= http://fixounet.free.fr/avidemux/ \ http://download.berlios.de/avidemux/ -DISTNAME= avidemux-${PORTVERSION}-test1 +DISTNAME= avidemux-${PORTVERSION}-test2 +EXTRACT_SUFX= .tgz MAINTAINER= amistry@am-productions.biz COMMENT= Simple GUI based video editor +PATCH_DEPENDS= ${ACLOCAL}:${PORTSDIR}/devel/automake${WANT_AUTOMAKE_VER} LIB_DEPENDS= mp3lame.0:${PORTSDIR}/audio/lame \ mad.2:${PORTSDIR}/audio/libmad \ xml2.5:${PORTSDIR}/textproc/libxml2 diff -ruN avidemux2.orig/distinfo avidemux2/distinfo --- avidemux2.orig/distinfo Thu Dec 9 16:40:41 2004 +++ avidemux2/distinfo Sat Dec 18 14:16:58 2004 @@ -1,2 +1,2 @@ -MD5 (avidemux-2.0.34-test1.tar.gz) = 327307dfdf3bcb19cd7a06fefea5df35 -SIZE (avidemux-2.0.34-test1.tar.gz) = 2869582 +MD5 (avidemux-2.0.34-test2.tgz) = 69f0d90f26011e842aeb809a6077770a +SIZE (avidemux-2.0.34-test2.tgz) = 3012034 diff -ruN avidemux2.orig/distinfo.orig avidemux2/distinfo.orig --- avidemux2.orig/distinfo.orig Wed Dec 31 19:00:00 1969 +++ avidemux2/distinfo.orig Thu Dec 9 13:01:11 2004 @@ -0,0 +1,2 @@ +MD5 (avidemux-2.0.34-test1.tar.gz) = 327307dfdf3bcb19cd7a06fefea5df35 +SIZE (avidemux-2.0.34-test1.tar.gz) = 2869582 --- avidemux-2.0.34-test2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 22:30:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CB7916A4CE for ; Sat, 18 Dec 2004 22:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0791243D54 for ; Sat, 18 Dec 2004 22:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIMUNpN009003 for ; Sat, 18 Dec 2004 22:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIMUNJS008998; Sat, 18 Dec 2004 22:30:23 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 22:30:23 GMT Resent-Message-Id: <200412182230.iBIMUNJS008998@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 Eggert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86F5E16A4CE for ; Sat, 18 Dec 2004 22:28:21 +0000 (GMT) Received: from kobe.netlab.nec.de (kobe.netlab.nec.de [195.37.70.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id AED8F43D48 for ; Sat, 18 Dec 2004 22:28:20 +0000 (GMT) (envelope-from root@kobe.netlab.nec.de) Received: from kobe.netlab.nec.de (localhost [127.0.0.1]) by kobe.netlab.nec.de (8.13.1/8.13.1) with ESMTP id iBIMT9Wu053480 for ; Sat, 18 Dec 2004 23:29:09 +0100 (CET) (envelope-from root@kobe.netlab.nec.de) Received: (from root@localhost) by kobe.netlab.nec.de (8.13.1/8.13.1/Submit) id iBIMT8Pj053479; Sat, 18 Dec 2004 23:29:08 +0100 (CET) (envelope-from root) Message-Id: <200412182229.iBIMT8Pj053479@kobe.netlab.nec.de> Date: Sat, 18 Dec 2004 23:29:08 +0100 (CET) From: Lars Eggert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75237: [MAINTAINER] www/mod_perl2: fix plist based on pointyhead report X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 22:30:24 -0000 >Number: 75237 >Category: ports >Synopsis: [MAINTAINER] www/mod_perl2: fix plist based on pointyhead report >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 Dec 18 22:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD kobe.netlab.nec.de 5.3-STABLE FreeBSD 5.3-STABLE #14: Tue Dec 7 13:32:55 CET >Description: Fix plist based on pointyead report: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.5.2004121802/mod_perl2-1.99r18.log Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- mod_perl2-1.99r18_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/mod_perl2/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- Makefile 14 Dec 2004 02:32:59 -0000 1.39 +++ Makefile 18 Dec 2004 22:26:49 -0000 @@ -7,6 +7,7 @@ PORTNAME= mod_perl PORTVERSION= 1.99r18 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= http://perl.apache.org/dist/ \ http://perl.apache.org/dist/old/ Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/www/mod_perl2/pkg-plist,v retrieving revision 1.19 diff -u -r1.19 pkg-plist --- pkg-plist 14 Dec 2004 02:32:59 -0000 1.19 +++ pkg-plist 18 Dec 2004 22:26:49 -0000 @@ -1,5 +1,9 @@ bin/mp2bug bin/mp2doc +include/apache2/modperl_apr_perlio.h +include/apache2/modperl_xs_util.h +include/apache2/modperl_xs_typedefs.h +include/apache2/modperl_xs_sv_convert.h include/apache2/modules/perl/mod_perl.h include/apache2/modules/perl/modperl_apache_compat.h include/apache2/modules/perl/modperl_apache_includes.h --- mod_perl2-1.99r18_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 22:39:00 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ABEE16A4CE; Sat, 18 Dec 2004 22:39:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1D6C43D31; Sat, 18 Dec 2004 22:38:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIMcxgc013068; Sat, 18 Dec 2004 22:38:59 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIMcxGr013064; Sat, 18 Dec 2004 22:38:59 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 22:38:59 GMT From: Pav Lucistnik Message-Id: <200412182238.iBIMcxGr013064@freefall.freebsd.org> To: alecn2002@yandex.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75160: [MAINTAINER-UPDATE] x11-toolkits/fxscintilla: update to 1.62 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 22:39:00 -0000 Synopsis: [MAINTAINER-UPDATE] x11-toolkits/fxscintilla: update to 1.62 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 22:38:52 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75160 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 22:40:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B07D716A4D0 for ; Sat, 18 Dec 2004 22:40:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C2A843D45 for ; Sat, 18 Dec 2004 22:40:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIMeHLC013119 for ; Sat, 18 Dec 2004 22:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIMeHoN013116; Sat, 18 Dec 2004 22:40:17 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 22:40:17 GMT Resent-Message-Id: <200412182240.iBIMeHoN013116@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 Eggert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFA4316A4CE for ; Sat, 18 Dec 2004 22:31:43 +0000 (GMT) Received: from kobe.netlab.nec.de (kobe.netlab.nec.de [195.37.70.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28D7043D39 for ; Sat, 18 Dec 2004 22:31:43 +0000 (GMT) (envelope-from root@kobe.netlab.nec.de) Received: from kobe.netlab.nec.de (localhost [127.0.0.1]) by kobe.netlab.nec.de (8.13.1/8.13.1) with ESMTP id iBIMWWYb058347 for ; Sat, 18 Dec 2004 23:32:32 +0100 (CET) (envelope-from root@kobe.netlab.nec.de) Received: (from root@localhost) by kobe.netlab.nec.de (8.13.1/8.13.1/Submit) id iBIMWWBB058346; Sat, 18 Dec 2004 23:32:32 +0100 (CET) (envelope-from root) Message-Id: <200412182232.iBIMWWBB058346@kobe.netlab.nec.de> Date: Sat, 18 Dec 2004 23:32:32 +0100 (CET) From: Lars Eggert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75238: [MAINTAINER] www/p5-Apache-SubProcess: fix plist based on pointyhead report X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 22:40:17 -0000 >Number: 75238 >Category: ports >Synopsis: [MAINTAINER] www/p5-Apache-SubProcess: fix plist based on pointyhead report >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 Dec 18 22:40:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD kobe.netlab.nec.de 5.3-STABLE FreeBSD 5.3-STABLE #14: Tue Dec 7 13:32:55 CET >Description: Fix plist based on pointyhead report: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.5.2004121802/p5-Apache-SubProcess-0.03.log Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- p5-Apache-SubProcess-0.03_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-SubProcess/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 19 Jan 2004 00:56:11 -0000 1.6 +++ Makefile 18 Dec 2004 22:30:49 -0000 @@ -7,6 +7,7 @@ PORTNAME= Apache-SubProcess PORTVERSION= 0.03 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Apache Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-SubProcess/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 24 Oct 2003 12:04:36 -0000 1.2 +++ pkg-plist 18 Dec 2004 22:30:49 -0000 @@ -2,6 +2,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache/SubProcess/SubProcess.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache/SubProcess/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/Apache/SubProcess.pm -@unexec %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache/SubProcess 2>/dev/null || true -@unexec %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache 2>/dev/null || true -@unexec %D/%%SITE_PERL%%/%%PERL_ARCH%%/Apache 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache/SubProcess 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Apache 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Apache 2>/dev/null || true --- p5-Apache-SubProcess-0.03_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 22:40:18 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07ED816A4D0 for ; Sat, 18 Dec 2004 22:40:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCC5743D45 for ; Sat, 18 Dec 2004 22:40:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIMeHAv013172 for ; Sat, 18 Dec 2004 22:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIMeHil013171; Sat, 18 Dec 2004 22:40:17 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 22:40:17 GMT Resent-Message-Id: <200412182240.iBIMeHil013171@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 Eggert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9661A16A4CE for ; Sat, 18 Dec 2004 22:39:13 +0000 (GMT) Received: from kobe.netlab.nec.de (kobe.netlab.nec.de [195.37.70.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id E927D43D31 for ; Sat, 18 Dec 2004 22:39:12 +0000 (GMT) (envelope-from root@kobe.netlab.nec.de) Received: from kobe.netlab.nec.de (localhost [127.0.0.1]) by kobe.netlab.nec.de (8.13.1/8.13.1) with ESMTP id iBIMe2mw063262 for ; Sat, 18 Dec 2004 23:40:02 +0100 (CET) (envelope-from root@kobe.netlab.nec.de) Received: (from root@localhost) by kobe.netlab.nec.de (8.13.1/8.13.1/Submit) id iBIMe2XE063261; Sat, 18 Dec 2004 23:40:02 +0100 (CET) (envelope-from root) Message-Id: <200412182240.iBIMe2XE063261@kobe.netlab.nec.de> Date: Sat, 18 Dec 2004 23:40:02 +0100 (CET) From: Lars Eggert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75239: [MAINTAINER] www/privoxy+ipv6: fix plist based on pointyhead report X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 22:40:18 -0000 >Number: 75239 >Category: ports >Synopsis: [MAINTAINER] www/privoxy+ipv6: fix plist based on pointyhead report >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 Dec 18 22:40:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD kobe.netlab.nec.de 5.3-STABLE FreeBSD 5.3-STABLE #14: Tue Dec 7 13:32:55 CET >Description: Fix plist based on pointyhead report. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- privoxy+ipv6-20030523_3.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/privoxy+ipv6/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 4 Jun 2004 17:29:36 -0000 1.13 +++ Makefile 18 Dec 2004 22:38:14 -0000 @@ -7,7 +7,7 @@ PORTNAME= privoxy+ipv6 PORTVERSION= 20030523 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www ipv6 MASTER_SITES= ftp://ftp.deepspace6.net/pub/ds6/sources/privoxy/ DISTNAME= privoxy_CVS_${PORTVERSION}_ipv6_5 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/www/privoxy+ipv6/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- pkg-plist 30 Jul 2003 18:39:30 -0000 1.4 +++ pkg-plist 18 Dec 2004 22:38:14 -0000 @@ -1,3 +1,5 @@ +@unexec cmp %D/etc/privoxy/config.sample %D/etc/privoxy/config && rm %D/etc/privoxy/config +@unexec cmp %D/etc/privoxy/user.action.sample %D/etc/privoxy/user.action && rm %D/etc/privoxy/user.action etc/privoxy/config.sample etc/privoxy/default.action etc/privoxy/default.filter @@ -85,6 +87,7 @@ %%DOCSDIR%%/user-manual/templates.html %%DOCSDIR%%/user-manual/upgradersnote.html @dirrm etc/privoxy/templates +@unexec rmdir %D/etc/privoxy 2>/dev/null || true @dirrm %%DOCSDIR%%/developer-manual @dirrm %%DOCSDIR%%/faq @dirrm %%DOCSDIR%%/images --- privoxy+ipv6-20030523_3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 22:50:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D79016A4CF for ; Sat, 18 Dec 2004 22:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A47FC43D5A for ; Sat, 18 Dec 2004 22:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIMoN5D013354 for ; Sat, 18 Dec 2004 22:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIMoNmY013350; Sat, 18 Dec 2004 22:50:23 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 22:50:23 GMT Resent-Message-Id: <200412182250.iBIMoNmY013350@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, tjs Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 177BF16A4CF for ; Sat, 18 Dec 2004 22:40:17 +0000 (GMT) Received: from Pluto.CDPA.nsysu.edu.tw (Pluto.CDPA.nsysu.edu.tw [140.117.205.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id E12A043D1F for ; Sat, 18 Dec 2004 22:40:15 +0000 (GMT) (envelope-from tjs@Pluto.CDPA.nsysu.edu.tw) Received: from Pluto.CDPA.nsysu.edu.tw (localhost [127.0.0.1]) iBIMeE7c093955 for ; Sun, 19 Dec 2004 06:40:14 +0800 (CST) (envelope-from tjs@Pluto.CDPA.nsysu.edu.tw) Received: (from tjs@localhost) by Pluto.CDPA.nsysu.edu.tw (8.13.1/8.13.1/Submit) id iBIMeEZq093954; Sun, 19 Dec 2004 06:40:14 +0800 (CST) (envelope-from tjs) Message-Id: <200412182240.iBIMeEZq093954@Pluto.CDPA.nsysu.edu.tw> Date: Sun, 19 Dec 2004 06:40:14 +0800 (CST) From: tjs To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75240: New port: www/wordpress-mu , multi-user version of wordpress X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tjs List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 22:50:24 -0000 >Number: 75240 >Category: ports >Synopsis: New port: www/wordpress-mu , multi-user version of wordpress >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 Dec 18 22:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jin-Shan Tseng >Release: FreeBSD 5.3-STABLE i386 >Organization: NSYSU-CDPA >Environment: System: FreeBSD Pluto.CDPA.nsysu.edu.tw 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Nov 29 17:36:06 CST 2004 tjs@Pluto.CDPA.nsysu.edu.tw:/usr/obj/usr/src/sys/Pluto i386 >Description: WordPress MU is multi-user version of the famous WordPress blogging application. It is ideal for people wanting to offer a hosted version of WordPress, but due to its complexity installation and maintainance is not supported in the same manner WordPress is. WWW: http://mu.wordpress.org/ >How-To-Repeat: >Fix: --- wordpress-mu.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/www/wordpress-mu/ # /usr/ports/www/wordpress-mu/pkg-plist # /usr/ports/www/wordpress-mu/pkg-descr # /usr/ports/www/wordpress-mu/distinfo # /usr/ports/www/wordpress-mu/Makefile # echo c - /usr/ports/www/wordpress-mu/ mkdir -p /usr/ports/www/wordpress-mu/ > /dev/null 2>&1 echo x - /usr/ports/www/wordpress-mu/pkg-plist sed 's/^X//' >/usr/ports/www/wordpress-mu/pkg-plist << 'END-of-/usr/ports/www/wordpress-mu/pkg-plist' X%%WORDPRESSMU%%/ChangeLog-wpmu.txt X%%WORDPRESSMU%%/htaccess.dist X%%WORDPRESSMU%%/index.php X%%WORDPRESSMU%%/wp-inst/Config_File.class.php X%%WORDPRESSMU%%/wp-inst/Smarty.class.php X%%WORDPRESSMU%%/wp-inst/Smarty_Compiler.class.php X%%WORDPRESSMU%%/wp-inst/go.php X%%WORDPRESSMU%%/wp-inst/htaccess.dist X%%WORDPRESSMU%%/wp-inst/index.php X%%WORDPRESSMU%%/wp-inst/license.txt X%%WORDPRESSMU%%/wp-inst/pages X%%WORDPRESSMU%%/wp-inst/readme.html X%%WORDPRESSMU%%/wp-inst/wp-admin/admin-footer.php X%%WORDPRESSMU%%/wp-inst/wp-admin/admin-functions.php X%%WORDPRESSMU%%/wp-inst/wp-admin/admin-header.php X%%WORDPRESSMU%%/wp-inst/wp-admin/admin.php X%%WORDPRESSMU%%/wp-inst/wp-admin/auth.php X%%WORDPRESSMU%%/wp-inst/wp-admin/bookmarklet.php X%%WORDPRESSMU%%/wp-inst/wp-admin/categories.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit-comments.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit-form-advanced.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit-form-comment.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit-form.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit-page-form.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit-pages.php X%%WORDPRESSMU%%/wp-inst/wp-admin/edit.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-b2.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-blogger.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-greymatter.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-livejournal.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-mt.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-rss.php X%%WORDPRESSMU%%/wp-inst/wp-admin/import-textpattern.php X%%WORDPRESSMU%%/wp-inst/wp-admin/index.php X%%WORDPRESSMU%%/wp-inst/wp-admin/install-helper.php X%%WORDPRESSMU%%/wp-inst/wp-admin/install-wpmu.php X%%WORDPRESSMU%%/wp-inst/wp-admin/install.php X%%WORDPRESSMU%%/wp-inst/wp-admin/link-add.php X%%WORDPRESSMU%%/wp-inst/wp-admin/link-categories.php X%%WORDPRESSMU%%/wp-inst/wp-admin/link-import.php X%%WORDPRESSMU%%/wp-inst/wp-admin/link-manager.php X%%WORDPRESSMU%%/wp-inst/wp-admin/link-parse-opml.php X%%WORDPRESSMU%%/wp-inst/wp-admin/menu-header.php X%%WORDPRESSMU%%/wp-inst/wp-admin/menu.php X%%WORDPRESSMU%%/wp-inst/wp-admin/moderation.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-discussion.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-general.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-head.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-misc.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-permalink.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-reading.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options-writing.php X%%WORDPRESSMU%%/wp-inst/wp-admin/options.php X%%WORDPRESSMU%%/wp-inst/wp-admin/page-new.php X%%WORDPRESSMU%%/wp-inst/wp-admin/plugin-editor.php X%%WORDPRESSMU%%/wp-inst/wp-admin/plugins.php X%%WORDPRESSMU%%/wp-inst/wp-admin/post.php X%%WORDPRESSMU%%/wp-inst/wp-admin/profile.php X%%WORDPRESSMU%%/wp-inst/wp-admin/quicktags.js X%%WORDPRESSMU%%/wp-inst/wp-admin/referers.php X%%WORDPRESSMU%%/wp-inst/wp-admin/setup-config.php X%%WORDPRESSMU%%/wp-inst/wp-admin/sidebar.php X%%WORDPRESSMU%%/wp-inst/wp-admin/template-chooser.php X%%WORDPRESSMU%%/wp-inst/wp-admin/templates.php X%%WORDPRESSMU%%/wp-inst/wp-admin/theme-editor.php X%%WORDPRESSMU%%/wp-inst/wp-admin/themes.php X%%WORDPRESSMU%%/wp-inst/wp-admin/upgrade-functions.php X%%WORDPRESSMU%%/wp-inst/wp-admin/upgrade-schema.php X%%WORDPRESSMU%%/wp-inst/wp-admin/upgrade.php X%%WORDPRESSMU%%/wp-inst/wp-admin/upload.php X%%WORDPRESSMU%%/wp-inst/wp-admin/user-edit.php X%%WORDPRESSMU%%/wp-inst/wp-admin/users.php X%%WORDPRESSMU%%/wp-inst/wp-admin/wp-admin.css X%%WORDPRESSMU%%/wp-inst/wp-atom.php X%%WORDPRESSMU%%/wp-inst/wp-blog-header.php X%%WORDPRESSMU%%/wp-inst/wp-blogs/DEFAULT/wp-config.php X%%WORDPRESSMU%%/wp-inst/wp-comments-popup.php X%%WORDPRESSMU%%/wp-inst/wp-comments-post.php X%%WORDPRESSMU%%/wp-inst/wp-comments.php X%%WORDPRESSMU%%/wp-inst/wp-commentsrss2.php X%%WORDPRESSMU%%/wp-inst/wp-config-sample.php X%%WORDPRESSMU%%/wp-inst/wp-content/links-update-cache.xml X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/google-hilite.php X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/hello.php X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/kittens-spaminator.php X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/markdown.php X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/staticize-reloaded.php X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/textile1.php X%%WORDPRESSMU%%/wp-inst/wp-content/plugins/wp_ozh_clickcounter.php X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/bg.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/bullet.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/date.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/fg.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/footer.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/header.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/posts.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img/today.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/index.php X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/screenshot-sm.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/screenshot.gif X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/templates/comments.html X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/templates/index.html X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/templates/post.html X%%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/templates/wp-layout.css X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/block.textformat.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/custom_fields.enclosure.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/custom_fields.photoblog.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/favorites.xml X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.assign.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.assign_debug_info.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.blogroll.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.cork.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.counter.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.custom_fields.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.cycle.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.debug.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.eightball.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.eval.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.fetch.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.getcustomfield.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.globalvar.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.googleit.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.html_options.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.html_select_date.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.html_select_time.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.lastposts.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.math.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.photoblog.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.pirate.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.popularposts.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.popup.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.popup_init.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.referer.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.relatedstories.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.todayayearago.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.wp_ozh_click_comment_author_link.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/function.wp_ozh_click_topclicks.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/insert.getreferer.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/insert.var.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.capitalize.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.count_characters.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.count_paragraphs.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.count_sentences.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.count_words.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.date_format.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.debug_print_var.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.default.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.escape.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.highlightsearch.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.indent.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.lower.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.regex_replace.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.replace.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.spacify.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.string_format.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.strip.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.strip_tags.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.truncate.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.upper.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/modifier.wordwrap.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/outputfilter.protect_email.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/shared.make_timestamp.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins/wp_ozh_clickcounter.php X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-templates/blogroll.tpl X%%WORDPRESSMU%%/wp-inst/wp-content/smarty-templates/noblogroll.tpl X%%WORDPRESSMU%%/wp-inst/wp-counter.php X%%WORDPRESSMU%%/wp-inst/wp-feed.php X%%WORDPRESSMU%%/wp-inst/wp-footer.php X%%WORDPRESSMU%%/wp-inst/wp-header.php X%%WORDPRESSMU%%/wp-inst/wp-images/.htaccess X%%WORDPRESSMU%%/wp-inst/wp-images/fade-butt.png X%%WORDPRESSMU%%/wp-inst/wp-images/header-shadow.png X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_arrow.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_biggrin.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_confused.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_cool.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_cry.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_eek.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_evil.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_exclaim.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_idea.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_lol.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_mad.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_mrgreen.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_neutral.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_question.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_razz.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_redface.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_rolleyes.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_sad.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_smile.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_surprised.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_twisted.gif X%%WORDPRESSMU%%/wp-inst/wp-images/smilies/icon_wink.gif X%%WORDPRESSMU%%/wp-inst/wp-images/wordpress-mu.png X%%WORDPRESSMU%%/wp-inst/wp-images/wp-favicon.png X%%WORDPRESSMU%%/wp-inst/wp-images/wp-small.png X%%WORDPRESSMU%%/wp-inst/wp-images/wpminilogo.png X%%WORDPRESSMU%%/wp-inst/wp-images/xml.gif X%%WORDPRESSMU%%/wp-inst/wp-includes/class-IXR.php X%%WORDPRESSMU%%/wp-inst/wp-includes/class-pop3.php X%%WORDPRESSMU%%/wp-inst/wp-includes/class-smarty.php X%%WORDPRESSMU%%/wp-inst/wp-includes/classes.php X%%WORDPRESSMU%%/wp-inst/wp-includes/create_smarty_template.php X%%WORDPRESSMU%%/wp-inst/wp-includes/functions-compat.php X%%WORDPRESSMU%%/wp-inst/wp-includes/functions-formatting.php X%%WORDPRESSMU%%/wp-inst/wp-includes/functions-post.php X%%WORDPRESSMU%%/wp-inst/wp-includes/functions.php X%%WORDPRESSMU%%/wp-inst/wp-includes/gettext.php X%%WORDPRESSMU%%/wp-inst/wp-includes/kses.php X%%WORDPRESSMU%%/wp-inst/wp-includes/links-update-xml.php X%%WORDPRESSMU%%/wp-inst/wp-includes/links.php X%%WORDPRESSMU%%/wp-inst/wp-includes/locale.php X%%WORDPRESSMU%%/wp-inst/wp-includes/streams.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions-author.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions-category.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions-comment.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions-general.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions-links.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions-post.php X%%WORDPRESSMU%%/wp-inst/wp-includes/template-functions.php X%%WORDPRESSMU%%/wp-inst/wp-includes/vars.php X%%WORDPRESSMU%%/wp-inst/wp-includes/version.php X%%WORDPRESSMU%%/wp-inst/wp-includes/wp-db.php X%%WORDPRESSMU%%/wp-inst/wp-includes/wp-l10n.php X%%WORDPRESSMU%%/wp-inst/wp-layout.css X%%WORDPRESSMU%%/wp-inst/wp-links-opml.php X%%WORDPRESSMU%%/wp-inst/wp-login.php X%%WORDPRESSMU%%/wp-inst/wp-mail.php X%%WORDPRESSMU%%/wp-inst/wp-pass.php X%%WORDPRESSMU%%/wp-inst/wp-rdf.php X%%WORDPRESSMU%%/wp-inst/wp-register.php X%%WORDPRESSMU%%/wp-inst/wp-rss.php X%%WORDPRESSMU%%/wp-inst/wp-rss2.php X%%WORDPRESSMU%%/wp-inst/wp-settings.php X%%WORDPRESSMU%%/wp-inst/wp-sidebar.php X%%WORDPRESSMU%%/wp-inst/wp-trackback.php X%%WORDPRESSMU%%/wp-inst/wp.php X%%WORDPRESSMU%%/wp-inst/wpmu-settings.php.dist X%%WORDPRESSMU%%/wp-inst/xmlrpc.php X@dirrm %%WORDPRESSMU%%/wp-inst/wp-includes X@dirrm %%WORDPRESSMU%%/wp-inst/wp-images/smilies X@dirrm %%WORDPRESSMU%%/wp-inst/wp-images X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/smarty-templates X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/smarty-plugins X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/templates X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition/img X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates/humancondition X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/sitetemplates X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content/plugins X@dirrm %%WORDPRESSMU%%/wp-inst/wp-content X@dirrm %%WORDPRESSMU%%/wp-inst/wp-blogs/DEFAULT X@dirrm %%WORDPRESSMU%%/wp-inst/wp-blogs X@dirrm %%WORDPRESSMU%%/wp-inst/wp-admin X@dirrm %%WORDPRESSMU%%/wp-inst X@unexec rmdir %D/%%WORDPRESSMU%% 2>/dev/null || true X%%PORTDOCS%%%%DOCSDIR%%/license.txt X%%PORTDOCS%%%%DOCSDIR%%/readme.html X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-/usr/ports/www/wordpress-mu/pkg-plist echo x - /usr/ports/www/wordpress-mu/pkg-descr sed 's/^X//' >/usr/ports/www/wordpress-mu/pkg-descr << 'END-of-/usr/ports/www/wordpress-mu/pkg-descr' XWordPress MU is multi-user version of the famous WordPress blogging Xapplication. It is ideal for people wanting to offer a hosted version Xof WordPress, but due to its complexity installation and maintainance Xis not supported in the same manner WordPress is. X XWWW: http://mu.wordpress.org/ END-of-/usr/ports/www/wordpress-mu/pkg-descr echo x - /usr/ports/www/wordpress-mu/distinfo sed 's/^X//' >/usr/ports/www/wordpress-mu/distinfo << 'END-of-/usr/ports/www/wordpress-mu/distinfo' XMD5 (wpmu-2004-12-10.tar.gz) = 7a33d95c959d0266d6173ef4846aa7a6 XSIZE (wpmu-2004-12-10.tar.gz) = 507464 END-of-/usr/ports/www/wordpress-mu/distinfo echo x - /usr/ports/www/wordpress-mu/Makefile sed 's/^X//' >/usr/ports/www/wordpress-mu/Makefile << 'END-of-/usr/ports/www/wordpress-mu/Makefile' X# New ports collection makefile for: wordpress-mu X# Date created: 2004-12-19 X# Whom: Jin-Shan Tseng X# X# $FreeBSD$ X# X XPORTNAME= wordpress-mu XPORTVERSION= 2004.12.10 XCATEGORIES= www XMASTER_SITES= http://mu.wordpress.org/download/ XDISTNAME= wpmu-${PORTVERSION:S/./-/g} X XMAINTAINER= tjs@cdpa.nsysu.edu.tw XCOMMENT= Multi-user version of the famous WordPress blogging application X XWRKSRC= ${WRKDIR}/${DISTNAME} X XUSE_PHP= mysql pcre xml XPHP4_PORT?= www/mod_php4 XNO_BUILD= YES XWANT_PHP_WEB= YES XWORDPRESSMU?= www/data-dist/wordpress-mu XPLIST_SUB+= WORDPRESSMU=${WORDPRESSMU} X X.if !defined(NOPORTDOCS) XPORTDOCS= wp-inst/license.txt wp-inst/readme.html X.endif X Xdo-install: X @${MKDIR} ${PREFIX}/${WORDPRESSMU} X @${CHOWN} www:www ${PREFIX}/${WORDPRESSMU} X @${CHMOD} 755 ${PREFIX}/${WORDPRESSMU} X @${CP} -R ${WRKSRC}/ ${PREFIX}/${WORDPRESSMU} X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for i in ${PORTDOCS} X @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} X.endfor X.endif X Xpost-install: X @${ECHO_MSG} X @${ECHO_MSG} " **** NOTE ****" X @${ECHO_MSG} "Before the first use of WordPress-MU, copy wp-inst/wp-config-sample.php to wp-inst/wp-config.php" X @${ECHO_MSG} "in ${PREFIX}/${WORDPRESSMU}/wp-inst/" X @${ECHO_MSG} "And Modify it to fit your MySQL." X @${ECHO_MSG} "Maybe you need 'mysqladmin create wordpress' first" X @${ECHO_MSG} X X.include END-of-/usr/ports/www/wordpress-mu/Makefile exit --- wordpress-mu.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:08:38 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71D4916A4CE; Sat, 18 Dec 2004 23:08:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4380D43D2F; Sat, 18 Dec 2004 23:08:38 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (kris@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBIN8cwc017865; Sat, 18 Dec 2004 23:08:38 GMT (envelope-from kris@freefall.freebsd.org) Received: (from kris@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBIN8cYO017861; Sat, 18 Dec 2004 23:08:38 GMT (envelope-from kris) Date: Sat, 18 Dec 2004 23:08:38 GMT From: Kris Kennaway Message-Id: <200412182308.iBIN8cYO017861@freefall.freebsd.org> To: kris@FreeBSD.org, sergei@FreeBSD.org, ports-bugs@FreeBSD.org Subject: Re: ports/70801: [NEW PORT] mail/crm114-devel: An Markov based SpamFilter X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:08:38 -0000 Synopsis: [NEW PORT] mail/crm114-devel: An Markov based SpamFilter Responsible-Changed-From-To: sergei->ports-bugs Responsible-Changed-By: kris Responsible-Changed-When: Sat Dec 18 23:07:52 GMT 2004 Responsible-Changed-Why: Committer never followed through after repo-copy was performed; reassign to the free pool so that someone else can pick it up. http://www.freebsd.org/cgi/query-pr.cgi?pr=70801 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:20:24 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D129E16A4CE for ; Sat, 18 Dec 2004 23:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D8D943D49 for ; Sat, 18 Dec 2004 23:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBINKODv018219 for ; Sat, 18 Dec 2004 23:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBINKOaL018218; Sat, 18 Dec 2004 23:20:24 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 23:20:24 GMT Resent-Message-Id: <200412182320.iBINKOaL018218@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, Trevor Johnson Received: by hub.freebsd.org (Postfix, from userid 855) id 2188A16A4D0; Sat, 18 Dec 2004 23:19:27 +0000 (GMT) Message-Id: <20041218231927.2188A16A4D0@hub.freebsd.org> Date: Sat, 18 Dec 2004 23:19:27 +0000 (GMT) From: Trevor Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75241: new port linux_base-rh-9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Trevor Johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:20:25 -0000 >Number: 75241 >Category: ports >Synopsis: new port linux_base-rh-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: Sat Dec 18 23:20:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: >Organization: >Environment: >Description: This is a new Linux base port with packages from Red Hat Linux 9. It should be repo-copied from ports/emulators/linux_base-8. >How-To-Repeat: N/A >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: # # . # ./files # ./files/yp.conf # ./Makefile # ./pkg-descr # ./pkg-install # ./pkg-message # ./distinfo # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/yp.conf sed 's/^X//' >./files/yp.conf << 'END-of-./files/yp.conf' X# sample yp.conf file X# X# Legal entries are: X# X# domainname Override the default YP domain X# (If not set uses the one from X# the getdomainname() syscall) X# X# ypserver [] Define which host to contact X# for YP service. If the X# argument is included then this X# host service the specified YP X# domain. X#domainname my.domain X#ypserver localhost END-of-./files/yp.conf echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: linux_base-rh-9 X# Date created: 2004-11-15 X# Whom: Xin Li X# based on linux_base-8 port by Marcel Moolenaar, Trevor Johnson and others X# X# $FreeBSD$ X# X XPORTNAME= linux_base-rh XPORTVERSION= 9 XCATEGORIES= emulators linux XMASTER_SITES= ${MASTER_SITE_REDHAT_LINUX} \ X ${MASTER_SITE_REDHAT_LINUX:S/$/:new/} XMASTER_SITE_SUBDIR= \ X ${PORTVERSION}/${LANG}/os/i386/RedHat/RPMS \ X updates/${PORTVERSION}/${LANG}/os/i386/:new XDISTFILES= glibc-common-2.3.2-11.9.i386.rpm \ X glibc-2.3.2-11.9.i386.rpm \ X redhat-release-9-3.i386.rpm \ X setup-2.5.25-1.noarch.rpm \ X filesystem-2.2.1-3.i386.rpm \ X basesystem-8.0-2.noarch.rpm \ X zlib-1.1.4-8.i386.rpm \ X libattr-2.2.0-1.i386.rpm \ X libacl-2.2.3-1.i386.rpm \ X elfutils-libelf-0.76-3.i386.rpm \ X bzip2-libs-1.0.2-8.i386.rpm \ X termcap-11.0.1-16.noarch.rpm \ X db4-4.0.14-20.i386.rpm \ X gdbm-1.8.0-20.i386.rpm \ X glib-1.2.10-10.i386.rpm \ X libtermcap-2.0.8-35.i386.rpm \ X bash-2.05b-20.1.i386.rpm \ X bzip2-1.0.2-8.i386.rpm \ X compat-libstdc++-7.3-2.96.118.i386.rpm \ X ncurses-5.3-4.i386.rpm \ X info-4.3-5.i386.rpm \ X pcre-3.9-10.i386.rpm \ X findutils-4.1.7-9.i386.rpm \ X grep-2.5.1-7.i386.rpm \ X coreutils-4.5.3-19.0.2.i386.rpm:new \ X popt-1.8-0.69.i386.rpm \ X readline-4.3-5.i386.rpm \ X setserial-2.17-12.i386.rpm \ X libstdc++-3.2.2-5.i386.rpm \ X slang-1.4.5-16.i386.rpm \ X glibc-utils-2.3.2-11.9.i386.rpm \ X rpm-4.2-0.69.i386.rpm \ X libgcc-3.2.2-5.i386.rpm \ X freetype-2.1.3-6.i386.rpm X XMAINTAINER= ports@FreeBSD.org XCOMMENT= Base set of packages needed in Linux mode (only for i386) X XEXTRACT_DEPENDS= rpm:${PORTSDIR}/archivers/rpm X XCONFLICTS= cle_base-* linux_base-6* linux_base-7* linux_base-8* \ X linux_base-deb* linux_base-gen* XRESTRICTED= "binaries under GNU GPL without accompanying source" XONLY_FOR_ARCHS= amd64 i386 XDIST_SUBDIR= rpm/i386/rh9 XPREFIX= ${LINUXBASE} XNO_BUILD= yes XNO_FILTER_SHLIBS= yes XNO_MTREE= yes XPLIST= ${WRKDIR}/pkg-plist X X# Red Hat 9 is only available in English. XLANG= en X X.ifdef USE_LINUX X.error You have `USE_LINUX' variable defined either in environment or in make(1) arguments. Please undefine and try again. X.endif X X.include X XDBPATH= /var/lib/rpm XRPM= LC_ALL=C rpm XRPMFLAGS= --root ${WRKSRC} --dbpath ${DBPATH} --nodeps \ X --replacepkgs --ignoreos --ignorearch XRPMDIR= ${DISTDIR}/${DIST_SUBDIR} X XREMOVE_DIRS= boot dev home initrd root tmp var/tmp usr/local usr/tmp XREMOVE_FILES= bin/df bin/su etc/exports etc/group etc/localtime \ X etc/motd etc/passwd etc/printcap etc/services \ X etc/protocols XBRAND_FILES= bin/rpm sbin/ldconfig sbin/sln X X.if (${ARCH} == "amd64") XLATEST_LINK:= ${LATEST_LINK:C/linux/linux32/} XFALLBACK_ELF_MIB= kern.elf32.fallback_brand X.else XFALLBACK_ELF_MIB= kern.fallback_elf_brand X.endif XLINUX_ELF= 3 XPREVIOUS_ELF!= /sbin/sysctl -n ${FALLBACK_ELF_MIB} X Xdo-extract: X# X# Handle the loading of the linux loadable kernel module if required. X @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL X X @${MKDIR} ${WRKSRC}/${DBPATH} ${WRKSRC}/var/tmp ${WRKSRC}/lib X @cd ${WRKSRC}/lib && ${LN} -sf libtermcap.so.2.0.8 libtermcap.so.2 X @${RPM} --initdb --root ${WRKSRC} --dbpath ${DBPATH} X# X# Make sure we have a /dev/null in the chrooted environment. X @${MKDIR} ${WRKSRC}/dev X @${RM} -f ${WRKSRC}/dev/null X @mknod ${WRKSRC}/dev/null c 2 2 X @${CHMOD} 666 ${WRKSRC}/dev/null X# X# Install all packages. Ignore dependencies just like the Red Hat installer. X# Also, set the ELF fallback brand to Linux, so that we don't have to do X# anything special to run staticly linked binaries. X @/sbin/sysctl -w ${FALLBACK_ELF_MIB}=${LINUX_ELF} X @for R in ${DISTFILES:S/:new//}; do \ X ${ECHO} $$R; \ X ${RPM} -U ${RPMFLAGS} ${RPMDIR}/$$R; \ X done X @for F in ${BRAND_FILES}; do \ X ${BRANDELF} -t Linux ${WRKSRC}/$$F; \ X done X @/sbin/sysctl -w ${FALLBACK_ELF_MIB}=${PREVIOUS_ELF} X# X# Install yp.conf as a hint to NIS users and make sure there's a X# mtab in etc, albeit an empty one. This is needed in a couple of X# cases. Most notably staroffice6. X# X ${INSTALL} ${COPY} -m 644 ${FILESDIR}/yp.conf ${WRKSRC}/etc X ${TOUCH} ${WRKSRC}/etc/mtab X# X# Finish X# X @for D in ${REMOVE_DIRS}; do \ X ${RM} -rf ${WRKSRC}/$$D; \ X done X @for F in ${REMOVE_FILES}; do \ X ${RM} -f ${WRKSRC}/$$F; \ X done X @${LN} -sf /var/tmp ${WRKSRC}/usr/tmp X Xpre-install: X ${RM} -f ${PLIST} X cd ${WRKSRC} && ${FIND} -s . -type f -o -type l | \ X ${CUT} -c3-999 >> ${PLIST} \ X && ${FIND} -d * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} X Xdo-install: X cd ${WRKSRC} && ${FIND} * | ${CPIO} -dlmp ${PREFIX} X ${FIND} ${PREFIX} -type d -exec ${CHMOD} 755 \{\} \; X Xpost-install: X @${ECHO} '' X @fmt ${PKGMESSAGE} X @${ECHO} '' X X.include END-of-./Makefile echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr' XThis port contains packages from a near-minimal installation of Red Hat Linux X9.0. These packages, in conjunction with the linux module, form the basis of Xthe Linux compatibility environment. X XThis port is only available for the i386 architecture. If you use an Alpha Xcomputer, please install the linux_base port instead of this one. X XIf you want to run X11 applications, install the x11/linux-XFree86-libs port. END-of-./pkg-descr echo x - ./pkg-install sed 's/^X//' >./pkg-install << 'END-of-./pkg-install' X#!/bin/sh X# an installation script for linux_base X Xcase "$2" in XPRE-INSTALL) X if [ -z "`kldstat -v | grep -E 'linux(aout|elf)'`" ]; then X echo 'Linux mode is not enabled.' X echo 'Loading linux kernel module now...' X if ! kldload linux; then X echo 'The linux kernel module could not be loaded.' X echo 'Please enable linux mode manually and retry.' X exit 1 X fi X fi X if [ -n "`mount | grep -w ^linprocfs`" ]; then X echo 'Un-mounting linprocfs...' X umount linprocfs X fi X if [ -n "`mount | grep -w ^linproc`" ]; then X echo 'Un-mounting linproc...' X umount linproc X fi X ;; XPOST-INSTALL) X if [ -n "`grep -w ^linprocfs /etc/fstab`" ]; then X echo 'Re-mounting linprocfs...' X mount linprocfs X fi X if [ -n "`grep -w ^linprocfs /etc/fstab`" ]; then X echo 'Re-mounting linproc...' X mount linproc X fi X ;; XDEINSTALL) X if [ -n "`mount | grep -w ^linprocfs`" ]; then X echo 'Un-mounting linprocfs...' X umount linprocfs X fi X if [ -n "`mount | grep -w ^linproc`" ]; then X echo 'Un-mounting linproc...' X umount linproc X fi X ;; Xesac X Xexit 0 END-of-./pkg-install echo x - ./pkg-message sed 's/^X//' >./pkg-message << 'END-of-./pkg-message' XThis software is based in part on the work of the FreeType Team. XSee . X XInstallation of the Linux base system is Xfinished. The Linux kernel mode, which Xmust be enabled for Linux binaries to run, Xis now enabled. Linux mode can be enabled Xpermanently with the linux_enable variable Xof rc.conf(5). X XWhen using NIS, don't forget to edit Xyp.conf in /compat/linux/etc. END-of-./pkg-message echo x - ./distinfo sed 's/^X//' >./distinfo << 'END-of-./distinfo' XMD5 (rpm/i386/rh9/glibc-common-2.3.2-11.9.i386.rpm) = f63000e72fc1adc2c23d4de3ba9ca2a0 XSIZE (rpm/i386/rh9/glibc-common-2.3.2-11.9.i386.rpm) = 12422695 XMD5 (rpm/i386/rh9/glibc-2.3.2-11.9.i386.rpm) = d923d7a9a5ac6c25cb51517b23843f78 XSIZE (rpm/i386/rh9/glibc-2.3.2-11.9.i386.rpm) = 3240600 XMD5 (rpm/i386/rh9/redhat-release-9-3.i386.rpm) = 4002643ba2e2077ccc22ef616d69c9fe XSIZE (rpm/i386/rh9/redhat-release-9-3.i386.rpm) = 515869 XMD5 (rpm/i386/rh9/setup-2.5.25-1.noarch.rpm) = 0adc91fc02ea439db469bd27ee6609de XSIZE (rpm/i386/rh9/setup-2.5.25-1.noarch.rpm) = 28208 XMD5 (rpm/i386/rh9/filesystem-2.2.1-3.i386.rpm) = 897e20be2729051cae7a5bc32efb6b3f XSIZE (rpm/i386/rh9/filesystem-2.2.1-3.i386.rpm) = 14341 XMD5 (rpm/i386/rh9/basesystem-8.0-2.noarch.rpm) = 64bc91a544ed3b175e617df2b6683eec XSIZE (rpm/i386/rh9/basesystem-8.0-2.noarch.rpm) = 2673 XMD5 (rpm/i386/rh9/zlib-1.1.4-8.i386.rpm) = c8e2f95e60e75fcfe51dba704c5a6f11 XSIZE (rpm/i386/rh9/zlib-1.1.4-8.i386.rpm) = 33793 XMD5 (rpm/i386/rh9/libattr-2.2.0-1.i386.rpm) = 6a69d08708521afac968d8ef8e72577d XSIZE (rpm/i386/rh9/libattr-2.2.0-1.i386.rpm) = 6608 XMD5 (rpm/i386/rh9/libacl-2.2.3-1.i386.rpm) = f7b521696dfd920f2ae12410af148025 XSIZE (rpm/i386/rh9/libacl-2.2.3-1.i386.rpm) = 12927 XMD5 (rpm/i386/rh9/elfutils-libelf-0.76-3.i386.rpm) = 1f4a143c12634884ce2a36eef141e6b3 XSIZE (rpm/i386/rh9/elfutils-libelf-0.76-3.i386.rpm) = 34806 XMD5 (rpm/i386/rh9/bzip2-libs-1.0.2-8.i386.rpm) = 996ac1deed904c7d75960b31dfe61b01 XSIZE (rpm/i386/rh9/bzip2-libs-1.0.2-8.i386.rpm) = 32169 XMD5 (rpm/i386/rh9/termcap-11.0.1-16.noarch.rpm) = 2392055e8d44522ac95a050b6c30079b XSIZE (rpm/i386/rh9/termcap-11.0.1-16.noarch.rpm) = 242197 XMD5 (rpm/i386/rh9/db4-4.0.14-20.i386.rpm) = 5fec52fddea8e7cd88cfaa34839cc4b3 XSIZE (rpm/i386/rh9/db4-4.0.14-20.i386.rpm) = 4744842 XMD5 (rpm/i386/rh9/gdbm-1.8.0-20.i386.rpm) = 819986ab928712c2c3c9324d74b360b8 XSIZE (rpm/i386/rh9/gdbm-1.8.0-20.i386.rpm) = 26370 XMD5 (rpm/i386/rh9/glib-1.2.10-10.i386.rpm) = 24d900aaab3ca9561f7ff2d7e3a206bb XSIZE (rpm/i386/rh9/glib-1.2.10-10.i386.rpm) = 136340 XMD5 (rpm/i386/rh9/libtermcap-2.0.8-35.i386.rpm) = 26883bbee99b436059bd8db85426f3d4 XSIZE (rpm/i386/rh9/libtermcap-2.0.8-35.i386.rpm) = 12318 XMD5 (rpm/i386/rh9/bash-2.05b-20.1.i386.rpm) = fa2aa425bd39ba4a9857dba700227dea XSIZE (rpm/i386/rh9/bash-2.05b-20.1.i386.rpm) = 755065 XMD5 (rpm/i386/rh9/bzip2-1.0.2-8.i386.rpm) = ca663b78121235bdaafeced854e8e966 XSIZE (rpm/i386/rh9/bzip2-1.0.2-8.i386.rpm) = 47737 XMD5 (rpm/i386/rh9/compat-libstdc++-7.3-2.96.118.i386.rpm) = 7cea2aefd79016d6ca14f7b5d05a6a2c XSIZE (rpm/i386/rh9/compat-libstdc++-7.3-2.96.118.i386.rpm) = 1054177 XMD5 (rpm/i386/rh9/ncurses-5.3-4.i386.rpm) = e941b37d22dc9ac4a8c37960c5fa337f XSIZE (rpm/i386/rh9/ncurses-5.3-4.i386.rpm) = 886637 XMD5 (rpm/i386/rh9/info-4.3-5.i386.rpm) = 8ce01d5cf0287d8cb012bce443679658 XSIZE (rpm/i386/rh9/info-4.3-5.i386.rpm) = 144807 XMD5 (rpm/i386/rh9/pcre-3.9-10.i386.rpm) = b545fff04823c776e37142764e31613c XSIZE (rpm/i386/rh9/pcre-3.9-10.i386.rpm) = 45326 XMD5 (rpm/i386/rh9/findutils-4.1.7-9.i386.rpm) = be0e80cec36c3eabf172d5003dd79466 XSIZE (rpm/i386/rh9/findutils-4.1.7-9.i386.rpm) = 103469 XMD5 (rpm/i386/rh9/grep-2.5.1-7.i386.rpm) = 0606cd6f5516817fe56d6bcc8afe179a XSIZE (rpm/i386/rh9/grep-2.5.1-7.i386.rpm) = 170719 XMD5 (rpm/i386/rh9/coreutils-4.5.3-19.0.2.i386.rpm) = da3fc5f54917452a4fa704330e193e24 XSIZE (rpm/i386/rh9/coreutils-4.5.3-19.0.2.i386.rpm) = 2413694 XMD5 (rpm/i386/rh9/popt-1.8-0.69.i386.rpm) = 8d827ac879feb6bd5a4055a9338d86a1 XSIZE (rpm/i386/rh9/popt-1.8-0.69.i386.rpm) = 65810 XMD5 (rpm/i386/rh9/readline-4.3-5.i386.rpm) = c7b7159668d3272083585737a93628eb XSIZE (rpm/i386/rh9/readline-4.3-5.i386.rpm) = 178841 XMD5 (rpm/i386/rh9/setserial-2.17-12.i386.rpm) = 512d62454070b7f34096ef0d0f04be22 XSIZE (rpm/i386/rh9/setserial-2.17-12.i386.rpm) = 20893 XMD5 (rpm/i386/rh9/libstdc++-3.2.2-5.i386.rpm) = 09ffb26f39e27232d3c385f5fbc1ef1d XSIZE (rpm/i386/rh9/libstdc++-3.2.2-5.i386.rpm) = 248680 XMD5 (rpm/i386/rh9/slang-1.4.5-16.i386.rpm) = 0d14e5eb9d08928cac8af3227d601d78 XSIZE (rpm/i386/rh9/slang-1.4.5-16.i386.rpm) = 164841 XMD5 (rpm/i386/rh9/glibc-utils-2.3.2-11.9.i386.rpm) = 4b0ac6d087c47ccf6a4ccde80ffff337 XSIZE (rpm/i386/rh9/glibc-utils-2.3.2-11.9.i386.rpm) = 53354 XMD5 (rpm/i386/rh9/rpm-4.2-0.69.i386.rpm) = 521141f6fe9a3443d7f89627a6f8c71e XSIZE (rpm/i386/rh9/rpm-4.2-0.69.i386.rpm) = 2105385 XMD5 (rpm/i386/rh9/libgcc-3.2.2-5.i386.rpm) = 91cae96d5ac2f19b20cb0c07906aed06 XSIZE (rpm/i386/rh9/libgcc-3.2.2-5.i386.rpm) = 39962 XMD5 (rpm/i386/rh9/freetype-2.1.3-6.i386.rpm) = 64597ef3568d30982be5c0779f062ff2 XSIZE (rpm/i386/rh9/freetype-2.1.3-6.i386.rpm) = 656843 END-of-./distinfo exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:22:42 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43A0F16A4CE; Sat, 18 Dec 2004 23:22:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F0CD43D53; Sat, 18 Dec 2004 23:22:42 +0000 (GMT) (envelope-from trevor@FreeBSD.org) Received: from freefall.freebsd.org (trevor@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBINMfFu018401; Sat, 18 Dec 2004 23:22:41 GMT (envelope-from trevor@freefall.freebsd.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBINMflt018397; Sat, 18 Dec 2004 23:22:41 GMT (envelope-from trevor) Date: Sat, 18 Dec 2004 23:22:41 GMT From: Trevor Johnson Message-Id: <200412182322.iBINMflt018397@freefall.freebsd.org> To: trevor@FreeBSD.ORG, trevor@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/75241: new port linux_base-rh-9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:22:42 -0000 Synopsis: new port linux_base-rh-9 State-Changed-From-To: open->repocopy State-Changed-By: trevor State-Changed-When: Sat Dec 18 23:21:59 GMT 2004 State-Changed-Why: repo-copy requested Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: trevor Responsible-Changed-When: Sat Dec 18 23:21:59 GMT 2004 Responsible-Changed-Why: repo-copy requested http://www.freebsd.org/cgi/query-pr.cgi?pr=75241 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:40:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F18116A4DC for ; Sat, 18 Dec 2004 23:40:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE0C943D6B for ; Sat, 18 Dec 2004 23:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBINeSpT026465 for ; Sat, 18 Dec 2004 23:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBINeSiY026464; Sat, 18 Dec 2004 23:40:28 GMT (envelope-from gnats) Resent-Date: Sat, 18 Dec 2004 23:40:28 GMT Resent-Message-Id: <200412182340.iBINeSiY026464@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, Jim Pirzyk Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CAB616A4CE for ; Sat, 18 Dec 2004 23:34:19 +0000 (GMT) Received: from node-2-25.flex.volo.net (node-2-25.flex.volo.net [64.198.215.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1693B43D39 for ; Sat, 18 Dec 2004 23:34:19 +0000 (GMT) (envelope-from pirzyk@node-2-25.flex.volo.net) Received: from amigo.home.pirzyk.org (localhost [127.0.0.1]) iBINYIAj041674 for ; Sat, 18 Dec 2004 17:34:18 -0600 (CST) (envelope-from pirzyk@amigo.home.pirzyk.org) Received: (from pirzyk@localhost) by amigo.home.pirzyk.org (8.13.1/8.13.1/Submit) id iBINYIsi041673; Sat, 18 Dec 2004 17:34:18 -0600 (CST) (envelope-from pirzyk) Message-Id: <200412182334.iBINYIsi041673@amigo.home.pirzyk.org> Date: Sat, 18 Dec 2004 17:34:18 -0600 (CST) From: Jim Pirzyk To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/75242: Update port: devel/p5-Filesys-Statvfs_Df fixing pkg-plist (part 2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jim Pirzyk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:40:31 -0000 >Number: 75242 >Category: ports >Synopsis: Update port: devel/p5-Filesys-Statvfs_Df fixing pkg-plist (part 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: Sat Dec 18 23:40:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jim Pirzyk >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD amigo.home.pirzyk.org 5.3-STABLE FreeBSD 5.3-STABLE #11: Wed Dec 1 23:20:26 CST 2004 root@amigo.home.pirzyk.org:/usr/obj/usr/src/sys/AMIGO_KERNEL i386 >Description: more fixes to the port from Kris. >How-To-Repeat: >Fix: --- pkg-plist.orig Sat Dec 18 17:30:36 2004 +++ pkg-plist Sat Dec 18 17:31:25 2004 @@ -1,6 +1,7 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Filesys %%SITE_PERL%%/%%PERL_ARCH%%/Filesys/Df.pm %%SITE_PERL%%/%%PERL_ARCH%%/Filesys/Statvfs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/mach/Filesys %%SITE_PERL%%/%%PERL_ARCH%%/auto/Filesys %%SITE_PERL%%/%%PERL_ARCH%%/auto/Filesys/Statvfs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Filesys/Statvfs/.packlist @@ -8,5 +9,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Filesys/Statvfs/Statvfs.bs @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Filesys/Statvfs 2>/dev/null || true @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Filesys 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/mach/Filesys 2>/dev/null || true @unexec rmdir %D/%%SITE_PERL%%/Filesys/Statvfs 2>/dev/null || true @unexec rmdir %D/%%SITE_PERL%%/Filesys 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:43:37 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E73A16A4CE; Sat, 18 Dec 2004 23:43:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D161843D2D; Sat, 18 Dec 2004 23:43:36 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBINhahP026657; Sat, 18 Dec 2004 23:43:36 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBINhaGj026653; Sat, 18 Dec 2004 23:43:36 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 23:43:36 GMT From: Pav Lucistnik Message-Id: <200412182343.iBINhaGj026653@freefall.freebsd.org> To: alecn2002@yandex.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75200: [MAINTAINER-UPDATE] devel/ruby18-freeride: update to 0.9.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:43:37 -0000 Synopsis: [MAINTAINER-UPDATE] devel/ruby18-freeride: update to 0.9.2 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 23:43:29 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75200 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:52:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92D9116A4CE; Sat, 18 Dec 2004 23:52:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63E7543D1D; Sat, 18 Dec 2004 23:52:25 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBINqPMN026915; Sat, 18 Dec 2004 23:52:25 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBINqOkl026911; Sat, 18 Dec 2004 23:52:24 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 23:52:24 GMT From: Pav Lucistnik Message-Id: <200412182352.iBINqOkl026911@freefall.freebsd.org> To: psh@iki.fi, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75217: [PATCH] ftp/nftpd unfetchable on modern systems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:52:25 -0000 Synopsis: [PATCH] ftp/nftpd unfetchable on modern systems State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 23:52:18 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75217 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 18 23:57:03 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A76C16A4CE; Sat, 18 Dec 2004 23:57:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DCC343D48; Sat, 18 Dec 2004 23:57:03 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBINv3Y5027033; Sat, 18 Dec 2004 23:57:03 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBINv2hC027029; Sat, 18 Dec 2004 23:57:02 GMT (envelope-from pav) Date: Sat, 18 Dec 2004 23:57:02 GMT From: Pav Lucistnik Message-Id: <200412182357.iBINv2hC027029@freefall.freebsd.org> To: marcus@corp.grupos.com.br, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75220: Update port: databases/py-MySQLdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 23:57:03 -0000 Synopsis: Update port: databases/py-MySQLdb update State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 18 23:56:56 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75220 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 19 00:01:04 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 107A516A7B8; Sun, 19 Dec 2004 00:01:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBB6543D4C; Sun, 19 Dec 2004 00:01:03 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBJ013Vl027299; Sun, 19 Dec 2004 00:01:03 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBJ013xL027295; Sun, 19 Dec 2004 00:01:03 GMT (envelope-from pav) Date: Sun, 19 Dec 2004 00:01:03 GMT From: Pav Lucistnik Message-Id: <200412190001.iBJ013xL027295@freefall.freebsd.org> To: marcus@corp.grupos.com.br, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/75221: Update port: databases/py-MySQLdb-devel changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Dec 2004 00:01:04 -0000 Synopsis: Update port: databases/py-MySQLdb-devel changes State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sun Dec 19 00:00:39 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=75221