From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 00: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 D806D16A4CE for ; Sun, 18 Jul 2004 00:10:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC6CA43D39 for ; Sun, 18 Jul 2004 00:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I0AJaa018887 for ; Sun, 18 Jul 2004 00:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I0AJRO018884; Sun, 18 Jul 2004 00:10:19 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 00:10:19 GMT Resent-Message-Id: <200407180010.i6I0AJRO018884@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Florent Thoumie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC1BA16A4CE for ; Sun, 18 Jul 2004 00:04:24 +0000 (GMT) Received: from gw.xbsd.org (xbsd.org [81.56.254.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FAD843D58 for ; Sun, 18 Jul 2004 00:04:21 +0000 (GMT) (envelope-from flz@xbsd.org) Received: by gw.xbsd.org (Postfix, from userid 201) id 45B411027; Sun, 18 Jul 2004 02:04:21 +0200 (CEST) Message-Id: <20040718000421.45B411027@gw.xbsd.org> Date: Sun, 18 Jul 2004 02:04:21 +0200 (CEST) From: Florent Thoumie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69217: devel/portmk - add a convenient mechanism to handle startup scripts that use rc.subr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Florent Thoumie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 00:10:20 -0000 >Number: 69217 >Category: ports >Synopsis: devel/portmk - add a convenient mechanism to handle startup scripts that use rc.subr >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 Jul 18 00:10:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Florent Thoumie >Release: FreeBSD 4.9-RC i386 >Organization: Xbsd.org >Environment: System: FreeBSD gw 4.9-RC FreeBSD 4.9-RC #4: Sun Oct 5 14:25:09 CEST 2003 rf@gw:/usr/src/sys/compile/GW i386 >Description: This patch provides a convenient way to install startup scripts that use rc.subr. This is based on ports/67151. Just have to put myport.sh.in in files/, and add USE_RC_SUBR=myport.sh. >How-To-Repeat: Apply following patch. >Fix: --- portmk-rc-script.diff begins here. --- --- bsd.port.mk.old Tue Jul 6 14:41:03 2004 +++ bsd.port.mk Sun Jul 18 01:31:07 2004 @@ -344,8 +344,12 @@ # WITH_MYSQL_VER - User defined variable to set MySQL version. # # USE_RC_SUBR - Says the ports startup/shutdown script uses the common -# routines found in etc/rc.subr and may need to -# depend on the sysutils/rc_subr port. +# routines found in etc/rc.subr and may need to +# depend on the sysutils/rc_subr port. +# If this is set to a list of files, these files will be +# automatically added to ${SUB_FILES} and some "variable=value" +# pairs will be added to ${SUB_LIST}. These files will be +# installed in ${PREFIX}/etc/rc.d and added to the packing list. # # RC_SUBR - Set to path of rc.subr, defaults to ${LOCALBASE}/etc/rc.subr. # @@ -717,6 +721,18 @@ # (default: ${WRKDIR}/.PLIST.mktmp). # PLIST_SUB - List of "variable=value" pair for substitution in ${PLIST} # (default: see below). +# +# SUB_FILES - Files that should be passed through sed and redirected to ${WRKDIR}. +# - For each file specified in SUB_FILES, there must be a corresponding +# file in ${FILESDIR} whose suffix is ".in". For instance, +# if the Makefile specifies "SUB_FILES= pkg-message" then there must be +# a file called pkg-message.in in ${FILESDIR}. +# - The substitution process is the same as PLIST_FILES, as described +# below except that any line beginning with @comment is deleted. +# SUB_LIST - List of "variable=value" pair for substitution in ${SUB_FILES} +# (some pair are added by default: eg. PREFIX=${PREFIX}). +# +# # INSTALLS_SHLIB - If set, bsd.port.mk will automatically run ldconfig commands # from post-install and also add appropriate @exec/@unexec # directives to directories listed in LDCONFIG_DIRS. --- bsd.port.post.mk.old Wed Jul 7 16:51:17 2004 +++ bsd.port.post.mk Sun Jul 18 01:48:57 2004 @@ -25,6 +25,8 @@ INSTALL_WRKSRC?=${WRKSRC} PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} +SUB_LIST+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} \ + DATADIR=${DATADIR} DOCSDIR=${DOCSDIR} EXAMPLESDIR=${EXAMPLESDIR} .if defined(WITHOUT_CPU_CFLAGS) .if defined(_CPUCFLAGS) @@ -178,6 +180,10 @@ .else RC_SUBR= /etc/rc.subr .endif +.if ${USE_RC_SUBR} != "yes" +SUB_LIST+= RC_SUBR=${RC_SUBR} +SUB_FILES+= ${USE_RC_SUBR} +.endif .endif .if defined(USE_ICONV) @@ -1961,11 +1967,12 @@ _INSTALL_DEP= build _INSTALL_SEQ= install-message check-conflicts \ run-depends lib-depends pre-install pre-install-script \ - generate-plist check-already-installed + apply-slist generate-plist check-already-installed _INSTALL_SUSEQ= check-umask install-mtree pre-su-install \ pre-su-install-script do-install post-install \ post-install-script add-plist-info add-plist-docs \ - compress-man run-ldconfig fake-pkg security-check + install-rc-script compress-man run-ldconfig fake-pkg \ + security-check _PACKAGE_DEP= install _PACKAGE_SEQ= package-message pre-package pre-package-script \ do-package post-package-script @@ -2863,6 +2870,29 @@ .endif .endif +_SUB_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} +.if !target(apply-slist) +apply-slist: +# Apply substitutions on files specified in SUB_FILES. +.if defined(SUB_FILES) + @for file in ${SUB_FILES}; do \ + if [ ! -r ${FILESDIR}/$${file}.in ]; then \ + ${ECHO_CMD} ">> Missing file : ${FILESDIR}/$${file}.in for ${PKGNAME}."; \ + exit 1; \ + else \ + ${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${FILESDIR}/$${file}.in > ${WRKDIR}/$${file}; \ + fi; \ + done +.for i in pkg-message pkg-install pkg-deinstall pkg-req +.if ${SUB_FILES:M${i}*}!="" +${i:S/-//:U}= ${WRKDIR}/${SUB_FILES:M${i}*} +.endif +.endfor +.else + @${DO_NADA} +.endif +.endif + # Generate packing list. Also tests to make sure all required package # files exist. @@ -2973,6 +3003,24 @@ .else @${DO_NADA} .endif +.endif + +.if !target(install-rc-script) +install-rc-script: +# Install startup script(s) specified in USE_RC_SUBR. +.if defined(USE_RC_SUBR) && ${USE_RC_SUBR} != "yes" + @${ECHO_CMD} "===> Installing startup script(s) in ${PREFIX}/etc/rc.d" + @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \ + [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \ + ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ + fi + @for i in ${USE_RC_SUBR}; do \ + ${INSTALL_SCRIPT} ${WRKDIR}/$${i} ${PREFIX}/etc/rc.d; \ + ${ECHO_CMD} etc/rc.d/$${i} >> ${TMPPLIST}; \ + done +.endif +.else + @${DO_NADA} .endif # Compress (or uncompress) and symlink manpages. --- portmk-rc-script.diff ends here. --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 00: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 B384616A4CF for ; Sun, 18 Jul 2004 00:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8C9C43D39 for ; Sun, 18 Jul 2004 00:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I0AMmj018895 for ; Sun, 18 Jul 2004 00:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I0AMUJ018894; Sun, 18 Jul 2004 00:10:22 GMT (envelope-from gnats) Date: Sun, 18 Jul 2004 00:10:22 GMT Message-Id: <200407180010.i6I0AMUJ018894@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Aaron Dalton Subject: Re: ports/69213: New Port: security/doorman - A Portknocking implementation< X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Dalton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 00:10:22 -0000 The following reply was made to PR ports/69213; it has been noted by GNATS. From: Aaron Dalton To: freebsd-gnats-submit@FreeBSD.org, aaron@daltons.ca Cc: Subject: Re: ports/69213: New Port: security/doorman - A Portknocking implementation< Date: Sat, 17 Jul 2004 18:09:53 -0600 --Boundary-00=_R/b+AkoaMWezSmW Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline I apologize. lsof should be both a BUILD_DEPENDS and a RUN_DEPENDS. Attached is the updated shar output. -- Aaron Dalton http://aaron.daltons.ca --Boundary-00=_R/b+AkoaMWezSmW Content-Type: text/plain; charset="us-ascii"; name="submission.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="submission.txt" # 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: # # doorman # doorman/Makefile # doorman/distinfo # doorman/pkg-descr # doorman/pkg-message # doorman/pkg-plist # echo c - doorman mkdir -p doorman > /dev/null 2>&1 echo x - doorman/Makefile sed 's/^X//' >doorman/Makefile << 'END-of-doorman/Makefile' X# New ports collection makefile for: doorman X# Date created: 16 July 2004 X# Whom: Aaron Dalton X# X# $FreeBSD$ X# X XPORTNAME= doorman XPORTVERSION= 0.6.2 XCATEGORIES= security X#[do not forget the trailing slash ("/")! X# if you are not using MASTER_SITE_* macros] XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= doorman XEXTRACT_SUFX= .tgz X XMAINTAINER= aaron@daltons.ca XCOMMENT= A Port Knocking implementation, both daemon and client X XBUILD_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof XRUN_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof X XMAN1= knock.1 XMAN5= knockcf.5 doormand.cf.5 guestlist.5 XMAN8= doormand.8 X#MANCOMPRESSED= yes X XGNU_CONFIGURE= yes X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-doorman/Makefile echo x - doorman/distinfo sed 's/^X//' >doorman/distinfo << 'END-of-doorman/distinfo' XMD5 (doorman-0.6.2.tgz) = de4a50d85afe9953f64a3dbd2bd98877 XSIZE (doorman-0.6.2.tgz) = 135669 END-of-doorman/distinfo echo x - doorman/pkg-descr sed 's/^X//' >doorman/pkg-descr << 'END-of-doorman/pkg-descr' XThis project allows a server to run silently, invisibly, with all TCP ports Xclosed... except to those who know... the secret knock! X XWWW: http://doorman.sourceforge.net/ X X- Aaron Dalton Xaaron@daltons.ca END-of-doorman/pkg-descr echo x - doorman/pkg-message sed 's/^X//' >doorman/pkg-message << 'END-of-doorman/pkg-message' X X****************************************************** X XTo configure Doorman, please edit the files guestlist and doormand.cf found in /usr/local/etc/doormand. Documentation can be found using: X X $ man guestlist X $ man doormand.cf X Xor by visiting the Doorman website at http://doorman.sourceforge.net. X X****************************************************** END-of-doorman/pkg-message echo x - doorman/pkg-plist sed 's/^X//' >doorman/pkg-plist << 'END-of-doorman/pkg-plist' Xbin/knock Xetc/doormand/guestlist.EXAMPLE Xetc/doormand/ipchains_add Xetc/doormand/ipchains_delete Xetc/doormand/iptables_add Xetc/doormand/iptables_delete Xetc/doormand/doormand.cf.EXAMPLE Xsbin/doormand X@dirrm etc/doormand END-of-doorman/pkg-plist exit --Boundary-00=_R/b+AkoaMWezSmW-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 00: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 AC18D16A4CE for ; Sun, 18 Jul 2004 00:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A11F243D4C for ; Sun, 18 Jul 2004 00:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I0eO3X020624 for ; Sun, 18 Jul 2004 00:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I0eOd7020623; Sun, 18 Jul 2004 00:40:24 GMT (envelope-from gnats) Date: Sun, 18 Jul 2004 00:40:24 GMT Message-Id: <200407180040.i6I0eOd7020623@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Christian Brueffer Subject: ports/69057 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christian Brueffer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 00:40:24 -0000 The following reply was made to PR ports/69057; it has been noted by GNATS. From: Christian Brueffer To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: ports/69057 Date: Sun, 18 Jul 2004 02:24:47 +0200 --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable The last version got mangled, so here a link to the shar file: http://people.freebsd.org/~brueffer/jomp.shar MD5 (jomp.shar) =3D 1e0ee44792dd24e68bf10e92c5b41540 - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --GvXjxJ+pjyke8COw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA+cNPbHYXjKDtmC0RAuURAKCnSXE9piF0Y/aYyhkbqfcnsD1dvgCeMwRG vqwtuVzUHka84ahXbYesIfg= =abQ+ -----END PGP SIGNATURE----- --GvXjxJ+pjyke8COw-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 01: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 4B6A016A4D0 for ; Sun, 18 Jul 2004 01:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D4FD43D53 for ; Sun, 18 Jul 2004 01:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I1UNiT025776 for ; Sun, 18 Jul 2004 01:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I1UNoH025771; Sun, 18 Jul 2004 01:30:23 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 01:30:23 GMT Resent-Message-Id: <200407180130.i6I1UNoH025771@freefall.freebsd.org> 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 Querubin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A669216A4CE for ; Sun, 18 Jul 2004 01:22:54 +0000 (GMT) Received: from localhost.lava.net (ampr.lava.net [64.65.96.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C2AB43D46 for ; Sun, 18 Jul 2004 01:22:52 +0000 (GMT) (envelope-from tony@localhost.lava.net) Received: from localhost.lava.net (localhost [127.0.0.1]) by localhost.lava.net (8.12.11/8.12.11) with ESMTP id i6I1Mobt061506 for ; Sat, 17 Jul 2004 15:22:50 -1000 (HST) (envelope-from tony@localhost.lava.net) Received: (from tony@localhost) by localhost.lava.net (8.12.11/8.12.11/Submit) id i6I1Mnkv061505; Sat, 17 Jul 2004 15:22:49 -1000 (HST) (envelope-from tony) Message-Id: <200407180122.i6I1Mnkv061505@localhost.lava.net> Date: Sat, 17 Jul 2004 15:22:49 -1000 (HST) From: Antonio Querubin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69219: update rwhoisd to version 1.5.9; install IPv6 rwhois client X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Antonio Querubin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 01:30:23 -0000 >Number: 69219 >Category: ports >Synopsis: update rwhoisd to version 1.5.9; install IPv6 rwhois client >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 01:30:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Antonio Querubin >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD localhost 5.2-CURRENT FreeBSD 5.2-CURRENT #4: Thu Jun 17 09:19:56 HST 2004 root@localhost:/usr/obj/usr/src/sys/GENERIC i386 >Description: This updates the rwhoisd port to build/install version 1.5.9. It also provides an updated IPv6-capable rwhois client. >How-To-Repeat: >Fix: Below is a diff to the current port. --- rwhois.pr begins here --- diff -ruN rwhois.bak/Makefile rwhois/Makefile --- rwhois.bak/Makefile Thu Nov 6 23:28:12 2003 +++ rwhois/Makefile Sat Jul 17 14:48:12 2004 @@ -6,22 +6,18 @@ # PORTNAME= rwhois -PORTVERSION= 1.5.7.3 -PORTREVISION= 1 +PORTVERSION= 1.5.9 CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.ayamura.org/pub/rwhois/ \ +MASTER_SITES= http://www.rwhois.net/ftp/ \ + ftp://ftp.ayamura.org/pub/rwhois/ \ ftp://ftp.jp.pgpi.org/pub/rwhois/ DISTNAME= ${PORTNAME}d-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= The Internic referral whois server -.if !exists(/usr/include/tcpd.h) -LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper -.endif - HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX}/lib/rwhois +CONFIGURE_ARGS= --prefix=${PREFIX} BINOWN= bin BINGRP= bin @@ -32,6 +28,7 @@ operations_guide.txt rfc2167.txt security.html security.txt post-install: + ${INSTALL_SCRIPT} ${WRKSRC}/tools/scripts/rwhois.pl ${PREFIX}/bin/rwhois ${INSTALL_MAN} ${WRKSRC}/doc/rwhois_indexer.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/doc/rwhoisd.8 ${PREFIX}/man/man8 .if !defined(NOPORTDOCS) @@ -41,6 +38,7 @@ .endfor .endif @${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/rwhoisd.sh startup file..." - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rwhoisd.sh ${PREFIX}/etc/rc.d/rwhoisd.sh + ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rwhoisd.sh \ + ${PREFIX}/etc/rc.d/rwhoisd.sh .include diff -ruN rwhois.bak/distinfo rwhois/distinfo --- rwhois.bak/distinfo Sat Jan 31 13:39:37 2004 +++ rwhois/distinfo Sat Jul 17 14:04:09 2004 @@ -1,2 +1,2 @@ -MD5 (rwhoisd-1.5.7.3.tar.gz) = b3a1d951454afec598a7531919ce22a0 -SIZE (rwhoisd-1.5.7.3.tar.gz) = 452141 +MD5 (rwhoisd-1.5.9.tar.gz) = 27f7a174707ac10fe8648dc6322a279f +SIZE (rwhoisd-1.5.9.tar.gz) = 521402 diff -ruN rwhois.bak/files/patch-aa rwhois/files/patch-aa --- rwhois.bak/files/patch-aa Tue Nov 28 05:31:15 2000 +++ rwhois/files/patch-aa Wed Dec 31 14:00:00 1969 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Tue Jun 3 23:20:53 1997 -+++ Makefile.in Sat Nov 25 15:44:00 2000 -@@ -25,7 +25,7 @@ - BIN_SUBDIRS = server tools - ALL_SUBDIRS = $(LIB_SUBDIRS) $(BIN_SUBDIRS) $(SAMPLE_DATA_DIR) - --all: libraries libwrap binaries -+all: libraries binaries - - libraries: - @for dir in $(LIB_SUBDIRS); do \ diff -ruN rwhois.bak/files/patch-ac rwhois/files/patch-ac --- rwhois.bak/files/patch-ac Tue Nov 28 05:31:16 2000 +++ rwhois/files/patch-ac Wed Dec 31 14:00:00 1969 @@ -1,33 +0,0 @@ ---- server/Makefile.in.orig Fri May 12 01:10:25 2000 -+++ server/Makefile.in Sat Nov 25 15:27:16 2000 -@@ -9,7 +9,7 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - bindir = $(exec_prefix)/bin --etcdir = $(exec_prefix)/etc -+sbindir = $(exec_prefix)/sbin - - srcdir = @srcdir@ - VPATH = @srcdir@ -@@ -18,8 +18,8 @@ - COMMON_INC = -I$(srcdir)/../common - COMMON_LIBS = -L../common -lrwcommon - --WRAP_INC = -I$(srcdir)../tools/tcpd_wrapper --WRAP_LIBS = -L../tools/tcpd_wrapper -lwrap -+WRAP_INC = -I${LOCALBASE}/include -+WRAP_LIBS = -L${LOCALBASE}/lib -lwrap - - MKDB_INC = -I$(srcdir)/../mkdb - MKDB_LIBS = -L../mkdb -lmkdb -@@ -97,8 +97,8 @@ - - install: - if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi -- if [ ! -d $(etcdir) ]; then mkdir $(etcdir); fi -- $(INSTALL) rwhoisd $(etcdir) -+ if [ ! -d $(sbindir) ]; then mkdir $(sbindir); fi -+ $(INSTALL) rwhoisd $(sbindir) - - uninstall: - $(RM) $(etcdir)/rwhoisd diff -ruN rwhois.bak/files/patch-ae rwhois/files/patch-ae --- rwhois.bak/files/patch-ae Tue Nov 28 05:31:16 2000 +++ rwhois/files/patch-ae Wed Dec 31 14:00:00 1969 @@ -1,11 +0,0 @@ ---- sample.data/rwhoisd.conf.orig Wed Nov 26 08:23:46 1997 -+++ sample.data/rwhoisd.conf Sat Nov 25 15:30:05 2000 -@@ -109,7 +109,7 @@ - # users group, as found in /etc/passwd. - # note that this really, really should be an unprivileged user - # this options doesn't have a default. --userid: rwhoisd -+userid: nobody - - # pid-file: where to put the file containing the pid of the server. - # normal default is "rwhoisd.pid" diff -ruN rwhois.bak/files/patch-common-client_msgs.c rwhois/files/patch-common-client_msgs.c --- rwhois.bak/files/patch-common-client_msgs.c Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-common-client_msgs.c Wed Dec 31 14:00:00 1969 @@ -1,35 +0,0 @@ ---- common/client_msgs.c.orig Tue Oct 28 02:24:02 2003 -+++ common/client_msgs.c Tue Oct 28 02:25:00 2003 -@@ -145,22 +145,16 @@ - printf ("%%ok\n"); - } - --void print_response(va_alist) -- va_dcl -+void print_response(int resp_no, char *format, ...) - { - va_list list; - int i; -- int resp_no; -- char *format; - FILE *fp; - -- va_start(list); -+ va_start(list, format); - - fp = get_out_fp(); - -- resp_no = va_arg(list, int); -- format = va_arg(list, char *); -- - for (i = 0; i < N_RESP; i++) - { - if (resp[i].resp_no == resp_no) -@@ -179,6 +173,7 @@ - } - - vfprintf(fp, format, list); -+ va_end(list); - - fprintf(fp, "\n"); - } diff -ruN rwhois.bak/files/patch-common-client_msgs.h rwhois/files/patch-common-client_msgs.h --- rwhois.bak/files/patch-common-client_msgs.h Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-common-client_msgs.h Wed Dec 31 14:00:00 1969 @@ -1,11 +0,0 @@ ---- common/client_msgs.h.orig Tue Oct 28 02:25:14 2003 -+++ common/client_msgs.h Tue Oct 28 02:25:30 2003 -@@ -85,7 +85,7 @@ - - void print_error PROTO((int err_no, char *str)); - --void print_response PROTO(()); -+void print_response PROTO((int resp_no, char *format, ...)); - - void print_ok PROTO((void)); - diff -ruN rwhois.bak/files/patch-common-common.h rwhois/files/patch-common-common.h --- rwhois.bak/files/patch-common-common.h Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-common-common.h Wed Dec 31 14:00:00 1969 @@ -1,11 +0,0 @@ ---- common/common.h.orig Tue Oct 28 02:23:23 2003 -+++ common/common.h Tue Oct 28 02:23:33 2003 -@@ -56,7 +56,7 @@ - # undef _VA_ALIGN - # undef __va_stack_arg - # endif --#include -+#include - #endif /* HAVE_VPRINTF */ - - /* this should probably be #ifdef USG */ diff -ruN rwhois.bak/files/patch-common-log.c rwhois/files/patch-common-log.c --- rwhois.bak/files/patch-common-log.c Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-common-log.c Wed Dec 31 14:00:00 1969 @@ -1,38 +0,0 @@ ---- common/log.c.orig Tue Oct 28 02:26:55 2003 -+++ common/log.c Tue Oct 28 02:28:25 2003 -@@ -139,15 +139,12 @@ - /* log_error: prints a error message to the console. This is intended - for server side errors only. */ - void --log_error(va_alist) -- va_dcl -+log_error(char *format, ...) - { - va_list list; -- char *format; - char err_buf[MAX_LINE]; - -- va_start(list); -- format = va_arg(list, char *); -+ va_start(list, format); - - #ifdef HAVE_VSNPRINTF - vsnprintf(err_buf, sizeof(err_buf), format, list); -@@ -164,15 +161,12 @@ - /* log_warning: prints a warning message to the console. This is intended - for server side warnings only. */ - void --log_warning(va_alist) -- va_dcl -+log_warning(char *format, ...) - { - va_list list; -- char *format; - char err_buf[MAX_LINE]; - -- va_start(list); -- format = va_arg(list, char *); -+ va_start(list, format); - - #ifdef HAVE_VSNPRINTF - vsnprintf(err_buf, sizeof(err_buf), format, list); diff -ruN rwhois.bak/files/patch-common-log.h rwhois/files/patch-common-log.h --- rwhois.bak/files/patch-common-log.h Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-common-log.h Wed Dec 31 14:00:00 1969 @@ -1,23 +0,0 @@ ---- common/log.h.orig Tue Oct 28 02:25:55 2003 -+++ common/log.h Tue Oct 28 02:29:55 2003 -@@ -95,8 +95,8 @@ - /* old prototypes for backward compatibility */ - - #define l_strerror strerror --void log_error PROTO(()); --void log_warning PROTO(()); -+void log_error PROTO((char *format, ...)); -+void log_warning PROTO((char *format, ...)); - char *get_client_hostname PROTO((int sock)); - char *timestamp PROTO(()); - -@@ -106,7 +106,8 @@ - (L_LOG_EMERG, L_LOG_ALERT, etc. [see internal_log_level in - types.h) and SECTION is one of (NETWORK, QUERY, CONFIG, etc [see - log_section in types.h) */ --void log PROTO(()); -+#define log Log -+void log PROTO((internal_log_levels level, int section, char *format, ...)); - - void setup_logging PROTO((void)); - diff -ruN rwhois.bak/files/patch-common-rw_log.c rwhois/files/patch-common-rw_log.c --- rwhois.bak/files/patch-common-rw_log.c Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-common-rw_log.c Wed Dec 31 14:00:00 1969 @@ -1,38 +0,0 @@ ---- common/rw_log.c.orig Tue Oct 28 02:28:43 2003 -+++ common/rw_log.c Tue Oct 28 02:30:14 2003 -@@ -17,13 +17,10 @@ - #include "types.h" - - void --log(va_alist) -- va_dcl -+log(internal_log_levels level, int section, char *format, ...) - { - va_list ap; -- internal_log_levels level; - FILE *fp; -- char *format; - char *filename; - char *hostname; - char message[MAX_LINE]; -@@ -31,13 +28,9 @@ - char *section_name; - int fd; - int use_syslog; -- int section; - int syslog_level; - -- va_start(ap); -- level = (internal_log_levels) va_arg(ap, int); -- section = (int) va_arg(ap, int); -- format = va_arg(ap, char*); -+ va_start(ap, format); - - /* verbosity sets the level at which we ignore log messages */ - if (level > get_verbosity()) -@@ -142,4 +135,5 @@ - - fclose(fp); - } -+ va_end(ap); - } diff -ruN rwhois.bak/files/patch-rwhois.pl rwhois/files/patch-rwhois.pl --- rwhois.bak/files/patch-rwhois.pl Wed Dec 31 14:00:00 1969 +++ rwhois/files/patch-rwhois.pl Sat Jul 17 14:54:39 2004 @@ -0,0 +1,231 @@ +--- tools/scripts/rwhois.pl.orig Wed Oct 21 08:02:33 1998 ++++ tools/scripts/rwhois.pl Tue Jan 27 00:57:23 2004 +@@ -2,53 +2,136 @@ + # + # rwhois - do command line rwhois queries + # +-# usage: +-# rwhois [-h server] query[@server] ++# rwhois 1.8, 27 Jan 2004 + # +-# steve rader +-# June 28th, 1998 ++# ftp://ftp.lava.net/users/tony/rwhois/rwhois.pl + # +-# $Id: rwhois.pl,v 1.1 1998/10/21 18:02:33 davidb Exp $ ++# Maintained by Antonio Querubin. Send bug reports and fixes to ++# . (Originally written by Steve Rader.) + # + # TCP code snatched from _Programming Perl_ page 352 + # ++# Response formats: ++# label:value ++# %status label:value ++# %xfer class_name:label:value ++# + + use Socket; + +-$default_server = "root.rwhois.net"; ++# Comment the next two lines if Socket6 is not installed. ++$HAVE_SOCKET6 = 1; ++use Socket6; ++ ++#$default_server = "root.rwhois.net"; ++$default_server = "localhost"; + $rwhois_port = 4321; + $label_width = 18; + ++# Where to peek for the guardian password ++$passwd_fn = "/usr/local/etc/passwd.rwhois-guardian"; ++# Max number of ID recursion levels to follow ++$recurse = 10; ++ ++if ( $ARGV[0] eq "-t" ) { ++ $terse = 1; ++ shift @ARGV; ++} + if ( $ARGV[0] eq "-h" ) { + $rwhois_server = $ARGV[1]; +- $query = "$ARGV[2]\n-quit\n"; ++ shift @ARGV; shift @ARGV; ++ $query = "@ARGV"; + } elsif ( $ARGV[0] =~ /(\S+)\@(\S+)/ ) { + $rwhois_server = $2; +- $query = "$1\n-quit\n"; ++ $query = "$1"; + } else { + $rwhois_server = $default_server; +- $query = "$ARGV[0]\n-quit\n"; ++ $query = "@ARGV"; + } + +-# who, what and where... +-$my_addr = gethostbyname('localhost'); +-$proto = getprotobyname('tcp'); +-$port = $rwhois_port; +-#$port = getservbyname('time', 'tcp'); +-$socket = sockaddr_in(0, $my_addr); ++# Initialize the address info list. ++if ( defined $HAVE_SOCKET6 ) { ++ @ai_list = getaddrinfo( $rwhois_server, $rwhois_port, AF_UNSPEC, ++ SOCK_STREAM ); ++ &die ( "unknown host: \"$rwhois_server\"" ) if ( scalar( @ai_list ) < 5 ); ++} ++else { # Create an address info list compatible with getaddrinfo. ++ $proto = getprotobyname( 'tcp' ); ++ $serv_addr = inet_aton( $rwhois_server ) ++ or &die ( "unknown host: \"$rwhois_server\"" ); ++ $saddr = sockaddr_in($rwhois_port, $serv_addr); ++ @ai_list = ( PF_INET, SOCK_STREAM, $proto, $saddr, undef, undef ); ++} + +-# crank up the connection... + $| = 1; +-$serv_addr = inet_aton($rwhois_server) +- or &die ("unknown host: \"$rwhois_server\""); +-$serv_socket = sockaddr_in($port, $serv_addr); +-socket(SOCKET, PF_INET, SOCK_STREAM, $proto) +- or &die ("socket create failed: \"$!\""); +-connect(SOCKET, $serv_socket) +- or &die ("connect to $rwhois_server failed: \"$!\""); ++ ++# get the password ++$password = ""; ++open(PASSWD,$passwd_fn); ++while ( ) { ++ chomp; ++ # skip comments and blank lines ++ if ( $_ !~ /^[^#]/ ) { next } ++ # find the matching server address or hostname for this query ++ if ( $_ =~ /^$rwhois_server/ ) { ++ ($junk, $password) = split /\s+/, $_; ++ last; ++ } ++} ++close(PASSWD); ++ ++# initialize the idlist ++$idlist{$query} = 0; ++ ++while ($recurse > -1) { ++ foreach $key (keys %idlist) { ++ if ($idlist{$key} == 0) { ++ query($key); ++ if ( $referhost[0] ne "" ) { ++ system("$0 -h $referhost[0] $key"); ++ } ++ $idlist{$key} = 1; ++ } ++ } ++ $recurse--; ++} ++ ++if ( $recursion == -1 ) { ++ print "recursion limit exceed: query failed\n"; ++ exit 1; ++} ++ ++exit; ++ ++#------------------------------------------------------------------------------ ++ ++sub query { ++ ++local($query) = @_; ++ ++# crank up the connection... ++@ai = @ai_list; ++$connect_status = 0; ++undef( $! ); ++while ( scalar( @ai ) >= 5 ) { ++ ( $addrfamily, $socktype, $proto, $saddr, undef, @ai ) = @ai; ++ socket( SOCKET, $addrfamily, $socktype, $proto ) || next; ++ if ( connect( SOCKET, $saddr ) ) { ++ $connect_status = 1; ++ last; ++ } ++ close( SOCKET ); ++} ++&die ( "connect to $rwhois_server port $rwhois_port failed: \"$!\"" ) ++ if ! $connect_status; ++ ++# send the password first if we found one ++if ($password ne "") { ++ send(SOCKET, "-security on request password $password\n", 0, $saddr); ++} + + # send the query... +-send(SOCKET, "$query", 0, $serv_socket) ++send(SOCKET, "$query\n", 0, $saddr) + or &die ("send to $rwhois_server failed: \"$!\""); + + # ignore connect banner... +@@ -60,6 +143,11 @@ + $ans = 1; + while ( $resp = ) { + chop $resp; ++ # remove the "%query_type" response from ++ # "-query_type something" questions... ++ if ( $query =~ /^\-(\S+)\s+/ ) { ++ $resp =~ s/\%$1\s*//; ++ } + # ignore cruft... + if (( $resp eq "" ) || ( $resp =~ /\%ok/ )) { next; } + # parse Class-Name and seperate +@@ -69,21 +157,51 @@ + if ( $ans > 1 ) { print "---\n"; } + $ans++; + } ++ # If we received a referral, parse it for the hostname and port ++ $referhost = (); ++ if ( $resp =~ /\%referral/ ) { ++ ($attribtype, $referurl) = split /\s+/, $resp; ++ $referurl =~ s/rwhois\:\/\///; ++ @referhost = split /([:,\/])/, $referurl; ++ if ($referhost[1] eq ":") { ++ $referhost[1] = $referhost[2]; ++ } ++ else { ++ $referhost[1] = $rwhois_port; ++ } ++ } + if (( $resp =~ /\%error/ ) || ( $resp =~ /\%referral/ )) { + print "$resp\n"; + next; + } + # strip off class... + $resp =~ s/^$class://; +- @F = split(/\:/, $resp); ++ @F = split(/\:/, $resp, 2); ++ # Save the IDs to query later ++ if ( $F[0] =~ s/\;I$// ) { ++ $id = $F[1]; ++ $id =~ tr/A-Z/a-z/; ++ if ($idlist{$id} == undef) { ++ # 0 means we haven't queried it yet ++ $idlist{$id} = 0; ++ } ++ } + # un-obfuscate what rfc2167 calls ID type character... + if ( $F[0] =~ s/\;I$// ) { $F[0] .= "-ID"; } + # make the output pretty... +- printf "%-${label_width}.${label_width}s %s\n", "$F[0]:", $F[1]; ++ if ( ! $terse ) { ++# printf "%-${label_width}.${label_width}s %s\n", "$F[0]:", $F[1]; ++ printf "%-${label_width}s %s\n", "$F[0]:", $F[1]; ++ } else { ++ if (( $F[0] =~ /^IP-Network/ ) || ++ ( $F[0] =~ /^Comments/) ) { ++# printf "%-${label_width}.${label_width}s %s\n", "$F[0]:", $F[1]; ++ printf "%-${label_width}s %s\n", "$F[0]:", $F[1]; ++ } ++ } + } +- + close(SOCKET); +-exit; ++} + + #------------------------------------------------------------------------------ + diff -ruN rwhois.bak/files/patch-server-notify.c rwhois/files/patch-server-notify.c --- rwhois.bak/files/patch-server-notify.c Mon Oct 27 10:49:26 2003 +++ rwhois/files/patch-server-notify.c Wed Dec 31 14:00:00 1969 @@ -1,31 +0,0 @@ ---- server/notify.c.orig Tue Oct 28 02:30:38 2003 -+++ server/notify.c Tue Oct 28 02:31:26 2003 -@@ -75,18 +75,13 @@ - - /* log notify information */ - int --log_entry(va_alist) -- va_dcl -+log_entry(char *filename, char *format, ...) - { - va_list ap; - FILE *fp; -- char *format; -- char *filename; - char *hostname; - -- va_start(ap); -- filename = va_arg (ap, char*); -- format = va_arg(ap, char*); -+ va_start(ap, format); - - /* lock the file */ - fp = get_file_lock(filename, "a", 60); -@@ -103,6 +98,7 @@ - fprintf(fp, " [%-15s] PID: %-8d", hostname, (int) getpid()); - vfprintf(fp, format, ap); - fprintf(fp, "\n"); -+ va_end(ap); - - release_file_lock(filename, fp); - diff -ruN rwhois.bak/files/rwhoisd.sh rwhois/files/rwhoisd.sh --- rwhois.bak/files/rwhoisd.sh Tue Aug 13 14:14:07 2002 +++ rwhois/files/rwhoisd.sh Sat Jul 17 13:49:12 2004 @@ -5,15 +5,26 @@ exit 1 fi +CONFDIR=${PREFIX}/etc/rwhoisd +CONF=${CONFDIR}/rwhoisd.conf + case "$1" in start) - # remove or comment the following line and uncomment the one below it once you have - # configured your server's data - echo "rwhoisd not started; sample data still in place. See ${PREFIX}/share/doc/rwhois for details." - #if [ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ]; then (${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhoisd.conf &); echo -n ' rwhoisd'; fi + if [ -x ${PREFIX}/sbin/rwhoisd ]; then + if [ -x $CONF ]; then + ${PREFIX}/sbin/rwhoisd -c ${CONF} + echo -n ' rwhoisd' + else + cat - << EOT >&2 +Missing configuration file $CONF. +See ${PREFIX}/share/doc/rwhois for details. +EOT + exit 1 + fi + fi ;; stop) - # killall rwhoisd && echo -n ' rwhoisd + killall rwhoisd && echo -n ' rwhoisd' ;; *) echo "Usage: `basename $0` {start|stop}" >&2 diff -ruN rwhois.bak/pkg-plist rwhois/pkg-plist --- rwhois.bak/pkg-plist Mon Oct 27 10:49:25 2003 +++ rwhois/pkg-plist Sat Jul 17 14:38:05 2004 @@ -1,39 +1,71 @@ +bin/rwhois +bin/rwhois_deleter +bin/rwhois_indexer +bin/rwhois_repack etc/rc.d/rwhoisd.sh -lib/rwhois/a.com/attribute_defs/asn.tmpl -lib/rwhois/a.com/attribute_defs/contact.tmpl -lib/rwhois/a.com/attribute_defs/domain.tmpl -lib/rwhois/a.com/attribute_defs/guardian.tmpl -lib/rwhois/a.com/attribute_defs/host.tmpl -lib/rwhois/a.com/attribute_defs/org.tmpl -lib/rwhois/a.com/attribute_defs/referral.tmpl -lib/rwhois/a.com/data/asn/asn.txt -lib/rwhois/a.com/data/contact/contact.txt -lib/rwhois/a.com/data/domain/domain.txt -lib/rwhois/a.com/data/guardian/guardian.txt -lib/rwhois/a.com/data/host/host.txt -lib/rwhois/a.com/data/org/org.txt -lib/rwhois/a.com/data/referral/referral.txt -lib/rwhois/a.com/schema -lib/rwhois/a.com/soa -lib/rwhois/bin/rwhois_deleter -lib/rwhois/bin/rwhois_indexer -lib/rwhois/net-10.0.0.0-8/attribute_defs/contact.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/guardian.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/host.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/network.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/referral.tmpl -lib/rwhois/net-10.0.0.0-8/data/network/network.txt -lib/rwhois/net-10.0.0.0-8/data/referral/referral.txt -lib/rwhois/net-10.0.0.0-8/schema -lib/rwhois/net-10.0.0.0-8/soa -lib/rwhois/rwhoisd.allow -lib/rwhois/rwhoisd.auth_area -lib/rwhois/rwhoisd.conf -lib/rwhois/rwhoisd.deny -lib/rwhois/rwhoisd.dir -lib/rwhois/rwhoisd.root -lib/rwhois/rwhoisd.x.dir -lib/rwhois/sbin/rwhoisd +etc/rwhoisd/samples/a.com/attribute_defs/asn.tmpl +etc/rwhoisd/samples/a.com/attribute_defs/contact.tmpl +etc/rwhoisd/samples/a.com/attribute_defs/domain.tmpl +etc/rwhoisd/samples/a.com/attribute_defs/guardian.tmpl +etc/rwhoisd/samples/a.com/attribute_defs/host.tmpl +etc/rwhoisd/samples/a.com/attribute_defs/org.tmpl +etc/rwhoisd/samples/a.com/attribute_defs/referral.tmpl +etc/rwhoisd/samples/a.com/data/asn/asn.txt +etc/rwhoisd/samples/a.com/data/contact/contact.txt +etc/rwhoisd/samples/a.com/data/domain/domain.txt +etc/rwhoisd/samples/a.com/data/guardian/guardian.txt +etc/rwhoisd/samples/a.com/data/host/host.txt +etc/rwhoisd/samples/a.com/data/org/org.txt +etc/rwhoisd/samples/a.com/data/referral/referral.txt +etc/rwhoisd/samples/a.com/schema +etc/rwhoisd/samples/a.com/soa +etc/rwhoisd/samples/net-10.0.0.0-8/attribute_defs/contact.tmpl +etc/rwhoisd/samples/net-10.0.0.0-8/attribute_defs/guardian.tmpl +etc/rwhoisd/samples/net-10.0.0.0-8/attribute_defs/host.tmpl +etc/rwhoisd/samples/net-10.0.0.0-8/attribute_defs/network.tmpl +etc/rwhoisd/samples/net-10.0.0.0-8/attribute_defs/referral.tmpl +etc/rwhoisd/samples/net-10.0.0.0-8/data/network/network.txt +etc/rwhoisd/samples/net-10.0.0.0-8/data/referral/referral.txt +etc/rwhoisd/samples/net-10.0.0.0-8/schema +etc/rwhoisd/samples/net-10.0.0.0-8/soa +etc/rwhoisd/samples/net-fd00:1234::-32/attribute_defs/contact.tmpl +etc/rwhoisd/samples/net-fd00:1234::-32/attribute_defs/guardian.tmpl +etc/rwhoisd/samples/net-fd00:1234::-32/attribute_defs/host.tmpl +etc/rwhoisd/samples/net-fd00:1234::-32/attribute_defs/network.tmpl +etc/rwhoisd/samples/net-fd00:1234::-32/attribute_defs/referral.tmpl +etc/rwhoisd/samples/net-fd00:1234::-32/data/network/network.txt +etc/rwhoisd/samples/net-fd00:1234::-32/data/referral/referral.txt +etc/rwhoisd/samples/net-fd00:1234::-32/schema +etc/rwhoisd/samples/net-fd00:1234::-32/soa +etc/rwhoisd/samples/rwhoisd.allow +etc/rwhoisd/samples/rwhoisd.auth_area +etc/rwhoisd/samples/rwhoisd.conf +etc/rwhoisd/samples/rwhoisd.deny +etc/rwhoisd/samples/rwhoisd.dir +etc/rwhoisd/samples/rwhoisd.root +etc/rwhoisd/samples/rwhoisd.x.dir +sbin/rwhoisd +@dirrm etc/rwhoisd/samples/a.com/attribute_defs +@dirrm etc/rwhoisd/samples/a.com/data/asn +@dirrm etc/rwhoisd/samples/a.com/data/contact +@dirrm etc/rwhoisd/samples/a.com/data/domain +@dirrm etc/rwhoisd/samples/a.com/data/guardian +@dirrm etc/rwhoisd/samples/a.com/data/host +@dirrm etc/rwhoisd/samples/a.com/data/org +@dirrm etc/rwhoisd/samples/a.com/data/referral +@dirrm etc/rwhoisd/samples/a.com/data +@dirrm etc/rwhoisd/samples/a.com +@dirrm etc/rwhoisd/samples/net-10.0.0.0-8/attribute_defs +@dirrm etc/rwhoisd/samples/net-10.0.0.0-8/data/network +@dirrm etc/rwhoisd/samples/net-10.0.0.0-8/data/referral +@dirrm etc/rwhoisd/samples/net-10.0.0.0-8/data +@dirrm etc/rwhoisd/samples/net-10.0.0.0-8 +@dirrm etc/rwhoisd/samples/net-fd00:1234::-32/attribute_defs +@dirrm etc/rwhoisd/samples/net-fd00:1234::-32/data/network +@dirrm etc/rwhoisd/samples/net-fd00:1234::-32/data/referral +@dirrm etc/rwhoisd/samples/net-fd00:1234::-32/data +@dirrm etc/rwhoisd/samples/net-fd00:1234::-32 +@dirrm etc/rwhoisd/samples %%PORTDOCS%%%%DOCSDIR%%/INSTALL.html %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADE @@ -43,21 +75,3 @@ %%PORTDOCS%%%%DOCSDIR%%/security.html %%PORTDOCS%%%%DOCSDIR%%/security.txt %%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm lib/rwhois/sbin -@dirrm lib/rwhois/net-10.0.0.0-8/data/referral -@dirrm lib/rwhois/net-10.0.0.0-8/data/network -@dirrm lib/rwhois/net-10.0.0.0-8/data -@dirrm lib/rwhois/net-10.0.0.0-8/attribute_defs -@dirrm lib/rwhois/net-10.0.0.0-8 -@dirrm lib/rwhois/bin -@dirrm lib/rwhois/a.com/data/referral -@dirrm lib/rwhois/a.com/data/org -@dirrm lib/rwhois/a.com/data/host -@dirrm lib/rwhois/a.com/data/guardian -@dirrm lib/rwhois/a.com/data/domain -@dirrm lib/rwhois/a.com/data/contact -@dirrm lib/rwhois/a.com/data/asn -@dirrm lib/rwhois/a.com/data -@dirrm lib/rwhois/a.com/attribute_defs -@dirrm lib/rwhois/a.com -@dirrm lib/rwhois --- rwhois.pr ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 02:11: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 D9E5516A4CE; Sun, 18 Jul 2004 02:11:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF64043D1F; Sun, 18 Jul 2004 02:11:59 +0000 (GMT) (envelope-from andreas@FreeBSD.org) Received: from freefall.freebsd.org (andreas@localhost [127.0.0.1]) i6I2BxK1031751; Sun, 18 Jul 2004 02:11:59 GMT (envelope-from andreas@freefall.freebsd.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I2BxAl031747; Sun, 18 Jul 2004 02:11:59 GMT (envelope-from andreas) Date: Sun, 18 Jul 2004 02:11:59 GMT From: Andreas Klemm Message-Id: <200407180211.i6I2BxAl031747@freefall.freebsd.org> To: itetcu@people.tecnik93.com, andreas@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/68358: [NEW PORT] mail/dspam-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 02:12:00 -0000 Synopsis: [NEW PORT] mail/dspam-devel State-Changed-From-To: analyzed->repocopy State-Changed-By: andreas State-Changed-When: Sun Jul 18 02:08:04 GMT 2004 State-Changed-Why: Repo copy needed from mail/dspam to mail/dspam-devel mail/dspam holds the "stable" version of dspam. 3.0.x mail/dspam-devel will have the developement version 3.1.x Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: andreas Responsible-Changed-When: Sun Jul 18 02:08:04 GMT 2004 Responsible-Changed-Why: Repo copy needed from mail/dspam to mail/dspam-devel mail/dspam holds the "stable" version of dspam. 3.0.x mail/dspam-devel will have the developement version 3.1.x http://www.freebsd.org/cgi/query-pr.cgi?pr=68358 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 03: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 09FE916A4CE for ; Sun, 18 Jul 2004 03:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB6C743D55 for ; Sun, 18 Jul 2004 03:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I3UMZv038515 for ; Sun, 18 Jul 2004 03:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I3UMOE038513; Sun, 18 Jul 2004 03:30:22 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 03:30:22 GMT Resent-Message-Id: <200407180330.i6I3UMOE038513@freefall.freebsd.org> 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 B2B3316A4CE for ; Sun, 18 Jul 2004 03:29:35 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D7943D60 for ; Sun, 18 Jul 2004 03:29:35 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 2EEC415735; Sun, 18 Jul 2004 11:31:04 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 94851-08; Sun, 18 Jul 2004 11:31:03 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 92E8215725; Sun, 18 Jul 2004 11:31:03 +0800 (CST) Message-Id: <20040718033103.92E8215725@mail.dragon2.net> Date: Sun, 18 Jul 2004 11:31:03 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net Subject: ports/69222: [maintainer-update] textproc/p5-WordNet-Similarity to 0.09 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Cheng-Lung Sung List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 03:30:23 -0000 >Number: 69222 >Category: ports >Synopsis: [maintainer-update] textproc/p5-WordNet-Similarity to 0.09 >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 Jul 18 03:30:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.9-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.9-RELEASE FreeBSD 4.9-RELEASE #5: Wed Oct 29 20:13:25 CST 2003 root@sungsung.csie.nctu.edu.tw:/usr/obj/usr/src/sys/SUNGSUNG i386 >Description: - update from 0.08 to 0.09 - new MAN1 man-pages - add four files in pkg-plist - from CHANGES (1) Fixed over-counting problem in *Freq.pl programs. Under certain conditions, word senses would sometimes get counted twice. (JM) (2) Updated *Freq.pl programs to use WordNet 2.0. (JM) (3) Input files to rawtextFreq.pl are now specified with the --infile option. (JM) (4) Improved speed of compound identification in rawtextFreq.pl by adding ',', ';', and ':' to the list of characters that we consider to be the end of a sentence (compound identification time is proportional to the square of the length of the sentence). (JM) >How-To-Repeat: >Fix: diff -ruN /usr/ports/textproc/p5-WordNet-Similarity/Makefile ./p5-WordNet-Similarity/Makefile --- /usr/ports/textproc/p5-WordNet-Similarity/Makefile Tue Jun 8 14:10:51 2004 +++ ./p5-WordNet-Similarity/Makefile Sun Jul 18 11:07:33 2004 @@ -6,7 +6,7 @@ # PORTNAME= WordNet-Similarity -PORTVERSION= 0.08 +PORTVERSION= 0.09 PORTREVISION= 0 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} @@ -26,6 +26,15 @@ CONFIGURE_ENV= WNHOME=${WNHOME} USE_REINPLACE= yes +MAN1= rawtextFreq.pl.1 \ + BNCFreq.pl.1 \ + similarity.pl.1 \ + wordVectors.pl.1 \ + compounds.pl.1 \ + readDB.pl.1 \ + brownFreq.pl.1 \ + treebankFreq.pl.1 \ + wnDepths.pl.1 MAN3= WordNet::Similarity.3 WordNet::Similarity::jcn.3 \ WordNet::Similarity::hso.3 WordNet::Similarity::vector.3 \ WordNet::Similarity::random.3 WordNet::Similarity::res.3 \ diff -ruN /usr/ports/textproc/p5-WordNet-Similarity/distinfo ./p5-WordNet-Similarity/distinfo --- /usr/ports/textproc/p5-WordNet-Similarity/distinfo Tue Jun 8 14:10:51 2004 +++ ./p5-WordNet-Similarity/distinfo Sun Jul 18 00:34:17 2004 @@ -1,2 +1,2 @@ -MD5 (WordNet-Similarity-0.08.tar.gz) = 2b7fe9a1bdf141d37f15fd265a865135 -SIZE (WordNet-Similarity-0.08.tar.gz) = 570469 +MD5 (WordNet-Similarity-0.09.tar.gz) = 1bb49bfccd4e182db877aef12d016821 +SIZE (WordNet-Similarity-0.09.tar.gz) = 582741 diff -ruN /usr/ports/textproc/p5-WordNet-Similarity/pkg-plist ./p5-WordNet-Similarity/pkg-plist --- /usr/ports/textproc/p5-WordNet-Similarity/pkg-plist Tue Apr 20 21:13:48 2004 +++ ./p5-WordNet-Similarity/pkg-plist Sun Jul 18 11:12:55 2004 @@ -13,6 +13,10 @@ %%SITE_PERL%%/get_wn_info.pm %%SITE_PERL%%/stem.pm %%SITE_PERL%%/string_compare.pm +%%SITE_PERL%%/WordNet/lesk-relation.dat +%%SITE_PERL%%/WordNet/treedepths-2.0.dat +%%SITE_PERL%%/WordNet/ic-semcor.dat +%%SITE_PERL%%/WordNet/synsetdepths-2.0.dat %%SITE_PERL%%/WordNet/Similarity.pm %%SITE_PERL%%/WordNet/Similarity/hso.pm %%SITE_PERL%%/WordNet/Similarity/random.pm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 03:40: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 85B8816A4CE for ; Sun, 18 Jul 2004 03:40:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F7FA43D55 for ; Sun, 18 Jul 2004 03:40:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I3e7LL040276 for ; Sun, 18 Jul 2004 03:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I3e7Mp040275; Sun, 18 Jul 2004 03:40:07 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 03:40:07 GMT Resent-Message-Id: <200407180340.i6I3e7Mp040275@freefall.freebsd.org> 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 4A68216A4CE for ; Sun, 18 Jul 2004 03:31:41 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CA9C43D1F for ; Sun, 18 Jul 2004 03:31:40 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.186] (port=49672 helo=inbox.ru) by mx2.mail.ru with esmtp id 1Bm2Oo-0000UC-00 for FreeBSD-gnats-submit@freebsd.org; Sun, 18 Jul 2004 07:31:39 +0400 Message-Id: Date: Sun, 18 Jul 2004 07:31:39 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69223: [ maintainer ] mail/msmtp-devel: update to 1.2.0 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: Sun, 18 Jul 2004 03:40:07 -0000 >Number: 69223 >Category: ports >Synopsis: [ maintainer ] mail/msmtp-devel: update to 1.2.0 >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: Sun Jul 18 03:40:06 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #5: Sat Jun 19 22:04:33 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: Update to 1.2.0, which is the new stable version of msmtp, so I removed -devel suffix and CONFLICTS with previous msmtp versions. And I think it's time for msmtp-devel to replace msmtp. >How-To-Repeat: >Fix: diff -ruN msmtp-devel.orig/Makefile msmtp-devel/Makefile --- msmtp-devel.orig/Makefile Sun Jul 18 07:15:34 2004 +++ msmtp-devel/Makefile Sun Jul 18 07:18:37 2004 @@ -6,11 +6,10 @@ # PORTNAME= msmtp -PORTVERSION= 1.1.3 +PORTVERSION= 1.2.0 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= msmtp -PKGNAMESUFFIX= -devel MAINTAINER= bogorodskiy@inbox.ru COMMENT= The development version of SMTP plugin for MUAs @@ -23,9 +22,6 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAN1= msmtp.1 PLIST_FILES= bin/msmtp - -CONFLICTS= msmtp-0.* \ - msmtp-1.0.* .if !defined(WITH_OPENSSL) WITH_GNUTLS= yes diff -ruN msmtp-devel.orig/distinfo msmtp-devel/distinfo --- msmtp-devel.orig/distinfo Sun Jul 18 07:15:34 2004 +++ msmtp-devel/distinfo Sun Jul 18 07:17:49 2004 @@ -1,2 +1,2 @@ -MD5 (msmtp-1.1.3.tar.gz) = 589d6f5651734be17c3a35928c422241 -SIZE (msmtp-1.1.3.tar.gz) = 149625 +MD5 (msmtp-1.2.0.tar.gz) = ad23bc7217a6d78fdf1f9312adcd350b +SIZE (msmtp-1.2.0.tar.gz) = 154348 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 04: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 D8A5A16A4D0 for ; Sun, 18 Jul 2004 04:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B250A43D3F for ; Sun, 18 Jul 2004 04:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I4UNdA055091 for ; Sun, 18 Jul 2004 04:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I4UND9055083; Sun, 18 Jul 2004 04:30:23 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 04:30:23 GMT Resent-Message-Id: <200407180430.i6I4UND9055083@freefall.freebsd.org> 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 ACC5016A4CF; Sun, 18 Jul 2004 04:29:51 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29E6843D41; Sun, 18 Jul 2004 04:29:51 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 97F8715735; Sun, 18 Jul 2004 12:31:19 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 99360-10; Sun, 18 Jul 2004 12:31:19 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 238D6153EF; Sun, 18 Jul 2004 12:31:19 +0800 (CST) Message-Id: <20040718043119.238D6153EF@mail.dragon2.net> Date: Sun, 18 Jul 2004 12:31:19 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net cc: sergei@FreeBSD.org Subject: ports/69224: [patch-request] porttools doesn't work in p5-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Cheng-Lung Sung List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 04:30:24 -0000 >Number: 69224 >Category: ports >Synopsis: [patch-request] porttools doesn't work in p5-* >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 04:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.9-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.9-RELEASE FreeBSD 4.9-RELEASE #5: Wed Oct 29 20:13:25 CST 2003 root@sungsung.csie.nctu.edu.tw:/usr/obj/usr/src/sys/SUNGSUNG i386 >Description: - original util_diff does not seem to have PKGNAMEPREFIX defined. this will cause "port diff" failed in p5-* ports. - Due to that, I add PKGNAMEPREFIX in util_diff.in to make "port diff" work in p5-*. - cc to maintainer >How-To-Repeat: [p5-WordNet-Similarity] >port diff Original version does not exist at /usr/ports/textproc/WordNet-Similarity >Fix: ===> Generating patch ===> Viewing diff with more diff -ruN --exclude=CVS /usr/ports/devel/porttools/files/patch-util_diff.in /home/clsung/porttools/files/patch-util_diff.in --- /usr/ports/devel/porttools/files/patch-util_diff.in Thu Jan 1 08:00:00 1970 +++ /home/clsung/porttools/files/patch-util_diff.in Sun Jul 18 12:12:06 2004 @@ -0,0 +1,12 @@ +--- util_diff.in.orig Tue Oct 21 13:25:53 2003 ++++ util_diff.in Sun Jul 18 12:12:00 2004 +@@ -71,7 +71,8 @@ + # it should be Ports tree location + CATEGORY="`make -V CATEGORIES | sed -E 's/^([^ ]+).*$/\1/'`" + PORTNAME="`make -V PORTNAME`" +- ORIG_DIR="${DIFF_MODE}/${CATEGORY}/${PORTNAME}" ++ PKGNAMEPREFIX="`make -V PKGNAMEPREFIX`" ++ ORIG_DIR="${DIFF_MODE}/${CATEGORY}/${PKGNAMEPREFIX}${PORTNAME}" + else + # -d have been specified + # is used to determine original port location ===> Done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 04:49: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 3AF3216A4CE; Sun, 18 Jul 2004 04:49:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B25A43D48; Sun, 18 Jul 2004 04:49:21 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6I4nKnm058473; Sun, 18 Jul 2004 04:49:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I4nKov058469; Sun, 18 Jul 2004 04:49:20 GMT (envelope-from linimon) Date: Sun, 18 Jul 2004 04:49:20 GMT From: Mark Linimon Message-Id: <200407180449.i6I4nKov058469@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eik@FreeBSD.org Subject: Re: ports/69217: devel/portmk - add a convenient mechanism to handle startup scripts that 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: Sun, 18 Jul 2004 04:49:21 -0000 Synopsis: devel/portmk - add a convenient mechanism to handle startup scripts that use rc.subr Responsible-Changed-From-To: freebsd-ports-bugs->eik Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 18 04:49:11 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69217 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 04:49: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 148D516A4CE; Sun, 18 Jul 2004 04:49:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E86A943D46; Sun, 18 Jul 2004 04:49:44 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6I4ni4H058554; Sun, 18 Jul 2004 04:49:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I4nigF058550; Sun, 18 Jul 2004 04:49:44 GMT (envelope-from linimon) Date: Sun, 18 Jul 2004 04:49:44 GMT From: Mark Linimon Message-Id: <200407180449.i6I4nigF058550@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/69210: [PATCH] multimedia/ffmpeg -- update to 0.4.9p1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 04:49:45 -0000 Synopsis: [PATCH] multimedia/ffmpeg -- update to 0.4.9p1 Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 18 04:49:36 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69210 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 04:50: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 6D7A916A4CE; Sun, 18 Jul 2004 04:50:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B7A943D41; Sun, 18 Jul 2004 04:50:09 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6I4o9OV058633; Sun, 18 Jul 2004 04:50:09 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I4o8Xf058629; Sun, 18 Jul 2004 04:50:08 GMT (envelope-from linimon) Date: Sun, 18 Jul 2004 04:50:08 GMT From: Mark Linimon Message-Id: <200407180450.i6I4o8Xf058629@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/69209: Port update: palm/pilrc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 04:50:09 -0000 Synopsis: Port update: palm/pilrc Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 18 04:49:59 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69209 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 05: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 EC17816A4CE for ; Sun, 18 Jul 2004 05:10:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D936343D45 for ; Sun, 18 Jul 2004 05:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I5ANJF064455 for ; Sun, 18 Jul 2004 05:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I5ANmD064454; Sun, 18 Jul 2004 05:10:23 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 05:10:23 GMT Resent-Message-Id: <200407180510.i6I5ANmD064454@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, elvis@sslab.cs.ccu.edu.tw Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1224316A4CE for ; Sun, 18 Jul 2004 05:06:24 +0000 (GMT) Received: from mail.cs.ccu.edu.tw (csmail.cs.ccu.edu.tw [140.123.101.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B4943D2D for ; Sun, 18 Jul 2004 05:06:22 +0000 (GMT) (envelope-from elvis@sslab.cs.ccu.edu.tw) Received: from localhost (localhost [127.0.0.1]) by mail.cs.ccu.edu.tw (Postfix) with ESMTP id 8957B5B250 for ; Sun, 18 Jul 2004 13:08:42 +0800 (CST) Received: from mail.cs.ccu.edu.tw ([127.0.0.1]) by localhost (mail.cs.ccu.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 92558-14 for ; Sun, 18 Jul 2004 13:08:24 +0800 (CST) Received: from sslab.cs.ccu.edu.tw (sslab.cs.ccu.edu.tw [140.123.102.233]) by mail.cs.ccu.edu.tw (Postfix) with ESMTP id 792D75B260 for ; Sun, 18 Jul 2004 13:08:24 +0800 (CST) Received: by sslab.cs.ccu.edu.tw (Postfix, from userid 1001) id 5D1757E; Sun, 18 Jul 2004 13:07:39 +0800 (CST) Message-Id: <20040718050739.5D1757E@sslab.cs.ccu.edu.tw> Date: Sun, 18 Jul 2004 13:07:39 +0800 (CST) From: elvis@sslab.cs.ccu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69226: New port: textproc/p5-Spork module for creating standalone HTML slideshows X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elvis@sslab.cs.ccu.edu.tw List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 05:10:24 -0000 >Number: 69226 >Category: ports >Synopsis: New port: textproc/p5-Spork module for creating standalone HTML slideshows >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 Jul 18 05:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: elvis >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: System Software Lab. CSIE CCU Taiwan >Environment: System: FreeBSD sslab.cs.ccu.edu.tw 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #18: Mon May 31 14:13:48 CST 2004 root@sslab.cs.ccu.edu.tw:/ftp/obj/usr/src/sys/SSLAB i386 >Description: New port: Spork Author: ingy (http://search.cpan.org/~ingy/) WWW: http://search.cpan.org/~ingy/Spork-0.18/ >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-Spork # p5-Spork/pkg-descr # p5-Spork/Makefile # p5-Spork/pkg-plist # p5-Spork/distinfo # p5-Spork/pkg-message # echo c - p5-Spork mkdir -p p5-Spork > /dev/null 2>&1 echo x - p5-Spork/pkg-descr sed 's/^X//' >p5-Spork/pkg-descr << 'END-of-p5-Spork/pkg-descr' XSpork - a Perl module for creating standalone HTML slideshows from Kwiki markup X XAuthor: Brian Ingerson XWWW: http://search.cpan.org/~ingy/ END-of-p5-Spork/pkg-descr echo x - p5-Spork/Makefile sed 's/^X//' >p5-Spork/Makefile << 'END-of-p5-Spork/Makefile' X# New ports collection makefile for: p5-Spork X# Date created: 2004-07-18 X# Whom: Elvis Chiang X# X# $FreeBSD$ X# X XPORTNAME= Spork XPORTVERSION= 0.18 XCATEGORIES= textproc perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= ../../authors/id/I/IN/INGY/ XPKGNAMEPREFIX= p5- X XMAINTAINER= elvis@sslab.cs.ccu.edu.tw XCOMMENT= Creating standalone HTML slideshows from Kwiki markup X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN1= spork.1 XMAN3= Spork.3 Spork::Config.3 X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.1 or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Spork/Makefile echo x - p5-Spork/pkg-plist sed 's/^X//' >p5-Spork/pkg-plist << 'END-of-p5-Spork/pkg-plist' X@comment $FreeBSD$ Xbin/spork X%%SITE_PERL%%/Spork.pm X%%SITE_PERL%%/Spork/Formatter.pm X%%SITE_PERL%%/Spork/Hub.pm X%%SITE_PERL%%/Spork/Slides.pm X%%SITE_PERL%%/Spork/Registry.pm X%%SITE_PERL%%/Spork/Command.pm X%%SITE_PERL%%/Spork/Config.pm X%%SITE_PERL%%/Spork/Template/TT2.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Spork/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Spork X@dirrm %%SITE_PERL%%/Spork/Template X@dirrm %%SITE_PERL%%/Spork END-of-p5-Spork/pkg-plist echo x - p5-Spork/distinfo sed 's/^X//' >p5-Spork/distinfo << 'END-of-p5-Spork/distinfo' XMD5 (Spork-0.18.tar.gz) = 11f856478ec198ed9748db23d6c05112 XSIZE (Spork-0.18.tar.gz) = 18902 END-of-p5-Spork/distinfo echo x - p5-Spork/pkg-message sed 's/^X//' >p5-Spork/pkg-message << 'END-of-p5-Spork/pkg-message' XUsage: X$ spork -new # Generate a new slideshow in an empty directory X$ spork -make # Turn the text into html slides X$ spork -start # Start the show in a browser END-of-p5-Spork/pkg-message exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 05: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 49BD316A4CE for ; Sun, 18 Jul 2004 05:30:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38ED443D53 for ; Sun, 18 Jul 2004 05:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I5UMOL067373 for ; Sun, 18 Jul 2004 05:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I5UMuW067369; Sun, 18 Jul 2004 05:30:22 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 05:30:22 GMT Resent-Message-Id: <200407180530.i6I5UMuW067369@freefall.freebsd.org> 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 1195F16A4CE for ; Sun, 18 Jul 2004 05:29:06 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4D8B43D5D for ; Sun, 18 Jul 2004 05:29:05 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 5E34B15722; Sun, 18 Jul 2004 13:30:34 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 06113-09; Sun, 18 Jul 2004 13:30:33 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id C246015397; Sun, 18 Jul 2004 13:30:33 +0800 (CST) Message-Id: <20040718053033.C246015397@mail.dragon2.net> Date: Sun, 18 Jul 2004 13:30:33 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net Subject: ports/69227: [PATCH] textproc/srilm: 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: Sun, 18 Jul 2004 05:30:22 -0000 >Number: 69227 >Category: ports >Synopsis: [PATCH] textproc/srilm: 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: Sun Jul 18 05:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.4.1 - remove 2 files in pkg-plist Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- srilm-1.4.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/srilm/Makefile /home/clsung/srilm/Makefile --- /usr/ports/textproc/srilm/Makefile Sun Apr 4 23:17:09 2004 +++ /home/clsung/srilm/Makefile Sun Jul 18 12:55:43 2004 @@ -2,11 +2,11 @@ # Date created: Wed Dec 31 16:17:30 CST 2003 # Whom: Cheng-Lung Sung # -# $FreeBSD: ports/textproc/srilm/Makefile,v 1.2 2004/04/03 21:46:23 pav Exp $ +# $FreeBSD: ports/textproc/srilm/Makefile,v 1.1 2004/02/21 18:07:23 leeym Exp $ # PORTNAME= srilm -PORTVERSION= 1.4 +PORTVERSION= 1.4.1 CATEGORIES= textproc DISTNAME= srilm EXTRACT_SUFX?= .tgz diff -ruN --exclude=CVS /usr/ports/textproc/srilm/distinfo /home/clsung/srilm/distinfo --- /usr/ports/textproc/srilm/distinfo Sun Apr 4 23:17:09 2004 +++ /home/clsung/srilm/distinfo Sun Jul 18 12:55:52 2004 @@ -1,2 +1,2 @@ -MD5 (srilm.tgz) = 5c084953c2f73ecf565f8791dfb401e0 -SIZE (srilm.tgz) = 30125078 +MD5 (srilm.tgz) = 022a1045f0087e6192d7d654c395289e +SIZE (srilm.tgz) = 30301011 diff -ruN --exclude=CVS /usr/ports/textproc/srilm/pkg-plist /home/clsung/srilm/pkg-plist --- /usr/ports/textproc/srilm/pkg-plist Sun Apr 4 23:17:09 2004 +++ /home/clsung/srilm/pkg-plist Sun Jul 18 12:59:46 2004 @@ -1,6 +1,5 @@ bin/anti-ngram bin/disambig -bin/fax2tiff bin/hidden-ngram bin/lattice-tool bin/multi-ngram @@ -8,7 +7,6 @@ bin/nbest-mix bin/nbest-optimize bin/nbest-pron-score -bin/ncftpget bin/ngram bin/ngram-class bin/ngram-count --- srilm-1.4.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 05: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 A29AC16A4CE for ; Sun, 18 Jul 2004 05:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76F2B43D1D for ; Sun, 18 Jul 2004 05:40:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I5ePMk070837 for ; Sun, 18 Jul 2004 05:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I5ePs8070836; Sun, 18 Jul 2004 05:40:25 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 05:40:25 GMT Resent-Message-Id: <200407180540.i6I5ePs8070836@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, UMENO Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E22A116A4CF for ; Sun, 18 Jul 2004 05:30:53 +0000 (GMT) Received: from belldandy.unnumbered.net (gateway.unnumbered.net [61.197.240.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5116943D45 for ; Sun, 18 Jul 2004 05:30:53 +0000 (GMT) (envelope-from umeno@belldandy.unnumbered.net) Received: from belldandy.unnumbered.net (localhost.unnumbered.net [127.0.0.1]) i6I5UpCm080455 for ; Sun, 18 Jul 2004 14:30:51 +0900 (JST) (envelope-from umeno@belldandy.unnumbered.net) Received: (from umeno@localhost)i6I5UpbE080454; Sun, 18 Jul 2004 14:30:51 +0900 (JST) (envelope-from umeno) Message-Id: <200407180530.i6I5UpbE080454@belldandy.unnumbered.net> Date: Sun, 18 Jul 2004 14:30:51 +0900 (JST) From: UMENO Takashi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69228: Maintainer Update: graphics/zphoto to 1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: UMENO Takashi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 05:40:25 -0000 >Number: 69228 >Category: ports >Synopsis: Maintainer Update: graphics/zphoto to 1.1 >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 Jul 18 05:40:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 4.10-STABLE i386 >Organization: individual >Environment: System: FreeBSD belldandy.unnumbered.net 4.10-STABLE FreeBSD 4.10-STABLE #0: Tue Jul 13 05:35:24 JST 2004 umeno@belldandy.unnumbered.net:/usr/src/sys/compile/SAKUYA22 i386 >Description: Maintainer Update: graphics/zphoto to 1.1 New file: files/patch-templates::default::all::Makefile.in add knobs: WITHOUT_AVIPLAY. WITHOUT_ZIP >How-To-Repeat: N/A >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 05:56: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 602B816A4CE; Sun, 18 Jul 2004 05:56:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40A0343D1D; Sun, 18 Jul 2004 05:56:23 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6I5uNun073715; Sun, 18 Jul 2004 05:56:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I5uNQj073711; Sun, 18 Jul 2004 05:56:23 GMT (envelope-from linimon) Date: Sun, 18 Jul 2004 05:56:23 GMT From: Mark Linimon Message-Id: <200407180556.i6I5uNQj073711@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-port-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69200: Re: Update Port: devel/svk to 0.16 with 2 dependent ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 05:56:23 -0000 Synopsis: Re: Update Port: devel/svk to 0.16 with 2 dependent ports Responsible-Changed-From-To: freebsd-port-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 18 05:56:10 GMT 2004 Responsible-Changed-Why: Fix typo. http://www.freebsd.org/cgi/query-pr.cgi?pr=69200 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06:00: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 D30C816A4CE for ; Sun, 18 Jul 2004 06:00:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF18043D48 for ; Sun, 18 Jul 2004 06:00:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I60ftp074514 for ; Sun, 18 Jul 2004 06:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I60fXf074511; Sun, 18 Jul 2004 06:00:41 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 06:00:41 GMT Resent-Message-Id: <200407180600.i6I60fXf074511@freefall.freebsd.org> 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 ED30D16A4CE for ; Sun, 18 Jul 2004 05:59:33 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAC0443D46 for ; Sun, 18 Jul 2004 05:59:33 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 13FB515722; Sun, 18 Jul 2004 14:01:02 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 11260-05; Sun, 18 Jul 2004 14:01:01 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 8826015397; Sun, 18 Jul 2004 14:01:01 +0800 (CST) Message-Id: <20040718060101.8826015397@mail.dragon2.net> Date: Sun, 18 Jul 2004 14:01:01 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net Subject: ports/69229: [MAINTAINER] devel/Sort-Tree: update to 1.09 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 06:00:43 -0000 >Number: 69229 >Category: ports >Synopsis: [MAINTAINER] devel/Sort-Tree: update to 1.09 >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 Jul 18 06:00:41 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.09 - From ChangeLog - Added patch from Pat Deegan implementing alphabetical sorting, the traverse() function, etc. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Sort-Tree-1.09.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Sort-Tree/Makefile /home/clsung/p5-Sort-Tree/Makefile --- /usr/ports/devel/p5-Sort-Tree/Makefile Fri Oct 17 15:26:01 2003 +++ /home/clsung/p5-Sort-Tree/Makefile Sun Jul 18 13:57:16 2004 @@ -6,7 +6,7 @@ # PORTNAME= Sort-Tree -PORTVERSION= 1.08 +PORTVERSION= 1.09 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Sort diff -ruN --exclude=CVS /usr/ports/devel/p5-Sort-Tree/distinfo /home/clsung/p5-Sort-Tree/distinfo --- /usr/ports/devel/p5-Sort-Tree/distinfo Thu Apr 1 16:39:24 2004 +++ /home/clsung/p5-Sort-Tree/distinfo Sun Jul 18 13:58:19 2004 @@ -1,2 +1,2 @@ -MD5 (Sort-Tree-1.08.tar.gz) = 7140a2631ad9713913ea59ff25e88ddd -SIZE (Sort-Tree-1.08.tar.gz) = 5598 +MD5 (Sort-Tree-1.09.tar.gz) = abcb5d388d166a9502d8a5b0f8e1ab36 +SIZE (Sort-Tree-1.09.tar.gz) = 7103 --- p5-Sort-Tree-1.09.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06:01: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 49D5F16A4CF; Sun, 18 Jul 2004 06:01:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2994243D54; Sun, 18 Jul 2004 06:01:19 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6I61J4o074715; Sun, 18 Jul 2004 06:01:19 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I61JdD074711; Sun, 18 Jul 2004 06:01:19 GMT (envelope-from krion) Date: Sun, 18 Jul 2004 06:01:19 GMT From: Kirill Ponomarew Message-Id: <200407180601.i6I61JdD074711@freefall.freebsd.org> To: david@catwhisker.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69214: GPSMan (ports/astro/gpsman) upgrade from 6.1.1 to 6.1.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: Sun, 18 Jul 2004 06:01:19 -0000 Synopsis: GPSMan (ports/astro/gpsman) upgrade from 6.1.1 to 6.1.2 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Jul 18 06:01:12 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69214 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06:03: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 E52A816A4CE; Sun, 18 Jul 2004 06:03:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5DFE43D48; Sun, 18 Jul 2004 06:03:13 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6I63DPa075090; Sun, 18 Jul 2004 06:03:13 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I63Dbl075086; Sun, 18 Jul 2004 06:03:13 GMT (envelope-from krion) Date: Sun, 18 Jul 2004 06:03:13 GMT From: Kirill Ponomarew Message-Id: <200407180603.i6I63Dbl075086@freefall.freebsd.org> To: umeno@rr.iij4u.or.jp, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69228: Maintainer Update: graphics/zphoto to 1.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: Sun, 18 Jul 2004 06:03:14 -0000 Synopsis: Maintainer Update: graphics/zphoto to 1.1 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Jul 18 06:03:02 GMT 2004 State-Changed-Why: You submitted empty PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=69228 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06:06: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 EEB7916A4D1; Sun, 18 Jul 2004 06:06:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C969E43D41; Sun, 18 Jul 2004 06:06:08 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6I668cd079022; Sun, 18 Jul 2004 06:06:08 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I66836079017; Sun, 18 Jul 2004 06:06:08 GMT (envelope-from krion) Date: Sun, 18 Jul 2004 06:06:08 GMT From: Kirill Ponomarew Message-Id: <200407180606.i6I66836079017@freefall.freebsd.org> To: clsung@dragon2.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69229: [MAINTAINER] devel/Sort-Tree: update to 1.09 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 06:06:09 -0000 Synopsis: [MAINTAINER] devel/Sort-Tree: update to 1.09 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Jul 18 06:06:02 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69229 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06:17: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 0B05C16A4CE; Sun, 18 Jul 2004 06:17:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE40B43D1F; Sun, 18 Jul 2004 06:17:42 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6I6HgSt081204; Sun, 18 Jul 2004 06:17:42 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I6HgtN081200; Sun, 18 Jul 2004 06:17:42 GMT (envelope-from krion) Date: Sun, 18 Jul 2004 06:17:42 GMT From: Kirill Ponomarew Message-Id: <200407180617.i6I6HgtN081200@freefall.freebsd.org> To: bogorodskiy@inbox.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69223: [ maintainer ] mail/msmtp-devel: update to 1.2.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: Sun, 18 Jul 2004 06:17:43 -0000 Synopsis: [ maintainer ] mail/msmtp-devel: update to 1.2.0 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Jul 18 06:16:21 GMT 2004 State-Changed-Why: Your patch is partially wrong, so I submitted slight another version, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69223 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06:20: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 0555316A4CE for ; Sun, 18 Jul 2004 06:20:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D54A543D39 for ; Sun, 18 Jul 2004 06:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I6KCFv081581 for ; Sun, 18 Jul 2004 06:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I6KCNJ081580; Sun, 18 Jul 2004 06:20:12 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 06:20:12 GMT Resent-Message-Id: <200407180620.i6I6KCNJ081580@freefall.freebsd.org> 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 500EE16A4CE for ; Sun, 18 Jul 2004 06:14:59 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1B0A43D1F for ; Sun, 18 Jul 2004 06:14:58 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 732BC1573B; Sun, 18 Jul 2004 14:16:27 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 11793-06; Sun, 18 Jul 2004 14:16:27 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id DC71D15735; Sun, 18 Jul 2004 14:16:26 +0800 (CST) Message-Id: <20040718061626.DC71D15735@mail.dragon2.net> Date: Sun, 18 Jul 2004 14:16:26 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net Subject: ports/69230: [MAINTAINER] mail/Mail-Mbox-MessageParser: update to 1.20 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 06:20:13 -0000 >Number: 69230 >Category: ports >Synopsis: [MAINTAINER] mail/Mail-Mbox-MessageParser: update to 1.20 >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 Jul 18 06:20:12 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.20 - a few changes, see CHANGES Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Mail-Mbox-MessageParser-1.20.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/p5-Mail-Mbox-MessageParser/Makefile /home/clsung/p5-Mail-Mbox-MessageParser/Makefile --- /usr/ports/mail/p5-Mail-Mbox-MessageParser/Makefile Wed Dec 31 08:42:49 2003 +++ /home/clsung/p5-Mail-Mbox-MessageParser/Makefile Sun Jul 18 14:12:31 2004 @@ -6,7 +6,7 @@ # PORTNAME= Mail-Mbox-MessageParser -PORTVERSION= 1.13 +PORTVERSION= 1.20 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Mail diff -ruN --exclude=CVS /usr/ports/mail/p5-Mail-Mbox-MessageParser/distinfo /home/clsung/p5-Mail-Mbox-MessageParser/distinfo --- /usr/ports/mail/p5-Mail-Mbox-MessageParser/distinfo Thu Apr 1 16:40:09 2004 +++ /home/clsung/p5-Mail-Mbox-MessageParser/distinfo Sun Jul 18 14:12:03 2004 @@ -1,2 +1,2 @@ -MD5 (Mail-Mbox-MessageParser-1.13.tar.gz) = ec8611562b93dcbdec63d02a0047a800 -SIZE (Mail-Mbox-MessageParser-1.13.tar.gz) = 178631 +MD5 (Mail-Mbox-MessageParser-1.20.tar.gz) = d7031c4f43911703211a588c641996d3 +SIZE (Mail-Mbox-MessageParser-1.20.tar.gz) = 220737 --- p5-Mail-Mbox-MessageParser-1.20.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 06: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 BC2A316A4E7 for ; Sun, 18 Jul 2004 06:50:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB3E343D1F for ; Sun, 18 Jul 2004 06:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I6oVuu096901 for ; Sun, 18 Jul 2004 06:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I6oVme096900; Sun, 18 Jul 2004 06:50:31 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 06:50:31 GMT Resent-Message-Id: <200407180650.i6I6oVme096900@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, NAKATA Maho Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56A7516A4CE for ; Sun, 18 Jul 2004 06:44:36 +0000 (GMT) Received: from satie.private.org (YahooBB219196184078.bbtec.net [219.196.184.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E0E543D45 for ; Sun, 18 Jul 2004 06:44:35 +0000 (GMT) (envelope-from maho@satie.private.org) Received: from satie.private.org (localhost [127.0.0.1]) by satie.private.org (8.12.10/8.12.10) with ESMTP id i6I6i7hl044839 for ; Sun, 18 Jul 2004 15:44:07 +0900 (JST) (envelope-from maho@satie.private.org) Received: (from maho@localhost) by satie.private.org (8.12.10/8.12.10/Submit) id i6I6i7tO044838; Sun, 18 Jul 2004 15:44:07 +0900 (JST) (envelope-from maho) Message-Id: <200407180644.i6I6i7tO044838@satie.private.org> Date: Sun, 18 Jul 2004 15:44:07 +0900 (JST) From: NAKATA Maho To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69231: IPA Japanese truetype font X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: NAKATA Maho List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 06:50:31 -0000 >Number: 69231 >Category: ports >Synopsis: IPA Japanese truetype font >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 Jul 18 06:50:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: NAKATA Maho >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: private >Environment: System: FreeBSD satie.private.org 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Fri Jul 9 12:16:21 JST 2004 maho@satie.private.org:/usr/src/sys/i386/compile/GENERIC i386 >Description: I made a port for IPA Japanese truetype font. >How-To-Repeat: #!/bin/sh # This is a shell archive (produced by GNU sharutils 4.2.1). # To extract the files from this archive, save it to some FILE, remove # everything before the `!/bin/sh' line above, then type `sh FILE'. # # Made on 2004-07-18 15:43 JST by . # Source directory was `/home/maho/work/ports'. # # Existing files will *not* be overwritten unless `-c' is specified. # # This shar contains: # length mode name # ------ ---------- ------------------------------------------ # 7008 -rw-r--r-- ipa-ttf/files/fonts.alias.ipa # 12239 -rw-r--r-- ipa-ttf/files/fonts.dir.ipa # 2070 -rw-r--r-- ipa-ttf/Makefile # 592 -rwxr-xr-x ipa-ttf/pkg-install # 108 -rw-r--r-- ipa-ttf/pkg-descr # 906 -rw-r--r-- ipa-ttf/pkg-plist # 395 -rwxr-xr-x ipa-ttf/pkg-deinstall # 165 -rw-r--r-- ipa-ttf/distinfo # save_IFS="${IFS}" IFS="${IFS}:" gettext_dir=FAILED locale_dir=FAILED first_param="$1" for dir in $PATH do if test "$gettext_dir" = FAILED && test -f $dir/gettext \ && ($dir/gettext --version >/dev/null 2>&1) then set `$dir/gettext --version 2>&1` if test "$3" = GNU then gettext_dir=$dir fi fi if test "$locale_dir" = FAILED && test -f $dir/shar \ && ($dir/shar --print-text-domain-dir >/dev/null 2>&1) then locale_dir=`$dir/shar --print-text-domain-dir` fi done IFS="$save_IFS" if test "$locale_dir" = FAILED || test "$gettext_dir" = FAILED then echo=echo else TEXTDOMAINDIR=$locale_dir export TEXTDOMAINDIR TEXTDOMAIN=sharutils export TEXTDOMAIN echo="$gettext_dir/gettext -s" fi if touch -am -t 200112312359.59 $$.touch >/dev/null 2>&1 && test ! -f 200112312359.59 -a -f $$.touch; then shar_touch='touch -am -t $1$2$3$4$5$6.$7 "$8"' elif touch -am 123123592001.59 $$.touch >/dev/null 2>&1 && test ! -f 123123592001.59 -a ! -f 123123592001.5 -a -f $$.touch; then shar_touch='touch -am $3$4$5$6$1$2.$7 "$8"' elif touch -am 1231235901 $$.touch >/dev/null 2>&1 && test ! -f 1231235901 -a -f $$.touch; then shar_touch='touch -am $3$4$5$6$2 "$8"' else shar_touch=: echo $echo 'WARNING: not restoring timestamps. Consider getting and' $echo "installing GNU \`touch', distributed in GNU File Utilities..." echo fi rm -f 200112312359.59 123123592001.59 123123592001.5 1231235901 $$.touch # if mkdir _sh44700; then $echo 'x -' 'creating lock directory' else $echo 'failed to create lock directory' exit 1 fi # ============= ipa-ttf/files/fonts.alias.ipa ============== if test ! -d 'ipa-ttf'; then $echo 'x -' 'creating directory' 'ipa-ttf' mkdir 'ipa-ttf' fi if test ! -d 'ipa-ttf/files'; then $echo 'x -' 'creating directory' 'ipa-ttf/files' mkdir 'ipa-ttf/files' fi if test -f 'ipa-ttf/files/fonts.alias.ipa' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/files/fonts.alias.ipa' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/files/fonts.alias.ipa' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/files/fonts.alias.ipa' && -aliastt-mincho-medium-ro-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-medium-o-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-medium-ri-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-medium-i-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-medium-r-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-medium-ro-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-medium-o-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-medium-ri-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-medium-i-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-medium-r-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-medium-ro-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-medium-ro-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-medium-o-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-medium-o-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-medium-ri-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-medium-ri-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-medium-i-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-medium-i-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-medium-r-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-medium-r-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-bold-ro-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-bold-o-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-bold-ri-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-bold-i-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-bold-r-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPMincho-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-mincho-bold-ro-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-bold-o-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-bold-ri-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-bold-i-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-bold-r-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPMincho-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-mincho-bold-ro-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-bold-ro-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-bold-o-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-bold-o-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-bold-ri-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-bold-ri-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-bold-i-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-bold-i-normal--0-0-0-0-c-0-iso8859-1 -aliastt-mincho-bold-r-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPMincho-bold-r-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-medium-ro-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-medium-o-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-medium-ri-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-medium-i-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-medium-r-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-medium-ro-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-medium-o-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-medium-ri-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-medium-i-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-medium-r-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-medium-ro-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-medium-ro-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-medium-o-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-medium-o-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-medium-ri-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-medium-ri-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-medium-i-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-medium-i-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-medium-r-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-medium-r-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-bold-ro-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-bold-o-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-bold-ri-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-bold-i-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-bold-r-normal--0-0-0-0-p-0-jisx0208.1983-0 -ipa-IPAPGothic-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 -aliastt-gothic-bold-ro-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-bold-o-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-bold-ri-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-bold-i-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-bold-r-normal--0-0-0-0-p-0-jisx0201.1976-0 -ipa-IPAPGothic-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 -aliastt-gothic-bold-ro-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-bold-ro-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-bold-o-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-bold-o-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-bold-ri-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-bold-ri-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-bold-i-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-bold-i-normal--0-0-0-0-c-0-iso8859-1 -aliastt-gothic-bold-r-normal--0-0-0-0-p-0-iso8859-1 -ipa-IPAPGothic-bold-r-normal--0-0-0-0-c-0-iso8859-1 SHAR_EOF (set 20 04 07 18 15 23 01 'ipa-ttf/files/fonts.alias.ipa'; eval "$shar_touch") && chmod 0644 'ipa-ttf/files/fonts.alias.ipa' || $echo 'restore of' 'ipa-ttf/files/fonts.alias.ipa' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/files/fonts.alias.ipa:' 'MD5 check failed' 69f96b3f2a7c50959892dd5dbd550adf ipa-ttf/files/fonts.alias.ipa SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/files/fonts.alias.ipa'`" test 7008 -eq "$shar_count" || $echo 'ipa-ttf/files/fonts.alias.ipa:' 'original size' '7008,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/files/fonts.dir.ipa ============== if test -f 'ipa-ttf/files/fonts.dir.ipa' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/files/fonts.dir.ipa' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/files/fonts.dir.ipa' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/files/fonts.dir.ipa' && 150 ipag.ttf -ipa-IPAGothic-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ipag.ttf -ipa-IPAGothic-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipag.ttf -ipa-IPAGothic-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipag.ttf -ipa-IPAGothic-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipag.ttf -ipa-IPAGothic-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipag.ttf -ipa-IPAGothic-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipag.ttf -ipa-IPAGothic-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipag.ttf -ipa-IPAGothic-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipag.ttf -ipa-IPAGothic-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipag.ttf -ipa-IPAGothic-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 bw=0.5:ipag.ttf -ipa-IPAGothic-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ipag.ttf -ipa-IPAGothic-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipag.ttf -ipa-IPAGothic-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipag.ttf -ipa-IPAGothic-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipag.ttf -ipa-IPAGothic-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipag.ttf -ipa-IPAGothic-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipag.ttf -ipa-IPAGothic-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipag.ttf -ipa-IPAGothic-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipag.ttf -ipa-IPAGothic-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipag.ttf -ipa-IPAGothic-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ipag.ttf -ipa-IPAGothic-medium-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipag.ttf -ipa-IPAGothic-medium-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipag.ttf -ipa-IPAGothic-medium-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipag.ttf -ipa-IPAGothic-medium-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipag.ttf -ipa-IPAGothic-medium-ro-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ipag.ttf -ipa-IPAGothic-bold-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipag.ttf -ipa-IPAGothic-bold-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipag.ttf -ipa-IPAGothic-bold-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipag.ttf -ipa-IPAGothic-bold-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipag.ttf -ipa-IPAGothic-bold-ro-normal--0-0-0-0-c-0-iso8859-1 ipagp.ttf -ipa-IPAPGothic-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ipagp.ttf -ipa-IPAPGothic-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipagp.ttf -ipa-IPAPGothic-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipagp.ttf -ipa-IPAPGothic-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipagp.ttf -ipa-IPAPGothic-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipagp.ttf -ipa-IPAPGothic-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipagp.ttf -ipa-IPAPGothic-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipagp.ttf -ipa-IPAPGothic-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipagp.ttf -ipa-IPAPGothic-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipagp.ttf -ipa-IPAPGothic-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 bw=0.5:ipagp.ttf -ipa-IPAPGothic-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ipagp.ttf -ipa-IPAPGothic-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipagp.ttf -ipa-IPAPGothic-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipagp.ttf -ipa-IPAPGothic-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipagp.ttf -ipa-IPAPGothic-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipagp.ttf -ipa-IPAPGothic-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipagp.ttf -ipa-IPAPGothic-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipagp.ttf -ipa-IPAPGothic-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipagp.ttf -ipa-IPAPGothic-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipagp.ttf -ipa-IPAPGothic-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ipagp.ttf -ipa-IPAPGothic-medium-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipagp.ttf -ipa-IPAPGothic-medium-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipagp.ttf -ipa-IPAPGothic-medium-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipagp.ttf -ipa-IPAPGothic-medium-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipagp.ttf -ipa-IPAPGothic-medium-ro-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ipagp.ttf -ipa-IPAPGothic-bold-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipagp.ttf -ipa-IPAPGothic-bold-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipagp.ttf -ipa-IPAPGothic-bold-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipagp.ttf -ipa-IPAPGothic-bold-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipagp.ttf -ipa-IPAPGothic-bold-ro-normal--0-0-0-0-c-0-iso8859-1 ipagui.ttf -ipa-IPAUIGothic-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ipagui.ttf -ipa-IPAUIGothic-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipagui.ttf -ipa-IPAUIGothic-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipagui.ttf -ipa-IPAUIGothic-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipagui.ttf -ipa-IPAUIGothic-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipagui.ttf -ipa-IPAUIGothic-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 bw=0.5:ipagui.ttf -ipa-IPAUIGothic-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ipagui.ttf -ipa-IPAUIGothic-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ipagui.ttf -ipa-IPAUIGothic-medium-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-medium-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-medium-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-medium-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-medium-ro-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ipagui.ttf -ipa-IPAUIGothic-bold-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-bold-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipagui.ttf -ipa-IPAUIGothic-bold-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-bold-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipagui.ttf -ipa-IPAUIGothic-bold-ro-normal--0-0-0-0-c-0-iso8859-1 ipam.ttf -ipa-IPAMincho-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ipam.ttf -ipa-IPAMincho-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipam.ttf -ipa-IPAMincho-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipam.ttf -ipa-IPAMincho-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipam.ttf -ipa-IPAMincho-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipam.ttf -ipa-IPAMincho-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipam.ttf -ipa-IPAMincho-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipam.ttf -ipa-IPAMincho-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipam.ttf -ipa-IPAMincho-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipam.ttf -ipa-IPAMincho-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 bw=0.5:ipam.ttf -ipa-IPAMincho-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ipam.ttf -ipa-IPAMincho-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipam.ttf -ipa-IPAMincho-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipam.ttf -ipa-IPAMincho-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipam.ttf -ipa-IPAMincho-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipam.ttf -ipa-IPAMincho-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipam.ttf -ipa-IPAMincho-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipam.ttf -ipa-IPAMincho-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipam.ttf -ipa-IPAMincho-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipam.ttf -ipa-IPAMincho-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ipam.ttf -ipa-IPAMincho-medium-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipam.ttf -ipa-IPAMincho-medium-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipam.ttf -ipa-IPAMincho-medium-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipam.ttf -ipa-IPAMincho-medium-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipam.ttf -ipa-IPAMincho-medium-ro-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ipam.ttf -ipa-IPAMincho-bold-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipam.ttf -ipa-IPAMincho-bold-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipam.ttf -ipa-IPAMincho-bold-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipam.ttf -ipa-IPAMincho-bold-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipam.ttf -ipa-IPAMincho-bold-ro-normal--0-0-0-0-c-0-iso8859-1 ipamp.ttf -ipa-IPAPMincho-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ipamp.ttf -ipa-IPAPMincho-bold-r-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipamp.ttf -ipa-IPAPMincho-medium-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipamp.ttf -ipa-IPAPMincho-bold-i-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.15:ipamp.ttf -ipa-IPAPMincho-medium-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.15:ipamp.ttf -ipa-IPAPMincho-bold-o-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipamp.ttf -ipa-IPAPMincho-medium-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipamp.ttf -ipa-IPAPMincho-bold-ri-normal--0-0-0-0-c-0-jisx0208.1983-0 ai=0.08:ipamp.ttf -ipa-IPAPMincho-medium-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 ds=y:ai=0.08:ipamp.ttf -ipa-IPAPMincho-bold-ro-normal--0-0-0-0-c-0-jisx0208.1983-0 bw=0.5:ipamp.ttf -ipa-IPAPMincho-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ipamp.ttf -ipa-IPAPMincho-bold-r-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipamp.ttf -ipa-IPAPMincho-medium-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipamp.ttf -ipa-IPAPMincho-bold-i-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.15:ipamp.ttf -ipa-IPAPMincho-medium-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.15:ipamp.ttf -ipa-IPAPMincho-bold-o-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipamp.ttf -ipa-IPAPMincho-medium-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipamp.ttf -ipa-IPAPMincho-bold-ri-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ai=0.08:ipamp.ttf -ipa-IPAPMincho-medium-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ds=y:ai=0.08:ipamp.ttf -ipa-IPAPMincho-bold-ro-normal--0-0-0-0-c-0-jisx0201.1976-0 bw=0.5:ipamp.ttf -ipa-IPAPMincho-medium-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipamp.ttf -ipa-IPAPMincho-medium-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.15:ipamp.ttf -ipa-IPAPMincho-medium-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipamp.ttf -ipa-IPAPMincho-medium-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ai=0.08:ipamp.ttf -ipa-IPAPMincho-medium-ro-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ipamp.ttf -ipa-IPAPMincho-bold-r-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipamp.ttf -ipa-IPAPMincho-bold-i-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.15:ipamp.ttf -ipa-IPAPMincho-bold-o-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipamp.ttf -ipa-IPAPMincho-bold-ri-normal--0-0-0-0-c-0-iso8859-1 bw=0.5:ds=y:ai=0.08:ipamp.ttf -ipa-IPAPMincho-bold-ro-normal--0-0-0-0-c-0-iso8859-1 SHAR_EOF (set 20 04 07 18 15 21 05 'ipa-ttf/files/fonts.dir.ipa'; eval "$shar_touch") && chmod 0644 'ipa-ttf/files/fonts.dir.ipa' || $echo 'restore of' 'ipa-ttf/files/fonts.dir.ipa' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/files/fonts.dir.ipa:' 'MD5 check failed' e840f0b03e7b569f9dfa91237e05934e ipa-ttf/files/fonts.dir.ipa SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/files/fonts.dir.ipa'`" test 12239 -eq "$shar_count" || $echo 'ipa-ttf/files/fonts.dir.ipa:' 'original size' '12239,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/Makefile ============== if test -f 'ipa-ttf/Makefile' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/Makefile' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/Makefile' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/Makefile' && # New ports collection makefile for: IPA TrueType fonts # Date created: 18 July 2004 # Whom: NAKATA, Maho # # $FreeBSD$ # X PORTNAME= ipa-ttf PORTVERSION= 20040718 CATEGORIES= japanese x11-fonts MASTER_SITES= http://www.grass-japan.org/FOSS4G/ipafonts/ DISTNAME= grass5.0.3_i686-pc-linux-i18n-ipafull-gnu_bin X MAINTAINER= maho@FreeBSD.org COMMENT= Freely available Japanese TrueType IPA fonts X USE_X_PREFIX= yes NO_BUILD= yes NO_PACKAGE= "in current situation, it is quite difficult to distribute the fonts only" X FONTSDIR= lib/X11/fonts/TrueType LOCALFONTSDIR= share/fonts/TrueType MAKE_ENV= FONTSDIR=${FONTSDIR} PLIST_SUB= FONTSDIR=${FONTSDIR} \ X LOCALFONTSDIR=${LOCALBASE}/${LOCALFONTSDIR} X WRKSRC= ${WRKDIR} X DOC_FILES= license-ipafonts.eucjp X do-install: X.if !exists(${PREFIX}/${FONTSDIR}) X @${ECHO} "*********************************************************" X @${ECHO} "Please add ${PREFIX}/${FONTSDIR} to your font path" X @${ECHO} "and load 'xtt' module in /etc/XF86Config." X @${ECHO} "*********************************************************" X ${MKDIR} ${PREFIX}/${FONTSDIR} X.endif X ${INSTALL_DATA} ${WRKSRC}/fonts/ipag.ttf \ X ${WRKSRC}/fonts/ipagp.ttf \ X ${WRKSRC}/fonts/ipagui.ttf \ X ${WRKSRC}/fonts/ipam.ttf \ X ${WRKSRC}/fonts/ipamp.ttf \ X ${FILESDIR}/fonts.dir.ipa \ X ${FILESDIR}/fonts.alias.ipa \ X ${PREFIX}/${FONTSDIR} X ${MKDIR} ${LOCALBASE}/${LOCALFONTSDIR} X ${LN} -s -f \ X ${PREFIX}/${FONTSDIR}/ipag.ttf \ X ${LOCALBASE}/${LOCALFONTSDIR}/ipag.ttf X ${LN} -s -f \ X ${PREFIX}/${FONTSDIR}/ipagp.ttf \ X ${LOCALBASE}/${LOCALFONTSDIR}/ipagp.ttf X ${LN} -s -f \ X ${PREFIX}/${FONTSDIR}/ipagui.ttf \ X ${LOCALBASE}/${LOCALFONTSDIR}/ipagui.ttf X ${LN} -s -f \ X ${PREFIX}/${FONTSDIR}/ipam.ttf \ X ${LOCALBASE}/${LOCALFONTSDIR}/ipam.ttf X ${LN} -s -f \ X ${PREFIX}/${FONTSDIR}/ipamp.ttf \ X ${LOCALBASE}/${LOCALFONTSDIR}/ipamp.ttf X X.for F in ${DOC_FILES} X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/${F} ${DOCSDIR} X.endfor X ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X X.include SHAR_EOF (set 20 04 07 18 15 40 32 'ipa-ttf/Makefile'; eval "$shar_touch") && chmod 0644 'ipa-ttf/Makefile' || $echo 'restore of' 'ipa-ttf/Makefile' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/Makefile:' 'MD5 check failed' 884b70f777658f7ec1b970978078e375 ipa-ttf/Makefile SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/Makefile'`" test 2070 -eq "$shar_count" || $echo 'ipa-ttf/Makefile:' 'original size' '2070,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/pkg-install ============== if test -f 'ipa-ttf/pkg-install' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/pkg-install' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/pkg-install' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/pkg-install' && #!/bin/sh # $FreeBSD$ X FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType if [ "$2" = "PRE-INSTALL" ]; then X echo "Please add ${FONTDIR} to your /etc/XF86Config file" X exit 0 fi cd ${FONTDIR} touch fonts.dir sed -e '/-ipa-/d' fonts.dir > fonts.dir.tmp numfonts=$(echo $(cat fonts.dir.tmp fonts.dir.ipa | wc -l) - 2 | bc) echo ${numfonts} > fonts.dir sed -e 1d fonts.dir.tmp >> fonts.dir sed -e 1d fonts.dir.ipa >> fonts.dir touch fonts.alias sed -e '/^-ipa-/d' fonts.alias > fonts.alias.tmp mv -f fonts.alias.tmp fonts.alias cat fonts.alias.ipa >> fonts.alias rm -f fonts.dir.tmp fonts.alias.tmp SHAR_EOF (set 20 04 07 18 15 23 53 'ipa-ttf/pkg-install'; eval "$shar_touch") && chmod 0755 'ipa-ttf/pkg-install' || $echo 'restore of' 'ipa-ttf/pkg-install' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/pkg-install:' 'MD5 check failed' 6c99ccdc371c9aadbecd65da42a5efc8 ipa-ttf/pkg-install SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/pkg-install'`" test 592 -eq "$shar_count" || $echo 'ipa-ttf/pkg-install:' 'original size' '592,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/pkg-descr ============== if test -f 'ipa-ttf/pkg-descr' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/pkg-descr' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/pkg-descr' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/pkg-descr' && IPA Font (freely downloadable) X WWW: http://www.grass-japan.org/FOSS4G/readme-grass-i18n-ipafonts.eucjp.htm SHAR_EOF (set 20 04 07 18 15 04 25 'ipa-ttf/pkg-descr'; eval "$shar_touch") && chmod 0644 'ipa-ttf/pkg-descr' || $echo 'restore of' 'ipa-ttf/pkg-descr' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/pkg-descr:' 'MD5 check failed' e1f50bad02fc069532883716def6a901 ipa-ttf/pkg-descr SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/pkg-descr'`" test 108 -eq "$shar_count" || $echo 'ipa-ttf/pkg-descr:' 'original size' '108,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/pkg-plist ============== if test -f 'ipa-ttf/pkg-plist' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/pkg-plist' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/pkg-plist' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/pkg-plist' && @comment $FreeBSD$ %%FONTSDIR%%/fonts.alias.ipa %%FONTSDIR%%/fonts.dir.ipa %%FONTSDIR%%/ipag.ttf %%FONTSDIR%%/ipagp.ttf %%FONTSDIR%%/ipagui.ttf %%FONTSDIR%%/ipam.ttf %%FONTSDIR%%/ipamp.ttf %%PORTDOCS%%/license-ipafonts.eucjp %%PORTDOCS%%@dirrm %%DOCSDIR%% @exec mkdir -p %%LOCALFONTSDIR%% @exec ln -s -f %D/%%FONTSDIR%%/ipag.ttf %%LOCALFONTSDIR%%/ipag.ttf @exec ln -s -f %D/%%FONTSDIR%%/ipagp.ttf %%LOCALFONTSDIR%%/ipagp.ttf @exec ln -s -f %D/%%FONTSDIR%%/ipagui.ttf %%LOCALFONTSDIR%%/ipagui.ttf @exec ln -s -f %D/%%FONTSDIR%%/ipam.ttf %%LOCALFONTSDIR%%/ipam.ttf @exec ln -s -f %D/%%FONTSDIR%%/ipamp.ttf %%LOCALFONTSDIR%%/ipamp.ttf @unexec rm -f %%LOCALFONTSDIR%%/ipag.ttf @unexec rm -f %%LOCALFONTSDIR%%/ipagp.ttf @unexec rm -f %%LOCALFONTSDIR%%/ipagui.ttf @unexec rm -f %%LOCALFONTSDIR%%/ipam.ttf @unexec rm -f %%LOCALFONTSDIR%%/ipamp.ttf @unexec rmdir %%LOCALFONTSDIR%% 2> /dev/null || true SHAR_EOF (set 20 04 07 18 15 41 14 'ipa-ttf/pkg-plist'; eval "$shar_touch") && chmod 0644 'ipa-ttf/pkg-plist' || $echo 'restore of' 'ipa-ttf/pkg-plist' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/pkg-plist:' 'MD5 check failed' 368ff19f7462c1cdb18b3f885baf7e13 ipa-ttf/pkg-plist SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/pkg-plist'`" test 906 -eq "$shar_count" || $echo 'ipa-ttf/pkg-plist:' 'original size' '906,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/pkg-deinstall ============== if test -f 'ipa-ttf/pkg-deinstall' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/pkg-deinstall' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/pkg-deinstall' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/pkg-deinstall' && #!/bin/sh # $FreeBSD$ X if [ "$2" != "DEINSTALL" ]; then X exit 0 fi FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType cd ${FONTDIR} sed -e '/-ipa-/d' fonts.dir > fonts.dir.tmp numfonts=$(echo $(cat fonts.dir.tmp | wc -l) - 1 | bc) echo ${numfonts} > fonts.dir sed -e 1d fonts.dir.tmp >> fonts.dir sed -e '/^-ipa-/d' fonts.alias > fonts.alias.tmp mv -f fonts.alias.tmp fonts.alias rm -f fonts.dir.tmp SHAR_EOF (set 20 04 07 18 15 03 07 'ipa-ttf/pkg-deinstall'; eval "$shar_touch") && chmod 0755 'ipa-ttf/pkg-deinstall' || $echo 'restore of' 'ipa-ttf/pkg-deinstall' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/pkg-deinstall:' 'MD5 check failed' 6b4e2f1a45d89112a23696a5f2d29d14 ipa-ttf/pkg-deinstall SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/pkg-deinstall'`" test 395 -eq "$shar_count" || $echo 'ipa-ttf/pkg-deinstall:' 'original size' '395,' 'current size' "$shar_count!" fi fi # ============= ipa-ttf/distinfo ============== if test -f 'ipa-ttf/distinfo' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'ipa-ttf/distinfo' '(file already exists)' else $echo 'x -' extracting 'ipa-ttf/distinfo' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'ipa-ttf/distinfo' && MD5 (grass5.0.3_i686-pc-linux-i18n-ipafull-gnu_bin.tar.gz) = 38358c8d9e083f5e68dd403113b849ef SIZE (grass5.0.3_i686-pc-linux-i18n-ipafull-gnu_bin.tar.gz) = 47275548 SHAR_EOF (set 20 04 07 18 14 32 09 'ipa-ttf/distinfo'; eval "$shar_touch") && chmod 0644 'ipa-ttf/distinfo' || $echo 'restore of' 'ipa-ttf/distinfo' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'ipa-ttf/distinfo:' 'MD5 check failed' 9e21008b2d5765a64f8035308f6f9f49 ipa-ttf/distinfo SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'ipa-ttf/distinfo'`" test 165 -eq "$shar_count" || $echo 'ipa-ttf/distinfo:' 'original size' '165,' 'current size' "$shar_count!" fi fi rm -fr _sh44700 exit 0 >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 07: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 1AB6216A4CF for ; Sun, 18 Jul 2004 07:00:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C66E43D1D for ; Sun, 18 Jul 2004 07:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I70lfA097341 for ; Sun, 18 Jul 2004 07:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I70lXc097340; Sun, 18 Jul 2004 07:00:47 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 07:00:47 GMT Resent-Message-Id: <200407180700.i6I70lXc097340@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, UMENO Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3580916A4CE for ; Sun, 18 Jul 2004 06:58:17 +0000 (GMT) Received: from belldandy.unnumbered.net (gateway.unnumbered.net [61.197.240.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7730443D48 for ; Sun, 18 Jul 2004 06:58:14 +0000 (GMT) (envelope-from umeno@belldandy.unnumbered.net) Received: from belldandy.unnumbered.net (localhost.unnumbered.net [127.0.0.1]) i6I6wCAI080674 for ; Sun, 18 Jul 2004 15:58:12 +0900 (JST) (envelope-from umeno@belldandy.unnumbered.net) Received: (from umeno@localhost)i6I6wCcp080673; Sun, 18 Jul 2004 15:58:12 +0900 (JST) (envelope-from umeno) Message-Id: <200407180658.i6I6wCcp080673@belldandy.unnumbered.net> Date: Sun, 18 Jul 2004 15:58:12 +0900 (JST) From: UMENO Takashi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69232: Maintainer Update: graphics/zphoto to 1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: UMENO Takashi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 07:00:48 -0000 >Number: 69232 >Category: ports >Synopsis: Maintainer Update: graphics/zphoto to 1.1 >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 Jul 18 07:00:47 GMT 2004 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 4.10-STABLE i386 >Organization: individual >Environment: System: FreeBSD belldandy.unnumbered.net 4.10-STABLE FreeBSD 4.10-STABLE #0: Tue Jul 13 05:35:24 JST 2004 umeno@belldandy.unnumbered.net:/usr/src/sys/compile/SAKUYA22 i386 >Description: Maintainer Update: graphics/zphoto to 1.1 New file: files/patch-templates::default::all::Makefile.in add knobs: WITHOUT_AVIPLAY. WITHOUT_ZIP >How-To-Repeat: N/A >Fix: diff -urN zphoto.orig/Makefile zphoto/Makefile --- zphoto.orig/Makefile Tue May 11 07:42:34 2004 +++ zphoto/Makefile Sun Jul 18 13:48:55 2004 @@ -6,7 +6,7 @@ # PORTNAME= zphoto -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= graphics www MASTER_SITES= http://namazu.org/~satoru/zphoto/ MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,33 +16,42 @@ LIB_DEPENDS= ming.3:${PORTSDIR}/graphics/ming \ Imlib2.2:${PORTSDIR}/graphics/imlib2 \ - popt.0:${PORTSDIR}/devel/popt \ - aviplay.0:${PORTSDIR}/multimedia/avifile + popt.0:${PORTSDIR}/devel/popt +.if !defined (WITHOUT_AVIPLAY) +LIB_DEPENDS+= aviplay.0:${PORTSDIR}/multimedia/avifile +.endif .if defined (WITH_WXGTK) LIB_DEPENDS+= wx_gtk-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk .elif defined (WITH_WXGTK2) LIB_DEPENDS+= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 .endif +.if !defined (WITHOUT_ZIP) RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip +.endif USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ CPPFLAGS="-I${LOCALBASE}/include \ ${PTHREAD_CFLAGS}" -.if defined (WITH_WXGTK) || (WITH_WXGTK2) +.if defined (WITH_WXGTK) +CONFIGURE_ARGS+= --with-wx-config=wxgtk-2.4-config PLIST+= ${PKGDIR}/pkg-plist.wxzphoto +.elif defined (WITH_WXGTK2) +CONFIGURE_ARGS+= --with-wx-config=wxgtk2-2.4-config .else -CONFIGURE_ARGS= --disable-wx +CONFIGURE_ARGS+= --disable-wx +.endif +.if defined (WITHOUT_AVIPLAY) +CONFIGURE_ARGS+= --disable-avifile +.endif +.if defined (WITHOUT_ZIP) +CONFIGURE_ARGS+= --disable-zip .endif USE_GMAKE= yes USE_XLIB= yes post-patch: @${REINPLACE_CMD} -e 's|||g' ${WRKSRC}/*.c ${WRKSRC}/configure -.if defined (WITH_WXGTK) - @${REINPLACE_CMD} -e 's|wxgtk2-config||g' -e 's|wxgtk2-2.5-config||g' -e 's|wxgtk2-2.4-config||g' ${WRKSRC}/configure -.elif defined (WITH_WXGTK2) - @${REINPLACE_CMD} -e 's|wx-config||g' -e 's|wxgtk-config||g' ${WRKSRC}/configure -.endif + .include diff -urN zphoto.orig/distinfo zphoto/distinfo --- zphoto.orig/distinfo Tue May 11 07:42:34 2004 +++ zphoto/distinfo Wed Jul 7 07:26:00 2004 @@ -1,2 +1,2 @@ -MD5 (zphoto-1.0.tar.gz) = 7cba659b913468124b664bcde52efece -SIZE (zphoto-1.0.tar.gz) = 419086 +MD5 (zphoto-1.1.tar.gz) = 20df560de202e188e383c22db9a3f637 +SIZE (zphoto-1.1.tar.gz) = 412429 diff -urN zphoto.orig/files/patch-templates::default::all::Makefile.in zphoto/files/patch-templates::default::all::Makefile.in --- zphoto.orig/files/patch-templates::default::all::Makefile.in Thu Jan 1 09:00:00 1970 +++ zphoto/files/patch-templates::default::all::Makefile.in Sat Jul 17 21:52:23 2004 @@ -0,0 +1,14 @@ +--- templates/default/all/Makefile.in.orig Tue Jul 6 01:48:10 2004 ++++ templates/default/all/Makefile.in Sat Jul 17 21:49:48 2004 +@@ -363,7 +363,10 @@ + + all: zphoto.css .photo.html + @perl -e 'while (($$f = shift)) { $$f =~ m!.*/([^/]*)/([^/]*)$$!; \ +- print "cp -p $$f $$2.$$1\n"}' $(top_srcdir)/templates/default/*/*.{html,js}\ ++ print "cp -p $$f $$2.$$1\n"}' $(top_srcdir)/templates/default/*/*.html\ ++ | sh ++ @perl -e 'while (($$f = shift)) { $$f =~ m!.*/([^/]*)/([^/]*)$$!; \ ++ print "cp -p $$f $$2.$$1\n"}' $(top_srcdir)/templates/default/*/*.js\ + | sh + + install-data-local: diff -urN zphoto.orig/pkg-plist zphoto/pkg-plist --- zphoto.orig/pkg-plist Tue May 11 07:42:34 2004 +++ zphoto/pkg-plist Sun Jul 18 00:15:21 2004 @@ -5,12 +5,14 @@ share/zphoto/templates/default/en/zphoto.css share/zphoto/templates/default/en/flash-colors.txt share/zphoto/templates/default/en/css-colors.txt +share/zphoto/templates/default/en/zoom.js share/zphoto/templates/default/ja/.photo.html share/zphoto/templates/default/ja/index.html share/zphoto/templates/default/ja/noflash.html share/zphoto/templates/default/ja/zphoto.css share/zphoto/templates/default/ja/flash-colors.txt share/zphoto/templates/default/ja/css-colors.txt +share/zphoto/templates/default/ja/zoom.js share/zphoto/templates/default/all/.photo.html share/zphoto/templates/default/all/zphoto.css share/zphoto/templates/default/all/index.html.en @@ -19,8 +21,14 @@ share/zphoto/templates/default/all/noflash.html.ja share/zphoto/templates/default/all/flash-colors.txt share/zphoto/templates/default/all/css-colors.txt +share/zphoto/templates/default/all/zoom.js.en +share/zphoto/templates/default/all/zoom.js.ja share/zphoto/doc/zphoto-ja.html share/zphoto/doc/zphoto.html +share/zphoto/doc/images/wxzphoto-linux-mini.png +share/zphoto/doc/images/wxzphoto-linux.png +share/zphoto/doc/images/wxzphoto-mini.png +share/zphoto/doc/images/wxzphoto.png share/zphoto/fonts/EfontSerifB.fdb share/locale/ja/LC_MESSAGES/zphoto.mo share/locale/ja_JP.SJIS/LC_MESSAGES/zphoto.mo @@ -30,5 +38,6 @@ @dirrm share/zphoto/templates/default @dirrm share/zphoto/templates @dirrm share/zphoto/fonts +@dirrm share/zphoto/doc/images @dirrm share/zphoto/doc @dirrm share/zphoto >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 07: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 016CA16A4CE for ; Sun, 18 Jul 2004 07:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D83DF43D58 for ; Sun, 18 Jul 2004 07:20:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6I7KNuh005836 for ; Sun, 18 Jul 2004 07:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I7KN2C005835; Sun, 18 Jul 2004 07:20:23 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 07:20:23 GMT Resent-Message-Id: <200407180720.i6I7KN2C005835@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edwin Groothuis Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E35416A4CE; Sun, 18 Jul 2004 07:19:10 +0000 (GMT) Received: from mailout2.barnet.com.au (mailout2.barnet.com.au [218.185.88.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5949043D4C; Sun, 18 Jul 2004 07:19:09 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mailout2.barnet.com.au (Postfix, from userid 27) id D25C370747D; Sun, 18 Jul 2004 17:19:07 +1000 (EST) Received: from mail2-auth.barnet.com.au (localhost.barnet.com.au [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 94427707459; Sun, 18 Jul 2004 17:19:07 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 108A470744E; Sun, 18 Jul 2004 17:19:07 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 11F6B619A; Sun, 18 Jul 2004 17:19:06 +1000 (EST) Message-Id: <20040718071906.11F6B619A@k7.mavetju> Date: Sun, 18 Jul 2004 17:19:06 +1000 (EST) From: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: nabby@FreeBSD.org Subject: ports/69233: [patch] net/openntpd man-page path-fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 07:20:24 -0000 >Number: 69233 >Category: ports >Synopsis: [patch] net/openntpd man-page path-fixes >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 Jul 18 07:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #3: Fri Feb 27 13:54:29 EST 2004 edwin@k7.mavetju:/usr/src/sys/i386/compile/k7 i386 >Description: - man 8 ntpd and man 5 ntpd.conf says: FILES /etc/ntpd.conf ntpd configuration file. >How-To-Repeat: >Fix: --- ntpd.8.orig Thu Jul 15 20:16:28 2004 +++ ntpd.8 Sun Jul 18 10:32:07 2004 @@ -70,11 +70,11 @@ .Ar file as the configuration file, instead of the default -.Pa /etc/ntpd.conf . +.Pa %%LOCALBASE%%/etc/ntpd.conf . .El .Sh FILES -.Bl -tag -width "/etc/ntpd.confXXX" -compact -.It Pa /etc/ntpd.conf +.Bl -tag -width "%%LOCALBASE%%/etc/ntpd.confXXX" -compact +.It Pa %%LOCALBASE%%/etc/ntpd.conf default .Nm configuration file --- ntpd.conf.5.orig Sun Jul 18 10:27:55 2004 +++ ntpd.conf.5 Sun Jul 18 10:28:35 2004 @@ -80,8 +80,8 @@ .Ed .El .Sh FILES -.Bl -tag -width "/etc/ntpd.confXXX" -compact -.It Pa /etc/ntpd.conf +.Bl -tag -width "%%LOCALBASE%%/etc/ntpd.confXXX" -compact +.It Pa %%LOCALBASE%%/etc/ntpd.conf default .Xr ntpd 8 configuration file note that this are actually patches against the 20040716p version. And this to the Makefile: USE_REINPLACE= yes post-patch: ${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' \ ${WRKSRC}/ntpd.conf.5 \ ${WRKSRC}/ntpd.8 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 07:31: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 E46A616A4CE; Sun, 18 Jul 2004 07:31:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C671243D5C; Sun, 18 Jul 2004 07:31:00 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6I7V0kM009541; Sun, 18 Jul 2004 07:31:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I7V01N009537; Sun, 18 Jul 2004 07:31:00 GMT (envelope-from edwin) Date: Sun, 18 Jul 2004 07:31:00 GMT From: Edwin Groothuis Message-Id: <200407180731.i6I7V01N009537@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, naddy@FreeBSD.org Subject: Re: ports/69233: [patch] net/openntpd man-page path-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: Sun, 18 Jul 2004 07:31:01 -0000 Synopsis: [patch] net/openntpd man-page path-fixes Responsible-Changed-From-To: freebsd-ports-bugs->naddy Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jul 18 07:30:33 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69233 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 09:58: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 BD1CE16A4CE; Sun, 18 Jul 2004 09:58:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D31F43D45; Sun, 18 Jul 2004 09:58:24 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6I9wOQQ082247; Sun, 18 Jul 2004 09:58:24 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I9wOVf082243; Sun, 18 Jul 2004 09:58:24 GMT (envelope-from vanilla) Date: Sun, 18 Jul 2004 09:58:24 GMT From: "Vanilla I. Shu" Message-Id: <200407180958.i6I9wOVf082243@freefall.freebsd.org> To: elvis@sslab.cs.ccu.edu.tw, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69226: New port: textproc/p5-Spork module for creating standalone HTML slideshows X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 09:58:24 -0000 Synopsis: New port: textproc/p5-Spork module for creating standalone HTML slideshows State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sun Jul 18 09:58:16 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69226 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 09:59: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 DEE0116A4CF; Sun, 18 Jul 2004 09:59:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFCA443D46; Sun, 18 Jul 2004 09:59:53 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6I9xrZH089520; Sun, 18 Jul 2004 09:59:53 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6I9xrS6089513; Sun, 18 Jul 2004 09:59:53 GMT (envelope-from vanilla) Date: Sun, 18 Jul 2004 09:59:53 GMT From: "Vanilla I. Shu" Message-Id: <200407180959.i6I9xrS6089513@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69222: [maintainer-update] textproc/p5-WordNet-Similarity to 0.09 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 09:59:54 -0000 Synopsis: [maintainer-update] textproc/p5-WordNet-Similarity to 0.09 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sun Jul 18 09:59:40 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69222 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 10:01: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 A37C216A4CE; Sun, 18 Jul 2004 10:01:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 860FF43D39; Sun, 18 Jul 2004 10:01:21 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6IA1LwZ097314; Sun, 18 Jul 2004 10:01:21 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IA1LZE097310; Sun, 18 Jul 2004 10:01:21 GMT (envelope-from vanilla) Date: Sun, 18 Jul 2004 10:01:21 GMT From: "Vanilla I. Shu" Message-Id: <200407181001.i6IA1LZE097310@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sergei@FreeBSD.org Subject: Re: ports/69224: [patch-request] porttools doesn't work in p5-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 10:01:21 -0000 Synopsis: [patch-request] porttools doesn't work in p5-* Responsible-Changed-From-To: freebsd-ports-bugs->sergei Responsible-Changed-By: vanilla Responsible-Changed-When: Sun Jul 18 10:00:53 GMT 2004 Responsible-Changed-Why: Assign to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69224 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 10:26: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 CBD0C16A4CE; Sun, 18 Jul 2004 10:26:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE30643D41; Sun, 18 Jul 2004 10:26:21 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from freefall.freebsd.org (lth@localhost [127.0.0.1]) i6IAQLcr017743; Sun, 18 Jul 2004 10:26:21 GMT (envelope-from lth@freefall.freebsd.org) Received: (from lth@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IAQLJs017739; Sun, 18 Jul 2004 10:26:21 GMT (envelope-from lth) Date: Sun, 18 Jul 2004 10:26:21 GMT From: Lars Thegler Message-Id: <200407181026.i6IAQLJs017739@freefall.freebsd.org> To: clsung@dragon2.net, lth@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69230: [MAINTAINER] mail/Mail-Mbox-MessageParser: update to 1.20 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 10:26:21 -0000 Synopsis: [MAINTAINER] mail/Mail-Mbox-MessageParser: update to 1.20 State-Changed-From-To: open->closed State-Changed-By: lth State-Changed-When: Sun Jul 18 10:26:13 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69230 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 11:18: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 9CBE516A4CE; Sun, 18 Jul 2004 11:18:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80EAB43D31; Sun, 18 Jul 2004 11:18:42 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6IBIgHv023698; Sun, 18 Jul 2004 11:18:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IBIgwc023694; Sun, 18 Jul 2004 11:18:42 GMT (envelope-from edwin) Date: Sun, 18 Jul 2004 11:18:42 GMT From: Edwin Groothuis Message-Id: <200407181118.i6IBIgwc023694@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68054: [NEW PORT] archivers/bsdtar X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 11:18:42 -0000 Synopsis: [NEW PORT] archivers/bsdtar State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Sun Jul 18 11:18:22 GMT 2004 State-Changed-Why: Commited with some minor changes to the patch files Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=68054 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 11:45: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 854C616A4CE; Sun, 18 Jul 2004 11:45:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6963243D1D; Sun, 18 Jul 2004 11:45:39 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6IBjdeB025768; Sun, 18 Jul 2004 11:45:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IBjajW025764; Sun, 18 Jul 2004 11:45:36 GMT (envelope-from edwin) Date: Sun, 18 Jul 2004 11:45:36 GMT From: Edwin Groothuis Message-Id: <200407181145.i6IBjajW025764@freefall.freebsd.org> To: bugghy@phenix.rootshell.be, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/67900: New port: sysutils/jail Builds a chrooted environment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 11:45:39 -0000 Synopsis: New port: sysutils/jail Builds a chrooted environment State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jul 18 11:45:32 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=67900 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 11: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 B501E16A4CE for ; Sun, 18 Jul 2004 11:50:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC33043D62 for ; Sun, 18 Jul 2004 11:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IBoGsb025876 for ; Sun, 18 Jul 2004 11:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IBoGYN025870; Sun, 18 Jul 2004 11:50:16 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 11:50:16 GMT Resent-Message-Id: <200407181150.i6IBoGYN025870@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Torfinn Ingolfsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AC5F16A4CE for ; Sun, 18 Jul 2004 11:49:27 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C46FB43D45 for ; Sun, 18 Jul 2004 11:49:26 +0000 (GMT) (envelope-from tingo@start.no) Received: from kg-work.kg4.no (68.80-202-174.nextgentel.com [80.202.174.68]) by mail.broadpark.no (Postfix) with ESMTP id EB67F1C3A for ; Sun, 18 Jul 2004 13:49:56 +0200 (MEST) Message-Id: <1090151366.0@kg-work.kg4.no> Date: Sun, 18 Jul 2004 13:49:26 +0200 From: "Torfinn Ingolfsen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/69236: portindex is missing a packing list (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, 18 Jul 2004 11:50:16 -0000 >Number: 69236 >Category: ports >Synopsis: portindex is missing a packing list (pkg-plist) >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 Jul 18 11:50:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Torfinn Ingolfsen >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: 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 python-2.3.4_1 portindex-15 >Description: The Porters Handbook requires any port to have a packing list. But portindex doesn't have one. >How-To-Repeat: - cvsup ports - check /usr/ports/sysutils/portindex >Fix: See http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-desc.html and http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-autoplist.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 11:51: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 C032116A4CF; Sun, 18 Jul 2004 11:51:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FFE843D5D; Sun, 18 Jul 2004 11:51:37 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6IBpbqF026035; Sun, 18 Jul 2004 11:51:37 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IBpbZC026031; Sun, 18 Jul 2004 11:51:37 GMT (envelope-from krion) Date: Sun, 18 Jul 2004 11:51:37 GMT From: Kirill Ponomarew Message-Id: <200407181151.i6IBpbZC026031@freefall.freebsd.org> To: tingo@start.no, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69236: portindex is missing a packing list (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, 18 Jul 2004 11:51:37 -0000 Synopsis: portindex is missing a packing list (pkg-plist) State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Jul 18 11:51:10 GMT 2004 State-Changed-Why: pkg-plist isn't mandatory nowadays. http://www.freebsd.org/cgi/query-pr.cgi?pr=69236 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 11:59: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 8DFEB16A4CE; Sun, 18 Jul 2004 11:59:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 734DC43D45; Sun, 18 Jul 2004 11:59:56 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) i6IBxuUQ026236; Sun, 18 Jul 2004 11:59:56 GMT (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IBxueR026232; Sun, 18 Jul 2004 11:59:56 GMT (envelope-from nork) Date: Sun, 18 Jul 2004 11:59:56 GMT From: Norikatsu Shigemura Message-Id: <200407181159.i6IBxueR026232@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, maho@FreeBSD.org Subject: Re: ports/69231: IPA Japanese truetype font X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 11:59:56 -0000 Synopsis: IPA Japanese truetype font Responsible-Changed-From-To: freebsd-ports-bugs->maho Responsible-Changed-By: nork Responsible-Changed-When: Sun Jul 18 11:59:33 GMT 2004 Responsible-Changed-Why: Now working... http://www.freebsd.org/cgi/query-pr.cgi?pr=69231 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 12: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 BBC6A16A4E8; Sun, 18 Jul 2004 12:04:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E00C43D2F; Sun, 18 Jul 2004 12:04:50 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6IC4oGi026568; Sun, 18 Jul 2004 12:04:50 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IC4o1E026564; Sun, 18 Jul 2004 12:04:50 GMT (envelope-from edwin) Date: Sun, 18 Jul 2004 12:04:50 GMT From: Edwin Groothuis Message-Id: <200407181204.i6IC4o1E026564@freefall.freebsd.org> To: jylefort@brutele.be, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/67814: New port: desktop-file-utils, a couple of command line utilities for working with desktop entries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 12:04:50 -0000 Synopsis: New port: desktop-file-utils, a couple of command line utilities for working with desktop entries State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jul 18 12:04:45 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=67814 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 12:22: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 2564816A4F6; Sun, 18 Jul 2004 12:22:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06E3143D1F; Sun, 18 Jul 2004 12:22:55 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6ICMsIC030787; Sun, 18 Jul 2004 12:22:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ICMsRO030783; Sun, 18 Jul 2004 12:22:54 GMT (envelope-from edwin) Date: Sun, 18 Jul 2004 12:22:54 GMT From: Edwin Groothuis Message-Id: <200407181222.i6ICMsRO030783@freefall.freebsd.org> To: jose@jose.idv.tw, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/65770: New port: www/simplog: A simple php weblog X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 12:22:55 -0000 Synopsis: New port: www/simplog: A simple php weblog State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Jul 18 12:22:51 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=65770 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 12: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 8AD1D16A4CE for ; Sun, 18 Jul 2004 12:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8105243D31 for ; Sun, 18 Jul 2004 12:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6ICeKW8032185 for ; Sun, 18 Jul 2004 12:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ICeKUi032184; Sun, 18 Jul 2004 12:40:20 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 12:40:20 GMT Resent-Message-Id: <200407181240.i6ICeKUi032184@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Xin LI Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE3B116A4CE for ; Sun, 18 Jul 2004 12:30:36 +0000 (GMT) Received: from mail.FreeBSD.org.cn (dns3.freebsd.org.cn [61.129.66.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3662643D39 for ; Sun, 18 Jul 2004 12:30:35 +0000 (GMT) (envelope-from delphij@frontfree.net) Received: (qmail 9279 invoked by uid 0); 18 Jul 2004 12:28:40 -0000 Received: from unknown (HELO beastie.frontfree.net) (218.107.145.7) by mail.FreeBSD.org.cn with AES256-SHA encrypted SMTP; 18 Jul 2004 12:28:40 -0000 Received: from localhost (localhost.frontfree.net [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id 17BB811CD3; Sun, 18 Jul 2004 20:28:04 +0800 (CST) Received: from beastie.frontfree.net ([127.0.0.1]) by localhost (beastie.frontfree.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02883-04; Sun, 18 Jul 2004 20:28:03 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id 32AAB11CB4; Sun, 18 Jul 2004 20:28:03 +0800 (CST) Message-Id: <20040718122803.32AAB11CB4@beastie.frontfree.net> Date: Sun, 18 Jul 2004 20:28:03 +0800 (CST) From: Xin LI To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: liukang@bjut.edu.cn Subject: ports/69237: [PATCH] Update www/phpbb to 2.0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Xin LI List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 12:40:21 -0000 >Number: 69237 >Category: ports >Synopsis: [PATCH] Update www/phpbb to 2.0.10 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 12:40:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Xin LI >Release: FreeBSD 5.2-delphij i386 >Organization: The FreeBSD Simplified Chinese Project >Environment: System: FreeBSD beastie.frontfree.net 5.2-delphij FreeBSD 5.2-delphij #80: Thu Jun 24 17:30:33 CST 2004 delphij@beastie.frontfree.net:/usr/obj/usr/src/sys/BEASTIE i386 >Description: http://www.phpbb.com/phpBB/viewtopic.php?f=14&t=211081 The major benefit of this change is to make phpbb compatible with recently released PHP 5.0. >How-To-Repeat: N/A >Fix: Apply this patch --- patch-phpbb begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/phpbb/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- Makefile 14 Jul 2004 15:17:43 -0000 1.25 +++ Makefile 18 Jul 2004 12:20:08 -0000 @@ -6,7 +6,7 @@ # PORTNAME= phpbb -PORTVERSION= 2.0.9 +PORTVERSION= 2.0.10 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -35,8 +35,9 @@ NO_BUILD= yes USE_REINPLACE= yes PKGMESSAGE= ${WRKDIR}/pkg-message +PHPBB_VER= ${PORTVERSION:S/.0.//g:S/.//g} PLIST_SUB+= PHPBBDIR=${PHPBBDIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} -PLIST_SUB+= PHPBB_VER=${PORTVERSION:S/.//g} +PLIST_SUB+= PHPBB_VER=${PHPBB_VER} # Set custom variables: # @@ -44,7 +45,7 @@ PKGOPTS= ${FILESDIR}/pkg-opts EXCEPTFILES= ${PREFIX}/${PHPBBDIR}/install/install.php \ ${PREFIX}/${PHPBBDIR}/install/upgrade.php \ - ${PREFIX}/${PHPBBDIR}/install/update_to_${PORTVERSION:S/.//g}.php + ${PREFIX}/${PHPBBDIR}/install/update_to_${PHPBB_VER}.php options: @ ${ECHO_MSG} "===> Build options for ${PKGNAME}:" --- patch-phpbb ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 12: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 F130D16A4CE for ; Sun, 18 Jul 2004 12:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D141F43D1D for ; Sun, 18 Jul 2004 12:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6ICeLiN032198 for ; Sun, 18 Jul 2004 12:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ICeLwm032197; Sun, 18 Jul 2004 12:40:21 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 12:40:21 GMT Resent-Message-Id: <200407181240.i6ICeLwm032197@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Torfinn Ingolfsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE93516A4CE for ; Sun, 18 Jul 2004 12:37:16 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E62943D2F for ; Sun, 18 Jul 2004 12:37:16 +0000 (GMT) (envelope-from tingo@start.no) Received: from kg-work.kg4.no (68.80-202-174.nextgentel.com [80.202.174.68]) by mail.broadpark.no (Postfix) with ESMTP id EC74A1BDF for ; Sun, 18 Jul 2004 14:37:46 +0200 (MEST) Message-Id: <1090154236.0@kg-work.kg4.no> Date: Sun, 18 Jul 2004 14:37:16 +0200 From: "Torfinn Ingolfsen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/69238: portindex fails to build a INDEX 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: Sun, 18 Jul 2004 12:40:22 -0000 >Number: 69238 >Category: ports >Synopsis: portindex fails to build a INDEX 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: Sun Jul 18 12:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Torfinn Ingolfsen >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: 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 python-2.3.4_1 portindex-15 >Description: After cvsup today (July 18th, 2004), portindex fails to build a useful INDEX file (it is empty). Error are like this: Loading status data ... ok! Checking ports tree for changes. Abort with CTRL-C. Updating portinfo for /usr/ports/accessibility/at-spi Failed to extract describe information from /usr/ports/accessibility/at-spi Updating portinfo for /usr/ports/accessibility/atk Failed to extract describe information from /usr/ports/accessibility/atk ... ... Removing port /usr/ports/net/p5-SOAP-Lite from database Removing port /usr/ports/devel/ruby-rbprof from database Removing port /usr/ports/net-mgmt/nsc from database Removing port /usr/ports/x11-fonts/xorg-fonts-type1 from database Removing port /usr/ports/devel/libusb from database Removing port /usr/ports/emulators/linux-vmware-toolbox4 from database Removing port /usr/ports/comms/mlan from database Removing port /usr/ports/emulators/linux-vmware-toolbox2 from database Removing port /usr/ports/games/xblackjack from database Saving status data ... ok! Expanding dependences ... done Building /usr/ports/INDEX-5 0 total entries 0 duplicated entries discarded 0 ports with unresolved depends kept Why it fails to extract, I don't know. But I guess that is the reason for the 'Removing port ..' lines. >How-To-Repeat: - cvsup ports - run 'portindex' >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 14:00: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 5EB1616A4CF for ; Sun, 18 Jul 2004 14:00:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52C8D43D48 for ; Sun, 18 Jul 2004 14:00:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IE0X9q039274 for ; Sun, 18 Jul 2004 14:00:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IE0XxE039273; Sun, 18 Jul 2004 14:00:33 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 14:00:33 GMT Resent-Message-Id: <200407181400.i6IE0XxE039273@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, zhuravlev alexander Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5509016A4CE for ; Sun, 18 Jul 2004 13:51:15 +0000 (GMT) Received: from ns.ulstu.ru (ns.ulstu.ru [62.76.34.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id A07DA43D46 for ; Sun, 18 Jul 2004 13:51:09 +0000 (GMT) (envelope-from zaa@ulstu.ru) Received: from orion.ulstu.ru (orion.ulstu.ru [62.76.34.33]) by ns.ulstu.ru (Postfix) with ESMTP id 5CE8D94 for ; Sun, 18 Jul 2004 17:51:07 +0400 (MSD) Received: from localhost (localhost [127.0.0.1]) by orion.ulstu.ru (Postfix) with ESMTP id 3C9B3EEA for ; Sun, 18 Jul 2004 17:51:07 +0400 (MSD) Received: from orion.ulstu.ru ([127.0.0.1]) by localhost (orion.ulstu.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 67983-06 for ; Sun, 18 Jul 2004 17:51:05 +0400 (MSD) Received: by orion.ulstu.ru (Postfix, from userid 3909) id 7DE967EB; Sun, 18 Jul 2004 17:51:05 +0400 (MSD) Message-Id: <20040718135105.7DE967EB@orion.ulstu.ru> Date: Sun, 18 Jul 2004 17:51:05 +0400 (MSD) From: zhuravlev alexander To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69239: [MAINTAINER UPDATE] security/drweb-postfix up to 4.31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: zhuravlev alexander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 14:00:33 -0000 >Number: 69239 >Category: ports >Synopsis: [MAINTAINER UPDATE] security/drweb-postfix up to 4.31 >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 Jul 18 14:00:32 GMT 2004 >Closed-Date: >Last-Modified: >Originator: zhuravlev alexander >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD orion.ulstu.ru 4.10-STABLE FreeBSD 4.10-STABLE #11: Mon Jun 14 18:16:17 MSD 2004 root@orion.ulstu.ru:/usr/obj/usr/src/sys/ORION i386 >Description: Update of drweb-postfix up to 4.31 >How-To-Repeat: >Fix: --- drweb_postfix.diff begins here --- diff -urbBN drweb-postfix.orig/Makefile drweb-postfix/Makefile --- drweb-postfix.orig/Makefile Tue Jun 29 19:28:28 2004 +++ drweb-postfix/Makefile Sun Jul 18 17:35:40 2004 @@ -2,32 +2,32 @@ # Date created: 5 December 2002 # Whom: zhuravlev alexander # -# $FreeBSD: ports/security/drweb-postfix/Makefile,v 1.8 2004/06/29 15:28:28 adamw Exp $ +# $FreeBSD$ # PORTNAME= drweb_postfix -PORTVERSION= 4.29.12f +PORTVERSION= 4.31 CATEGORIES= security mail MASTER_SITES= ftp://ftp.drweb.ru/pub/unix/ \ ftp://ftp.drweb.ru/pub/unix/archive/ \ - ftp://ftp.drweb.ru/pub/unix/archive/drweb-clients-4.29.12/ -DISTNAME= drweb-clients-4.29.12-F-sources + ftp://ftp.drweb.ru/pub/unix/archive/drweb-clients-${PORTVERSION}/ +DISTNAME= drweb-clients-${PORTVERSION}-sources MAINTAINER= zaa@ulstu.ru COMMENT= Postfix message filter for virus processing through DrWeb daemon +BUILD_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash2 RUN_DEPENDS= ${LOCALBASE}/drweb/drwebd:${PORTSDIR}/security/drweb WRKSRC= ${WRKDIR}/${DISTNAME} INST_PREFIX= ${PREFIX}/${PORTNAME} -DOC_DIR= ${PREFIX}/share/doc/drweb-postfix LANGS=en-ru CONFS=drweb_postfix users viruses addresses TMPLS=archive-admin archive-sender error-admin error-sender skip-sender \ virus-admin virus-rcpts virus-sender rule-admin -DOCS=addresses_list.rus.txt addresses_list.txt conf_file.rus.txt \ +DOCS=FAQ.rus.txt addresses_list.rus.txt addresses_list.txt conf_file.rus.txt \ conf_file.txt notify.rus.txt notify.txt readme readme.rus \ users_list.rus.txt users_list.txt viruses_list.rus.txt viruses_list.txt @@ -56,7 +56,6 @@ } | ./configure do-install: - ${MKDIR} ${DOC_DIR} .for LANG in ${LANGS} ${MKDIR} ${PREFIX}/etc/drweb/templates/${LANG}/postfix .endfor @@ -81,14 +80,17 @@ .endfor ${INSTALL_PROGRAM} ${WRKSRC}/drweb-postfix ${PREFIX}/sbin/ ${INSTALL_PROGRAM} ${WRKSRC}/drwebdc ${PREFIX}/sbin/ +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} cd ${WRKSRC}/doc/postfix && \ - ${INSTALL_DATA} ${DOCS} ${DOC_DIR} + ${INSTALL_DATA} ${DOCS} ${DOCSDIR} +.endif post-install: @${CAT} ${PKGMESSAGE} - @echo - @echo "Read documentation about additional Postfix tuning needed" - @echo "in ${DOC_DIR}." - @echo + @${ECHO} + @${ECHO} "Read documentation about additional Postfix tuning needed" + @${ECHO} "in ${DOC_DIR}." + @${ECHO} .include diff -urbBN drweb-postfix.orig/distinfo drweb-postfix/distinfo --- drweb-postfix.orig/distinfo Thu Mar 18 21:00:56 2004 +++ drweb-postfix/distinfo Sun Jul 18 17:01:26 2004 @@ -1,2 +1,2 @@ -MD5 (drweb-clients-4.29.12-F-sources.tar.gz) = 5736324a8aa3053f4848ec25783bd494 -SIZE (drweb-clients-4.29.12-F-sources.tar.gz) = 338133 +MD5 (drweb-clients-4.31-sources.tar.gz) = 7215ff50a75d088eab210bcdb257effe +SIZE (drweb-clients-4.31-sources.tar.gz) = 537926 diff -urbBN drweb-postfix.orig/files/patch-aa drweb-postfix/files/patch-aa --- drweb-postfix.orig/files/patch-aa Tue Mar 4 07:16:53 2003 +++ drweb-postfix/files/patch-aa Sun Jul 18 17:01:26 2004 @@ -1,10 +1,10 @@ ---- dw_options.c.orig Fri Feb 14 16:52:50 2003 -+++ dw_options.c Sat Mar 1 00:18:04 2003 -@@ -113,7 +113,7 @@ +--- dw_options.c.orig Tue Dec 9 01:23:55 2003 ++++ dw_options.c Tue Mar 2 20:54:56 2004 +@@ -117,7 +117,7 @@ #if defined(__UNIX_DW) #if !defined(EMX_DW) #if defined(FreeBSD_DW) --#define OS_SPEC_CONFNAME "/usr/local/drweb/"CONF_FNAME +-#define OS_SPEC_CONFNAME "/usr/local/etc/drweb/"CONF_FNAME +#define OS_SPEC_CONFNAME "%PREFIX%/etc/drweb/"CONF_FNAME #else /* FreeBSD */ #define OS_SPEC_CONFNAME "/opt/drweb/"CONF_FNAME diff -urbBN drweb-postfix.orig/files/patch-ab drweb-postfix/files/patch-ab --- drweb-postfix.orig/files/patch-ab Mon Jul 14 09:17:29 2003 +++ drweb-postfix/files/patch-ab Sun Jul 18 17:01:26 2004 @@ -1,53 +1,46 @@ ---- etc/drweb_postfix.conf.orig Sat Jul 12 16:30:33 2003 -+++ etc/drweb_postfix.conf Sat Jul 12 16:40:30 2003 -@@ -17,14 +17,14 @@ +--- etc/drweb_postfix.conf.orig Sun Jul 18 14:55:55 2004 ++++ etc/drweb_postfix.conf Sun Jul 18 15:00:45 2004 +@@ -18,14 +18,14 @@ # Address = local:/usr/local/drweb/run/drwebd.skt # Address = pid:/usr/local/drweb/run/drwebd.pid # Address = pid:/var/drweb/run/drwebd.pid, inet:3000@backup_server.example.com -Address = inet:3000@localhost +Address = local:%PREFIX%/drweb/run/drwebd.sock - # Enable/disable caching resolved daemon host + # Enable/disable caching of the resolved daemon host # (useful only if daemon uses TCP/IP communications) Cache = yes - # Timeout for whole scanning session (in seconds) + # Timeout for the whole scanning session (seconds) -Timeout = 120 +Timeout = 160 ######################## # Scan options section # -@@ -69,10 +69,10 @@ - DenyOnOne = yes +@@ -83,10 +83,10 @@ + DenyByDefault = no # List with rules for users or domains to block scanning -DenyList = /etc/drweb/users.conf +DenyList = %PREFIX%/etc/drweb/users.conf - # Directory used for story temporary files + # Directory used to store temporary files -Spool = /var/drweb/spool +Spool = /tmp # Permissions for created spool files SpoolFilesMode = 0600 -@@ -192,28 +192,28 @@ - # redirect - redirect to RedirectMail and reject message +@@ -237,7 +237,7 @@ + # pass - pass such messages # reject - reject such messages with permanent error # tempfail - reject such message with temporary error --ProcessingErrors = quarantine +-ProcessingErrors = reject +ProcessingErrors = tempfail # Admin mail address (may be unix-local address) --AdminMail = av-master@example.com -+AdminMail = postmaster - - # Mail address for redirect action (may be unix-local address) --RedirectMail = quarantine@example.com -+RedirectMail = postmaster - - # Filter address, that be used in From: (should be qualified) --FilterMail = DrWEB-DAEMON@example.com -+FilterMail = DrWEB-DAEMON@%HOSTNAME% + AdminMail = postmaster +@@ -249,16 +249,16 @@ + FilterMail = DrWEB-DAEMON # List of unnotificable viruses -UnnotificableVirusesList = /etc/drweb/viruses.conf @@ -59,23 +52,24 @@ # Quarantine directory. # The infected files could be moved in that dir - # if you stay this field empty or commented then - # infected messages would not been storied + # if you leave this field empty or commented out then + # infected messages will not be stored -Quarantine = /var/drweb/infected +Quarantine = %PREFIX%/drweb/infected # Permissions for quarantined files QuarantineFilesMode = 0660 -@@ -237,15 +237,15 @@ +@@ -282,15 +282,16 @@ RcptsNotify = yes # Files with notification templates -SenderTemplate = /etc/drweb/templates/en-ru/postfix/virus-sender.msg -AdminTemplate = /etc/drweb/templates/en-ru/postfix/virus-admin.msg -RcptsTemplate = /etc/drweb/templates/en-ru/postfix/virus-rcpts.msg -+AdminTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-admin.msg -+RcptsTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-rcpts.msg -+SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-sender.msg ++SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/sendmail/virus-sender.msg ++AdminTemplate = %PREFIX%/etc/drweb/templates/en-ru/sendmail/virus-admin.msg ++RcptsTemplate = %PREFIX%/etc/drweb/templates/en-ru/sendmail/virus-rcpts.msg ++ [SkipNotifications] SenderNotify = yes @@ -86,7 +80,7 @@ AdminTemplate = RcptsTemplate = -@@ -253,16 +253,16 @@ +@@ -298,16 +299,16 @@ SenderNotify = yes AdminNotify = yes RcptsNotify = no @@ -107,7 +101,7 @@ RcptsTemplate = [RuleFilterNotifications] -@@ -270,7 +270,7 @@ +@@ -315,7 +316,7 @@ AdminNotify = yes RcptsNotify = no SenderTemplate = diff -urbBN drweb-postfix.orig/pkg-plist drweb-postfix/pkg-plist --- drweb-postfix.orig/pkg-plist Mon Jul 14 09:17:28 2003 +++ drweb-postfix/pkg-plist Sun Jul 18 17:28:37 2004 @@ -40,19 +40,20 @@ @exec [ -f %B/viruses.conf ] || cp %B/%f %B/viruses.conf sbin/drweb-postfix sbin/drwebdc -share/doc/drweb-postfix/addresses_list.rus.txt -share/doc/drweb-postfix/addresses_list.txt -share/doc/drweb-postfix/conf_file.rus.txt -share/doc/drweb-postfix/conf_file.txt -share/doc/drweb-postfix/notify.rus.txt -share/doc/drweb-postfix/notify.txt -share/doc/drweb-postfix/readme -share/doc/drweb-postfix/readme.rus -share/doc/drweb-postfix/users_list.rus.txt -share/doc/drweb-postfix/users_list.txt -share/doc/drweb-postfix/viruses_list.rus.txt -share/doc/drweb-postfix/viruses_list.txt -@dirrm share/doc/drweb-postfix +%%PORTDOCS%%%%DOCSDIR%%/FAQ.rus.txt +%%PORTDOCS%%%%DOCSDIR%%/addresses_list.rus.txt +%%PORTDOCS%%%%DOCSDIR%%/addresses_list.txt +%%PORTDOCS%%%%DOCSDIR%%/conf_file.rus.txt +%%PORTDOCS%%%%DOCSDIR%%/conf_file.txt +%%PORTDOCS%%%%DOCSDIR%%/notify.rus.txt +%%PORTDOCS%%%%DOCSDIR%%/notify.txt +%%PORTDOCS%%%%DOCSDIR%%/readme +%%PORTDOCS%%%%DOCSDIR%%/readme.rus +%%PORTDOCS%%%%DOCSDIR%%/users_list.rus.txt +%%PORTDOCS%%%%DOCSDIR%%/users_list.txt +%%PORTDOCS%%%%DOCSDIR%%/viruses_list.rus.txt +%%PORTDOCS%%%%DOCSDIR%%/viruses_list.txt +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm etc/drweb/templates/en-ru/postfix @dirrm etc/drweb/templates/en-ru @dirrm etc/drweb/templates --- drweb_postfix.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 17 22: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 7912716A4CF for ; Sat, 17 Jul 2004 22:40:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D2443D86 for ; Sat, 17 Jul 2004 22:40:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6HMeQaS006244 for ; Sat, 17 Jul 2004 22:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6HMeQZ3006243; Sat, 17 Jul 2004 22:40:26 GMT (envelope-from gnats) Resent-Date: Sat, 17 Jul 2004 22:40:26 GMT Resent-Message-Id: <200407172240.i6HMeQZ3006243@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helge Oldach Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D78B16A4CE for ; Sat, 17 Jul 2004 22:35:12 +0000 (GMT) Received: from sep.oldach.net (p5081CAB9.dip0.t-ipconnect.de [80.129.202.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CB8F43D49 for ; Sat, 17 Jul 2004 22:35:11 +0000 (GMT) (envelope-from hmo@sep.oldach.net) Received: from sep.oldach.net (localhost [127.0.0.1])i6HMYvFC037174 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sun, 18 Jul 2004 00:35:07 +0200 (CEST) (envelope-from hmo@sep.oldach.net) Received: (from hmo@localhost) by sep.oldach.net (8.12.11/8.12.11/Submit) id i6HMYpuQ037166; Sun, 18 Jul 2004 00:34:51 +0200 (CEST) (envelope-from hmo) Message-Id: <200407172234.i6HMYpuQ037166@sep.oldach.net> Date: Sun, 18 Jul 2004 00:34:51 +0200 (CEST) From: Helge Oldach To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-Mailman-Approved-At: Sun, 18 Jul 2004 14:30:02 +0000 cc: hmo@sep.oldach.net Subject: ports/69212: ports/palm/coldsync doesn't work with PalmOS 4.0 and above X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Helge Oldach List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jul 2004 22:40:33 -0000 >Number: 69212 >Category: ports >Synopsis: ports/palm/coldsync doesn't work with PalmOS 4.0 and above >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 Jul 17 22:40:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Helge Oldach >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD localhost 4.10-STABLE FreeBSD 4.10-STABLE #1920: Sun Jul 4 00:28:34 CEST 2004 root@localhost:/usr/obj/usr/src/sys/GENERIC i386 >Description: ColdSync 2.2.5 fails to work with devices running PalmOS 4.0 and above, if (and only if) there is a password set on the Palm. The Palm claims that the desktop software is too old and should be upgraded. The patch below (essentially stolen from ColdSync 3.0) makes ColdSync claim that it supports DLP 1.3. If this fix doesn't suit, please upgrade the port from ColdSync 2.25 to ColdSync 3.0pre4 (or whatever is the current release version at the time of fixing). >How-To-Repeat: >Fix: --- include/pconn/dlp_cmd.h.orig Sat Oct 6 20:04:35 2001 +++ include/pconn/dlp_cmd.h Sun Jul 18 00:24:28 2004 @@ -199,6 +199,9 @@ #define DLPCMD_MODUIFLAG_VIEWERID 0x08 /* Viewer ID */ /** ReadSysInfo **/ +#define DLPARG_ReadSysInfo_Ver DLPARG_BASE +#define DLPARGLEN_ReadSysInfo_Ver 4 + #define DLPRET_ReadSysInfo_Info DLPRET_BASE #define DLPRETLEN_ReadSysInfo_Info 14 --- libpconn/dlp_cmd.c.orig Thu Oct 18 03:35:03 2001 +++ libpconn/dlp_cmd.c Sun Jul 18 00:24:28 2004 @@ -343,7 +343,10 @@ int err; struct dlp_req_header header; /* Request header */ struct dlp_resp_header resp_header; /* Response header */ + struct dlp_arg argv[1]; /* Request argument list */ const struct dlp_arg *ret_argv; /* Response argument list */ + static ubyte outbuf[DLPARGLEN_ReadSysInfo_Ver]; + /* Buffer holding outgoing arg */ const ubyte *rptr; /* Pointer into buffers (for reading) */ DLPC_TRACE(1) @@ -351,10 +354,21 @@ /* Fill in the header values */ header.id = (ubyte) DLPCMD_ReadSysInfo; - header.argc = 0; + header.argc = 1; + + /* Fill in the argument */ + + outbuf[0] = 0x00; /* We are telling our peer we support */ + outbuf[1] = 0x01; /* DLP 1.3. Old PDAs will discard the argument. */ + outbuf[2] = 0x00; + outbuf[3] = 0x03; + + argv[0].id = DLPARG_ReadSysInfo_Ver; + argv[0].size = DLPARGLEN_ReadSysInfo_Ver; + argv[0].data = outbuf; /* Send the DLP request */ - err = dlp_send_req(pconn, &header, NULL); + err = dlp_send_req(pconn, &header, argv); if (err < 0) return err; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 14: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 671F116A4CE for ; Sun, 18 Jul 2004 14:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C2DA43D46 for ; Sun, 18 Jul 2004 14:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IEeMQr045086 for ; Sun, 18 Jul 2004 14:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IEeMMk045085; Sun, 18 Jul 2004 14:40:22 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 14:40:22 GMT Resent-Message-Id: <200407181440.i6IEeMMk045085@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, zhuravlev alexander Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B7E816A4CE for ; Sun, 18 Jul 2004 14:38:29 +0000 (GMT) Received: from ns.ulstu.ru (ns.ulstu.ru [62.76.34.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id E434143D46 for ; Sun, 18 Jul 2004 14:38:28 +0000 (GMT) (envelope-from zaa@ulstu.ru) Received: from orion.ulstu.ru (orion.ulstu.ru [62.76.34.33]) by ns.ulstu.ru (Postfix) with ESMTP id 4C1B067B for ; Sun, 18 Jul 2004 18:38:27 +0400 (MSD) Received: from localhost (localhost [127.0.0.1]) by orion.ulstu.ru (Postfix) with ESMTP id 053C963D for ; Sun, 18 Jul 2004 18:38:27 +0400 (MSD) Received: from orion.ulstu.ru ([127.0.0.1]) by localhost (orion.ulstu.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 73112-10 for ; Sun, 18 Jul 2004 18:38:26 +0400 (MSD) Received: by orion.ulstu.ru (Postfix, from userid 3909) id A39F03FE; Sun, 18 Jul 2004 18:38:26 +0400 (MSD) Message-Id: <20040718143826.A39F03FE@orion.ulstu.ru> Date: Sun, 18 Jul 2004 18:38:26 +0400 (MSD) From: zhuravlev alexander To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69242: [MAINTAINER UPDATE] textproc/p5-Text-WikiFormat up to 0.72 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: zhuravlev alexander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 14:40:22 -0000 >Number: 69242 >Category: ports >Synopsis: [MAINTAINER UPDATE] textproc/p5-Text-WikiFormat up to 0.72 >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 Jul 18 14:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: zhuravlev alexander >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD orion.ulstu.ru 4.10-STABLE FreeBSD 4.10-STABLE #11: Mon Jun 14 18:16:17 MSD 2004 root@orion.ulstu.ru:/usr/obj/usr/src/sys/ORION i386 >Description: Update of p5-Text-WikiFormat up to 0.72 >How-To-Repeat: >Fix: --- p5-Text-WikiFormat.diff begins here --- diff -ub p5-Text-WikiFormat.orig/Makefile p5-Text-WikiFormat/Makefile --- p5-Text-WikiFormat.orig/Makefile Tue Feb 10 22:09:44 2004 +++ p5-Text-WikiFormat/Makefile Sun Jul 18 18:35:23 2004 @@ -6,7 +6,7 @@ # PORTNAME= Text-WikiFormat -PORTVERSION= 0.71 +PORTVERSION= 0.72 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Text diff -ub p5-Text-WikiFormat.orig/distinfo p5-Text-WikiFormat/distinfo --- p5-Text-WikiFormat.orig/distinfo Thu Mar 18 21:01:02 2004 +++ p5-Text-WikiFormat/distinfo Sun Jul 18 18:35:29 2004 @@ -1,2 +1,2 @@ -MD5 (Text-WikiFormat-0.71.tar.gz) = f20ecdd2fb9520b9ca77f0dab49b2e19 -SIZE (Text-WikiFormat-0.71.tar.gz) = 26106 +MD5 (Text-WikiFormat-0.72.tar.gz) = c1136205a8d7e8fbbe19df761c956ae6 +SIZE (Text-WikiFormat-0.72.tar.gz) = 24693 --- p5-Text-WikiFormat.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 14:55: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 439C716A4CE; Sun, 18 Jul 2004 14:55:09 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25CE143D2F; Sun, 18 Jul 2004 14:55:07 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.172] (port=49181 helo=inbox.ru) by mx1.mail.ru with esmtp id 1BmD4D-000NID-00; Sun, 18 Jul 2004 18:55:05 +0400 Date: Sun, 18 Jul 2004 18:53:07 +0400 From: Roman Bogorodskiy To: Kirill Ponomarew Message-ID: <20040718145307.GA705@lame.novel.ru> References: <200407180617.i6I6HgtN081200@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <200407180617.i6I6HgtN081200@freefall.freebsd.org> X-GPG: http://phptags.sourceforge.net/key User-Agent: Mutt/1.5.6i cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69223: [ maintainer ] mail/msmtp-devel: update to 1.2.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: Sun, 18 Jul 2004 14:55:09 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Kirill wrote: > State-Changed-From-To: open->closed > State-Changed-By: krion > State-Changed-When: Sun Jul 18 06:16:21 GMT 2004 > State-Changed-Why:=20 > Your patch is partially wrong, so I submitted slight another version, tha= nks! Seems, I explained what I want in a bad way, or maybe you read the PR inattentively. Anyway, I'll try to explain one again. msmtp 1.2.0 (which now can be installed from mail/msmtp-devel after your commit) is not the "development" version anymore, so, it's place is mail/msmtp. Maybe, repocopy should be done. Actually, I don't really know what I need to do when "-devel" port should replace "stable". -Roman Bogorodskiy --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQCVAwUBQPqO04B0WzgdqspGAQKo8QQAjaIVWrgv6QytrVv2S/Bx0tueCOJBZPOd oYy/G5SQ2Q/uoRAyWRbRArpMxbKUirVGyNwry6v1Mb/CvVLNXvsSDaNc1PGZShER jvbPfCglMAMBFZyTkBZdYAms/nIxkxzDmn8US5In5UpC4hTkqXDVBjMGfFBEbWt0 a/PgPtDv2X0= =kSJt -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 15:00: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 65D0716A4CE for ; Sun, 18 Jul 2004 15:00:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F2B343D39 for ; Sun, 18 Jul 2004 15:00:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IF0gsc045942 for ; Sun, 18 Jul 2004 15:00:42 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IF0ggF045941; Sun, 18 Jul 2004 15:00:42 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 15:00:42 GMT Resent-Message-Id: <200407181500.i6IF0ggF045941@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Torfinn Ingolfsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B360516A4CE for ; Sun, 18 Jul 2004 14:53:20 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5567C43D3F for ; Sun, 18 Jul 2004 14:53:20 +0000 (GMT) (envelope-from tingo@start.no) Received: from kg-work.kg4.no (68.80-202-174.nextgentel.com [80.202.174.68]) by mail.broadpark.no (Postfix) with ESMTP id B9F8E1F6C for ; Sun, 18 Jul 2004 16:53:50 +0200 (MEST) Message-Id: <1090162399.0@kg-work.kg4.no> Date: Sun, 18 Jul 2004 16:53:19 +0200 From: "Torfinn Ingolfsen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/69243: portupgrade - portinstall can't find ports to 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: Sun, 18 Jul 2004 15:00:42 -0000 >Number: 69243 >Category: ports >Synopsis: portupgrade - portinstall can't find ports to 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: Sun Jul 18 15:00:41 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Torfinn Ingolfsen >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: 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 portupgrade-20040701_3 ruby-1.8.1.2004.05.02_1 ruby18-bdb1-0.2.2 root@kg-work# ls -l /usr/ports/INDEX-5 -rw-r--r-- 1 root 100 5536755 Jul 16 10:54 /usr/ports/INDEX-5 (fetched today) >Description: When I do 'portinstall -R kdegames' it complains: root@kg-work# portinstall -R kdegames ** No such installed package or port: kdegames but this isn't true: root@kg-work# grep ^kdegames /usr/ports/INDEX-5 kdegames-3.2.3|/usr/ports/games/kdegames3|/usr/local|Games for the KDE integrated X11 desktop|/usr/ports/games/kdegames3/pkg-descr|kde@FreeBSD.org|games kde|XFree86-fontEncodings-4.3.0 XFree86-fontScalable-4.3.0 XFree86-libraries-4.3.0_7 arts-1.2.3,1 cups-base-1.1.20.0 expat-1.95.7 fam-2.6.9_4 fontconfig-2.2.3,1 freetype2-2.1.7_3 gettext-0.13.1_1 glib-2.4.4 gmake-3.80_2 imake-4.3.0_2 jasper-1.701.0 jpeg-6b_3 kdelibs-3.2.3_1 lcms-1.13,1 libXft-2.1.6 libart_lgpl2-2.3.16 libaudiofile-0.2.6 libiconv-1.9.2 libidn-0.5.2 libmad-0.15.1b libmng-1.0.7 libogg-1.1,3 libvorbis-1.0.1,3 libxml2-2.6.11_1 libxslt-1.1.8_1 nas-1.6 openldap-client-2.1.30 openssl-0.9.7d pcre-4.5 perl-5.8.4 pkgconfig-0.15.0_1 png-1.2.5_6 qt-3.3.2_2 tiff-3.6.1_1|XFree86-fontEncodings-4.3.0 XFree86-fontScalable-4.3.0 XFree86-libraries-4.3.0_7 arts-1.2.3,1 cups-base-1.1.20.0 expat-1.95.7 fam-2.6.9_4 fontconfig-2.2.3,1 freetype2-2.1.7_3 gettext-0.13.1_1 glib-2.4.4 imake-4.3.0_2 jasper-1.701.0 jpeg-6b_3 kdelibs-3.2.3_1 lcms-1.13,1 libXft-2.1.6 libart_lgpl2-2.3.16 libaudiofile-0.2.6 libiconv-1.9.2 libidn-0.5.2 libmad-0.15.1b libmng-1.0.7 libogg-1.1,3 libvorbis-1.0.1,3 libxml2-2.6.11_1 libxslt-1.1.8_1 nas-1.6 openldap-client-2.1.30 openssl-0.9.7d pcre-4.5 perl-5.8.4 pkgconfig-0.15.0_1 png-1.2.5_6 qt-3.3.2_2 tiff-3.6.1_1|||| and also: root@kg-work# ls -l /usr/ports/games/kdegames3 total 112 -rw-r--r-- 1 100 100 716 Jun 11 03:08 Makefile -rw-r--r-- 1 100 100 112 Jun 11 03:08 distinfo drwxr-xr-x 2 100 100 512 Jun 11 03:08 files -rw-r--r-- 1 100 100 123 Jun 15 2002 pkg-descr -rw-r--r-- 1 100 100 105837 Jun 11 03:08 pkg-plist this also goes for other ports (I tried with rfc, lsof). Note: portupgrade works, I just upgrade lsof. After that I did a pkg_deinstall of lsof, and tried 'portinstall -R lsof' again. No go. I also tried without '-R', but it makes no difference. >How-To-Repeat: cd /usr/ports; make fetchindex portinstall -R kdegames (or rfc, lsof. Possibly others.) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 15:02: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 E6E8916A4CE; Sun, 18 Jul 2004 15:02:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAC6743D46; Sun, 18 Jul 2004 15:02:35 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6IF2ZiC046087; Sun, 18 Jul 2004 15:02:35 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IF2Z9q046083; Sun, 18 Jul 2004 15:02:35 GMT (envelope-from vanilla) Date: Sun, 18 Jul 2004 15:02:35 GMT From: "Vanilla I. Shu" Message-Id: <200407181502.i6IF2Z9q046083@freefall.freebsd.org> To: rafan@infor.org, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68685: Update Port: devel/svk to 0.16 with 2 dependent ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 15:02:36 -0000 Synopsis: Update Port: devel/svk to 0.16 with 2 dependent ports State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sun Jul 18 15:02:27 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=68685 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 15:08:00 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 EA75C16A4CE for ; Sun, 18 Jul 2004 15:08:00 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id A720D43D39 for ; Sun, 18 Jul 2004 15:08:00 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.40 (FreeBSD)) id 1BmDGl-000POk-CJ; Sun, 18 Jul 2004 17:08:03 +0200 Date: Sun, 18 Jul 2004 17:08:03 +0200 From: Kirill Ponomarew To: Roman Bogorodskiy Message-ID: <20040718150803.GK81710@voodoo.oberon.net> References: <200407180617.i6I6HgtN081200@freefall.freebsd.org> <20040718145307.GA705@lame.novel.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZFKeWUZP29EKQNE" Content-Disposition: inline In-Reply-To: <20040718145307.GA705@lame.novel.ru> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69223: [ maintainer ] mail/msmtp-devel: update to 1.2.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: Sun, 18 Jul 2004 15:08:01 -0000 --LZFKeWUZP29EKQNE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Sun, Jul 18, 2004 at 06:53:07PM +0400, Roman Bogorodskiy wrote: > > State-Changed-From-To: open->closed > > State-Changed-By: krion > > State-Changed-When: Sun Jul 18 06:16:21 GMT 2004 > > State-Changed-Why:=20 > > Your patch is partially wrong, so I submitted slight another version, t= hanks! >=20 > Seems, I explained what I want in a bad way, or maybe you read the PR > inattentively. Anyway, I'll try to explain one again. >=20 > msmtp 1.2.0 (which now can be installed from mail/msmtp-devel after your > commit) is not the "development" version anymore, so, it's place is > mail/msmtp. Maybe, repocopy should be done. Actually, I don't really > know what I need to do when "-devel" port should replace "stable". You should really submit your patch for mail/msmtp version, not for -devel. -Kirill --LZFKeWUZP29EKQNE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA+pJTQC1G6a60JuURAoU7AJoDnnNEFpa6nG6m+H14vHYf9SD4KACeIiHb K88vRDsyZ8c9yzpogJneQXQ= =KQZ+ -----END PGP SIGNATURE----- --LZFKeWUZP29EKQNE-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 15:13:24 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 A7B0D16A4CE for ; Sun, 18 Jul 2004 15:13:24 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73BF543D46 for ; Sun, 18 Jul 2004 15:13:24 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.172] (port=49297 helo=inbox.ru) by mx1.mail.ru with esmtp id 1BmDLr-00010a-00; Sun, 18 Jul 2004 19:13:22 +0400 Date: Sun, 18 Jul 2004 19:11:08 +0400 From: Roman Bogorodskiy To: Kirill Ponomarew Message-ID: <20040718151108.GA619@lame.novel.ru> References: <200407180617.i6I6HgtN081200@freefall.freebsd.org> <20040718145307.GA705@lame.novel.ru> <20040718150803.GK81710@voodoo.oberon.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <20040718150803.GK81710@voodoo.oberon.net> X-GPG: http://phptags.sourceforge.net/key User-Agent: Mutt/1.5.6i cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69223: [ maintainer ] mail/msmtp-devel: update to 1.2.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: Sun, 18 Jul 2004 15:13:24 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Kirill wrote: > You should really submit your patch for mail/msmtp version, not > for -devel. This means I need to create new PR with patch for mail/msmtp and ask for mail/msmtp-devel deletion?=20 -Roman Bogorodskiy --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQCVAwUBQPqTDIB0WzgdqspGAQLBYgQAk856l14H0/85dhoEMPhoxMND7559DafP CnLcQtNp+gdCspP3U8e28blV9lUBXNbO88b8JP8xh/VqZ+0jeolSw5PE88anPD/4 aI8D9eQJFAnVTYlUlMQq58LyUxQOiqBnCXIA/c8egGvn6Uh5areIQA1gPAclC8DM PmcgX1zedc0= =InDh -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 15:15:57 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 9937416A4CE for ; Sun, 18 Jul 2004 15:15:57 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6559243D31 for ; Sun, 18 Jul 2004 15:15:57 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.40 (FreeBSD)) id 1BmDOS-000PRN-3H; Sun, 18 Jul 2004 17:16:00 +0200 Date: Sun, 18 Jul 2004 17:16:00 +0200 From: Kirill Ponomarew To: Roman Bogorodskiy Message-ID: <20040718151600.GL81710@voodoo.oberon.net> References: <200407180617.i6I6HgtN081200@freefall.freebsd.org> <20040718145307.GA705@lame.novel.ru> <20040718150803.GK81710@voodoo.oberon.net> <20040718151108.GA619@lame.novel.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2xeD/fx0+7k8I/QN" Content-Disposition: inline In-Reply-To: <20040718151108.GA619@lame.novel.ru> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69223: [ maintainer ] mail/msmtp-devel: update to 1.2.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: Sun, 18 Jul 2004 15:15:57 -0000 --2xeD/fx0+7k8I/QN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Sun, Jul 18, 2004 at 07:11:08PM +0400, Roman Bogorodskiy wrote: > This means I need to create new PR with patch for mail/msmtp and ask for > mail/msmtp-devel deletion?=20 Yes. -Kirill --2xeD/fx0+7k8I/QN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA+pQwQC1G6a60JuURAke8AKCk8oGCWU0qOaCZ5BiEEs06IYuSRQCg0Cpy I/XumoOHj7Dq8BoY3Df6nJE= =WZWs -----END PGP SIGNATURE----- --2xeD/fx0+7k8I/QN-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 16:00: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 D711316A4CE for ; Sun, 18 Jul 2004 16:00:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8BA043D1F for ; Sun, 18 Jul 2004 16:00:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IG0Scv056534 for ; Sun, 18 Jul 2004 16:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IG0SLJ056531; Sun, 18 Jul 2004 16:00:28 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 16:00:28 GMT Resent-Message-Id: <200407181600.i6IG0SLJ056531@freefall.freebsd.org> 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 A1F4316A4CE for ; Sun, 18 Jul 2004 15:58:57 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE2E243D48 for ; Sun, 18 Jul 2004 15:58:56 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.235] (port=49409 helo=inbox.ru) by mx1.mail.ru with esmtp id 1BmE3z-000DLO-00 for FreeBSD-gnats-submit@freebsd.org; Sun, 18 Jul 2004 19:58:55 +0400 Message-Id: Date: Sun, 18 Jul 2004 19:58:55 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69244: [ patch ] mail/msmtp: update to 1.2.0 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: Sun, 18 Jul 2004 16:00:28 -0000 >Number: 69244 >Category: ports >Synopsis: [ patch ] mail/msmtp: update to 1.2.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 16:00:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #5: Sat Jun 19 22:04:33 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: Update mail/msmtp to 1.2.0. mail/msmtp-devel is obsolete, so it needs to be removed. >How-To-Repeat: >Fix: diff -ruN msmtp.orig/Makefile msmtp/Makefile --- msmtp.orig/Makefile Thu Jun 17 16:57:26 2004 +++ msmtp/Makefile Sun Jul 18 19:36:40 2004 @@ -6,7 +6,7 @@ # PORTNAME= msmtp -PORTVERSION= 0.7.2 +PORTVERSION= 1.2.0 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= msmtp @@ -19,7 +19,6 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -USE_GMAKE= yes MAN1= msmtp.1 PLIST_FILES= bin/msmtp diff -ruN msmtp.orig/distinfo msmtp/distinfo --- msmtp.orig/distinfo Thu Jun 17 16:57:26 2004 +++ msmtp/distinfo Sun Jul 18 19:35:27 2004 @@ -1,2 +1,2 @@ -MD5 (msmtp-0.7.2.tar.gz) = a9a44243211c8b84a220779335a257a5 -SIZE (msmtp-0.7.2.tar.gz) = 139544 +MD5 (msmtp-1.2.0.tar.gz) = ad23bc7217a6d78fdf1f9312adcd350b +SIZE (msmtp-1.2.0.tar.gz) = 154348 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 16:00: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 103D616A4CE for ; Sun, 18 Jul 2004 16:00:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6BAC43D58 for ; Sun, 18 Jul 2004 16:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IG0VHG056567 for ; Sun, 18 Jul 2004 16:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IG0V5G056566; Sun, 18 Jul 2004 16:00:31 GMT (envelope-from gnats) Date: Sun, 18 Jul 2004 16:00:31 GMT Message-Id: <200407181600.i6IG0V5G056566@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Adam Weinberger Subject: Re: ports/69243: portupgrade - portinstall can't find ports to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Adam Weinberger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 16:00:32 -0000 The following reply was made to PR ports/69243; it has been noted by GNATS. From: Adam Weinberger To: Torfinn Ingolfsen Cc: FreeBSD gnats submit Subject: Re: ports/69243: portupgrade - portinstall can't find ports to install Date: Sun, 18 Jul 2004 12:00:17 -0400 What version of portupgrade are you running? Make sure that you're running the latest version of portupgrade, as INDEX format has changed recently. -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 16:10: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 63E3916A4CE for ; Sun, 18 Jul 2004 16:10:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68B1D43D46 for ; Sun, 18 Jul 2004 16:10:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IGARFh060499 for ; Sun, 18 Jul 2004 16:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IGARLc060498; Sun, 18 Jul 2004 16:10:27 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 16:10:27 GMT Resent-Message-Id: <200407181610.i6IGARLc060498@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4C8616A4CF for ; Sun, 18 Jul 2004 16:03:15 +0000 (GMT) Received: from phoenix.smluc.org (phoenix.smluc.org [12.28.48.23]) by mx1.FreeBSD.org (Postfix) with SMTP id 5E28443D4C for ; Sun, 18 Jul 2004 16:03:15 +0000 (GMT) (envelope-from erik@phoenix.smluc.org) Received: (qmail 31420 invoked by uid 1000); 18 Jul 2004 16:03:22 -0000 Message-Id: <20040718160321.31419.qmail@phoenix.smluc.org> Date: 18 Jul 2004 16:03:21 -0000 From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: erik@math.smsu.edu cc: des@FreeBSD.org Subject: ports/69245: Fix missing dependancy (glut) for games/flightgear X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 16:10:33 -0000 >Number: 69245 >Category: ports >Synopsis: Fix missing dependancy (glut) for games/flightgear >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 Jul 18 16:10:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD fenris 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sun Jul 4 09:44:11 EDT 2004 root@fenris:/usr/obj/usr/src/sys/FENRIS i386 >Description: games/flightgear was marked broken a week ago due to a missing dependancy (libglut). this is a fix >How-To-Repeat: >Fix: --- games.flightgear.patch begins here --- --- Makefile.orig Sun Jul 18 11:57:31 2004 +++ Makefile Sun Jul 18 11:57:51 2004 @@ -15,13 +15,12 @@ MAINTAINER= des@FreeBSD.org COMMENT= The FlightGear flight simulator -BROKEN= "Missing dependency" - BASEVERSION= ${PORTVERSION} BASEFILE= fgfs-base-${BASEVERSION}${EXTRACT_SUFX} DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src \ ${BASEFILE}:dat +LIB_DEPENDS= glut:${PORTSDIR}/graphics/libglut BUILD_DEPENDS= ${X11BASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib \ ${X11BASE}/include/simgear/threads/SGThread.hxx:${PORTSDIR}/devel/simgear \ ${X11BASE}/lib/libsgmisc.a:${PORTSDIR}/devel/simgear --- games.flightgear.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 16: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 5046416A4CE for ; Sun, 18 Jul 2004 16:50:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 377C843D5D for ; Sun, 18 Jul 2004 16:50:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IGoHis063032 for ; Sun, 18 Jul 2004 16:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IGoHbf063031; Sun, 18 Jul 2004 16:50:17 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 16:50:17 GMT Resent-Message-Id: <200407181650.i6IGoHbf063031@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Russell Francis Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 368E616A4CE for ; Sun, 18 Jul 2004 16:43:40 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D3BC43D5D for ; Sun, 18 Jul 2004 16:43:40 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6IGhdK0019271 for ; Sun, 18 Jul 2004 16:43:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6IGhdlf019236; Sun, 18 Jul 2004 16:43:39 GMT (envelope-from nobody) Message-Id: <200407181643.i6IGhdlf019236@www.freebsd.org> Date: Sun, 18 Jul 2004 16:43:39 GMT From: Russell Francis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69246: New port: devel/libgutenfetch Library for application developers to interface with Project Gutenberg etext servers. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 16:50:17 -0000 >Number: 69246 >Category: ports >Synopsis: New port: devel/libgutenfetch Library for application developers to interface with Project Gutenberg etext servers. >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 Jul 18 16:50:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Russell Francis >Release: 5.2.1 >Organization: >Environment: FreeBSD fluke 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #2: Sun Jul 4 01:07:31 GMT 2004 root@:/usr/obj/usr/src/sys/NEXT i386 >Description: This is a new port for the libgutenfetch library. It is a development library which allows developers a clean and consistent interface to listing and fetching electronic texts from Project Gutenberg servers. Attached is a shell archive with the files needed for the port. >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: # # libgutenfetch # libgutenfetch/Makefile # libgutenfetch/distinfo # libgutenfetch/pkg-descr # echo c - libgutenfetch mkdir -p libgutenfetch > /dev/null 2>&1 echo x - libgutenfetch/Makefile sed 's/^X//' >libgutenfetch/Makefile << 'END-of-libgutenfetch/Makefile' X# New ports collection makefile for: libgutenfetch X# Date created: 17 July 2004 X# Whom: Russell Francis X# X# $FreeBSD$ X# X XPORTNAME= libgutenfetch XPORTVERSION= 1.1 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= libgutenfetch X XMAINTAINER= johntabularasa@users.sf.net XCOMMENT= A library that allows application developers to connect to PG X XLIB_DEPENDS= curl:${PORTSDIR}/ftp/curl:install X XGNU_CONFIGURE= yes XCONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} XCONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LIBS="-L${LOCALBASE}/lib" XUSE_GMAKE= yes XUSE_BZIP2= yes X XMAN3 = libgutenfetch.3 \ X gutenfetch_version.3 \ X gutenfetch_shutdown.3 \ X gutenfetch_set_active_server_full.3 \ X gutenfetch_set_active_server.3 \ X gutenfetch_new_server.3 \ X gutenfetch_list_servers.3 \ X gutenfetch_is_threadsafe.3 \ X gutenfetch_init.3 \ X gutenfetch_get_aussie_server.3 \ X gutenfetch_get_active_server.3 \ X gutenfetch_free_server.3 \ X gutenfetch_free_servers.3 \ X gutenfetch_duplicate_server.3 X XPLIST_FILES= lib/libgutenfetch.a \ X lib/libgutenfetch.la \ X lib/libgutenfetch.so \ X lib/libgutenfetch.so.0 \ X share/libgutenfetch/servers.txt X XPLIST_DIRS= share/libgutenfetch X X.include END-of-libgutenfetch/Makefile echo x - libgutenfetch/distinfo sed 's/^X//' >libgutenfetch/distinfo << 'END-of-libgutenfetch/distinfo' XMD5 (libgutenfetch-1.1.tar.bz2) = e71f45f79eebb8352eac4a00c96a5d9b XSIZE (libgutenfetch-1.1.tar.bz2) = 208223 END-of-libgutenfetch/distinfo echo x - libgutenfetch/pkg-descr sed 's/^X//' >libgutenfetch/pkg-descr << 'END-of-libgutenfetch/pkg-descr' XThis is a port of libgutenfetch, which provides a clean and consistent Xinterface for application developers to write clients which list and Xfetch free electronic texts from any number of Project Gutenberg servers Xthroughout the world. X XWWW: http://sourceforge.net/projects/libgutenfetch/ X X- Russell Francis Xjohntabularasa@users.sf.net END-of-libgutenfetch/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 18: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 A047616A4CF for ; Sun, 18 Jul 2004 18:30:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A07E43D4C for ; Sun, 18 Jul 2004 18:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IIUM7a074830 for ; Sun, 18 Jul 2004 18:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IIUMY8074829; Sun, 18 Jul 2004 18:30:22 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 18:30:22 GMT Resent-Message-Id: <200407181830.i6IIUMY8074829@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87C5116A4CE; Sun, 18 Jul 2004 18:22:43 +0000 (GMT) Received: from rusunix.org (rusunix.org [195.162.56.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB3943D1D; Sun, 18 Jul 2004 18:22:43 +0000 (GMT) (envelope-from aquatique@rusunix.org) Received: by rusunix.org (Postfix, from userid 1111) id AE5A51CC22F; Mon, 19 Jul 2004 01:22:40 +0700 (OMSST) Message-Id: <20040718182240.AE5A51CC22F@rusunix.org> Date: Mon, 19 Jul 2004 01:22:40 +0700 (OMSST) From: To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: krion@FreeBSD.org Subject: ports/69247: update net/ysm to 7.2.9.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: aquatique-ports@rambler.ru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 18:30:22 -0000 >Number: 69247 >Category: ports >Synopsis: update net/ysm to 7.2.9.6 >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 Jul 18 18:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Evgueni V. Gavrilov >Release: FreeBSD 4.10-RELEASE i386 >Organization: rusunix.org >Environment: System: FreeBSD rusunix.org 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Thu May 27 18:47:13 OMSST 2004 root@rusunix.org:/usr/obj/usr/src/sys/NEWMONSTER i386 >Description: update net/ysm to 7.2.9.6 >How-To-Repeat: patch < >Fix: diff -ruN ysm.OLD/Makefile ysm/Makefile --- ysm.OLD/Makefile Mon Jul 19 01:02:01 2004 +++ ysm/Makefile Mon Jul 19 01:02:34 2004 @@ -6,7 +6,7 @@ # PORTNAME= ysm -PORTVERSION= 7.2.9.5 +PORTVERSION= 7.2.9.6 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=ysmv7 diff -ruN ysm.OLD/distinfo ysm/distinfo --- ysm.OLD/distinfo Mon Jul 19 01:02:01 2004 +++ ysm/distinfo Mon Jul 19 01:05:14 2004 @@ -1,2 +1,2 @@ -MD5 (ysmv7_2_9_5.tar.bz2) = dd5df440bf9f4ce2f6ad0b52c9042074 -SIZE (ysmv7_2_9_5.tar.bz2) = 243707 +MD5 (ysmv7_2_9_6.tar.bz2) = 03a3c47d266e17aacb78872582d79e8f +SIZE (ysmv7_2_9_6.tar.bz2) = 243649 diff -ruN ysm.OLD/pkg-descr ysm/pkg-descr --- ysm.OLD/pkg-descr Mon Jul 19 01:02:01 2004 +++ ysm/pkg-descr Mon Jul 19 01:13:16 2004 @@ -2,6 +2,6 @@ YSM (You Sick Me) v7 is an ICQ console client. It was originally meant to run in Linux, but it has been successfully tested in FreeBSD, Win32, BeOS, -and QNX. YSM is based on the last ICQ protocol version, v7/8. +OS/2 and QNX. YSM is based on the last ICQ protocol version, v7/8. WWW: http://www.ysm.com.ar >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 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 8523E16A4CF for ; Sun, 18 Jul 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 68E9543D45 for ; Sun, 18 Jul 2004 18:30:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IIUPfW074851 for ; Sun, 18 Jul 2004 18:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IIUPGv074849; Sun, 18 Jul 2004 18:30:25 GMT (envelope-from gnats) Date: Sun, 18 Jul 2004 18:30:25 GMT Message-Id: <200407181830.i6IIUPGv074849@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Herve Quiroz Subject: Re: ports/68769: [PATCH] devel/maven: update to 1.0.r4 and MASTER_SITE_APACHE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Herve Quiroz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 18:30:25 -0000 The following reply was made to PR ports/68769; it has been noted by GNATS. From: Herve Quiroz To: Rui Lopes Cc: Volker Stolz , freebsd-gnats-submit@freebsd.org Subject: Re: ports/68769: [PATCH] devel/maven: update to 1.0.r4 and MASTER_SITE_APACHE Date: Sun, 18 Jul 2004 20:28:15 +0200 --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Rui, On Sat, Jul 17, 2004 at 10:36:37PM +0100, Rui Lopes wrote: > See the attached patch, it contains all "fixes" from the discussion > and updates Maven to 1.0 final. If you are agree with it, lets have > this commited. I agree with it, excepted for some small problem I noticed. The following statement will not perform what you intend it to do: .for file in ${WRKSRC}/${dir}/*.jar <...> .endfor The star (*) is a shell wildcard and make will not expand it. Actually here's the output I get: /bin/mkdir -p /usr/local/share/java/maven/lib install -o root -g wheel -m 444 /usr/ports/devel/maven/work/maven-1.0//lib/*.jar /usr/local/share/java/maven/lib /bin/mkdir -p /usr/local/share/java/maven/lib/endorsed install -o root -g wheel -m 444 /usr/ports/devel/maven/work/maven-1.0//lib/endorsed/*.jar /usr/local/share/java/maven/lib/endorsed /bin/mkdir -p /usr/local/share/java/maven/plugins install -o root -g wheel -m 444 /usr/ports/devel/maven/work/maven-1.0//plugins/*.jar /usr/local/share/java/maven/plugins IMHO you may remove the nested loop by using the wildcard directly (just as it performs with your patch). I attached a patch (to be applied against Makefile from 1.0.r2). Herve. --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="maven.diff" --- Makefile.orig Wed Jul 7 15:35:39 2004 +++ Makefile Sun Jul 18 20:20:43 2004 @@ -6,11 +6,10 @@ # PORTNAME= maven -PORTVERSION= 1.0.r2 +PORTVERSION= 1.0 CATEGORIES= devel java -MASTER_SITES= http://nagoya.apache.org/mirror/%SUBDIR%/binaries/ -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-1.0-rc2 +MASTER_SITES= ${MASTER_SITE_APACHE} +MASTER_SITE_SUBDIR= ${PORTNAME}/binaries MAINTAINER= rui@ruilopes.com COMMENT= Java project management and project comprehension tool @@ -19,24 +18,26 @@ USE_JAVA= yes JAVA_VERSION= 1.3+ NO_BUILD= YES -DIR= share/java/maven -PLIST_SUB= DIR=${DIR} +DATADIR= ${JAVASHAREDIR}/${PORTNAME} PKGMESSAGE= ${WRKDIR}/pkg-message post-configure: - @${SED} -e 's,%%PREFIX%%,${PREFIX},g' \ - -e 's,%%DIR%%,${DIR},g' pkg-message > ${PKGMESSAGE} + @${SED} -e 's,%%DATADIR%%,${DATADIR},g' pkg-message > ${PKGMESSAGE} +BINFILES= install_repo.sh maven +DIRECTORIES= lib lib/endorsed plugins do-install: - @cd ${WRKSRC} && ${FIND} . \! -name '*.bat' \! -name repository \ - | ${CPIO} -pduv -R ${LIBOWN}:${LIBGRP} ${PREFIX}/${DIR} - ${CHMOD} -R ${LIBMODE} ${PREFIX}/${DIR} - ${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/${DIR}/bin - ${CHMOD} -R ${BINMODE} ${PREFIX}/${DIR}/bin - ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/${DIR}/bin/*.conf - ${CHMOD} ${SHAREMODE} ${PREFIX}/${DIR}/bin/*.conf - ${FIND} ${PREFIX}/${DIR} -type d | ${XARGS} ${CHMOD} +rx - ${LN} -fs ${PREFIX}/${DIR}/bin/maven ${PREFIX}/bin + ${MKDIR} ${DATADIR}/bin +.for file in ${BINFILES} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/${file} ${DATADIR}/bin +.endfor + ${LN} -fs ${DATADIR}/bin/maven ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/bin/forehead.conf ${DATADIR}/bin + ${INSTALL_DATA} ${WRKSRC}/*.xsd ${DATADIR} +.for dir in ${DIRECTORIES} + ${MKDIR} ${DATADIR}/${dir} + ${INSTALL_DATA} ${WRKSRC}/${dir}/*.jar ${DATADIR}/${dir} +.endfor post-install: .if !defined(BATCH) @@ -45,6 +46,6 @@ # This target is only meant to be used by the port maintainer. x-generate-plist: - (/usr/ports/Tools/scripts/plist -d -m /etc/mtree/BSD.local.dist ${PREFIX}|sed -E 's,^share/nls/.+$$,,g;s,${DIR},%%DIR%%,g'|tr -s '\n') > temp-pkg-plist + (${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX}|${SED} -E 's,.*share/nls/.+$$,,g;s,${DATADIR:S,^${PREFIX}/,,},%%DATADIR%%,g'|${TR} -s '\n') > temp-pkg-plist .include --mYCpIKhGyMATD0i+-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 18:45: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 BDDCC16A4D0; Sun, 18 Jul 2004 18:45:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A096D43D41; Sun, 18 Jul 2004 18:45:06 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6IIj6Ss076266; Sun, 18 Jul 2004 18:45:06 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IIj68s076262; Sun, 18 Jul 2004 18:45:06 GMT (envelope-from krion) Date: Sun, 18 Jul 2004 18:45:06 GMT From: Kirill Ponomarew Message-Id: <200407181845.i6IIj68s076262@freefall.freebsd.org> To: aquatique-ports@rambler.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69247: update net/ysm to 7.2.9.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, 18 Jul 2004 18:45:06 -0000 Synopsis: update net/ysm to 7.2.9.6 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Sun Jul 18 18:44:59 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69247 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 18:56: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 1E49D16A4CE; Sun, 18 Jul 2004 18:56:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02AF743D48; Sun, 18 Jul 2004 18:56:31 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6IIuUom076640; Sun, 18 Jul 2004 18:56:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IIuUxe076636; Sun, 18 Jul 2004 18:56:30 GMT (envelope-from linimon) Date: Sun, 18 Jul 2004 18:56:30 GMT From: Mark Linimon Message-Id: <200407181856.i6IIuUxe076636@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: ports/69245: Fix missing dependancy (glut) for games/flightgear X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 18:56:31 -0000 Synopsis: Fix missing dependancy (glut) for games/flightgear Responsible-Changed-From-To: freebsd-ports-bugs->des Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 18 18:56:18 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69245 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 18:56: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 26EC716A4CE; Sun, 18 Jul 2004 18:56:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0941243D3F; Sun, 18 Jul 2004 18:56:55 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6IIus90076685; Sun, 18 Jul 2004 18:56:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IIusgr076681; Sun, 18 Jul 2004 18:56:54 GMT (envelope-from linimon) Date: Sun, 18 Jul 2004 18:56:54 GMT From: Mark Linimon Message-Id: <200407181856.i6IIusgr076681@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/69243: portupgrade - portinstall can't find ports to 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: Sun, 18 Jul 2004 18:56:55 -0000 Synopsis: portupgrade - portinstall can't find ports to install Responsible-Changed-From-To: freebsd-ports-bugs->knu Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 18 18:56:45 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69243 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 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 A887F16A4D0 for ; Sun, 18 Jul 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 8C77C43D2D for ; Sun, 18 Jul 2004 19:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IJeNXB087962 for ; Sun, 18 Jul 2004 19:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IJeNoK087960; Sun, 18 Jul 2004 19:40:23 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 19:40:23 GMT Resent-Message-Id: <200407181940.i6IJeNoK087960@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Juergen Lock Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA6EA16A4CF for ; Sun, 18 Jul 2004 19:37:09 +0000 (GMT) Received: from gwyn.kn-bremen.de (gwyn.kn-bremen.de [212.63.36.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EFD943D4C for ; Sun, 18 Jul 2004 19:37:07 +0000 (GMT) (envelope-from nox@saturn.kn-bremen.de) Received: from gwyn.kn-bremen.de (uucp@gwyn [127.0.0.1]) i6IJb2MZ008576 for ; Sun, 18 Jul 2004 21:37:02 +0200 Received: from saturn.kn-bremen.de (uucp@localhost)i6IJb2fb008574 for FreeBSD-gnats-submit@freebsd.org; Sun, 18 Jul 2004 21:37:02 +0200 Received: (from nox@localhost) by saturn.kn-bremen.de (8.11.4/8.8.5) id i6IJkll87770; Sun, 18 Jul 2004 21:46:47 +0200 (CEST) Message-Id: <200407181946.i6IJkll87770@saturn.kn-bremen.de> Date: Sun, 18 Jul 2004 21:46:47 +0200 (CEST) From: Juergen Lock To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69248: new port archivers/p7zip X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Juergen Lock List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 19:40:23 -0000 >Number: 69248 >Category: ports >Synopsis: new port archivers/p7zip >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 Jul 18 19:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 5.2.1-SECURITY i386 >Organization: me? organized?? >Environment: System: FreeBSD neptun 5.2.1-SECURITY FreeBSD 5.2.1-SECURITY #0: Wed May 26 04:19:54 GMT 2004 root@builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: port of p7zip, unix commandline versions of 7-zip >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: # # Makefile # pkg-descr # pkg-plist # distinfo # files/ # files/7z # files/patch-aa # files/patch-ab # files/patch-ac # files/patch-ba # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# New ports collection makefile for: p7zip X# Date created: Sun Jul 18 15:07:26 CEST 2004 X# Whom: Juergen Lock X# X# $FreeBSD: $ X# X XPORTNAME= p7zip XPORTVERSION= 0.90 XCATEGORIES= archivers XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= p7zip XDISTNAME= ${PORTNAME}_${PORTVERSION} X XMAINTAINER= nox@jelal.kn-bremen.de XCOMMENT= Command line versions of 7-zip X XUSE_BZIP2= yes XUSE_GMAKE= yes XMAKEFILE= makefile XONLY_FOR_ARCHS= alpha amd64 i386 ia64 X Xdo-install: X ${MKDIR} ${PREFIX}/p7zip/bin/Codecs X ${MKDIR} ${PREFIX}/p7zip/bin/Formats X ${INSTALL_PROGRAM} ${WRKSRC}/bin/7z ${PREFIX}/p7zip/bin X ${INSTALL_PROGRAM} ${WRKSRC}/bin/7za ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/bin/Codecs/* ${PREFIX}/p7zip/bin/Codecs X ${INSTALL_DATA} ${WRKSRC}/bin/Formats/* ${PREFIX}/p7zip/bin/Formats X ${INSTALL_SCRIPT} ${FILESDIR}/7z ${PREFIX}/bin X ${MKDIR} ${PREFIX}/share/doc/p7zip/commands X ${MKDIR} ${PREFIX}/share/doc/p7zip/switches X ${INSTALL_DATA} ${WRKSRC}/html/cmdline/*.htm ${PREFIX}/share/doc/p7zip X ${INSTALL_DATA} ${WRKSRC}/html/cmdline/commands/* ${PREFIX}/share/doc/p7zip/commands X ${INSTALL_DATA} ${WRKSRC}/html/cmdline/switches/* ${PREFIX}/share/doc/p7zip/switches X X.include END-of-Makefile echo x - pkg-descr sed 's/^X//' >pkg-descr << 'END-of-pkg-descr' Xp7zip is a port of 7z.exe and 7za.exe for Unix. X X7z and 7za are command line version of 7-zip, see http://www.7-zip.org/. X X7-Zip is a file archiver with highest compression ratio. X XCurrently, p7zip (like 7-zip) supports only little-endian machine. X X7z uses shared libraries and supports more archive formats, otherwise X7z and 7za work the same. They didn't come with a manpage, html Xcommandline documentation will be installed in %%PREFIX%%/share/doc/p7zip/ X X XWWW: http://p7zip.sourceforge.net/ END-of-pkg-descr echo x - pkg-plist sed 's/^X//' >pkg-plist << 'END-of-pkg-plist' Xbin/7z Xbin/7za Xp7zip/bin/7z Xp7zip/bin/Codecs/7zAES.dll Xp7zip/bin/Codecs/BZip2.dll Xp7zip/bin/Codecs/Copy.dll Xp7zip/bin/Codecs/Implode.dll Xp7zip/bin/Codecs/PPMD.dll Xp7zip/bin/Codecs/AES.dll Xp7zip/bin/Codecs/Branch.dll Xp7zip/bin/Codecs/Deflate.dll Xp7zip/bin/Codecs/LZMA.dll Xp7zip/bin/Codecs/Swap.dll Xp7zip/bin/Formats/7z.dll Xp7zip/bin/Formats/Rar.dll Xp7zip/bin/Formats/Tar.dll Xp7zip/bin/Formats/Zip.dll Xp7zip/bin/Formats/arj.dll Xp7zip/bin/Formats/bz2.dll Xp7zip/bin/Formats/cab.dll Xp7zip/bin/Formats/cpio.dll Xp7zip/bin/Formats/deb.dll Xp7zip/bin/Formats/gz.dll Xp7zip/bin/Formats/rpm.dll Xp7zip/bin/Formats/split.dll X%%PORTDOCS%%%%DOCSDIR%%/index.htm X%%PORTDOCS%%%%DOCSDIR%%/syntax.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/add.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/delete.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/extract.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/extract_full.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/index.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/list.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/test.htm X%%PORTDOCS%%%%DOCSDIR%%/commands/update.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/exclude.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/include.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/index.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/method.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/output_dir.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/overwrite.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/password.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/recurse.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/sfx.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/type.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/update.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/working_dir.htm X%%PORTDOCS%%%%DOCSDIR%%/switches/yes.htm X@dirrm p7zip/bin/Formats X@dirrm p7zip/bin/Codecs X@dirrm p7zip/bin X@dirrm p7zip X%%PORTDOCS%%@dirrm %%DOCSDIR%%/commands X%%PORTDOCS%%@dirrm %%DOCSDIR%%/switches X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-pkg-plist echo x - distinfo sed 's/^X//' >distinfo << 'END-of-distinfo' XMD5 (p7zip_0.90.tar.bz2) = 6600fd9711b5cebd52aac2ce4d9ba727 XSIZE (p7zip_0.90.tar.bz2) = 447371 END-of-distinfo echo c - files/ mkdir -p files/ > /dev/null 2>&1 echo x - files/7z sed 's/^X//' >files/7z << 'END-of-files/7z' X#! /bin/sh XPROG=$(dirname $(realpath $0))/../p7zip/bin/7z X X$PROG "$@" END-of-files/7z echo x - files/patch-aa sed 's/^X//' >files/patch-aa << 'END-of-files/patch-aa' XIndex: myWindows/makefile X@@ -2,7 +2,7 @@ X X LOCAL_FLAGS=-I. -I.. -I../include_windows X X-LOCAL_SHARED=-lpthread -lm X+LOCAL_SHARED=-pthread X X OBJS=myEvents.o myFiles.o myFindFile.o myDirectoryAndPath.o \ X myLastError.o myModuleFileName.o my_itow.o \ END-of-files/patch-aa echo x - files/patch-ab sed 's/^X//' >files/patch-ab << 'END-of-files/patch-ab' XIndex: 7zip/UI/Console/makefile X@@ -8,7 +8,7 @@ X # Cygwin does not support -ldl X LOCAL_LIBS=-lpthread X else X-LOCAL_LIBS=-lpthread -ldl -lm X+LOCAL_LIBS=-pthread X endif X X MY_WINDOWS=$(MY_HOME)/myDirectoryAndPath.o \ END-of-files/patch-ab echo x - files/patch-ac sed 's/^X//' >files/patch-ac << 'END-of-files/patch-ac' XIndex: 7zip/Bundles/Alone/makefile X@@ -21,7 +21,7 @@ X $(MY_HOME)/wine_strings.o \ X $(MY_HOME)/stuff_for_cygwin.o X X-LOCAL_SHARED=-lpthread -lm X+LOCAL_SHARED=-pthread X X X OBJS=\ END-of-files/patch-ac echo x - files/patch-ba sed 's/^X//' >files/patch-ba << 'END-of-files/patch-ba' XIndex: Windows/Time.h X@@ -41,7 +41,11 @@ X fileTime.dwHighDateTime = DWORD(ll >> 32); X } X X+#ifdef __FreeBSD__ X+inline bool FileTimeToUnixTime(const FILETIME &fileTime, time_t &unixTime) X+#else X inline bool FileTimeToUnixTime(const FILETIME &fileTime, long &unixTime) X+#endif X { X UINT64 winTime = (((UINT64)fileTime.dwHighDateTime) << 32) + fileTime.dwLowDateTime; X if (winTime < kUnixTimeStartValue) X@@ -49,7 +53,11 @@ X winTime = (winTime - kUnixTimeStartValue) / kNumTimeQuantumsInSecond; X if (winTime >= 0xFFFFFFFF) X return false; X+#ifdef __FreeBSD__ X+ unixTime = (time_t)winTime; X+#else X unixTime = (long)winTime; X+#endif X return true; X } X END-of-files/patch-ba exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 19:59: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 2476816A4CE; Sun, 18 Jul 2004 19:59:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 039AD43D1D; Sun, 18 Jul 2004 19:59:31 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from freefall.freebsd.org (lth@localhost [127.0.0.1]) i6IJxUnJ088888; Sun, 18 Jul 2004 19:59:30 GMT (envelope-from lth@freefall.freebsd.org) Received: (from lth@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IJxUT7088884; Sun, 18 Jul 2004 19:59:30 GMT (envelope-from lth) Date: Sun, 18 Jul 2004 19:59:30 GMT From: Lars Thegler Message-Id: <200407181959.i6IJxUT7088884@freefall.freebsd.org> To: zaa@ulstu.ru, lth@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69242: [MAINTAINER UPDATE] textproc/p5-Text-WikiFormat up to 0.72 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 18 Jul 2004 19:59:31 -0000 Synopsis: [MAINTAINER UPDATE] textproc/p5-Text-WikiFormat up to 0.72 State-Changed-From-To: open->closed State-Changed-By: lth State-Changed-When: Sun Jul 18 19:59:22 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69242 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 20: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 CF0A716A4D0 for ; Sun, 18 Jul 2004 20:30:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C78A643D3F for ; Sun, 18 Jul 2004 20:30:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IKUIlt094008 for ; Sun, 18 Jul 2004 20:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IKUID5094007; Sun, 18 Jul 2004 20:30:18 GMT (envelope-from gnats) Date: Sun, 18 Jul 2004 20:30:18 GMT Message-Id: <200407182030.i6IKUID5094007@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rui Lopes Subject: Re: ports/68769: [PATCH] devel/maven: update to 1.0.r4 and MASTER_SITE_APACHE 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, 18 Jul 2004 20:30:19 -0000 The following reply was made to PR ports/68769; it has been noted by GNATS. From: Rui Lopes To: Herve Quiroz Cc: Volker Stolz , freebsd-gnats-submit@freebsd.org Subject: Re: ports/68769: [PATCH] devel/maven: update to 1.0.r4 and MASTER_SITE_APACHE Date: Sun, 18 Jul 2004 21:28:02 +0100 Hi, Herve Quiroz wrote: > On Sat, Jul 17, 2004 at 10:36:37PM +0100, Rui Lopes wrote: > >>See the attached patch, it contains all "fixes" from the discussion >>and updates Maven to 1.0 final. If you are agree with it, lets have >>this commited. > > > I agree with it, excepted for some small problem I noticed. The > following statement will not perform what you intend it to do: > > .for file in ${WRKSRC}/${dir}/*.jar > <...> > .endfor > > The star (*) is a shell wildcard and make will not expand it. In the end it will do what we want too :) [...] > IMHO you may remove the nested loop by using the wildcard directly (just > as it performs with your patch). I attached a patch (to be applied > against Makefile from 1.0.r2). Yes, apply this patch too. -- Rui Lopes From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 22:10: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 42E7016A4CF for ; Sun, 18 Jul 2004 22:10:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34FB643D46 for ; Sun, 18 Jul 2004 22:10:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IMAI9J011943 for ; Sun, 18 Jul 2004 22:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IMAIYE011940; Sun, 18 Jul 2004 22:10:18 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 22:10:18 GMT Resent-Message-Id: <200407182210.i6IMAIYE011940@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jie Gao Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69A2616A4CE for ; Sun, 18 Jul 2004 22:08:32 +0000 (GMT) Received: from ensc.cpsc.ucalgary.ca (ensc.cpsc.ucalgary.ca [136.159.2.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11EB743D46 for ; Sun, 18 Jul 2004 22:08:32 +0000 (GMT) (envelope-from gaoj@cpsc.ucalgary.ca) Received: from imgw1.cpsc.ucalgary.ca (imgw1.cpsc.ucalgary.ca [136.159.5.9]) i6IM47eB028789 for ; Sun, 18 Jul 2004 16:04:07 -0600 (MDT) Received: from aibsd (sana-sa [136.159.7.231])i6IM42pi014670 for ; Sun, 18 Jul 2004 16:04:02 -0600 Received: by aibsd (sSMTP sendmail emulation); Sun, 18 Jul 2004 16:04:02 -0600 Message-Id: <200407182204.i6IM42pi014670@imgw1.cpsc.ucalgary.ca> Date: Sun, 18 Jul 2004 16:04:02 -0600 From: "Jie Gao" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69251: [PATCH] chinese/xsim does not compile with coming GCC 3.4 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: Sun, 18 Jul 2004 22:10:18 -0000 >Number: 69251 >Category: ports >Synopsis: [PATCH] chinese/xsim does not compile with coming GCC 3.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 22:10:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jie Gao >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD aibsd-current 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Thu Jul 15 10:00:38 MDT 2004 gaoj@aibsd-current:/usr/obj/usr/src/sys/AIBSD i386 >Description: chinese/xsim does not compile when using GCC 3.4 because of an internal change in GCC. Besides, there are several other issues with this port. The patch included fix the following problems: 1. Compilation failure when using GCC 3.4 2. Does not respect ${CFLAGS} 3. Dependancy problem: This port has preference on db4 over db3.3, i.e. when both are present, it uses db4. So change the dependancy from db3.3 to db4. 4. The default installation does not create user settings, which causes write attempt to global settings and the consequent failure confuses users. 5. Locale zh_CN.EUC is not present on 5.x. Swith to zh_CN.eucCN. >How-To-Repeat: >Fix: --- patch-xsim begins here --- diff -ruN xsim.old/Makefile xsim/Makefile --- xsim.old/Makefile Sun Jul 18 14:38:25 2004 +++ xsim/Makefile Sun Jul 18 15:52:46 2004 @@ -16,12 +16,12 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A simple and fast GBK Chinese XIM server -LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3 +LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 USE_REINPLACE= yes USE_XLIB= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-cn-locale=EUC +CONFIGURE_ARGS= --with-cn-locale=eucCN .include @@ -34,9 +34,14 @@ ${WRKSRC}/xsim/IMdkit/IMConn.c @${FIND} ${WRKSRC} -name xsimrc.in -or -name Makefile.in | ${XARGS} \ ${REINPLACE_CMD} -Ee 's,@prefix@/(plugins|dat|bin),${DATADIR}/\1,g' + @${FIND} ${WRKSRC} ! -type d \ + -exec ${GREP} -q _CPP_BITS_IOSBASE_H '{}' \; \ + -exec ${REINPLACE_CMD} 's/#ifdef _CPP_BITS_IOSBASE_H/#if defined(_IOS_BASE_H) || defined(_CPP_BITS_IOSBASE_H)/g' '{}' \; + @${REINPLACE_CMD} "s/-O2/${CFLAGS}/g" ${WRKSRC}/configure post-install: - @${LN} -s ${DATADIR}/bin/xsim ${PREFIX}/bin/xsim + @${SED} "s|%%PREFIX%%|${PREFIX}|g" <${FILESDIR}/xsim.sh \ + >${PREFIX}/bin/xsim && ${CHMOD} 555 ${PREFIX}/bin/xsim @${MKDIR} ${DATADIR}/dat @${CP} -R ${WRKDIR}/usr/local/xsim/dat/* ${DATADIR}/dat @${SED} -e 's,%%X11BASE%%,${X11BASE},g' < ${PKGMESSAGE} diff -ruN xsim.old/files/xsim.sh xsim/files/xsim.sh --- xsim.old/files/xsim.sh Wed Dec 31 17:00:00 1969 +++ xsim/files/xsim.sh Sun Jul 18 15:32:37 2004 @@ -0,0 +1,13 @@ +#!/bin/sh + +# Install user settings directory if it does not exist +if [ ! -d ${HOME}/.xsim ] +then + mkdir ${HOME}/.xsim + cp %%PREFIX%%/share/xsim/dat/* ${HOME}/.xsim/ + sed "/^DICT_LOCAL/s|%%PREFIX%%/share/xsim/dat|${HOME}/.xsim|g" \ + %%PREFIX%%/etc/xsimrc > ${HOME}/.xsim/xsimrc +fi + +# Start xsim +exec %%PREFIX%%/share/xsim/bin/xsim $* diff -ruN xsim.old/pkg-message xsim/pkg-message --- xsim.old/pkg-message Sun Jul 18 14:38:25 2004 +++ xsim/pkg-message Sun Jul 18 15:34:00 2004 @@ -12,5 +12,5 @@ Remember to set environment varible XMODIFIERS: csh/tcsh: setenv XMODIFIERS @im=XSIM sh/bash: export XMODIFIERS='@im=XSIM' -and set LANG, LC_CTYPE to zh_CN.EUC. +and set LANG, LC_CTYPE to zh_CN.eucCN. ------------------------------------------------------------------------------- --- patch-xsim ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 22: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 330D316A4CE for ; Sun, 18 Jul 2004 22:30:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1624143D45 for ; Sun, 18 Jul 2004 22:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IMULIx013247 for ; Sun, 18 Jul 2004 22:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IMULE2013245; Sun, 18 Jul 2004 22:30:21 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 22:30:21 GMT Resent-Message-Id: <200407182230.i6IMULE2013245@freefall.freebsd.org> 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 1984C16A4CE for ; Sun, 18 Jul 2004 22:23:46 +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 AF93243D45 for ; Sun, 18 Jul 2004 22:23:34 +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 26D4C35783 for ; Mon, 19 Jul 2004 00:23:18 +0200 (CEST) Message-Id: <1090189428.0@scienide.energyhq.es.eu.org> Date: Mon, 19 Jul 2004 00:23:48 +0200 From: "Miguel Mendez" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/69253: Update games/doomlegacy to 1.4.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: Sun, 18 Jul 2004 22:30:22 -0000 >Number: 69253 >Category: ports >Synopsis: Update games/doomlegacy to 1.4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 22:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Miguel Mendez >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD 5.2.1-RELEASE-p9 #0: Tue Jul 13 15:09:55 CEST 2004 root@scienide.energyhq.es.eu.org:/usr/obj/usr/src/sys/SCIENIDE >Description: 1.4.3 is still in beta, so I've updated this to 1.4.2 until .3 is ready. >How-To-Repeat: >Fix: --- doomlegacy.diff begins here --- diff -ruN doomlegacy.old/Makefile doomlegacy/Makefile --- doomlegacy.old/Makefile Mon Apr 19 10:55:49 2004 +++ doomlegacy/Makefile Sun Jul 18 22:01:08 2004 @@ -5,7 +5,7 @@ # $FreeBSD: ports/games/doomlegacy/Makefile,v 1.7 2004/04/19 08:55:49 kris Exp $ PORTNAME= doomlegacy -PORTVERSION= 141 +PORTVERSION= 142 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -26,7 +26,7 @@ USE_GL= yes USE_SDL= mixer -WRKSRC= ${WRKDIR}/legacy_${PORTVERSION}_src +WRKSRC= ${WRKDIR}/doomlegacy_${PORTVERSION}_src MAKEFILE= makefile MAKE_ENV+= FREEBSD=1 FBSD_SDL=1 PTHREAD_LIBS="${PTHREAD_LIBS}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" diff -ruN doomlegacy.old/distinfo doomlegacy/distinfo --- doomlegacy.old/distinfo Sun Mar 28 19:01:30 2004 +++ doomlegacy/distinfo Sun Jul 18 21:53:41 2004 @@ -1,4 +1,4 @@ -MD5 (legacy_141_src.tar.gz) = 4e64cb19e0e57055e664bdf09bce14d2 -SIZE (legacy_141_src.tar.gz) = 1600679 +MD5 (legacy_142_src.tar.gz) = 62f5cdad464463038d568a53b13c22f7 +SIZE (legacy_142_src.tar.gz) = 1687954 MD5 (legacy_dat.zip) = 8182e1aebac3696ddc7f9e0663740d9a SIZE (legacy_dat.zip) = 340934 diff -ruN doomlegacy.old/pkg-plist doomlegacy/pkg-plist --- doomlegacy.old/pkg-plist Sun Mar 28 19:01:30 2004 +++ doomlegacy/pkg-plist Sun Jul 18 21:58:56 2004 @@ -8,21 +8,21 @@ %%PORTDOCS%%%%DOCSDIR%%/Doublescan.txt %%PORTDOCS%%%%DOCSDIR%%/README_SDL %%PORTDOCS%%%%DOCSDIR%%/boomref.html -%%PORTDOCS%%%%DOCSDIR%%/console.html +%%PORTDOCS%%%%DOCSDIR%%/Console.html %%PORTDOCS%%%%DOCSDIR%%/copying %%PORTDOCS%%%%DOCSDIR%%/doomatic.txt %%PORTDOCS%%%%DOCSDIR%%/doomlic.txt -%%PORTDOCS%%%%DOCSDIR%%/editing.html +%%PORTDOCS%%%%DOCSDIR%%/Editing.html %%PORTDOCS%%%%DOCSDIR%%/editspecs.html -%%PORTDOCS%%%%DOCSDIR%%/faq.html +%%PORTDOCS%%%%DOCSDIR%%/Faq.html %%PORTDOCS%%%%DOCSDIR%%/fsbasic.html %%PORTDOCS%%%%DOCSDIR%%/fsfuncs.html %%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/legacy.html +%%PORTDOCS%%%%DOCSDIR%%/Legacy.html %%PORTDOCS%%%%DOCSDIR%%/rules.txt -%%PORTDOCS%%%%DOCSDIR%%/skinspec.html +%%PORTDOCS%%%%DOCSDIR%%/Skinspec.html %%PORTDOCS%%%%DOCSDIR%%/sound.cfg %%PORTDOCS%%%%DOCSDIR%%/source.html -%%PORTDOCS%%%%DOCSDIR%%/whatsnew.html +%%PORTDOCS%%%%DOCSDIR%%/Whatsnew.html @dirrm share/doc/doomlegacy @dirrm doomlegacy --- doomlegacy.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 22: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 CAED116A4D4 for ; Sun, 18 Jul 2004 22:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9FF743D81 for ; Sun, 18 Jul 2004 22:50:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IMoJ3d014950 for ; Sun, 18 Jul 2004 22:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IMoJm8014949; Sun, 18 Jul 2004 22:50:19 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 22:50:19 GMT Resent-Message-Id: <200407182250.i6IMoJm8014949@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Ossintsev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3039B16A4CE for ; Sun, 18 Jul 2004 22:42:53 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id EFCFE43D58 for ; Sun, 18 Jul 2004 22:42:51 +0000 (GMT) (envelope-from eugos@gmx.net) Received: (qmail 15826 invoked by uid 65534); 18 Jul 2004 22:42:49 -0000 Received: from p50847F3E.dip.t-dialin.net (EHLO badger.home) (80.132.127.62) by mail.gmx.net (mp023) with SMTP; 19 Jul 2004 00:42:49 +0200 Received: by badger.home (Postfix, from userid 1001) id A7B042070; Mon, 19 Jul 2004 00:43:17 +0200 (CEST) Message-Id: <20040718224317.A7B042070@badger.home> Date: Mon, 19 Jul 2004 00:43:17 +0200 (CEST) From: Eugene@badger.home, Ossintsev@badger.home To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69254: [maintainer-update] lang/ocaml: update to 3.08.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eugene Ossintsev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 22:50:29 -0000 >Number: 69254 >Category: ports >Synopsis: [maintainer-update] lang/ocaml: update to 3.08.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 Jul 18 22:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Eugene Ossintsev >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD badger.home 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jul 7 22:59:01 CEST 2004 root@badger.home:/usr/obj/usr/src/sys/BADGER i386 >Description: Update to 3.08.0 >How-To-Repeat: >Fix: diff -ruN ocaml.orig/Makefile ocaml/Makefile --- ocaml.orig/Makefile Sun Jul 18 00:15:17 2004 +++ ocaml/Makefile Mon Jul 19 00:10:13 2004 @@ -6,17 +6,12 @@ # PORTNAME= ocaml -PORTVERSION= 3.07.2 +PORTVERSION= 3.08.0 CATEGORIES= lang -MASTER_SITES= http://caml.inria.fr/distrib/${DISTNAME}/ \ - ftp://ftp.inria.fr/INRIA/caml-light/${DISTNAME}/ \ - ftp://ftp.kurims.kyoto-u.ac.jp/pub/lang/caml-light/${DISTNAME}/ +MASTER_SITES= http://caml.inria.fr/distrib/${DISTNAME:S/.0$//}/ \ + ftp://ftp.inria.fr/INRIA/caml-light/${DISTNAME:S/.0$//}/ \ + ftp://ftp.kurims.kyoto-u.ac.jp/pub/lang/caml-light/${DISTNAME:S/.0$//}/ PKGNAMESUFFIX= ${SFX} -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.2$//} - -PATCH_SITES= ${MASTER_SITES} -PATCHFILES= ${DISTNAME}-patch2.diffs -PATCH_DIST_STRIP=-p1 MAINTAINER?= eugos@gmx.net COMMENT?= The Objective Caml compiler and programming environment @@ -46,15 +41,9 @@ HAS_CONFIGURE= yes ALL_TARGET= world.opt -.if ${MACHINE_ARCH} != "i386" -PLIST_SUB+= PROF="@comment " -.else -PLIST_SUB+= PROF="" -.endif - -MAN1= ocamlcp.1 ocamldep.1 ocamldebug.1 ocamlopt.1 ocamlrun.1 \ - ocamlyacc.1 ocamlmktop.1 ocaml.1 ocamlc.1 ocamllex.1 \ - ocamlprof.1 camlp4.1 +MAN1= ocamlcp.1 ocamldep.1 ocamldebug.1 ocamldoc.1 ocamlopt.1 \ + ocamlrun.1 ocamlyacc.1 ocamlmktop.1 ocaml.1 ocamlc.1 \ + ocamllex.1 ocamlprof.1 camlp4.1 MANN= Arg.n Array.n ArrayLabels.n Bigarray.Array1.n \ Bigarray.Array2.n Bigarray.Array3.n Bigarray.Genarray.n \ Bigarray.n Buffer.n Callback.n CamlinternalOO.n Char.n \ @@ -77,7 +66,7 @@ MLINKS= ocamlc.1 ocamlc.opt.1 ocamlopt.1 ocamlopt.opt.1 \ camlp4.1 camlp4o.1 camlp4.1 camlp4r.1 camlp4.1 mkcamlp4.1 \ camlp4.1 camlp4o.opt.1 camlp4.1 camlp4r.opt.1 \ - camlp4.1 ocpp.1 camlp4.1 camlp4sch.1 + camlp4.1 ocpp.1 CONFIGURE_ARGS= -prefix ${PREFIX} -with-pthread @@ -92,8 +81,10 @@ .include -.if ${ARCH} == "sparc64" -BROKEN= "Coredump during build on sparc64" +.if ${ARCH} != "i386" +PLIST_SUB+= PROF="@comment " +.else +PLIST_SUB+= PROF="" .endif post-install: diff -ruN ocaml.orig/distinfo ocaml/distinfo --- ocaml.orig/distinfo Sun Jul 18 00:15:17 2004 +++ ocaml/distinfo Thu Jul 15 16:02:19 2004 @@ -1,4 +1,2 @@ -MD5 (ocaml-3.07.tar.gz) = 2dd038055f5e1350078ad81270411b78 -SIZE (ocaml-3.07.tar.gz) = 2537449 -MD5 (ocaml-3.07-patch2.diffs) = f91d1f1e531f77011bd554817dbbc12a -SIZE (ocaml-3.07-patch2.diffs) = 42799 +MD5 (ocaml-3.08.0.tar.gz) = c6ef478362295c150101cdd2efcd38e0 +SIZE (ocaml-3.08.0.tar.gz) = 2458425 diff -ruN ocaml.orig/files/patch-camlp4-lib::Makefile ocaml/files/patch-camlp4-lib::Makefile --- ocaml.orig/files/patch-camlp4-lib::Makefile Sun Jul 18 00:15:17 2004 +++ ocaml/files/patch-camlp4-lib::Makefile Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ ---- camlp4/lib/Makefile.orig Sun Dec 14 02:41:09 2003 -+++ camlp4/lib/Makefile Sun Dec 14 02:41:24 2003 -@@ -43,6 +43,6 @@ - - installopt: - cp $(TARGET:.cma=.cmxa) *.cmx "$(LIBDIR)/camlp4/." -- tar cf - $(TARGET:.cma=.$(A)) | (cd "$(LIBDIR)/camlp4/."; tar xf -) -+ tar cf - $(TARGET:S/.cma$/.$(A)/) | (cd "$(LIBDIR)/camlp4/."; tar xf -) - - include .depend diff -ruN ocaml.orig/files/patch-camlp4-meta::Makefile ocaml/files/patch-camlp4-meta::Makefile --- ocaml.orig/files/patch-camlp4-meta::Makefile Sun Jul 18 00:15:17 2004 +++ ocaml/files/patch-camlp4-meta::Makefile Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- camlp4/meta/Makefile.orig Sun Dec 14 02:40:05 2003 -+++ camlp4/meta/Makefile Sun Dec 14 02:40:20 2003 -@@ -49,7 +49,7 @@ - cp camlp4r$(EXE) "$(BINDIR)/." - if test -f camlp4r.opt; then \ - cp camlp4r.opt "$(BINDIR)/camlp4r.opt$(EXE)" ;\ -- for target in $(OBJSX) $(OBJSX:.cmx=.$(O)) ; do \ -+ for target in $(OBJSX) $(OBJSX:S/.cmx$/.$(O)/) ; do \ - if test -f $$target; then \ - cp $$target "$(LIBDIR)/camlp4/."; \ - fi; \ diff -ruN ocaml.orig/files/patch-camlp4-ocaml_src-lib::Makefile ocaml/files/patch-camlp4-ocaml_src-lib::Makefile --- ocaml.orig/files/patch-camlp4-ocaml_src-lib::Makefile Sun Jul 18 00:15:17 2004 +++ ocaml/files/patch-camlp4-ocaml_src-lib::Makefile Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ ---- camlp4/ocaml_src/lib/Makefile.orig Sun Dec 14 02:38:28 2003 -+++ camlp4/ocaml_src/lib/Makefile Sun Dec 14 02:38:55 2003 -@@ -43,6 +43,6 @@ - - installopt: - cp $(TARGET:.cma=.cmxa) *.cmx "$(LIBDIR)/camlp4/." -- tar cf - $(TARGET:.cma=.$(A)) | (cd "$(LIBDIR)/camlp4/."; tar xf -) -+ tar cf - $(TARGET:S/.cma$/.$(A)/) | (cd "$(LIBDIR)/camlp4/."; tar xf -) - - include .depend diff -ruN ocaml.orig/files/patch-camlp4-ocaml_src-meta::Makefile ocaml/files/patch-camlp4-ocaml_src-meta::Makefile --- ocaml.orig/files/patch-camlp4-ocaml_src-meta::Makefile Sun Jul 18 00:15:17 2004 +++ ocaml/files/patch-camlp4-ocaml_src-meta::Makefile Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- camlp4/ocaml_src/meta/Makefile.orig Sun Dec 14 02:33:49 2003 -+++ camlp4/ocaml_src/meta/Makefile Sun Dec 14 02:35:12 2003 -@@ -49,7 +49,7 @@ - cp camlp4r$(EXE) "$(BINDIR)/." - if test -f camlp4r.opt; then \ - cp camlp4r.opt "$(BINDIR)/camlp4r.opt$(EXE)" ;\ -- for target in $(OBJSX) $(OBJSX:.cmx=.$(O)) ; do \ -+ for target in $(OBJSX) $(OBJSX:S/.cmx$/.$(O)/) ; do \ - if test -f $$target; then \ - cp $$target "$(LIBDIR)/camlp4/."; \ - fi; \ diff -ruN ocaml.orig/files/patch-configure ocaml/files/patch-configure --- ocaml.orig/files/patch-configure Sun Jul 18 00:15:17 2004 +++ ocaml/files/patch-configure Thu Jul 15 17:01:39 2004 @@ -1,24 +1,6 @@ ---- configure.orig Thu Sep 25 01:17:13 2003 -+++ configure Mon Feb 2 04:21:43 2004 -@@ -559,6 +559,8 @@ - powerpc-*-darwin*) arch=power; model=ppc; system=rhapsody;; - arm*-*-linux*) arch=arm; system=linux;; - ia64-*-linux*) arch=ia64; system=linux;; -+ ia64-*-freebsd*) arch=ia64; system=freebsd;; -+ amd64-*-freebsd*) arch=amd64; system=freebsd;; - x86_64-*-linux*) arch=amd64; system=linux;; - esac - -@@ -621,7 +623,7 @@ - power,*,bsd) aspp='gcc'; asppflags='-c -DSYS_$(SYSTEM)';; - power,*,rhapsody) ;; - arm,*,linux) aspp='gcc'; asppflags='-c -DSYS_$(SYSTEM)';; -- ia64,*,linux) asflags=-xexplicit -+ ia64,*,*) asflags=-xexplicit - aspp='gcc'; asppflags='-c -DSYS_$(SYSTEM) -Wa,-xexplicit';; - amd64,*,*) aspp='gcc'; asppflags='-c -DSYS_$(SYSTEM)';; - esac -@@ -1097,116 +1099,14 @@ +--- configure.orig Thu Jul 15 16:17:46 2004 ++++ configure Thu Jul 15 16:58:51 2004 +@@ -1113,116 +1113,14 @@ x11_include="not found" x11_link="not found" @@ -74,7 +56,7 @@ -else - x11_try_lib_dir=`echo $x11_include | sed -e 's|include|lib|'` +if [ -n "$x11_include_dir" ]; then -+ x11_include="$x11_include_dir" ++ x11_include="$x11_include_dir" fi -for dir in \ @@ -135,8 +117,8 @@ -done - +if [ -n "$x11_lib_dir" ]; then -+ x11_link="-L$x11_lib_dir -lX11" -+ x11_libs="-L$x11_lib_dir" ++ x11_link="-L$x11_lib_dir -lX11" ++ x11_libs="-L$x11_lib_dir" +fi if test "$x11_include" = "not found" || test "$x11_link" = "not found" diff -ruN ocaml.orig/pkg-plist ocaml/pkg-plist --- ocaml.orig/pkg-plist Sun Jul 18 00:15:17 2004 +++ ocaml/pkg-plist Fri Jul 16 16:22:09 2004 @@ -4,7 +4,6 @@ bin/camlp4o.opt bin/camlp4r bin/camlp4r.opt -bin/camlp4sch %%TK%%bin/labltk bin/mkcamlp4 bin/ocaml @@ -30,6 +29,7 @@ lib/ocaml/caml/alloc.h lib/ocaml/caml/bigarray.h lib/ocaml/caml/callback.h +lib/ocaml/caml/compatibility.h lib/ocaml/caml/config.h lib/ocaml/caml/custom.h lib/ocaml/caml/fail.h @@ -46,26 +46,19 @@ lib/ocaml/camlp4/camlp4_top.cma lib/ocaml/camlp4/camlp4o.cma lib/ocaml/camlp4/camlp4r.cma -lib/ocaml/camlp4/camlp4sch.cma lib/ocaml/camlp4/extfold.cmi -lib/ocaml/camlp4/extfold.cmx lib/ocaml/camlp4/extfold.mli lib/ocaml/camlp4/extfun.cmi -lib/ocaml/camlp4/extfun.cmx lib/ocaml/camlp4/extfun.mli lib/ocaml/camlp4/fstream.cmi -lib/ocaml/camlp4/fstream.cmx lib/ocaml/camlp4/fstream.mli lib/ocaml/camlp4/gramext.cmi -lib/ocaml/camlp4/gramext.cmx lib/ocaml/camlp4/gramext.mli lib/ocaml/camlp4/gramlib.a lib/ocaml/camlp4/gramlib.cma lib/ocaml/camlp4/gramlib.cmxa lib/ocaml/camlp4/grammar.cmi -lib/ocaml/camlp4/grammar.cmx lib/ocaml/camlp4/grammar.mli -lib/ocaml/camlp4/lib.sml lib/ocaml/camlp4/mLast.cmi lib/ocaml/camlp4/mLast.mli lib/ocaml/camlp4/ocpp.cmo @@ -73,24 +66,44 @@ lib/ocaml/camlp4/odyl.cma lib/ocaml/camlp4/odyl.cmo lib/ocaml/camlp4/odyl.cmxa +lib/ocaml/camlp4/odyl.cmx +lib/ocaml/camlp4/odyl.o lib/ocaml/camlp4/odyl_main.cmi lib/ocaml/camlp4/pa_extend.cmi lib/ocaml/camlp4/pa_extend.cmo +lib/ocaml/camlp4/pa_extend.cmx +lib/ocaml/camlp4/pa_extend.o lib/ocaml/camlp4/pa_extend_m.cmo +lib/ocaml/camlp4/pa_extend_m.cmx +lib/ocaml/camlp4/pa_extend_m.o lib/ocaml/camlp4/pa_extfold.cmo +lib/ocaml/camlp4/pa_extfold.cmx +lib/ocaml/camlp4/pa_extfold.o lib/ocaml/camlp4/pa_extfun.cmo -lib/ocaml/camlp4/pa_format.cmo +lib/ocaml/camlp4/pa_extfun.cmx +lib/ocaml/camlp4/pa_extfun.o lib/ocaml/camlp4/pa_fstream.cmo +lib/ocaml/camlp4/pa_fstream.cmx +lib/ocaml/camlp4/pa_fstream.o lib/ocaml/camlp4/pa_ifdef.cmo -lib/ocaml/camlp4/pa_lefteval.cmo -lib/ocaml/camlp4/pa_lisp.cmo +lib/ocaml/camlp4/pa_ifdef.cmx +lib/ocaml/camlp4/pa_ifdef.o lib/ocaml/camlp4/pa_macro.cmi lib/ocaml/camlp4/pa_macro.cmo +lib/ocaml/camlp4/pa_macro.cmx +lib/ocaml/camlp4/pa_macro.o lib/ocaml/camlp4/pa_o.cmi lib/ocaml/camlp4/pa_o.cmo -lib/ocaml/camlp4/pa_olabl.cmo +lib/ocaml/camlp4/pa_o.cmx +lib/ocaml/camlp4/pa_o.o +lib/ocaml/camlp4/pa_o_fast.cmi +lib/ocaml/camlp4/pa_o_fast.cmx lib/ocaml/camlp4/pa_oop.cmo +lib/ocaml/camlp4/pa_oop.cmx +lib/ocaml/camlp4/pa_oop.o lib/ocaml/camlp4/pa_op.cmo +lib/ocaml/camlp4/pa_op.cmx +lib/ocaml/camlp4/pa_op.o lib/ocaml/camlp4/pa_r.cmo lib/ocaml/camlp4/pa_r.cmx lib/ocaml/camlp4/pa_r.o @@ -98,37 +111,52 @@ lib/ocaml/camlp4/pa_rp.cmx lib/ocaml/camlp4/pa_rp.o lib/ocaml/camlp4/pa_ru.cmo -lib/ocaml/camlp4/pa_scheme.cmo -lib/ocaml/camlp4/pa_sml.cmo +lib/ocaml/camlp4/pa_ru.cmx +lib/ocaml/camlp4/pa_ru.o lib/ocaml/camlp4/pcaml.cmi lib/ocaml/camlp4/pcaml.mli lib/ocaml/camlp4/plexer.cmi -lib/ocaml/camlp4/plexer.cmx lib/ocaml/camlp4/plexer.mli lib/ocaml/camlp4/pr_depend.cmo +lib/ocaml/camlp4/pr_depend.cmx +lib/ocaml/camlp4/pr_depend.o lib/ocaml/camlp4/pr_dump.cmo lib/ocaml/camlp4/pr_dump.cmx lib/ocaml/camlp4/pr_dump.o lib/ocaml/camlp4/pr_extend.cmo +lib/ocaml/camlp4/pr_extend.cmx +lib/ocaml/camlp4/pr_extend.o lib/ocaml/camlp4/pr_extfun.cmo +lib/ocaml/camlp4/pr_extfun.cmx +lib/ocaml/camlp4/pr_extfun.o lib/ocaml/camlp4/pr_null.cmo +lib/ocaml/camlp4/pr_null.cmx +lib/ocaml/camlp4/pr_null.o lib/ocaml/camlp4/pr_o.cmo +lib/ocaml/camlp4/pr_o.cmx +lib/ocaml/camlp4/pr_o.o lib/ocaml/camlp4/pr_op.cmo +lib/ocaml/camlp4/pr_op.cmx +lib/ocaml/camlp4/pr_op.o lib/ocaml/camlp4/pr_r.cmo +lib/ocaml/camlp4/pr_r.cmx +lib/ocaml/camlp4/pr_r.o lib/ocaml/camlp4/pr_rp.cmo -lib/ocaml/camlp4/pr_scheme.cmo -lib/ocaml/camlp4/pr_schemep.cmo +lib/ocaml/camlp4/pr_rp.cmx +lib/ocaml/camlp4/pr_rp.o lib/ocaml/camlp4/q_MLast.cmo +lib/ocaml/camlp4/q_MLast.cmx +lib/ocaml/camlp4/q_MLast.o lib/ocaml/camlp4/q_phony.cmo +lib/ocaml/camlp4/q_phony.cmx +lib/ocaml/camlp4/q_phony.o lib/ocaml/camlp4/quotation.cmi lib/ocaml/camlp4/quotation.mli lib/ocaml/camlp4/spretty.cmi lib/ocaml/camlp4/spretty.mli lib/ocaml/camlp4/stdpp.cmi -lib/ocaml/camlp4/stdpp.cmx lib/ocaml/camlp4/stdpp.mli lib/ocaml/camlp4/token.cmi -lib/ocaml/camlp4/token.cmx lib/ocaml/camlp4/token.mli %%TK%%lib/ocaml/labltk/balloon.cmi %%TK%%lib/ocaml/labltk/balloon.cmx @@ -452,8 +480,8 @@ lib/ocaml/ocamldoc/odoc_class.cmi lib/ocaml/ocamldoc/odoc_comments.cmi lib/ocaml/ocamldoc/odoc_comments_global.cmi +lib/ocaml/ocamldoc/odoc_config.cmi lib/ocaml/ocamldoc/odoc_control.cmi -lib/ocaml/ocamldoc/odoc_crc.cmi lib/ocaml/ocamldoc/odoc_cross.cmi lib/ocaml/ocamldoc/odoc_dag2html.cmi lib/ocaml/ocamldoc/odoc_dep.cmi @@ -481,11 +509,13 @@ lib/ocaml/ocamldoc/odoc_opt.cmi lib/ocaml/ocamldoc/odoc_parameter.cmi lib/ocaml/ocamldoc/odoc_parser.cmi +lib/ocaml/ocamldoc/odoc_print.cmi lib/ocaml/ocamldoc/odoc_scan.cmi lib/ocaml/ocamldoc/odoc_search.cmi lib/ocaml/ocamldoc/odoc_see_lexer.cmi lib/ocaml/ocamldoc/odoc_sig.cmi lib/ocaml/ocamldoc/odoc_str.cmi +lib/ocaml/ocamldoc/odoc_test.cmi lib/ocaml/ocamldoc/odoc_texi.cmi lib/ocaml/ocamldoc/odoc_text.cmi lib/ocaml/ocamldoc/odoc_text_lexer.cmi @@ -649,8 +679,6 @@ lib/ocaml/int64.mli %%PROF%%lib/ocaml/int64.p.cmx lib/ocaml/int_misc.cmx -lib/ocaml/labelled.cmx -%%PROF%%lib/ocaml/labelled.p.cmx lib/ocaml/lazy.cmi lib/ocaml/lazy.cmx lib/ocaml/lazy.ml @@ -879,6 +907,7 @@ @dirrm lib/ocaml/caml @dirrm lib/ocaml/camlp4 %%TK%%@dirrm lib/ocaml/labltk +@dirrm lib/ocaml/ocamldoc/custom @dirrm lib/ocaml/ocamldoc @dirrm lib/ocaml/stublibs @dirrm lib/ocaml/threads >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 22: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 D97A116A4D7 for ; Sun, 18 Jul 2004 22:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 082D343D83 for ; Sun, 18 Jul 2004 22:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IMoJab014963 for ; Sun, 18 Jul 2004 22:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IMoJVC014962; Sun, 18 Jul 2004 22:50:19 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 22:50:19 GMT Resent-Message-Id: <200407182250.i6IMoJVC014962@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Ossintsev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF2716A4CE for ; Sun, 18 Jul 2004 22:44:12 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id ECA6843D3F for ; Sun, 18 Jul 2004 22:44:09 +0000 (GMT) (envelope-from eugos@gmx.net) Received: (qmail 18757 invoked by uid 65534); 18 Jul 2004 22:44:08 -0000 Received: from p50847F3E.dip.t-dialin.net (EHLO badger.home) (80.132.127.62) by mail.gmx.net (mp001) with SMTP; 19 Jul 2004 00:44:08 +0200 Received: by badger.home (Postfix, from userid 1001) id B29262070; Mon, 19 Jul 2004 00:44:36 +0200 (CEST) Message-Id: <20040718224436.B29262070@badger.home> Date: Mon, 19 Jul 2004 00:44:36 +0200 (CEST) From: Eugene@badger.home, Ossintsev@badger.home To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69255: [maintainer-update] lang/ocaml-doc: update to 3.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eugene Ossintsev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 22:50:30 -0000 >Number: 69255 >Category: ports >Synopsis: [maintainer-update] lang/ocaml-doc: update to 3.08 >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 Jul 18 22:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Eugene Ossintsev >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD badger.home 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jul 7 22:59:01 CEST 2004 root@badger.home:/usr/obj/usr/src/sys/BADGER i386 >Description: Update to 3.08 >How-To-Repeat: >Fix: diff -ruN ocaml-doc.orig/Makefile ocaml-doc/Makefile --- ocaml-doc.orig/Makefile Mon Jul 19 00:12:06 2004 +++ ocaml-doc/Makefile Mon Jul 19 00:16:15 2004 @@ -6,7 +6,7 @@ # PORTNAME= ocaml -PORTVERSION= 3.07 +PORTVERSION= 3.08 CATEGORIES= lang MASTER_SITES= http://caml.inria.fr/distrib/${DISTNAME}/ \ ftp://ftp.inria.fr/INRIA/caml-light/${DISTNAME}/ \ diff -ruN ocaml-doc.orig/distinfo ocaml-doc/distinfo --- ocaml-doc.orig/distinfo Mon Jul 19 00:12:06 2004 +++ ocaml-doc/distinfo Mon Jul 19 00:17:09 2004 @@ -1,4 +1,4 @@ -MD5 (ocaml-3.07-refman.html.tar.gz) = 9ac1f7e9e381b95504f0e7868d9fbf52 -SIZE (ocaml-3.07-refman.html.tar.gz) = 475879 -MD5 (ocaml-3.07-refman.ps.gz) = 09a9ac4bc1ec90ca4d16743ffbe76c78 -SIZE (ocaml-3.07-refman.ps.gz) = 580036 +MD5 (ocaml-3.08-refman.html.tar.gz) = 0daee5643db6960682c1a7d84467885f +SIZE (ocaml-3.08-refman.html.tar.gz) = 488999 +MD5 (ocaml-3.08-refman.ps.gz) = 35a5d4318456c0982e72ee3f33364bf5 +SIZE (ocaml-3.08-refman.ps.gz) = 585397 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 18 23:00: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 D126916A4CE for ; Sun, 18 Jul 2004 23:00:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C42F743D2D for ; Sun, 18 Jul 2004 23:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6IN0Vo9015258 for ; Sun, 18 Jul 2004 23:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6IN0VxC015257; Sun, 18 Jul 2004 23:00:31 GMT (envelope-from gnats) Resent-Date: Sun, 18 Jul 2004 23:00:31 GMT Resent-Message-Id: <200407182300.i6IN0VxC015257@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD3D216A4CE for ; Sun, 18 Jul 2004 22:55:18 +0000 (GMT) Received: from mail.tiscali.cz (stateless2.tiscali.cz [213.235.135.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D01543D53 for ; Sun, 18 Jul 2004 22:55:18 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (212.11.115.65) by mail.tiscali.cz (6.7.021) id 40E84FD1005ADBB5 for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 00:55:16 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BmK22-000KM2-H7 ; Mon, 19 Jul 2004 00:21:18 +0200 Message-Id: Date: Mon, 19 Jul 2004 00:21:18 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hsn@netmag.cz Subject: ports/69256: [PATCH] sysutils/portindex: update to 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: Sun, 18 Jul 2004 23:00:31 -0000 >Number: 69256 >Category: ports >Synopsis: [PATCH] sysutils/portindex: update to 16 >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 Jul 18 23:00:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p6 i386 >Organization: Sanatana >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p6 FreeBSD 5.2.1-RELEASE-p6 #7: Mon May 10 17:15:51 CEST 2004 >Description: - Update to 16 - This version supports 13 fields long make describe format. closes ports/69238 - Database format changed in both python and postgresql backends. - You need to delete portindex.pck file if you have more than 0 entries in index generated by portindex 15 - You need to update postgresql tables (added some columns) by hand or use create.sql script for drop + create. - loadindex and updinst are 100% faster due to using of prepared statements in portgresql. - updateall script optimized. When used, slow fs walking is avoided in portreadmes, loadindex - updinst updates alive package status - added stealthupdates script for listing changes without portrevision bumps - added options to configuration file for keeping dupes in index (recommended) and keeping ports with partial unresolved depends - added back link to portindex homepage because downloading rate drops Port maintainer (hsn@netmag.cz) is cc'd. >How-To-Repeat: >Fix: --- portindex-16.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/Makefile /home/hsn/myports/portindex/Makefile --- /usr/ports/sysutils/portindex/Makefile Mon Jul 12 18:06:32 2004 +++ /home/hsn/myports/portindex/Makefile Sun Jul 18 21:58:43 2004 @@ -6,7 +6,7 @@ # PORTNAME= portindex -PORTVERSION= 15 +PORTVERSION= 16 CATEGORIES= sysutils MASTER_SITES= http://people.tecnik93.com/~radim/distfiles/ DISTNAME= bsdportsutils-${PORTVERSION} @@ -23,7 +23,7 @@ PLIST_FILES= etc/portindex.conf.sample PORTINDEX= bsdpkg freebsdports indexer updatereadmes config \ portindexdb -MINORUPDATES= minorupdates +MINORUPDATES= minorupdates stealthupdates MISCTOOLS= updateall PKGHISTORY= loadindex query updinst @@ -40,7 +40,7 @@ .ifdef WITH_MISCTOOLS .ifndef WITH_PKGHISTORY -BROKEN= Updateall needs pkghistory package +BROKEN= Option updateall requires pkghistory option .else SOURCES+= ${MISCTOOLS} EXECUTABLES+= ${MISCTOOLS} diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/README.html /home/hsn/myports/portindex/README.html --- /usr/ports/sysutils/portindex/README.html Mon Jul 12 18:36:14 2004 +++ /home/hsn/myports/portindex/README.html Sun Jul 18 22:01:10 2004 @@ -2,16 +2,16 @@ - The FreeBSD Ports Collection (sysutils/portindex) + The FreeBSD Ports Collection (myports/portindex) -

The FreeBSD Ports Collection (sysutils/portindex)

+

The FreeBSD Ports Collection (myports/portindex)


-

You are now in the directory for the port "sysutils/portindex".

+

You are now in the directory for the port "myports/portindex".

-

The package name of this port is "portindex-15".

+

The package name of this port is "portindex-16".

This is the one-line description for this port:


@@ -22,15 +22,15 @@

Please read the "description file" for a - longer description.

+ longer description and/or visit the web site for futher informations.

If needed, you may contact the maintainer of this port or the port mailing-list.

-

This port requires package(s) "python-2.3.4" to build.

+

This port requires package(s) "" to build.

-

This port requires package(s) "expat-1.95.7 gettext-0.13.1_1 libiconv-1.9.1_3 postgresql-7.4.3 py23-PyGreSQL-3.4_1,1 py23-mx-base-2.0.5 python-2.3.4" to run.

+

This port requires package(s) "" to run.

Go to the top of the ports tree for a summary on how to use the ports collection.

diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/distinfo /home/hsn/myports/portindex/distinfo --- /usr/ports/sysutils/portindex/distinfo Mon Jul 12 18:06:32 2004 +++ /home/hsn/myports/portindex/distinfo Mon Jul 19 00:02:09 2004 @@ -1,2 +1,2 @@ -MD5 (bsdportsutils-15.tar.gz) = f37804609a030a37b910b9e93c009d2b -SIZE (bsdportsutils-15.tar.gz) = 20004 +MD5 (bsdportsutils-16.tar.gz) = 60dd00ee94986dca77c6a7de2304a97d +SIZE (bsdportsutils-16.tar.gz) = 21857 diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/files/stealthupdates.sh /home/hsn/myports/portindex/files/stealthupdates.sh --- /usr/ports/sysutils/portindex/files/stealthupdates.sh Thu Jan 1 01:00:00 1970 +++ /home/hsn/myports/portindex/files/stealthupdates.sh Sun Jul 18 21:58:23 2004 @@ -0,0 +1,2 @@ +#! /bin/sh +exec /usr/bin/env python %%DATADIR%%/stealthupdates.py $* diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/pkg-descr /home/hsn/myports/portindex/pkg-descr --- /usr/ports/sysutils/portindex/pkg-descr Mon Jul 12 18:06:33 2004 +++ /home/hsn/myports/portindex/pkg-descr Sun Jul 18 22:00:49 2004 @@ -19,3 +19,5 @@ 3. Unlike portsdb output database is in valid btree format This package also contains FreeBSD port of 'package history'. + +WWW: http://home.tiscali.cz/~cz210552/bsdportsutils.html --- portindex-16.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 2F4E916A4CE for ; Mon, 19 Jul 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 042E643D45 for ; Mon, 19 Jul 2004 00:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J00eBh021806 for ; Mon, 19 Jul 2004 00:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J00eQM021779; Mon, 19 Jul 2004 00:00:40 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 00:00:40 GMT Resent-Message-Id: <200407190000.i6J00eQM021779@freefall.freebsd.org> 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 Barrett Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 039ED16A4CE for ; Sun, 18 Jul 2004 23:53:22 +0000 (GMT) Received: from jorm.daboyz.org (jorm.daboyz.org [65.75.164.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED27743D31 for ; Sun, 18 Jul 2004 23:53:21 +0000 (GMT) (envelope-from mike@jorm.daboyz.org) Received: by jorm.daboyz.org (Postfix, from userid 1001) id E436F17025; Sat, 17 Jul 2004 05:51:28 -0700 (PDT) Message-Id: <20040717125128.E436F17025@jorm.daboyz.org> Date: Sat, 17 Jul 2004 05:51:28 -0700 (PDT) From: Mike Barrett To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69258: teamspeak_server port does not open up all ports and does not cr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mike Barrett List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 00:00:41 -0000 >Number: 69258 >Category: ports >Synopsis: teamspeak_server port does not open up all ports and does not cr >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: Mon Jul 19 00:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mike Barrett >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD jorm.daboyz.org 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #3: Sat Jul 17 03:13:35 PDT 2004 root@jorm.daboyz.org:/usr/obj/usr/src/sys/JORM i386 >Description: I found pr 60540, but noticed that I was seeing something different from what was listed in the closing reply. The system I'm running is 5.2.1-RELEASE-p9, and I am using linux_base-7.1_7, yet I still can't get the teamspeak_server to listen on the admin port. Also, I've noticed that the pid file is never created, so you can't stop the server via the rc.d script once it's started. Thanks for looking into this, it's much appreciated. >How-To-Repeat: 1. Install latest port of teamspeak_server (currently: teamspeak_server-2.0.19.40_1) 2. Start it via /usr/local/etc/rc.d/teamspeak_server.sh.sample, or start the server manually. >Fix: >Release-Note: >Audit-Trail: >Unformatted: eate pid file correctly on 5.2.1 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 00:10: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 A725816A4CE for ; Mon, 19 Jul 2004 00:10:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8897743D5A for ; Mon, 19 Jul 2004 00:10:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J0ADeV026959 for ; Mon, 19 Jul 2004 00:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J0ADSX026958; Mon, 19 Jul 2004 00:10:13 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 00:10:13 GMT Resent-Message-Id: <200407190010.i6J0ADSX026958@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jie Gao Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBD4B16A4CE for ; Mon, 19 Jul 2004 00:08:18 +0000 (GMT) Received: from ensc.cpsc.ucalgary.ca (ensc.cpsc.ucalgary.ca [136.159.2.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FC6043D1F for ; Mon, 19 Jul 2004 00:08:18 +0000 (GMT) (envelope-from gaoj@cpsc.ucalgary.ca) Received: from imgw1.cpsc.ucalgary.ca (imgw1.cpsc.ucalgary.ca [136.159.5.9]) i6J06A0r006790 for ; Sun, 18 Jul 2004 18:06:10 -0600 (MDT) Received: from aibsd (sana-sa [136.159.7.231])i6J060pi017968 for ; Sun, 18 Jul 2004 18:06:05 -0600 Received: by aibsd (sSMTP sendmail emulation); Sun, 18 Jul 2004 18:06:00 -0600 Message-Id: <200407190006.i6J060pi017968@imgw1.cpsc.ucalgary.ca> Date: Sun, 18 Jul 2004 18:06:00 -0600 From: "Jie Gao" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69259: [PATCH] Update www/akregator to 1.0b5 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, 19 Jul 2004 00:10:13 -0000 >Number: 69259 >Category: ports >Synopsis: [PATCH] Update www/akregator to 1.0b5 >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 Jul 19 00:10:12 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jie Gao >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD aibsd-current 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Thu Jul 15 10:00:38 MDT 2004 gaoj@aibsd-current:/usr/obj/usr/src/sys/AIBSD i386 >Description: Update www/akregator to 1.0b5. It seems that SF.net has turned back to normal so the MASTERSITE is changed back. And generate the DISTNAME from PORTVERSION. >How-To-Repeat: >Fix: --- patch-akregator begins here --- diff -ruN akregator.old/Makefile akregator/Makefile --- akregator.old/Makefile Sun Jul 18 17:40:12 2004 +++ akregator/Makefile Sun Jul 18 17:42:02 2004 @@ -5,14 +5,11 @@ # $FreeBSD: ports/www/akregator/Makefile,v 1.3 2004/07/17 11:10:37 arved Exp $ PORTNAME= akregator -PORTVERSION= 1.0.b4f -PORTREVISION= 1 +PORTVERSION= 1.0.b5 CATEGORIES= www kde -#SF has some problem. This is a temporary mirror. -MASTER_SITES= http://berk.upnet.ru/projects/kde/akregator/download/ -#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -#MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= akregator-1.0_beta4fixed +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/_beta/} MAINTAINER= ports@FreeBSD.org COMMENT= An RSS aggregator for KDE diff -ruN akregator.old/distinfo akregator/distinfo --- akregator.old/distinfo Sun Jul 18 17:40:12 2004 +++ akregator/distinfo Sun Jul 18 17:42:14 2004 @@ -1,2 +1,2 @@ -MD5 (akregator-1.0_beta4fixed.tar.bz2) = e211ecb9b88151e5f63b24e73225ec94 -SIZE (akregator-1.0_beta4fixed.tar.bz2) = 664771 +MD5 (akregator-1.0_beta5.tar.bz2) = c67307935229619c63afa9e863499294 +SIZE (akregator-1.0_beta5.tar.bz2) = 667056 --- patch-akregator ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 01: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 A415F16A4CE for ; Mon, 19 Jul 2004 01:40:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80B4843D60 for ; Mon, 19 Jul 2004 01:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J1eIvI036395 for ; Mon, 19 Jul 2004 01:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J1eI35036394; Mon, 19 Jul 2004 01:40:18 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 01:40:18 GMT Resent-Message-Id: <200407190140.i6J1eI35036394@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, andreas@hovin.net Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A960416A4CE for ; Mon, 19 Jul 2004 01:38:57 +0000 (GMT) Received: from lotto.hovin.net (062016171161.customer.alfanett.no [62.16.171.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDF7143D3F for ; Mon, 19 Jul 2004 01:38:56 +0000 (GMT) (envelope-from hovin@lotto.hovin.net) Received: from lotto.hovin.net (localhost [127.0.0.1]) by lotto.hovin.net (8.12.11/8.12.8) with ESMTP id i6J1c5h3052328 for ; Mon, 19 Jul 2004 03:38:05 +0200 (CEST) (envelope-from hovin@lotto.hovin.net) Received: (from root@localhost) by lotto.hovin.net (8.12.11/8.12.8/Submit) id i6J1c5YR052327; Mon, 19 Jul 2004 03:38:05 +0200 (CEST) Message-Id: <200407190138.i6J1c5YR052327@lotto.hovin.net> Date: Mon, 19 Jul 2004 03:38:05 +0200 (CEST) From: andreas@hovin.net To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69261: irssi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: andreas@hovin.net List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 01:40:18 -0000 >Number: 69261 >Category: ports >Synopsis: irssi >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 01:40:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andreas Hovin >Release: FreeBSD 4.10-STABLE i386 >Organization: Hovin >Environment: System: FreeBSD lotto.hovin.net 4.10-STABLE FreeBSD 4.10-STABLE #1: Fri Jul 16 18:06:44 CEST 2004 root@lotto.hovin.net:/usr/obj/usr/src/sys/LOTTO i386 root@lotto:~# perl -v This is perl, v5.8.4 built for i386-freebsd-64int Copyright 1987-2004, Larry Wall Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit. Complete documentation for Perl, including FAQ lists, should be found on this system using `man perl' or `perldoc perl'. If you have access to the Internet, point your browser at http://www.perl.com/, the Perl Home Page. root@lotto:~# irssi -v irssi 0.8.9 (20031210 2316) >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 01:43: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 50A1E16A4CE; Mon, 19 Jul 2004 01:43:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E03343D31; Mon, 19 Jul 2004 01:43:44 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6J1hiQr036558; Mon, 19 Jul 2004 01:43:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J1hisQ036554; Mon, 19 Jul 2004 01:43:44 GMT (envelope-from linimon) Date: Mon, 19 Jul 2004 01:43:44 GMT From: Mark Linimon Message-Id: <200407190143.i6J1hisQ036554@freefall.freebsd.org> To: andreas@hovin.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69261: irssi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 01:43:44 -0000 Synopsis: irssi State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Mon Jul 19 01:42:54 GMT 2004 State-Changed-Why: Can you please provide us details about the problem you are having? http://www.freebsd.org/cgi/query-pr.cgi?pr=69261 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 02: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 A26D516A4CE for ; Mon, 19 Jul 2004 02:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 982C843D48 for ; Mon, 19 Jul 2004 02:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J2oNcf043864 for ; Mon, 19 Jul 2004 02:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J2oNMX043863; Mon, 19 Jul 2004 02:50:23 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 02:50:23 GMT Message-Id: <200407190250.i6J2oNMX043863@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Andreas Hovin" Subject: Re: ports/69261 irssi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andreas Hovin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 02:50:26 -0000 The following reply was made to PR ports/69261; it has been noted by GNATS. From: "Andreas Hovin" To: Cc: Subject: Re: ports/69261 irssi Date: Mon, 19 Jul 2004 04:46:30 +0200 This is a multi-part message in MIME format. ------=_NextPart_000_001C_01C46D4B.5C0E91D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, i use perl v5.8, irssi v0.8.9, and FreeBSD-4.10-STABLE, when i start irssi i get this error: /usr/libexec/ld-elf.so.1: irssi: Undefined symbol "Perl_eval_pv" and nothing more happens i'm sorry that i miss the problem in last epost, and i'm also sorry for = my bad english =3D) (norwegian =3D\ ) ------=_NextPart_000_001C_01C46D4B.5C0E91D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi, i use perl v5.8, irssi v0.8.9, and=20 FreeBSD-4.10-STABLE,
when i start irssi i get this = error:
 
/usr/libexec/ld-elf.so.1: irssi: = Undefined symbol=20 "Perl_eval_pv"
and nothing more happens
 
i'm sorry that i miss the problem in = last epost,=20 and i'm also sorry for my bad english =3D) (norwegian =3D\=20 )
------=_NextPart_000_001C_01C46D4B.5C0E91D0-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 03:17: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 4E6B916A4CE; Mon, 19 Jul 2004 03:17:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB6043D48; Mon, 19 Jul 2004 03:17:41 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6J3Hfq4049013; Mon, 19 Jul 2004 03:17:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J3He6h049009; Mon, 19 Jul 2004 03:17:41 GMT (envelope-from linimon) Date: Mon, 19 Jul 2004 03:17:41 GMT From: Mark Linimon Message-Id: <200407190317.i6J3He6h049009@freefall.freebsd.org> To: andreas@hovin.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/69261: problem with starting irc/irssi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 03:17:41 -0000 Old Synopsis: irssi New Synopsis: problem with starting irc/irssi State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon Jul 19 03:16:46 GMT 2004 State-Changed-Why: Feedback received; over to maintainer. Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jul 19 03:16:46 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=69261 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 759BF16A4CF for ; Mon, 19 Jul 2004 03:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6617043D46 for ; Mon, 19 Jul 2004 03:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J3KMAD049123 for ; Mon, 19 Jul 2004 03:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J3KM7T049122; Mon, 19 Jul 2004 03:20:22 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 03:20:22 GMT Resent-Message-Id: <200407190320.i6J3KM7T049122@freefall.freebsd.org> 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 5F80C16A4CE for ; Mon, 19 Jul 2004 03:15:46 +0000 (GMT) Received: from muse.csie.ntu.edu.tw (muse.csie.ntu.edu.tw [140.112.28.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBE3C43D48 for ; Mon, 19 Jul 2004 03:15:45 +0000 (GMT) (envelope-from rafan@muse.csie.ntu.edu.tw) Received: by muse.csie.ntu.edu.tw (Postfix, from userid 1001) id DED3552ECD; Mon, 19 Jul 2004 11:15:44 +0800 (CST) Message-Id: <20040719031544.DED3552ECD@muse.csie.ntu.edu.tw> Date: Mon, 19 Jul 2004 11:15:44 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: autrijus@autrijus.org Subject: ports/69262: Update Port: devel/svk to 0.17 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: Mon, 19 Jul 2004 03:20:22 -0000 >Number: 69262 >Category: ports >Synopsis: Update Port: devel/svk to 0.17 >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 Jul 19 03:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD muse.csie.ntu.edu.tw 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #1: Mon Jul 12 20:06:43 CST 2004 root@muse.csie.ntu.edu.tw:/home/admin/usr/obj/home/admin/usr/src/sys/MUSE i386 >Description: Update svk to 0.17 which is a faster version, from CHANGES: [Changes for 0.17 - 17 Jul, 2004] * Optimize checkout_delta with mtime/inode/size signatures. * Implement smerge -I for incremental merging. * Make smerge -lm do what you mean. * When using external merge tools, give local, base, new and merged tmpfiles sane names. [Autrijus] * Improve documentation. * Fix cb_rev when commiting to just-moved files in mirrored path. * Cleanup SVK::Merge and others. >How-To-Repeat: >Fix: diff -ruN svk.orig/Makefile svk/Makefile --- svk.orig/Makefile Mon Jul 19 10:20:08 2004 +++ svk/Makefile Mon Jul 19 10:24:24 2004 @@ -6,7 +6,7 @@ # PORTNAME= svk -PORTVERSION= 0.16 +PORTVERSION= 0.17 PORTREVISION= 0 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} @@ -37,6 +37,7 @@ MAN1= svk.1 MAN3= SVK.3 \ + SVK::Command.3 \ SVK::Command::Add.3 \ SVK::Command::Annotate.3 \ SVK::Command::Cat.3 \ @@ -57,6 +58,7 @@ SVK::Command::Merge.3 \ SVK::Command::Mirror.3 \ SVK::Command::Mkdir.3 \ + SVK::Command::Move.3 \ SVK::Command::Patch.3 \ SVK::Command::Propdel.3 \ SVK::Command::Propedit.3 \ @@ -75,8 +77,10 @@ SVK::Editor::Merge.3 \ SVK::Editor::Patch.3 \ SVK::Editor::XD.3 \ + SVK::Merge.3 \ SVK::Notify.3 \ SVK::Patch.3 \ + SVK::Target.3 \ SVK::XD.3 .include diff -ruN svk.orig/distinfo svk/distinfo --- svk.orig/distinfo Mon Jul 19 10:20:08 2004 +++ svk/distinfo Mon Jul 19 10:21:08 2004 @@ -1,2 +1,2 @@ -MD5 (SVK-0.16.tar.gz) = af11c8f05d5d282d4806d1a202a246d4 -SIZE (SVK-0.16.tar.gz) = 88263 +MD5 (SVK-0.17.tar.gz) = 2f3678cc73371ef333bb2ffade7db776 +SIZE (SVK-0.17.tar.gz) = 95149 diff -ruN svk.orig/pkg-plist svk/pkg-plist --- svk.orig/pkg-plist Mon Jul 19 10:20:08 2004 +++ svk/pkg-plist Mon Jul 19 10:36:37 2004 @@ -1,6 +1,5 @@ bin/svk %%SITE_PERL%%/SVK.pm -%%SITE_PERL%%/SVK/CombineEditor.pm %%SITE_PERL%%/SVK/Command.pm %%SITE_PERL%%/SVK/Command/Add.pm %%SITE_PERL%%/SVK/Command/Annotate.pm @@ -12,7 +11,9 @@ %%SITE_PERL%%/SVK/Command/Copy.pm %%SITE_PERL%%/SVK/Command/Delete.pm %%SITE_PERL%%/SVK/Command/Depotmap.pm +%%SITE_PERL%%/SVK/Command/Describe.pm %%SITE_PERL%%/SVK/Command/Diff.pm +%%SITE_PERL%%/SVK/Command/Help.pm %%SITE_PERL%%/SVK/Command/Import.pm %%SITE_PERL%%/SVK/Command/Info.pm %%SITE_PERL%%/SVK/Command/List.pm @@ -20,6 +21,9 @@ %%SITE_PERL%%/SVK/Command/Merge.pm %%SITE_PERL%%/SVK/Command/Mirror.pm %%SITE_PERL%%/SVK/Command/Mkdir.pm +%%SITE_PERL%%/SVK/Command/Move.pm +%%SITE_PERL%%/SVK/Command/Patch.pm +%%SITE_PERL%%/SVK/Command/Propdel.pm %%SITE_PERL%%/SVK/Command/Propedit.pm %%SITE_PERL%%/SVK/Command/Proplist.pm %%SITE_PERL%%/SVK/Command/Propset.pm @@ -30,15 +34,27 @@ %%SITE_PERL%%/SVK/Command/Switch.pm %%SITE_PERL%%/SVK/Command/Sync.pm %%SITE_PERL%%/SVK/Command/Update.pm -%%SITE_PERL%%/SVK/CommitStatusEditor.pm -%%SITE_PERL%%/SVK/DeleteEditor.pm -%%SITE_PERL%%/SVK/DiffEditor.pm -%%SITE_PERL%%/SVK/MergeEditor.pm -%%SITE_PERL%%/SVK/RevertEditor.pm -%%SITE_PERL%%/SVK/SignEditor.pm -%%SITE_PERL%%/SVK/StatusEditor.pm +%%SITE_PERL%%/SVK/Command/Verify.pm +%%SITE_PERL%%/SVK/Editor/Combine.pm +%%SITE_PERL%%/SVK/Editor/Delay.pm +%%SITE_PERL%%/SVK/Editor/Diff.pm +%%SITE_PERL%%/SVK/Editor/Merge.pm +%%SITE_PERL%%/SVK/Editor/Patch.pm +%%SITE_PERL%%/SVK/Editor/Sign.pm +%%SITE_PERL%%/SVK/Editor/Status.pm +%%SITE_PERL%%/SVK/Editor/XD.pm +%%SITE_PERL%%/SVK/I18N.pm +%%SITE_PERL%%/SVK/I18N/i_default.po +%%SITE_PERL%%/SVK/I18N/zh_cn.po +%%SITE_PERL%%/SVK/I18N/zh_tw.po +%%SITE_PERL%%/SVK/Merge.pm +%%SITE_PERL%%/SVK/Notify.pm +%%SITE_PERL%%/SVK/Patch.pm +%%SITE_PERL%%/SVK/Target.pm %%SITE_PERL%%/SVK/Util.pm %%SITE_PERL%%/SVK/XD.pm +@dirrm %%SITE_PERL%%/SVK/I18N +@dirrm %%SITE_PERL%%/SVK/Editor @dirrm %%SITE_PERL%%/SVK/Command @dirrm %%SITE_PERL%%/SVK @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/SVK 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 03: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 DC82016A4CE for ; Mon, 19 Jul 2004 03:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF7D743D1D for ; Mon, 19 Jul 2004 03:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J3KMM3049136 for ; Mon, 19 Jul 2004 03:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J3KMWB049135; Mon, 19 Jul 2004 03:20:22 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 03:20:22 GMT Resent-Message-Id: <200407190320.i6J3KMWB049135@freefall.freebsd.org> 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 BF0C216A4CE for ; Mon, 19 Jul 2004 03:17:13 +0000 (GMT) Received: from muse.csie.ntu.edu.tw (muse.csie.ntu.edu.tw [140.112.28.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ADCE43D45 for ; Mon, 19 Jul 2004 03:17:13 +0000 (GMT) (envelope-from rafan@muse.csie.ntu.edu.tw) Received: by muse.csie.ntu.edu.tw (Postfix, from userid 1001) id 01D5B522E2; Mon, 19 Jul 2004 11:17:13 +0800 (CST) Message-Id: <20040719031713.01D5B522E2@muse.csie.ntu.edu.tw> Date: Mon, 19 Jul 2004 11:17:13 +0800 (CST) From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: autrijus@autrijus.org Subject: ports/69263: Update Port: devel/p5-SVN-Mirror to 0.38 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: Mon, 19 Jul 2004 03:20:23 -0000 >Number: 69263 >Category: ports >Synopsis: Update Port: devel/p5-SVN-Mirror to 0.38 >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 Jul 19 03:20:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: NTU CSIE >Environment: System: FreeBSD muse.csie.ntu.edu.tw 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #1: Mon Jul 12 20:06:43 CST 2004 root@muse.csie.ntu.edu.tw:/home/admin/usr/obj/home/admin/usr/src/sys/MUSE i386 >Description: Update SVN::Mirror to 0.38. Also correct pkg-plist. >How-To-Repeat: >Fix: diff -ruN p5-SVN-Mirror.orig/Makefile p5-SVN-Mirror/Makefile --- p5-SVN-Mirror.orig/Makefile Mon Jul 19 10:41:43 2004 +++ p5-SVN-Mirror/Makefile Mon Jul 19 10:46:43 2004 @@ -6,7 +6,7 @@ # PORTNAME= SVN-Mirror -PORTVERSION= 0.37 +PORTVERSION= 0.38 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/C/CL/CLKAO @@ -25,6 +25,6 @@ PERL_CONFIGURE= yes MAN1= svm.1 -MAN3= SVN::Mirror.3 VCP::Dest::svk.3 +MAN3= SVN::Mirror.3 .include diff -ruN p5-SVN-Mirror.orig/distinfo p5-SVN-Mirror/distinfo --- p5-SVN-Mirror.orig/distinfo Mon Jul 19 10:41:43 2004 +++ p5-SVN-Mirror/distinfo Mon Jul 19 10:42:40 2004 @@ -1,2 +1,2 @@ -MD5 (SVN-Mirror-0.37.tar.gz) = 0904180ae0234be25f26f09ba27a432d -SIZE (SVN-Mirror-0.37.tar.gz) = 99431 +MD5 (SVN-Mirror-0.38.tar.gz) = 9c21172ddd7a1df724420f6bfcab31e8 +SIZE (SVN-Mirror-0.38.tar.gz) = 99574 diff -ruN p5-SVN-Mirror.orig/pkg-plist p5-SVN-Mirror/pkg-plist --- p5-SVN-Mirror.orig/pkg-plist Mon Jul 19 10:41:43 2004 +++ p5-SVN-Mirror/pkg-plist Mon Jul 19 10:46:53 2004 @@ -2,10 +2,7 @@ %%SITE_PERL%%/SVN/Mirror.pm %%SITE_PERL%%/SVN/Mirror/Ra.pm %%SITE_PERL%%/SVN/Mirror/VCP.pm -%%SITE_PERL%%/VCP/Dest/svk.pm @dirrm %%SITE_PERL%%/SVN/Mirror -@dirrm %%SITE_PERL%%/VCP/Dest @dirrm %%SITE_PERL%%/SVN -@unexec rmdir %D/%%SITE_PERL%%/VCP 2>/dev/null || true @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/SVN/Mirror 2>/dev/null || true @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/SVN 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 05:10: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 396FC16A520; Mon, 19 Jul 2004 05:10:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFA0243D58; Mon, 19 Jul 2004 05:10:21 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J5ALAN066448; Mon, 19 Jul 2004 05:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J5ALdx066444; Mon, 19 Jul 2004 05:10:21 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 05:10:21 GMT From: Edwin Groothuis Message-Id: <200407190510.i6J5ALdx066444@freefall.freebsd.org> To: shadow@psoft.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/64585: new port: devel/libpreps gui part stable release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 05:10:35 -0000 Synopsis: new port: devel/libpreps gui part stable release State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Mon Jul 19 05:10:19 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=64585 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 05:10: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 5F01816A502 for ; Mon, 19 Jul 2004 05:10:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B89243D5E for ; Mon, 19 Jul 2004 05:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J5ARQ8066485 for ; Mon, 19 Jul 2004 05:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J5ARBj066477; Mon, 19 Jul 2004 05:10:27 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 05:10:27 GMT Resent-Message-Id: <200407190510.i6J5ARBj066477@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Toshiya SAITOH Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5420116A4CE for ; Mon, 19 Jul 2004 05:08:20 +0000 (GMT) Received: from int.saitoh.nu (18.16.111.219.st.bbexcite.jp [219.111.16.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4AD143D53 for ; Mon, 19 Jul 2004 05:08:18 +0000 (GMT) (envelope-from toshiya@saitoh.nu) Received: from localhost (localhost [127.0.0.1]) by int.saitoh.nu (Postfix) with ESMTP id 8B2731E6 for ; Mon, 19 Jul 2004 14:08:17 +0900 (JST) Received: from int.saitoh.nu ([127.0.0.1]) by localhost (int.saitoh.nu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 92046-02 for ; Mon, 19 Jul 2004 14:08:14 +0900 (JST) Received: from ns.saitoh.nu (dmz.saitoh.nu [IPv6:2001:268:304:8800::2]) by int.saitoh.nu (Postfix) with ESMTP id C640CBD for ; Mon, 19 Jul 2004 14:08:12 +0900 (JST) Received: by ns.saitoh.nu (Postfix, from userid 25625) id 1D57710D; Mon, 19 Jul 2004 14:07:31 +0900 (JST) Message-Id: <20040719050731.1D57710D@ns.saitoh.nu> Date: Mon, 19 Jul 2004 14:07:31 +0900 (JST) From: Toshiya SAITOH To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69265: Update Ports: mail/websieve (0.61h -> 0.63a) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Toshiya SAITOH List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 05:10:35 -0000 >Number: 69265 >Category: ports >Synopsis: Update Ports: mail/websieve (0.61h -> 0.63a) >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 Jul 19 05:10:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Toshiya SAITOH >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD dmz.saitoh.nu 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #17: Sat Jul 3 00:16:17 JST 2004 toshiya@dmz.saitoh.nu:/usr/obj/usr/src/sys/AKAFUKU i386 >Description: Update Ports: mail/websive (0.61h -> 0.63a) I'd like to update mail/websieve to current. I attached shar file for current version. Thanks. >How-To-Repeat: shar file for websieve-0.63a >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: # # websieve # websieve/files # websieve/files/patch-websieve.conf # websieve/Makefile # websieve/distinfo # websieve/pkg-descr # websieve/pkg-message # websieve/pkg-plist # echo c - websieve mkdir -p websieve > /dev/null 2>&1 echo c - websieve/files mkdir -p websieve/files > /dev/null 2>&1 echo x - websieve/files/patch-websieve.conf sed 's/^X//' >websieve/files/patch-websieve.conf << 'END-of-websieve/files/patch-websieve.conf' X--- websieve.conf.orig Wed Jul 7 09:20:09 2004 X+++ websieve.conf Thu Jul 15 04:12:29 2004 X@@ -16,17 +16,17 @@ X # You can write you own functions to change passwords on a different auth X # mechanism such as on a MysSql server, Qualcomm poppassd server, etc. X X-#require "./custom.pl"; X+#require "/usr/local/etc/websieve/custom.pl"; X X #secret key - CHANGE THIS to some random data!!!! X $skey = "your secret key CEDEFEKJKIIEIOO***#KIKIDKKEUIULJLJKJ"; X #use RC4 algorithm for encryption instead of rot13 X $userc4=1; X #cyrus admin user id that is used for general mailbox administration X-$cyrusadminuid='admin'; X+$cyrusadminuid='cyrus'; X X # default imap server host name X-$imapserver='yourfqmailhost'; X+$imapserver='localhost'; X X #make sure you set this to your program virtual name and path X #$program_url = "/cgi-bin/websieve.pl" ; # URL for this program X@@ -39,7 +39,7 @@ X $unixhiersep='.'; X X #your mail domain X-$maildomain='yourdomain' ; X+$maildomain='example.com' ; X X #default FQHN of the mail server for use in vacation addresses X $mailhostappend="imap.$maildomain"; X@@ -63,9 +63,8 @@ X #$sieveport,$imapport,$maildomain, $imapserver and $usexxxSSL will be used instead. X X %server_hosts=( X-"yourmailhost"=>['Local Server','143','2000','domain.ca','imap.domain.ca'], X-"otherhost"=>['Some otherhost','993','2000','maildomain2','vacationhost2','ssl_imap'], X-"otherhostname"=>['other Imap Server','143','2000','other.domain.ca','vacationhost3'] X+"localhost"=>['Local Server','143','2000','example.com','example.com'], X+"127.0.0.1"=>['Secure Server','993','2000','example.com','example.com','ssl_imap'], X ); X X # show server selection option at login otherwise defaults to $imapserver X@@ -87,7 +86,7 @@ X $header1="Mail Account Management"; X X # This is the address that supports your mail server X-$problem_email="administrator\@$maildomain" ; X+$problem_email="postmaster\@$maildomain" ; X X # list of additional namespaces on IMAP server X @namespaces = ("public2"); X@@ -185,7 +184,7 @@ X X # Menu selections X $LOGOUTURL="[LOGOUT]" if !$LOGOUTURL; X-$HOMEURL="[HOME]"; X+$HOMEURL="[HOME]"; X $HELPURL="[HELP]"; X $VIEWRULESURL="[View/Edit Rules]"; X $FORWARDALLURL="[Forward Mail]"; END-of-websieve/files/patch-websieve.conf echo x - websieve/Makefile sed 's/^X//' >websieve/Makefile << 'END-of-websieve/Makefile' X# New ports collection makefile for: websieve X# Date created: 25 Apr 2003 X# Whom: Oliver Eikemeier X# X# $FreeBSD: ports/mail/websieve/Makefile,v 1.5 2003/11/14 00:29:47 eik Exp $ X# X XPORTNAME= websieve XPORTVERSION= 0.63a XPORTREVISION?= 0 XCATEGORIES= mail XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XDISTNAME= ${PORTNAME}-${PORTVERSION:S/.//} X XMAINTAINER= eik@FreeBSD.org XCOMMENT= Web based Cyrus IMAP user admin client X X.if defined(WITH_CYRUS_IMAPD_VER) X.if ${WITH_CYRUS_IMAPD_VER} == 22 XRUN_DEPENDS= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd22 X.elif ${WITH_CYRUS_IMAPD_VER} == 21 XRUN_DEPENDS= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd2 X.elif ${WITH_CYRUS_IMAPD_VER} == 20 XRUN_DEPENDS= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd X.else X.error WITH_CYRUS_IMAPD_VER must be 22, 21 or 20 X.endif X.else XRUN_DEPENDS= ${SITE_PERL}/IMAP/Admin.pm:${PORTSDIR}/mail/p5-IMAP-Admin \ X ${SITE_PERL}/IMAP/Sieve.pm:${PORTSDIR}/mail/p5-IMAP-Sieve X.endif X XWRKSRC= ${WRKDIR}/${DISTNAME} XPKGMESSAGE= ${WRKDIR}/pkg-message X XUSE_REINPLACE= yes XUSE_PERL5_RUN= yes X XNO_BUILD= yes X XCYRUS_IMAP_PM= ${SITE_PERL}/Cyrus/IMAP/Admin.pm X X.if defined(WITH_CYRUS_IMAPD_VER) XFUNCLIB_PL= funclib.cyrus X.else XFUNCLIB_PL= funclib.pl X.endif X X# We can not test .if exists(${CYRUS_IMAP_PM}) here X# because SITE_PERL is defined in X.if !defined(WITH_CYRUS_IMAPD_VER) Xpre-everything:: X @${ECHO} "If you want to use the Cyrus IMAP and Sieve perl modules" X @${ECHO} "hit Ctrl-C right now and use WITH_CYRUS_IMAPD_VER=22, 21 or 20" X @${ECHO} X @${ECHO} "The Cyrus perl modules do not support SSL, but better" X @${ECHO} "authentication mechanisms than cleartext PLAIN." X @${ECHO} X.endif X Xpost-configure: X @${REINPLACE_CMD} -e "s,require[ ]*'\./\([^']*\)',require '${PREFIX}/etc/websieve/\1'," \ X ${WRKSRC}/websieve.pl X Xdo-install: X ${MKDIR} ${PREFIX}/www/cgi-bin X @${INSTALL_SCRIPT} ${WRKSRC}/websieve.pl ${PREFIX}/www/cgi-bin X ${MKDIR} ${PREFIX}/etc/websieve X @${INSTALL_DATA} ${WRKSRC}/websieve.conf ${PREFIX}/etc/websieve/websieve.conf.sample X @${INSTALL_DATA} ${WRKSRC}/${FUNCLIB_PL} ${PREFIX}/etc/websieve/funclib.pl X @${INSTALL_DATA} ${WRKSRC}/ldapextras.pl ${PREFIX}/etc/websieve/ldapextras.pl X @${INSTALL_DATA} ${WRKSRC}/ldapextras.conf ${PREFIX}/etc/websieve/ldapextras.conf.sample X @${SED} 's,%%PREFIX%%,${PREFIX},g' ${.CURDIR}/pkg-message > ${PKGMESSAGE} X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-websieve/Makefile echo x - websieve/distinfo sed 's/^X//' >websieve/distinfo << 'END-of-websieve/distinfo' XMD5 (websieve-063a.tar.gz) = 1be93527d5f03baed35c8e8fb16eeb0f XSIZE (websieve-063a.tar.gz) = 101848 END-of-websieve/distinfo echo x - websieve/pkg-descr sed 's/^X//' >websieve/pkg-descr << 'END-of-websieve/pkg-descr' XA web based easy to use interface for creating Sieve scripts on an Cyrus XIMAP mail server as well as allowing users to set access controls, create Xnew mailboxes and view their mail quota. Also give administrators full Xadministrative capabilities. X XAuthor: Alain Turbide X X XWWW: http://sourceforge.net/projects/websieve END-of-websieve/pkg-descr echo x - websieve/pkg-message sed 's/^X//' >websieve/pkg-message << 'END-of-websieve/pkg-message' XWebsieve has been installed at X XHowever, before you can use the program, you should copy the file X"websieve.conf.sample" in %%PREFIX%%/etc/websieve to "websieve.conf" Xedit it to suit your needs. Use "openssl rand -base64 39" to create Xa new secret key. END-of-websieve/pkg-message echo x - websieve/pkg-plist sed 's/^X//' >websieve/pkg-plist << 'END-of-websieve/pkg-plist' Xwww/cgi-bin/websieve.pl Xetc/websieve/websieve.conf.sample Xetc/websieve/funclib.pl Xetc/websieve/ldapextras.pl Xetc/websieve/ldapextras.conf.sample X@dirrm etc/websieve END-of-websieve/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 05:36: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 DB52516A4CE; Mon, 19 Jul 2004 05:36:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D05E243D60; Mon, 19 Jul 2004 05:36:46 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J5ak9I069195; Mon, 19 Jul 2004 05:36:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J5ajrK069191; Mon, 19 Jul 2004 05:36:46 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 05:36:46 GMT From: Edwin Groothuis Message-Id: <200407190536.i6J5ajrK069191@freefall.freebsd.org> To: alex@yunord.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/63349: New port: mail/openwebmail-current Open WebMail is designed to manage very large mail folder files in a memory efficient way X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 05:36:47 -0000 Synopsis: New port: mail/openwebmail-current Open WebMail is designed to manage very large mail folder files in a memory efficient way State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jul 19 05:34:20 GMT 2004 State-Changed-Why: Please convince the authors to use numbered versions of their tar-balls: - it will give us an idea which number the new is on - it will not break the distinfo everytime they reroll the tar-ball Also, please talk with leeym@FreeBSD.org about a development version of this port. Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jul 19 05:34:20 GMT 2004 Responsible-Changed-Why: Please convince the authors to use numbered versions of their tar-balls: - it will give us an idea which number the new is on - it will not break the distinfo everytime they reroll the tar-ball Also, please talk with leeym@FreeBSD.org about a development version of this port. http://www.freebsd.org/cgi/query-pr.cgi?pr=63349 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:04: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 90AFD16A4CE; Mon, 19 Jul 2004 06:04:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 727B943D39; Mon, 19 Jul 2004 06:04:26 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J64Q6D091082; Mon, 19 Jul 2004 06:04:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J64P4r091078; Mon, 19 Jul 2004 06:04:25 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 06:04:25 GMT From: Edwin Groothuis Message-Id: <200407190604.i6J64P4r091078@freefall.freebsd.org> To: toni@soth.at, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/63120: New port: devel/slb_rf60 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 06:04:26 -0000 Synopsis: New port: devel/slb_rf60 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Mon Jul 19 06:04:23 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=63120 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:11: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 CB1ED16A4CE; Mon, 19 Jul 2004 06:11:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAB4243D1F; Mon, 19 Jul 2004 06:11:50 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J6BoFh096488; Mon, 19 Jul 2004 06:11:50 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6BoYd096484; Mon, 19 Jul 2004 06:11:50 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 06:11:50 GMT From: Edwin Groothuis Message-Id: <200407190611.i6J6BoYd096484@freefall.freebsd.org> To: sluggo@unknown.nu, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/62883: New port: net/bb-client (Big Brother monitor) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 06:11:50 -0000 Synopsis: New port: net/bb-client (Big Brother monitor) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jul 19 06:11:05 GMT 2004 State-Changed-Why: They split up their website in commercial / non-commercial. Could you please update your port to match this and I'll commit it. Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jul 19 06:11:05 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=62883 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:13: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 142C616A4CF; Mon, 19 Jul 2004 06:13:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC12A43D60; Mon, 19 Jul 2004 06:13:21 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J6DLwH096595; Mon, 19 Jul 2004 06:13:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6DL90096591; Mon, 19 Jul 2004 06:13:21 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 06:13:21 GMT From: Edwin Groothuis Message-Id: <200407190613.i6J6DL90096591@freefall.freebsd.org> To: fehlner@gmx.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/62583: [NEW PORT] sysutils/usermatic: Scripts to automate the maintenance of accounts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 06:13:22 -0000 Synopsis: [NEW PORT] sysutils/usermatic: Scripts to automate the maintenance of accounts State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jul 19 06:12:33 GMT 2004 State-Changed-Why: Tarball not fetchable anymore. Suggestions? http://www.freebsd.org/cgi/query-pr.cgi?pr=62583 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:35: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 F00D716A4CE; Mon, 19 Jul 2004 06:35:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3AD443D53; Mon, 19 Jul 2004 06:35:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6ZGpd012474; Mon, 19 Jul 2004 06:35:16 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6ZGH9012465; Mon, 19 Jul 2004 06:35:16 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:35:16 GMT From: Volker Stolz Message-Id: <200407190635.i6J6ZGH9012465@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/64010: print/cups: cupsd paths wrong X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 06:35:17 -0000 Synopsis: print/cups: cupsd paths wrong Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 06:34:37 GMT 2004 Responsible-Changed-Why: I'll clock this one http://www.freebsd.org/cgi/query-pr.cgi?pr=64010 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:45: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 2D1EA16A4CE; Mon, 19 Jul 2004 06:45:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB8143D46; Mon, 19 Jul 2004 06:45:42 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6jfsm079554; Mon, 19 Jul 2004 06:45:41 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6jfcZ079550; Mon, 19 Jul 2004 06:45:41 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:45:41 GMT From: Volker Stolz Message-Id: <200407190645.i6J6jfcZ079550@freefall.freebsd.org> To: tingo@start.no, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69238: portindex fails to build a INDEX 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: Mon, 19 Jul 2004 06:45:42 -0000 Synopsis: portindex fails to build a INDEX file State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 06:45:17 GMT 2004 State-Changed-Why: Fixed in ports/69256. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=69238 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:46: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 33F5816A4CF; Mon, 19 Jul 2004 06:46:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16B7243D48; Mon, 19 Jul 2004 06:46:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6kitp079619; Mon, 19 Jul 2004 06:46:44 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6kicc079615; Mon, 19 Jul 2004 06:46:44 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:46:44 GMT From: Volker Stolz Message-Id: <200407190646.i6J6kicc079615@freefall.freebsd.org> To: hsn@netmag.cz, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69256: [PATCH] sysutils/portindex: update to 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: Mon, 19 Jul 2004 06:46:45 -0000 Synopsis: [PATCH] sysutils/portindex: update to 16 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 06:45:51 GMT 2004 State-Changed-Why: Committedm thanks! Note - please list added/removed files explicitely - there was a patch for READM.html in there http://www.freebsd.org/cgi/query-pr.cgi?pr=69256 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:49: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 88F1B16A4CE; Mon, 19 Jul 2004 06:49:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B01243D3F; Mon, 19 Jul 2004 06:49:59 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6nxga079696; Mon, 19 Jul 2004 06:49:59 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6nxJp079692; Mon, 19 Jul 2004 06:49:59 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:49:59 GMT From: Volker Stolz Message-Id: <200407190649.i6J6nxJp079692@freefall.freebsd.org> To: scott+freebsd@fishballoon.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69201: [PATCH] gtkpod-0.80 + AAC build broken on -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: Mon, 19 Jul 2004 06:49:59 -0000 Synopsis: [PATCH] gtkpod-0.80 + AAC build broken on -STABLE State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 06:49:23 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69201 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:50: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 9315016A4CE for ; Mon, 19 Jul 2004 06:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74C2343D49 for ; Mon, 19 Jul 2004 06:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J6oMO6079772 for ; Mon, 19 Jul 2004 06:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6oMaw079771; Mon, 19 Jul 2004 06:50:22 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 06:50:22 GMT Message-Id: <200407190650.i6J6oMaw079771@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69201: [PATCH] gtkpod-0.80 + AAC build broken on -STABLE 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, 19 Jul 2004 06:50:22 -0000 The following reply was made to PR ports/69201; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, scott+freebsd@fishballoon.org, david@dyn-ns.net Cc: Subject: Re: ports/69201: [PATCH] gtkpod-0.80 + AAC build broken on -STABLE Date: Mon, 19 Jul 2004 08:49:09 +0200 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06: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 9281916A4CE; Mon, 19 Jul 2004 06:52:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7284F43D2F; Mon, 19 Jul 2004 06:52:25 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6qPR0079911; Mon, 19 Jul 2004 06:52:25 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6qNwI079907; Mon, 19 Jul 2004 06:52:23 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:52:23 GMT From: Volker Stolz Message-Id: <200407190652.i6J6qNwI079907@freefall.freebsd.org> To: question+freebsdpr@closedsrc.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69208: editors/jedit-devel: update to pre15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 06:52:25 -0000 Synopsis: editors/jedit-devel: update to pre15 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 06:52:13 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69208 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:56: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 67BC516A4CE; Mon, 19 Jul 2004 06:56:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4948043D41; Mon, 19 Jul 2004 06:56:04 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6u4Dv080021; Mon, 19 Jul 2004 06:56:04 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6u3GL080017; Mon, 19 Jul 2004 06:56:03 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:56:03 GMT From: Volker Stolz Message-Id: <200407190656.i6J6u3GL080017@freefall.freebsd.org> To: bogorodskiy@inbox.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69244: [ patch ] mail/msmtp: update to 1.2.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: Mon, 19 Jul 2004 06:56:04 -0000 Synopsis: [ patch ] mail/msmtp: update to 1.2.0 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 06:55:27 GMT 2004 State-Changed-Why: Ask maintainer of mail/msmtp for feedback. Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 06:55:27 GMT 2004 Responsible-Changed-Why: I'll see this through http://www.freebsd.org/cgi/query-pr.cgi?pr=69244 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 06:58: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 57AD816A4CE; Mon, 19 Jul 2004 06:58:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38B5A43D2F; Mon, 19 Jul 2004 06:58:05 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J6w5FD080088; Mon, 19 Jul 2004 06:58:05 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J6w46d080084; Mon, 19 Jul 2004 06:58:04 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 06:58:04 GMT From: Volker Stolz Message-Id: <200407190658.i6J6w46d080084@freefall.freebsd.org> To: mike.bsdpr@daboyz.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69258: teamspeak_server port does not open up all ports and does not cr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 06:58:05 -0000 Synopsis: teamspeak_server port does not open up all ports and does not cr State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 06:57:45 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69258 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07: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 69B0C16A531 for ; Mon, 19 Jul 2004 07:01:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CEEA43D1F for ; Mon, 19 Jul 2004 07:01:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J716Po080287 for ; Mon, 19 Jul 2004 07:01:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J716Db080285; Mon, 19 Jul 2004 07:01:06 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 07:01:06 GMT Message-Id: <200407190701.i6J716Db080285@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69258: teamspeak_server port does not open up all ports and does not cr 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, 19 Jul 2004 07:01:06 -0000 The following reply was made to PR ports/69258; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, mike.bsdpr@daboyz.org, darius@dons.net.au Cc: Subject: Re: ports/69258: teamspeak_server port does not open up all ports and does not cr Date: Mon, 19 Jul 2004 08:57:33 +0200 Dear maintainer, please look into this. Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07:01: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 A54E316A4D8 for ; Mon, 19 Jul 2004 07:01:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FDF943D2F for ; Mon, 19 Jul 2004 07:01:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J718TQ080311 for ; Mon, 19 Jul 2004 07:01:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J718Tg080310; Mon, 19 Jul 2004 07:01:08 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 07:01:08 GMT Resent-Message-Id: <200407190701.i6J718Tg080310@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tsurutani Naoki Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A6E616A537 for ; Mon, 19 Jul 2004 07:00:09 +0000 (GMT) Received: from polymer3.scphys.kyoto-u.ac.jp (polymer3.scphys.kyoto-u.ac.jp [130.54.56.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id A73CF43D1D for ; Mon, 19 Jul 2004 07:00:08 +0000 (GMT) (envelope-from turutani@polymer3.scphys.kyoto-u.ac.jp) Received: from polymer3.scphys.kyoto-u.ac.jp (localhost [127.0.0.1]) ESMTP id i6J7053L048820; Mon, 19 Jul 2004 16:00:05 +0900 (JST) (envelope-from turutani@polymer3.scphys.kyoto-u.ac.jp) Received: (from turutani@localhost)i6J7041D048819; Mon, 19 Jul 2004 16:00:04 +0900 (JST) (envelope-from turutani) Message-Id: <200407190700.i6J7041D048819@polymer3.scphys.kyoto-u.ac.jp> Date: Mon, 19 Jul 2004 16:00:04 +0900 (JST) From: Tsurutani Naoki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69266: www/squid delete existing files when "make deinstall" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 07:01:08 -0000 >Number: 69266 >Category: ports >Synopsis: www/squid delete existing files when "make deinstall" >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 Jul 19 07:01:06 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 4.9-STABLE i386 >Organization: >Environment: System: FreeBSD polymer3.scphys.kyoto-u.ac.jp 4.9-STABLE FreeBSD 4.9-STABLE #14: Thu Mar 18 12:26:38 JST 2004 turutani@polymer3.scphys.kyoto-u.ac.jp:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: www/squid removes many files in $PREFIX/etc/squid when it is deinstalled. This port has no pkg-plist, and generate it in Makefile. It seems to me that the generating way is simple listing of existing files just after installation. But this procedure includes foreign files from www/squid. MD5 checksums are also recorded, so changed files are not removed, but many files that are not changed, cf. configuration files, are removed. >How-To-Repeat: always. >Fix: I don't know, but I think the way of generating PLIST should be improved. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07:03: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 3387816A4CE; Mon, 19 Jul 2004 07:03:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A8E043D45; Mon, 19 Jul 2004 07:03:30 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J73USI080430; Mon, 19 Jul 2004 07:03:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J73U8I080426; Mon, 19 Jul 2004 07:03:30 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 07:03:30 GMT From: Edwin Groothuis Message-Id: <200407190703.i6J73U8I080426@freefall.freebsd.org> To: shadow@psoft.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/64586: new port: devel/preps-devel-gui stable release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 07:03:30 -0000 Synopsis: new port: devel/preps-devel-gui stable release State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Jul 19 07:02:56 GMT 2004 State-Changed-Why: cc -DHAVE_CONFIG_H -I. -I. -I.. -DORBIT2=1 -D_THREAD_SAFE -I/home/edwin/local/include/libart-2.0 -I/home/edwin/local/include/glib-2.0 -I/home/edwin/local/lib/glib-2.0/include -I/home/edwin/local/include/orbit-2.0 -I/home/edwin/local/include/libbonobo-2.0 -I/home/edwin/local/include/bonobo-activation-2.0 -I/home/edwin/local/include/atk-1.0 -I/home/edwin/local/include/libxml2 -I/home/edwin/local/include -I/home/edwin/X11R6/include/libgnomeui-2.0 -I/home/edwin/X11R6/include/libgnome-2.0 -I/home/edwin/X11R6/include/libgnomecanvas-2.0 -I/home/edwin/X11R6/include/gtk-2.0 -I/home/edwin/X11R6/include/gconf/2 -I/home/edwin/X11R6/include/libbonoboui-2.0 -I/home/edwin/X11R6/include/gnome-vfs-2.0 -I/home/edwin/X11R6/lib/gnome-vfs-2.0/include -I/home/edwin/X11R6/include/pango-1.0 -I/home/edwin/X11R6/include -I/home/edwin/local/include/freetype2 -I/home/edwin/X11R6/lib/gtk-2.0/include -I/home/edwin/local/include -DDATADIR=\""/home/edwin/X11R6/share"\" -O -pipe -march=pentiumpro -Wall -c `test -f 'login_dlg.c' || echo './'`login_dlg.c login_dlg.c: In function `on_connect_dlg_show': login_dlg.c:133: `GtkCombo' undeclared (first use in this function) login_dlg.c:133: (Each undeclared identifier is reported only once login_dlg.c:133: for each function it appears in.) login_dlg.c:133: `db_name_combo' undeclared (first use in this function) login_dlg.c:133: warning: statement with no effect [...] gmake[2]: *** [login_dlg.o] Error 1 gmake[2]: Leaving directory `/k/scratch/edwin/ports/NEW/preps-gui-devel/work/preps-1.9.6/src' Any suggestions? http://www.freebsd.org/cgi/query-pr.cgi?pr=64586 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07:04: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 0992816A4CF; Mon, 19 Jul 2004 07:04:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF9DC43D46; Mon, 19 Jul 2004 07:04:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J74F0T080483; Mon, 19 Jul 2004 07:04:15 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J74EW9080479; Mon, 19 Jul 2004 07:04:14 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 07:04:14 GMT From: Volker Stolz Message-Id: <200407190704.i6J74EW9080479@freefall.freebsd.org> To: xavier@xavhome.fr.eu.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/53636: Suggestion for rc.d style startup scripts for localdaemons X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 07:04:16 -0000 Synopsis: Suggestion for rc.d style startup scripts for localdaemons State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 07:03:31 GMT 2004 State-Changed-Why: First to postfix maintainer, then to...local rc.subr-guru? We'll see. Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 07:03:31 GMT 2004 Responsible-Changed-Why: I'll track this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=53636 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07: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 C525516A4CE for ; Mon, 19 Jul 2004 07:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBCBB43D49 for ; Mon, 19 Jul 2004 07:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J7KQvr084950 for ; Mon, 19 Jul 2004 07:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J7KQ88084949; Mon, 19 Jul 2004 07:20:26 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 07:20:26 GMT Message-Id: <200407190720.i6J7KQ88084949@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 07:20:26 -0000 The following reply was made to PR ports/69266; it has been noted by GNATS. From: Edwin Groothuis To: Tsurutani Naoki Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" Date: Mon, 19 Jul 2004 17:13:35 +1000 On Mon, Jul 19, 2004 at 04:00:04PM +0900, Tsurutani Naoki wrote: > www/squid removes many files in $PREFIX/etc/squid when it is deinstalled. Actually, it only removes: etc/rc.d/squid.sh etc/squid/mib.txt etc/squid/mime.conf.default etc/squid/msntauth.conf.default etc/squid/squid.conf.default And the icons and errors directory. If you want to customize the error-messages, copy the directory of your native language first to a new one and use that one (don't forget to update your squid.conf about this) Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07: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 4650D16A4CF for ; Mon, 19 Jul 2004 07:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21F6443D58 for ; Mon, 19 Jul 2004 07:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J7KROQ084963 for ; Mon, 19 Jul 2004 07:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J7KQh4084962; Mon, 19 Jul 2004 07:20:26 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 07:20:26 GMT Resent-Message-Id: <200407190720.i6J7KQh4084962@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edwin Groothuis Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86A2E16A4CE for ; Mon, 19 Jul 2004 07:15:50 +0000 (GMT) Received: from mailout2.barnet.com.au (mailout2.barnet.com.au [218.185.88.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 556AC43D4C for ; Mon, 19 Jul 2004 07:15:50 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mailout2.barnet.com.au (Postfix, from userid 27) id C15E6707458; Mon, 19 Jul 2004 17:15:49 +1000 (EST) Received: from mail2-auth.barnet.com.au (localhost.barnet.com.au [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 7CD40707455 for ; Mon, 19 Jul 2004 17:15:49 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id D497C707454 for ; Mon, 19 Jul 2004 17:15:48 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 6E44C619A; Mon, 19 Jul 2004 17:15:46 +1000 (EST) Message-Id: <20040719071546.6E44C619A@k7.mavetju> Date: Mon, 19 Jul 2004 17:15:46 +1000 (EST) From: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69267: RRDTool is not PREFIX safe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 07:20:27 -0000 >Number: 69267 >Category: ports >Synopsis: RRDTool is not PREFIX safe >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 Jul 19 07:20:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #3: Fri Feb 27 13:54:29 EST 2004 edwin@k7.mavetju:/usr/src/sys/i386/compile/k7 i386 >Description: [~/ports/net/rrdtool] edwin@ref4>make -V PREFIX /home/edwin/local [~/ports/net/rrdtool] edwin@ref4>make install Writing Makefile for RRDs cd perl-piped && make install Warning: You do not have permissions to install into /usr/local/lib/perl5/site_perl/5.005/i386-freebsd at /usr/libdata/perl/5.00503/ExtUtils/Install.pm line 62. Installing /usr/local/lib/perl5/site_perl/5.005/RRDp.pm Installing /usr/local/lib/perl5/5.00503/man/man3/RRDp.3 mkdir /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/auto/RRDp: Permission denied at /usr/libdata/perl/5.00503/ExtUtils/Install.pm line 148 *** Error code 2 Stop in /k/scratch/edwin/ports/net/rrdtool/work/rrdtool-1.0.47/perl-piped. *** Error code 1 That should be /usr/home/local/lib/perl5/.... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07:29: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 F0A8116A516; Mon, 19 Jul 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 D09CE43D39; Mon, 19 Jul 2004 07:29:52 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from freefall.freebsd.org (eik@localhost [127.0.0.1]) i6J7Tq4H085384; Mon, 19 Jul 2004 07:29:52 GMT (envelope-from eik@freefall.freebsd.org) Received: (from eik@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J7TqGE085380; Mon, 19 Jul 2004 07:29:52 GMT (envelope-from eik) Date: Mon, 19 Jul 2004 07:29:52 GMT From: Oliver Eikemeier Message-Id: <200407190729.i6J7TqGE085380@freefall.freebsd.org> To: toshiya@saitoh.nu, eik@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69265: Update Ports: mail/websieve (0.61h -> 0.63a) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 07:29:54 -0000 Synopsis: Update Ports: mail/websieve (0.61h -> 0.63a) State-Changed-From-To: open->closed State-Changed-By: eik State-Changed-When: Mon Jul 19 09:27:36 CEST 2004 State-Changed-Why: Updated, thanks. Please submit unified diffs for updates: http://www.freebsd.org/cgi/query-pr.cgi?pr=69265 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07:50: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 707D516A4CE for ; Mon, 19 Jul 2004 07:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6930743D54 for ; Mon, 19 Jul 2004 07:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J7oMxN087412 for ; Mon, 19 Jul 2004 07:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J7oLE8087411; Mon, 19 Jul 2004 07:50:21 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 07:50:21 GMT Message-Id: <200407190750.i6J7oLE8087411@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tsurutani Naoki Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 07:50:22 -0000 The following reply was made to PR ports/69266; it has been noted by GNATS. From: Tsurutani Naoki To: Edwin Groothuis Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" Date: Mon, 19 Jul 2004 16:43:22 +0900 Edwin Groothuis wrote: > On Mon, Jul 19, 2004 at 04:00:04PM +0900, Tsurutani Naoki wrote: > > www/squid removes many files in $PREFIX/etc/squid when it is deinstalled. > > Actually, it only removes: > etc/rc.d/squid.sh > etc/squid/mib.txt > etc/squid/mime.conf.default > etc/squid/msntauth.conf.default > etc/squid/squid.conf.default > > And the icons and errors directory. > If you want to customize the error-messages, copy the directory of > your native language first to a new one and use that one (don't > forget to update your squid.conf about this) Sorry, I wrote inaccurately. I put files in icons/ and errors/, and I lost them. I want to put them there, and the port should deinstall only what it had installed, I think. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 07:59: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 2508416A4CE; Mon, 19 Jul 2004 07:59:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D42FA43D1F; Mon, 19 Jul 2004 07:59:27 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J7xRTQ088156; Mon, 19 Jul 2004 07:59:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J7xR24088152; Mon, 19 Jul 2004 07:59:27 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 07:59:27 GMT From: Edwin Groothuis Message-Id: <200407190759.i6J7xR24088152@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org Subject: Re: ports/69267: RRDTool is not PREFIX safe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 07:59:28 -0000 Synopsis: RRDTool is not PREFIX safe Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jul 19 07:59:12 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69267 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 08: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 CDCCB16A544 for ; Mon, 19 Jul 2004 08:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B489543D48 for ; Mon, 19 Jul 2004 08:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J8oNFD096500 for ; Mon, 19 Jul 2004 08:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J8oN6J096499; Mon, 19 Jul 2004 08:50:23 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 08:50:23 GMT Resent-Message-Id: <200407190850.i6J8oN6J096499@freefall.freebsd.org> 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 BB42516A4CE for ; Mon, 19 Jul 2004 08:42:24 +0000 (GMT) Received: from mail.ba.zoznam.sk (mail.ba.zoznam.sk [217.75.73.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74C2143D5A for ; Mon, 19 Jul 2004 08:42:24 +0000 (GMT) (envelope-from matuska@mail.ba.zoznam.sk) Received: from localhost (localhost.budkova.zoznam.sk [127.0.0.1]) by mail.ba.zoznam.sk (Postfix) with ESMTP id 8F79A229F7 for ; Mon, 19 Jul 2004 10:42:22 +0200 (CEST) Received: from mail.ba.zoznam.sk ([127.0.0.1]) by localhost (mail.example.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32441-01-17 for ; Mon, 19 Jul 2004 10:42:21 +0200 (CEST) Received: by mail.ba.zoznam.sk (Postfix, from userid 1000) id 620F6229F5; Mon, 19 Jul 2004 10:42:21 +0200 (CEST) Message-Id: <20040719084221.620F6229F5@mail.ba.zoznam.sk> Date: Mon, 19 Jul 2004 10:42:21 +0200 (CEST) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69270: [MAINTAINER UPDATE] archivers/bsdtar to 2004.07.14 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: Mon, 19 Jul 2004 08:50:24 -0000 >Number: 69270 >Category: ports >Synopsis: [MAINTAINER UPDATE] archivers/bsdtar to 2004.07.14 >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 Jul 19 08:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD 5.2.1-RELEASE-p8 >Description: Update of archivers/bsdtar Renaming of patch-file, compatibility with both FreeBSD 4 and 5 series up to 5.2.1 Files to remove: files/patch-bsdtar.h Files to add: files/diff-bsdtar.h >How-To-Repeat: >Fix: diff -NPbur bsdtar.orig/Makefile bsdtar/Makefile --- bsdtar.orig/Makefile Mon Jul 19 10:35:13 2004 +++ bsdtar/Makefile Mon Jul 19 10:35:21 2004 @@ -5,7 +5,7 @@ # $FreeBSD: ports/archivers/bsdtar/Makefile,v 1.1 2004/07/18 11:18:21 edwin Exp $ PORTNAME= bsdtar -PORTVERSION= 2004.06.07 +PORTVERSION= 2004.07.14 CATEGORIES= archivers MASTER_SITES= http://people.freebsd.org/~kientzle/libarchive/src/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/./-/g} @@ -34,6 +34,10 @@ .if ${OSVERSION} >= 502111 IGNORE= is in the base system +.endif + +.if ${OSVERSION} < 500000 +EXTRA_PATCHES= ${PATCHDIR}/diff-bsdtar.h .endif post-patch: diff -NPbur bsdtar.orig/distinfo bsdtar/distinfo --- bsdtar.orig/distinfo Mon Jul 19 10:35:13 2004 +++ bsdtar/distinfo Mon Jul 19 10:35:21 2004 @@ -1,2 +1,2 @@ -MD5 (bsdtar-2004-06-07.tgz) = fb2064ac8897d55b5d6cbd2565673db8 -SIZE (bsdtar-2004-06-07.tgz) = 40091 +MD5 (bsdtar-2004-07-14.tgz) = 3be99578825c9a3ba606ad12783785b4 +SIZE (bsdtar-2004-07-14.tgz) = 41039 diff -NPbur bsdtar.orig/files/diff-bsdtar.h bsdtar/files/diff-bsdtar.h --- bsdtar.orig/files/diff-bsdtar.h Thu Jan 1 01:00:00 1970 +++ bsdtar/files/diff-bsdtar.h Mon Jul 19 10:35:21 2004 @@ -0,0 +1,10 @@ +--- bsdtar.h.orig Sun Jul 18 11:08:41 2004 ++++ bsdtar.h Sun Jul 18 11:09:20 2004 +@@ -107,3 +107,7 @@ + void usage(struct bsdtar *); + int yes(const char *fmt, ...); + ++#ifndef id_t ++typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */ ++typedef __id_t id_t; /* can hold a uid_t or pid_t */ ++#endif diff -NPbur bsdtar.orig/files/patch-bsdtar.h bsdtar/files/patch-bsdtar.h --- bsdtar.orig/files/patch-bsdtar.h Mon Jul 19 10:35:13 2004 +++ bsdtar/files/patch-bsdtar.h Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ ---- bsdtar.h.orig Sun Jul 18 11:08:41 2004 -+++ bsdtar.h Sun Jul 18 11:09:20 2004 -@@ -107,3 +107,7 @@ - void usage(struct bsdtar *); - int yes(const char *fmt, ...); - -+#ifndef id_t -+typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */ -+typedef __id_t id_t; /* can hold a uid_t or pid_t */ -+#endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 09:19: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 153F616A4CE; Mon, 19 Jul 2004 09:19:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBCF043D45; Mon, 19 Jul 2004 09:19:00 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6J9J0NC002528; Mon, 19 Jul 2004 09:19:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J9J0nx002524; Mon, 19 Jul 2004 09:19:00 GMT (envelope-from edwin) Date: Mon, 19 Jul 2004 09:19:00 GMT From: Edwin Groothuis Message-Id: <200407190919.i6J9J0nx002524@freefall.freebsd.org> To: meno.abels@adviser.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/64077: New port: audio/mt-daapd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 09:19:01 -0000 Synopsis: New port: audio/mt-daapd State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Mon Jul 19 09:18:59 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=64077 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 09:20: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 04EFB16A50A for ; Mon, 19 Jul 2004 09:20:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBA9B43D6A for ; Mon, 19 Jul 2004 09:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J9KFFG002647 for ; Mon, 19 Jul 2004 09:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J9KFw9002636; Mon, 19 Jul 2004 09:20:15 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 09:20:15 GMT Resent-Message-Id: <200407190920.i6J9KFw9002636@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexey Dokuchaev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F6F316A4FA for ; Mon, 19 Jul 2004 09:16:40 +0000 (GMT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B20FC43D53 for ; Mon, 19 Jul 2004 09:16:39 +0000 (GMT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.32) id 1BmUMj-0005kt-66 for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 16:23:21 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i6J9Ij9k050554 for ; Mon, 19 Jul 2004 16:18:45 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i6J9IjXO050546; Mon, 19 Jul 2004 16:18:45 +0700 (NOVST) (envelope-from danfe) Message-Id: <200407190918.i6J9IjXO050546@regency.nsu.ru> Date: Mon, 19 Jul 2004 16:18:45 +0700 (NOVST) From: Alexey Dokuchaev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69272: PORT UPDATE: better fix for r_part.c (files/patch-r_part.c) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alexey Dokuchaev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 09:20:16 -0000 >Number: 69272 >Category: ports >Synopsis: PORT UPDATE: better fix for r_part.c (files/patch-r_part.c) >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 Jul 19 09:20:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexey Dokuchaev >Release: FreeBSD 4.9-STABLE i386 >Organization: CNIT NSU >Environment: System: FreeBSD regency.nsu.ru 4.9-STABLE FreeBSD 4.9-STABLE #1: Wed Mar 3 13:17:54 NOVT 2004 root@regency.nsu.ru:/usr/src/sys/compile/REGENCY i386 >Description: Author provided me with a better version of ``files/patch-r_part.c''. It's going to be integrated with new fuhquake release. No PORTREVISION bump needed since it is pretty much no-op for users. >How-To-Repeat: N/A >Fix: %%% Index: patch-r_part.c =================================================================== RCS file: /home/pub/ftp/pub/FreeBSD/development/FreeBSD-CVS/ports/games/fuhquake/files/patch-r_part.c,v retrieving revision 1.1 diff -u -r1.1 patch-r_part.c --- patch-r_part.c 18 Jun 2004 08:16:23 -0000 1.1 +++ patch-r_part.c 19 Jul 2004 04:54:55 -0000 @@ -1,20 +1,11 @@ ---- r_part.c.orig Wed Feb 4 23:15:44 2004 -+++ r_part.c Wed Feb 4 23:32:01 2004 -@@ -60,6 +60,17 @@ +--- r_part.c.orig Wed Jan 7 00:39:44 2004 ++++ r_part.c Mon Jul 19 11:54:15 2004 +@@ -58,7 +58,7 @@ - #if !id386 + vec3_t r_pright, r_pup, r_ppn; + +-#if !id386 ++#if !defined(id386) && !defined(GLQUAKE) -+#define PARTICLE_Z_CLIP 8.0 -+float xcenter, ycenter; -+int d_vrectx, d_vrecty, d_vrectright_particle, d_vrectbottom_particle; -+short *d_pzbuffer; -+unsigned int d_zwidth; -+pixel_t *d_viewbuffer; -+#define MAXHEIGHT 1024 -+int d_scantable[MAXHEIGHT]; -+int d_y_aspect_shift, d_pix_min, d_pix_max, d_pix_shift; -+int screenwidth; -+ void D_DrawParticle (particle_t *pparticle) { vec3_t local, transformed; - float zi; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 09:20: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 5377A16A50A for ; Mon, 19 Jul 2004 09:20:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 399DF43D6A for ; Mon, 19 Jul 2004 09:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6J9KGJq002686 for ; Mon, 19 Jul 2004 09:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J9KGJs002685; Mon, 19 Jul 2004 09:20:16 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 09:20:16 GMT Resent-Message-Id: <200407190920.i6J9KGJs002685@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andreas Klemm Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB7B16A4CE for ; Mon, 19 Jul 2004 09:18:20 +0000 (GMT) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B1BB43D6A for ; Mon, 19 Jul 2004 09:18:19 +0000 (GMT) (envelope-from andreas@klemm.apsfilter.org) Received: from srv1.cosmo-project.de (localhost [IPv6:::1]) i6J9IHaI003521 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 19 Jul 2004 11:18:17 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: (from uucp@localhost)i6J9IHeQ003519 for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 11:18:17 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: from titan.klemm.apsfilter.org (localhost.klemm.apsfilter.org [127.0.0.1]) by klemm.apsfilter.org (8.12.10/8.12.10) with ESMTP id i6J9Hp7V004536 for ; Mon, 19 Jul 2004 11:17:53 +0200 (CEST) (envelope-from andreas@titan.klemm.apsfilter.org) Received: (from andreas@localhost)i6J9Ho87004535; Mon, 19 Jul 2004 11:17:50 +0200 (CEST) (envelope-from andreas) Message-Id: <200407190917.i6J9Ho87004535@titan.klemm.apsfilter.org> Date: Mon, 19 Jul 2004 11:17:50 +0200 (CEST) From: Andreas Klemm To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69273: update of mysql server start/stop scripts according to rc ng X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andreas Klemm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 09:20:16 -0000 >Number: 69273 >Category: ports >Synopsis: update of mysql server start/stop scripts according to rc ng >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 Jul 19 09:20:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andreas Klemm >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: private >Environment: System: FreeBSD titan.klemm.apsfilter.org 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #0: Sun Jul 4 17:11:05 CEST 2004 root@titan.klemm.apsfilter.org:/usr/src/sys/i386/compile/TITAN i386 FreeBSD titan.klemm.apsfilter.org 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #0: Sun Jul 4 17:11:05 CEST 2004 root@titan.klemm.apsfilter.org:/usr/src/sys/i386/compile/TITAN i386 >Description: Had mysql database corruption under FreeBSD 5.2.1-STABLE >How-To-Repeat: Not repeatable (hopefully) >Fix: Update for 4 ports: mysql323-server mysql40-server mysql41-server mysql50-server New mysql-server.sh start/stop script: - new rc-ng style mysql_enable="NO" (defaul) - allows easy configuration of delay if you shutdown server to hopefully avoid races to prevent db corruption mysql_shutdown_delay="5" (defaul) After some weeks my dspam database was suddenly corrupted rendering the anti spam database unuseable. I noted occasionally, not always, that /var couldn't be unmounted successfully if I run system shutdown using Ctrl-Alt-Delete key sequence. Since mysql database is under /var/db is strongly assume, that the corruption happens, because mysql was unable to write all data to database. My mysql database is sometimes busy when server shuts if much new mail comes in, since I run fetching of e-mail batched via UUCP and fetchmail and Im subscribed to many mailinglists and get a lot of SPAM. I suggest another update to mysql server ports: I like the automatically Database Backup Mechanism, which is included in the postgresql port. Providing automatic db updates prevents complete data loss. If Postgresql port can do so, we should add the same type/level of service to mysql database. I can't promise if I do the work, but I would strongly suggest to do such an update. The following files have to be updated - mysql323-server/files/mysql-server.sh - mysql40-server/files/mysql-server.sh - mysql41-server/files/mysql-server.sh - mysql50-server/files/mysql-server.sh with the following script. A creation of a suitable pkg-message file (see apache2 port for example) is the only thing I'd like to pass to the mysql port maintainer ;-) #!/bin/sh # # $FreeBSD$ # # created by Andreas Klemm # # PROVIDE: mysql # REQUIRE: NETWORKING SERVERS # BEFORE: DAEMON # KEYWORD: FreeBSD shutdown # # Add the following lines to /etc/rc.conf to enable mysql: # mysql_enable (bool): Set to "NO" by default. # Set it to "YES" to enable service. # mysql_shutdown_delay (str): Set to "5" seconds by default. # Time to ensure proper db termination on shutdown # . /etc/rc.subr name=mysql rcvar=`set_rcvar` start_cmd="mysql_start" stop_cmd="mysql_stop" restart_cmd="mysql_restart" dbdir=/var/db/mysql mysql_command=/usr/local/bin/mysqld_safe mysql_user=mysql pidfile=${dbdir}/`/bin/hostname -s`.pid mysql_start() { /usr/bin/limits -U $mysql_user \ $mysql_command \ --user=$mysql_user \ --datadir=${dbdir} \ --pid-file=${pidfile} > /dev/null & echo -n ' mysqld' } mysql_stop() { if [ -f ${pidfile} ]; then /bin/kill `cat ${pidfile}` > /dev/null 2>&1 \ && echo -n ' mysqld' sleep $mysql_shutdown_delay else echo "mysql-server isn't running" fi } mysql_restart() { mysql_stop mysql_start } # set defaults [ -z "$mysql_enable" ] && mysql_enable="NO" [ -z "$mysql_shutdown_delay" ] && mysql_shutdown_delay="5" required_dirs=${dbdir} required_files=${dbdir}/mysql/host.frm load_rc_config $name run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 09:22: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 1A43316A4CE; Mon, 19 Jul 2004 09:22:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEBF543D1D; Mon, 19 Jul 2004 09:21:59 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6J9LxD9002853; Mon, 19 Jul 2004 09:21:59 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J9LxMF002849; Mon, 19 Jul 2004 09:21:59 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 09:21:59 GMT From: Volker Stolz Message-Id: <200407190921.i6J9LxMF002849@freefall.freebsd.org> To: gaoj@cpsc.ucalgary.ca, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69259: [PATCH] Update www/akregator to 1.0b5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 09:22:00 -0000 Synopsis: [PATCH] Update www/akregator to 1.0b5 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 09:21:50 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69259 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 09:30: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 50DFF16A4CE; Mon, 19 Jul 2004 09:30:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3426A43D41; Mon, 19 Jul 2004 09:30:52 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) i6J9UqUA004309; Mon, 19 Jul 2004 09:30:52 GMT (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J9UqTi004301; Mon, 19 Jul 2004 09:30:52 GMT (envelope-from ceri) Date: Mon, 19 Jul 2004 09:30:52 GMT From: Ceri Davies Message-Id: <200407190930.i6J9UqTi004301@freefall.freebsd.org> To: ceri@FreeBSD.org, freebsd-advocacy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69269: [maintainer-update] x11/zenity X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 09:30:52 -0000 Synopsis: [maintainer-update] x11/zenity Responsible-Changed-From-To: freebsd-advocacy->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Mon Jul 19 09:29:43 GMT 2004 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=69269 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 09: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 DDA0316A4CE; Mon, 19 Jul 2004 09:36:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C267243D1D; Mon, 19 Jul 2004 09:36:29 +0000 (GMT) (envelope-from andreas@FreeBSD.org) Received: from freefall.freebsd.org (andreas@localhost [127.0.0.1]) i6J9aTKK005033; Mon, 19 Jul 2004 09:36:29 GMT (envelope-from andreas@freefall.freebsd.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6J9aTLk005029; Mon, 19 Jul 2004 09:36:29 GMT (envelope-from andreas) Date: Mon, 19 Jul 2004 09:36:29 GMT From: Andreas Klemm Message-Id: <200407190936.i6J9aTLk005029@freefall.freebsd.org> To: andreas@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69273: update of mysql server start/stop scripts according to rc ng X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 09:36:30 -0000 Synopsis: update of mysql server start/stop scripts according to rc ng Responsible-Changed-From-To: freebsd-ports-bugs->ale@FreeBSD.org Responsible-Changed-By: andreas Responsible-Changed-When: Mon Jul 19 09:35:08 GMT 2004 Responsible-Changed-Why: assigned to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69273 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 10: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 2865616A4CE for ; Mon, 19 Jul 2004 10:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 149E043D41 for ; Mon, 19 Jul 2004 10:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JAKMpp010961 for ; Mon, 19 Jul 2004 10:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JAKMmS010960; Mon, 19 Jul 2004 10:20:22 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 10:20:22 GMT Resent-Message-Id: <200407191020.i6JAKMmS010960@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Simon Lang Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 035C016A4CE for ; Mon, 19 Jul 2004 10:15:11 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFB7643D1D for ; Mon, 19 Jul 2004 10:15:10 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6JAFAET027533 for ; Mon, 19 Jul 2004 10:15:10 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6JAFAW2027532; Mon, 19 Jul 2004 10:15:10 GMT (envelope-from nobody) Message-Id: <200407191015.i6JAFAW2027532@www.freebsd.org> Date: Mon, 19 Jul 2004 10:15:10 GMT From: Simon Lang To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69274: [PORT UPDATE] devel/root - Version 4.00.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 10:20:22 -0000 >Number: 69274 >Category: ports >Synopsis: [PORT UPDATE] devel/root - Version 4.00.06 >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 Jul 19 10:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Simon Lang >Release: 5.2.1 >Organization: >Environment: FreeBSD 5.2.1-RELEASE-p1 i386 >Description: Update for the ROOT framework (4.00.03 --> 4.00.06), containing several bug fixes. Base64-Encoded Tarball: begin-base64 644 root.tgz H4sIAOKa+0AAA+xda3PbttLu1+ZXsG5yJo6vutmJO/kg60KplSxFlB23c2YyFAlJPCYJHZB05Pz6 dwGSsqRdUGnapO9prcnU0vMscVtgsbuAVMF5fPLd132dnlZPz2s1+HtaOq+V5F/5yv+q96XT0/Oz 81L1tFr+7rRUOi1XvzNqX7ld6pVEsS0M47vIt8NZgdzHOWP+t2jQt30Jqf+p57Po682C36H/yvkp yJXKpUrlSf/f4rWm/4UdO/Mjh4dTb3Zx0bfvmMSPp4KxSeRWv7yOU1DuWbWq03+1nOm/XKmeV8rA l87P4Y9x+ud1U//6h+v/1atXRqryE6TxYy682fd9HhptNjFKZ0apdFEqX1QrBmis+uzo6Ej76Pfv mWv8nITqqdpFuXJRqqVPvdp8yc9G7bBUMtQnwxj26uP2YNQ31OutMYXiAIZ/zdbltdnu1U0rZY5m z46MwXC8ghQ4AElvyv5rvHTZJJkdPn859UI3ioUXzowcGg0G48vrbq+5v78P8lCI8fh6azx/+ViX 5K8G6xJvVc+hzacGvDkie1SqHZareZdY6HrTtA8/Gg0eLGCkxMWzH4zG7e1GvbODA4k2jE3UcVLZ zY4uvAUzjt7DP9v3jaPpsNswjronSSRObkul0dmJFzp+4jLoTet2PKp/yEvYl6WtlfWFpa1Gp9G9 Gj+2TldW0/zwYdQyW7dD3CDj388M9FJPXF91b9N3Vqc+ajV73cusKNBgXmizO2o1xt1B+nlgtZu9 Xt6u9fmyq13aGv+tNF6qHpYrqcqLdfo4tgdv8Zg+fwkDelm3WvurMZVgb9Co9zZgorCdqvzDFW4V 9s/UNrWiy2eHldf5im4M+sNurzVaLdEwSedCanmgy1f1y15r3Bm16s39wwcW7VNTYxHPBbNdSa2P 6jq1NdN6XniXzrNec8tKKNvRa64rUOoPLNf+SgcZLfVoDTYlj6K5LcBoH733D4+W6Z+Ih3bADpU0 FLBWW8Rli+SqKNcOK+f5qvhzxuX5y2EqsZp2eICwzGeP1POXUND+9mAdfO3BoiZVtXJYO11NqtGv wzFMQCuvxHfEwyLOO9TmIhZ2KHvUPj/f6NH0/DxFN3aItDvwLBCrYtOCZ2UnL7a1hFIjpcpq+bD6 eqXK39OaLfX9jnr/av/nn/76bP//DwRju/z/s2oF+f+V2pP//y1eBf5/LfX/xwlLPfmaUXpzUX59 Udrt/9e2/f/yRa3A/y+t+f8/GkevjoyAu+zCCLJiJSQpMDY/GnldBp8ayi+YcmG0od5Lq2lUj2up gflfCSNKqzDij3a9drz8gq5//V5qwqNK5Sk8+ts4zJrm7WoFNVo6D/L/o+8LEeGj7/sUET5N8C+f 4AdFIdLBZ4RIB58RIh1kk/TgfyhEqrw+rNaeQqSv9dL4/4lgf14dO/z/MoBb/n+tVD5/8v+/xevR /weVUw5/tXpxWt52+EF23cM/BbHyRbmk9/DfnNYO35RW+TP5+ukneJPFC6/2M9CbGjGLYmNv+ZyF 9sRnH9I82B6sjb0lGMO9n4x4zkJYU9kr5X1v8nYvT5rtPZrrFet64m0GT731FrDIdp59TsXGv/6V bwRK8gdj7/nCt2PwwQMl9dELK+U9ySvJH/SS+SnJnpH1Jm2PM2fO3QdorLDFg7EHb/IOQQFZq1Kr KoH1ru2pln3/PLX3Rvb3BEhD+aiPb7hj+xu49F/TpzcFFL7m4G4V8QimyXGl4PIqlPk6Cn6eb2jS Zv6vaLm29zvmw2dK/k0mzl9t/J5e+vyfJLIPx174h+rYsf/DXl/azv/Bu6f9/1u81vJ/mxpXvoBh yNP/nxPfMMAZOLuovrmA7X47+7f5YGaTNx+slS5OCxKA5WrtsFyrrLkHdrIEGxHBpu4H0is+OMjs /fquUt1PbeWPqyTYRy+eGzN40lkV40x9exa9JYuNYtfZLDmwHR4ts91KZtycgWXcZuU6jvHSvLo2 4O995bi0b9ihayx4FHlgYWHHCe8MmUC7O46mxyGL99MDMtW312s74xf2rXq8/NL+HWSlH+Sl1/ZT 7Mf19OF66Qebpe9lO+9RGkrurfi0tpxVscy3Gdq/euH8TV7I/ku/Y+30xxbO/I/Wscv+1yrb97/O zmpP5z/f5CWtr1T5yYbGUSBYPoUoEGLBR9uPH9o48wH52kXlTUFEeFhapXXqo0Zn5cxfyPRINGe+ b6xtLGA+ZR37xPnG85fy+X2VlN0+M5DnFZP/WMl0hRgy02QJZwNzlvLspLVk62ga1xyWqvprXtXy 2WG1surH2kUH1aTDR1uu2aS0hxzbxxkDMn352blwdZ5VnKJbT2Gnqa4a9O1Nvm99Yd8KMt9Feccd Tf0ha+oPBvwjm1XbVydmf2qzfs8I/tXr+nNfyv4v7mZHC9+L4q9TR6H9L51VKqflLftfPjt7uv/7 TV4TLzxxvDB+Jt/MbddVb+Tp8woNWLAQfMLUB3jHp+7j24iJe/VJBHcuW8D8Tz/BtFq9yUz46vMx W7LVh1U18sPjw+FKKIrmZbFwn7HYOZnzKHaYiI9liQpZuLMPsUxwHMfLWCGqhsALWKQ+Rg9RzIJj idpJPBfONuraLOAhxgN7sQ2BUHYwpmo5qS+84zmCvCkJct9FODSowcMo3iYu7Yg1/AjBXoyx6KO9 cBYPCE/iGIpG8ANs3CQIxWzjDTCK7SR0AH/xotesD1+82ORBdxJGz/l2hCpp2rHdnwgEswAWHuhv G/f9brDgAo1Nmy9ij4fbsNlTI2mHeIjMDx8cpCiTxb4XomrN+GGBB8hMvDGFd5i/GLMlamOOj28w s2D3WJ7uU2dhCztAKNnEX9iD9RBMOJ41fenXI5AFDZk1xHgU2TNG9rbP4jlHkzhF60ixVyxuCcFF pGZPGiBaWxNoyCNvOVb5yK6aZpus4AtY7GhqjxpprmEbfvdhcPlzqzFGxA0TETG8I49H04+oQxKO oUlo4EcL20PdHIGsRlzqyQunnCTQ6KaoXFI0A6thm7Bi4bNQjW+9PW6Nuv262doa4nHd6gag0Z1S Q9tnccxarhdz1MtxfQEOgmNTs3SdIxo5rgukWcCEjfSaog0abtJwm4a7NNyjYYuC+UeMxnGFaEcc 15ce0qfEG3Z4b5NM2/N9Ha5/KtckInqEKctxfXF9W9wxQtc5o39yaKNlk8Ii9hxszCVH2ckc11WU yEOOWM4tokhyzAEkVHQ56v6CQbXJEjuVZO4YbuwlC515ACODGWJjHl/yJcaEHWJjnMENn4fYLmRk y2cBw7YhYyHIZQ5F8o8RoeEMp1brJdgyPNiXyXRKlaOcDAQ38DprDK5aFIiXXmN8fYlB25njVmmm TQpTnWvMbY9orkR14ytJ3HHKTI/pyaRQaVVpxmQhEzZlchXdZ2HSlf4nyVpq4yEUo9ix8otpilJy Ov9o09zgvg8zjDL/QFGt534ShDcew2ZUXo7z2bLALwARCKSz2nYLkaoGkmwWuA4uLGTWY/cMm2Dg YzBIctiLOE2NseD+pU3WmlG6FbMSIEuG5Uo8kwj/gdpcFUHuCI2EmIVJbCKwaRH2T4Lgky3x7FC+ PQsmxEyUFFlYisPcpp+RHihJTMBsD5tEk8EBCYhHmAM+xdwOQ0LbQMJclBuBhmrMue6p3rWGeDfq aBjrBm9NGQOePtUIz/b5TGPmgITAFe/DTU+tU1sQevIELGJOMcL+OLRhjDoeDkfHzQjCC4S2emM8 Bi3f9xZEV1pB4sM27t6oBtDTqBXeY0zGEBi9B1tNzh3F9KhOtJZ9HOIC6jAy+AKG4bXVLhFQGWME VMHQGIXO4zbzXYiIGzyJPBy+j9seYdIlKBVI9U9y5EBJglqYbS9WE0FLmMJeYBcGWLIW7rskLOR8 wLiw1eTVlQbhMNF9ajNrC4+Frm5XbyeB56OcwFgmO8i5YFaapEE1i+IiU2PsM9wUPMH6MjWr3Wz4 HtUTU22/qaHQkBbzKecQyGDCKS/VbIIlDamQGSiegFdh+R6lVrNt6QuVXBiDq0U+KKewphNtTvVb otonyHlimji2NLsO1UsVaFHLyez9wgS1Osye9HVon9rs2RPyEfuBEzuyKc0XOYSSIF03xZDOlkm6 MmYfNEwmeYCKZmTlV4nc4FvgqGDLbWoCEHMIm5G8WYoJwWeCRRHlLpkjFvFEOGzIie3XtBxwlUg/ y7TmCWk4TN2EtWD5ap6I7Tihm2epL0hhfDyqE6A9IUGf6dRPRsoK1YRhiiNDjBWTrhRC20qA1qmk 6Dk15rSfq4ixR6wAupz3njsjtiDAwXkn5G9LePuV4HiM80Dm7a+6Abap1IHJXJl/oS0Hc1cOEkVq kmbApIkUnQVm7tCWsy8sEMiSoNqGKV1Q65WFwzl4tuBaOtSDurBTMZ6jwsQukb3MBejo0mS8Liav STymOsgv6cbDHsL9K+6SVdDpAEnInDa1QoACN5tHXsysuU2EFkqC2uEZb/kxYUEZ7zDfI5veb8B/ AkYuKmDtEDYXso198JAFrFQNJzTVMddLcIYAGN34De6Z8KndjfEhbNCkPZSUwB6bwtUcbsOi1TxI 7rGAzzT4/CECp0qr/iH3HzSPapVrLeaM2ocYH3ORUOaAj8EZxbk+RbiEHVI49vslnkzImm9kjkTD LJmvH9DbWJAzUjPnfD6h5hQEj588bnH/nqqF9PIVWsZRbIavDnwIth49BEGRwCW4t0V8k/l2EhK5 KcUWPamd05K0AnhP9dTDobUEwSBzdMKrGPBaEp+wcdLP14UCide26Yi8g6dYp4Qd2E4Ja6NTwtth p4TPRDolnBXvlHBKtoNndadMNIWYGJ0y0ZQy0ZQyUS2OmDsVoloi4d+pENVWiGorRLU9L/DiSLP6 OuAXElah8+sQ57c7djQnUxGSoPdPek+RSRndJO7wKJYHJZiIA7zo6ROkLnR1STeoG7K47rrSVSe4 aAFuiyZizVhOhkRd2ZeFYFSPZLqCdE2oJBRgEKdlaRHylsJYYuB8CG+SxMVSuSOsl1itcb2IxQRl UHuwt2PN9piNjYkE8RmIRPHslyie/xLV5T4kh1eHRPH6kCg+zJGoJuCTFF5SPTZjRKYyhenoAzjs eqqVSaMqn6yCRoIn/Dr55WcCJBZrjwsYxk8jHtNpnoxPE5uI7TfyQ1Eyow204A61uPqNGyYmnEil 9ps1jPWG9dD2Hz4RM4/KYzyumW2cPBJO4UqT8tW1TisQ2Cpp3NgUxhM5w8kUfcY1ZGQkukTuOBNo eTOG1ZaRPfsTnnwZp8nK5+wD9rkfqcJKr2MP39PJSLw0M7xgDNq7xqBd0M22viNtTUPZXPBY2BrX MT0JWpl/Da89u8yuIOnwjh26PvkYdTtpnF9PwumalJF33DDlhQlhaPrekkxm9XlIxv992Cq8phe0 qbIkRzvZiurZD0wMmZCnE6L4HLSfxMWnqUqA2oWvQAF4yK5YTNqGK5YIwv6RUZoEmx6ejldxsqCK VjBe/rDL0OfR8lY/nYXTbEwpTB14pAzt/QyEW3DyPawTCb9hY3CFwSZe1sOm2aCGbmhSBaRehcUd 6mbKUIfbEvaoTeGRws49dbsHsDTLNcD3WCU5WLAwzYFTrMQJNz3zaStu3Z9x4cXzABub7F4aed1H e98oJ1QWizotzgVo7p4q8V5zW0gydIJfMjKNTD9DpnklEWXMixfDgTU2Ry3rXW97SQ9nAK45o7sk VTZ1p5jGdR36ycwLdXmrIacuwyiU6LiCqamQEfVL7OOmnDIE5JOa2w45UfAMnS6SrMYReqRUqVqT q262ftYtFiW504Sv3ZT9TDFdXgFEYssR3oLQmfAC6toA4KHjLQgXL3Neu8QIp8z1Nc1NqQ0mw4k0 Ap10UWhT/kydhhI2YY0kUxjiK4mhLzdgDZedXWmOH5WMXEoahrQI7xo8CGwiSAIiDDUb0DvNZvdu IcMh0mFMqSYj7haklMbpfbeA9ZI6fJpyV7ym8BWvrQGGZ6IpXFKaciWlLRJMpOcmxMx9tyjszA1x uiV/7ato8Y3e9ziRGhqBVjn2sFMYb74pjlNfI2b7Uj8EgVcGYLTfBESDsNYjiMSX2D+E0VvwMGK0 czSi7P6I+3eEKPy36KqE5HWXVSWnSTEpquDGXs5rruVJWrOGJdWCMMV1mVtQufY6QEri61Epnl4V 0JC3NK7PFEtafuOkoCuDbkGV702c4hnxWBOpa/Mg1rCDU6DrXgpmiDNevRdi3WBXzWJOpn+C8unw MyfIO7w5mW0d2rVusQBCN04Egxb7b0HIUOjG096I5VP+qOZCQwpTaRpdnVzEzCUTX5aM3wVxsigv TRD+lhXzxUfqy0aSEVRIr80B5IQuh5nz5AG1JjBM4R4nqQfCvlkPoU1dZbQeotZ9rMtDWOn3BWlY fwEz5cm4m7jcMB7hb90B2MRnRgDiPWZ8fYmXKoA4czu+6d3or22Nbyxwg6h5DjtGg9j06I1EoRVN xKDIJouUy0osZ8WTNxwVQyU/FVFUnVoUVIER3t5XwZrGUux22rf99R2CVCJnTF19liA4mxpxont8 RnwRM4Pp24rkZTQJ6i54rnG6eFKKaLxvSWm2E0UR+4nENXsfGZtch95Ss4SvBd7nZYKUiC8lTN6k lgSVXtGcHqQwXsApjp3EFMftSXFsR4puY5O5nHQob4ku33giBkf7ce/TlarENBd8M5ZwSHJGf0Pl UYK+uJHxRWepmUgfpyBWTJEXuxJSXzooKl97V2MlQR8z53RCnSVm5BBb8ZzRpwNXEsTUXFGaa265 gKBi9IwsWNSZhGYlrbHkglrjCxqPfWrN3ZsUlmkUWsOKplfGiiI3o/cTwid7zybkjv9e/sikNrbI WP1949t+T3NTFJhm7Oov/wHfCmeUcwcM2VTAqWN5gC0WEzvG7XiEoyLbo75Cxu+IEzTyu9Pk0Spg LpqPENfbAt+DTS+iFn35Pb2SGlVH8GGbA3NIjzcQTTZFZd0u0ObyG8j5xNdcf+siP+83uZZQmba3 dP2pgwZs4kSxQNU5ExKdpj9ZjXAeBHgxOOlv3LtETsIhv6DvCKeCtjKX7rfr+4KhBNp0IXiMHP6Z 41So7szIe29zcKGwpjyHHCcvnE5tbHUk7C3x0RngVGcAjimd3dGVyt/Uo2CIXPBvi6Qo8gQCFshf 6EJwYPs+R19rCgJaY0GwEN490aOQfYw46k/64zBozYtAfutW/sbWJgz/IYQXoB2kHkCxZGTbCbKp gLo4IQboNEEzGFAY6200Yk4iPPyzE1EIgxHGqOwolv/HFJyFjZIQDxGAlG7j4iCHnD33zjlV1D05 p1KU+A2aZQVBn+RkQCAxUp8S2HUBlL/6m65wGJ+Tfv2XVveqPdiC8yePnfvIm4VcMI1AI7c2NG32 Tho31om8NeSxqFhoxNSVbwirdsgBoZeY4T5usMkOOi7ilwGLbK2ADAP7LfXbRhoBGTkeNwpZufKK eG3lbNYqKBrIopJnLW3Bt6XSZ+gwl9qpxJWgXotS5DadwQUC5HRel7hjD5G6LKMXWao1T/MfnPSb 7zto/fMs/7LqTgF9Gfmv2+h4MGdpKTsFtHXY6nexNJw6lnAK2cJn136dRyMVRUzoGzfh3C+gCp9j tn5gneKeOcVdc9JW61hHur06EvbLkOvIqc9tbbFexM+qZ//X3rU/t20k6fxq/hVYr7OJayNKpCx7 441zYSTZ1q4ejign3qutYoHAkECElwGQEpP4f7/uGQDEY7oH2tfdVRFVlon5vul59/Q8MEOhgVwk JVE8zp2MU2jnZFLZRmBqA07tlC+CkYn85zAhUeh8bKoGQC/pwviAQcG4YFCfLAcAAaFRnJumUDzY gMTU0IdA7xzPTmmQqVVuUZ1JDe/yFVpWSgbNc1pHmNScWcvBQCinm/JikZPtFDHSH7YlGmX16sKg tZa4FXC+WpAEPw7tyKeqdYEyvjMRrejg1VFoLMj55VJuVNg+653VQgokJbM6SoG03ywkKwlilD88 OxPPQ2ZgI0ppggKGQQRDwC00DOwlpBpC2M+Hc7LDKAhc7EPGs9wOToK42Eyrm7BcjeZgQ0VrknyK dYu/XDKVMPalETJsvo2Ul7yQ3osLXUgcwWJPFUVYMr1qWu7/0MOqR6Vh2aXScLnyTMCJ79Dxzth8 y3AvQpb7TkYWV41ChiE7fQ5WUwokzBrM0izgfBsVpLIdGNjgG2HoWmhcLZfTsDmCqaGYUpOETWae GUCSedxYsozjxopIjxuR4rhqCpdmsA0PCX7isHiYMfkPeCb4nMs8A54zdksu0tBnRq3FsVo0iN95 0ITiEFQDTPpfRdB4ab13p6blOTxTm/L0+L20u0jlcb8h7TJ8I6dn8E3OvEOdZ6psh0bW2S6zW2kb nAu9JdDgqOhzjEUxl8hQpHIwcEolZ2KZ5aQkSS5pmLO7QWOzu8nUZ3fFYbK74tCZWVGYzKw4gR/d 6vqjBgntgVAQNbNicfnpBsEsywNDdtZZbG42iPrMLClsqypJ6CC69mSDAqMDluB+7E7d1nFfLeTS hCDrqtU6jgYxZLCBsRZt9dNgdO2uBrwK8h4UQ0QTPp0fV90eoI5nJjhftQeuHVwz7Ohw5o6JxScz y7s9QRPn8wEGXo5zNHOFMUMUkTCt6sy1+uCCIWg61xaunbfEt3Jl1NCIdbThedwehXaobINvMvUt vuIw6rPisGqhYs39nDMS9dx+CdnSDamhFX1FYRR9xeEUfUXKzHJ4s1lL7ZchjAEteabOY9mj31iy XQagcq+YFuErTLB/c/WO8kpprGKbgCFddRabuAZRn8KSwrSQksKmtyTRdbNkMFWzpHA1s+TQFRNG Q6YMLBh85pUkIuMA5nMECPDPJ5KxRYdx0J4ZLRlUPcFdGfjPkM4GjU1sk6lPccVhk12x8I8713cc DVIQE31YxUIrRm1E6cc65GjGPOXMhSaJtBeaNE8XHBbGvaH8thy28Go0fckpAltsiiLucxF1Rqtt XFdWCg9v1f45WoL8y0igSqeGEnleY5DlUuNkPAcG9iqqdFIqijY1qXB6jG8aNL6QG0yinEsOX9Ql yy6/iudIaJUIVox+IbdBkRYtR6CW5BqkRXF8cmd5tcHyi+OdOI45xnhdHYfj9V0cLEJDMeKoyTdJ QY4h96NViMdlchTIez73DUFkuFecJ+inqFskzRp0g4H7Y/yczbW1Hch1YZYjPzrQMdQih6lJ1lh8 i6wTiQZZUBjrqqTwTbYgwf/duco6gVSfdVzfHxUMYiEI3z7mhqwrCGyulRx9hn3MubwClM0mwD/i Bg/bybPikzuKVGxH1cNh7K4C0Z31LfFyOU07c1+S5NWDDIqHfTBh5O4qDPVDdwmXypCRoDYoMwS5 duVoVkULBlWbSojoQSlvWdRrCrVBY+tSk6mvURWHqVcVhx69VBRm+FJxAhEtc4/I1y2LGeVUJHai tWLRgyG1OGrK8S2Jz+8aj8htxWBbacHBd7l2ouu72hwmaeEt/uiusdQoZIWswVRdrlFIs7Lcom3K 5jqNz+gGk8jqksNV7JJD5kCDYEpez1yAH1D1F+pmT57Xi0RNm/bTJn11iVmTmPWIYd3LrGXMOqbH ipdpvavH6kyx+d+Qt3UWm7kNoj53SwqTvSWF1S4lic7kksHkcknhVHTJoXXvut8K7br3Cu26xwrt uscKbYejn4FaGxdy1+aF3HWPhdx1r4XctXEhd91nIfcOP2+0E99QKg0aWypNpr5UKg663Pn6OZSK xHb6FYtT2U0SqbKbNHJKpKLBD1Jj3+MfPk8rCpufW5Y+LyXO6gDJoKbfJfjh/Ox7GqV6Swnej0ZO cak2zQi12YSj0zezGaQ9T6pjebsUMm0IzqhZGwWu8tgpz9PQEbTTORLRT+PUIW1kZ7q5nS2g90PO 5EiUmMFpYHq5mlmbyl3vozsDUzoTfN3ETg0hfOknexoY45MosRLT+yxuk9YghDhSkm7+ZwtQfjSz PRLRz/LUIb1E7bRODdH6wsZCAnNbs7GAmxgl50Ml0P3wRzoTi/QSY2IOZkf5La0O1Lc5uskt7JQW t2D8kU1nQdXZhdwzwoFUTVuQwPbiPBrUKhOPTponiDh6ZJo9Klkel2aPS7NHAqslXWIeU3MY9clq z4CrjgGdj2S/QWhjMncDGqGyNuDyPeDyPYiY7A0oX3odTkWA7CyY/oDtDpjegO0M8DwOMrERFVrE ZW7EZW5EAtrVCrlFDLorwlkrCQwoPJtUrxJ0Kx7onqqzMp1El/P6fKVSQnWKdJ9Idom5CBPcAqyP VonqROIZDPA/jXRmxSSmTtXqAnTXzPXMxJoMuRSzBYZ4GNnk9c3p9dnF5M3p559XRPgxmarLZLK4 F2n4rCdteHDAMRc5HnqDZHtQB44h6hgXjRsErXXFkBoAnufYFqHc2iJK17aI0zdtAdKl5b1wa3su bqVtCahcW0Jq7m1B8qLElpjCrSWkctWJwJMHNVKUs0ZQCXRkCbcjRzq1ZRSOGv946nxXhHLtSind u4JAuXTESLeOkMJVJ6I8PkwjaQtpBNbBjtzE7qZQubUlla4dEam96IhQbm0RpatOxGE3HqWrRswh EZdVpx4rp7aIlb4Gy7O+WgIKt5aEylUngiipJqQRyJWUvFerLVC5tSWVrm0RF+fv2hKUU0tA6djx rz6GbIsoXdtStu4dQeqik7ag0rUtaOveFnQp7tpSlFNLROmolHz9OoI6S15GoDoWE0V2K2ZSO77q ismsHeetcyvedaAjK4auXJ2o3xZXR9oSm1hHaIqn6bXlFY5tUZWzVoqmLdbcdbKoVvnDynaTtqzS sSVo69yWcv3mvC1DObUklI6qrqjr1ho4OqlaQoOyfnBwJ3YfLrrRU27t+JWuHREaU+Raa4pcU6aI Oii3JaN0bAnZOqucqk6PbZDUthGZWzxB5piJ0okvmqzt6Cq3dmxLV52I4ohIjaAK0YirYTqhxfGv GqEVohFaw9pCf7w4bktTTi0xpWPb/4duF/tB179+IDrXBURPnvthDzLPTsW+rU5jkYRhiOV3cnU8 PTm7/vzz/e/fn52fTP82vTm9aLgfX5+enN1Mm26eHS3FebzcG++Nm2LOLqc3k/Pzhtv52fHp5fS0 4VYsRXWdhpPzs9NLLfD+5q3O/c351ffvpzrk3fXV1WsdMD09Pz2+ubpuYDjU2p9gFt3KLR8U5nUR PAb+Bs/RyzTg6RqPJtdKVBDlB+8ePJGrlh38jch/EtIEiZepHQ6Pu5S3IghifbAK0oi9AHuGiW61 FEkieKKFVm4ByxWoLv5Doq6zOEl9PNJfG7imxih3qMxTL4ZGuD/Eip3J36nDMuvrWz158ksnE7e2 IGakwitLeqMuA1Y3uuuzhCBrSqBOvfHzQPQUW+PyUum6USdtTkSupgxMIdeohoA3TI3V8EzSqsvC zAJr94pxxJKWEY25Rr2eTubxypyYkmeShvd9VCfPm4jyfgxzyIxaavAusiVeMGEWWBBN8n4UaVZe ksXwqp/mkLfU3jJ9J+5LTSJeX0xFnvvRMjsJlsao1rl8XO3ID3urt4rcU29t+SblJZn452A0vE/C ntzxA7iHD+A+ewD36AHc5w/gvngA908P4H7dnzs6eAD3AeU2ekC5jR5QbqMHlNvoAeU2ekC5jR5Q bqMHlNvoAeU2fkC5jR9QbuMHlNv4AeU2Npdb/XxGjucjcX8S4NlPJpmK21f3bdk9lV/Ng0n7Kaot u+h+sZ4Xt5r1YzsijXpSPejYe1LxgJ2sJzcQi75Jw7KLsr7FF9oR3sPXkwwjsmXco4tR9DgRfbPt I85g9qOm/tLry83wjq7+VLtvcWSFfdCTvsZ7dl09+eZ7ETme3iIpME2TxdGvuiUmI7wKaJI8phE7 p+MiIcYWxbjIa7i1vt18Vg3aNYNngHFAg1dZZNpBfUHASxVp7/rxEIDXq8gQep1BhD9f+YFLeL9L 7UQHCRwC2foskdicwYLYdvXwEloLxpQC12qSzABrklmBTEF7mY9nAeule3dxGhCxDv1I3NuhHsQd yBlRXxWGFwPbRKIUY4mrg1o8d+IgmHOgIEZO+Gfs4YoRCePWNgItNrFpwXVg/7IhoNq5m11wTYzo V+Dq20G2f7KJ7NB3prIXPyZI6tYgvH+TYrwWgQvdw3G8yvwoo2l+msnrPOMVI8uXCvNEhDHJOVv4 neZZgX8ROTHv0KV4BAEXF06hBmLtpcK52OB1cpryrBjvPDsT08Rm8hYXWRgJEqYiqW5qpSSjgpqs co8k/ITt76KrjSqCHfjQK5NoZAebX+jw0dykwSRJ43saTh3PZ1AwyUh0bme+Y0BdO+fww47y3uLY t4V2ekvX8jlWLBL0g4ABoziEXyTBURfZGuB0TuFgnGr7pgYDrP9Fp+/UMOhMlF/eOjadCw4exL+i ax4Yj5HIJjPVSPux6EbU5FGtqbgNiQ4tTjZyX5eJMDYyDmnGKsvjsH4jMs+8eTt6HXI0F9VosuFQ srogSlc2icoxjJnBRkBR6FhAp0EHAZbY2I0TupKIIPDxDlgSXzPtTbD1T9wLZ8SidFVAlK4GC7GJ oD+lcWjDPt2FFjCZ6wuunkuQ8xoUezwZASWljxiy4BdoLTChIMoEkNNFI0HW6+yY80wXK4I2i9K6 F9DTe3lqLUfBb4843PPZTMszNPWyDU1Rd7symVcS6AzERSmw7m9pGRWjhxCygiztwL7fDBNowGln 3qfNMjJmvtyTSkV5CdGh9dDSvvcZFHq7/DCX1iLNiV3O5F2WF47SBDCLGFVZ4mSOFwS6cquTlnmU lo7w2FVhcOZ7QTRS8B5XJjdSscnk9RAkoxgZU7g3khZuxpRrjUJZFd7I8fDyPFoEdmEmmMxVz3Zp hYLgLGasPW9uMxXGc9D+ZzIIJ6xo9LYY/BsJZPv2AnsugoxWRQWBrrEejDKY5GciXfMoI9qUvAKn i86YfPWhAx2AhBnvK7qPliATtRXTLyOq7h/npLPDP49veXmIkywU7IfLMe6gZnComXTB+tFapHmx p5Yk0Zr4Z5HT1d5UZU01NrCjpb3i5OdM1iiULDkJc2EDTBul8is0Go2XUt/SUYcqsWG7SRxWi/TO TiOcCSNZQfLWXy4ZMSWB6fLDGH45G4dpwDUKPdINU8YGlR+MuX7IdWWS04vAB8P3zTUKWTnCDReN yH72NQuifcKOK5CEM8YGQubPOSH5CnQm3bxKnMyskkBmA/SXPeZ4QP+ME6aSJoa+MxE2J12AiZ3T uYDX2Dp+wgxcE7ZrA/S+uzWxBsvbbGl8A6MM2zQ9+nEFRq/PKQRgcHmMzdcOfGa+CxmC0fSIy5l+ joDrlMx8V0mhTThk8LUljTNxNBoPf06WDMMwAElXkWNDhsTLYfYxoEm/sMOITEDfSPedmfAzOrsy z06Y8ixgsu0pfMIZBnI3NBO9OFiLYnWH5CQBEJhYJvSoATC24UDGO6mAbtKdcxyc3eAZmQiEQ6sH fgo2W6UL2+GSWBLooigZpB7kR6u5Q+setO0MU0TqCExGPJiXccQaC1sKbdDA/5Ht0o2hxMlsYud7 Jch6PWD90r0YP4ssUXqSiZ9gRvQZg/pgf3I6O18zstes6snvWMxgPd7Zaw7lZpvkQjN+Zd/ZVVFR 7vN0dcINxJEwlR0eHYn7TRb4LjMuKgkTddQGReM1+C+x0m7qwxER2g40Zz8Xe4GfJbIz2pMT6iIo KBF4enc1PftQexfR7P10+H66N5ken50VgPw6ZRFHeVZ9GNIBbIzEMM8XBDR3OdBnQBqbB7d6zIlD 32EgKjIOrj+TCOeLSgFiBAQGSLr0bRacsygv+Bc96stDevVYGEex/PxIi2abcB4TZSxvi2MgKu8U SCREghSWivmKKGOFkUEqlJXrExm0FqlrR0SZFSBRZgVKBFugRJndibkr94rpUYAQbqNq49g0CezM kyqug9lJMstoKCeg1KEAXH+noZkb30UcXm1RJPDtvj2CsEr06BzsDsfbcwIqTQUhnvOE2QKGgSKl Mq1J4iWR6HZXaReUXwzpMWeWpQ4VMQUSQTpuGockiLPUpFgJUj6xcjFRKmDK9yoNNmRNkyia8xSc 77l+hoNVWj4NUH5cMadSgxDly7dDHFrpwZjMIIQokWCRUFi5rq0H7xPc5QZGBuV9MaLiAwjlZ0z6 GZN+oHxuSRDXcEmQbYJ821NTXVrIIxPukQn3yIR7ZMK9Q9LPIemHa0ge14w8Lpu9OCTbh8e3Xo9v vX6EV8eSYC7SdJUQMHRXZNmreWw9JOwFFVuJUSJJLYJnosmJSS0K9nUaUwEqkAhRTWdz2IgFn7Po nzh0zIIHLMpGasxLPmTRZyx6xKJsZoxfsCifVV9zKJugQzYj2dSyiWXTyiaVSul8Bo1NpKgjqJo8 n4l7J7BDG4emDOvjSmQGSpbHpL0Zxq6/2OixSNwVOxgJ+J5UGGpanwq0QAm/8RyPuTOYfE0SJckA lx+5dBAYqt3uiTDJN5RfZNAYYXUk5TctWkQuRdJwJj86JmEGjdXRS3owFWs/XmVkWlLpmSqGJI1x kckEk8KhCNIcjwzQ4xkpmI5wRtZ1hAhfqTLxZ7jywBOIGpMKJ05dUrxYgP1HWEAFSOj5AiX0PP6k kisxKkLw0yWt6gKl/CYh6TEhBzQZWffV3DtjG6tJuhGRfQW65tAx63dM+41IBa1AKsaocQksn8/m /lL+JgmuyG0/oHF5bCwFgtpWeo9kZCEfPGrnNaWLcMaayhSJETG7nyU+Mazc0NAvOkiaedn+iY+r b9u5V4mBTokX+yJ39ofOOvOXUZwKPe4EK+yEhxDOYpjJuWQ9MYTWwBKiWP5mOYphDAtfI5HDAJxi 4cGkuKAduiSGn5+RYJKREP7eW9iOOhOVYq0yb/Cd66dpaPmR3B8rSaVbda6SPPq0ZLw5x++BTRwe /zAamYUAiScUdywbSSxBD+LbvHZjiZlFM5x5Hzkli2aUt5qzYgoSTajfPd6DVV7s3ZPag8aWWptp ZjEMQ1YtmVyq3T5tJDEEdQ0zS6DB+r3GZhbNqK7YNVAYuHZ/q5nFMLa3ThpJNEHdwsjhNFa/dc/M YhjVbXImDoPXLkozszhGjxQZ0lO75MpI4gh94rI2asz6rURmFs0ob+PhGSSqB6ga3nYs31Xn6/pO 2yV29n+2S7fGinT35LQ+tPKgor7cPjxluvUUKsk9iFpKuQpP+de4N/PzZ3tt7xc3k3aRpkvoZ07T RRajXA3UuDcS1rFeNUBlBZKYtMAotOvedMmWYdByuRUtl3ugfLZ7/olHlcftcs8VmZP+e8I4GB0c PH/27LODg4PRi6MR/o9P+f/44MXzz4DyYnz47MXhGPDR+Pn4+WfWwb8nOs0HBlV2almfZbh1nuHd eUIE/4kI/Wef66urGwsPbHKtRZxaj7+5/hZcMuubq2/llOUe/EhxL7JwrW9uvhWOF8UwivVF9tja s/zc8jPLjiw1vzmIS6pr5za4BzZ+3WRVH+NZd6mf5yKCkZh1/Mc/Di0ZvGdnICmzwPcSADu3ck8M jkFSKqzTFc66iSgSVhKvUiuwrWuIhUjhn3W5wk/BfaB9eXx6ffnUwnRgjCzUWZlV3gM9yOM4sO5E EOzdRvFdZOWx5flLzxKRSJcbK5Gne/tZnn1lzVeQqPwLEBJksbXKIDUYKevOd4WV4vm4g3hhxRDF tEym+ojLspMk8B1bXfps3UD8wLjPRWihZkXhFngEf9bxPiR+IGcqwZ6Ev9bx2eWN9SWWgHS1ndxf C8vFaY04CSEnZMpSMARcC7Rnjvtv/GgpEzzwVpGbCleKL/qGr6w7z3c85K4h3lAE1R1MPk5gWquh PcQSfzkYQDmeYDqqQ2dlWBc+9J7+LzI11lWC1xJhupCtdtBak2Ap5qn9laW+hZG+1ElBLT6epvyV dSln0SVLZZ4M9Li8Cy/bn+YrB8/1kX7GJ9YbXIX1HUjL4fZF+i8PELXeFF81WhexKwK8vAW8FlQ7 sN5nEMwZZijuVkWsiFi0tKaqaFDcpcixcqJrg3wW4aqfdRI7KywClRXoAY9un8qj27ceLPQhzyW2 piJdQ8BfJvJKLxFYeDbACkN9Ohi8hmiHMdRYPJQrVeslX2E1A2d5Qhakt7ITvrLAltjL4y/gl1Ab 5uHXwIWefSXX561lGq8SlStQW8EhiOPbogmp1nUn5hZu8IOS/umnn14+8vI8ebkvO9yhPG7M8fYH g3dxiu0W2sVrKK3vpyfWfGNN/RAknkOd/8r6JsOX71BL7kEli4au+HbX9/6/f2T/D/Upx+r4bwrD 0P8fjJ4ftfv/o+eHu/7/P/FcnBxZX2IlmK3xmPnhwfNhBt2sI+wh5Mtw+ctT65X1p4VwxsI+HB+N Xff53H3xfPH114eHz58fOS9Gz8bOYHr236dmMaODr48OD14c7NTG/51Htv/ySLt/Uxh8+x8dvnim 2v9zqEwHh7L9P3sx2rX//8Tze7B+7sCyTsE6lafTSSsRTBFVI6SJaFmWHJ7/Hk02YRWfMKGzfEYv rL+sgo01Pjh4BpyfvDissPLZWhJ6Q+L34PFJYXk8gbfBu6vrm8vJxemrR49k2Pj+4+n19OzqEpwK HTM4ntycvrm6PjudgqO0lq3MgSEImGNgWXmDi8n05vR6Nj27kYxF1/KR9X9wcjYtQ3vyaxn0p9la vRThfipV2gDkgr0O/06vwUc3PYPjq4uL08sbACdgPKuB1FU5NpJ276QcNLwux0aDwdvJdHZ8dfn6 7M37a4zKBkzh6n12M7l+cwoi8fKPeeYeDSbn55XjI7wcQZ7NZWW3fgJjl2Dwfno6e3Mx+WspCt/x Wu3667uL2tubc3ip3q5Pzy7fnU+OS+/gc3Zy+u708gSzchkmw+cvVf7gRNWnfcxwnFAE5Fmd/Edg 34fBeHjUoOMGELxjG70gPKjCm0GaMIg933r8ePDT9V+n18cYsSe/wm/pt1ZGYFC/ePFfCC9evBhA LTpbWJt4BWPKNZrY0LihTsNoZjP94Rwscqzn+zhqw6uF8aPl7GNwdLCnPrd9+hVazREIQQmhvYHh IW4OlnY0DAizVYIC5EDZz4Ecx0MgTywcU8px40bk1iqSnxnKcRp4hrYgR4KFXxii/VWkcwHDU+vI igQO2zIYxICcxM5hTJuhDY4BKtFBnJejxgU0OxweWTaMHlKBmxylwZ7Fi/wO3cqxKo5swXNjbJtZ xX2cMDJ9i3ljq5EC+G+MFBJ7KRu9HKOAkNooJRvWamNRRk9+bVfQT48e/X0AxbG3B0PbhX//Cgrr +vT12YctIHLH9dMtgHOIFQiDoCYIDvhvVBKKHdt79iJ79KjjiAXZdcbWrnH1/DTpOruODeXQcV4G 8XyVdZxv0/lRV4asWF1n3MLlrzvO6otowvl5xz1d+HFXdgr1x+s6Z3bizjXOnu3Gd8ldB1iLaFXL WNUCZMSXQcdZ3DsikXWji+BciJ/jtpM2Judu3Y6wLF6riyDagPycfDAobiCazqZvt1rs8mr2+uxc Knl0hTopddWJqpYzUBdYTT//XNWmzz/fL1cuLI2bWuK4mFyOUKHgy3BkLceywxhZXvUDT80ZyT6y 4IQixNYuhiPpG1XeIznJjTz5Q34XPLLS8NYVkJfojtL2cIeFvyze6t7lu7gXBVQEhD9Lv5GCoTe6 OoH+7QYTKs8otIqzYaziHFyrOHfWKk6JHWCnMLs5vfxRtmD5Bi+frOMPH149hib94cOnx9b5yevz CTRycCh+fnqMCnayAp3hyhkYtBRAOW3VLG4zBAWSFbNPqE0tx46seaGc5hupaQZDf2GJe5wS+xKk Xx1Pzr+fTE8/qbVef558xGuvDp8Ofjq7eTvbXu6nCncI2ecvBiYhgWvL6+fGhRg8k7WoND0lZGky tAvf0+u2599b5d0dlipSnD/CCSLX9dVMG9hE3ayRgf7OBdUYCfdLlH31/mb2w81T2en+cDP7URoV hwP4eXmFVf7yZHJ90jEHUAFDRakayce8bXPVnqI93fm5B8Q9PyoUMIRRqtlip0ibCtnQoeKq4btz MJlm0/ffY2X94eYV9NRDEWRCF8NStXzM23ZB7i8Ww2cNu2BZTPTtI1aL/c+JWA6/1lMRq1HxZI0j PROgRp6soqW/oMiQTol3E/udE4dyVvZxoy51inV7ifFTpujsTB7d0Axm6xXztpVvtUuQD8i420hS ko1FY4xC3xRvG+tT6w9/sOpwHWNyI1ni+RSNBFtQph+Hh42Ubo24JM7yJdhFH4PCjmumoqY++lRS FTwpoW8+oLbp5oB0lQ39CpJW00h0dqAaa0ZHeuuTFMpr3zSAzusmAR2Z6ILOHMgbB2tjBVK3Ngo0 E84q9fPNPoowpk2RysgXuusbGBcN0cwegu05DG+/RS2N1rfabQNG+HyvWJK5szMrAiugnPhHk1ca wYUNklmHw3tU5+V0+LPhPQhTvsGGvhB2BJ0cdrL2Bro3uWJUCkPlKa36yqbfk8ODMzUsiWKQVJNb LhNluR8EVrqKojJGuCcAf1t/3nsqy+jJr1fTcjhqfWMdydlT67ffrHbZFfd3aouqzMNiD1KjhhT+ WpWEKIzSPlNytgQwJmS7UcJmx5Uh0XT59FgZeqWrtN9qLHwHm6O0T/6FIvVJ3jYHqD57AmoCGuDR 8uVLutN+9N2TX0+P317NLqZvPlmPX7169a11InnWloajrCLTLXibgykAAVXBaYVXBdgjhIJbD6Y4 IoUPo9499QhmS6+HtO2LykFuI1C9YoQa+zuNZjREQrIw7GJcLl/7BCo1WSdMqcpMQQKpFiK+2Su0 a/FUNbXWy4Zc7w87Eah3iKZ4bLm16Lwruj4LndsZ8ei7LBAisQ6hPgNvT+qilzKg64tPlpxOmV4f f9pXYxC8UQVX4EnC9rLPYgrq2QP5RwZ+fUDkRxRZ7rNqXEuqmP+YepTyq5mn44uTT9aeYCzpmvH4 Rfabvbp3FoG9zF79/XGhYvaUImpAv1l/lj6kB+z8anTUSDXn375ohGHIo0I1/4OJ+KfS1NG8v/25 ZxJb2vjBKd5aLGWpbqdjZzAWBmWGdeTlo2LwNXj0peNC1Si21KkaZP0ZO4onv05Pb+TQtxgGly9y 3rRyVQks3l6fnW8R7Ao/QddcTJm5qwBnHREtxuSfeoV+LvPienL9t9m7yc3bV8OXOOhuuH2yhvtP flVByBAhHyBQ1giCVi+toP/tRYbds3t2z+7ZPbtn9+ye3bN7ds/u2T27Z/fsnt2ze3bP7tk9u2f3 7J7ds3t2z+7ZPbtn9+ye3bN7ds/u2T27Z/f8S5//ATMDUvgAaAEA ==== >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 10: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 A6CB916A4D1; Mon, 19 Jul 2004 10:27:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 895BD43D39; Mon, 19 Jul 2004 10:27:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JAR3Zf011428; Mon, 19 Jul 2004 10:27:03 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JAR3St011424; Mon, 19 Jul 2004 10:27:03 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 10:27:03 GMT From: Volker Stolz Message-Id: <200407191027.i6JAR3St011424@freefall.freebsd.org> To: flynn@energyhq.es.eu.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69253: Update games/doomlegacy to 1.4.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: Mon, 19 Jul 2004 10:27:03 -0000 Synopsis: Update games/doomlegacy to 1.4.2 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 10:26:44 GMT 2004 State-Changed-Why: Forwared PR to maintainer Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 10:26:44 GMT 2004 Responsible-Changed-Why: Forwared PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69253 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 10:42: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 157E416A4CE; Mon, 19 Jul 2004 10:42:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAB3A43D55; Mon, 19 Jul 2004 10:42:27 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JAgRPE013632; Mon, 19 Jul 2004 10:42:27 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JAgRWm013628; Mon, 19 Jul 2004 10:42:27 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 10:42:27 GMT From: Volker Stolz Message-Id: <200407191042.i6JAgRWm013628@freefall.freebsd.org> To: girgen@pingpong.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69215: [MAINTAINER-UPDATE] py-PyGreSQL missing 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: Mon, 19 Jul 2004 10:42:28 -0000 Synopsis: [MAINTAINER-UPDATE] py-PyGreSQL missing distinfo State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 10:41:21 GMT 2004 State-Changed-Why: Committed, thanks! Please check if it'd be better to use USE_PYDISTUTILS from bsd.python.mk for configure/build/install http://www.freebsd.org/cgi/query-pr.cgi?pr=69215 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 10:48: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 CC65B16A4CE; Mon, 19 Jul 2004 10:48:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AED5A43D1F; Mon, 19 Jul 2004 10:48:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JAmjRQ013790; Mon, 19 Jul 2004 10:48:45 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JAmhc9013786; Mon, 19 Jul 2004 10:48:43 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 10:48:43 GMT From: Volker Stolz Message-Id: <200407191048.i6JAmhc9013786@freefall.freebsd.org> To: coldsyncjul04@oldach.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69212: ports/palm/coldsync doesn't work with PalmOS 4.0 and above X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 10:48:46 -0000 Synopsis: ports/palm/coldsync doesn't work with PalmOS 4.0 and above State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 10:47:58 GMT 2004 State-Changed-Why: Forwarded PR to maintainer. Note to submitter: PLease try to contact the maintainer before submitting a PR! http://www.freebsd.org/cgi/query-pr.cgi?pr=69212 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 10: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 EF2F516A4CE for ; Mon, 19 Jul 2004 10:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3CC443D31 for ; Mon, 19 Jul 2004 10:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JAoPFt013886 for ; Mon, 19 Jul 2004 10:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JAoPZf013885; Mon, 19 Jul 2004 10:50:25 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 10:50:25 GMT Message-Id: <200407191050.i6JAoPZf013885@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69212: ports/palm/coldsync doesn't work with PalmOS 4.0 and above 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, 19 Jul 2004 10:50:26 -0000 The following reply was made to PR ports/69212; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, coldsyncjul04@oldach.net, arensb+freebsd-ports@ooblick.com Cc: Subject: Re: ports/69212: ports/palm/coldsync doesn't work with PalmOS 4.0 and above Date: Mon, 19 Jul 2004 12:47:46 +0200 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 10:50: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 41AA116A4CE; Mon, 19 Jul 2004 10:50:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2381143D31; Mon, 19 Jul 2004 10:50:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JAoj1m013964; Mon, 19 Jul 2004 10:50:45 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JAoiKw013960; Mon, 19 Jul 2004 10:50:44 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 10:50:44 GMT From: Volker Stolz Message-Id: <200407191050.i6JAoiKw013960@freefall.freebsd.org> To: pdseniura@techie.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69128: [work-around] mail/postfix configure glitch in adding multiple items to POSTFIX_OPTIONS in BATCH mode X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 10:50:45 -0000 Synopsis: [work-around] mail/postfix configure glitch in adding multiple items to POSTFIX_OPTIONS in BATCH mode State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 10:50:28 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69128 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 11: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 2554416A4CE for ; Mon, 19 Jul 2004 11:00:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0936D43D31 for ; Mon, 19 Jul 2004 11:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JB0jE1014419 for ; Mon, 19 Jul 2004 11:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JB0j4W014418; Mon, 19 Jul 2004 11:00:45 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 11:00:45 GMT Message-Id: <200407191100.i6JB0j4W014418@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69128: [work-around] mail/postfix configure glitch in adding multiple items to POSTFIX_OPTIONS in BATCH mode 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, 19 Jul 2004 11:00:46 -0000 The following reply was made to PR ports/69128; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, pdseniura@techie.com, vivek@khera.org Cc: Subject: Re: ports/69128: [work-around] mail/postfix configure glitch in adding multiple items to POSTFIX_OPTIONS in BATCH mode Date: Mon, 19 Jul 2004 12:50:05 +0200 Dear maintainer, can you please look into this? Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 11: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 6A31016A4CE for ; Mon, 19 Jul 2004 11:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5066743D2F for ; Mon, 19 Jul 2004 11:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JBAOZK022182 for ; Mon, 19 Jul 2004 11:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JBAOlX022181; Mon, 19 Jul 2004 11:10:24 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 11:10:24 GMT Resent-Message-Id: <200407191110.i6JBAOlX022181@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Simon Lang Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5630216A4CE for ; Mon, 19 Jul 2004 11:07:17 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 399EE43D5A for ; Mon, 19 Jul 2004 11:07:17 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6JB7HFW034875 for ; Mon, 19 Jul 2004 11:07:17 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6JB7HA4034874; Mon, 19 Jul 2004 11:07:17 GMT (envelope-from nobody) Message-Id: <200407191107.i6JB7HA4034874@www.freebsd.org> Date: Mon, 19 Jul 2004 11:07:17 GMT From: Simon Lang To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69276: [NEW PORT] HTML Documentation of ROOT 4.xx X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 11:10:24 -0000 >Number: 69276 >Category: ports >Synopsis: [NEW PORT] HTML Documentation of ROOT 4.xx >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 Jul 19 11:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Simon Lang >Release: 5.2.1 >Organization: >Environment: FreeBSD 5.2.1-RELEASE-p1 i386 >Description: # 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: # # root-doc # root-doc/pkg-descr # root-doc/distinfo # root-doc/Makefile # echo c - root-doc mkdir -p root-doc > /dev/null 2>&1 echo x - root-doc/pkg-descr sed 's/^X//' >root-doc/pkg-descr << 'END-of-root-doc/pkg-descr' XROOT stand for "OOTs bject-riented echnologies" - it is an object Xoriented data anlaysis framework written in C++. ROOT has its origin at the XCentre Europeenne pour la Recherche Nucleaire (CERN) and is a cross platform Xtool well-known to high energy physicists, but it's also used in a wide range Xof other data analysis applications. The system consists of the C/C++ Xinterpreter CINT (for interactive development and rapid prototyping) and Xhundreds of classes, which provides functionalities u.a. for: X X - Data Histogram and Minimization Operations X - Linear Algebra, Matrix and Vector Operations X - Tree, Ntuple and other Data Containers/Stuctures X - 2D Graphics, 3D Graphics and Detector Geometry Modeling X - Graphical User Interface X - Operating System and Networking Interface X - Inline Documentation and PostScript Interface X - PROOF Server (parallel computing) X XThis package contains the HTML documentation, only. Use the devel/root port Xto install the ROOT framework itself. The installed package is 100 MB large. X XWWW: http://root.cern.ch/ X XPorted to FreeBSD by Radim Kolar / Simon Lang, X END-of-root-doc/pkg-descr echo x - root-doc/distinfo sed 's/^X//' >root-doc/distinfo << 'END-of-root-doc/distinfo' XMD5 (html400.tar.gz) = IGNORE END-of-root-doc/distinfo echo x - root-doc/Makefile sed 's/^X//' >root-doc/Makefile << 'END-of-root-doc/Makefile' X# New ports collection makefile for: root-doc X# Date created: 19 July 2004 X# Whom: Radim Kolar / Simon Lang X# X# $FreeBSD$ X# X XPORTNAME= root-doc XPORTVERSION= 4.00 XCATEGORIES= devel science math XMASTER_SITES= ftp://root.cern.ch/root/ XDISTNAME= html400 X XMAINTAINER= simon@lang-clan.de XCOMMENT= HTML Documentation for ROOT package X XNO_BUILD= yes XWRKSRC= ${WRKDIR}/htmldoc XPLIST= ${WRKDIR}/pkg-plist XDOCSDIR= ${PREFIX}/share/doc/root/html X X.ifdef NOPORTDOCS XIGNORE= This package contains only documentation for ROOT 4.xx X.endif X Xpre-install: X ${RM} -f ${PLIST} X cd ${WRKSRC} && \ X ${FIND} . \( -type f -or -type l \) -exec ${ECHO_CMD} "%%DOCSDIR%%/{}" \; >> ${PLIST} X cd ${WRKSRC} && \ X ${FIND} -d . -mindepth 1 -type d -exec ${ECHO_CMD} "@dirrm %%DOCSDIR%%/{}" \; >> ${PLIST} X ${ECHO_CMD} "@dirrm %%DOCSDIR%%" >> ${PLIST} X Xdo-install: X ${MKDIR} ${DOCSDIR} X cd ${WRKSRC} && \ X ${FIND} . | ${CPIO} -pdm -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} X X.include END-of-root-doc/Makefile exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 11:16: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 26CBB16A4CE; Mon, 19 Jul 2004 11:16:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 087CA43D53; Mon, 19 Jul 2004 11:16:10 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JBG9aV022423; Mon, 19 Jul 2004 11:16:09 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JBG9FL022419; Mon, 19 Jul 2004 11:16:09 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 11:16:09 GMT From: Volker Stolz Message-Id: <200407191116.i6JBG9FL022419@freefall.freebsd.org> To: joji@eskimo.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69171: palm/pose dumps core on 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: Mon, 19 Jul 2004 11:16:10 -0000 Synopsis: palm/pose dumps core on startup State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 11:15:46 GMT 2004 State-Changed-Why: Requested backtrace Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 11:15:46 GMT 2004 Responsible-Changed-Why: I'll track this PR http://www.freebsd.org/cgi/query-pr.cgi?pr=69171 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 11:40: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 2E94F16A4CE for ; Mon, 19 Jul 2004 11:40:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15BEF43D49 for ; Mon, 19 Jul 2004 11:40:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JBeFnc024244 for ; Mon, 19 Jul 2004 11:40:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JBeFgJ024239; Mon, 19 Jul 2004 11:40:15 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 11:40:15 GMT Resent-Message-Id: <200407191140.i6JBeFgJ024239@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Andrei V. Shetuhin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35ABD16A4CE for ; Mon, 19 Jul 2004 11:35:46 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7F0143D39 for ; Mon, 19 Jul 2004 11:35:46 +0000 (GMT) (envelope-from shetuhin@corp.mail.ru) Received: from [213.221.5.13] (port=1928 helo=[213.221.5.13]) by mx2.mail.ru with esmtp id 1BmWQr-000O5v-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 15:35:45 +0400 Message-Id: <1282551015.20040719153415@corp.mail.ru> Date: Mon, 19 Jul 2004 15:34:15 +0400 From: "Andrei V. Shetuhin" To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69277: New port: textproc/ctpp C++ library to use templates in C/C++ 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: Mon, 19 Jul 2004 11:40:16 -0000 >Number: 69277 >Category: ports >Synopsis: New port: textproc/ctpp C++ library to use templates in C/C++ projects >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 Jul 19 11:40:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: "Andrei V. Shetuhin" >Release: FreeBSD 4.8-RELEASE i386 >Organization: Mail.ru >Environment: System: FreeBSD adolf.corp.mail.ru 4.8-RELEASE FreeBSD 4.8-RELEASE #1: Sat Jun 19 18:32:34 MSD 2004 shetuhin@adolf.corp.mail.ru:/usr/obj/usr/src/sys/GENERIC i386 # 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: # # ctpp # ctpp/Makefile # ctpp/pkg-descr # ctpp/pkg-plist # ctpp/distinfo # echo c - ctpp mkdir -p ctpp > /dev/null 2>&1 echo x - ctpp/Makefile sed 's/^X//' >ctpp/Makefile << 'END-of-ctpp/Makefile' X# New ports collection makefile for: ctpp X# Date created: 19 July 2004 X# Whom: shetuhin@corp.mail.ru (Andrei V. Shetuhin) X# X# $FreeBSD$ X# X XPORTNAME= ctpp XPORTVERSION= 1.0 XCATEGORIES= textproc XMASTER_SITES= http://www.reki.ru/products/ctpp/ X XMAINTAINER= shetuhin@corp.mail.ru XCOMMENT= C++ library to use templates in C/C++ projects X XGNU_CONFIGURE= yes XUSE_GMAKE= yes X XINSTALLS_SHLIB= yes XLDCONFIG_DIRS= %%PREFIX%%/lib X X.include END-of-ctpp/Makefile echo x - ctpp/pkg-descr sed 's/^X//' >ctpp/pkg-descr << 'END-of-ctpp/pkg-descr' XThis is a simple set of C++ classes which allow to use Xtemplates like perl module HTML::Template X XWWW: http://www.reki.ru/products/ctpp X X- shetuhin@corp.mail.ru END-of-ctpp/pkg-descr echo x - ctpp/pkg-plist sed 's/^X//' >ctpp/pkg-plist << 'END-of-ctpp/pkg-plist' Xinclude/ctpp/ctpp/ctpp.hpp Xinclude/ctpp/ctpp/param_data.hpp Xinclude/ctpp/ctpp/udf_fn.hpp Xinclude/ctpp/functions/htmlescape.hpp Xinclude/ctpp/functions/num_format.hpp Xinclude/ctpp/functions/std_fn_list.hpp Xinclude/ctpp/functions/urlescape.hpp Xinclude/ctpp/functions/value_in_set.hpp Xinclude/ctpp/util/d2str.hpp Xlib/libctpp.so Xshare/nls/POSIX Xshare/nls/en_US.US-ASCII X@dirrm include/ctpp/util X@dirrm include/ctpp/functions X@dirrm include/ctpp/ctpp X@dirrm include/ctpp END-of-ctpp/pkg-plist echo x - ctpp/distinfo sed 's/^X//' >ctpp/distinfo << 'END-of-ctpp/distinfo' XMD5 (ctpp-1.0.tar.gz) = 394a4dd9e1565834a17d36979b308359 XSIZE (ctpp-1.0.tar.gz) = 57945 END-of-ctpp/distinfo exit >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 12:00: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 8821516A4CE for ; Mon, 19 Jul 2004 12:00:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68A0F43D5A for ; Mon, 19 Jul 2004 12:00:44 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JC0fHr025704 for ; Mon, 19 Jul 2004 12:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JC0fAg025637; Mon, 19 Jul 2004 12:00:41 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 12:00:41 GMT Resent-Message-Id: <200407191200.i6JC0fAg025637@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Sebastian Yepes F.ESN" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E085F16A4CE for ; Mon, 19 Jul 2004 11:59:35 +0000 (GMT) Received: from mx.x123.info (165.Red-80-37-224.pooles.rima-tde.net [80.37.224.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A1FA43D49 for ; Mon, 19 Jul 2004 11:59:34 +0000 (GMT) (envelope-from esn@x123.info) Received: by mx.x123.info (Postfix, from userid 1000) id 5634717125; Mon, 19 Jul 2004 13:59:26 +0200 (CEST) Message-Id: <20040719115926.5634717125@mx.x123.info> Date: Mon, 19 Jul 2004 13:59:26 +0200 (CEST) From: "Sebastian Yepes F.ESN" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69278: [Port Upgrade]:: www/drupal 4.4.1 -> 4.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Sebastian Yepes F.ESN" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 12:00:44 -0000 >Number: 69278 >Category: ports >Synopsis: [Port Upgrade]:: www/drupal 4.4.1 -> 4.4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 12:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sebastian Yepes F. [ESN] >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD agosto 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Mon May 17 15:02:51 CEST 2004 esn@agosto:/usr/obj/usr/src/sys/MYK_SRV i386 >Description: Just a regular upgrade... Have fun... >How-To-Repeat: >Fix: diff -ur drupal.old/Makefile drupal/Makefile --- drupal.old/Makefile Mon Jul 19 13:47:28 2004 +++ drupal/Makefile Mon Jul 19 13:47:40 2004 @@ -6,7 +6,7 @@ # PORTNAME= drupal -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 CATEGORIES= www MASTER_SITES= http://drupal.org/drupal/ DISTNAME= ${PORTNAME}-${PORTVERSION} diff -ur drupal.old/distinfo drupal/distinfo --- drupal.old/distinfo Mon Jul 19 13:47:28 2004 +++ drupal/distinfo Mon Jul 19 13:48:08 2004 @@ -1,2 +1,2 @@ -MD5 (drupal-4.4.1.tgz) = 97669cb3f61e7439926761e6a7581027 -SIZE (drupal-4.4.1.tgz) = 440382 +MD5 (drupal-4.4.2.tgz) = 407f808ce7f469c1b1002c55e6941274 +SIZE (drupal-4.4.2.tgz) = 441115 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 12:10: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 A65A516A567 for ; Mon, 19 Jul 2004 12:10:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8399C43D46 for ; Mon, 19 Jul 2004 12:10:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JCAGsS030449 for ; Mon, 19 Jul 2004 12:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JCAGZV030425; Mon, 19 Jul 2004 12:10:16 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 12:10:16 GMT Resent-Message-Id: <200407191210.i6JCAGZV030425@freefall.freebsd.org> 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@dynamical-systems.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC58C16A4CE for ; Mon, 19 Jul 2004 12:02:54 +0000 (GMT) Received: from mout2.freenet.de (mout2.freenet.de [194.97.50.155]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6205243D54 for ; Mon, 19 Jul 2004 12:02:54 +0000 (GMT) (envelope-from frank@dynamical-systems.org) Received: from [194.97.55.147] (helo=mx4.freenet.de) by mout2.freenet.de with asmtp (Exim 4.390) id 1BmWr7-00005D-D7 for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 14:02:53 +0200 Received: from a1b92.a.pppool.de ([213.6.27.146] helo=achilles.tractrix.org) (TLSv1:AES256-SHA:256) (Exim 4.390 #23) id 1BmWr6-000306-GO for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 14:02:53 +0200 Received: from achilles.tractrix.org (localhost.tractrix.org [127.0.0.1]) i6JC2mci000442; Mon, 19 Jul 2004 14:02:48 +0200 (CEST) (envelope-from frank@dynamical-systems.org) Received: (from root@localhost) by achilles.tractrix.org (8.12.10/8.12.10/Submit) id i6JC2fc9000441; Mon, 19 Jul 2004 14:02:41 +0200 (CEST) (envelope-from frank@dynamical-systems.org) Message-Id: <200407191202.i6JC2fc9000441@achilles.tractrix.org> Date: Mon, 19 Jul 2004 14:02:41 +0200 (CEST) From: frank@dynamical-systems.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69279: multimedia/avidemux2-2.0.24 fails to build with libtool13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 12:10:16 -0000 >Number: 69279 >Category: ports >Synopsis: multimedia/avidemux2-2.0.24 fails to build with libtool13 >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 Jul 19 12:10:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Frank W. Josellis >Release: FreeBSD 4.9-RELEASE i386 >Organization: none >Environment: System: FreeBSD achilles.tractrix.org 4.9-RELEASE FreeBSD 4.9-RELEASE #5: Wed Jun 2 17:28:48 CEST 2004 root@achilles.tractrix.org:/usr/src/sys/compile/ACHILLES i386 >Description: Affected portversion is 2.0.24 Failure on invoking libtool13 with --tag option. >How-To-Repeat: cd /usr/ports/multimedia/avidemux2 ; make >Fix: Port builds successfully with libtool15 --- Makefile.orig Fri Jul 16 11:05:02 2004 +++ Makefile Mon Jul 19 09:42:33 2004 @@ -22,7 +22,7 @@ USE_REINPLACE= yes USE_X_PREFIX= yes -USE_LIBTOOL_VER=13 +USE_LIBTOOL_VER=15 USE_GNOME= gnomeprefix gnomehack gtk20 GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 12:30: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 0CC4B16A4CE for ; Mon, 19 Jul 2004 12:30:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E723A43D45 for ; Mon, 19 Jul 2004 12:30:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JCUJQG035411 for ; Mon, 19 Jul 2004 12:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JCUJOq035368; Mon, 19 Jul 2004 12:30:19 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 12:30:19 GMT Resent-Message-Id: <200407191230.i6JCUJOq035368@freefall.freebsd.org> 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 726DA16A4CE for ; Mon, 19 Jul 2004 12:26:36 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id A743A43D2F for ; Mon, 19 Jul 2004 12:26:31 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 587741584F; Mon, 19 Jul 2004 20:28:02 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 09466-03; Mon, 19 Jul 2004 20:28:01 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id CFCC41584E; Mon, 19 Jul 2004 20:28:01 +0800 (CST) Message-Id: <20040719122801.CFCC41584E@mail.dragon2.net> Date: Mon, 19 Jul 2004 20:28:01 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net Subject: ports/69280: [MAINTAINER] mail/Mail-GnuPG: update to 0.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 12:30:20 -0000 >Number: 69280 >Category: ports >Synopsis: [MAINTAINER] mail/Mail-GnuPG: update to 0.08 >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 Jul 19 12:30:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.08 - modify BUILD_DEPENDS - from Changes: really tiny release for Paul's issue - https://rt.cpan.org/Ticket/Display.html?id=6968 IO::Handle::sync not implemented on all systems, can cause Mail::GnuPG to fail - cleanup some test warnings Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Mail-GnuPG-0.08.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/p5-Mail-GnuPG/Makefile /home/clsung/p5-Mail-GnuPG/Makefile --- /usr/ports/mail/p5-Mail-GnuPG/Makefile Thu Feb 5 11:41:42 2004 +++ /home/clsung/p5-Mail-GnuPG/Makefile Mon Jul 19 20:26:00 2004 @@ -6,8 +6,8 @@ # PORTNAME= Mail-GnuPG -PORTVERSION= 0.07 -PORTREVISION= 1 +PORTVERSION= 0.08 +PORTREVISION= 0 CATEGORIES= mail security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Mail @@ -17,8 +17,10 @@ COMMENT= Perl5 interface to process and/or create PGP email BUILD_DEPENDS= ${SITE_PERL}/GnuPG/Interface.pm:${PORTSDIR}/security/p5-GnuPG-Interface \ + ${SITE_PERL}/MIME/Entity.pm:${PORTSDIR}/mail/p5-MIME-Tools \ ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp \ - ${SITE_PERL}/MIME/Entity.pm:${PORTSDIR}/mail/p5-MIME-Tools + ${SITE_PERL}/Mail/Address.pm:${PORTSDIR}/mail/p5-Mail-Tools \ + ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes diff -ruN --exclude=CVS /usr/ports/mail/p5-Mail-GnuPG/distinfo /home/clsung/p5-Mail-GnuPG/distinfo --- /usr/ports/mail/p5-Mail-GnuPG/distinfo Thu Apr 1 16:40:09 2004 +++ /home/clsung/p5-Mail-GnuPG/distinfo Mon Jul 19 20:21:31 2004 @@ -1,2 +1,2 @@ -MD5 (Mail-GnuPG-0.07.tar.gz) = 264e98a31ab0428fdbaf72996652a2e9 -SIZE (Mail-GnuPG-0.07.tar.gz) = 11103 +MD5 (Mail-GnuPG-0.08.tar.gz) = b120c2d3e0501cb3a3e43ab9e6c1625a +SIZE (Mail-GnuPG-0.08.tar.gz) = 11535 --- p5-Mail-GnuPG-0.08.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 12: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 101E916A4D0 for ; Mon, 19 Jul 2004 12:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9EF043D64 for ; Mon, 19 Jul 2004 12:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JCURrN035537 for ; Mon, 19 Jul 2004 12:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JCURhu035535; Mon, 19 Jul 2004 12:30:27 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 12:30:27 GMT Resent-Message-Id: <200407191230.i6JCURhu035535@freefall.freebsd.org> 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 E481216A4CE for ; Mon, 19 Jul 2004 12:29:05 +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 5E2CB43D55 for ; Mon, 19 Jul 2004 12:29:05 +0000 (GMT) (envelope-from rushani@FreeBSD.org) Received: (qmail 5291 invoked from network); 19 Jul 2004 12:28:59 -0000 Received: from unknown (HELO localhost) (202.229.152.118) by wasley.bl.mmtr.or.jp with SMTP; 19 Jul 2004 12:28:59 -0000 Message-Id: <20040719.212732.59560038.rushani@FreeBSD.org> Date: Mon, 19 Jul 2004 21:27:32 +0900 (JST) From: Hideyuki KURASHINA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: cy@FreeBSD.org Subject: ports/69282: [PATCH] misc/screen: Fix deinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 12:30:28 -0000 >Number: 69282 >Category: ports >Synopsis: [PATCH] misc/screen: Fix deinstall >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 Jul 19 12:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hideyuki KURASHINA >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD ***.*******.jp 5.2-CURRENT FreeBSD 5.2-CURRENT #1: Sun Jul 4 13:40:24 JST 2004 hideyuki@***.*******.jp:/usr/obj/usr/src/sys/*** i386 >Description: Fix deinstall. In previous PR, I've introduced bugs into ports/misc/screen/pkg-plist... 1) At @unexec, if cmp -s %D/etc/screenrc %%EXAMPLESDIR%%/screenrc does not work because 2nd argument of cmp is not ``%D/%%EXAMPLESDIR%%/screenrc''. 2) At @exec, [ -f %B/screenrc ] || cp %B/%f %B/screenrc makes no sense, because last expanded path-name is ``%%EXAMPLESDIR%%''. This should be ``%D/etc/screenrc''. >How-To-Repeat: # cd /usr/ports/misc/screen # make install # diff /usr/local/etc/screenrc /usr/local/share/examples/screen/screenrc To confirm there are no differences between those files # make deinstall To confirm both files are removed or not. >Fix: Apply following patch (inspired by recent comit by @ume). Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/misc/screen/pkg-plist,v retrieving revision 1.28 diff -u -r1.28 pkg-plist --- pkg-plist 19 Jul 2004 07:21:17 -0000 1.28 +++ pkg-plist 19 Jul 2004 12:02:02 -0000 @@ -16,9 +16,9 @@ %%DATADIR%%/utf8encodings/cc %%DATADIR%%/utf8encodings/cd %%DATADIR%%/utf8encodings/d6 -@unexec if cmp -s %D/etc/screenrc %%EXAMPLESDIR%%/screenrc; then rm -f %D/etc/screenrc; else echo If permanently deleting this package, %%PREFIX%%/etc/screenrc must be removed manually; fi +@unexec if cmp -s %D/etc/screenrc %D/%%EXAMPLESDIR%%/screenrc; then rm -f %D/etc/screenrc; else echo If permanently deleting this package, %%PREFIX%%/etc/screenrc must be removed manually; fi %%EXAMPLESDIR%%/screenrc -@exec [ -f %B/screenrc ] || cp %B/%f %B/screenrc +@exec [ -f %D/etc/screenrc ] || cp %B/%f %D/etc/screenrc @dirrm %%EXAMPLESDIR%% @dirrm %%DATADIR%%/utf8encodings @dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 12:38: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 3671B16A4CE; Mon, 19 Jul 2004 12:38:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1927443D55; Mon, 19 Jul 2004 12:38:11 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JCcAPG039634; Mon, 19 Jul 2004 12:38:10 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JCcArm039630; Mon, 19 Jul 2004 12:38:10 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 12:38:10 GMT From: Volker Stolz Message-Id: <200407191238.i6JCcArm039630@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/68413: New port: security/memdump - forensic memory dumping 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, 19 Jul 2004 12:38:11 -0000 Synopsis: New port: security/memdump - forensic memory dumping tool Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 12:38:01 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=68413 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13:10: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 6190316A4DB for ; Mon, 19 Jul 2004 13:10:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06C8E43D67 for ; Mon, 19 Jul 2004 13:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JDAREk055737 for ; Mon, 19 Jul 2004 13:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDARqC055736; Mon, 19 Jul 2004 13:10:27 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 13:10:27 GMT Resent-Message-Id: <200407191310.i6JDARqC055736@freefall.freebsd.org> 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 6383B16A4CE for ; Mon, 19 Jul 2004 13:06:29 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC23543D31 for ; Mon, 19 Jul 2004 13:06:28 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 067941584E; Mon, 19 Jul 2004 21:08:00 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 17448-01; Mon, 19 Jul 2004 21:07:59 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 403281584D; Mon, 19 Jul 2004 21:07:59 +0800 (CST) Message-Id: <20040719130759.403281584D@mail.dragon2.net> Date: Mon, 19 Jul 2004 21:07:59 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@tiger2.net Subject: ports/69284: [MAINTAINER] net/Net-Amazon: update to 0.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 13:10:37 -0000 >Number: 69284 >Category: ports >Synopsis: [MAINTAINER] net/Net-Amazon: update to 0.26 >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 Jul 19 13:10:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.26 - rearrange pkg-plist - from Changes few changelogs since 0.21 - http://search.cpan.org/src/MSCHILLI/Net-Amazon-0.26/Changes Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Net-Amazon-0.26.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-Net-Amazon/Makefile /home/clsung/p5-Net-Amazon/Makefile --- /usr/ports/net/p5-Net-Amazon/Makefile Tue May 18 20:59:30 2004 +++ /home/clsung/p5-Net-Amazon/Makefile Mon Jul 19 20:56:55 2004 @@ -6,7 +6,7 @@ # PORTNAME= Net-Amazon -PORTVERSION= 0.21 +PORTVERSION= 0.26 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net diff -ruN --exclude=CVS /usr/ports/net/p5-Net-Amazon/distinfo /home/clsung/p5-Net-Amazon/distinfo --- /usr/ports/net/p5-Net-Amazon/distinfo Tue May 18 20:59:30 2004 +++ /home/clsung/p5-Net-Amazon/distinfo Mon Jul 19 20:55:40 2004 @@ -1,2 +1,2 @@ -MD5 (Net-Amazon-0.21.tar.gz) = 093c9408bfc207854f0cd39fc0d46256 -SIZE (Net-Amazon-0.21.tar.gz) = 76489 +MD5 (Net-Amazon-0.26.tar.gz) = b8445e50a78542f1b63b686210e0f6df +SIZE (Net-Amazon-0.26.tar.gz) = 79024 diff -ruN --exclude=CVS /usr/ports/net/p5-Net-Amazon/pkg-plist /home/clsung/p5-Net-Amazon/pkg-plist --- /usr/ports/net/p5-Net-Amazon/pkg-plist Tue May 18 20:59:30 2004 +++ /home/clsung/p5-Net-Amazon/pkg-plist Mon Jul 19 21:02:33 2004 @@ -1,35 +1,35 @@ %%SITE_PERL%%/Net/Amazon.pm +%%SITE_PERL%%/Net/Amazon/Attribute/Review.pm +%%SITE_PERL%%/Net/Amazon/Attribute/ReviewSet.pm %%SITE_PERL%%/Net/Amazon/Property.pm +%%SITE_PERL%%/Net/Amazon/Property/Book.pm +%%SITE_PERL%%/Net/Amazon/Property/DVD.pm +%%SITE_PERL%%/Net/Amazon/Property/Music.pm %%SITE_PERL%%/Net/Amazon/Request.pm -%%SITE_PERL%%/Net/Amazon/Response.pm -%%SITE_PERL%%/Net/Amazon/Response/Blended.pm -%%SITE_PERL%%/Net/Amazon/Response/BrowseNode.pm -%%SITE_PERL%%/Net/Amazon/Response/Artist.pm -%%SITE_PERL%%/Net/Amazon/Response/Power.pm -%%SITE_PERL%%/Net/Amazon/Response/UPC.pm -%%SITE_PERL%%/Net/Amazon/Response/Keyword.pm -%%SITE_PERL%%/Net/Amazon/Response/ASIN.pm -%%SITE_PERL%%/Net/Amazon/Response/Similar.pm -%%SITE_PERL%%/Net/Amazon/Response/Wishlist.pm -%%SITE_PERL%%/Net/Amazon/Response/Manufacturer.pm -%%SITE_PERL%%/Net/Amazon/Response/TextStream.pm %%SITE_PERL%%/Net/Amazon/Request/Artist.pm +%%SITE_PERL%%/Net/Amazon/Request/ASIN.pm %%SITE_PERL%%/Net/Amazon/Request/Blended.pm -%%SITE_PERL%%/Net/Amazon/Request/Keyword.pm -%%SITE_PERL%%/Net/Amazon/Request/Wishlist.pm %%SITE_PERL%%/Net/Amazon/Request/BrowseNode.pm -%%SITE_PERL%%/Net/Amazon/Request/UPC.pm -%%SITE_PERL%%/Net/Amazon/Request/Similar.pm -%%SITE_PERL%%/Net/Amazon/Request/ASIN.pm -%%SITE_PERL%%/Net/Amazon/Request/Power.pm +%%SITE_PERL%%/Net/Amazon/Request/Keyword.pm %%SITE_PERL%%/Net/Amazon/Request/Manufacturer.pm +%%SITE_PERL%%/Net/Amazon/Request/Power.pm +%%SITE_PERL%%/Net/Amazon/Request/Similar.pm %%SITE_PERL%%/Net/Amazon/Request/Sort.pm %%SITE_PERL%%/Net/Amazon/Request/TextStream.pm -%%SITE_PERL%%/Net/Amazon/Attribute/Review.pm -%%SITE_PERL%%/Net/Amazon/Attribute/ReviewSet.pm -%%SITE_PERL%%/Net/Amazon/Property/DVD.pm -%%SITE_PERL%%/Net/Amazon/Property/Music.pm -%%SITE_PERL%%/Net/Amazon/Property/Book.pm +%%SITE_PERL%%/Net/Amazon/Request/UPC.pm +%%SITE_PERL%%/Net/Amazon/Request/Wishlist.pm +%%SITE_PERL%%/Net/Amazon/Response.pm +%%SITE_PERL%%/Net/Amazon/Response/Artist.pm +%%SITE_PERL%%/Net/Amazon/Response/ASIN.pm +%%SITE_PERL%%/Net/Amazon/Response/Blended.pm +%%SITE_PERL%%/Net/Amazon/Response/BrowseNode.pm +%%SITE_PERL%%/Net/Amazon/Response/Keyword.pm +%%SITE_PERL%%/Net/Amazon/Response/Manufacturer.pm +%%SITE_PERL%%/Net/Amazon/Response/Power.pm +%%SITE_PERL%%/Net/Amazon/Response/Similar.pm +%%SITE_PERL%%/Net/Amazon/Response/TextStream.pm +%%SITE_PERL%%/Net/Amazon/Response/UPC.pm +%%SITE_PERL%%/Net/Amazon/Response/Wishlist.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Amazon/.packlist @dirrm %%SITE_PERL%%/Net/Amazon/Attribute @dirrm %%SITE_PERL%%/Net/Amazon/Property --- p5-Net-Amazon-0.26.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13: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 2D7D716A4CE for ; Mon, 19 Jul 2004 13:20:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED9C343D5E for ; Mon, 19 Jul 2004 13:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JDKONm057365 for ; Mon, 19 Jul 2004 13:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDKO2o057364; Mon, 19 Jul 2004 13:20:24 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 13:20:24 GMT Resent-Message-Id: <200407191320.i6JDKO2o057364@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Langille Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FB1516A4CE for ; Mon, 19 Jul 2004 13:15:28 +0000 (GMT) Received: from xeon.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5931F43D45 for ; Mon, 19 Jul 2004 13:15:28 +0000 (GMT) (envelope-from dan@xeon.unixathome.org) Received: by xeon.unixathome.org (Postfix, from userid 1000) id BD5533E54; Mon, 19 Jul 2004 09:15:27 -0400 (EDT) Message-Id: <20040719131527.BD5533E54@xeon.unixathome.org> Date: Mon, 19 Jul 2004 09:15:27 -0400 (EDT) From: Dan Langille To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Dan Langille Subject: ports/69285: [PATCH] Do not install fd.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 13:20:25 -0000 >Number: 69285 >Category: ports >Synopsis: [PATCH] Do not install fd.sh >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 Jul 19 13:20:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dan Langille >Release: FreeBSD 4.9-STABLE i386 >Organization: The FreeBSD Diary >Environment: System: FreeBSD xeon.unixathome.org 4.9-STABLE FreeBSD 4.9-STABLE #2: Wed Mar 3 08:16:24 EST 2004 dan@polo.unixathome.org:/usr/obj/usr/src/sys/XEON i386 >Description: The port installs an old script fd.sh, which should no longer be used. >How-To-Repeat: make install see if fd.sh is installed to /usr/local/etc/rc.d/ >Fix: --- bacula.diff begins here --- diff -ruN /home/dan/src/bacula/bacula-port/files/patch-scripts-Makefile.in /usr/ports/sysutils/bacula/files/patch-scripts-Makefile.in --- /home/dan/src/bacula/bacula-port/files/patch-scripts-Makefile.in Mon Jul 19 08:59:04 2004 +++ /usr/ports/sysutils/bacula/files/patch-scripts-Makefile.in Mon May 3 05:44:37 2004 @@ -26,6 +26,7 @@ ! # $(INSTALL_SCRIPT) bconsole $(DESTDIR)$(scriptdir)/bconsole ! # $(INSTALL_SCRIPT) gconsole $(DESTDIR)$(scriptdir)/gconsole ! $(INSTALL_SCRIPT) bacula $(DESTDIR)$(sysconfdir)/rc.d/bacula.sh.sample +! $(INSTALL_SCRIPT) fd $(DESTDIR)$(sysconfdir)/rc.d/fd.sh.sample ! # $(INSTALL_SCRIPT) mtx-changer $(DESTDIR)$(scriptdir)/mtx-changer ! # $(INSTALL_DATA) btraceback.gdb $(DESTDIR)$(scriptdir)/btraceback.gdb ! # $(INSTALL_SCRIPT) btraceback $(DESTDIR)$(sbindir)/btraceback diff -ruN /home/dan/src/bacula/bacula-port/pkg-plist /usr/ports/sysutils/bacula/pkg-plist --- /home/dan/src/bacula/bacula-port/pkg-plist Mon Jul 19 08:59:35 2004 +++ /usr/ports/sysutils/bacula/pkg-plist Sun Jul 4 05:44:43 2004 @@ -3,6 +3,7 @@ %%SERVER%%sbin/chio-bacula %%SERVER%%sbin/bacula-dir sbin/bacula-fd +etc/rc.d/fd.sh.sample %%SERVER%%sbin/bacula-sd %%SERVER%%sbin/bextract %%SERVER%%sbin/bls --- bacula.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13: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 93BD416A4CE for ; Mon, 19 Jul 2004 13:20:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7127343D5A for ; Mon, 19 Jul 2004 13:20:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JDKPmp057378 for ; Mon, 19 Jul 2004 13:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDKPkG057377; Mon, 19 Jul 2004 13:20:25 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 13:20:25 GMT Resent-Message-Id: <200407191320.i6JDKPkG057377@freefall.freebsd.org> 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 4718416A4CF for ; Mon, 19 Jul 2004 13:18:22 +0000 (GMT) Received: from mx5.kent.ac.uk (mx5.ukc.ac.uk [129.12.21.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4508243D48 for ; Mon, 19 Jul 2004 13:18:21 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by mx5.kent.ac.uk with esmtp (Exim 4.24) id 1BmY22-0005qx-JB; Mon, 19 Jul 2004 14:18:14 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1BmY22-0001G1-H6; Mon, 19 Jul 2004 14:18:14 +0100 Message-Id: Date: Mon, 19 Jul 2004 14:18:14 +0100 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/69286: [MAINTAINER] security/f-prot-sig: update to 20040719 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 13:20:25 -0000 >Number: 69286 >Category: ports >Synopsis: [MAINTAINER] security/f-prot-sig: update to 20040719 >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 Jul 19 13:20:24 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 20040719 - W32/Bagle.AF@mm - W32/Bagle.AG@mm - W32/Bagle.AH@mm Two of those are "medium risk". Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- f-prot-sig-20040719.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/security/f-prot-sig/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- Makefile 5 Jul 2004 17:39:06 -0000 1.16 +++ Makefile 19 Jul 2004 13:15:49 -0000 @@ -6,7 +6,7 @@ # PORTNAME= f-prot-sig -PORTVERSION= 20040705 +PORTVERSION= 20040719 CATEGORIES= security MASTER_SITES= ftp://ftp.f-prot.com/pub/ DISTFILES= fp-def.zip macrdef2.zip Index: distinfo =================================================================== RCS file: /u1/freebsd/cvs/ports/security/f-prot-sig/distinfo,v retrieving revision 1.12 diff -u -r1.12 distinfo --- distinfo 5 Jul 2004 17:39:06 -0000 1.12 +++ distinfo 19 Jul 2004 13:16:03 -0000 @@ -1,2 +1,2 @@ -MD5 (f-prot-sig-20040705/fp-def.zip) = IGNORE -MD5 (f-prot-sig-20040705/macrdef2.zip) = IGNORE +MD5 (f-prot-sig-20040719/fp-def.zip) = IGNORE +MD5 (f-prot-sig-20040719/macrdef2.zip) = IGNORE --- f-prot-sig-20040719.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13:36: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 5A37516A4CE; Mon, 19 Jul 2004 13:36:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B64043D55; Mon, 19 Jul 2004 13:36:36 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6JDaaiV059006; Mon, 19 Jul 2004 13:36:36 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDaa14059002; Mon, 19 Jul 2004 13:36:36 GMT (envelope-from ijliao) Date: Mon, 19 Jul 2004 13:36:36 GMT From: Ying-Chieh Liao Message-Id: <200407191336.i6JDaa14059002@freefall.freebsd.org> To: rafan@infor.org, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69262: Update Port: devel/svk to 0.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 13:36:36 -0000 Synopsis: Update Port: devel/svk to 0.17 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Mon Jul 19 13:36:24 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69262 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13:36: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 39D6316A4CF; Mon, 19 Jul 2004 13:36:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B4EE43D2D; Mon, 19 Jul 2004 13:36:48 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6JDalZ8059061; Mon, 19 Jul 2004 13:36:47 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDal9Z059057; Mon, 19 Jul 2004 13:36:47 GMT (envelope-from ijliao) Date: Mon, 19 Jul 2004 13:36:47 GMT From: Ying-Chieh Liao Message-Id: <200407191336.i6JDal9Z059057@freefall.freebsd.org> To: rafan@infor.org, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69263: Update Port: devel/p5-SVN-Mirror 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, 19 Jul 2004 13:36:48 -0000 Synopsis: Update Port: devel/p5-SVN-Mirror to 0.38 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Mon Jul 19 13:36:41 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69263 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13:40: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 7E52516A4CE for ; Mon, 19 Jul 2004 13:40:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64EA243D1F for ; Mon, 19 Jul 2004 13:40:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JDeEPf059172 for ; Mon, 19 Jul 2004 13:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDeEwR059171; Mon, 19 Jul 2004 13:40:14 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 13:40:14 GMT Resent-Message-Id: <200407191340.i6JDeEwR059171@freefall.freebsd.org> 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 localhost (hub.freebsd.org [216.136.204.18]) by hub.freebsd.org (Postfix) with ESMTP id D93A716A4CE; Mon, 19 Jul 2004 13:33:31 +0000 (GMT) Message-Id: <20040719.223232.71185611.rushani@FreeBSD.org> Date: Mon, 19 Jul 2004 22:32:32 +0900 (JST) From: Hideyuki KURASHINA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: mharo@FreeBSD.org Subject: ports/69288: [PATCH] security/sudo: Fix deinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 13:40:14 -0000 >Number: 69288 >Category: ports >Synopsis: [PATCH] security/sudo: Fix deinstall >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 Jul 19 13:40:13 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hideyuki KURASHINA >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD ***.*******.jp 5.2-CURRENT FreeBSD 5.2-CURRENT #1: Sun Jul 4 13:40:24 JST 2004 hideyuki@***.*******.jp:/usr/obj/usr/src/sys/*** i386 >Description: Fix deinstall. In previous PR, I've introduced a bug into ports/security/sudo/pkg-plist... At @unexec, if cmp -s %D/etc/sudoers %%EXAMPLESDIR%%/sudoers does not work because 2nd argument of cmp is not ``%D/%%EXAMPLESDIR%%/sudoers''. On the other hand, ${WRKSRC}/sample.sudoers is different from ${PREFIX}/etc/sudoers which is copied from ${${WRKSRC}/sudoers. I think it is good to prepare both default config file and sample file in EXAMPLESDIR. One more thing to fix is installing via pkg_add. The ``+INSTALL'' file in package which derived from ports/security/sudo/pkg-install does not accept environmental variable EXAMPLESDIR, so use PKG_PREFIX-based approach. >How-To-Repeat: # cd /usr/ports/security/sudo # if [ -e /usr/local/etc/sudoers ]; then \ ? mv /usr/local/etc/sudoers /usr/local/etc/sudoers.bak; \ ? fi # make install # diff /usr/local/etc/sudoers /usr/local/share/examples/sudo/sudoers To confirm there is no difference between those files # make deinstall To confirm both files are removed or not. >Fix: Apply following patch (pkg-plist part was inspired by recent comit by @ume). Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/sudo/Makefile,v retrieving revision 1.62 diff -u -r1.62 Makefile --- Makefile 19 Jul 2004 08:15:33 -0000 1.62 +++ Makefile 19 Jul 2004 12:53:34 -0000 @@ -56,6 +56,7 @@ post-install: @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/sample.sudoers ${EXAMPLESDIR}/sudoers + ${INSTALL_DATA} ${WRKSRC}/sudoers ${EXAMPLESDIR}/sudoers + ${INSTALL_DATA} ${WRKSRC}/sample.sudoers ${EXAMPLESDIR}/sudoers.sample .include Index: pkg-install =================================================================== RCS file: /home/ncvs/ports/security/sudo/pkg-install,v retrieving revision 1.3 diff -u -r1.3 pkg-install --- pkg-install 19 Jul 2004 08:15:33 -0000 1.3 +++ pkg-install 19 Jul 2004 13:21:57 -0000 @@ -5,6 +5,6 @@ if [ -e ${PKG_PREFIX}/etc/sudoers ]; then echo "Will not overwrite existing ${PKG_PREFIX}/etc/sudoers file." else - cp -p ${EXAMPLESDIR}/sudoers ${PKG_PREFIX}/etc/sudoers + cp -p ${PKG_PREFIX}/share/examples/sudo/sudoers ${PKG_PREFIX}/etc/sudoers chmod 440 ${PKG_PREFIX}/etc/sudoers fi Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/sudo/pkg-plist,v retrieving revision 1.8 diff -u -r1.8 pkg-plist --- pkg-plist 19 Jul 2004 08:15:33 -0000 1.8 +++ pkg-plist 19 Jul 2004 12:51:14 -0000 @@ -1,5 +1,6 @@ -@unexec if cmp -s %D/etc/sudoers %%EXAMPLESDIR%%/sudoers; then rm -f %D/etc/sudoers; fi +@unexec if cmp -s %D/etc/sudoers %D/%%EXAMPLESDIR%%/sudoers; then rm -f %D/etc/sudoers; fi bin/sudo sbin/visudo %%EXAMPLESDIR%%/sudoers +%%EXAMPLESDIR%%/sudoers.sample @dirrm %%EXAMPLESDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 13:51: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 713CD16A4CE; Mon, 19 Jul 2004 13:51:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6972543D54; Mon, 19 Jul 2004 13:51:28 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JDpS1e059887; Mon, 19 Jul 2004 13:51:28 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JDpSBi059878; Mon, 19 Jul 2004 13:51:28 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 13:51:28 GMT From: Volker Stolz Message-Id: <200407191351.i6JDpSBi059878@freefall.freebsd.org> To: sg-sendpr@waset.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/68945: New Port: print/latex-msc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 13:51:28 -0000 Synopsis: New Port: print/latex-msc State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 13:47:39 GMT 2004 State-Changed-Why: I'd like to commit this with the following changes: - reduce pkg-plist to the @exec/@unexec lines since all the contents can be easily put into PLIST_DIRS/FILES in the Makefile. - add the URL to pkg-descr nonetheless since there is valuable stuff - remove the SIZE-data from distinfo since almost all sites didn't provide size-data, leading to many useless fetch-attempts - fix distinfo for README, my mirrors carry a different file: latex-msc@menelaos [15:50:30]> md5 README MD5 (README) = 728dd389ff2e0cdf5cf8c7dc8a45a32e latex-msc@menelaos [15:50:34]> ls -l README -rw-r--r-- 1 stolz wheel 1211 Mar 15 10:29 README Cheers, Volker Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 13:47:39 GMT 2004 Responsible-Changed-Why: I'll handle this one http://www.freebsd.org/cgi/query-pr.cgi?pr=68945 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 6187C16A4CE for ; Mon, 19 Jul 2004 14:10:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4474A43D58 for ; Mon, 19 Jul 2004 14:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAJnn064122 for ; Mon, 19 Jul 2004 14:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAJm7064121; Mon, 19 Jul 2004 14:10:19 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:19 GMT Resent-Message-Id: <200407191410.i6JEAJm7064121@freefall.freebsd.org> 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 0CBD816A4CE for ; Mon, 19 Jul 2004 14:00:45 +0000 (GMT) Received: from hfep06.dion.ne.jp (hfep06.dion.ne.jp [203.181.105.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CEF943D2D for ; Mon, 19 Jul 2004 14:00:43 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep06.dion.ne.jp with SMTP id <20040719140038884.IUDX@hfep06.dion.ne.jp> for ; Mon, 19 Jul 2004 23:00:38 +0900 Message-Id: <20040719230007.116ee052.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:07 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69289: Update port: astro/tkseti to 3.10.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: Mon, 19 Jul 2004 14:10:19 -0000 >Number: 69289 >Category: ports >Synopsis: Update port: astro/tkseti to 3.10.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 14:10:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 3.10.2 Remove file: pkg-plist >How-To-Repeat: >Fix: begin 644 astro_tkseti.diff.gz M'XL("(7,^T`"`V%S=')O7W1KK6A4(T=,] MW?/K5G?/&.9T"F+@]B`;>&YVY;B^E]4\WW6R_L)COIGM:@LV-2T&3U(%411? M%4UT'1L^L@E`#I1\-5>HYDN0DV552*?33\^;&`8V_!%8H)1!5JH%M:H60Y%: M#<1BI@)INM5J`KP50("+_F#4JW=;9XEP(D$DRK?68-CN]\X2>4DN">DCDB)+ M.0$:]5'K4W_0;@W/$MP4\!=E51"[]>&H-1@/VR,:F?O^JIK-KN9HF[EDKE1Q M;,NTF31U=Z8+Z2=%;,>U@IGDN+/L3WUNKCR?N5F7>4[@ZLS;"^,:NO5V;X3? MUN`LP=&L?709.Q\V21@-[7>[K=[H+#%:B!/-8P:8-LXUU70&O@/#UJA=^^PL M&4=(*69R"J3II\11&GSMC9NMBU:OB::M36]>EM1J:D.0#)OMP39[JRBB[SC6 MPO3)JK(*5P(D$JE-I]^H=\[KP]8VZTU,.TOV:OX<-1W(AVY\&,05I;\.6^-! MJ]V[Z-0;Z)H[Y@G0ZX_/O[8[S?"O2"SG?[8O[(P"(2VD+]O#SV='2R&."`9B63F>+ZXT M7Y]7A72BEMKLS1XWNLTMB`S>>?I\U8:"BGXJ*^?.JVAL/ZI]:6(D>I+Z8VG=,B=$\@*[F4I[&U*Z6J_CP=&K?BQRF]GREJN8? M4KN2R6':PALF+;';+,#[4%RD%"[YFDOORRF<@5PN**Q@*!-M(N8,N:),%%:NZ%/# M*$Y+$U55Y))1GBJ*4A321SJ.Y)62DBNJO^`)*GE>EN%6R2M M(6=BJ/F<*:]`#F`NIME&-)#,WH$@JY\W*^:Q2@5RNJLC8 MC,"ND$/K=@4I%!0`9?TY`YO=^D"=`6"-QTCP/0@\TYX!%1LJJ2*[97KX+YF2 MD_@Z*^EDJI;<(D#[(:Q*CT;A[5]YT7SPS?0"S8*1;L&-(B&*%Z[S;Z;[-!BY MHJ)F%&HDPE\"*;1R5PJ/S40HTJ];RJ'^U.F?USOPK3YHU\^Q;(<.42KY2&,^ MT@C\&BVHPP$=HV;"@$-++="4HZY;)K-],#W0+)=IQAVX@6TC[!EP7#!]+L9E MHMEB0EC,$`3KCCBUP'>6FF_JG#!%RIT32#":X\SX8;Q-^87(&"+%<,HPQ@9T-8QW\>-$T0XIXOENDEH)\( M]I!:"JFE`VB^-%OO/%A,EU6@>[0N9\7LKX,.I`+7BABM._NV&C["+8;ODOH: M(L:9N,EYU$":RO2S5X3A<7L'G[%<182S_;6WO%!4:;6%8B5ZJ3BQ4`R)R@X# MNM!YF^\Z)1W8\#ID:TOF3"F^`E^;6&S[B'*]A4TD31'*OK+_Y02`[<4NYB#UR"2>62UVPRSXSE?Z0+B6:(JO9-)W5N+MT0H5/XC@V5P6ZCY)O]$RQ=`Y*T/S&9B&Q7S-6W@1^1*G==;@S?&66IO& MC/E1G)Y&',=%)AS%VGO*AY/12=!ZO9;T`.-1FTBZEOVYC*)ZUX1'G>W<7UJ/ MLO,S4[YT'M7X7.]]:@UQ*N#-W@&R/JZ4FOYPND/(LGQ4\F_]1W)KQUT\B!W+ MT>@XL$T_E.585PHAUI5",19G:D7-A62U%(^TO:(QHNT[XX5I6:&N#3V"^*7= MP8YF91K;9R16&H;A:4QB..I?O"BA.[9_H*/1[XTBB2/'1A(3%UL[KF3#MR8Z M]O*B#DF;^9ZNK1B(+ELZ&$I1"W:%UWOJL#(V6XMK'D]$.X7[>^#=]%Z2N*B+ M?DWOTOF!MFJ<'Q>6_A4S(RMWHCLCWY&5.,VQA:?O[N^Y<7%=R>=0I)C!5:"V MS0LL;LB#+*_OB>GTPV">[L+3Y!=WPGNN_V(3_"!S=$)1K!9*L?UO/D/[7[I3 MW`I`9];@!5A8:%=!61#FF@=KUT1T-5UG'L_J-/B0T6&?^M_0H>?EY645?OVE M%M)Q@2>/F'<'R[\&],HR/1^>)K\*-.=*7.*VJ*_[N$E&K'#77U7YWCG_--"A M#)T>T3D`*"!7JK*,'U`J)3DZ:$"Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 B5D1D16A4CE for ; Mon, 19 Jul 2004 14:10:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9825F43D46 for ; Mon, 19 Jul 2004 14:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAJiB064136 for ; Mon, 19 Jul 2004 14:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAJTg064135; Mon, 19 Jul 2004 14:10:19 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:19 GMT Resent-Message-Id: <200407191410.i6JEAJTg064135@freefall.freebsd.org> 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 DD3B116A4CE for ; Mon, 19 Jul 2004 14:00:54 +0000 (GMT) Received: from hfep07.dion.ne.jp (hfep07.dion.ne.jp [203.181.105.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93D6043D54 for ; Mon, 19 Jul 2004 14:00:52 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep07.dion.ne.jp with SMTP id <20040719140048422.ZVIT@hfep07.dion.ne.jp> for ; Mon, 19 Jul 2004 23:00:48 +0900 Message-Id: <20040719230009.705c8bc5.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:09 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69290: Update port: audio/libsamplerate to 0.1.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, 19 Jul 2004 14:10:19 -0000 >Number: 69290 >Category: ports >Synopsis: Update port: audio/libsamplerate to 0.1.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: Mon Jul 19 14:10:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.1.1 Remove file: files/patch-configure >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/libsamplerate/Makefile audio/libsamplerate/Makefile --- /usr/ports/audio/libsamplerate/Makefile Sat Jul 10 08:36:22 2004 +++ audio/libsamplerate/Makefile Mon Jul 19 09:46:36 2004 @@ -6,8 +6,7 @@ # PORTNAME= libsamplerate -PORTVERSION= 0.0.15 -PORTREVISION= 1 +PORTVERSION= 0.1.1 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/SRC/ @@ -15,9 +14,9 @@ COMMENT= Secret Rabbit Code: a Sample Rate Converter for audio LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile \ - fftw.2:${PORTSDIR}/math/fftw + fftw3.3:${PORTSDIR}/math/fftw3 -USE_GNOME= gnomehack gnometarget pkgconfig +USE_GNOME= gnomehack gnometarget lthack pkgconfig USE_INC_LIBTOOL_VER= 13 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" diff -urN /usr/ports/audio/libsamplerate/distinfo audio/libsamplerate/distinfo --- /usr/ports/audio/libsamplerate/distinfo Wed Jan 28 18:44:54 2004 +++ audio/libsamplerate/distinfo Mon Jul 19 01:15:17 2004 @@ -1,2 +1,2 @@ -MD5 (libsamplerate-0.0.15.tar.gz) = 6b15cc39d1275f1118de4d57f89544eb -SIZE (libsamplerate-0.0.15.tar.gz) = 585250 +MD5 (libsamplerate-0.1.1.tar.gz) = c50e68b6cc078b5aeb68e7be6faaf641 +SIZE (libsamplerate-0.1.1.tar.gz) = 699874 diff -urN /usr/ports/audio/libsamplerate/files/patch-configure audio/libsamplerate/files/patch-configure --- /usr/ports/audio/libsamplerate/files/patch-configure Mon Feb 3 21:40:41 2003 +++ audio/libsamplerate/files/patch-configure Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ - -$FreeBSD: ports/audio/libsamplerate/files/patch-configure,v 1.1 2003/02/03 12:40:41 sobomax Exp $ - ---- configure 2003/02/03 12:25:06 1.1 -+++ configure 2003/02/03 12:25:19 -@@ -7849,6 +7849,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff -urN /usr/ports/audio/libsamplerate/pkg-plist audio/libsamplerate/pkg-plist --- /usr/ports/audio/libsamplerate/pkg-plist Fri Apr 16 16:34:06 2004 +++ audio/libsamplerate/pkg-plist Mon Jul 19 01:22:43 2004 @@ -2,14 +2,11 @@ include/samplerate.h lib/libsamplerate.a lib/libsamplerate.so -lib/libsamplerate.so.0 +lib/libsamplerate.so.1 libdata/pkgconfig/samplerate.pc %%PORTDOCS%%%%DOCSDIR%%/SRC.css %%PORTDOCS%%%%DOCSDIR%%/SRC.png %%PORTDOCS%%%%DOCSDIR%%/api.html -%%PORTDOCS%%%%DOCSDIR%%/api_full.html -%%PORTDOCS%%%%DOCSDIR%%/api_misc.html -%%PORTDOCS%%%%DOCSDIR%%/api_simple.html %%PORTDOCS%%%%DOCSDIR%%/download.html %%PORTDOCS%%%%DOCSDIR%%/faq.html %%PORTDOCS%%%%DOCSDIR%%/history.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:10: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 12BB716A4CE for ; Mon, 19 Jul 2004 14:10:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA49543D46 for ; Mon, 19 Jul 2004 14:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAJCU064149 for ; Mon, 19 Jul 2004 14:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAJer064148; Mon, 19 Jul 2004 14:10:19 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:19 GMT Resent-Message-Id: <200407191410.i6JEAJer064148@freefall.freebsd.org> 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 0DFA216A4CE for ; Mon, 19 Jul 2004 14:01:06 +0000 (GMT) Received: from hfep07.dion.ne.jp (hfep07.dion.ne.jp [203.181.105.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91B0D43D4C for ; Mon, 19 Jul 2004 14:01:04 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep07.dion.ne.jp with SMTP id <20040719140058105.ZVKI@hfep07.dion.ne.jp> for ; Mon, 19 Jul 2004 23:00:58 +0900 Message-Id: <20040719230011.3ba62263.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:11 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69291: Update port: audio/swhplugins to 0.4.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: Mon, 19 Jul 2004 14:10:20 -0000 >Number: 69291 >Category: ports >Synopsis: Update port: audio/swhplugins to 0.4.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: Mon Jul 19 14:10:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.4.7 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/swhplugins/Makefile audio/swhplugins/Makefile --- /usr/ports/audio/swhplugins/Makefile Wed Jul 14 22:49:50 2004 +++ audio/swhplugins/Makefile Sun Jul 18 21:40:36 2004 @@ -5,7 +5,7 @@ # $FreeBSD: ports/audio/swhplugins/Makefile,v 1.18 2004/07/14 12:19:07 krion Exp $ PORTNAME= swhplugins -PORTVERSION= 0.4.4 +PORTVERSION= 0.4.7 CATEGORIES= audio MASTER_SITES= http://plugin.org.uk/releases/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION} @@ -28,6 +28,8 @@ LDFLAGS="-L${LOCALBASE}/lib" INSTALLS_SHLIB= yes +CFLAGS+= -fPIC -DPIC + .if defined(WITH_3DNOW) CONFIGURE_ARGS+= --enable-3dnow .endif @@ -41,17 +43,12 @@ .endif post-patch: - @${REINPLACE_CMD} -e 's|-O2 .*"|-lm"|g ; \ - s|-O6 .*"|-fPIC -DPIC"|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's| metadata||g ; \ - s|gcc |$$(CC) |g ; \ + @${REINPLACE_CMD} -e \ + 's|$$CFLAGS.*$${USE_SSE}|$$CFLAGS|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|gcc |$$(CC) |g ; \ s| -lc| $$(LDFLAGS)|g ; \ s|-lrt||g' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|||g ; \ s|ls_pcast |ls_pcast32 |g' ${WRKSRC}/ladspa-util.h - -post-install: - @${MKDIR} ${PREFIX}/share/ladspa/rdf - ${INSTALL_DATA} ${WRKSRC}/metadata/*.rdf ${PREFIX}/share/ladspa/rdf .include diff -urN /usr/ports/audio/swhplugins/distinfo audio/swhplugins/distinfo --- /usr/ports/audio/swhplugins/distinfo Wed Jul 14 22:49:50 2004 +++ audio/swhplugins/distinfo Sun Jul 18 20:54:17 2004 @@ -1,2 +1,2 @@ -MD5 (swh-plugins-0.4.4.tar.gz) = f66f10f0ab64dad772576a0b34237187 -SIZE (swh-plugins-0.4.4.tar.gz) = 883723 +MD5 (swh-plugins-0.4.7.tar.gz) = f86fd77a6144f1704eebdff54506025e +SIZE (swh-plugins-0.4.7.tar.gz) = 940102 diff -urN /usr/ports/audio/swhplugins/pkg-plist audio/swhplugins/pkg-plist --- /usr/ports/audio/swhplugins/pkg-plist Wed Jul 14 22:49:50 2004 +++ audio/swhplugins/pkg-plist Sun Jul 18 21:49:28 2004 @@ -26,6 +26,7 @@ lib/ladspa/dj_flanger_1438.so lib/ladspa/dyson_compress_1403.so lib/ladspa/fad_delay_1192.so +lib/ladspa/fast_lookahead_limiter_1913.so lib/ladspa/flanger_1191.so lib/ladspa/fm_osc_1415.so lib/ladspa/foldover_1213.so @@ -47,8 +48,6 @@ lib/ladspa/inv_1429.so lib/ladspa/karaoke_1409.so lib/ladspa/lcr_delay_1436.so -lib/ladspa/lookahead_limiter_1435.so -lib/ladspa/lookahead_limiter_const_1906.so lib/ladspa/lowpass_iir_1891.so lib/ladspa/ls_filter_1908.so lib/ladspa/matrix_ms_st_1421.so @@ -91,7 +90,6 @@ lib/ladspa/vynil_1905.so lib/ladspa/wave_terrain_1412.so lib/ladspa/zm1_1428.so -share/ladspa/rdf/swh-aux.rdf share/ladspa/rdf/swh-plugins.rdf share/ladspa/rdf/swh-scales.rdf %%NLS%%share/locale/en_GB/LC_MESSAGES/swh-plugins.mo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:10: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 6AE8016A4CF for ; Mon, 19 Jul 2004 14:10:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 478C843D46 for ; Mon, 19 Jul 2004 14:10:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAKJT064162 for ; Mon, 19 Jul 2004 14:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAKh9064161; Mon, 19 Jul 2004 14:10:20 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:20 GMT Resent-Message-Id: <200407191410.i6JEAKh9064161@freefall.freebsd.org> 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 6726316A4CE for ; Mon, 19 Jul 2004 14:01:14 +0000 (GMT) Received: from hfep07.dion.ne.jp (hfep07.dion.ne.jp [203.181.105.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9039943D5F for ; Mon, 19 Jul 2004 14:01:13 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep07.dion.ne.jp with SMTP id <20040719140108097.ZVMS@hfep07.dion.ne.jp> for ; Mon, 19 Jul 2004 23:01:08 +0900 Message-Id: <20040719230014.70755280.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:14 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69292: Update port: deskutils/dlume to 0.2.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, 19 Jul 2004 14:10:20 -0000 >Number: 69292 >Category: ports >Synopsis: Update port: deskutils/dlume to 0.2.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: Mon Jul 19 14:10:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.2.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/deskutils/dlume/Makefile deskutils/dlume/Makefile --- /usr/ports/deskutils/dlume/Makefile Mon Apr 5 13:44:25 2004 +++ deskutils/dlume/Makefile Mon Jul 19 00:54:32 2004 @@ -6,8 +6,7 @@ # PORTNAME= dlume -PORTVERSION= 0.2.2a -PORTREVISION= 1 +PORTVERSION= 0.2.4 CATEGORIES= deskutils gnome MASTER_SITES= http://clay.ll.pl/download/ diff -urN /usr/ports/deskutils/dlume/distinfo deskutils/dlume/distinfo --- /usr/ports/deskutils/dlume/distinfo Wed Mar 17 18:20:36 2004 +++ deskutils/dlume/distinfo Mon Jul 19 00:56:41 2004 @@ -1,2 +1,2 @@ -MD5 (dlume-0.2.2a.tar.gz) = 5dbd0a537ba265e5f5444f62940c5b3b -SIZE (dlume-0.2.2a.tar.gz) = 246954 +MD5 (dlume-0.2.4.tar.gz) = 6b2a3ef0eff622a412395187d1c5d178 +SIZE (dlume-0.2.4.tar.gz) = 246864 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:10: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 9911516A4D4 for ; Mon, 19 Jul 2004 14:10:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F9C443D46 for ; Mon, 19 Jul 2004 14:10:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAKDl064175 for ; Mon, 19 Jul 2004 14:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAK80064174; Mon, 19 Jul 2004 14:10:20 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:20 GMT Resent-Message-Id: <200407191410.i6JEAK80064174@freefall.freebsd.org> 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 66F3F16A4CE for ; Mon, 19 Jul 2004 14:01:30 +0000 (GMT) Received: from hfep02.dion.ne.jp (hfep02.dion.ne.jp [203.181.105.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 842ED43D53 for ; Mon, 19 Jul 2004 14:01:28 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep02.dion.ne.jp with SMTP id <20040719140117180.UQZA@hfep02.dion.ne.jp> for ; Mon, 19 Jul 2004 23:01:17 +0900 Message-Id: <20040719230016.70c8661d.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:16 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69293: Update port: emulators/stella to 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: Mon, 19 Jul 2004 14:10:21 -0000 >Number: 69293 >Category: ports >Synopsis: Update port: emulators/stella to 1.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: Mon Jul 19 14:10:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 1.4 Remove file: files/patch-ac files/patch-src::emucore::Props.cxx files/patch-src::emucore::Props.hxx files/patch-src::emucore::PropsSet.cxx files/patch-src::emucore::PropsSet.hxx files/patch-src::emucore::m6502::src::M6502.cxx files/patch-src::emucore::m6502::src::M6502.hxx files/patch-src::ui::common::Settiongs.cxx files/patch-src::ui::common::Settiongs.hxx files/patch-src::ui::sound::SoundOSS.cxx >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/stella/Makefile emulators/stella/Makefile --- /usr/ports/emulators/stella/Makefile Tue Mar 16 19:06:51 2004 +++ emulators/stella/Makefile Mon Jul 19 09:07:02 2004 @@ -6,8 +6,7 @@ # PORTNAME= stella -PORTVERSION= 1.3 -PORTREVISION= 2 +PORTVERSION= 1.4 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -21,22 +20,21 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} BUILD_WRKSRC= ${WRKSRC}/src/build -USE_XLIB= yes +USE_GCC= 3.3 +USE_SDL= sdl USE_GMAKE= yes MAKEFILE= makefile -PLIST_SUB= STELLA_BIN="${STELLA_BIN}" - -.if defined(WITHOUT_SDL) -ALL_TARGET= freebsd-x -STELLA_BIN= stella.x11 -.else -USE_SDL= sdl -ALL_TARGET= freebsd-sdl -STELLA_BIN= stella.sdl -.endif +MAKE_ARGS= CXX="${CXX}" LD="${CXX}" OPTIMIZATIONS="${CXXFLAGS}" \ + LDFLAGS="${CPPFLAGS}" LDLIBS="${LDFLAGS}" +ALL_TARGET= linux-gl + +CPPFLAGS= `${SDL_CONFIG} --cflags` \ + -I${LOCALBASE}/include/libpng -I${X11BASE}/include +LDFLAGS= `${SDL_CONFIG} --libs` \ + -L${LOCALBASE}/lib -L${X11BASE}/lib -lpng -lz do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/build/${STELLA_BIN} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/src/build/stella ${PREFIX}/bin @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/src/emucore/stella.pro ${DATADIR} .if !defined(NOPORTDOCS) diff -urN /usr/ports/emulators/stella/distinfo emulators/stella/distinfo --- /usr/ports/emulators/stella/distinfo Thu Jan 29 20:24:52 2004 +++ emulators/stella/distinfo Sun Jul 18 18:06:44 2004 @@ -1,2 +1,2 @@ -MD5 (stella-1.3-src.tar.gz) = b9318f82a180ff0a404fca78511b2772 -SIZE (stella-1.3-src.tar.gz) = 433201 +MD5 (stella-1.4-src.tar.gz) = dc2496a46eb823aa9994c77a7f62cf62 +SIZE (stella-1.4-src.tar.gz) = 670366 diff -urN /usr/ports/emulators/stella/files/patch-ac emulators/stella/files/patch-ac --- /usr/ports/emulators/stella/files/patch-ac Thu Sep 25 03:37:41 2003 +++ emulators/stella/files/patch-ac Thu Jan 1 09:00:00 1970 @@ -1,84 +0,0 @@ ---- src/build/makefile.orig Tue Feb 18 10:19:44 2003 -+++ src/build/makefile Tue Sep 16 21:48:28 2003 -@@ -23,7 +23,7 @@ - ## Comment a line out to disable that option, remove comment to enable it. - ##============================================================================ - --OPTIMIZATIONS = -O2 -Wall -Wno-unused -+# OPTIMIZATIONS = -O2 -Wall -Wno-unused - ### to get full optimization under gcc/x Intel based OS's.. - # OPTIMIZATIONS = -O3 -mcpu=pentiumpro -march=pentiumpro -Wall -Wno-unused \ - # -funroll-loops -fstrength-reduce -fomit-frame-pointer -ffast-math \ -@@ -61,7 +61,7 @@ - ### to include support for saving snapshots in png format - ### (requires PNG library) - ### Only X11 and SDL ports supported for now --# SNAPSHOT_SUPPORT = 1 -+SNAPSHOT_SUPPORT = 1 - - ### comment this out if your system doesn't - ### have the gettimeofday function -@@ -79,8 +79,8 @@ - ## No configurable options below this line ... - ##============================================================================ - --CXX = g++ --LD = g++ -+CXX ?= g++ -+LD = $(CXX) - - LDFLAGS = - LDLIBS = -@@ -92,8 +92,8 @@ - - OBJS.SDL = - OPTS.SDL = --LIBS.SDL = `sdl-config --libs` --CFLAGS.SDL = `sdl-config --cflags` -+LIBS.SDL = `${SDL_CONFIG} --libs` -+CFLAGS.SDL = `${SDL_CONFIG} --cflags` - - OPTS.DOS = - -@@ -103,7 +103,7 @@ - - INCLUDES = -I. -I$(CORE) -I$(CORE)/m6502/src -I$(CORE)/m6502/src/bspf/src -I$(UI)/common - --CXXFLAGS = $(OPTIMIZATIONS) $(INCLUDES) $(SYS_INCLUDES) -+CXXFLAGS += $(OPTIMIZATIONS) $(INCLUDES) $(SYS_INCLUDES) - - ## set the user-defined options - ifdef BSPF_BOOL -@@ -265,6 +265,32 @@ - LDLIBS+="$(LIBS.X11)" \ - OBJS="mainX11.o" - OBJS+="$(OBJS.X11)" -+ -+freebsd-x: -+ $(MAKE) stella.x11 \ -+ INCLUDES="$(INCLUDES) -I$(UI)/x11 -I$(UI)/sound" \ -+ SYS_INCLUDES="-I$(X11BASE)/include -I$(LOCALBASE)/include/libpng" \ -+ OPTIONS="-DBSPF_UNIX=1" \ -+ OPTIONS+="$(OPTS.X11)" \ -+ LDFLAGS="-L$(X11BASE)/lib -L$(LOCALBASE)/lib" \ -+ LDFLAGS+="$(CFLAGS.X11)" \ -+ LDLIBS="-lX11 -lXext" \ -+ LDLIBS+="$(LIBS.X11)" \ -+ OBJS="mainX11.o" \ -+ OBJS+="$(OBJS.X11)" -+ -+freebsd-sdl: -+ $(MAKE) stella.sdl \ -+ INCLUDES="$(INCLUDES) -I$(UI)/sdl -I$(UI)/sound" \ -+ SYS_INCLUDES="-I$(X11BASE)/include -I$(LOCALBASE)/include/libpng" \ -+ OPTIONS="-DBSPF_UNIX=1" \ -+ OPTIONS+="$(OPTS.SDL)" \ -+ LDFLAGS="-L$(X11BASE)/lib -L$(LOCALBASE)/lib" \ -+ LDFLAGS+="$(CFLAGS.SDL)" \ -+ LDLIBS="-lX11 -lXext" \ -+ LDLIBS+="$(LIBS.SDL)" \ -+ OBJS="mainSDL.o RectList.o" \ -+ OBJS+="$(OBJS.SDL)" - - ############################################################################### - ## List of "core" object files diff -urN /usr/ports/emulators/stella/files/patch-src::emucore::Props.cxx emulators/stella/files/patch-src::emucore::Props.cxx --- /usr/ports/emulators/stella/files/patch-src::emucore::Props.cxx Wed Sep 24 22:55:05 2003 +++ emulators/stella/files/patch-src::emucore::Props.cxx Thu Jan 1 09:00:00 1970 @@ -1,38 +0,0 @@ ---- src/emucore/Props.cxx.orig Tue Feb 18 10:19:44 2003 -+++ src/emucore/Props.cxx Wed Sep 17 00:42:05 2003 -@@ -103,7 +103,7 @@ - } - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --void Properties::load(istream& in) -+void Properties::load(std::istream& in) - { - // Empty my property array - mySize = 0; -@@ -146,7 +146,7 @@ - } - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --void Properties::save(ostream& out) -+void Properties::save(std::ostream& out) - { - // Write out each of the key and value pairs - for(uInt32 i = 0; i < mySize; ++i) -@@ -164,7 +164,7 @@ - } - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --string Properties::readQuotedString(istream& in) -+string Properties::readQuotedString(std::istream& in) - { - char c; - -@@ -205,7 +205,7 @@ - } - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --void Properties::writeQuotedString(ostream& out, const string& s) -+void Properties::writeQuotedString(std::ostream& out, const string& s) - { - out.put('"'); - for(uInt32 i = 0; i < s.length(); ++i) diff -urN /usr/ports/emulators/stella/files/patch-src::emucore::Props.hxx emulators/stella/files/patch-src::emucore::Props.hxx --- /usr/ports/emulators/stella/files/patch-src::emucore::Props.hxx Wed Sep 24 22:55:05 2003 +++ emulators/stella/files/patch-src::emucore::Props.hxx Thu Jan 1 09:00:00 1970 @@ -1,37 +0,0 @@ ---- src/emucore/Props.hxx.orig Tue Feb 18 10:19:44 2003 -+++ src/emucore/Props.hxx Wed Sep 17 00:42:29 2003 -@@ -79,14 +79,14 @@ - - @param in The input stream to use - */ -- void load(istream& in); -+ void load(std::istream& in); - - /** - Save properties to the specified output stream - - @param out The output stream to use - */ -- void save(ostream& out); -+ void save(std::ostream& out); - - /** - Merge the given properties into this properties object -@@ -103,7 +103,7 @@ - @param in The input stream to use - @return The string inside the quotes - */ -- static string readQuotedString(istream& in); -+ static string readQuotedString(std::istream& in); - - /** - Write the specified string to the given output stream as a -@@ -112,7 +112,7 @@ - @param out The output stream to use - @param s The string to output - */ -- static void writeQuotedString(ostream& out, const string& s); -+ static void writeQuotedString(std::ostream& out, const string& s); - - public: - /** diff -urN /usr/ports/emulators/stella/files/patch-src::emucore::PropsSet.cxx emulators/stella/files/patch-src::emucore::PropsSet.cxx --- /usr/ports/emulators/stella/files/patch-src::emucore::PropsSet.cxx Wed Sep 24 22:55:05 2003 +++ emulators/stella/files/patch-src::emucore::PropsSet.cxx Thu Jan 1 09:00:00 1970 @@ -1,19 +0,0 @@ ---- src/emucore/PropsSet.cxx.orig Tue Feb 18 10:19:44 2003 -+++ src/emucore/PropsSet.cxx Wed Sep 17 00:47:25 2003 -@@ -203,14 +203,14 @@ - } - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --void PropertiesSet::save(ostream& out) -+void PropertiesSet::save(std::ostream& out) - { - saveNode(out, myRoot); - } - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --void PropertiesSet::saveNode(ostream& out, TreeNode *node) -+void PropertiesSet::saveNode(std::ostream& out, TreeNode *node) - { - if(node) - { diff -urN /usr/ports/emulators/stella/files/patch-src::emucore::PropsSet.hxx emulators/stella/files/patch-src::emucore::PropsSet.hxx --- /usr/ports/emulators/stella/files/patch-src::emucore::PropsSet.hxx Wed Sep 24 22:55:05 2003 +++ emulators/stella/files/patch-src::emucore::PropsSet.hxx Thu Jan 1 09:00:00 1970 @@ -1,20 +0,0 @@ ---- src/emucore/PropsSet.hxx.orig Tue Feb 18 10:19:44 2003 -+++ src/emucore/PropsSet.hxx Wed Sep 17 00:47:27 2003 -@@ -75,7 +75,7 @@ - - @param out The output stream to use - */ -- void save(ostream& out); -+ void save(std::ostream& out); - - /** - Get the number of properties in the collection. -@@ -134,7 +134,7 @@ - @param out The output stream to use - @param node The current subroot of the tree - */ -- void saveNode(ostream& out, TreeNode *node); -+ void saveNode(std::ostream& out, TreeNode *node); - - // The root of the BST - TreeNode* myRoot; diff -urN /usr/ports/emulators/stella/files/patch-src::emucore::TIASound.c emulators/stella/files/patch-src::emucore::TIASound.c --- /usr/ports/emulators/stella/files/patch-src::emucore::TIASound.c Wed Sep 24 22:55:05 2003 +++ emulators/stella/files/patch-src::emucore::TIASound.c Sun Jul 18 18:44:22 2004 @@ -1,18 +1,16 @@ ---- src/emucore/TIASound.c.orig Tue Feb 18 02:19:44 2003 -+++ src/emucore/TIASound.c Wed Sep 24 15:51:58 2003 -@@ -171,11 +171,13 @@ - { - uint8 chan; - int16 n; -- -+ +--- src/emucore/TIASound.c.orig Mon Jun 14 04:22:45 2004 ++++ src/emucore/TIASound.c Sun Jul 18 18:43:44 2004 +@@ -173,10 +173,12 @@ + uint8 chan; + int16 n; + + srandom(time(NULL)); + - /* fill the 9bit polynomial with random bits */ - for (n=0; n - #include - --#ifdef __FreeBSD__ -- #include --#else -- #include --#endif -+#include - - #define DSP_DEVICE "/dev/dsp" - #define MIXER_DEVICE "/dev/mixer" diff -urN /usr/ports/emulators/stella/pkg-plist emulators/stella/pkg-plist --- /usr/ports/emulators/stella/pkg-plist Thu Sep 25 03:39:51 2003 +++ emulators/stella/pkg-plist Sun Jul 18 18:56:39 2004 @@ -1,4 +1,4 @@ -bin/%%STELLA_BIN%% +bin/stella %%PORTDOCS%%%%DOCSDIR%%/graphics/chucky_cheese.png %%PORTDOCS%%%%DOCSDIR%%/graphics/circuit.png %%PORTDOCS%%%%DOCSDIR%%/graphics/console.png >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 875C916A4CE for ; Mon, 19 Jul 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 6DF9B43D1D for ; Mon, 19 Jul 2004 14:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEALhG064188 for ; Mon, 19 Jul 2004 14:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAKta064187; Mon, 19 Jul 2004 14:10:20 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:20 GMT Resent-Message-Id: <200407191410.i6JEAKta064187@freefall.freebsd.org> 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 93C9216A4CF for ; Mon, 19 Jul 2004 14:01:38 +0000 (GMT) Received: from hfep03.dion.ne.jp (hfep03.dion.ne.jp [203.181.105.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75DB743D4C for ; Mon, 19 Jul 2004 14:01:37 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep03.dion.ne.jp with SMTP id <20040719140133803.RTSP@hfep03.dion.ne.jp> for ; Mon, 19 Jul 2004 23:01:33 +0900 Message-Id: <20040719230018.6f13d066.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:18 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69294: Update port: games/ggz-client-libs to 0.0.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: Mon, 19 Jul 2004 14:10:21 -0000 >Number: 69294 >Category: ports >Synopsis: Update port: games/ggz-client-libs to 0.0.9 >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 Jul 19 14:10:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.0.9 Remove file: files/patch-ltmain.sh >How-To-Repeat: >Fix: diff -urN /usr/ports/games/ggz-client-libs/Makefile games/ggz-client-libs/Makefile --- /usr/ports/games/ggz-client-libs/Makefile Sun Mar 14 18:10:40 2004 +++ games/ggz-client-libs/Makefile Sun Jul 18 20:11:48 2004 @@ -7,10 +7,9 @@ # PORTNAME= ggz-client-libs -PORTVERSION= 0.0.8 -PORTREVISION= 1 +PORTVERSION= 0.0.9 CATEGORIES= games -MASTER_SITES= http://ggzgamingzone.org/pub/ggz/%SUBDIR%/ +MASTER_SITES= http://ftp.ggzgamingzone.org/pub/ggz/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -21,7 +20,7 @@ expat.5:${PORTSDIR}/textproc/expat2 USE_GNOME= gnometarget -GNU_CONFIGURE= yes +USE_LIBTOOL_VER= 15 CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --disable-debug INSTALLS_SHLIB= yes diff -urN /usr/ports/games/ggz-client-libs/distinfo games/ggz-client-libs/distinfo --- /usr/ports/games/ggz-client-libs/distinfo Sun Feb 15 04:00:29 2004 +++ games/ggz-client-libs/distinfo Mon Jul 19 22:38:23 2004 @@ -1,2 +1,2 @@ -MD5 (ggz-client-libs-0.0.8.tar.gz) = 5bb9870d0ea54ba22ec8d59e9655347e -SIZE (ggz-client-libs-0.0.8.tar.gz) = 461203 +MD5 (ggz-client-libs-0.0.9.tar.gz) = ef2235ab3e817592a467e922d63d0c2c +SIZE (ggz-client-libs-0.0.9.tar.gz) = 495462 diff -urN /usr/ports/games/ggz-client-libs/files/patch-ltmain.sh games/ggz-client-libs/files/patch-ltmain.sh --- /usr/ports/games/ggz-client-libs/files/patch-ltmain.sh Thu Oct 9 10:44:07 2003 +++ games/ggz-client-libs/files/patch-ltmain.sh Thu Jan 1 09:00:00 1970 @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Wed Oct 8 22:11:50 2003 -+++ ltmain.sh Wed Oct 8 22:12:05 2003 -@@ -4325,10 +4325,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false ; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff -urN /usr/ports/games/ggz-client-libs/pkg-plist games/ggz-client-libs/pkg-plist --- /usr/ports/games/ggz-client-libs/pkg-plist Sun Feb 15 04:00:29 2004 +++ games/ggz-client-libs/pkg-plist Sun Jul 18 20:16:50 2004 @@ -4,7 +4,7 @@ include/ggzmod.h lib/libggzcore.a lib/libggzcore.so -lib/libggzcore.so.4 +lib/libggzcore.so.5 lib/libggzmod.a lib/libggzmod.so -lib/libggzmod.so.1 +lib/libggzmod.so.2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 CF13A16A4CE for ; Mon, 19 Jul 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 C4AF143D1D for ; Mon, 19 Jul 2004 14:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEALs0064203 for ; Mon, 19 Jul 2004 14:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEALM8064202; Mon, 19 Jul 2004 14:10:21 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:21 GMT Resent-Message-Id: <200407191410.i6JEALM8064202@freefall.freebsd.org> 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 556C016A4CE for ; Mon, 19 Jul 2004 14:01:47 +0000 (GMT) Received: from hfep06.dion.ne.jp (hfep06.dion.ne.jp [203.181.105.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id E215B43D5E for ; Mon, 19 Jul 2004 14:01:45 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep06.dion.ne.jp with SMTP id <20040719140141661.IUOS@hfep06.dion.ne.jp> for ; Mon, 19 Jul 2004 23:01:41 +0900 Message-Id: <20040719230021.738cd902.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:21 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69295: Update port: games/ggz-txt-client to 0.0.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: Mon, 19 Jul 2004 14:10:21 -0000 >Number: 69295 >Category: ports >Synopsis: Update port: games/ggz-txt-client to 0.0.9 >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 Jul 19 14:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.0.9 New file: files/patch-ggz-txt::loop.c files/patch-ggz-txt::output.c files/patch-tttxt::main.c >How-To-Repeat: >Fix: diff -urN /usr/ports/games/ggz-txt-client/Makefile games/ggz-txt-client/Makefile --- /usr/ports/games/ggz-txt-client/Makefile Mon Apr 12 12:51:43 2004 +++ games/ggz-txt-client/Makefile Sun Jul 18 20:29:51 2004 @@ -7,20 +7,20 @@ # PORTNAME= ggz-txt-client -PORTVERSION= 0.0.8 +PORTVERSION= 0.0.9 CATEGORIES= games -MASTER_SITES= http://ggzgamingzone.org/pub/ggz/%SUBDIR%/ +MASTER_SITES= http://ftp.ggzgamingzone.org/pub/ggz/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= The GGZ Gaming Zone - Console (Text) Frontend -LIB_DEPENDS= ggzcore.4:${PORTSDIR}/games/ggz-client-libs +LIB_DEPENDS= ggzcore.5:${PORTSDIR}/games/ggz-client-libs USE_GNOME= gnometarget USE_GETOPT_LONG= yes USE_GETTEXT= yes -GNU_CONFIGURE= yes +USE_LIBTOOL_VER= 15 CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --disable-debug diff -urN /usr/ports/games/ggz-txt-client/distinfo games/ggz-txt-client/distinfo --- /usr/ports/games/ggz-txt-client/distinfo Sun Feb 15 04:00:29 2004 +++ games/ggz-txt-client/distinfo Mon Jul 19 22:38:29 2004 @@ -1,2 +1,2 @@ -MD5 (ggz-txt-client-0.0.8.tar.gz) = c75bdf17ed8576fb36ec9c00fb79dedf -SIZE (ggz-txt-client-0.0.8.tar.gz) = 124315 +MD5 (ggz-txt-client-0.0.9.tar.gz) = c9ef37dd4b8c2679f9136cdf4f714b76 +SIZE (ggz-txt-client-0.0.9.tar.gz) = 132926 diff -urN /usr/ports/games/ggz-txt-client/files/patch-ggz-txt::loop.c games/ggz-txt-client/files/patch-ggz-txt::loop.c --- /usr/ports/games/ggz-txt-client/files/patch-ggz-txt::loop.c Thu Jan 1 09:00:00 1970 +++ games/ggz-txt-client/files/patch-ggz-txt::loop.c Sun Jul 18 20:25:31 2004 @@ -0,0 +1,10 @@ +--- ggz-txt/loop.c.orig Mon May 17 23:20:01 2004 ++++ ggz-txt/loop.c Sun Jul 18 20:25:18 2004 +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + #include + #include + diff -urN /usr/ports/games/ggz-txt-client/files/patch-ggz-txt::output.c games/ggz-txt-client/files/patch-ggz-txt::output.c --- /usr/ports/games/ggz-txt-client/files/patch-ggz-txt::output.c Thu Jan 1 09:00:00 1970 +++ games/ggz-txt-client/files/patch-ggz-txt::output.c Sun Jul 18 20:29:41 2004 @@ -0,0 +1,14 @@ +--- ggz-txt/output.c.orig Fri Jun 25 22:32:46 2004 ++++ ggz-txt/output.c Sun Jul 18 20:29:22 2004 +@@ -145,10 +145,10 @@ + char message[1024]; /* FIXME: Make me dynamic */ + int x; + char *token, *messagedup, *orig; ++ va_list ap; + + if(!output_enabled) return; + +- va_list ap; + va_start(ap, fmt); + vsnprintf(message, sizeof(message), fmt, ap); + va_end(ap); diff -urN /usr/ports/games/ggz-txt-client/files/patch-tttxt::main.c games/ggz-txt-client/files/patch-tttxt::main.c --- /usr/ports/games/ggz-txt-client/files/patch-tttxt::main.c Thu Jan 1 09:00:00 1970 +++ games/ggz-txt-client/files/patch-tttxt::main.c Sun Jul 18 20:32:19 2004 @@ -0,0 +1,10 @@ +--- tttxt/main.c.orig Mon May 17 23:21:10 2004 ++++ tttxt/main.c Sun Jul 18 20:32:02 2004 +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + + #include + #include diff -urN /usr/ports/games/ggz-txt-client/pkg-plist games/ggz-txt-client/pkg-plist --- /usr/ports/games/ggz-txt-client/pkg-plist Thu Oct 9 10:47:02 2003 +++ games/ggz-txt-client/pkg-plist Sun Jul 18 20:40:44 2004 @@ -1,2 +1,5 @@ bin/ggz-txt +etc/ggz.modules +lib/ggz/tttxt share/locale/de/LC_MESSAGES/ggz-txt.mo +@unexec rmdir %D/lib/ggz 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 3E21216A4CF for ; Mon, 19 Jul 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 235A143D1D for ; Mon, 19 Jul 2004 14:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAMoG064228 for ; Mon, 19 Jul 2004 14:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAMLm064227; Mon, 19 Jul 2004 14:10:22 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:22 GMT Resent-Message-Id: <200407191410.i6JEAMLm064227@freefall.freebsd.org> 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 26C5616A4CE for ; Mon, 19 Jul 2004 14:01:56 +0000 (GMT) Received: from hfep04.dion.ne.jp (hfep04.dion.ne.jp [203.181.105.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id F117243D5D for ; Mon, 19 Jul 2004 14:01:54 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep04.dion.ne.jp with SMTP id <20040719140150951.XTEF@hfep04.dion.ne.jp> for ; Mon, 19 Jul 2004 23:01:50 +0900 Message-Id: <20040719230023.2cf352db.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:23 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69296: Update port: games/libggz to 0.0.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: Mon, 19 Jul 2004 14:10:22 -0000 >Number: 69296 >Category: ports >Synopsis: Update port: games/libggz to 0.0.9 >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 Jul 19 14:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.0.9 Remove file: files/patch-ltmain.sh >How-To-Repeat: >Fix: diff -urN /usr/ports/games/libggz/Makefile games/libggz/Makefile --- /usr/ports/games/libggz/Makefile Tue May 4 13:44:14 2004 +++ games/libggz/Makefile Sun Jul 18 18:04:29 2004 @@ -7,27 +7,33 @@ # PORTNAME= libggz -PORTVERSION= 0.0.8 -PORTREVISION= 1 +PORTVERSION= 0.0.9 CATEGORIES= games -MASTER_SITES= http://ggzgamingzone.org/pub/ggz/%SUBDIR%/ +MASTER_SITES= http://ftp.ggzgamingzone.org/pub/ggz/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= The GGZ Gaming Zone - Base Library -#LIB_DEPENDS= gcrypt.6:${PORTSDIR}/security/libgcrypt USE_GNOME= gnomehack gnometarget -USE_OPENSSL= yes +USE_LIBTOOL_VER= 15 GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -CONFIGURE_ARGS= --disable-debug --with-tls +CONFIGURE_ARGS= --disable-debug INSTALLS_SHLIB= yes MAN3= ggz.h.3 CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} + +.if defined(WITH_GNUTLS) +LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +CONFIGURE_ARGS+= --with-tls=GnuTLS +.else +USE_OPENSSL= yes +CONFIGURE_ARGS+= --with-tls=OpenSSL +.endif .include diff -urN /usr/ports/games/libggz/distinfo games/libggz/distinfo --- /usr/ports/games/libggz/distinfo Sun Feb 15 04:00:34 2004 +++ games/libggz/distinfo Mon Jul 19 22:38:35 2004 @@ -1,2 +1,2 @@ -MD5 (libggz-0.0.8.tar.gz) = c3fcf431c6c53a099352bb9769c67862 -SIZE (libggz-0.0.8.tar.gz) = 410286 +MD5 (libggz-0.0.9.tar.gz) = 1d905aa0564e1727f394e96d115b89e4 +SIZE (libggz-0.0.9.tar.gz) = 434410 diff -urN /usr/ports/games/libggz/files/patch-ltmain.sh games/libggz/files/patch-ltmain.sh --- /usr/ports/games/libggz/files/patch-ltmain.sh Thu Oct 9 10:33:12 2003 +++ games/libggz/files/patch-ltmain.sh Thu Jan 1 09:00:00 1970 @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Wed Oct 8 22:11:50 2003 -+++ ltmain.sh Wed Oct 8 22:12:05 2003 -@@ -4325,10 +4325,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false ; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 9C58216A4E2 for ; Mon, 19 Jul 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 7937F43D5C for ; Mon, 19 Jul 2004 14:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAOqh064249 for ; Mon, 19 Jul 2004 14:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAOnn064248; Mon, 19 Jul 2004 14:10:24 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:24 GMT Resent-Message-Id: <200407191410.i6JEAOnn064248@freefall.freebsd.org> 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 2429216A4CE for ; Mon, 19 Jul 2004 14:02:03 +0000 (GMT) Received: from hfep04.dion.ne.jp (hfep04.dion.ne.jp [203.181.105.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41DF743D5E for ; Mon, 19 Jul 2004 14:02:02 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep04.dion.ne.jp with SMTP id <20040719140159621.XTFJ@hfep04.dion.ne.jp> for ; Mon, 19 Jul 2004 23:01:59 +0900 Message-Id: <20040719230025.10b8d8b2.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:25 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69297: Update port: graphics/xenomorph to 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, 19 Jul 2004 14:10:24 -0000 >Number: 69297 >Category: ports >Synopsis: Update port: graphics/xenomorph to 0.6 >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 Jul 19 14:10:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.6 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/xenomorph/Makefile graphics/xenomorph/Makefile --- /usr/ports/graphics/xenomorph/Makefile Thu Mar 4 13:41:15 2004 +++ graphics/xenomorph/Makefile Sun Jul 18 17:38:46 2004 @@ -7,7 +7,7 @@ # PORTNAME= xenomorph -PORTVERSION= 0.5.1 +PORTVERSION= 0.6 CATEGORIES= graphics MASTER_SITES= http://xenomorph.sourceforge.net/ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} @@ -17,12 +17,11 @@ BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake -PLIST_FILES= bin/xenomorph USE_BZIP2= yes USE_QT_VER= 3 -HAS_CONFIGURE= yes -CONFIGURE_ENV= QTDIR=${X11BASE} -MAKE_ENV= QTDIR=${X11BASE} +MAKE_ENV= QTDIR="${QT_PREFIX}" + +PLIST_FILES= bin/xenomorph do-configure: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} qmake \ diff -urN /usr/ports/graphics/xenomorph/distinfo graphics/xenomorph/distinfo --- /usr/ports/graphics/xenomorph/distinfo Thu Jan 29 20:26:51 2004 +++ graphics/xenomorph/distinfo Sun Jul 18 17:43:15 2004 @@ -1,2 +1,2 @@ -MD5 (xenomorph051.tar.bz2) = 8694be7db5fc17d8cdab97cc97f2617f -SIZE (xenomorph051.tar.bz2) = 102028 +MD5 (xenomorph06.tar.bz2) = 0d4000ffd7d5bd4250c93bbd5ab997a9 +SIZE (xenomorph06.tar.bz2) = 513156 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 DC71B16A4E2 for ; Mon, 19 Jul 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 BA6F643D5C for ; Mon, 19 Jul 2004 14:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAOhQ064264 for ; Mon, 19 Jul 2004 14:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEAOoY064263; Mon, 19 Jul 2004 14:10:24 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:10:24 GMT Resent-Message-Id: <200407191410.i6JEAOoY064263@freefall.freebsd.org> 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 DD18316A4CE for ; Mon, 19 Jul 2004 14:02:13 +0000 (GMT) Received: from hfep08.dion.ne.jp (hfep08.dion.ne.jp [203.181.105.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0FA343D1D for ; Mon, 19 Jul 2004 14:02:09 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.124.36]) by hfep08.dion.ne.jp with SMTP id <20040719140206860.HXFW@hfep08.dion.ne.jp> for ; Mon, 19 Jul 2004 23:02:06 +0900 Message-Id: <20040719230028.110e95c7.tkato432@yahoo.com> Date: Mon, 19 Jul 2004 23:00:28 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69298: Update port: lang/yabasic to 2.751 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 14:10:25 -0000 >Number: 69298 >Category: ports >Synopsis: Update port: lang/yabasic to 2.751 >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 Jul 19 14:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 2.751 >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/yabasic/Makefile lang/yabasic/Makefile --- /usr/ports/lang/yabasic/Makefile Tue May 11 13:36:50 2004 +++ lang/yabasic/Makefile Mon Jul 19 01:56:21 2004 @@ -6,7 +6,7 @@ # PORTNAME= yabasic -PORTVERSION= 2.744 +PORTVERSION= 2.751 CATEGORIES= lang MASTER_SITES= http://www.yabasic.de/download/ @@ -26,6 +26,9 @@ post-patch: @${REINPLACE_CMD} -e "s|= -DUNIX|= @X_CFLAGS@ -DUNIX|g" ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e "s|||g" ${WRKSRC}/bison.c + +post-build test: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check post-install: .if !defined(NOPORTDOCS) diff -urN /usr/ports/lang/yabasic/distinfo lang/yabasic/distinfo --- /usr/ports/lang/yabasic/distinfo Tue May 11 13:36:50 2004 +++ lang/yabasic/distinfo Mon Jul 19 01:57:33 2004 @@ -1,2 +1,2 @@ -MD5 (yabasic-2.744.tar.gz) = f8485d7aa8ff0148a4b71f4ec88b31df -SIZE (yabasic-2.744.tar.gz) = 510942 +MD5 (yabasic-2.751.tar.gz) = 89b4ae8f01e04ad5417bc5d91601d822 +SIZE (yabasic-2.751.tar.gz) = 521014 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 BF89A16A4EE for ; Mon, 19 Jul 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 AA43843D55 for ; Mon, 19 Jul 2004 14:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEAS0C064300 for ; Mon, 19 Jul 2004 14:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEASXN064299; Mon, 19 Jul 2004 14:10:28 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 14:10:28 GMT Message-Id: <200407191410.i6JEASXN064299@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dan Langille Subject: Re: ports/69285: [PATCH] Do not install fd.sh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 14:10:28 -0000 The following reply was made to PR ports/69285; it has been noted by GNATS. From: Dan Langille To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69285: [PATCH] Do not install fd.sh Date: Mon, 19 Jul 2004 10:05:22 -0400 (EDT) The original patch was reversed. Below is the correct patch. Sorry. diff -ruN /usr/ports/sysutils/bacula/files/patch-scripts-Makefile.in /home/dan/src/bacula/bacula-port/files/patch-scripts-Makefile.in --- /usr/ports/sysutils/bacula/files/patch-scripts-Makefile.in Mon May 3 05:44:37 2004 +++ /home/dan/src/bacula/bacula-port/files/patch-scripts-Makefile.in Mon Jul 19 08:59:04 2004 @@ -26,7 +26,6 @@ ! # $(INSTALL_SCRIPT) bconsole $(DESTDIR)$(scriptdir)/bconsole ! # $(INSTALL_SCRIPT) gconsole $(DESTDIR)$(scriptdir)/gconsole ! $(INSTALL_SCRIPT) bacula $(DESTDIR)$(sysconfdir)/rc.d/bacula.sh.sample -! $(INSTALL_SCRIPT) fd $(DESTDIR)$(sysconfdir)/rc.d/fd.sh.sample ! # $(INSTALL_SCRIPT) mtx-changer $(DESTDIR)$(scriptdir)/mtx-changer ! # $(INSTALL_DATA) btraceback.gdb $(DESTDIR)$(scriptdir)/btraceback.gdb ! # $(INSTALL_SCRIPT) btraceback $(DESTDIR)$(sbindir)/btraceback diff -ruN /usr/ports/sysutils/bacula/pkg-plist /home/dan/src/bacula/bacula-port/pkg-plist --- /usr/ports/sysutils/bacula/pkg-plist Sun Jul 4 05:44:43 2004 +++ /home/dan/src/bacula/bacula-port/pkg-plist Mon Jul 19 08:59:35 2004 @@ -3,7 +3,6 @@ %%SERVER%%sbin/chio-bacula %%SERVER%%sbin/bacula-dir sbin/bacula-fd -etc/rc.d/fd.sh.sample %%SERVER%%sbin/bacula-sd %%SERVER%%sbin/bextract %%SERVER%%sbin/bls From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:11: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 2521716A4CF; Mon, 19 Jul 2004 14:11:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 086F043D1F; Mon, 19 Jul 2004 14:11:27 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEBQ2S064360; Mon, 19 Jul 2004 14:11:26 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEBQKE064356; Mon, 19 Jul 2004 14:11:26 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:11:26 GMT From: Kirill Ponomarew Message-Id: <200407191411.i6JEBQKE064356@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69289: Update port: astro/tkseti to 3.10.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: Mon, 19 Jul 2004 14:11:27 -0000 Synopsis: Update port: astro/tkseti to 3.10.2 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:11:21 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69289 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:11: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 BCB9716A4CE; Mon, 19 Jul 2004 14:11:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5962C43D41; Mon, 19 Jul 2004 14:11:34 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEBYvL064416; Mon, 19 Jul 2004 14:11:34 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEBYpA064412; Mon, 19 Jul 2004 14:11:34 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:11:34 GMT From: Kirill Ponomarew Message-Id: <200407191411.i6JEBYpA064412@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69290: Update port: audio/libsamplerate to 0.1.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, 19 Jul 2004 14:11:34 -0000 Synopsis: Update port: audio/libsamplerate to 0.1.1 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:11:31 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69290 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:11: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 C94B116A4CE; Mon, 19 Jul 2004 14:11:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC45343D58; Mon, 19 Jul 2004 14:11:41 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEBf4u064476; Mon, 19 Jul 2004 14:11:41 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEBf2a064472; Mon, 19 Jul 2004 14:11:41 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:11:41 GMT From: Kirill Ponomarew Message-Id: <200407191411.i6JEBf2a064472@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69291: Update port: audio/swhplugins to 0.4.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: Mon, 19 Jul 2004 14:11:41 -0000 Synopsis: Update port: audio/swhplugins to 0.4.7 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:11:39 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69291 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:11: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 49A7F16A4CE; Mon, 19 Jul 2004 14:11:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CD6843D41; Mon, 19 Jul 2004 14:11:49 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEBnNS064532; Mon, 19 Jul 2004 14:11:49 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEBnMJ064528; Mon, 19 Jul 2004 14:11:49 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:11:49 GMT From: Kirill Ponomarew Message-Id: <200407191411.i6JEBnMJ064528@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69292: Update port: deskutils/dlume to 0.2.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, 19 Jul 2004 14:11:49 -0000 Synopsis: Update port: deskutils/dlume to 0.2.4 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:11:45 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69292 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:11: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 738F416A4CE; Mon, 19 Jul 2004 14:11:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 568BB43D41; Mon, 19 Jul 2004 14:11:58 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEBwQV064593; Mon, 19 Jul 2004 14:11:58 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEBwjY064589; Mon, 19 Jul 2004 14:11:58 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:11:58 GMT From: Kirill Ponomarew Message-Id: <200407191411.i6JEBwjY064589@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69293: Update port: emulators/stella to 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: Mon, 19 Jul 2004 14:11:58 -0000 Synopsis: Update port: emulators/stella to 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:11:55 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69293 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:12: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 B5B9A16A4CE; Mon, 19 Jul 2004 14:12:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9891B43D39; Mon, 19 Jul 2004 14:12:06 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEC6GT064674; Mon, 19 Jul 2004 14:12:06 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEC6sv064670; Mon, 19 Jul 2004 14:12:06 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:12:06 GMT From: Kirill Ponomarew Message-Id: <200407191412.i6JEC6sv064670@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69294: Update port: games/ggz-client-libs to 0.0.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: Mon, 19 Jul 2004 14:12:06 -0000 Synopsis: Update port: games/ggz-client-libs to 0.0.9 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:12:03 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69294 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:12: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 AEDE916A4CE; Mon, 19 Jul 2004 14:12:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9225643D54; Mon, 19 Jul 2004 14:12:14 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JECERv064731; Mon, 19 Jul 2004 14:12:14 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JECEZ7064727; Mon, 19 Jul 2004 14:12:14 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:12:14 GMT From: Kirill Ponomarew Message-Id: <200407191412.i6JECEZ7064727@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69295: Update port: games/ggz-txt-client to 0.0.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: Mon, 19 Jul 2004 14:12:14 -0000 Synopsis: Update port: games/ggz-txt-client to 0.0.9 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:12:11 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69295 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:12: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 630A816A4CE; Mon, 19 Jul 2004 14:12:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45E7343D54; Mon, 19 Jul 2004 14:12:23 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JECNSB064803; Mon, 19 Jul 2004 14:12:23 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JECNm7064799; Mon, 19 Jul 2004 14:12:23 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:12:23 GMT From: Kirill Ponomarew Message-Id: <200407191412.i6JECNm7064799@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69296: Update port: games/libggz to 0.0.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: Mon, 19 Jul 2004 14:12:23 -0000 Synopsis: Update port: games/libggz to 0.0.9 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:12:20 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69296 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14: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 D6B3D16A4CE; Mon, 19 Jul 2004 14:17:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B950B43D49; Mon, 19 Jul 2004 14:17:10 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEHAMU064946; Mon, 19 Jul 2004 14:17:10 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEHAim064942; Mon, 19 Jul 2004 14:17:10 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:17:10 GMT From: Kirill Ponomarew Message-Id: <200407191417.i6JEHAim064942@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69297: Update port: graphics/xenomorph to 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, 19 Jul 2004 14:17:11 -0000 Synopsis: Update port: graphics/xenomorph to 0.6 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:17:07 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69297 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:17: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 B9F5F16A4CE; Mon, 19 Jul 2004 14:17:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E83B43D5A; Mon, 19 Jul 2004 14:17:21 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JEHLjq065007; Mon, 19 Jul 2004 14:17:21 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEHLQY065003; Mon, 19 Jul 2004 14:17:21 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 14:17:21 GMT From: Kirill Ponomarew Message-Id: <200407191417.i6JEHLQY065003@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69298: Update port: lang/yabasic to 2.751 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 14:17:21 -0000 Synopsis: Update port: lang/yabasic to 2.751 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Mon Jul 19 14:17:15 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69298 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14: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 0A94016A4CE for ; Mon, 19 Jul 2004 14:20:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE3FB43D55 for ; Mon, 19 Jul 2004 14:20:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEKIU4065132 for ; Mon, 19 Jul 2004 14:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEKI67065131; Mon, 19 Jul 2004 14:20:18 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:20:18 GMT Resent-Message-Id: <200407191420.i6JEKI67065131@freefall.freebsd.org> 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 F214716A4CE for ; Mon, 19 Jul 2004 14:16:19 +0000 (GMT) Received: from secure.socket.ch (secure.socket.ch [212.254.206.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C80A43D49 for ; Mon, 19 Jul 2004 14:16:19 +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 i6JEGH2I010272 for ; Mon, 19 Jul 2004 16:16:17 +0200 (CEST) (envelope-from roth@secure.socket.ch) Received: (from roth@localhost) by secure.socket.ch (8.12.10/8.12.5/Submit) id i6JEGCC8010271; Mon, 19 Jul 2004 16:16:12 +0200 (CEST) Message-Id: <200407191416.i6JEGCC8010271@secure.socket.ch> Date: Mon, 19 Jul 2004 16:16:12 +0200 (CEST) From: Tobias Roth To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69299: [PATCH] missing dependency for www/linux-flashplugin 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: Mon, 19 Jul 2004 14:20:19 -0000 >Number: 69299 >Category: ports >Synopsis: [PATCH] missing dependency for www/linux-flashplugin >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 Jul 19 14:20:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tobias Roth >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD localhost 5.2-CURRENT FreeBSD 5.2-CURRENT #10: Wed May 26 19:30:57 CEST 2004 toor@localhost:/usr/obj/usr/src/sys/FOOBAR i386 >Description: www/linux-flashplugin misses the dependency devel/linuxthreads. >How-To-Repeat: install www/linux-flashplugin, possibly together with www/linuxpluginwrapper, and make sure you do not have devel/linuxthreads. run your browser and verify that the plugin does not work. then install devel/linuxthreads and verify that everthing works fine now. >Fix: --- Makefile.orig Mon Jul 19 15:59:46 2004 +++ Makefile Mon Jul 19 16:04:19 2004 @@ -17,6 +17,14 @@ MAINTAINER= ports@brandon.dvalentine.com COMMENT= The official Macromedia Flash Player for Linux Mozilla and Netscape 6+ +.include + +.if ${OSVERSION} >= 500035 +LIB_DEPENDS= lthread.3:${PORTSDIR}/devel/linuxthreads +.else +LIB_DEPENDS= lthread.2:${PORTSDIR}/devel/linuxthreads +.endif + ONLY_FOR_ARCHS= i386 USE_LINUX= yes @@ -47,4 +55,4 @@ @${INSTALL_DATA} ${WRKSRC}/readme.htm ${DOCSDIR} .endif -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:27: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 6880816A4CE; Mon, 19 Jul 2004 14:27:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A98043D5F; Mon, 19 Jul 2004 14:27:01 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JER1dr065334; Mon, 19 Jul 2004 14:27:01 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JER19K065330; Mon, 19 Jul 2004 14:27:01 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 14:27:01 GMT From: Volker Stolz Message-Id: <200407191427.i6JER19K065330@freefall.freebsd.org> To: khera@kciLink.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/35459: portupgrade doesn't clean up dependencies prior to repackaging packages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 14:27:01 -0000 Synopsis: portupgrade doesn't clean up dependencies prior to repackaging packages State-Changed-From-To: suspended->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 14:26:20 GMT 2004 State-Changed-Why: Closed on submitter's request: No longer believes this to be a problem http://www.freebsd.org/cgi/query-pr.cgi?pr=35459 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14: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 681BC16A4CF for ; Mon, 19 Jul 2004 14:30:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54FDE43D5D for ; Mon, 19 Jul 2004 14:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEUMRA065497 for ; Mon, 19 Jul 2004 14:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEUMO8065495; Mon, 19 Jul 2004 14:30:22 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:30:22 GMT Resent-Message-Id: <200407191430.i6JEUMO8065495@freefall.freebsd.org> 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 9CF5D16A4CE for ; Mon, 19 Jul 2004 14:28:05 +0000 (GMT) Received: from dwarf.jawa.at (81-223-63-40.dynamic.adsl-line.inode.at [81.223.63.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id A811E43D39 for ; Mon, 19 Jul 2004 14:27:44 +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 i6IK5h2Q048417 for ; Sun, 18 Jul 2004 22:05:44 +0200 (CEST) (envelope-from mranner@dwarf.jawa.at) Received: (from root@localhost) by dwarf.jawa.at (8.12.11/8.12.9/Submit) id i6IK5hsi048416; Sun, 18 Jul 2004 22:05:43 +0200 (CEST) (envelope-from mranner) Message-Id: <200407182005.i6IK5hsi048416@dwarf.jawa.at> Date: Sun, 18 Jul 2004 22:05:43 +0200 (CEST) From: Michael Ranner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69300: [MAINTAINER] irc/kvirc: update to 3.0.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, 19 Jul 2004 14:30:22 -0000 >Number: 69300 >Category: ports >Synopsis: [MAINTAINER] irc/kvirc: update to 3.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 14:30:21 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 #0: Fri Jun 25 23:02:44 CEST 2004 >Description: - Update to 3.0.1 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- kvirc-3.0.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/irc/kvirc/Makefile /usr/ports/irc/kvirc.update/Makefile --- /usr/ports/irc/kvirc/Makefile Fri Jun 25 20:48:39 2004 +++ /usr/ports/irc/kvirc.update/Makefile Sun Jul 18 21:10:49 2004 @@ -2,34 +2,36 @@ # Date created: 05 January 2004 # Whom: Michael Ranner # -# $FreeBSD: ports/irc/kvirc/Makefile,v 1.36 2004/06/22 19:42:04 lofi Exp $ +# $FreeBSD: ports/irc/kvirc/Makefile,v 1.35 2004/04/05 03:30:37 marcus Exp $ # PORTNAME= kvirc -PORTVERSION= 3.0.0 -PORTREVISION= 3 +PORTVERSION= 3.0.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}-beta2/source/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-beta2 +MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}/source/ MAINTAINER= mranner@inode.at COMMENT= "IRC client for QT and KDE" +LIB_DEPENDS= gsm.1:${PORTSDIR}/audio/gsm + USE_KDELIBS_VER=3 USE_BZIP2= yes GNU_CONFIGURE= yes USE_GMAKE= yes USE_REINPLACE= yes +USE_LIBTOOL_VER= 15 CONFIGURE_TARGET= -#CONFIGURE_ARGS+= --with-freebsd-pthread +CONFIGURE_ARGS+= --with-freebsd-pthread \ + --mandir=${PREFIX}/man/man1 +PLIST_SUB= VER=${PORTVERSION} MAN1= kvirc.1 -post-patch: - ${REINPLACE_CMD} -e "s,-lpthread,${PTHREAD_LIBS},g" ${WRKSRC}/configure - -.include +.include +.include "${PORTSDIR}/x11/kde3/Makefile.kde" +.include diff -ruN --exclude=CVS /usr/ports/irc/kvirc/distinfo /usr/ports/irc/kvirc.update/distinfo --- /usr/ports/irc/kvirc/distinfo Sun Mar 28 17:53:58 2004 +++ /usr/ports/irc/kvirc.update/distinfo Sun Jul 18 15:27:49 2004 @@ -1,2 +1,2 @@ -MD5 (kvirc-3.0.0-beta2.tar.bz2) = 88fa021f23a25ce3bf43c21c77df9105 -SIZE (kvirc-3.0.0-beta2.tar.bz2) = 2197822 +MD5 (kvirc-3.0.1.tar.bz2) = 22b402d072a84eda11e762eb413e29c6 +SIZE (kvirc-3.0.1.tar.bz2) = 2679737 diff -ruN --exclude=CVS /usr/ports/irc/kvirc/files/patch-modules-snd /usr/ports/irc/kvirc.update/files/patch-modules-snd --- /usr/ports/irc/kvirc/files/patch-modules-snd Wed Jan 14 00:27:16 2004 +++ /usr/ports/irc/kvirc.update/files/patch-modules-snd Sat Jun 5 11:12:02 2004 @@ -1,11 +1,19 @@ ---- src/modules/snd/libkvisnd.cpp Sat Dec 14 20:30:41 2002 -+++ src/modules/snd/libkvisnd.cpp.patched Mon Jan 5 19:18:20 2004 -@@ -49,7 +49,7 @@ - #ifdef COMPILE_OSS_SUPPORT - #include - #include -- #include -+ #include - #ifdef COMPILE_AUDIOFILE_SUPPORT - #include - #endif //COMPILE_AUDIOFILE_SUPPORT +*** src/modules/snd/libkvisnd.cpp.orig Thu Feb 5 14:07:24 2004 +--- src/modules/snd/libkvisnd.cpp Thu Feb 5 14:07:32 2004 +*************** +*** 53,59 **** + #include + #else + // Hint by Andy Fawcett: Thnx :) +! #ifdef HAVE_SYS_SOUNDCARD_H_ + #include + #else + #warning "Ops.. have no soundcard.h ? ... we're going to fail here :/" +--- 53,59 ---- + #include + #else + // Hint by Andy Fawcett: Thnx :) +! #ifdef HAVE_SYS_SOUNDCARD_H + #include + #else + #warning "Ops.. have no soundcard.h ? ... we're going to fail here :/" diff -ruN --exclude=CVS /usr/ports/irc/kvirc/files/patch-src-kvilib-file-kvi_file.h /usr/ports/irc/kvirc.update/files/patch-src-kvilib-file-kvi_file.h --- /usr/ports/irc/kvirc/files/patch-src-kvilib-file-kvi_file.h Fri Feb 27 20:53:16 2004 +++ /usr/ports/irc/kvirc.update/files/patch-src-kvilib-file-kvi_file.h Thu Jan 1 01:00:00 1970 @@ -1,21 +0,0 @@ -*** src/kvilib/file/kvi_file.h.orig Fri Feb 27 17:56:33 2004 ---- src/kvilib/file/kvi_file.h Fri Feb 27 17:10:05 2004 -*************** -*** 59,66 **** - bool save(kvi_u8_t t){ return save((kvi_i8_t)t); }; - bool load(kvi_u8_t &t){ return load((kvi_i8_t)t); };; - -! bool save(time_t t){ return save((kvi_i32_t)t); }; -! bool load(time_t &t){ return load((kvi_i32_t)t); }; - - bool save(const KviStr &szData); - bool load(KviStr &szData); ---- 59,66 ---- - bool save(kvi_u8_t t){ return save((kvi_i8_t)t); }; - bool load(kvi_u8_t &t){ return load((kvi_i8_t)t); };; - -! //bool save(time_t t){ return save((kvi_i32_t)t); }; -! //bool load(time_t &t){ return load((kvi_i32_t)t); }; - - bool save(const KviStr &szData); - bool load(KviStr &szData); diff -ruN --exclude=CVS /usr/ports/irc/kvirc/files/patch-src-kvilib-net-kvi_dns.cpp /usr/ports/irc/kvirc.update/files/patch-src-kvilib-net-kvi_dns.cpp --- /usr/ports/irc/kvirc/files/patch-src-kvilib-net-kvi_dns.cpp Wed Jan 14 00:27:16 2004 +++ /usr/ports/irc/kvirc.update/files/patch-src-kvilib-net-kvi_dns.cpp Thu Jan 1 01:00:00 1970 @@ -1,25 +0,0 @@ ---- src/kvilib/net/kvi_dns.cpp.orig Mon Jan 5 21:54:02 2004 -+++ src/kvilib/net/kvi_dns.cpp Mon Jan 5 22:04:18 2004 -@@ -39,6 +39,12 @@ - #include - #include - #include -+ #if __FreeBSD__ -+ #include -+ #if __FreeBSD_version >= 500037 -+ #define EAI_ADDRFAMILY 1 -+ #endif -+ #endif - #endif - - -@@ -101,7 +107,9 @@ - #ifndef COMPILE_ON_WINDOWS - case EAI_ADDRFAMILY: return KviError_unsupportedAddressFamily; break; - #endif -+#if __FreeBSD_version <= 500037 - case EAI_NODATA: return KviError_validNameButNoIpAddress; break; -+#endif - case EAI_FAIL: return KviError_unrecoverableNameserverError; break; - case EAI_AGAIN: return KviError_dnsTemporaneousFault; break; - // this should never happen diff -ruN --exclude=CVS /usr/ports/irc/kvirc/pkg-plist /usr/ports/irc/kvirc.update/pkg-plist --- /usr/ports/irc/kvirc/pkg-plist Wed Jan 14 00:27:16 2004 +++ /usr/ports/irc/kvirc.update/pkg-plist Sun Jul 18 16:16:15 2004 @@ -1,1097 +1,1321 @@ bin/kvi_run_netscape.sh -bin/kvirc-config bin/kvi_search_help.sh bin/kvirc -include/kvirc/3.0.0-beta2/kvi_confignames.h -include/kvirc/3.0.0-beta2/kvi_debug.h -include/kvirc/3.0.0-beta2/kvi_defaults.h -include/kvirc/3.0.0-beta2/kvi_settings.h -include/kvirc/3.0.0-beta2/kvi_wincfg.h -include/kvirc/3.0.0-beta2/kvi_bswap.h -include/kvirc/3.0.0-beta2/kvi_error.h -include/kvirc/3.0.0-beta2/kvi_inttypes.h -include/kvirc/3.0.0-beta2/kvi_list.h -include/kvirc/3.0.0-beta2/kvi_malloc.h -include/kvirc/3.0.0-beta2/kvi_memmove.h -include/kvirc/3.0.0-beta2/kvi_strasm.h -include/kvirc/3.0.0-beta2/kvi_string.h -include/kvirc/3.0.0-beta2/kvi_stringarray.h -include/kvirc/3.0.0-beta2/kvi_textencoding.h -include/kvirc/3.0.0-beta2/kvi_wstring.h -include/kvirc/3.0.0-beta2/kvi_wstring_config.h -include/kvirc/3.0.0-beta2/kvi_wstring_external.h -include/kvirc/3.0.0-beta2/kvi_wstring_functions.h -include/kvirc/3.0.0-beta2/kvi_wstring_wchar.h -include/kvirc/3.0.0-beta2/kvi_wstring_wslen.h -include/kvirc/3.0.0-beta2/kvi_cmdformatter.h -include/kvirc/3.0.0-beta2/kvi_config.h -include/kvirc/3.0.0-beta2/kvi_crypt.h -include/kvirc/3.0.0-beta2/kvi_databuffer.h -include/kvirc/3.0.0-beta2/kvi_datacontainer.h -include/kvirc/3.0.0-beta2/kvi_filetrader.h -include/kvirc/3.0.0-beta2/kvi_garbage.h -include/kvirc/3.0.0-beta2/kvi_imagelib.h -include/kvirc/3.0.0-beta2/kvi_md5.h -include/kvirc/3.0.0-beta2/kvi_mediatype.h -include/kvirc/3.0.0-beta2/kvi_msgtype.h -include/kvirc/3.0.0-beta2/kvi_parameterlist.h -include/kvirc/3.0.0-beta2/kvi_pixmap.h -include/kvirc/3.0.0-beta2/kvi_proxydb.h -include/kvirc/3.0.0-beta2/kvi_regchan.h -include/kvirc/3.0.0-beta2/kvi_regusersdb.h -include/kvirc/3.0.0-beta2/kvi_stringconversion.h -include/kvirc/3.0.0-beta2/kvi_xlib.h -include/kvirc/3.0.0-beta2/kvi_file.h -include/kvirc/3.0.0-beta2/kvi_fileutils.h -include/kvirc/3.0.0-beta2/kvi_avatar.h -include/kvirc/3.0.0-beta2/kvi_ircmask.h -include/kvirc/3.0.0-beta2/kvi_ircserverdb.h -include/kvirc/3.0.0-beta2/kvi_ircserver.h -include/kvirc/3.0.0-beta2/kvi_ircuserdb.h -include/kvirc/3.0.0-beta2/kvi_mirccntrl.h -include/kvirc/3.0.0-beta2/kvi_nickserv.h -include/kvirc/3.0.0-beta2/kvi_dns.h -include/kvirc/3.0.0-beta2/kvi_http.h -include/kvirc/3.0.0-beta2/kvi_netutils.h -include/kvirc/3.0.0-beta2/kvi_socket.h -include/kvirc/3.0.0-beta2/kvi_sockettype.h -include/kvirc/3.0.0-beta2/kvi_ssl.h -include/kvirc/3.0.0-beta2/kvi_url.h -include/kvirc/3.0.0-beta2/kvi_env.h -include/kvirc/3.0.0-beta2/kvi_library.h -include/kvirc/3.0.0-beta2/kvi_locale.h -include/kvirc/3.0.0-beta2/kvi_process.h -include/kvirc/3.0.0-beta2/kvi_thread.h -include/kvirc/3.0.0-beta2/kvi_time.h -include/kvirc/3.0.0-beta2/kvi_tal_application.h -include/kvirc/3.0.0-beta2/kvi_tal_application_kde.h -include/kvirc/3.0.0-beta2/kvi_tal_application_qt.h -include/kvirc/3.0.0-beta2/kvi_tal_mainwindow.h -include/kvirc/3.0.0-beta2/kvi_tal_mainwindow_kde.h -include/kvirc/3.0.0-beta2/kvi_tal_mainwindow_qt.h -include/kvirc/3.0.0-beta2/kvi_tal_menubar.h -include/kvirc/3.0.0-beta2/kvi_tal_menubar_kde.h -include/kvirc/3.0.0-beta2/kvi_tal_menubar_qt.h -include/kvirc/3.0.0-beta2/kvi_tal_toolbar.h -include/kvirc/3.0.0-beta2/kvi_tal_toolbar_kde.h -include/kvirc/3.0.0-beta2/kvi_tal_toolbar_qt.h -include/kvirc/3.0.0-beta2/kvi_tal_toolbardocktype.h -include/kvirc/3.0.0-beta2/kvi_app.h -include/kvirc/3.0.0-beta2/kvi_iconmanager.h -include/kvirc/3.0.0-beta2/kvi_internalcmd.h -include/kvirc/3.0.0-beta2/kvi_ipc.h -include/kvirc/3.0.0-beta2/kvi_irclink.h -include/kvirc/3.0.0-beta2/kvi_module.h -include/kvirc/3.0.0-beta2/kvi_moduleextension.h -include/kvirc/3.0.0-beta2/kvi_lagmeter.h -include/kvirc/3.0.0-beta2/kvi_modulemanager.h -include/kvirc/3.0.0-beta2/kvi_notifylist.h -include/kvirc/3.0.0-beta2/kvi_options.h -include/kvirc/3.0.0-beta2/kvi_out.h -include/kvirc/3.0.0-beta2/kvi_sslmaster.h -include/kvirc/3.0.0-beta2/kvi_texticonmanager.h -include/kvirc/3.0.0-beta2/kvi_antispam.h -include/kvirc/3.0.0-beta2/kvi_ircmessage.h -include/kvirc/3.0.0-beta2/kvi_numeric.h -include/kvirc/3.0.0-beta2/kvi_sparser.h -include/kvirc/3.0.0-beta2/kvi_channel.h -include/kvirc/3.0.0-beta2/kvi_colorwin.h -include/kvirc/3.0.0-beta2/kvi_console.h -include/kvirc/3.0.0-beta2/kvi_cryptcontroller.h -include/kvirc/3.0.0-beta2/kvi_filedialog.h -include/kvirc/3.0.0-beta2/kvi_ctcppagedialog.h -include/kvirc/3.0.0-beta2/kvi_dynamictooltip.h -include/kvirc/3.0.0-beta2/kvi_frame.h -include/kvirc/3.0.0-beta2/kvi_historywin.h -include/kvirc/3.0.0-beta2/kvi_imagedialog.h -include/kvirc/3.0.0-beta2/kvi_input.h -include/kvirc/3.0.0-beta2/kvi_ipeditor.h -include/kvirc/3.0.0-beta2/kvi_irctoolbar.h -include/kvirc/3.0.0-beta2/kvi_ircview.h -include/kvirc/3.0.0-beta2/kvi_maskeditor.h -include/kvirc/3.0.0-beta2/kvi_mdichild.h -include/kvirc/3.0.0-beta2/kvi_mdimanager.h -include/kvirc/3.0.0-beta2/kvi_menubar.h -include/kvirc/3.0.0-beta2/kvi_modeeditor.h -include/kvirc/3.0.0-beta2/kvi_moduleextensiontoolbar.h -include/kvirc/3.0.0-beta2/kvi_msgbox.h -include/kvirc/3.0.0-beta2/kvi_optionswidget.h -include/kvirc/3.0.0-beta2/kvi_query.h -include/kvirc/3.0.0-beta2/kvi_scriptbutton.h -include/kvirc/3.0.0-beta2/kvi_scripteditor.h -include/kvirc/3.0.0-beta2/kvi_selectors.h -include/kvirc/3.0.0-beta2/kvi_splash.h -include/kvirc/3.0.0-beta2/kvi_taskbar.h -include/kvirc/3.0.0-beta2/kvi_texticonwin.h -include/kvirc/3.0.0-beta2/kvi_themedlabel.h -include/kvirc/3.0.0-beta2/kvi_toolbar.h -include/kvirc/3.0.0-beta2/kvi_topicw.h -include/kvirc/3.0.0-beta2/kvi_userlistview.h -include/kvirc/3.0.0-beta2/kvi_window.h -include/kvirc/3.0.0-beta2/kvi_alias.h -include/kvirc/3.0.0-beta2/kvi_aliasmanager.h -include/kvirc/3.0.0-beta2/kvi_command.h -include/kvirc/3.0.0-beta2/kvi_event.h -include/kvirc/3.0.0-beta2/kvi_eventhandler.h -include/kvirc/3.0.0-beta2/kvi_exprtree.h -include/kvirc/3.0.0-beta2/kvi_ircurl.h -include/kvirc/3.0.0-beta2/kvi_popupmanager.h -include/kvirc/3.0.0-beta2/kvi_popupmenu.h -include/kvirc/3.0.0-beta2/kvi_scriptobject.h -include/kvirc/3.0.0-beta2/kvi_scripttoolbar.h -include/kvirc/3.0.0-beta2/kvi_scripttoolbar_button.h -include/kvirc/3.0.0-beta2/kvi_scripttoolbar_definition.h -include/kvirc/3.0.0-beta2/kvi_scripttoolbar_item.h -include/kvirc/3.0.0-beta2/kvi_scripttoolbar_itemdefinition.h -include/kvirc/3.0.0-beta2/kvi_scripttoolbar_manager.h -include/kvirc/3.0.0-beta2/kvi_timermanager.h -include/kvirc/3.0.0-beta2/kvi_uparser.h -include/kvirc/3.0.0-beta2/kvi_configstatus.h -lib/libkvilib.so.3 -lib/libkvilib.so +bin/kvirc-config +include/kvirc/%%VER%%/kvi_antispam.h +include/kvirc/%%VER%%/kvi_app.h +include/kvirc/%%VER%%/kvi_avatar.h +include/kvirc/%%VER%%/kvi_avatarcache.h +include/kvirc/%%VER%%/kvi_bswap.h +include/kvirc/%%VER%%/kvi_channel.h +include/kvirc/%%VER%%/kvi_cmdformatter.h +include/kvirc/%%VER%%/kvi_colorwin.h +include/kvirc/%%VER%%/kvi_command.h +include/kvirc/%%VER%%/kvi_config.h +include/kvirc/%%VER%%/kvi_confignames.h +include/kvirc/%%VER%%/kvi_configstatus.h +include/kvirc/%%VER%%/kvi_console.h +include/kvirc/%%VER%%/kvi_crypt.h +include/kvirc/%%VER%%/kvi_cryptcontroller.h +include/kvirc/%%VER%%/kvi_ctcppagedialog.h +include/kvirc/%%VER%%/kvi_databuffer.h +include/kvirc/%%VER%%/kvi_datacontainer.h +include/kvirc/%%VER%%/kvi_debug.h +include/kvirc/%%VER%%/kvi_defaults.h +include/kvirc/%%VER%%/kvi_dns.h +include/kvirc/%%VER%%/kvi_dynamictooltip.h +include/kvirc/%%VER%%/kvi_env.h +include/kvirc/%%VER%%/kvi_error.h +include/kvirc/%%VER%%/kvi_event.h +include/kvirc/%%VER%%/kvi_eventhandler.h +include/kvirc/%%VER%%/kvi_exprtree.h +include/kvirc/%%VER%%/kvi_file.h +include/kvirc/%%VER%%/kvi_filedialog.h +include/kvirc/%%VER%%/kvi_filetransfer.h +include/kvirc/%%VER%%/kvi_fileutils.h +include/kvirc/%%VER%%/kvi_frame.h +include/kvirc/%%VER%%/kvi_garbage.h +include/kvirc/%%VER%%/kvi_heapobject.h +include/kvirc/%%VER%%/kvi_historywin.h +include/kvirc/%%VER%%/kvi_http.h +include/kvirc/%%VER%%/kvi_iconmanager.h +include/kvirc/%%VER%%/kvi_imagedialog.h +include/kvirc/%%VER%%/kvi_imagelib.h +include/kvirc/%%VER%%/kvi_input.h +include/kvirc/%%VER%%/kvi_internalcmd.h +include/kvirc/%%VER%%/kvi_inttypes.h +include/kvirc/%%VER%%/kvi_ipc.h +include/kvirc/%%VER%%/kvi_ipeditor.h +include/kvirc/%%VER%%/kvi_ircconnection.h +include/kvirc/%%VER%%/kvi_irccontext.h +include/kvirc/%%VER%%/kvi_irclink.h +include/kvirc/%%VER%%/kvi_ircmask.h +include/kvirc/%%VER%%/kvi_ircmessage.h +include/kvirc/%%VER%%/kvi_ircserver.h +include/kvirc/%%VER%%/kvi_ircserverdb.h +include/kvirc/%%VER%%/kvi_irctoolbar.h +include/kvirc/%%VER%%/kvi_ircurl.h +include/kvirc/%%VER%%/kvi_ircuserdb.h +include/kvirc/%%VER%%/kvi_ircview.h +include/kvirc/%%VER%%/kvi_kvs.h +include/kvirc/%%VER%%/kvi_kvs_aliasmanager.h +include/kvirc/%%VER%%/kvi_kvs_array.h +include/kvirc/%%VER%%/kvi_kvs_corecallbackcommands.h +include/kvirc/%%VER%%/kvi_kvs_corefunctions.h +include/kvirc/%%VER%%/kvi_kvs_coresimplecommands.h +include/kvirc/%%VER%%/kvi_kvs_event.h +include/kvirc/%%VER%%/kvi_kvs_eventhandler.h +include/kvirc/%%VER%%/kvi_kvs_eventmanager.h +include/kvirc/%%VER%%/kvi_kvs_eventtable.h +include/kvirc/%%VER%%/kvi_kvs_hash.h +include/kvirc/%%VER%%/kvi_kvs_kernel.h +include/kvirc/%%VER%%/kvi_kvs_moduleinterface.h +include/kvirc/%%VER%%/kvi_kvs_object.h +include/kvirc/%%VER%%/kvi_kvs_parser.h +include/kvirc/%%VER%%/kvi_kvs_parser_macros.h +include/kvirc/%%VER%%/kvi_kvs_popupmanager.h +include/kvirc/%%VER%%/kvi_kvs_popupmenu.h +include/kvirc/%%VER%%/kvi_kvs_report.h +include/kvirc/%%VER%%/kvi_kvs_reporttarget.h +include/kvirc/%%VER%%/kvi_kvs_runtimecontext.h +include/kvirc/%%VER%%/kvi_kvs_rwevaluationresult.h +include/kvirc/%%VER%%/kvi_kvs_script.h +include/kvirc/%%VER%%/kvi_kvs_switchlist.h +include/kvirc/%%VER%%/kvi_kvs_timermanager.h +include/kvirc/%%VER%%/kvi_kvs_treenode.h +include/kvirc/%%VER%%/kvi_kvs_treenode_aliasfunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_aliassimplecommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_arraycount.h +include/kvirc/%%VER%%/kvi_kvs_treenode_arrayelement.h +include/kvirc/%%VER%%/kvi_kvs_treenode_arrayorhashelement.h +include/kvirc/%%VER%%/kvi_kvs_treenode_arrayreferenceassert.h +include/kvirc/%%VER%%/kvi_kvs_treenode_base.h +include/kvirc/%%VER%%/kvi_kvs_treenode_baseobjectfunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_callbackcommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_command.h +include/kvirc/%%VER%%/kvi_kvs_treenode_commandevaluation.h +include/kvirc/%%VER%%/kvi_kvs_treenode_commandwithparameters.h +include/kvirc/%%VER%%/kvi_kvs_treenode_compositedata.h +include/kvirc/%%VER%%/kvi_kvs_treenode_constantdata.h +include/kvirc/%%VER%%/kvi_kvs_treenode_corecallbackcommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_corefunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_coresimplecommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_data.h +include/kvirc/%%VER%%/kvi_kvs_treenode_datalist.h +include/kvirc/%%VER%%/kvi_kvs_treenode_expression.h +include/kvirc/%%VER%%/kvi_kvs_treenode_expressionreturn.h +include/kvirc/%%VER%%/kvi_kvs_treenode_extendedscopevariable.h +include/kvirc/%%VER%%/kvi_kvs_treenode_functioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_globalvariable.h +include/kvirc/%%VER%%/kvi_kvs_treenode_hashcount.h +include/kvirc/%%VER%%/kvi_kvs_treenode_hashelement.h +include/kvirc/%%VER%%/kvi_kvs_treenode_hashreferenceassert.h +include/kvirc/%%VER%%/kvi_kvs_treenode_indirectdata.h +include/kvirc/%%VER%%/kvi_kvs_treenode_instruction.h +include/kvirc/%%VER%%/kvi_kvs_treenode_instructionblock.h +include/kvirc/%%VER%%/kvi_kvs_treenode_localvariable.h +include/kvirc/%%VER%%/kvi_kvs_treenode_modulecallbackcommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_modulefunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_modulesimplecommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_multipleparameteridentifier.h +include/kvirc/%%VER%%/kvi_kvs_treenode_objectfunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_operation.h +include/kvirc/%%VER%%/kvi_kvs_treenode_parameterreturn.h +include/kvirc/%%VER%%/kvi_kvs_treenode_scopeoperator.h +include/kvirc/%%VER%%/kvi_kvs_treenode_simplecommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_singleparameteridentifier.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommand.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommandbreak.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommanddefpopup.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommanddo.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommandfor.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommandforeach.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommandif.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommandswitch.h +include/kvirc/%%VER%%/kvi_kvs_treenode_specialcommandwhile.h +include/kvirc/%%VER%%/kvi_kvs_treenode_switchlist.h +include/kvirc/%%VER%%/kvi_kvs_treenode_thisobjectfunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_treenode_variable.h +include/kvirc/%%VER%%/kvi_kvs_treenode_voidfunctioncall.h +include/kvirc/%%VER%%/kvi_kvs_variant.h +include/kvirc/%%VER%%/kvi_kvs_variantlist.h +include/kvirc/%%VER%%/kvi_lagmeter.h +include/kvirc/%%VER%%/kvi_library.h +include/kvirc/%%VER%%/kvi_list.h +include/kvirc/%%VER%%/kvi_locale.h +include/kvirc/%%VER%%/kvi_malloc.h +include/kvirc/%%VER%%/kvi_maskeditor.h +include/kvirc/%%VER%%/kvi_md5.h +include/kvirc/%%VER%%/kvi_mdicaption.h +include/kvirc/%%VER%%/kvi_mdichild.h +include/kvirc/%%VER%%/kvi_mdimanager.h +include/kvirc/%%VER%%/kvi_mediatype.h +include/kvirc/%%VER%%/kvi_memmove.h +include/kvirc/%%VER%%/kvi_menubar.h +include/kvirc/%%VER%%/kvi_mexlinkfilter.h +include/kvirc/%%VER%%/kvi_mexserverimport.h +include/kvirc/%%VER%%/kvi_mextoolbar.h +include/kvirc/%%VER%%/kvi_mirccntrl.h +include/kvirc/%%VER%%/kvi_modeeditor.h +include/kvirc/%%VER%%/kvi_module.h +include/kvirc/%%VER%%/kvi_moduleextension.h +include/kvirc/%%VER%%/kvi_modulemanager.h +include/kvirc/%%VER%%/kvi_msgbox.h +include/kvirc/%%VER%%/kvi_msgtype.h +include/kvirc/%%VER%%/kvi_netutils.h +include/kvirc/%%VER%%/kvi_nickserv.h +include/kvirc/%%VER%%/kvi_notifylist.h +include/kvirc/%%VER%%/kvi_numeric.h +include/kvirc/%%VER%%/kvi_options.h +include/kvirc/%%VER%%/kvi_optionswidget.h +include/kvirc/%%VER%%/kvi_out.h +include/kvirc/%%VER%%/kvi_parameterlist.h +include/kvirc/%%VER%%/kvi_pixmap.h +include/kvirc/%%VER%%/kvi_popupmanager.h +include/kvirc/%%VER%%/kvi_popupmenu.h +include/kvirc/%%VER%%/kvi_processmanager.h +include/kvirc/%%VER%%/kvi_proxydb.h +include/kvirc/%%VER%%/kvi_qstring.h +include/kvirc/%%VER%%/kvi_query.h +include/kvirc/%%VER%%/kvi_regchan.h +include/kvirc/%%VER%%/kvi_regusersdb.h +include/kvirc/%%VER%%/kvi_scriptbutton.h +include/kvirc/%%VER%%/kvi_scripteditor.h +include/kvirc/%%VER%%/kvi_scriptobject.h +include/kvirc/%%VER%%/kvi_scripttoolbar.h +include/kvirc/%%VER%%/kvi_scripttoolbar_button.h +include/kvirc/%%VER%%/kvi_scripttoolbar_definition.h +include/kvirc/%%VER%%/kvi_scripttoolbar_item.h +include/kvirc/%%VER%%/kvi_scripttoolbar_itemdefinition.h +include/kvirc/%%VER%%/kvi_scripttoolbar_manager.h +include/kvirc/%%VER%%/kvi_selectors.h +include/kvirc/%%VER%%/kvi_settings.h +include/kvirc/%%VER%%/kvi_sharedfiles.h +include/kvirc/%%VER%%/kvi_socket.h +include/kvirc/%%VER%%/kvi_sockettype.h +include/kvirc/%%VER%%/kvi_sparser.h +include/kvirc/%%VER%%/kvi_splash.h +include/kvirc/%%VER%%/kvi_ssl.h +include/kvirc/%%VER%%/kvi_sslmaster.h +include/kvirc/%%VER%%/kvi_stdarg.h +include/kvirc/%%VER%%/kvi_strasm.h +include/kvirc/%%VER%%/kvi_string.h +include/kvirc/%%VER%%/kvi_stringarray.h +include/kvirc/%%VER%%/kvi_stringconversion.h +include/kvirc/%%VER%%/kvi_tal_application.h +include/kvirc/%%VER%%/kvi_tal_application_kde.h +include/kvirc/%%VER%%/kvi_tal_application_qt.h +include/kvirc/%%VER%%/kvi_tal_filedialog.h +include/kvirc/%%VER%%/kvi_tal_filedialog_kde.h +include/kvirc/%%VER%%/kvi_tal_filedialog_qt.h +include/kvirc/%%VER%%/kvi_tal_mainwindow.h +include/kvirc/%%VER%%/kvi_tal_mainwindow_kde.h +include/kvirc/%%VER%%/kvi_tal_mainwindow_qt.h +include/kvirc/%%VER%%/kvi_tal_menubar.h +include/kvirc/%%VER%%/kvi_tal_menubar_kde.h +include/kvirc/%%VER%%/kvi_tal_menubar_qt.h +include/kvirc/%%VER%%/kvi_tal_toolbar.h +include/kvirc/%%VER%%/kvi_tal_toolbar_kde.h +include/kvirc/%%VER%%/kvi_tal_toolbar_qt.h +include/kvirc/%%VER%%/kvi_tal_toolbardocktype.h +include/kvirc/%%VER%%/kvi_taskbar.h +include/kvirc/%%VER%%/kvi_textencoding.h +include/kvirc/%%VER%%/kvi_texticonmanager.h +include/kvirc/%%VER%%/kvi_texticonwin.h +include/kvirc/%%VER%%/kvi_themedlabel.h +include/kvirc/%%VER%%/kvi_thread.h +include/kvirc/%%VER%%/kvi_time.h +include/kvirc/%%VER%%/kvi_timermanager.h +include/kvirc/%%VER%%/kvi_toolbar.h +include/kvirc/%%VER%%/kvi_topicw.h +include/kvirc/%%VER%%/kvi_uparser.h +include/kvirc/%%VER%%/kvi_url.h +include/kvirc/%%VER%%/kvi_useraction.h +include/kvirc/%%VER%%/kvi_userlistview.h +include/kvirc/%%VER%%/kvi_wincfg.h +include/kvirc/%%VER%%/kvi_window.h +include/kvirc/%%VER%%/kvi_wstring.h +include/kvirc/%%VER%%/kvi_wstring_config.h +include/kvirc/%%VER%%/kvi_wstring_external.h +include/kvirc/%%VER%%/kvi_wstring_functions.h +include/kvirc/%%VER%%/kvi_wstring_wchar.h +include/kvirc/%%VER%%/kvi_wstring_wslen.h +include/kvirc/%%VER%%/kvi_xlib.h lib/libkvilib.la -share/mimelnk/text/x-kvs.desktop -share/applnk/Internet/kvirc.desktop -share/icons/hicolor/32x32/mimetypes/kvs.png -share/icons/hicolor/32x32/apps/kvirc.png -share/icons/hicolor/48x48/mimetypes/kvs.png -share/icons/hicolor/48x48/apps/kvirc.png -share/services/irc.protocol -share/services/irc6.protocol -share/kvirc/3.0.0-beta2/config/serverdb.kvc -share/kvirc/3.0.0-beta2/config/texticons.kvc -share/kvirc/3.0.0-beta2/config/modules/libkvitip.kvc -share/kvirc/3.0.0-beta2/defscript/pics/default_channelsjoin.png -share/kvirc/3.0.0-beta2/defscript/pics/default_generaloptions.png -share/kvirc/3.0.0-beta2/defscript/pics/default_identityoptions.png -share/kvirc/3.0.0-beta2/defscript/pics/default_serveroptions.png -share/kvirc/3.0.0-beta2/defscript/default.kvs -share/kvirc/3.0.0-beta2/help/en/doc_ircintro.html -share/kvirc/3.0.0-beta2/help/en/doc_kvircintro.html -share/kvirc/3.0.0-beta2/help/en/doc_rfc2812.html -share/kvirc/3.0.0-beta2/help/en/doc_crypt_engines.html -share/kvirc/3.0.0-beta2/help/en/doc_file_offers.html -share/kvirc/3.0.0-beta2/help/en/doc_registered_users.html -share/kvirc/3.0.0-beta2/help/en/doc_ctcp_avatar.html -share/kvirc/3.0.0-beta2/help/en/doc_irc_masks.html -share/kvirc/3.0.0-beta2/help/en/doc_nickserv_proto.html -share/kvirc/3.0.0-beta2/help/en/doc_image_id.html -share/kvirc/3.0.0-beta2/help/en/doc_modules.html -share/kvirc/3.0.0-beta2/help/en/doc_notify_list.html -share/kvirc/3.0.0-beta2/help/en/doc_antispam.html -share/kvirc/3.0.0-beta2/help/en/doc_ctcp_handling.html -share/kvirc/3.0.0-beta2/help/en/doc_escape_sequences.html -share/kvirc/3.0.0-beta2/help/en/doc_aliases.html -share/kvirc/3.0.0-beta2/help/en/doc_events.html -share/kvirc/3.0.0-beta2/help/en/event_onkvircstartup.html -share/kvirc/3.0.0-beta2/help/en/event_onkvircshutdown.html -share/kvirc/3.0.0-beta2/help/en/event_onirccontextcreated.html -share/kvirc/3.0.0-beta2/help/en/event_onirccontextdestroyed.html -share/kvirc/3.0.0-beta2/help/en/event_onircconnectionestabilished.html -share/kvirc/3.0.0-beta2/help/en/event_onircconnectionterminated.html -share/kvirc/3.0.0-beta2/help/en/event_onirc.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelnickpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelnickdefaultactionrequest.html -share/kvirc/3.0.0-beta2/help/en/event_onframewindowcreated.html -share/kvirc/3.0.0-beta2/help/en/event_onframewindowdestroyed.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onconsolepopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onquerypopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelsync.html -share/kvirc/3.0.0-beta2/help/en/event_onurl.html -share/kvirc/3.0.0-beta2/help/en/event_onwindowpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onhostlinkpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onurllinkpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onserverlinkpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onchannellinkpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onnicklinkpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onquerynickpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onquerynickdefaultactionrequest.html -share/kvirc/3.0.0-beta2/help/en/event_onnicklinkdefaultactionrequest.html -share/kvirc/3.0.0-beta2/help/en/event_ontextviewdoubleclicked.html -share/kvirc/3.0.0-beta2/help/en/event_onnotifylistdefaultactionrequest.html -share/kvirc/3.0.0-beta2/help/en/event_onnotifylistpopuprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onping.html -share/kvirc/3.0.0-beta2/help/en/event_onmejoin.html -share/kvirc/3.0.0-beta2/help/en/event_onjoin.html -share/kvirc/3.0.0-beta2/help/en/event_ontopic.html -share/kvirc/3.0.0-beta2/help/en/event_onmepart.html -share/kvirc/3.0.0-beta2/help/en/event_onpart.html -share/kvirc/3.0.0-beta2/help/en/event_onquit.html -share/kvirc/3.0.0-beta2/help/en/event_onmekick.html -share/kvirc/3.0.0-beta2/help/en/event_onusermode.html -share/kvirc/3.0.0-beta2/help/en/event_onkick.html -share/kvirc/3.0.0-beta2/help/en/event_onmeaway.html -share/kvirc/3.0.0-beta2/help/en/event_onmeback.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelwindowcreated.html -share/kvirc/3.0.0-beta2/help/en/event_onquerywindowcreated.html -share/kvirc/3.0.0-beta2/help/en/event_onban.html -share/kvirc/3.0.0-beta2/help/en/event_onunban.html -share/kvirc/3.0.0-beta2/help/en/event_onmeban.html -share/kvirc/3.0.0-beta2/help/en/event_onmeunban.html -share/kvirc/3.0.0-beta2/help/en/event_onbanexception.html -share/kvirc/3.0.0-beta2/help/en/event_onbanexceptionremove.html -share/kvirc/3.0.0-beta2/help/en/event_onmebanexception.html -share/kvirc/3.0.0-beta2/help/en/event_onmebanexceptionremove.html -share/kvirc/3.0.0-beta2/help/en/event_onop.html -share/kvirc/3.0.0-beta2/help/en/event_ondeop.html -share/kvirc/3.0.0-beta2/help/en/event_onmeop.html -share/kvirc/3.0.0-beta2/help/en/event_onmedeop.html -share/kvirc/3.0.0-beta2/help/en/event_onlimitset.html -share/kvirc/3.0.0-beta2/help/en/event_onlimitunset.html -share/kvirc/3.0.0-beta2/help/en/event_onkeyset.html -share/kvirc/3.0.0-beta2/help/en/event_onkeyunset.html -share/kvirc/3.0.0-beta2/help/en/event_oninvite.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelmessage.html -share/kvirc/3.0.0-beta2/help/en/event_onquerymessage.html -share/kvirc/3.0.0-beta2/help/en/event_onvoice.html -share/kvirc/3.0.0-beta2/help/en/event_ondevoice.html -share/kvirc/3.0.0-beta2/help/en/event_onmevoice.html -share/kvirc/3.0.0-beta2/help/en/event_onmedevoice.html -share/kvirc/3.0.0-beta2/help/en/event_onnickchange.html -share/kvirc/3.0.0-beta2/help/en/event_onmenickchange.html -share/kvirc/3.0.0-beta2/help/en/event_onctcprequest.html -share/kvirc/3.0.0-beta2/help/en/event_onctcpreply.html -share/kvirc/3.0.0-beta2/help/en/event_onunhandledliteral.html -share/kvirc/3.0.0-beta2/help/en/event_onmehalfop.html -share/kvirc/3.0.0-beta2/help/en/event_onmedehalfop.html -share/kvirc/3.0.0-beta2/help/en/event_onhalfop.html -share/kvirc/3.0.0-beta2/help/en/event_ondehalfop.html -share/kvirc/3.0.0-beta2/help/en/event_oninviteexception.html -share/kvirc/3.0.0-beta2/help/en/event_oninviteexceptionremove.html -share/kvirc/3.0.0-beta2/help/en/event_onmeinviteexception.html -share/kvirc/3.0.0-beta2/help/en/event_onmeinviteexceptionremove.html -share/kvirc/3.0.0-beta2/help/en/event_onaction.html -share/kvirc/3.0.0-beta2/help/en/event_onctcpflood.html -share/kvirc/3.0.0-beta2/help/en/event_onchannelnotice.html -share/kvirc/3.0.0-beta2/help/en/event_onservernotice.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchatwindowcreated.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchatconnectioninprogress.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchatconnected.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchatmessage.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchaterror.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchatdisconnected.html -share/kvirc/3.0.0-beta2/help/en/event_ondccchatwindowclosing.html -share/kvirc/3.0.0-beta2/help/en/event_onaccelkeypressed.html -share/kvirc/3.0.0-beta2/help/en/event_onhighlight.html -share/kvirc/3.0.0-beta2/help/en/event_onwindowactivated.html -share/kvirc/3.0.0-beta2/help/en/event_onnotifyonline.html -share/kvirc/3.0.0-beta2/help/en/event_onpong.html -share/kvirc/3.0.0-beta2/help/en/event_onnotifyoffline.html -share/kvirc/3.0.0-beta2/help/en/event_onlagalarmtimeup.html -share/kvirc/3.0.0-beta2/help/en/event_onlagalarmtimedown.html -share/kvirc/3.0.0-beta2/help/en/event_onlagcheck.html -share/kvirc/3.0.0-beta2/help/en/doc_objects.html -share/kvirc/3.0.0-beta2/help/en/class_object.html -share/kvirc/3.0.0-beta2/help/en/doc_language_overview.html -share/kvirc/3.0.0-beta2/help/en/doc_advanced_scripting.html -share/kvirc/3.0.0-beta2/help/en/doc_coding_tips.html -share/kvirc/3.0.0-beta2/help/en/doc_syntactic_rules.html -share/kvirc/3.0.0-beta2/help/en/doc_command_rebinding.html -share/kvirc/3.0.0-beta2/help/en/doc_data_types.html -share/kvirc/3.0.0-beta2/help/en/fnc_calc.html -share/kvirc/3.0.0-beta2/help/en/doc_window_naming_conventions.html -share/kvirc/3.0.0-beta2/help/en/cmd_host.html -share/kvirc/3.0.0-beta2/help/en/doc_connection_dependant_commands.html -share/kvirc/3.0.0-beta2/help/en/cmd_echo.html -share/kvirc/3.0.0-beta2/help/en/cmd_query.html -share/kvirc/3.0.0-beta2/help/en/cmd_raw.html -share/kvirc/3.0.0-beta2/help/en/cmd_quote.html -share/kvirc/3.0.0-beta2/help/en/cmd_ctcp.html -share/kvirc/3.0.0-beta2/help/en/cmd_nick.html -share/kvirc/3.0.0-beta2/help/en/cmd_privmsg.html -share/kvirc/3.0.0-beta2/help/en/cmd_msg.html -share/kvirc/3.0.0-beta2/help/en/cmd_notice.html -share/kvirc/3.0.0-beta2/help/en/cmd_join.html -share/kvirc/3.0.0-beta2/help/en/cmd_part.html -share/kvirc/3.0.0-beta2/help/en/cmd_leave.html -share/kvirc/3.0.0-beta2/help/en/cmd_topic.html -share/kvirc/3.0.0-beta2/help/en/cmd_op.html -share/kvirc/3.0.0-beta2/help/en/cmd_deop.html -share/kvirc/3.0.0-beta2/help/en/cmd_voice.html -share/kvirc/3.0.0-beta2/help/en/cmd_devoice.html -share/kvirc/3.0.0-beta2/help/en/cmd_ban.html -share/kvirc/3.0.0-beta2/help/en/cmd_unban.html -share/kvirc/3.0.0-beta2/help/en/cmd_mode.html -share/kvirc/3.0.0-beta2/help/en/cmd_kick.html -share/kvirc/3.0.0-beta2/help/en/cmd_setreturn.html -share/kvirc/3.0.0-beta2/help/en/cmd_return.html -share/kvirc/3.0.0-beta2/help/en/cmd_srand.html -share/kvirc/3.0.0-beta2/help/en/cmd_me.html -share/kvirc/3.0.0-beta2/help/en/cmd_switch.html -share/kvirc/3.0.0-beta2/help/en/cmd_if.html -share/kvirc/3.0.0-beta2/help/en/cmd_break.html -share/kvirc/3.0.0-beta2/help/en/cmd_raise.html -share/kvirc/3.0.0-beta2/help/en/cmd_while.html -share/kvirc/3.0.0-beta2/help/en/cmd_delete.html -share/kvirc/3.0.0-beta2/help/en/cmd_destroy.html -share/kvirc/3.0.0-beta2/help/en/cmd_parse.html -share/kvirc/3.0.0-beta2/help/en/cmd_class.html -share/kvirc/3.0.0-beta2/help/en/cmd_killclass.html -share/kvirc/3.0.0-beta2/help/en/cmd_clearobjects.html -share/kvirc/3.0.0-beta2/help/en/cmd_privateimpl.html -share/kvirc/3.0.0-beta2/help/en/cmd_connect.html -share/kvirc/3.0.0-beta2/help/en/cmd_disconnect.html -share/kvirc/3.0.0-beta2/help/en/cmd_server.html -share/kvirc/3.0.0-beta2/help/en/cmd_popup.html -share/kvirc/3.0.0-beta2/help/en/cmd_setmenu.html -share/kvirc/3.0.0-beta2/help/en/cmd_defpopup.html -share/kvirc/3.0.0-beta2/help/en/cmd_timer.html -share/kvirc/3.0.0-beta2/help/en/cmd_killtimer.html -share/kvirc/3.0.0-beta2/help/en/cmd_event.html -share/kvirc/3.0.0-beta2/help/en/cmd_eventctl.html -share/kvirc/3.0.0-beta2/help/en/cmd_whois.html -share/kvirc/3.0.0-beta2/help/en/cmd_whowas.html -share/kvirc/3.0.0-beta2/help/en/cmd_avatar.html -share/kvirc/3.0.0-beta2/help/en/cmd_awhois.html -share/kvirc/3.0.0-beta2/help/en/cmd_alias.html -share/kvirc/3.0.0-beta2/help/en/cmd_option.html -share/kvirc/3.0.0-beta2/help/en/cmd_halt.html -share/kvirc/3.0.0-beta2/help/en/doc_rfc2821wrappers.html -share/kvirc/3.0.0-beta2/help/en/cmd_who.html -share/kvirc/3.0.0-beta2/help/en/cmd_oper.html -share/kvirc/3.0.0-beta2/help/en/cmd_service.html -share/kvirc/3.0.0-beta2/help/en/cmd_squit.html -share/kvirc/3.0.0-beta2/help/en/cmd_list.html -share/kvirc/3.0.0-beta2/help/en/cmd_invite.html -share/kvirc/3.0.0-beta2/help/en/cmd_motd.html -share/kvirc/3.0.0-beta2/help/en/cmd_lusers.html -share/kvirc/3.0.0-beta2/help/en/cmd_version.html -share/kvirc/3.0.0-beta2/help/en/cmd_stats.html -share/kvirc/3.0.0-beta2/help/en/cmd_links.html -share/kvirc/3.0.0-beta2/help/en/cmd_time.html -share/kvirc/3.0.0-beta2/help/en/cmd_trace.html -share/kvirc/3.0.0-beta2/help/en/cmd_pass.html -share/kvirc/3.0.0-beta2/help/en/cmd_admin.html -share/kvirc/3.0.0-beta2/help/en/cmd_info.html -share/kvirc/3.0.0-beta2/help/en/cmd_squery.html -share/kvirc/3.0.0-beta2/help/en/cmd_away.html -share/kvirc/3.0.0-beta2/help/en/cmd_back.html -share/kvirc/3.0.0-beta2/help/en/cmd_help.html -share/kvirc/3.0.0-beta2/help/en/cmd_run.html -share/kvirc/3.0.0-beta2/help/en/cmd_sound.html -share/kvirc/3.0.0-beta2/help/en/cmd_play.html -share/kvirc/3.0.0-beta2/help/en/cmd_openurl.html -share/kvirc/3.0.0-beta2/help/en/cmd_quit.html -share/kvirc/3.0.0-beta2/help/en/cmd_clear.html -share/kvirc/3.0.0-beta2/help/en/cmd_beep.html -share/kvirc/3.0.0-beta2/help/en/cmd_addtarget.html -share/kvirc/3.0.0-beta2/help/en/cmd_deltarget.html -share/kvirc/3.0.0-beta2/help/en/cmd_buttonctl.html -share/kvirc/3.0.0-beta2/help/en/cmd_button.html -share/kvirc/3.0.0-beta2/help/en/cmd_eval.html -share/kvirc/3.0.0-beta2/help/en/cmd_for.html -share/kvirc/3.0.0-beta2/help/en/cmd_foreach.html -share/kvirc/3.0.0-beta2/help/en/fnc_base64toAscii.html -share/kvirc/3.0.0-beta2/help/en/fnc_hextoAscii.html -share/kvirc/3.0.0-beta2/help/en/fnc_caption.html -share/kvirc/3.0.0-beta2/help/en/fnc_target.html -share/kvirc/3.0.0-beta2/help/en/fnc_channel.html -share/kvirc/3.0.0-beta2/help/en/fnc_console.html -share/kvirc/3.0.0-beta2/help/en/fnc_active.html -share/kvirc/3.0.0-beta2/help/en/fnc_query.html -share/kvirc/3.0.0-beta2/help/en/fnc_context.html -share/kvirc/3.0.0-beta2/help/en/fnc_ic.html -share/kvirc/3.0.0-beta2/help/en/fnc_window.html -share/kvirc/3.0.0-beta2/help/en/fnc_new.html -share/kvirc/3.0.0-beta2/help/en/fnc_this.html -share/kvirc/3.0.0-beta2/help/en/fnc_$.html -share/kvirc/3.0.0-beta2/help/en/fnc_classdefined.html -share/kvirc/3.0.0-beta2/help/en/fnc_rand.html -share/kvirc/3.0.0-beta2/help/en/fnc_unixtime.html -share/kvirc/3.0.0-beta2/help/en/fnc_time.html -share/kvirc/3.0.0-beta2/help/en/fnc_selected.html -share/kvirc/3.0.0-beta2/help/en/fnc_ismeop.html -share/kvirc/3.0.0-beta2/help/en/fnc_ismevoice.html -share/kvirc/3.0.0-beta2/help/en/fnc_ismehalfop.html -share/kvirc/3.0.0-beta2/help/en/fnc_istimer.html -share/kvirc/3.0.0-beta2/help/en/fnc_option.html -share/kvirc/3.0.0-beta2/help/en/fnc_mask.html -share/kvirc/3.0.0-beta2/help/en/fnc_avatar.html -share/kvirc/3.0.0-beta2/help/en/fnc_away.html -share/kvirc/3.0.0-beta2/help/en/doc_isanyconsoleconnected.html -share/kvirc/3.0.0-beta2/help/en/fnc_iswellknown.html -share/kvirc/3.0.0-beta2/help/en/fnc_username.html -share/kvirc/3.0.0-beta2/help/en/fnc_hostname.html -share/kvirc/3.0.0-beta2/help/en/fnc_server.html -share/kvirc/3.0.0-beta2/help/en/fnc_me.html -share/kvirc/3.0.0-beta2/help/en/fnc_fmtlink.html -share/kvirc/3.0.0-beta2/help/en/fnc_cr.html -share/kvirc/3.0.0-beta2/help/en/fnc_lf.html -share/kvirc/3.0.0-beta2/help/en/fnc_char.html -share/kvirc/3.0.0-beta2/help/en/fnc_ascii.html -share/kvirc/3.0.0-beta2/help/en/fnc_k.html -share/kvirc/3.0.0-beta2/help/en/fnc_b.html -share/kvirc/3.0.0-beta2/help/en/fnc_u.html -share/kvirc/3.0.0-beta2/help/en/fnc_r.html -share/kvirc/3.0.0-beta2/help/en/fnc_o.html -share/kvirc/3.0.0-beta2/help/en/fnc_split.html -share/kvirc/3.0.0-beta2/help/en/fnc_features.html -share/kvirc/3.0.0-beta2/help/en/doc_operators.html -share/kvirc/3.0.0-beta2/help/en/cmd_about.kvirc.html -share/kvirc/3.0.0-beta2/help/en/cmd_aliaseditor.open.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.name.html -share/kvirc/3.0.0-beta2/help/en/index.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.topic.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.topicsetby.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.topicsetat.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.usercount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.opcount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.voicecount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.halfopcount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.bancount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.banexceptioncount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.invitecount.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.ison.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.getflag.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.isop.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.isvoice.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.ishalfop.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.ismeop.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.mode.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.key.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.limit.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.users.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.banlist.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.banexceptionlist.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.invitelist.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.matchban.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.matchbanexception.html -share/kvirc/3.0.0-beta2/help/en/fnc_chan.matchinvite.html -share/kvirc/3.0.0-beta2/help/en/cmd_channelsjoin.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_clock.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_codetester.open.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.open.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.id.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.read.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.section.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.readonly.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.filename.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.hassection.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.sectionlist.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.keylist.html -share/kvirc/3.0.0-beta2/help/en/fnc_config.filelist.html -share/kvirc/3.0.0-beta2/help/en/cmd_config.close.html -share/kvirc/3.0.0-beta2/help/en/cmd_config.flush.html -share/kvirc/3.0.0-beta2/help/en/cmd_config.clear.html -share/kvirc/3.0.0-beta2/help/en/cmd_config.clearsection.html -share/kvirc/3.0.0-beta2/help/en/cmd_config.write.html -share/kvirc/3.0.0-beta2/help/en/cmd_config.setsection.html -share/kvirc/3.0.0-beta2/help/en/module_config.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.chat.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.send.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.recv.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.rsend.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.get.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.voice.html -share/kvirc/3.0.0-beta2/help/en/cmd_dcc.canvas.html -share/kvirc/3.0.0-beta2/help/en/doc_dcc_connection.html -share/kvirc/3.0.0-beta2/help/en/cmd_dialog.message.html -share/kvirc/3.0.0-beta2/help/en/cmd_dialog.textinput.html -share/kvirc/3.0.0-beta2/help/en/cmd_dialog.file.html -share/kvirc/3.0.0-beta2/help/en/cmd_dialog.image.html -share/kvirc/3.0.0-beta2/help/en/doc_noblockingdialogs.html -share/kvirc/3.0.0-beta2/help/en/cmd_editor.open.html -share/kvirc/3.0.0-beta2/help/en/module_editor.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.copy.html -share/kvirc/3.0.0-beta2/help/en/cmd_eventeditor.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.addimagepath.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.delimagepath.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.write.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.rename.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.mkdir.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.remove.html -share/kvirc/3.0.0-beta2/help/en/cmd_file.rmdir.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.exists.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.type.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.size.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.fixpath.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.ps.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.read.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.localdir.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.globaldir.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.extractpath.html -share/kvirc/3.0.0-beta2/help/en/fnc_file.extractfilename.html -share/kvirc/3.0.0-beta2/help/en/cmd_dockwidget.show.html -share/kvirc/3.0.0-beta2/help/en/cmd_dockwidget.hide.html -share/kvirc/3.0.0-beta2/help/en/fnc_dockwidget.isvisible.html -share/kvirc/3.0.0-beta2/help/en/cmd_help.search.html -share/kvirc/3.0.0-beta2/help/en/cmd_help.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_ident.start.html -share/kvirc/3.0.0-beta2/help/en/cmd_ident.stop.html -share/kvirc/3.0.0-beta2/help/en/cmd_iograph.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_lag.enable.html -share/kvirc/3.0.0-beta2/help/en/cmd_lag.disable.html -share/kvirc/3.0.0-beta2/help/en/fnc_$lag.lag.html -share/kvirc/3.0.0-beta2/help/en/fnc_lag.getinterval.html -share/kvirc/3.0.0-beta2/help/en/cmd_lag.setinterval.html -share/kvirc/3.0.0-beta2/help/en/fnc_lag.getalarmtime.html -share/kvirc/3.0.0-beta2/help/en/cmd_lag.setalarmtime.html -share/kvirc/3.0.0-beta2/help/en/module_lamerizer.html -share/kvirc/3.0.0-beta2/help/en/cmd_links.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_list.open.html -share/kvirc/3.0.0-beta2/help/en/module_log.html -share/kvirc/3.0.0-beta2/help/en/cmd_log.start.html -share/kvirc/3.0.0-beta2/help/en/cmd_log.stop.html -share/kvirc/3.0.0-beta2/help/en/cmd_log.flush.html -share/kvirc/3.0.0-beta2/help/en/fnc_log.file.html -share/kvirc/3.0.0-beta2/help/en/cmd_logview.open.html -share/kvirc/3.0.0-beta2/help/en/fnc_mask.match.html -share/kvirc/3.0.0-beta2/help/en/fnc_mask.nick.html -share/kvirc/3.0.0-beta2/help/en/fnc_mask.user.html -share/kvirc/3.0.0-beta2/help/en/fnc_mask.host.html -share/kvirc/3.0.0-beta2/help/en/fnc_mask.hasnumerichost.html -share/kvirc/3.0.0-beta2/help/en/module_mp3player.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.play.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.stop.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.next.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.prev.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.pause.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.quit.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_mp3player.addurl.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.gettitle.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.getfilename.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.getposition.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.getlength.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.gettime.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.getrate.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.getchannels.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.getfreq.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.isplaying.html -share/kvirc/3.0.0-beta2/help/en/fnc_mp3player.ispaused.html -share/kvirc/3.0.0-beta2/help/en/fnc_my.nick.html -share/kvirc/3.0.0-beta2/help/en/fnc_my.umode.html -share/kvirc/3.0.0-beta2/help/en/fnc_my.user.html -share/kvirc/3.0.0-beta2/help/en/fnc_my.host.html -share/kvirc/3.0.0-beta2/help/en/fnc_my.server.html -share/kvirc/3.0.0-beta2/help/en/fnc_my.network.html -share/kvirc/3.0.0-beta2/help/en/cmd_snd.play.html -share/kvirc/3.0.0-beta2/help/en/class_button.html -share/kvirc/3.0.0-beta2/help/en/class_checkbox.html -share/kvirc/3.0.0-beta2/help/en/class_combobox.html -share/kvirc/3.0.0-beta2/help/en/class_file.html -share/kvirc/3.0.0-beta2/help/en/class_label.html -share/kvirc/3.0.0-beta2/help/en/class_layout.html -share/kvirc/3.0.0-beta2/help/en/class_lineedit.html -share/kvirc/3.0.0-beta2/help/en/class_list.html -share/kvirc/3.0.0-beta2/help/en/class_menubar.html -share/kvirc/3.0.0-beta2/help/en/class_multilineedit.html -share/kvirc/3.0.0-beta2/help/en/class_socket.html -share/kvirc/3.0.0-beta2/help/en/class_string.html -share/kvirc/3.0.0-beta2/help/en/class_urllabel.html -share/kvirc/3.0.0-beta2/help/en/class_widget.html -share/kvirc/3.0.0-beta2/help/en/class_window.html -share/kvirc/3.0.0-beta2/help/en/cmd_offer.window.html -share/kvirc/3.0.0-beta2/help/en/cmd_offer.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_offer.remove.html -share/kvirc/3.0.0-beta2/help/en/cmd_offer.clear.html -share/kvirc/3.0.0-beta2/help/en/cmd_offer.list.html -share/kvirc/3.0.0-beta2/help/en/cmd_options.save.html -share/kvirc/3.0.0-beta2/help/en/cmd_options.dialog.html -share/kvirc/3.0.0-beta2/help/en/cmd_options.pages.html -share/kvirc/3.0.0-beta2/help/en/cmd_options.edit.html -share/kvirc/3.0.0-beta2/help/en/fnc_options.isdialog.html -share/kvirc/3.0.0-beta2/help/en/widget_ctcpavatarprotooptions.html -share/kvirc/3.0.0-beta2/help/en/widget_ctcpfloodprotectionoptions.html -share/kvirc/3.0.0-beta2/help/en/cmd_popupeditor.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_raweditor.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_regchan.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_regchan.remove.html -share/kvirc/3.0.0-beta2/help/en/cmd_regchan.setproperty.html -share/kvirc/3.0.0-beta2/help/en/cmd_regchan.list.html -share/kvirc/3.0.0-beta2/help/en/fnc_regchan.property.html -share/kvirc/3.0.0-beta2/help/en/module_reguser.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.edit.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.remove.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.addmask.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.delmask.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.setproperty.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.list.html -share/kvirc/3.0.0-beta2/help/en/fnc_reguser.match.html -share/kvirc/3.0.0-beta2/help/en/fnc_reguser.exactmatch.html -share/kvirc/3.0.0-beta2/help/en/fnc_reguser.mask.html -share/kvirc/3.0.0-beta2/help/en/fnc_reguser.property.html -share/kvirc/3.0.0-beta2/help/en/fnc_reguser.matchproperty.html -share/kvirc/3.0.0-beta2/help/en/cmd_reguser.wizard.html -share/kvirc/3.0.0-beta2/help/en/module_rijndael.html -share/kvirc/3.0.0-beta2/help/en/cmd_socketspy.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_spaste.file.html -share/kvirc/3.0.0-beta2/help/en/cmd_spaste.stop.html -share/kvirc/3.0.0-beta2/help/en/cmd_spaste.clipboard.html -share/kvirc/3.0.0-beta2/help/en/cmd_spaste.list.html -share/kvirc/3.0.0-beta2/help/en/cmd_spaste.setdelay.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.len.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.lowcase.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.upcase.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.isnumber.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.isunsignednumber.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.isempty.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.contains.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.containsnocase.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.equal.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.equalnocase.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.cmp.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.cmpnocase.html -share/kvirc/3.0.0-beta2/help/en/module_url.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.find.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.findfirst.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.findfirstnocase.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.findlast.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.findlastnocase.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.left.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.right.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.mid.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.append.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.prepend.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.insert.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.strip.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.stripleft.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.stripright.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.replace.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.lefttofirst.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.lefttolast.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.rightfromfirst.html -share/kvirc/3.0.0-beta2/help/en/fnc_str.rightfromlast.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.ostype.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.osname.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.osversion.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.osrelease.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.osmachine.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.osnodename.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.getenv.html -share/kvirc/3.0.0-beta2/help/en/fnc_system.hostname.html -share/kvirc/3.0.0-beta2/help/en/cmd_system.setenv.html -share/kvirc/3.0.0-beta2/help/en/cmd_term.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_tip.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_tmphighlight.add.html -share/kvirc/3.0.0-beta2/help/en/cmd_tmphighlight.remove.html -share/kvirc/3.0.0-beta2/help/en/fnc_tmphighlight.ishighlighted.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.create.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.define.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.destroy.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.show.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.hide.html -share/kvirc/3.0.0-beta2/help/en/fnc_toolbar.exists.html -share/kvirc/3.0.0-beta2/help/en/fnc_toolbar.list.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.addbutton.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.removeitem.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.setbutton.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbar.addseparator.html -share/kvirc/3.0.0-beta2/help/en/cmd_toolbareditor.open.html -share/kvirc/3.0.0-beta2/help/en/cmd_url.list.html -share/kvirc/3.0.0-beta2/help/en/cmd_url.config.html -share/kvirc/3.0.0-beta2/help/en/fnc_window.exists.html -share/kvirc/3.0.0-beta2/help/en/fnc_window.type.html -share/kvirc/3.0.0-beta2/help/en/fnc_window.caption.html -share/kvirc/3.0.0-beta2/help/en/cmd_window.listtypes.html -share/kvirc/3.0.0-beta2/help/en/fnc_window.list.html -share/kvirc/3.0.0-beta2/help/en/doc_command_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/helplogoright.png -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_command_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_function_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_module_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_function_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_module_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_class_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/helplogoleft.png -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_class_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_event_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_event_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_language_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_language_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_widget_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_generic_alphabetic_z.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_index_all.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_$.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_a.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_b.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_c.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_d.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_e.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_f.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_g.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_h.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_i.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_j.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_k.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_l.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_m.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_n.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_o.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_p.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_q.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_r.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_s.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_t.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_u.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_w.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_v.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_x.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_y.html -share/kvirc/3.0.0-beta2/help/en/doc_keyterms_alphabetic_z.html -share/kvirc/3.0.0-beta2/pics/kvi_small_icons.png -share/kvirc/3.0.0-beta2/pics/kvi_background.png -share/kvirc/3.0.0-beta2/pics/kvi_big_icons.png -share/kvirc/3.0.0-beta2/pics/kvi_dbblockdevice.png -share/kvirc/3.0.0-beta2/pics/kvi_dbchardevice.png -share/kvirc/3.0.0-beta2/pics/kvi_dbcore.png -share/kvirc/3.0.0-beta2/pics/kvi_dbexec.png -share/kvirc/3.0.0-beta2/pics/kvi_dbfifo.png -share/kvirc/3.0.0-beta2/pics/kvi_dbfolder.png -share/kvirc/3.0.0-beta2/pics/kvi_dbimage.png -share/kvirc/3.0.0-beta2/pics/kvi_dblibrary.png -share/kvirc/3.0.0-beta2/pics/kvi_dbpackage.png -share/kvirc/3.0.0-beta2/pics/kvi_dbrpm.png -share/kvirc/3.0.0-beta2/pics/kvi_dbsocket.png -share/kvirc/3.0.0-beta2/pics/kvi_dbsound.png -share/kvirc/3.0.0-beta2/pics/kvi_dbtext.png -share/kvirc/3.0.0-beta2/pics/kvi_dbunknown.png -share/kvirc/3.0.0-beta2/pics/kvi_setup_label.png -share/kvirc/3.0.0-beta2/pics/kvi_splash.png -share/kvirc/3.0.0-beta2/pics/kvi_userchanstate.png -share/kvirc/3.0.0-beta2/pics/kvi_dock.png -share/kvirc/3.0.0-beta2/pics/tb_options.png -share/kvirc/3.0.0-beta2/pics/tb_winops.png -share/kvirc/3.0.0-beta2/pics/kvi_tip.png -share/kvirc/3.0.0-beta2/license/COPYING -share/kvirc/3.0.0-beta2/locale/it.mo -share/kvirc/3.0.0-beta2/locale/pl.mo -share/kvirc/3.0.0-beta2/locale/nl.mo -share/kvirc/3.0.0-beta2/locale/es.mo -share/kvirc/3.0.0-beta2/locale/sr.mo -share/kvirc/3.0.0-beta2/locale/fr.mo -share/kvirc/3.0.0-beta2/locale/de.mo -share/kvirc/3.0.0-beta2/modules/libkviabout.so -share/kvirc/3.0.0-beta2/modules/libkviabout.la -share/kvirc/3.0.0-beta2/modules/libkvialiaseditor.so -share/kvirc/3.0.0-beta2/modules/libkvialiaseditor.la -share/kvirc/3.0.0-beta2/modules/libkvichan.so -share/kvirc/3.0.0-beta2/modules/libkvichan.la -share/kvirc/3.0.0-beta2/modules/libkvichannelsjoin.so -share/kvirc/3.0.0-beta2/modules/libkvichannelsjoin.la -share/kvirc/3.0.0-beta2/modules/libkviclock.so -share/kvirc/3.0.0-beta2/modules/libkviclock.la -share/kvirc/3.0.0-beta2/modules/libkvicodetester.so -share/kvirc/3.0.0-beta2/modules/libkvicodetester.la -share/kvirc/3.0.0-beta2/modules/libkviconfig.so -share/kvirc/3.0.0-beta2/modules/libkviconfig.la -share/kvirc/3.0.0-beta2/modules/libkvidcc.so -share/kvirc/3.0.0-beta2/modules/libkvidcc.la -share/kvirc/3.0.0-beta2/modules/libkvidialog.so -share/kvirc/3.0.0-beta2/modules/libkvidialog.la -share/kvirc/3.0.0-beta2/modules/caps/crypt/lamerizer -share/kvirc/3.0.0-beta2/modules/caps/crypt/rijndael -share/kvirc/3.0.0-beta2/modules/caps/serverimport/mircimport -share/kvirc/3.0.0-beta2/modules/caps/toolbar/tb_options -share/kvirc/3.0.0-beta2/modules/caps/toolbar/tb_winops -share/kvirc/3.0.0-beta2/modules/caps/toolbar/url -share/kvirc/3.0.0-beta2/modules/libkvieditor.so -share/kvirc/3.0.0-beta2/modules/libkvieditor.la -share/kvirc/3.0.0-beta2/modules/libkvieventeditor.so -share/kvirc/3.0.0-beta2/modules/libkvieventeditor.la -share/kvirc/3.0.0-beta2/modules/libkvifile.so -share/kvirc/3.0.0-beta2/modules/libkvifile.la -share/kvirc/3.0.0-beta2/modules/libkvidockwidget.so -share/kvirc/3.0.0-beta2/modules/libkvidockwidget.la -share/kvirc/3.0.0-beta2/modules/libkvihelp.so -share/kvirc/3.0.0-beta2/modules/libkvihelp.la -share/kvirc/3.0.0-beta2/modules/libkviident.so -share/kvirc/3.0.0-beta2/modules/libkviident.la -share/kvirc/3.0.0-beta2/modules/libkviiograph.so -share/kvirc/3.0.0-beta2/modules/libkviiograph.la -share/kvirc/3.0.0-beta2/modules/libkvilag.so -share/kvirc/3.0.0-beta2/modules/libkvilag.la -share/kvirc/3.0.0-beta2/modules/libkvilamerizer.so -share/kvirc/3.0.0-beta2/modules/libkvilamerizer.la -share/kvirc/3.0.0-beta2/modules/libkvilinks.so -share/kvirc/3.0.0-beta2/modules/libkvilinks.la -share/kvirc/3.0.0-beta2/modules/libkvilist.so -share/kvirc/3.0.0-beta2/modules/libkvilist.la -share/kvirc/3.0.0-beta2/modules/libkvilog.so -share/kvirc/3.0.0-beta2/modules/libkvilog.la -share/kvirc/3.0.0-beta2/modules/libkvilogview.so -share/kvirc/3.0.0-beta2/modules/libkvilogview.la -share/kvirc/3.0.0-beta2/modules/libkvimask.so -share/kvirc/3.0.0-beta2/modules/libkvimask.la -share/kvirc/3.0.0-beta2/modules/libkvimircimport.so -share/kvirc/3.0.0-beta2/modules/libkvimircimport.la -share/kvirc/3.0.0-beta2/modules/libkvimp3player.so -share/kvirc/3.0.0-beta2/modules/libkvimp3player.la -share/kvirc/3.0.0-beta2/modules/libkvimy.la -share/kvirc/3.0.0-beta2/modules/libkviobjects.so -share/kvirc/3.0.0-beta2/modules/libkviobjects.la -share/kvirc/3.0.0-beta2/modules/libkvioffer.so -share/kvirc/3.0.0-beta2/modules/libkvioffer.la -share/kvirc/3.0.0-beta2/modules/libkvioptions.so -share/kvirc/3.0.0-beta2/modules/libkvisetup.so -share/kvirc/3.0.0-beta2/modules/libkvioptions.la -share/kvirc/3.0.0-beta2/modules/libkvipopupeditor.so -share/kvirc/3.0.0-beta2/modules/libkvipopupeditor.la -share/kvirc/3.0.0-beta2/modules/libkviraweditor.so -share/kvirc/3.0.0-beta2/modules/libkviraweditor.la -share/kvirc/3.0.0-beta2/modules/libkviregchan.so -share/kvirc/3.0.0-beta2/modules/libkviregchan.la -share/kvirc/3.0.0-beta2/modules/libkvireguser.so -share/kvirc/3.0.0-beta2/modules/libkvireguser.la -share/kvirc/3.0.0-beta2/modules/libkvirijndael.so -share/kvirc/3.0.0-beta2/modules/libkvirijndael.la -share/kvirc/3.0.0-beta2/modules/libkvisetup.la -share/kvirc/3.0.0-beta2/modules/libkvisnd.so -share/kvirc/3.0.0-beta2/modules/libkvisnd.la -share/kvirc/3.0.0-beta2/modules/libkvisocketspy.so -share/kvirc/3.0.0-beta2/modules/libkvisocketspy.la -share/kvirc/3.0.0-beta2/modules/libkvispaste.so -share/kvirc/3.0.0-beta2/modules/libkvispaste.la -share/kvirc/3.0.0-beta2/modules/libkvimy.so -share/kvirc/3.0.0-beta2/modules/libkvistr.so -share/kvirc/3.0.0-beta2/modules/libkvistr.la -share/kvirc/3.0.0-beta2/modules/libkvisystem.so -share/kvirc/3.0.0-beta2/modules/libkvisystem.la -share/kvirc/3.0.0-beta2/modules/libkvitb_options.so -share/kvirc/3.0.0-beta2/modules/libkvitb_options.la -share/kvirc/3.0.0-beta2/modules/libkvitb_winops.so -share/kvirc/3.0.0-beta2/modules/libkvitb_winops.la -share/kvirc/3.0.0-beta2/modules/libkviterm.so -share/kvirc/3.0.0-beta2/modules/libkviterm.la -share/kvirc/3.0.0-beta2/modules/libkvitip.so -share/kvirc/3.0.0-beta2/modules/libkvitip.la -share/kvirc/3.0.0-beta2/modules/libkvitmphighlight.so -share/kvirc/3.0.0-beta2/modules/libkvitmphighlight.la -share/kvirc/3.0.0-beta2/modules/libkvitoolbar.so -share/kvirc/3.0.0-beta2/modules/libkvitoolbar.la -share/kvirc/3.0.0-beta2/modules/libkvitoolbareditor.so -share/kvirc/3.0.0-beta2/modules/libkvitoolbareditor.la -share/kvirc/3.0.0-beta2/modules/libkviurl.so -share/kvirc/3.0.0-beta2/modules/libkviurl.la -share/kvirc/3.0.0-beta2/modules/libkviwindow.so -share/kvirc/3.0.0-beta2/modules/libkviwindow.la -@dirrm share/kvirc/3.0.0-beta2/pics -@dirrm share/kvirc/3.0.0-beta2/modules/caps/toolbar -@dirrm share/kvirc/3.0.0-beta2/modules/caps/serverimport -@dirrm share/kvirc/3.0.0-beta2/modules/caps/crypt -@dirrm share/kvirc/3.0.0-beta2/modules/caps -@dirrm share/kvirc/3.0.0-beta2/modules -@dirrm share/kvirc/3.0.0-beta2/locale -@dirrm share/kvirc/3.0.0-beta2/license -@dirrm share/kvirc/3.0.0-beta2/help/en -@dirrm share/kvirc/3.0.0-beta2/help -@dirrm share/kvirc/3.0.0-beta2/defscript/pics -@dirrm share/kvirc/3.0.0-beta2/defscript -@dirrm share/kvirc/3.0.0-beta2/config/modules -@dirrm share/kvirc/3.0.0-beta2/config -@dirrm share/kvirc/3.0.0-beta2 +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 -@dirrm include/kvirc/3.0.0-beta2 +@dirrm include/kvirc/%%VER%% @dirrm include/kvirc --- kvirc-3.0.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14:39:03 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 60EC916A4CE; Mon, 19 Jul 2004 14:39:03 +0000 (GMT) Received: from gate-com.com (gate-com.com [213.244.186.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id D25C143D41; Mon, 19 Jul 2004 14:39:02 +0000 (GMT) (envelope-from marodeur@gate-com.com) Received: (from marodeur@localhost) by gate-com.com (8.12.10/8.12.10) id i6JEd0Xh009417; Mon, 19 Jul 2004 16:39:00 +0200 (CEST) (envelope-from marodeur) Date: Mon, 19 Jul 2004 16:39:00 +0200 From: Stefan Grundmann To: Volker Stolz , freebsd-ports-bugs@FreeBSD.org Message-ID: <20040719163900.A8032@gate-com.com> References: <200407191351.i6JDpSBi059878@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200407191351.i6JDpSBi059878@freefall.freebsd.org>; from vs@FreeBSD.org on Mon, Jul 19, 2004 at 01:51:28PM +0000 Subject: Re: ports/68945: New Port: print/latex-msc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 14:39:03 -0000 On Mon, Jul 19, 2004 at 01:51:28PM +0000, Volker Stolz wrote: > Synopsis: New Port: print/latex-msc > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Mon Jul 19 13:47:39 GMT 2004 > State-Changed-Why: > I'd like to commit this with the following changes: > - reduce pkg-plist to the @exec/@unexec lines since all the contents > can be easily put into PLIST_DIRS/FILES in the Makefile. > - add the URL to pkg-descr nonetheless since there is valuable stuff > - remove the SIZE-data from distinfo since almost all sites didn't > provide size-data, leading to many useless fetch-attempts > - fix distinfo for README, my mirrors carry a different file: > > latex-msc@menelaos [15:50:30]> md5 README > MD5 (README) = 728dd389ff2e0cdf5cf8c7dc8a45a32e > latex-msc@menelaos [15:50:34]> ls -l README > -rw-r--r-- 1 stolz wheel 1211 Mar 15 10:29 README > > Cheers, > Volker please go ahead and commit it :) thank you for your effort Stefan From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 14: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 8031D16A4CE for ; Mon, 19 Jul 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 70A2643D5D for ; Mon, 19 Jul 2004 14:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JEoNho067397 for ; Mon, 19 Jul 2004 14:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JEoNQM067396; Mon, 19 Jul 2004 14:50:23 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 14:50:23 GMT Resent-Message-Id: <200407191450.i6JEoNQM067396@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrej Zverev , ru@waterwall.inec.ru Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B056D16A4CE for ; Mon, 19 Jul 2004 14:49:11 +0000 (GMT) Received: from waterwall.inec.ru (waterwall.inec.ru [213.148.3.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 872FD43D5C for ; Mon, 19 Jul 2004 14:49:10 +0000 (GMT) (envelope-from az@waterwall.inec.ru) Received: from waterwall.inec.ru (root@localhost) by waterwall.inec.ru (8.12.9p2/8.12.9) with SMTP id i6JEx5FX079035 for ; Mon, 19 Jul 2004 18:59:05 +0400 (MSD) (envelope-from az@waterwall.inec.ru) Received: from waterwall.inec.ru (localhost.inec.ru [127.0.0.1]) by localhost (8.12.9p2/8.12.6) with ESMTP id i6JEx5mG079027; Mon, 19 Jul 2004 18:59:05 +0400 (MSD) Received: from localhost (localhost.inec.ru [127.0.0.1]) by localhost (Postfix) with SMTP id 9017065171; Mon, 19 Jul 2004 18:59:05 +0400 (MSD) Received: from waterwall.inec.ru (localhost.inec.ru [127.0.0.1]) by waterwall.inec.ru (Postfix) with ESMTP id AAP5440FBE1B9126C5; Mon, 19 Jul 2004 18:59:05 +0400 (MSD) Received: (from az@localhost) by waterwall.inec.ru (8.12.9p2/8.12.6/Submit) id i6JEx5P6079023; Mon, 19 Jul 2004 18:59:05 +0400 (MSD) Message-Id: <200407191459.i6JEx5P6079023@waterwall.inec.ru> Date: Mon, 19 Jul 2004 18:59:05 +0400 (MSD) From: Andrej Zverev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: alexs@snark.rinet.ru Subject: ports/69301: Fix ports/misc/opencyc pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrej Zverev , ru@waterwall.inec.ru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 14:50:24 -0000 >Number: 69301 >Category: ports >Synopsis: Fix ports/misc/opencyc pkg-plist >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 Jul 19 14:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrej Zverev >Release: FreeBSD 4.9-RELEASE-p11 i386 >Organization: >Environment: System: FreeBSD stuff.inec.ru 4.9-RELEASE-p11 FreeBSD 4.9-RELEASE-p11 #2: Tue Jul 6 18:45:42 MSD 2004 inec@stuff.inec.ru:/usr/obj/usr/src/sys/POSTBOX i386 >Description: Fix pkg-plist file and some comsmetic correcting Makefile >How-To-Repeat: >Fix: --- opencyc-Makefile.diff begins here --- --- /usr/ports/misc/opencyc/Makefile Mon Jul 19 18:31:45 2004 +++ Makefile Mon Jul 19 18:28:25 2004 @@ -15,14 +15,8 @@ MAINTAINER= alexs@snark.rinet.ru COMMENT= General knowledge base and commonsense reasoning engine -BROKEN= Broken pkg-plist -EXPIRATION_DATE=2004-08-20 -DEPRECATED= ${BROKEN} - NO_BUILD= yes USE_LINUX= yes - -BRANDELF= /usr/bin/brandelf pre-patch: @${BRANDELF} -t Linux ${WRKSRC}/run/bin/latest.bin --- opencyc-Makefile.diff ends here --- --- opencyc-pkg-plist.diff.uue begins here --- begin 644 opencyc-pkg-plist.diff.gz M'XL("#36^T```V]P96YC>6,M<&MG+7!L:7-T+F1I9F8`K%U;=]2XLGX^\RMX MGV,ZG0!#]M,D(6%G+S*P";,Y:[_TDFUUMXAL>22Y+SS,;S]5LMV7`,%5TEJS MA@3\?;I5E:I*MRS+GDU:9R>-L=Y-*N6*B6ED76R+2?.PR!JMG/^?^[9^=M'8 M9ZF?O:O5L,WSZ:O\;.S\-F+7W[_ M_5DV_=_I]/S5LU_AS]=GSW[__9>L+R<[>?[;\Y.)LU"R7>Q*%XV:7#3JC:S, M\R]B)<9\?S473M_63>OOO96BH@'?MYZ!W!8712&=(R$:=;TI9..5J2FX*U/7 MLD#4;>VEG8M"\N`4E#:-NX2_65;"/E"`[_,O4-J-*+RQV]'`CS#@7O)J^V>M M_"?I_"A`86KGK5"U=T:OI)U5+VXE\(62VZ=[N!G'O(/4X8N`2W'+RZ*I9(K;C7Z#OD@K.-2 M?&RUO%X)W0J0+1Y%G*S\!\J6;TP%?S5.\[_#8)6`?NA(/IBFU?S&#&0]#1H( MSQ6Y@L2Y*ZKY+WZ"E)0-<+&U_1>ZDZY+[RW*F^]C.S''2&UAMM" M+$#K)W/5".,F-_#'>P/'BNGWJ;8%2/QFG`7<45S@_^-J$2CN M1`V_$9$X1>$/M_5\W.3[#9+1XJ&?*!/&-V`:ZKI8$MOW5L*,H+HVTI!WX"/` M3Q]E(=5HT[DM3)A$)Y=;+R^L%:,;V.-P/!R8V='3Z!$T3&)B?$OW2)BW&*AW M,+_0U?<8ST-1)J/'V/\HIUC5_4-P.JESJ^BX^VV5&TW'#0:6B'S;JI(((4W) MJIY+"S]*US88O$PN59BJHL#WDEGXWMU#UX3'\4]CZRLM6L?$OU,P18AQ(_P- M^-^MM-LHAGNCV]%FYALT:>R_;+R8?)`C%19JI2<7.8Y/`8JN**BJ&?\QZ,J? M\.(C:W\/?O%%6!O_VD_)Z9,R##+<5N7D=Y*A0D,FV\*T=-\/L M2>Y-+6B%WX%#M12@HN-'\`]124PTW"@]5M$0=MRKAE3+CV]N/EG54`;BD]QX M5.K1`)(&(.#_[MY!%\C/5E&Z`5`?P.!X.JPS5'0<%=&`$J!WWSZ%*DR%'N$D MUZW$7RI1EY.+IM&J$'UTCW]UO9%%^Y33/9)GACT]N]+F":>+1'4O5D2FHQ8! M'FMZ^%/QEU/0R-+9L)^EFYZ&OW!&EQ*H5U7! M%'+<`Y^65HJQ//##)?QP]=.UI!_!1JR5_`@:0H^?!@7?H'=UO87I30FMOA+1 MU^5BK&AW@"-%ORC+:(+P>Q0#>BML`J*6!%GXZ+?X`/((P>U!/+H]_!!ESG?,Y@"C'KKI^6HEYTG"/U\DFV?NS)=(_K M0L<>E#R[E(LGE@)'45R/E9T?$=R()YSH,0SCP`N$#8X*VHR?K2\\C6;`"%IS MA`NQ$+NRXS7O"/:AS;5RX/N0:WWKF+W;`6D(1NV8W=D!:0A^)V*@R!";5AT& M)(,[>V,AHA[/@+:3`0GU9.#N9-U>BI'3WP!ZK\M/QF@2[D![/\JZE':LIW(` M#HV,0V-BJ9M`Y+2,?_"WO@@:CG2BPN8T`]4$+:%B+D'@]'W M.NK?$\NZWT`/IF#6^&FQ-6WOKKX+/]][*[Q<;&=7$@T`_,M*^9%.R!-L=V)1 M2Z^*&R5UB(9'!A1/4'Z4C=0:^N[26&AY0D(M^;#E@.FV\F\"@M)O=#FNW?/H[T:@,=Z)E M'EX M7V'4AVN99]T*Z$\_=])G!2[ZXK+*3[_&87EZ`B)H1V&[PD'.T%AG5CKU%>37Q6#_IH"+?JM; M!KJ$--3"YZHNW[R_8Z.>_STEU;<"_X=8&$)F7D+S!+EYC['4ZKX'D7YW>TF! M&(!HE1,KND>1ZK>'SGYU1H$Y52@L;9G1255?*06"C1P+AG^!/D-/6.CD1 M[@$%'7XI8"I$0T0DL$;+K+&RQ-!$NNSL)`7+Z7D2EM=)6'Y+PO(J"(D5SDBC1-(D239,HT32)$DV3*-$TB1(ET:$D*I1$@Y(8_R1B MFT1JTUC^)-*6@H1OI-!]RD7Q@&X3$J@ZJSP+G0NGB@PXF$6K>A'1^(4Q M)9CGVO`J7\LUAN*\?JM:[54FZC+$6::%'US8?LAB:RQ\;K-:P(P502/*,A,E M1``Y'XT'6-2*)XQ`H*S-8BI@Y2(*'\ZH0?VS&L:$2S(,1P0%](-MSL!JE"Z*2(23A%D9#@.# M^7)M%0X/L,C\4F9+)2T>:-]F9A[74TOA,^4R,;!P2(8*9)UYCG*!,[F1ME`P MH?)*-#$\K2LP:Q:!=RK' MI:&L5.X+GJZ"SNB/(Z6AX[=K.%KF.L.T^Y7#%EV=[\D-SUL:/.?83NGJ4JJ5 M*ENAH^GXEA8JP5.@X'TZ5IE6@K^)J5@37VEZLJO]U7@NUQ!2\#E M\E;4_2H=TZV-[Y._6MEBM(5[=EA^7UP;*EPZQU9@J"'8K=`&-T!'#"RZKP]Y M3!2.VP&0::W\$J/A2L:J;24V$+.LI(ZJ#ZY)[NQ(=,LP4&`J\7$/":VYZ9;0 M03(+DT4&KE-<]UA309/"[[SI0W1:R*?8U25X!AR&?>"56[,&_0!F14@'@8`OF'Y,%P>PT$M5 MEK*.G!`J8V5V-$_-#5\*XNJ2JQJ"S$B2W580<)@==*[@3MY!MSI=C[&G(IRS MPZMM8NJP\PQC5+W-=1:NP0CG*'@2/Z`CZH$?UF*E%H)9"_PP)+'"-AINMX*X M0DS7-JR,EM^(K&`"86Y65W8\5"S;EDI1(P9U;0P`@2J9S52?P0O$PDHD=LJ3KM5=+* MO4I5N0&%@Q`S`FXU??$:_GO](@G+RR0LKY*P_):$Y742EO,4+.=1NK9CB3*Z M.Y;3)"QG25B22-UY$JD[3R)UYTFD[CR%U)V?I)"Z\Y,44G=^DD+JSD]22-WY M20J+>7Z20G;/3U+([OE)"MD]/TDAN^:1':G M261WFD1VITED=YI$=J=)9/R>)I'=TR2R>YI$=D^3R.YI$MD]32*[ITED M]S2)[)XFD=VS)+)[ED1VSY+([ED2V3V+E-VSDU/X+[)!`TE$]+E>9WT*)Z8J M__UOEC8'LR-,E8;9$2;+Q.P84R5COD\8D:C8$:9*RSPF3-B)J9(SCPD9592Z MF128_NT7S;K51$G+A@\L5H8-)+3D\0!>ZJP47C#W.0PL_`.-`X,VHLQ$HWC% M]QOJ>$4+W2Q%1M^,-.#).QSWO19VY*K^7AG>^"D7[L3B8+TQQ`7H`=F--+O0 M7-AL;JGKS;O"M\[+*G-+L\Y<(PLU5\7!YAI03N)"REX0].%2J*]5@=%@4AK&?,F"7>8:7;?BL#C=WD/&NDKB!?JV^\H8HW(+`V6=T/,@L:(/W MMQ7<9>3=Z)EZKFR5/2C-TTST>6KC9*1I[;>_\#;U[4@BS%N_0Z1F6;F%E0TV MP=+6SH>R'V0W,8`@@:$T-5.OZ1L!=]#N^J]<2YC?-&/'VHZ(MNEW9]Z#_2%O M@!_@7UKGU9PW._2"1]S]]0C-VD6ZGRIXX[W3/-:^C6/SS:N`;/#N*:Y#$F:V M]5(R=;TW7$NA?;BAAS5Y")R>/5XBQ:E#MUDO7,LA:!LL=OY@]YA1]A>^;,3O M16T*(#$-URFE[C/=^^3D[71[*'IT\F!OB/-<071BE8:HMT/,W4-[O0C7048J MIBA7N.NN/`B?G/2>?'YTQ]=N0A"W#:-KB-#B]` MBG(\<4<2UVX?^-%(PZS!>LZ8[GH9"Q/^.L[VX;9.VRM_V/(>-X_,C:U:S?,@ M;'@1&8,2GC7E>N&M$L-93[D154/=71M(AHUR"CH6G#&&(5[7>!87/P[V6&BU M8`SM(Q:WK4'CHVGPA&X420@^&9W"=,;#0Q75L*>5>5KH::9&%T'2887H'F=D(*7V MJICEPG+`^)JKD8UB`K?L$=ER1P03=)[E+>NV:CC`2I89&]RX M)K=K?'Y$;;DXN''L)&#BZ_PB2`N6%9":7;)T/-XH/\#^'HL9>SQ M=TQAF?5GR;E",]PNQ*TZSIA73!\7";1ZD.Y]'G+G$0P7[L8J67.B*.3X+.6# M>]-V5Y,P.2["G@G_#&1AX!]MDG$R4W71UN^A6: MF&I$*2Z,P;_#4C4;'B?$0!`Q#H!F"P$^5*?J5L9(X.:ME[3+6(ZAI,-1CZ`;/I:>E,;] M:XRLZ;Y(TK'!KDB-%];2>W<`TH6N!Y('90`RNK4#LCJGN]"7BER(.;VPJ@HG M.^@QB:GKX<)A.M2K16L8*Q$&MV`8R_`M`&DK57.0O7X875+MG+`6=V?*N<]R M15^7.&+@HRUF(N,J$"CX\+:)*[ZE9PGAJSQB746`V]"6_N\ZBNHNUP6@` M_Q;36[_Q>XNG[@'J54V/0>"KYN!"62*\5*[HRC9H]]#R29F#R5=CG(,)=V(<@PE78-R#"7=?7(DPV1I:IM& M6H./D)`-<2C403Q"UG+E1*>SE:@JH>DJ\`A_^?SM[0V%@+WI\U')="W:XR&^ MH4]`E2B6'!R^S;/2++Q0Y/`WO&=)UHJ`(DNDPS<2&LGLY MZ?+V;0R>C`6I4&!E>W^*E_JEEAG.IW,&"($N`\^1D6ATOIW/,Y/3I7"'I$OB M@"0[&#LDV;\XSJN3"SZ"D\'AJ0XTL?1>/L"2^_D`2V_P#LN:%O!"^29H+IA( M>G2P@Y.1.S>'D1(;L!']3+L!]P>!&WNM@"PAW6ZQ66XVL_/S&;GN/1PWE,_H M+5=XCL+/W%)JC<63_6@`ASNO$$R[8+1'[XHF!PY.BIF9S_;WPR`+W9Q5,_BM MN]>>T7\YPYX@B.[,Y@P+@B#&P@[KM&#-.&DB\3-Z,.3:O%(1V?K2K,G6M#(K M<$ZEU(X\='.E*\;!S4?FG[Z6M(U9.@_(W.@RFYZ>9E/:59A(T'])N4_O`-;5 M'(JG%OLG3B#O:V^`@!:(D/<*:+D`_]2'_=D4W+O;J^L_[J^?^XT?"[%RSJ@@ MHG;9P6R%R5CB@_'(\"#I5[$AKKL[Q86;M^BEPH\:+PCP8D,YS1XJG`\/JE&1 M0U:(^LP38A?:.(>/*Q/+W.'(X[)O)A7*N)4MP/P6W.]%JXA7B"&VIMV^AA"1 MYU:N./T25(4SB(6HB5>S=9+NC&[)M[J%+LV7](ZIP?"P2HM^JPI)JOV+Y/3F MXMMENR4A,KQ4A<=[^,!M)6&]H5V?M8M@AJP:!1S>6>_^GU$+[K#AQ:V5G$`E M^J>XN\?;(ZBZQ]ZZ2A7#1ODT=.%P?1JJ<"PV@@HWP\5W%1Z"J9(P>7#=VE)& M$^4JN#/1/,525J`[-@&3-IU_&DT4=B.K)$(>[K^Q;9&*S,M-O!"4>3R%7*DB M7HK@;Q)PI!ATO$LKQ1C)32-JEX)IKFH!?A_X\]%,QI3Q)&U=BG"Q4WR%P"B& M*Q@KW)^NZG@Y6D@3+K8^Q"U.JK2#)_A/6">!)2A9?!HTE, MO*/5J9NQ51JFQEB?QHXGR-<,5"GR-FN\KCNV36L),T&$:8L5Y6A3$3'9Q\4% M\6*:1'VCG(LD:9&H=%@:1RO._4B4M(S/,,8F@Y+$\['9Q/CL7P+_+5DV(CHH MC,HC)%T0G8V/DEU10>G6U/X$5&Y13BP^,D>>LHIR,Z>Q6?$XS*PB5( M=I41V?&('']LNB\VDQ5MA[G9UYA2PBGY$H29,JZ9<@_$F3 MQ(J*5%,D39)D*Q,E@R)3$C$!>^QZ<8*-!W$+A4F27FE2A%&9KN@T?/1*:6MVJ_*9<])7?7Q%P4 M$`E)L$F"CXMM]>%]]D&"BTB)"S*!B>BNLHOX_0EB3RR)K/W+Z9>EOO85MZMO M4FT92N26K8[D^^Q%_R.ZY$C9+V#>MI$U+@1JDC,E:1:1S5VD6FD:%&YN%F>1?GJ5RJ M?BNSKIU]:I:U4W+Q_Z](%PNXLN?U=!M#7A`W(C.0F1#BI'4S9RBRI"\<-&=9 MZZ3Z2OVY!<>/P\B;3,/@!*[P4BTAW,#7%V@EXCJ(^O$P1"A@6=H7--C%+!+^,WME0T%N[Q[GRX?%ZVQYMCP="B3\XN/S MT,-G]L+2G'DRE=[LP^F'\\&`@8P&G_%X,(K/Q6;XD"[Y\Q3_YU=#(7\2PWI1+S(4WT_YD`@V);+>Y_^N)E?W]_\QR_=?[WZ M8_[]Z\VWAZ^'#T:.*$"9!X]A>K9@<#H50I6WQ[*!>[S9P*?`D^6-HV_PD^:=J*IZ&1JF3]#S= MZ&L5GI19VB3"P!!Q4NQ6IF\L#:ZVW']1;71A'R%4\BPN0& MJCXT+W@H\IOW:B;=G%25X:=,7WCZ30^G,-%4*#(=FI<1D!OMKM(\GY0EM<&^ MK`T];5/.@K\&)F?[%=G!2YJCE\8+EP$%1EFD"J,8SO&TV*(:E3H9$X%K4H!3T+6*)^8]J'@U'Z)>](/K.VH,!U/'6?W$ MLA=E`4)AD:DR3X12S!(UBN5_L#@(#=N."=U+$:NZ;2%8GU4-SZ-Z_P_3S M7;PV2V/UO]Z<235(NC#&'NF2*'.D1'W)5IE=O+L2^-AW>?(W7$DUQ%)&1P3S MM[MYP!+3\5FOT,Y7I>N=E!38P7;)KD7"I&56'&C@\^)`@)`9E<*M^NO!,CO& MI>:PTQ"J:!I!6^!2^DXU'ZXUJW;4M>QB6^3:_Y6%)JFHS^%/N_R]5TVN^ND' M][DPGEWLO/^>Q>HW)`G-/?Q`^&A:4MWX6V0_\K5)'@2.,/F<;*9BD&_.M,\M]$ M#EOL:;"^_=)*83'F"VF21O6%S^\Y(Y7<#FA<6CN4>0G5V",W;';>^"KC*77% M[I@V_KICU/P3]^Q/OEKHG\B<<8_W'M%F`=N<<>JT(?-T`>KF'0KV-8O,ZM,> M^2-'(/"GJ,84K7]!8.8&(Y[`$[*B!58X"0[7*PA7+^<9TH1.AA3[\5:3FN3$J0BF-W022QK7!WS+B+%8;-)]W M:%.M`MRS>TN?H\^Y3I*312@"?H8(.T.$/4>$_8@(^PD1]C,B[!>SL&N19J63 M[:F0(3,,&-=7VT\%3,#QJTG`K,Q8<#)M%'1F'O3(%M=>+G@`'FSF'0@P^A?V_H!_*WGA**3XD06]^CRYF&(3O7^XR M!8^7NTS(R04"E`B&.%H>,N/P"S!VNB,+,&AA$G6P;&J&]RP1FH%[\\\$%5ZVHX?QTS:B77,H<]YX_,Y[>*]M_N#EW\RI5NV7(`37_)MQRV$!.F6!W MJ;^/F/ M)6#%>HXE8"7V:T(4\N!``U8"5Q>FCT/@%4:.0U#%^HY#4+4&#RQ8"QYN;:<* MFAW8P*H3FCRCPV54D7U3.-67MKN4>6N\B^9 M<6WI0*W-M$C2)JH+<,BXMYXQJ84>BK?A1V4CRC12O[P2BF1%4UZL/QB/8<\7 M]I0')&2^N7JT/"#9@_(P0:N>(8$#[XGNNDECWP$)X]'O`&^^!G,@H$V#A10)?U%K$FYWN:,L[H-F>P)@LEY=5=(T)%196]K])9CK+P4-:UK4YXZQK0^99 M!]1J0XYE"T5%M,6A1FY65OCD'`)%P-SV-=A,BI+H[`_?8FL*3&^LI0J0DZ]M8CV,)EI1H/DD8T7?O'._:&J/&?,8LMATS8ELNXS963@4 M53KX>\+!.:?/P>"M?J30/5]LD+H]`ITOITF@+,WQ;\`)'":A`;V1C';0XPA& M?76'Q.691K_*^@25*5'NZF5-VIAR>FW.^+O>(G)BME!44K8X7'4?R@,LBFTK M!DJ-`4F++#6>Z"6S*C<6(BI77Q^UKWM,:Z_HG^!EMK5[R*`$''2Q!D1O%VO` MH0,?=+%3A_G8*\NV/*2U2,>T^>'#(Q17Q,AU<*B]P*'&E6C\/"\1;L[S8OF^ M\[Q8CRW7_YQ]MMOOYY__N7WW\TE M[XLP%WK5M[V*8XQ_MT!AZ>@/&9HN'17$\\%MSMQ)(.E\,%#,)^_([,%1$3Y@ MS6N936.>Y>`-QX&-KS\?-T`\UVIEKAM+QBC:IT*67(66PO=*A0 M#E%G9[]>_/*/V>RS^FMZ@-HCNQ";V'`*KH<&_[WVGP:',@Y5#`JLV&]:)5>< M/@U4K>D3P)5Z)_7.I!VARZ"J4CM%U/#GYEU[Z#:>\R^_GLT,JT];O=I@B]LZW2O27:Q$*N#<;BLX@U=&S-\J M6YE<J,!R<7)@7%006=;FJH(N85K/^B"".JOBC")/!5YUH!0Z+M MZ1^%M`H8BNM>EV""=B[`,`*DV3K$V`48)B@N+_LO&3$C#Z[.,(*&KV3`XL;0 MP3T.1DCO!1RF)")NJ(F+HF_\F:"&O?+28!Q'#Y])KRFHFGCE.KS M\&F,=#TS&F-_Y$?.('&L*8)QGFHD>P, M(3LSESU'R)Z;RWY$R'XTE_V$D/UD+OL9(?O97/8+0O;+D.S^$OF^^:K*<6G/ MHZG[X_.ZZ@ZSO7?3AV)UOR7D$J_ M[)VSH4#ZAGOH63_D[T=-G@Z@UU4RSV_F.@:U@EW,(N%#HS,41/C%Q^>AA\_L MA:4Y\V0JO=F'TP_G@P$#&0T^X_'@VY^+S?`C-I@&:X\EPIN=GIYYZK^S MBZ&0[SSU>6\"I45\LA+Q">PH4,VG^K$OQ#;/DT#]J>H*Q\N[NZ^;ZX MZSI;ISC4`14O[LBTW"(4[W=BV71;P$: MB(@T]6PBH7B^*4*66L4B215B)Z&B8?4A+CXCEU[(W[U(!D/;I:=%5'GTV/A^ MM"D152X"1B(K9XI>ODL&C+8IA>S%6ZDA'O@_)`N(V(L&MH$9T"G/U"\^.?Z0 M`18YJ+-.#4S!/QUD9!$E])QLR@&D20[K1[XRJ&EILV*9\+VA:%[T6YHF`KJ">/[847!3F5HDL\AP7Z]Y>I6'^)34F6@-B%"@9UJ& M)O1,52+VKMJAUP&+W%B%E+8-GBE3,MZHD1-%!'96*9'^.RL,X?Y++*;@_3C. M8W$`V2I>15"P@24BA)Q%$6NIR'5GK$E2B\HVOO^Z@VDZD0-G>2;1LK9YL'5' MQ8"1"[J,Q@0B>X8577+N\$"4T8CW,;'1R;?<>UE9%#<. M]H_(N/A77KE.D#TZI14)T/J<$;$',E1=*1,O`"'DM: MMF]2EFPAO]:J\;8:)^R54AFI,8?^W4I()Y&5PIO(MW`1#76$W!6J^@)[)1CK M$D<,6Q&HS+9L++:"IS"IM?/J02:]F@Y?Y3,)-C6(UKGJ_2MZ3ZU%]&$*1?LFBC_$P&*TE&AO"VS(L?PD M74X1L8C;Y,:_"EZ``,L+$@\;ODH+E-P;J%Q@D?6H,94A]_9)ZI%LI2.14R6M=GH<1E/(O68>A-1,=A1(361'@51K.@JDP@Z# M:$C'@*_C1;%>"U\,G?N84A*KL%P[J.;+>+WGGS2N/)*C#O>S8A5Z>XN6**'3 MZ54PZL)5[GMI,;0#=8K=P_1J:[ER6&1\783> MBXB#S"H-WO@*2H17;S>TT"BOK[5(D[5U&T-=5L]W=9-QQ73;:UT7"5K"GHNFXJ0 MO9Y]_$W]]]M')RJ?G*A\=J+RQ8G*;TY4+ERH7%@-4!H5JX:W49DY43EWHN*D MU%TX*7473DK=A9-2=^&BU%V-8V#B@H/D^9, MBO!E[+UPW(9"OX!P?[/N#C:_5)BM8-Y0:/=R^V0;#'_QJT#!L[YS+ MH\S;CCAVF99+MLS#;Z1L^"0)A0^.,[V4AX2=A(U0=:*-2)./D^T5]'$PO6`1 M#]Q!,JE1O.LIFIT^C4*-B6^1'=49)]KII`,1Y";A`YITJFBO(64&*^%R\+K# M20D9KT4:>7#(*/5"Z;/0TUL*K=2V+,P]]E[10H*$!EP% M#\A5-."PL+GBM(W^C8KJ/6(H&[2#(DM7\`"FB@-PX3X_%< M9+E8TU+TA:L&B\%>=J:Z)!G3ZFM8WJ8%K1XQ9W4D6"*(,/9L0DVB3Q74H"1L MIJG9I%B%^M0U:0-_K:*Z77H#F_)(JN9]K?V^4=^/WNZU1Z$)X*TM&UE._9*, MO3H2*K>QQ=024;K+I)PB:!2V\JT:/LC$0N)MRVFUH1S4TM!=EO.H?'^6<%^L M50G?;S&"DF8C3$)SR;WZ1AHH`%N[J/Z#'SK(-"*O;@1PD>)9AV^<(_B$D"S(7]_$W_CN2SB'I4M!*N=L_!W M%@TZ)QT5>8O!U0\$UHT@"\6&4`8/5+)=G`U-[$2T.?DS M27CZ$.=2C=!VF&DX@+4K*]3T:D.A9A\UE>?*8"QRCMORU44MWHJ:N3U`W^DL M:JJWBZ+6)@#U5R=Z!I#"Y4M5@E\()+B=HF#A4GO*()%9($A@@=JR6&-2OBQA MGIK`^JR\Q9A`\C`7_E*-;2AP6$1J>$L`]SYNELT6?)).E,"]"00RE5FV4E8R M"=Y1"Y4B:87*WS%2]BH,)@1(:+G?SSOWM"YW/$PE&^@1A`"2SZG5+%- M2JUBBDS"@OA.6N7BD+B5-*F>:J?*'AM-A26Q(8@BY7>;RD9,H+WZTD M2P-JE52#]VV^*L(5E24FEV;!41V!C5A"HY;SC#)(JL@KU>2";4`6N%O,Z?`] MI9>HV/_6L]5D_*EVU4ZA8>K7"KZMUH%L-"P2#W"+!+A4X_(G:94,I<15.0=. MDZAN%K3!88[#BGY4!BM9(Z)&;93>#6BXY0D*D!KT+GSBD$+KZ!EJ&ON3\Y?LNBB] M@A$U6+HYN\NH[6#EZXY(@^<^7:; M"AX'-AH/*[WIAJ:@6D_P2\"A)%/3H'&`0>%YX)'G,B+AI[`)0:HTM)O-B&21 M<>HX-Y:D3YV:Q*AQ) MEJS2-]7!/:_0*/7#_T5A"I[ERXB1)GDUK'H0(JY2FD8M`X';7+Q'?6*[G?DL M)$T^EKL;EOHJ+P+]4H2488KF<(C"*]-Q%?U(EK6S*.Z^LC\&@N M-H4DM'D2=F>IL20A?7(UZ!7^`GU56HE?;&3QA8UFR&'UBJ M4*KV4[``WR/OJG7:,\HZ[1ZV0.U>3'_SS.K-L],S&_J3%4Q&SZV^F;26OX?) MZ!>;U/I"3RU:W:U01C"T:CH7,7Z20(5*6O<`(/%`9'ZY#$$8`-3N1'^*?(MF MB=/&'(+AZ$:KJZH$CBS9A-*O$#!+'*\6\""&TL`80V ME`!"&TGE3G$2A-U4O#\TA^X:]B@^_?>HQ6OQ.=B@^'QL4$)NUBBZ%]RC*+\C M713E;*2+HCR,=%%TVU&?X*>4IHHD%`@XG:)L=73++#)6-G81B]0P`Q_G`_[R MP]>[6PL!_*?O>66*X\G1V4IU]][9;.:=X1RU M@$#$_"WEDR/Y*E3IYF&&3FV54OI0,J04SA=713?IC&X(X'8LPJJ,PM`(85VC M#JDS5>6I%4\:\+<5B"S&LPY@S5U?V/15 M5"V2RT0K8.':48T7R$W.!#JG]2T=Z)9:4^@*G\$M:H0-'1EG2[E>[H^S0YU' MMW!P>\;^@`>:%N`B(_/P8]"*+*^UN+S[:L.CV6BI?BL]^^,METR53*&&$)5) MB<:UQP=*?@.8>[_LF(5"72!J&<& M/&7IQ_@/[>+HK^W@:%A?^PK=!#YK6RS^F_&9-6=1H6/P%7HR@./;\0\HUJ47.]HQ##I7Q]PE:KE+^B M,9_%2#]&FMKY(9P.S]D[QC\`H('PJ[X\#)]*FU!F&5QR MCHQUPV%?B"\$)57."D`7AV5?5O6%T]B/;)&$E^HO)468X_VS`!?M+SQ#L[&J M:6@/7AK$.;0#I'15E&EO>/@2"\X>PX(4UVRUQ<J#]X4`NF(2+-POUJS MFH/'\'33]2&Y88^%7Z;'52WJBN?];.2O0Y(#L9O9G:3D)O MRK.2H-#@,L."5G&.K!3@UJ97[BQ+>N2H6=,C1`[%O1?1&`6L5O"USR*^E=21>P(&G=@P(?I8M MA$)EK?@.2C1<35RHQE[85_J(J5&LB[H1P:I!*8*P`0ODNL:_222I7 M;"5"D3OXT%2N>09UT$&9^%?!XMQ%K/2*JK5(H40BYJ?V?7`FG8S@ZB5$:QWP MNEU?QV$KIN^UMQ:1]J.MLKK)-'*CE,@T=].8NYC^JJ2J.0WD_%M7XPU/,S38[>;A9WL5Y*I>J=X MEP&RK.^&M&2QT=47!HL5\JU[:GG^X?R@&L.$UV-ED_#/[SDS"@@;R#Z_.B(69$Q\/]C%!Y\0;(X4$4U"6'F00T\ MK\I_NGGG?@'7L%OJ+&]%R)=7(5R$X$1JH1#0/K8E8/?QH/!=!A91N)5^D_6G.K$55^PG(,K\C(%]/RV?F98+T?5JD*%ECN,"YYM MO=D*7E[RC3!L9X8D;DPKY)#`+3B4,5+06QGJ@8IY/3S";O7IM1V!1M3=#F=> M=XXP>F0?BY6R+]78!QWKNPR;NB5!B&O5:>,0;'*6!"EV]$1\4J87H=@4HFV0 MU,/96STU:JP`;2NH;A6)?[!XX"GIB.5%JP_ MTHX&NZ[(*#&'F0Q-QV(`:._"`O!MR"9A8"+W/7; MYGH]R!QM=<&DG`C93A;5F/6;_GF1IRSGF]WRBD,#H)Z\Z@4"2[5[MHEY+OQ; MP4-M81H:%".2/WC"0]B)>BG3`)8GG`E^US?ZV,HM$G"\A__6JJ4IU5#36WT" M=710"O\\CL'$')%,&Y>EL`C3+-B8AK]:LRR\BQ,=8#%Y>VSIE%?2`H4RR2UXMXAF#/^!HA.$,WR'[9RQR M:,R,@/+L"P.O>#)\Y>G)/-T4L)/Y:9>4%UVGXV.)4;%&('],I6I.S4K4D2_F[N;P5_I4:C2I!'EF94 MB1^%&F2\LK!@8_.4HQ)V9>4O]6Y^+2/U3V8UOT=K_THG<_@3IMQ@Z7\W#UB2FQ;/CL149]M+0J<`/]S%:[/N[HA4M>K=K'EN MHQ84ID=HX!M_B_R^:F"JOQ%'WJM>F8%MYW-AW%C5\%HD3&8GM^JOA\RN5'2E MD&DN=>][,#QY"[M1T!1,5-`H?*7O\IC.Z)#] M2V2"].+OC))(Y7@,SRUVT4H.&Y2#7-W:(LFOA3`;Z.\15)?<;!3+B@0V*)U< M"MT16,&+$;-YE-\/]V!H0M/X0Z;Q5YR-F(1H2$3=4O7[C MJW)#Z,E/OEJ46T--N/ M-S^)/#2TJ$#A+D)_7HET7KK0SCZ*U*R'V8LL9,QP+[]7`ZHM4U74/`>_LTA/ MXI=;2(RQ;JI*5"Q_7-\^I2+!9,03?\^A4AL#J!H`P/_R#2-/IE$C8,V;0?AN&AA3(,"D,.PZ"'8QM# MK!D'FX=OVY=(RC3XP=R+(<82819R/-3(TYX%!]/0FV(L#QS!PA!C1:07,`WK'Y_`1*(=#W$4 M%LGL;_%9PGTHV.@J'$GH"]BQL500DMCR,,$BJGE92?FBWJ8Z!VQ*U#02\V61 M9LB,-@P]%6SD><`&^WEXO!ILY-33@2>A&,IT2(;#8=)P[]03VC#DU+CH,/S( MN.@HJ(JR=HM275J+P+0]K1K&W#Q>BH+>4,8KOF6O0F)`IB<+S`'#D/79X$3/ M(!M"+V*H\3@,.3+N/`H*/0)HCQ<'WR-C1,Z`N\D'R0\B5;82'3X#+63L$0Y=]PW'^$;9EI @I(9-A(.0XZ%&GNJA1,[U?,=PL/XG__%_>]!.:)1F`@`` ` end --- opencyc-pkg-plist.diff.uue ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15:02: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 53C8816A4CF; Mon, 19 Jul 2004 15:02:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3747243D48; Mon, 19 Jul 2004 15:02:57 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6JF2vaX067987; Mon, 19 Jul 2004 15:02:57 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JF2vud067983; Mon, 19 Jul 2004 15:02:57 GMT (envelope-from vanilla) Date: Mon, 19 Jul 2004 15:02:57 GMT From: "Vanilla I. Shu" Message-Id: <200407191502.i6JF2vud067983@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69284: [MAINTAINER] net/Net-Amazon: update to 0.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 15:02:57 -0000 Synopsis: [MAINTAINER] net/Net-Amazon: update to 0.26 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Jul 19 15:02:50 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69284 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15:03: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 CE72116A4CF; Mon, 19 Jul 2004 15:03:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD7343D31; Mon, 19 Jul 2004 15:03:26 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6JF3QAO068031; Mon, 19 Jul 2004 15:03:26 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JF3Qs0068027; Mon, 19 Jul 2004 15:03:26 GMT (envelope-from vanilla) Date: Mon, 19 Jul 2004 15:03:26 GMT From: "Vanilla I. Shu" Message-Id: <200407191503.i6JF3Qs0068027@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69227: [PATCH] textproc/srilm: 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: Mon, 19 Jul 2004 15:03:27 -0000 Synopsis: [PATCH] textproc/srilm: update to 1.4.1 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Jul 19 15:03:16 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69227 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15:06: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 8AA1B16A4CF; Mon, 19 Jul 2004 15:06:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B8EB43D46; Mon, 19 Jul 2004 15:06:41 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6JF6fMb071837; Mon, 19 Jul 2004 15:06:41 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JF6fDn071833; Mon, 19 Jul 2004 15:06:41 GMT (envelope-from vanilla) Date: Mon, 19 Jul 2004 15:06:41 GMT From: "Vanilla I. Shu" Message-Id: <200407191506.i6JF6fDn071833@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69280: [MAINTAINER] mail/Mail-GnuPG: update to 0.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 15:06:41 -0000 Synopsis: [MAINTAINER] mail/Mail-GnuPG: update to 0.08 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Jul 19 15:06:33 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69280 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15:30: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 1E43216A4CE for ; Mon, 19 Jul 2004 15:30:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04DC543D54 for ; Mon, 19 Jul 2004 15:30:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JFUBju072632 for ; Mon, 19 Jul 2004 15:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JFUBNW072623; Mon, 19 Jul 2004 15:30:11 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 15:30:11 GMT Resent-Message-Id: <200407191530.i6JFUBNW072623@freefall.freebsd.org> 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 E185416A4CE for ; Mon, 19 Jul 2004 15:26:12 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BEE743D48 for ; Mon, 19 Jul 2004 15:26:12 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 8F17D1584E for ; Mon, 19 Jul 2004 23:27:43 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 28051-01 for ; Mon, 19 Jul 2004 23:27:43 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 036EF1584D; Mon, 19 Jul 2004 23:27:42 +0800 (CST) Message-Id: <20040719152742.036EF1584D@mail.dragon2.net> Date: Mon, 19 Jul 2004 23:27:42 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69302: [NEW PORT] devel/p5-IO-Util: A selection of general-utility IO function X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 15:30:12 -0000 >Number: 69302 >Category: ports >Synopsis: [NEW PORT] devel/p5-IO-Util: A selection of general-utility IO function >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 Jul 19 15:30:11 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - required by www/p5-HTML-TableTiler-1.18 IO::Util - A selection of general-utility IO function This is a micro-weight module that exports just a couple of functions of general utility in IO operations. WWW: http://search.cpan.org/dist/IO-Util/ Author: Domizio Demichelis Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-IO-Util-1.26.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-IO-Util # p5-IO-Util/Makefile # p5-IO-Util/distinfo # p5-IO-Util/pkg-descr # p5-IO-Util/pkg-plist # echo c - p5-IO-Util mkdir -p p5-IO-Util > /dev/null 2>&1 echo x - p5-IO-Util/Makefile sed 's/^X//' >p5-IO-Util/Makefile << 'END-of-p5-IO-Util/Makefile' X# New ports collection makefile for: IO-Util X# Date created: Mon Jul 19 23:18:01 CST 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= IO-Util XPORTVERSION= 1.26 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= IO XPKGNAMEPREFIX= p5- X XMAINTAINER= ports@FreeBSD.org XCOMMENT= A selection of general-utility IO function X XPERL_CONFIGURE= yes X XMAN3= IO::Util.3 X X.include END-of-p5-IO-Util/Makefile echo x - p5-IO-Util/distinfo sed 's/^X//' >p5-IO-Util/distinfo << 'END-of-p5-IO-Util/distinfo' XMD5 (IO-Util-1.26.tar.gz) = 6093c39bc143dbe0dd77294481fc2daf XSIZE (IO-Util-1.26.tar.gz) = 3721 END-of-p5-IO-Util/distinfo echo x - p5-IO-Util/pkg-descr sed 's/^X//' >p5-IO-Util/pkg-descr << 'END-of-p5-IO-Util/pkg-descr' XIO::Util - A selection of general-utility IO function X XThis is a micro-weight module that exports just a couple of Xfunctions of general utility in IO operations. X XWWW: http://search.cpan.org/dist/IO-Util/ XAuthor: Domizio Demichelis END-of-p5-IO-Util/pkg-descr echo x - p5-IO-Util/pkg-plist sed 's/^X//' >p5-IO-Util/pkg-plist << 'END-of-p5-IO-Util/pkg-plist' X%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Util/.packlist X%%SITE_PERL%%/IO/Util.pm X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Util/ X@unexec rmdir %D/%%SITE_PERL%%/IO 2>/dev/null || true END-of-p5-IO-Util/pkg-plist exit --- p5-IO-Util-1.26.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15: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 0BB3916A4CE for ; Mon, 19 Jul 2004 15:40:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE8D243D58 for ; Mon, 19 Jul 2004 15:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JFeIDs073934 for ; Mon, 19 Jul 2004 15:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JFeIUm073890; Mon, 19 Jul 2004 15:40:18 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 15:40:18 GMT Resent-Message-Id: <200407191540.i6JFeIUm073890@freefall.freebsd.org> 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 9A60D16A4CE for ; Mon, 19 Jul 2004 15:40:09 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D59843D46 for ; Mon, 19 Jul 2004 15:40:09 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 541B11584E for ; Mon, 19 Jul 2004 23:41:40 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 28051-04 for ; Mon, 19 Jul 2004 23:41:40 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id D9D4D1584D; Mon, 19 Jul 2004 23:41:39 +0800 (CST) Message-Id: <20040719154139.D9D4D1584D@mail.dragon2.net> Date: Mon, 19 Jul 2004 23:41:39 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69303: [PATCH] www/LWP-Authen-Wsse: update to 0.04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 15:40:19 -0000 >Number: 69303 >Category: ports >Synopsis: [PATCH] www/LWP-Authen-Wsse: update to 0.04 >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 Jul 19 15:40:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.04 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-LWP-Authen-Wsse-0.04.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-LWP-Authen-Wsse/Makefile /home/clsung/p5-LWP-Authen-Wsse/Makefile --- /usr/ports/www/p5-LWP-Authen-Wsse/Makefile Fri Jul 16 10:25:44 2004 +++ /home/clsung/p5-LWP-Authen-Wsse/Makefile Mon Jul 19 23:38:54 2004 @@ -6,7 +6,7 @@ # PORTNAME= LWP-Authen-Wsse -PORTVERSION= 0.03 +PORTVERSION= 0.04 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= LWP diff -ruN --exclude=CVS /usr/ports/www/p5-LWP-Authen-Wsse/distinfo /home/clsung/p5-LWP-Authen-Wsse/distinfo --- /usr/ports/www/p5-LWP-Authen-Wsse/distinfo Fri Jul 16 10:25:44 2004 +++ /home/clsung/p5-LWP-Authen-Wsse/distinfo Mon Jul 19 23:39:35 2004 @@ -1,2 +1,2 @@ -MD5 (LWP-Authen-Wsse-0.03.tar.gz) = 01543381a1a5adce2cd4d4213e939b97 -SIZE (LWP-Authen-Wsse-0.03.tar.gz) = 10456 +MD5 (LWP-Authen-Wsse-0.04.tar.gz) = 5ee03abf68620d61298023998387e57b +SIZE (LWP-Authen-Wsse-0.04.tar.gz) = 10634 --- p5-LWP-Authen-Wsse-0.04.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15:50: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 D513D16A4CE for ; Mon, 19 Jul 2004 15:50:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4BA743D1D for ; Mon, 19 Jul 2004 15:50:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JFo3xk074400 for ; Mon, 19 Jul 2004 15:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JFo39b074396; Mon, 19 Jul 2004 15:50:03 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 15:50:03 GMT Resent-Message-Id: <200407191550.i6JFo39b074396@freefall.freebsd.org> 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 Dupre Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA6C216A4CE; Mon, 19 Jul 2004 15:40:27 +0000 (GMT) Received: from armada.alexdupre.com (host245-49.pool8288.interbusiness.it [82.88.49.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0186D43D2F; Mon, 19 Jul 2004 15:40:27 +0000 (GMT) (envelope-from alex@armada.alexdupre.com) Received: from armada.alexdupre.com (localhost.alexdupre.com [127.0.0.1]) i6JFePkW004625; Mon, 19 Jul 2004 17:40:25 +0200 (CEST) (envelope-from alex@armada.alexdupre.com) Received: (from alex@localhost) by armada.alexdupre.com (8.12.11/8.12.11/Submit) id i6JFeOrt004624; Mon, 19 Jul 2004 17:40:24 +0200 (CEST) (envelope-from alex) Message-Id: <200407191540.i6JFeOrt004624@armada.alexdupre.com> Date: Mon, 19 Jul 2004 17:40:24 +0200 (CEST) From: Alex Dupre To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: portmgr@FreeBSD.org Subject: ports/69304: [Patch] Fix handling of BROKEN_WITH_MYSQL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 15:50:03 -0000 >Number: 69304 >Category: ports >Synopsis: [Patch] Fix handling of BROKEN_WITH_MYSQL >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 Jul 19 15:50:03 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD armada.alexdupre.com 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jun 30 16:14:27 CEST 2004 alex@armada.alexdupre.com:/usr/obj/usr/src/sys/ARMADA i386 >Description: The IGNORE message isn't displayed since it's not correctly escaped (syntax error). >How-To-Repeat: >Fix: --- bsd.port.mk.diff begins here --- Index: Mk/bsd.port.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.port.mk,v retrieving revision 1.493 diff -u -r1.493 bsd.port.mk --- Mk/bsd.port.mk 17 Jul 2004 14:23:34 -0000 1.493 +++ Mk/bsd.port.mk 19 Jul 2004 15:36:01 -0000 @@ -1493,7 +1493,7 @@ .if defined(BROKEN_WITH_MYSQL) . for VER in ${BROKEN_WITH_MYSQL} . if (${MYSQL_VER} == "${VER}") -IGNORE= "Doesn't work with MySQL version : ${MYSQL_VER} (Doesn't support MySQL ${BROKEN_WITH_MYSQL})" +IGNORE= "Doesn\'t work with MySQL version : ${MYSQL_VER} \(Doesn\'t support MySQL ${BROKEN_WITH_MYSQL}\)" . endif . endfor .endif # BROKEN_WITH_MYSQL --- bsd.port.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 15:51: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 D728016A4CE; Mon, 19 Jul 2004 15:51:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA35D43D1D; Mon, 19 Jul 2004 15:51:45 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from freefall.freebsd.org (ale@localhost [127.0.0.1]) i6JFpjxh074579; Mon, 19 Jul 2004 15:51:45 GMT (envelope-from ale@freefall.freebsd.org) Received: (from ale@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JFpjk1074575; Mon, 19 Jul 2004 15:51:45 GMT (envelope-from ale) Date: Mon, 19 Jul 2004 15:51:45 GMT From: Alex Dupre Message-Id: <200407191551.i6JFpjk1074575@freefall.freebsd.org> To: ale@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/69304: [Patch] Fix handling of BROKEN_WITH_MYSQL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 15:51:46 -0000 Synopsis: [Patch] Fix handling of BROKEN_WITH_MYSQL Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: ale Responsible-Changed-When: Mon Jul 19 15:50:24 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=69304 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 16: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 B4A5416A4CE for ; Mon, 19 Jul 2004 16:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8CDA43D4C for ; Mon, 19 Jul 2004 16:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JGUNP9079974 for ; Mon, 19 Jul 2004 16:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JGUNqf079972; Mon, 19 Jul 2004 16:30:23 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 16:30:23 GMT Resent-Message-Id: <200407191630.i6JGUNqf079972@freefall.freebsd.org> 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 B679A16A4CE for ; Mon, 19 Jul 2004 16:22:04 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85DDE43D48 for ; Mon, 19 Jul 2004 16:22:04 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 592F3157EC for ; Tue, 20 Jul 2004 00:23:35 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 33472-04 for ; Tue, 20 Jul 2004 00:23:34 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id CE713157D3; Tue, 20 Jul 2004 00:23:34 +0800 (CST) Message-Id: <20040719162334.CE713157D3@mail.dragon2.net> Date: Tue, 20 Jul 2004 00:23:34 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69305: [MAINTAINER] databases/BerkeleyDB: fixed failed with -ldb42 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 16:30:23 -0000 >Number: 69305 >Category: ports >Synopsis: [MAINTAINER] databases/BerkeleyDB: fixed failed with -ldb42 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 16:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - fixed when WITH_BDB_VER=42 => Note (probably harmless): No library found for -ldb42 - use BDB_LIB_VER instead of WITH_BDB_VER to library linking Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: % make WITH_BDB_VER=42 >Fix: --- p5-BerkeleyDB-0.25_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/p5-BerkeleyDB/Makefile /home/clsung/p5-BerkeleyDB/Makefile --- /usr/ports/databases/p5-BerkeleyDB/Makefile Wed Apr 7 16:28:27 2004 +++ /home/clsung/p5-BerkeleyDB/Makefile Tue Jul 20 00:19:11 2004 @@ -7,6 +7,7 @@ PORTNAME= BerkeleyDB PORTVERSION= 0.25 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= BerkeleyDB @@ -20,14 +21,19 @@ .if ${WITH_BDB_VER} == 2 LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db2 +BDB_LIB_VER= db2 .elif ${WITH_BDB_VER} == 3 LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3 +BDB_LIB_VER= db3 .elif ${WITH_BDB_VER} == 4 LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4 +BDB_LIB_VER= db4 .elif ${WITH_BDB_VER} == 41 LIB_DEPENDS= db41.1:${PORTSDIR}/databases/db41 +BDB_LIB_VER= db41 .elif ${WITH_BDB_VER} == 42 LIB_DEPENDS= db-4.2.2:${PORTSDIR}/databases/db42 +BDB_LIB_VER= db-4.2 .else .error WITH_BDB_VER must be one between 2, 3, 4, 41 and 42 .endif @@ -43,7 +49,7 @@ post-patch: @${ECHO} "INCLUDE = ${LOCALBASE}/include/db${WITH_BDB_VER}" > ${WRKSRC}/config.in @${ECHO} "LIB = ${LOCALBASE}/lib" >> ${WRKSRC}/config.in - @${ECHO} "DBNAME = -ldb${WITH_BDB_VER}" >> ${WRKSRC}/config.in + @${ECHO} "DBNAME = -l${BDB_LIB_VER}" >> ${WRKSRC}/config.in ${PERL} -pi -e '$$_="" if /MAN3PODS/' ${WRKSRC}/Makefile.PL .include --- p5-BerkeleyDB-0.25_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 16:43: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 9A06016A4CE; Mon, 19 Jul 2004 16:43:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B53A43D49; Mon, 19 Jul 2004 16:43:44 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6JGhiv6081539; Mon, 19 Jul 2004 16:43:44 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JGhiTf081535; Mon, 19 Jul 2004 16:43:44 GMT (envelope-from vanilla) Date: Mon, 19 Jul 2004 16:43:44 GMT From: "Vanilla I. Shu" Message-Id: <200407191643.i6JGhiTf081535@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69305: [MAINTAINER] databases/BerkeleyDB: fixed failed with -ldb42 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 16:43:44 -0000 Synopsis: [MAINTAINER] databases/BerkeleyDB: fixed failed with -ldb42 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Jul 19 16:43:37 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69305 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 16:44: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 9E41016A4CE; Mon, 19 Jul 2004 16:44:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8036F43D2F; Mon, 19 Jul 2004 16:44:27 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6JGiRcN081682; Mon, 19 Jul 2004 16:44:27 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JGiRoS081678; Mon, 19 Jul 2004 16:44:27 GMT (envelope-from vanilla) Date: Mon, 19 Jul 2004 16:44:27 GMT From: "Vanilla I. Shu" Message-Id: <200407191644.i6JGiRoS081678@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69303: [PATCH] www/LWP-Authen-Wsse: update to 0.04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 16:44:28 -0000 Synopsis: [PATCH] www/LWP-Authen-Wsse: update to 0.04 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Jul 19 16:44:17 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69303 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 16:44: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 7EE7E16A4CE; Mon, 19 Jul 2004 16:44:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D6643D48; Mon, 19 Jul 2004 16:44:39 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6JGidRG081726; Mon, 19 Jul 2004 16:44:39 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JGidMh081722; Mon, 19 Jul 2004 16:44:39 GMT (envelope-from vanilla) Date: Mon, 19 Jul 2004 16:44:39 GMT From: "Vanilla I. Shu" Message-Id: <200407191644.i6JGidMh081722@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69302: [NEW PORT] devel/p5-IO-Util: A selection of general-utility IO function X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 16:44:39 -0000 Synopsis: [NEW PORT] devel/p5-IO-Util: A selection of general-utility IO function State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Jul 19 16:44:31 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69302 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 16: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 8D7A816A4CE for ; Mon, 19 Jul 2004 16:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CF5E43D54 for ; Mon, 19 Jul 2004 16:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JGoOW8081888 for ; Mon, 19 Jul 2004 16:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JGoOF9081886; Mon, 19 Jul 2004 16:50:24 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 16:50:24 GMT Resent-Message-Id: <200407191650.i6JGoOF9081886@freefall.freebsd.org> 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 275A316A4CF; Mon, 19 Jul 2004 16:49:53 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6AA043D54; Mon, 19 Jul 2004 16:49:52 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 87725157EC; Tue, 20 Jul 2004 00:51:23 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 33472-09; Tue, 20 Jul 2004 00:51:23 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id EAF3F157D3; Tue, 20 Jul 2004 00:51:22 +0800 (CST) Message-Id: <20040719165122.EAF3F157D3@mail.dragon2.net> Date: Tue, 20 Jul 2004 00:51:22 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: wjv@FreeBSD.org Subject: ports/69306: [PATCH] devel/File-Temp: update to 0.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: Mon, 19 Jul 2004 16:50:24 -0000 >Number: 69306 >Category: ports >Synopsis: [PATCH] devel/File-Temp: update to 0.14 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 16:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.14 - Add new BUILD_DEPENDS - 0.14 is included in perl5.8 - required by svk Port maintainer (wjv@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-File-Temp-0.14.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-File-Temp/Makefile /home/clsung/p5-File-Temp/Makefile --- /usr/ports/devel/p5-File-Temp/Makefile Sat Oct 25 07:34:37 2003 +++ /home/clsung/p5-File-Temp/Makefile Tue Jul 20 00:48:42 2004 @@ -6,8 +6,8 @@ # PORTNAME= File-Temp -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.14 +PORTREVISION= 0 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= File @@ -16,6 +16,7 @@ MAINTAINER= wjv@FreeBSD.org COMMENT= Perl5 module to generate temporary files or directories safely +BUILD_DEPENDS= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes @@ -27,6 +28,9 @@ .if ${PERL_LEVEL} < 500601 BUILD_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec RUN_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec +.endif +.if ${PERL_LEVEL} > 500800 +IGNORE= "This module is already included in perl 5.8.x and later." .endif .include diff -ruN --exclude=CVS /usr/ports/devel/p5-File-Temp/distinfo /home/clsung/p5-File-Temp/distinfo --- /usr/ports/devel/p5-File-Temp/distinfo Thu Apr 1 16:39:22 2004 +++ /home/clsung/p5-File-Temp/distinfo Tue Jul 20 00:33:21 2004 @@ -1,2 +1,2 @@ -MD5 (File-Temp-0.12.tar.gz) = 5e292917da811e0290f6c74aaa9b0f8a -SIZE (File-Temp-0.12.tar.gz) = 25898 +MD5 (File-Temp-0.14.tar.gz) = b7b59244c22878e23cd92c6d93d65ed8 +SIZE (File-Temp-0.14.tar.gz) = 28453 --- p5-File-Temp-0.14.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 17:46: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 3761716A4CE; Mon, 19 Jul 2004 17:46:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 172C243D46; Mon, 19 Jul 2004 17:46:17 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6JHkGxv088544; Mon, 19 Jul 2004 17:46:16 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JHkGPm088540; Mon, 19 Jul 2004 17:46:16 GMT (envelope-from pav) Date: Mon, 19 Jul 2004 17:46:16 GMT From: Pav Lucistnik Message-Id: <200407191746.i6JHkGPm088540@freefall.freebsd.org> To: klammer@webonaut.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69269: [maintainer-update] x11/zenity X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 17:46:17 -0000 Synopsis: [maintainer-update] x11/zenity State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Mon Jul 19 17:46:00 GMT 2004 State-Changed-Why: Looks like this was updated by bland 4 days ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=69269 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 3DEF316A4CF for ; Mon, 19 Jul 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 3251543D2D for ; Mon, 19 Jul 2004 17:50:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JHoRIG088745 for ; Mon, 19 Jul 2004 17:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JHoRLL088744; Mon, 19 Jul 2004 17:50:27 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 17:50:27 GMT Message-Id: <200407191750.i6JHoRLL088744@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: tmseck-lists@netcologne.de (Thomas-Martin Seck) Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 17:50:28 -0000 The following reply was made to PR ports/69266; it has been noted by GNATS. From: tmseck-lists@netcologne.de (Thomas-Martin Seck) To: bug-followup@freebsd.org Cc: Tsurutani Naoki Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" Date: 19 Jul 2004 17:47:39 -0000 * Tsurutani Naoki : >>Description: > www/squid removes many files in $PREFIX/etc/squid when it is deinstalled. > This port has no pkg-plist, and generate it in Makefile. > It seems to me that the generating way is simple listing of > existing files just after installation. > But this procedure includes foreign files from www/squid. > MD5 checksums are also recorded, so changed files are not removed, > but many files that are not changed, cf. configuration files, are > removed. Oops. I admit I did not think about this case when I switched to dynamic plist creation since I used to use a copy of the original directories for modifications. >>How-To-Repeat: > always. Fortunately, you can avoid this. If you want to customize your icons and/or the error pages, just put these modified directories where the PLIST creation script does not look for them. Then use the 'icon_directory' and 'error_directory' configuration options to tell squid where your custom files live. This will preserve them. > >>Fix: > I don't know, but I think the way of generating PLIST should be improved. I see the problem, but the only sure-fire way to avoid this would be to stage a fake installation first, create the package list and then copy this installation into the PREFIX dir, like firefox does. I am not really fond of this and I would like to avoid it. Mind you that other ports suffer from the same problem, e.g. vim. And while this will preserve locally added files, it will still end in modified files being overwritten on every update. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 17:57: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 E0A3D16A4CE; Mon, 19 Jul 2004 17:57:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE3243D4C; Mon, 19 Jul 2004 17:57:05 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6JHv5wH089217; Mon, 19 Jul 2004 17:57:05 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JHv5DW089213; Mon, 19 Jul 2004 17:57:05 GMT (envelope-from pav) Date: Mon, 19 Jul 2004 17:57:05 GMT From: Pav Lucistnik Message-Id: <200407191757.i6JHv5DW089213@freefall.freebsd.org> To: martin@tradex.sk, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69270: [MAINTAINER UPDATE] archivers/bsdtar to 2004.07.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: Mon, 19 Jul 2004 17:57:06 -0000 Synopsis: [MAINTAINER UPDATE] archivers/bsdtar to 2004.07.14 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Mon Jul 19 17:56:59 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69270 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 ACB1716A4D2 for ; Mon, 19 Jul 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 4145343D60 for ; Mon, 19 Jul 2004 18:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JI0kQj089407 for ; Mon, 19 Jul 2004 18:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JI0kA1089406; Mon, 19 Jul 2004 18:00:46 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 18:00:46 GMT Resent-Message-Id: <200407191800.i6JI0kA1089406@freefall.freebsd.org> 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-Martin Seck Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E678116A4CE for ; Mon, 19 Jul 2004 17:52:59 +0000 (GMT) Received: from smtp1.netcologne.de (smtp1.netcologne.de [194.8.194.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8917743D60 for ; Mon, 19 Jul 2004 17:52:59 +0000 (GMT) (envelope-from thomas@laurel.tmseck.homedns.org) Received: from laurel.tmseck.homedns.org (xdsl-81-173-172-62.netcologne.de [81.173.172.62]) by smtp1.netcologne.de (Postfix) with SMTP id 65EC5394EC for ; Mon, 19 Jul 2004 19:52:56 +0200 (MEST) Received: (qmail 2671 invoked by uid 1001); 19 Jul 2004 17:52:47 -0000 Message-Id: <20040719175246.2670.qmail@laurel.tmseck.homedns.org> Date: 19 Jul 2004 17:52:46 -0000 From: Thomas-Martin Seck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69307: [Maintainer] www/squid: integrate various vendor patches X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 18:00:47 -0000 >Number: 69307 >Category: ports >Synopsis: [Maintainer] www/squid: integrate various vendor 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: Mon Jul 19 18:00:45 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Thomas-Martin Seck >Release: FreeBSD 4.10-STABLE i386 >Organization: a private site in Germany >Environment: FreeBSD ports collection as of July 19th, 2004. >Description: Integrate the following vendor patches as published on : - fix a memory leak in client_db (squid bug #833) - add delay pools information to cachemgr's active_requests page (squid bug #882) - make basic authentication operate case insensitive by default, case sensitive operation can be enabled via squid.conf (squid bug #431) - log if cache files cannot be created for some reason (squid bug #918) - make sure that a HTTP HEAD request does not return stale data (squid bug #1012) - correctly log partial hits as TCP_MISS instead of TCP_HIT (squid bug #1011) - fix memory leaks within the NTLM authentication helper (squid bugs #994 and #910) - handle the request_header_max_size directive correctly (squid bug #899) - avoid creating a large number of queued DNS lookups for the same domain in case of DNS problems (squid bug #852) - update LDAP helper and chase renaming of the "ufs_no_valid_dir" patch. Wordsmith comments regarding the usage of SQUID_LANGUAGES and SQUID_CONFIGURE_ARGS. >How-To-Repeat: >Fix: Apply this patch: Index: distinfo =================================================================== --- distinfo (.../www/squid) (revision 120) +++ distinfo (.../local/squid) (revision 120) @@ -1,4 +1,26 @@ MD5 (squid2.5/squid-2.5.STABLE6.tar.bz2) = 7fd964ac27b43b613d6b981cc702a29e SIZE (squid2.5/squid-2.5.STABLE6.tar.bz2) = 1047199 -MD5 (squid2.5/squid-2.5.STABLE6.ufs_no_valid_dir.patch) = 26a4ab522a2469f805f746bcdbe0109c -SIZE (squid2.5/squid-2.5.STABLE6.ufs_no_valid_dir.patch) = 566 +MD5 (squid2.5/squid-2.5.STABLE6-ufs_no_valid_dir.patch) = 26a4ab522a2469f805f746bcdbe0109c +SIZE (squid2.5/squid-2.5.STABLE6-ufs_no_valid_dir.patch) = 566 +MD5 (squid2.5/squid-2.5.STABLE6-ldap_helpers.patch) = 2c367b09a30a8c1bb8af290cbc5d15c8 +SIZE (squid2.5/squid-2.5.STABLE6-ldap_helpers.patch) = 25080 +MD5 (squid2.5/squid-2.5.STABLE6-concurrent_dns_lookups.patch) = 2d6c81bd95659aa936281962b86e8a90 +SIZE (squid2.5/squid-2.5.STABLE6-concurrent_dns_lookups.patch) = 6467 +MD5 (squid2.5/squid-2.5.STABLE6-request_header_max_size.patch) = 1900043f6b73aa8a3cbd5004633a6c5c +SIZE (squid2.5/squid-2.5.STABLE6-request_header_max_size.patch) = 765 +MD5 (squid2.5/squid-2.5.STABLE6-ntlm_challengereuse_leak.patch) = f8f2744de056a9a0cbe7cafe44e67c19 +SIZE (squid2.5/squid-2.5.STABLE6-ntlm_challengereuse_leak.patch) = 12192 +MD5 (squid2.5/squid-2.5.STABLE6-ntlm_noreuse_leak.patch) = 7a18ed9211ec65c9275767401d1f8cf9 +SIZE (squid2.5/squid-2.5.STABLE6-ntlm_noreuse_leak.patch) = 3646 +MD5 (squid2.5/squid-2.5.STABLE6-partial_hit_is_miss.patch) = 9ce8322cf6c48dc02a7a51d039489143 +SIZE (squid2.5/squid-2.5.STABLE6-partial_hit_is_miss.patch) = 747 +MD5 (squid2.5/squid-2.5.STABLE6-HEAD.patch) = 929fe3d48046a7d17c0aa314befd8f7c +SIZE (squid2.5/squid-2.5.STABLE6-HEAD.patch) = 895 +MD5 (squid2.5/squid-2.5.STABLE6-ufs_create_error.patch) = 63b5693268cbba233a442b345e5769bb +SIZE (squid2.5/squid-2.5.STABLE6-ufs_create_error.patch) = 847 +MD5 (squid2.5/squid-2.5.STABLE6-basic_auth_caseinsensitive.patch) = eb6f28d6d572c8cf996619aea925a1b6 +SIZE (squid2.5/squid-2.5.STABLE6-basic_auth_caseinsensitive.patch) = 2337 +MD5 (squid2.5/squid-2.5.STABLE6-active_requests_delaypool.patch) = f465bdbbadd83dee417aafeb974a9248 +SIZE (squid2.5/squid-2.5.STABLE6-active_requests_delaypool.patch) = 500 +MD5 (squid2.5/squid-2.5.STABLE6-client_db_gc.patch) = 315e3bb42b4febde95b0974634ef8d66 +SIZE (squid2.5/squid-2.5.STABLE6-client_db_gc.patch) = 3668 Index: Makefile =================================================================== --- Makefile (.../www/squid) (revision 120) +++ Makefile (.../local/squid) (revision 120) @@ -21,17 +21,29 @@ # SQUID_LANGUAGES # A list of languages for which error page files should be installed # (default: all) +# +# E.g. use `make SQUID_LANGUAGES="English French"' if you want to +# install the files for these languages only. +# Use `make -VSQUID_LANGUAGES' or scroll down to this variable's +# definition to see which values are valid. +# # SQUID_DEFAULT_LANG # If you define SQUID_LANGUAGES, select which language should be the default -# (default: English) +# one (this variable defaults to English). This setting can be overwritten +# with squid.conf's error_directory directive. +# # SQUID_CONFIGURE_ARGS # Additional configuration options. -# To enable them, use an assignment like -# SQUID_CONFIGURE_ARGS="--enable-dlmalloc --enable-truncate" -# Below most of the additional configuration options are listed, -# please see the configure script in the squid source distribution for a -# complete list. Note that you probably do not need to worry about them. # +# To enable them, use e.g +# `make SQUID_CONFIGURE_ARGS="--enable-dlmalloc --enable-truncate" install' +# +# The list below may be incomplete, please see the configure script +# in the squid source distribution for the complete list of additional +# options. +# Note that you probably do not need to worry about these options in most +# cases, they are included in case you want to experiment with them. +# # --enable-dlmalloc # Compile and use the malloc package from Doug Lea # --enable-gnuregex @@ -62,6 +74,7 @@ PORTNAME= squid PORTVERSION= 2.5.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= \ ftp://ftp.squid-cache.org/pub/%SUBDIR%/ \ @@ -74,7 +87,18 @@ DIST_SUBDIR= squid2.5 PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.5/bugs/ -PATCHFILES= squid-2.5.STABLE6.ufs_no_valid_dir.patch +PATCHFILES= squid-2.5.STABLE6-ufs_no_valid_dir.patch \ + squid-2.5.STABLE6-ldap_helpers.patch \ + squid-2.5.STABLE6-concurrent_dns_lookups.patch \ + squid-2.5.STABLE6-request_header_max_size.patch \ + squid-2.5.STABLE6-ntlm_challengereuse_leak.patch \ + squid-2.5.STABLE6-ntlm_noreuse_leak.patch \ + squid-2.5.STABLE6-partial_hit_is_miss.patch \ + squid-2.5.STABLE6-HEAD.patch \ + squid-2.5.STABLE6-ufs_create_error.patch \ + squid-2.5.STABLE6-basic_auth_caseinsensitive.patch \ + squid-2.5.STABLE6-active_requests_delaypool.patch \ + squid-2.5.STABLE6-client_db_gc.patch PATCH_DIST_STRIP= -p1 MAINTAINER= tmseck@netcologne.de >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 18:10: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 B2D4116A4CF for ; Mon, 19 Jul 2004 18:10:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E26B43D1F for ; Mon, 19 Jul 2004 18:10:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JIAK7s094334 for ; Mon, 19 Jul 2004 18:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JIAKfx094333; Mon, 19 Jul 2004 18:10:20 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 18:10:20 GMT Resent-Message-Id: <200407191810.i6JIAKfx094333@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, zeekay Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA8E116A4CE for ; Mon, 19 Jul 2004 18:09:31 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3DC143D2F for ; Mon, 19 Jul 2004 18:09:31 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6JI9VoO043502 for ; Mon, 19 Jul 2004 18:09:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6JI9VT0043501; Mon, 19 Jul 2004 18:09:31 GMT (envelope-from nobody) Message-Id: <200407191809.i6JI9VT0043501@www.freebsd.org> Date: Mon, 19 Jul 2004 18:09:31 GMT From: zeekay To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69308: audio/baudline doesn't fetch, update to 0.98, correct small typo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 18:10:20 -0000 >Number: 69308 >Category: ports >Synopsis: audio/baudline doesn't fetch, update to 0.98, correct small typo >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 Jul 19 18:10:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: zeekay >Release: FreeBSD 4.10-RELEASE-p2 >Organization: >Environment: >Description: Try to install. >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/baudline/Makefile audio/baudline/Makefile --- /usr/ports/audio/baudline/Makefile Mon Jul 19 19:31:28 2004 +++ audio/baudline/Makefile Mon Jul 19 19:36:50 2004 @@ -6,7 +6,7 @@ # PORTNAME= baudline -PORTVERSION= 0.97 +PORTVERSION= 0.98 CATEGORIES= audio linux MASTER_SITES= http://www.baudline.com/ PKGNAMEPREFIX= linux- @@ -17,8 +17,6 @@ RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 -BROKEN= "Unfetchable" - USE_X_PREFIX= yes ONLY_FOR_ARCHS= i386 USE_LINUX= yes @@ -36,7 +34,7 @@ LINPROCFS!= /sbin/mount | ${GREP} linprocfs | ${AWK} '{print $1}' pre-everything:: -.if !${LINPROCFS} +.if ${LINPROCFS} @${ECHO_CMD} "" @${ECHO_CMD} "Check if linprocfs is running: YES" .else diff -urN /usr/ports/audio/baudline/distinfo audio/baudline/distinfo --- /usr/ports/audio/baudline/distinfo Mon Jul 19 19:31:28 2004 +++ audio/baudline/distinfo Mon Jul 19 19:37:41 2004 @@ -1,2 +1,2 @@ -MD5 (baudline_0.97_i686.tar.gz) = dd06fdc82dbcc40ad786d13e27bee9de -SIZE (baudline_0.97_i686.tar.gz) = 771677 +MD5 (baudline_0.98_i686.tar.gz) = ad7b895535e642096616c500e4e0540f +SIZE (baudline_0.98_i686.tar.gz) = 795919 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 18: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 4056016A4CE for ; Mon, 19 Jul 2004 18:20:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3094743D2F for ; Mon, 19 Jul 2004 18:20:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JIKAX3095030 for ; Mon, 19 Jul 2004 18:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JIKAPP095025; Mon, 19 Jul 2004 18:20:10 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 18:20:10 GMT Resent-Message-Id: <200407191820.i6JIKAPP095025@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andreas Klemm Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F57916A4CE for ; Mon, 19 Jul 2004 18:14:08 +0000 (GMT) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F0BE43D2D for ; Mon, 19 Jul 2004 18:14:07 +0000 (GMT) (envelope-from andreas@klemm.apsfilter.org) Received: from srv1.cosmo-project.de (localhost [IPv6:::1]) i6JIE5aI019177 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 19 Jul 2004 20:14:05 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: (from uucp@localhost)i6JIE5l0019176 for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 20:14:05 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: from titan.klemm.apsfilter.org (localhost.klemm.apsfilter.org [127.0.0.1]) by klemm.apsfilter.org (8.12.10/8.12.10) with ESMTP id i6JIC57V018834 for ; Mon, 19 Jul 2004 20:12:05 +0200 (CEST) (envelope-from andreas@titan.klemm.apsfilter.org) Received: (from andreas@localhost)i6JIC41V018833; Mon, 19 Jul 2004 20:12:04 +0200 (CEST) (envelope-from andreas) Message-Id: <200407191812.i6JIC41V018833@titan.klemm.apsfilter.org> Date: Mon, 19 Jul 2004 20:12:04 +0200 (CEST) From: Andreas Klemm To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69309: mysql database backup script for periodic/daily X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andreas Klemm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 18:20:10 -0000 >Number: 69309 >Category: ports >Synopsis: mysql database backup script for periodic/daily >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: Mon Jul 19 18:20:09 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andreas Klemm >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: home >Environment: System: FreeBSD titan.klemm.apsfilter.org 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #0: Sun Jul 4 17:11:05 CEST 2004 root@titan.klemm.apsfilter.org:/usr/src/sys/i386/compile/TITAN i386 >Description: The mysql port is missing a script for nightly backup of all databases. Inspired by Palle Girgensons backup script in the postgresql port I wrote an enhanced script where you can enable/disable the script in /etc/rc.conf as well as finetune the script with additional parameters for rc.conf Implementation notes: 1) The script filters db's with names "Database" and "backups" since mysql treats every subdir under "base dbdir" as potential db-dir 2) The default mysql database directory is possibly not /var/db/mysql But IMHO it would be a good thing 3) The default mysql "super-user" with all rights is possibly not "root" user. It might be "mysql", I don't remember the defaults. >How-To-Repeat: >Fix: Install this script under /usr/local/etc/periodic/daily/503.mysql #! /bin/sh # # $FreeBSD$ # # Maintenance shell script to backup mysql databases # # by Andreas Klemm , Mon Jul 19 12:12:31 CEST 2004 # # Heavily inspired by postgresql port's backup script # by Palle Girgensohn # # Copyright: do what you like with it and use it at your own risk... # ###################################################################### # # Put this script into /usr/local/etc/periodic/daily # # Add the following line(s) to /etc/rc.conf # to enable and fine-tune nightly backup of all mysql databases: # # mysql_backup_enable (bool): Set to "NO" by default # Set it to "YES" to enable nightly backup # mysql_db_user (str): Set to "root" by default (the mysql "db root") # Modify it for your needs (might be "mysql") # mysql_db_passwd (str): Set to "dbpasswd" by default # Modify it for your needs # mysql_db_host (str): Set to "localhost" by default # mysql_backup_dir (str): Set to "/var/db/mysql/backups" by default # Modify it for your needs # mysql_backup_save_days (str): Set to "7" by default # Set it to the no. of mysql backup's you want to keep # # mysql_dump_args (str): By default set to: # -u$mysql_db_user -p$mysql_db_passwd -h$mysql_db_host # ###################################################################### # # Implementation notes: # # 1) The script filters db's with names "Database" and "backups" since # mysql treats every subdir under "base dbdir" as potential db-dir # 2) The default mysql database directory is possibly not /var/db/mysql # But IMHO it would be a good thing # 3) The default mysql "super-user" with all rights is possibly not # "root" user. It might be "mysql", I don't remember the defaults. # ###################################################################### DIR=`dirname $0` progname=`basename $0` PRG=`cd $DIR; pwd `/$progname . /etc/rc.conf # set defaults mysql_backup_enable=${mysql_backup_enable:-"NO"} mysql_db_user=${mysql_db_user:-"root"} mysql_db_passwd=${mysql_db_passwd:-"dbpasswd"} mysql_db_host=${mysql_db_host:-"localhost"} mysql_backup_dir=${mysql_backup_dir:-"/var/db/mysql/backups"} mysql_backup_savedays=${mysql_backup_savedays:-"7"} mysql_dump_args=${mysql_dump_args:-\ "-u$mysql_db_user -p$mysql_db_passwd -h$mysql_db_host"} case $mysql_backup_enable in [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0) exit 1 ;; esac # MySQL Hostname DBHOST='localhost' # Run as mysql super user if [ `id -un` != $mysql_db_user ]; then su -l $mysql_db_user -c ${PRG} exit $? fi # $mysql_backup_dir must be writeable by db user if [ ! -d "$mysql_backup_dir" ] ; then echo "Creating $mysql_backup_dir" mkdir $mysql_backup_dir fi echo echo "MySQL maintenance" # Protect the data umask 077 dbnames=`mysql ${mysql_dump_args} -e"show databases"` rc=$? now=`date "+%Y-%m-%dT%H:%M:%S"` for db in ${dbnames}; do if [ "$db" != "Database" -a "$db" != "backups" ]; then echo -n " $db" file=$mysql_backup_dir/mysqldump_${db}_${now}.gz mysqldump ${mysql_dump_args} ${db} | gzip --best > $file [ $? -gt 0 ] && rc=3 fi done if [ $rc -gt 0 ]; then echo echo "Errors were reported during backup." fi # cleaning up old data find $mysql_backup_dir -name 'mysqldump_*' \ -a -mtime +$mysql_backup_savedays -delete exit $rc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 18:29: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 4F17A16A4CE; Mon, 19 Jul 2004 18:29:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45D5643D3F; Mon, 19 Jul 2004 18:29:08 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6JIT8uY095432; Mon, 19 Jul 2004 18:29:08 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JIT74l095426; Mon, 19 Jul 2004 18:29:07 GMT (envelope-from pav) Date: Mon, 19 Jul 2004 18:29:07 GMT From: Pav Lucistnik Message-Id: <200407191829.i6JIT74l095426@freefall.freebsd.org> To: rf358197@ohio.edu, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/69246: New port: devel/libgutenfetch Library for application developers to interface with Project Gutenberg etext servers. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 18:29:08 -0000 Synopsis: New port: devel/libgutenfetch Library for application developers to interface with Project Gutenberg etext servers. State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Mon Jul 19 18:28:06 GMT 2004 State-Changed-Why: Does not compile with latest gcc: cc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -D_THREAD_SAFE -pthread -DLOCALEDIR=\"\" -DDATADIR=\"/usr/local/share/libgutenfetch\" -I/usr/local/include -O -pipe -g -c libgutenfetch_utility.c -MT libgutenfetch_utility.lo -MD -MP -MF .deps/libgutenfetch_utility.TPlo -fPIC -DPIC -o .libs/libgutenfetch_utility.lo libgutenfetch_utility.c: In function `gutenfetch_util_read_binary_file_to_buffer': libgutenfetch_utility.c:1552: error: incompatible types in return Looks like new gcc don't permit NULL as a return value of function returning enum. Can you check with author and provide a patch to fix this? Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Mon Jul 19 18:28:06 GMT 2004 Responsible-Changed-Why: Handle. http://www.freebsd.org/cgi/query-pr.cgi?pr=69246 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 18:32: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 25F6916A4CE; Mon, 19 Jul 2004 18:32:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 074F143D39; Mon, 19 Jul 2004 18:32:42 +0000 (GMT) (envelope-from andreas@FreeBSD.org) Received: from freefall.freebsd.org (andreas@localhost [127.0.0.1]) i6JIWfVr001792; Mon, 19 Jul 2004 18:32:41 GMT (envelope-from andreas@freefall.freebsd.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JIWfmq001788; Mon, 19 Jul 2004 18:32:41 GMT (envelope-from andreas) Date: Mon, 19 Jul 2004 18:32:41 GMT From: Andreas Klemm Message-Id: <200407191832.i6JIWfmq001788@freefall.freebsd.org> To: andreas@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69309: mysql database backup script for periodic/daily X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 18:32:42 -0000 Synopsis: mysql database backup script for periodic/daily Responsible-Changed-From-To: freebsd-ports-bugs->ale@FreeBSD.org Responsible-Changed-By: andreas Responsible-Changed-When: Mon Jul 19 18:31:46 GMT 2004 Responsible-Changed-Why: over to maintainer of all 4 mysql server ports http://www.freebsd.org/cgi/query-pr.cgi?pr=69309 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 19: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 C393516A4D9 for ; Mon, 19 Jul 2004 19:00:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B120E43D58 for ; Mon, 19 Jul 2004 19:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JJ0mSI003005 for ; Mon, 19 Jul 2004 19:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JJ0mh5003004; Mon, 19 Jul 2004 19:00:48 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 19:00:48 GMT Resent-Message-Id: <200407191900.i6JJ0mh5003004@freefall.freebsd.org> 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 C393D16A4CE for ; Mon, 19 Jul 2004 18:53:51 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 92D2943D2F for ; Mon, 19 Jul 2004 18:53:50 +0000 (GMT) (envelope-from h.eichmann@gmx.de) Received: (qmail 24162 invoked by uid 65534); 19 Jul 2004 18:53:46 -0000 Received: from pD9EC354E.dip.t-dialin.net (EHLO [192.168.254.42]) (217.236.53.78) by mail.gmx.net (mp009) with SMTP; 19 Jul 2004 20:53:46 +0200 Message-Id: <200407192057.22101.h.eichmann@gmx.de> Date: Mon, 19 Jul 2004 19:57:22 +0100 From: Heiner To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69310: Port upgrade: sysutils/k3b to 0.11.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: Mon, 19 Jul 2004 19:00:49 -0000 >Number: 69310 >Category: ports >Synopsis: Port upgrade: sysutils/k3b to 0.11.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 19:00:48 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Heiner Eichmann >Release: FreeBSD 4.10-STABLE i386 >Organization: Sirius Cybernetics Corp. >Environment: FreeBSD 7of9.unimatrix-zero.borg 4.10-STABLE FreeBSD 4.10-STABLE #1: Sun Jun 20 14:49:25 CEST 2004 root@7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: Upgrade to 0.11.12 >How-To-Repeat: >Fix: See attached files. --Boundary-00=_SmB/AkMIizN6P7a Content-Type: text/x-diff; charset="iso-8859-1"; name="diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="diff" diff -urN ../../sysutils/k3b/Makefile ./Makefile --- ../../sysutils/k3b/Makefile Sun Jul 11 18:34:01 2004 +++ ./Makefile Tue Jun 29 21:54:23 2004 @@ -6,8 +6,7 @@ # PORTNAME= k3b -PORTVERSION= 0.11.9 -PORTREVISION= 1 +PORTVERSION= 0.11.12 CATEGORIES= sysutils multimedia kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -urN ../../sysutils/k3b/distinfo ./distinfo --- ../../sysutils/k3b/distinfo Fri May 28 07:51:59 2004 +++ ./distinfo Tue Jun 29 20:02:56 2004 @@ -1,2 +1,2 @@ -MD5 (k3b-0.11.9.tar.bz2) = 88f46a5cfbda5fa89b4bfee504567df1 -SIZE (k3b-0.11.9.tar.bz2) = 3217141 +MD5 (k3b-0.11.12.tar.bz2) = 32537417ea39adbc5c4d7bd30c07f8b5 +SIZE (k3b-0.11.12.tar.bz2) = 3187611 \ No newline at end of file diff -urN ../../sysutils/k3b/files/patch-src-Makefile.in ./files/patch-src-Makefile.in --- ../../sysutils/k3b/files/patch-src-Makefile.in Fri May 28 07:52:00 2004 +++ ./files/patch-src-Makefile.in Sun Jul 11 15:14:12 2004 @@ -1,6 +1,6 @@ ---- src/Makefile.in.orig Mon Mar 29 20:04:54 2004 -+++ src/Makefile.in Tue May 11 22:57:03 2004 -@@ -272,7 +272,7 @@ +--- src/Makefile.in.orig Thu Jun 24 19:34:03 2004 ++++ src/Makefile.in Sun Jul 11 12:24:22 2004 +@@ -287,7 +287,7 @@ #>+ 1 k3b_SOURCES=k3bwelcomewidget.cpp k3bapplication.cpp k3bdiroperator.cpp kdndfileview.cpp k3bfiletreeview.cpp k3bcddbmultientriesdialog.cpp k3baudioplayer.cpp k3bprojecttabbar.cpp k3bprojecttabwidget.cpp k3bsplash.cpp k3bblankingdialog.cpp k3bfileview.cpp k3bdirview.cpp k3btoolbox.cpp k3b.cpp main.cpp k3bstatusbarmanager.cpp k3bfiletreecombobox.cpp k3breadcdreader.cpp k3binterface.cpp k3bprojectinterface.cpp k3bsystemproblemdialog.cpp k3bcdcontentsview.cpp k3bwriterspeedverificationdialog.cpp k3bdatatrackreader.cpp k3binterface_skel.cpp k3bprojectinterface_skel.cpp diff -urN ../../sysutils/k3b/files/patch-src-core-k3bdefaultexternalprograms.cpp ./files/patch-src-core-k3bdefaultexternalprograms.cpp --- ../../sysutils/k3b/files/patch-src-core-k3bdefaultexternalprograms.cpp Fri May 28 07:52:00 2004 +++ ./files/patch-src-core-k3bdefaultexternalprograms.cpp Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ ---- src/core/k3bdefaultexternalprograms.cpp.orig Mon Mar 22 18:13:21 2004 -+++ src/core/k3bdefaultexternalprograms.cpp Tue May 11 22:57:03 2004 +--- src/core/k3bdefaultexternalprograms.cpp.orig Fri May 21 19:03:21 2004 ++++ src/core/k3bdefaultexternalprograms.cpp Sun Jul 11 12:24:22 2004 @@ -30,6 +30,7 @@ #include #include @@ -143,7 +143,7 @@ K3bProcess::OutputCollector out( &vp ); vp << path; -@@ -911,7 +912,7 @@ +@@ -913,7 +914,7 @@ K3bExternalBin* bin = 0; // probe version diff -urN ../../sysutils/k3b/files/patch-src-core-k3bprocess.cpp ./files/patch-src-core-k3bprocess.cpp --- ../../sysutils/k3b/files/patch-src-core-k3bprocess.cpp Fri May 28 07:52:00 2004 +++ ./files/patch-src-core-k3bprocess.cpp Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/core/k3bprocess.cpp.orig Sun Feb 1 09:18:58 2004 -+++ src/core/k3bprocess.cpp Tue May 11 22:57:03 2004 ++++ src/core/k3bprocess.cpp Sun Jul 11 12:24:22 2004 @@ -28,6 +28,60 @@ #include #include diff -urN ../../sysutils/k3b/files/patch-src-core-k3bprocess.h ./files/patch-src-core-k3bprocess.h --- ../../sysutils/k3b/files/patch-src-core-k3bprocess.h Fri May 28 07:52:01 2004 +++ ./files/patch-src-core-k3bprocess.h Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/core/k3bprocess.h.orig Tue Jan 27 09:19:13 2004 -+++ src/core/k3bprocess.h Tue May 11 22:57:03 2004 ++++ src/core/k3bprocess.h Sun Jul 11 12:24:22 2004 @@ -194,4 +194,21 @@ KProcess* m_process; }; diff -urN ../../sysutils/k3b/files/patch-src-device-k3bdevice.cpp ./files/patch-src-device-k3bdevice.cpp --- ../../sysutils/k3b/files/patch-src-device-k3bdevice.cpp Fri May 28 07:52:01 2004 +++ ./files/patch-src-device-k3bdevice.cpp Sun Jul 11 15:14:12 2004 @@ -1,6 +1,6 @@ ---- src/device/k3bdevice.cpp.orig Sun Mar 14 17:35:20 2004 -+++ src/device/k3bdevice.cpp Mon May 24 23:31:19 2004 -@@ -56,6 +56,12 @@ +--- src/device/k3bdevice.cpp.orig Wed Jun 23 12:06:46 2004 ++++ src/device/k3bdevice.cpp Sun Jul 11 12:24:22 2004 +@@ -57,6 +57,13 @@ #endif // Q_OS_LINUX @@ -8,12 +8,13 @@ +#define __BYTE_ORDER BYTE_ORDER +#define __BIG_ENDIAN BIG_ENDIAN +#define CD_FRAMESIZE_RAW 2352 ++#define nearbyint(x) rint(x) +#endif + #ifdef HAVE_RESMGR extern "C" { -@@ -152,8 +158,10 @@ +@@ -153,8 +160,10 @@ d->supportedProfiles = 0; @@ -24,7 +25,7 @@ // -@@ -192,6 +200,7 @@ +@@ -193,6 +202,7 @@ unsigned char header[2048]; ::memset( header, 0, 2048 ); @@ -32,7 +33,7 @@ cmd[0] = MMC::GET_CONFIGURATION; cmd[8] = 8; if( cmd.transport( TR_DIR_READ, header, 8 ) ) { -@@ -733,6 +742,14 @@ +@@ -769,6 +779,14 @@ m_bufferSize = 1024; d->burnfree = false; } @@ -45,9 +46,9 @@ + d->burnfree = false; + } } - else if( vendor().startsWith("MATSHITA") ) { - if( description().startsWith("CD-R CW-7501") ) { -@@ -2317,10 +2334,12 @@ + else if( vendor().startsWith("HP") ) { + if( description().startsWith("CD-Writer 6020") ) { +@@ -2559,10 +2577,12 @@ { // if the device is already opened we do not close it // to allow fast multible method calls in a row @@ -60,7 +61,7 @@ // header size is 8 unsigned char* buffer = 0; -@@ -2406,13 +2425,16 @@ +@@ -2648,13 +2668,16 @@ delete [] buffer; } diff -urN ../../sysutils/k3b/files/patch-src-device-k3bdevice.h ./files/patch-src-device-k3bdevice.h --- ../../sysutils/k3b/files/patch-src-device-k3bdevice.h Fri May 28 07:52:01 2004 +++ ./files/patch-src-device-k3bdevice.h Sun Jul 11 15:14:12 2004 @@ -1,6 +1,6 @@ ---- src/device/k3bdevice.h.orig Sun Mar 14 17:35:20 2004 -+++ src/device/k3bdevice.h Tue May 11 22:57:03 2004 -@@ -661,6 +661,10 @@ +--- src/device/k3bdevice.h.orig Wed Jun 9 18:36:58 2004 ++++ src/device/k3bdevice.h Sun Jul 11 12:24:22 2004 +@@ -677,6 +677,10 @@ class Private; Private* d; diff -urN ../../sysutils/k3b/files/patch-src-device-k3bdevicemanager.cpp ./files/patch-src-device-k3bdevicemanager.cpp --- ../../sysutils/k3b/files/patch-src-device-k3bdevicemanager.cpp Fri May 28 07:52:01 2004 +++ ./files/patch-src-device-k3bdevicemanager.cpp Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ ---- src/device/k3bdevicemanager.cpp.orig Sun Feb 29 13:52:41 2004 -+++ src/device/k3bdevicemanager.cpp Tue May 11 22:57:03 2004 +--- src/device/k3bdevicemanager.cpp.orig Tue Jun 22 21:50:55 2004 ++++ src/device/k3bdevicemanager.cpp Sun Jul 11 12:24:22 2004 @@ -49,6 +49,12 @@ #include #include @@ -35,7 +35,7 @@ scanFstab(); return m_foundDevices; -@@ -427,6 +441,7 @@ +@@ -421,6 +435,7 @@ bool K3bCdDevice::DeviceManager::testForCdrom(const QString& devicename) { bool ret = false; @@ -43,7 +43,7 @@ int cdromfd = K3bCdDevice::openDevice( devicename.ascii() ); if (cdromfd < 0) { kdDebug() << "could not open device " << devicename << " (" << strerror(errno) << ")" << endl; -@@ -467,11 +482,36 @@ +@@ -461,11 +476,36 @@ } ::close( cdromfd ); @@ -80,7 +80,7 @@ K3bDevice* device = 0; // resolve all symlinks -@@ -503,6 +543,7 @@ +@@ -497,6 +537,7 @@ device->m_target = target; device->m_lun = lun; } @@ -88,7 +88,7 @@ if( !device->init() ) { kdDebug() << "Could not initialize device " << devicename << endl; -@@ -578,9 +619,20 @@ +@@ -572,9 +613,20 @@ if( K3bDevice* dev = findDevice( resolveSymLink(md) ) ) { @@ -109,7 +109,7 @@ dev->setMountDevice( md ); dev->m_supermount = supermount; } -@@ -589,6 +641,8 @@ +@@ -583,6 +635,8 @@ { // compare bus, id, lun since the same device can for example be // determined as /dev/srX or /dev/scdX @@ -118,7 +118,7 @@ int bus = -1, id = -1, lun = -1; if( determineBusIdLun( mountInfo->fs_spec, bus, id, lun ) ) { if( K3bDevice* dev = findDevice( bus, id, lun ) ) { -@@ -599,6 +653,17 @@ +@@ -593,6 +647,17 @@ } } } @@ -136,7 +136,7 @@ } -@@ -674,5 +739,131 @@ +@@ -668,5 +733,131 @@ return QString::fromLatin1( resolved ); } diff -urN ../../sysutils/k3b/files/patch-src-device-k3bdevicemanager.h ./files/patch-src-device-k3bdevicemanager.h --- ../../sysutils/k3b/files/patch-src-device-k3bdevicemanager.h Fri May 28 07:52:01 2004 +++ ./files/patch-src-device-k3bdevicemanager.h Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/device/k3bdevicemanager.h.orig Wed Jan 21 11:20:11 2004 -+++ src/device/k3bdevicemanager.h Tue May 11 22:57:03 2004 ++++ src/device/k3bdevicemanager.h Sun Jul 11 12:24:22 2004 @@ -112,6 +112,10 @@ class Private; diff -urN ../../sysutils/k3b/files/patch-src-device-k3bscsicommand.cpp ./files/patch-src-device-k3bscsicommand.cpp --- ../../sysutils/k3b/files/patch-src-device-k3bscsicommand.cpp Fri May 28 07:52:01 2004 +++ ./files/patch-src-device-k3bscsicommand.cpp Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/device/k3bscsicommand.cpp.orig Wed Jan 21 11:20:11 2004 -+++ src/device/k3bscsicommand.cpp Mon May 24 23:32:04 2004 ++++ src/device/k3bscsicommand.cpp Sun Jul 11 12:24:22 2004 @@ -58,13 +58,14 @@ diff -urN ../../sysutils/k3b/files/patch-src-device-k3bscsicommand.h ./files/patch-src-device-k3bscsicommand.h --- ../../sysutils/k3b/files/patch-src-device-k3bscsicommand.h Fri May 28 07:52:01 2004 +++ ./files/patch-src-device-k3bscsicommand.h Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/device/k3bscsicommand.h.orig Wed Jan 21 11:20:11 2004 -+++ src/device/k3bscsicommand.h Tue May 11 22:57:03 2004 ++++ src/device/k3bscsicommand.h Sun Jul 11 12:24:22 2004 @@ -17,9 +17,27 @@ #define _K3B_SCSI_COMMAND_H_ diff -urN ../../sysutils/k3b/files/patch-src-rip-k3bdvdrippingprocess.cpp ./files/patch-src-rip-k3bdvdrippingprocess.cpp --- ../../sysutils/k3b/files/patch-src-rip-k3bdvdrippingprocess.cpp Fri May 28 07:52:01 2004 +++ ./files/patch-src-rip-k3bdvdrippingprocess.cpp Sun Jul 11 15:14:12 2004 @@ -1,6 +1,6 @@ ---- src/rip/k3bdvdrippingprocess.cpp.orig Wed Jan 21 11:20:20 2004 -+++ src/rip/k3bdvdrippingprocess.cpp Tue May 11 22:57:03 2004 -@@ -278,10 +278,13 @@ +--- src/rip/k3bdvdrippingprocess.cpp.orig Wed Jun 2 11:31:41 2004 ++++ src/rip/k3bdvdrippingprocess.cpp Sun Jul 11 12:24:22 2004 +@@ -285,10 +285,13 @@ void K3bDvdRippingProcess::slotPreProcessingDvd() { QString video; QDir video_ts( m_mountPoint + "/VIDEO_TS"); diff -urN ../../sysutils/k3b/files/patch-src-rip-k3bmovieview.cpp ./files/patch-src-rip-k3bmovieview.cpp --- ../../sysutils/k3b/files/patch-src-rip-k3bmovieview.cpp Fri May 28 07:52:01 2004 +++ ./files/patch-src-rip-k3bmovieview.cpp Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/rip/k3bmovieview.cpp.orig Fri Feb 6 12:08:51 2004 -+++ src/rip/k3bmovieview.cpp Tue May 11 22:57:03 2004 ++++ src/rip/k3bmovieview.cpp Sun Jul 11 12:24:22 2004 @@ -223,8 +223,11 @@ } diff -urN ../../sysutils/k3b/files/patch-src-rip-k3btcwrapper.cpp ./files/patch-src-rip-k3btcwrapper.cpp --- ../../sysutils/k3b/files/patch-src-rip-k3btcwrapper.cpp Fri May 28 07:52:01 2004 +++ ./files/patch-src-rip-k3btcwrapper.cpp Sun Jul 11 15:14:12 2004 @@ -1,5 +1,5 @@ --- src/rip/k3btcwrapper.cpp.orig Wed Jan 21 11:20:20 2004 -+++ src/rip/k3btcwrapper.cpp Tue May 11 22:57:03 2004 ++++ src/rip/k3btcwrapper.cpp Sun Jul 11 12:24:22 2004 @@ -65,7 +65,12 @@ //K3bProcess *p = new K3bProcess(); emit tcprobeTitleParsed( m_currentTitle ); diff -urN ../../sysutils/k3b/files/patch-src-rip-k3bvideocdrip.cpp ./files/patch-src-rip-k3bvideocdrip.cpp --- ../../sysutils/k3b/files/patch-src-rip-k3bvideocdrip.cpp Thu Jan 1 01:00:00 1970 +++ ./files/patch-src-rip-k3bvideocdrip.cpp Sun Jul 11 15:14:12 2004 @@ -0,0 +1,12 @@ +--- src/rip/k3bvideocdrip.cpp.orig Sun Jul 11 15:13:42 2004 ++++ src/rip/k3bvideocdrip.cpp Sun Jul 11 15:14:07 2004 +@@ -41,7 +41,8 @@ + m_ripsourceType( 0 ), + m_videooptions( options ), + m_canceled( false ), +- m_process( 0 ) ++ m_process( 0 ), ++ m_subPosition( 0 ) + {} + + diff -urN ../../sysutils/k3b/pkg-message ./pkg-message --- ../../sysutils/k3b/pkg-message Fri May 28 07:51:59 2004 +++ ./pkg-message Sun Jul 18 09:25:48 2004 @@ -3,10 +3,10 @@ drives, use them through the cam system. See Chapter 12.5.9 of the handbook (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html#ATAPICAM) 2. Your CD and DVD drives must have a mount point in /etc/fstab. They have - to be accessed through their atapicam device. I.e. the drives - have to be adressed by e.g. /dev/cd0c instead of /dev/acd0c. + to be accessed through their atapicam device if possible. I.e. the drives + have to be adressed by e.g. /dev/cd0c instead of /dev/acd0c (/dev/cd0 on FreeBSD 5.x). 3. k3b has to be started from a root console, which is not recommended. - Alternatively do all of the following: + Alternatively do ALL of the following: 3a. set the suid flag on cdrecord and cdrdao. The 'Notes' the chapter of 'man cdrecord' discusses this. 3b. - For every user who should be able to use k3b and for every CD or DVD @@ -16,6 +16,8 @@ /dev/cd0c /usr/home/XXX/cdrom cd9660 ro,noauto,nodev,nosuid 0 0 Furthermore allow user mounts as described in topic 9.22 of the FAQ: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#USER-FLOPPYMOUNT + Note: If you are using FreeBSD 5.x you might want to edit your /etc/devfs.conf. + See http://sig9.com/archive/articles/HOWTO-mount-fs.html for details. - or just give mount and umount the suid flag, which is a security leak. 3c. - Every user who should be able to use k3b must have read and write access to all pass through devices connected with CD and DVD drives and to the /dev/xpt0 --Boundary-00=_SmB/AkMIizN6P7a-- >Release-Note: >Audit-Trail: >Unformatted: --Boundary-00=_SmB/AkMIizN6P7a Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline X-send-pr-version: send-pr 3.113 X-GNATS-Notify: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 2526D16A4CE for ; Mon, 19 Jul 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 0EC9743D45 for ; Mon, 19 Jul 2004 19:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JJoJfN009180 for ; Mon, 19 Jul 2004 19:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JJoJxE009179; Mon, 19 Jul 2004 19:50:19 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 19:50:19 GMT Resent-Message-Id: <200407191950.i6JJoJxE009179@freefall.freebsd.org> 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 DAA4216A4CE for ; Mon, 19 Jul 2004 19:43:39 +0000 (GMT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B5F843D49 for ; Mon, 19 Jul 2004 19:43:39 +0000 (GMT) (envelope-from vasallia@ukr.net) Received: from [212.86.240.113] (helo=santinel.home.ua) by mail-kv.alkar.net with esmtp (Exim 4.34 (FreeBSD)) id 1Bme2m-0004Ap-Fm for FreeBSD-gnats-submit@freebsd.org; Mon, 19 Jul 2004 22:43:38 +0300 Received: from anray by santinel.home.ua with local (Exim 4.40; FreeBSD) id 1Bme1e-0003Cl-Br for ; Mon, 19 Jul 2004 22:42:14 +0300 Message-Id: Date: Mon, 19 Jul 2004 22:42:14 +0300 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69311: [NEW PORT] russian/rhythmbox: rhythmbox with selected charset for id3tags support 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: Mon, 19 Jul 2004 19:50:20 -0000 >Number: 69311 >Category: ports >Synopsis: [NEW PORT] russian/rhythmbox: rhythmbox with selected charset for id3tags support >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 19:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.2-CURRENT i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Fri Jul 16 17:57:53 EEST 2004 root@santinel.home.ua:/usr/src/sys/i386/compile/ANRAY i386 >Description: Now rhythmbox using locale($LANG) or if this not defined ISO-8859-1 encoding for id3 tags and for metadata only UTF-8. This port added to rhythmbox support selected encoding for id3 tags and metadata. >How-To-Repeat: >Fix: --- ru-rhythmbox.port 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/russian/rhythmbox # /usr/ports/russian/rhythmbox/files # /usr/ports/russian/rhythmbox/files/patch-rb-string-helpers.c # /usr/ports/russian/rhythmbox/files/patch-mp3-stream-info-impl.c # /usr/ports/russian/rhythmbox/Makefile # /usr/ports/russian/rhythmbox/pkg-message # echo c - /usr/ports/russian/rhythmbox mkdir -p /usr/ports/russian/rhythmbox > /dev/null 2>&1 echo c - /usr/ports/russian/rhythmbox/files mkdir -p /usr/ports/russian/rhythmbox/files > /dev/null 2>&1 echo x - /usr/ports/russian/rhythmbox/files/patch-rb-string-helpers.c sed 's/^X//' >/usr/ports/russian/rhythmbox/files/patch-rb-string-helpers.c << 'END-of-/usr/ports/russian/rhythmbox/files/patch-rb-string-helpers.c' X--- lib/rb-string-helpers.c.orig Mon Jun 21 18:57:18 2004 X+++ lib/rb-string-helpers.c Mon Jul 19 18:16:05 2004 X@@ -137,14 +137,17 @@ X rb_unicodify (const char *str) X { X char *ret = NULL; X+#ifndef ID3TAGS_ENCODING X const char *char_encoding; X+#endif X X /* Try validating it as UTF-8 first */ X if (g_utf8_validate (str, -1, NULL)) X return g_strdup (str); X X /* Failing that, try the legacy encoding associated X- with the locale. */ X+ with the locale if ID3TAGS_ENCODING not defined. */ X+#ifndef ID3TAGS_ENCODING X char_encoding = get_encoding_from_locale (getenv ("LANG")); X if (char_encoding == NULL) X ret = NULL; X@@ -155,6 +158,10 @@ X if (!ret) X ret = g_convert (str, -1, "UTF-8", "ISO-8859-1", X NULL, NULL, NULL); X+#else X+ ret = g_convert (str, -1, "UTF-8", ID3TAGS_ENCODING, X+ NULL, NULL, NULL); X+#endif X X return ret; X } END-of-/usr/ports/russian/rhythmbox/files/patch-rb-string-helpers.c echo x - /usr/ports/russian/rhythmbox/files/patch-mp3-stream-info-impl.c sed 's/^X//' >/usr/ports/russian/rhythmbox/files/patch-mp3-stream-info-impl.c << 'END-of-/usr/ports/russian/rhythmbox/files/patch-mp3-stream-info-impl.c' X--- metadata/monkey-media/stream-info-impl/mp3-stream-info-impl.c.orig Mon Jun 21 18:57:18 2004 X+++ metadata/monkey-media/stream-info-impl/mp3-stream-info-impl.c Mon Jul 19 18:24:22 2004 X@@ -673,16 +673,28 @@ X nstrings = id3_field_getnstrings (field); X for (j = 0; j < nstrings; j++) X { X+#ifndef ID3TAGS_ENCODING X id3_utf8_t *tmp = NULL; X+#else X+ id3_latin1_t *tmp = NULL; X+#endif X X ucs4 = id3_field_getstrings (field, j); X X if (strcmp (field_name, ID3_FRAME_GENRE) == 0) X ucs4 = id3_genre_name (ucs4); X X+#ifndef ID3TAGS_ENCODING X tmp = id3_ucs4_utf8duplicate (ucs4); X if (strcmp (tmp, "") != 0) X utf8 = tmp; X+#else X+ tmp = id3_ucs4_latin1duplicate (ucs4); X+ if (strcmp (tmp, "") != 0) { X+ utf8 = g_convert (tmp, -1, "UTF-8", ID3TAGS_ENCODING, X+ NULL, NULL, NULL); X+ } X+#endif X else X g_free (tmp); X } END-of-/usr/ports/russian/rhythmbox/files/patch-mp3-stream-info-impl.c echo x - /usr/ports/russian/rhythmbox/Makefile sed 's/^X//' >/usr/ports/russian/rhythmbox/Makefile << 'END-of-/usr/ports/russian/rhythmbox/Makefile' X# New ports collection makefile for: ru-rhythmbox X# Date created: Jul 18 18:44:22 EEST 2004 X# Whom: Andrey Slusar X# X# $FreeBSD$ X# X XPORTNAME= rhythmbox XCATEGORIES= russian X XMAINTAINER= vasallia@ukr.net XCOMMENT= Rhythmbox with selected charset for id3tags support X XMASTERDIR= ${.CURDIR}/../../audio/rhythmbox X XCONFLICTS= rhythmbox-[0-9]* X XID3TAGS_CHRS?= WINDOWS-1251 XCFLAGS+= -DID3TAGS_ENCODING=${ID3TAGS_CHRS} X X.include "${MASTERDIR}/Makefile" END-of-/usr/ports/russian/rhythmbox/Makefile echo x - /usr/ports/russian/rhythmbox/pkg-message sed 's/^X//' >/usr/ports/russian/rhythmbox/pkg-message << 'END-of-/usr/ports/russian/rhythmbox/pkg-message' X******************************************************* X X If you not using only unicode or latin filenames, put X G_BROKEN_FILENAMES=1 to personal or system profile X X******************************************************* END-of-/usr/ports/russian/rhythmbox/pkg-message exit --- ru-rhythmbox.port ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 19:54: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 BE78E16A4CE; Mon, 19 Jul 2004 19:54:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F3A143D46; Mon, 19 Jul 2004 19:54:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JJsZxY009701; Mon, 19 Jul 2004 19:54:35 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JJsZEX009697; Mon, 19 Jul 2004 19:54:35 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 19:54:35 GMT From: Volker Stolz Message-Id: <200407191954.i6JJsZEX009697@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lkoeller@FreeBSD.org Subject: Re: ports/69285: [PATCH] Do not install fd.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, 19 Jul 2004 19:54:35 -0000 Synopsis: [PATCH] Do not install fd.sh Responsible-Changed-From-To: freebsd-ports-bugs->lkoeller Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 19:53:05 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69285 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 19: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 2DD7C16A4CE; Mon, 19 Jul 2004 19:56:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F13643D2F; Mon, 19 Jul 2004 19:56:10 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JJu98M010063; Mon, 19 Jul 2004 19:56:09 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JJu9JN010059; Mon, 19 Jul 2004 19:56:09 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 19:56:09 GMT From: Volker Stolz Message-Id: <200407191956.i6JJu9JN010059@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cy@FreeBSD.org Subject: Re: ports/69282: [PATCH] misc/screen: Fix deinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 19:56:10 -0000 Synopsis: [PATCH] misc/screen: Fix deinstall Responsible-Changed-From-To: freebsd-ports-bugs->cy Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 19:55:35 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69282 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 19:57: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 DF8EE16A4CE; Mon, 19 Jul 2004 19:57:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C05EB43D5E; Mon, 19 Jul 2004 19:57:48 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JJvmc6010148; Mon, 19 Jul 2004 19:57:48 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JJvm5w010144; Mon, 19 Jul 2004 19:57:48 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 19:57:48 GMT From: Volker Stolz Message-Id: <200407191957.i6JJvm5w010144@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/69288: [PATCH] security/sudo: Fix deinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 19:57:49 -0000 Synopsis: [PATCH] security/sudo: Fix deinstall Responsible-Changed-From-To: freebsd-ports-bugs->mharo Responsible-Changed-By: vs Responsible-Changed-When: Mon Jul 19 19:57:33 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69288 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20:02: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 D961B16A4CF; Mon, 19 Jul 2004 20:02:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB46543D1F; Mon, 19 Jul 2004 20:02:17 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JK2HXs010766; Mon, 19 Jul 2004 20:02:17 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JK2H3l010762; Mon, 19 Jul 2004 20:02:17 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 20:02:17 GMT From: Volker Stolz Message-Id: <200407192002.i6JK2H3l010762@freefall.freebsd.org> To: tim@bishnet.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69286: [MAINTAINER] security/f-prot-sig: update to 20040719 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 20:02:18 -0000 Synopsis: [MAINTAINER] security/f-prot-sig: update to 20040719 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 20:01:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69286 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20:09: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 7AC3016A4CE; Mon, 19 Jul 2004 20:09:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AA6543D2F; Mon, 19 Jul 2004 20:09:10 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JK9AbS014880; Mon, 19 Jul 2004 20:09:10 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JK9AAr014876; Mon, 19 Jul 2004 20:09:10 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 20:09:10 GMT From: Volker Stolz Message-Id: <200407192009.i6JK9AAr014876@freefall.freebsd.org> To: esn@x123.info, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69278: [Port Upgrade]:: www/drupal 4.4.1 -> 4.4.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: Mon, 19 Jul 2004 20:09:10 -0000 Synopsis: [Port Upgrade]:: www/drupal 4.4.1 -> 4.4.2 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 20:08:54 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69278 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20:13: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 5EAB116A4CE; Mon, 19 Jul 2004 20:13:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 408F743D58; Mon, 19 Jul 2004 20:13:57 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JKDvfm015211; Mon, 19 Jul 2004 20:13:57 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JKDv5h015207; Mon, 19 Jul 2004 20:13:57 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 20:13:57 GMT From: Volker Stolz Message-Id: <200407192013.i6JKDv5h015207@freefall.freebsd.org> To: ports@fsck.ch, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69299: [PATCH] missing dependency for www/linux-flashplugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 20:13:57 -0000 Synopsis: [PATCH] missing dependency for www/linux-flashplugin State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 20:13:27 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69299 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20: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 BCDE016A4CE for ; Mon, 19 Jul 2004 20:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99FDE43D5D for ; Mon, 19 Jul 2004 20:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JKKURl015431 for ; Mon, 19 Jul 2004 20:20:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JKKUfO015428; Mon, 19 Jul 2004 20:20:30 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 20:20:30 GMT Message-Id: <200407192020.i6JKKUfO015428@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69299: [PATCH] missing dependency for www/linux-flashplugin 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, 19 Jul 2004 20:20:30 -0000 The following reply was made to PR ports/69299; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, ports@fsck.ch, ports@brandon.dvalentine.com Cc: Subject: Re: ports/69299: [PATCH] missing dependency for www/linux-flashplugin Date: Mon, 19 Jul 2004 22:11:41 +0300 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20:35: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 3D89A16A4CE; Mon, 19 Jul 2004 20:35:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D0FD43D46; Mon, 19 Jul 2004 20:35:59 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JKZx0h017212; Mon, 19 Jul 2004 20:35:59 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JKZuQb017208; Mon, 19 Jul 2004 20:35:56 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 20:35:56 GMT From: Volker Stolz Message-Id: <200407192035.i6JKZuQb017208@freefall.freebsd.org> To: az@inec.inec.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69301: Fix ports/misc/opencyc 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, 19 Jul 2004 20:35:59 -0000 Synopsis: Fix ports/misc/opencyc pkg-plist State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 20:34:21 GMT 2004 State-Changed-Why: Forwarded PR to maintainer (recover e-mail-address in header) http://www.freebsd.org/cgi/query-pr.cgi?pr=69301 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20: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 D5FBE16A4CE for ; Mon, 19 Jul 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 B376443D5A for ; Mon, 19 Jul 2004 20:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JKeNCi017485 for ; Mon, 19 Jul 2004 20:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JKeNmR017484; Mon, 19 Jul 2004 20:40:23 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 20:40:23 GMT Message-Id: <200407192040.i6JKeNmR017484@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69301: Fix ports/misc/opencyc pkg-plist 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, 19 Jul 2004 20:40:24 -0000 The following reply was made to PR ports/69301; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, az@inec.inec.ru, alexs@snark.rinet.ru Cc: Subject: Re: ports/69301: Fix ports/misc/opencyc pkg-plist Date: Mon, 19 Jul 2004 22:33:12 +0300 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 20:55: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 60B7A16A4CE; Mon, 19 Jul 2004 20:55:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E43443D3F; Mon, 19 Jul 2004 20:55:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JKtj12018226; Mon, 19 Jul 2004 20:55:45 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JKtjt7018222; Mon, 19 Jul 2004 20:55:45 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 20:55:45 GMT From: Volker Stolz Message-Id: <200407192055.i6JKtjt7018222@freefall.freebsd.org> To: mranner@inode.at, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69300: [MAINTAINER] irc/kvirc: update to 3.0.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, 19 Jul 2004 20:55:45 -0000 Synopsis: [MAINTAINER] irc/kvirc: update to 3.0.1 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Mon Jul 19 20:54:49 GMT 2004 State-Changed-Why: Does not package (on 4.10): Creating gzip'd tar ball in '/usr/ports/packages/All/kvirc-3.0.1.tgz' tar: lib/libkvilib.la: Cannot stat: No such file or directory tar: share/kvirc/3.0.1/modules/libkviabout.la: Cannot stat: No such file or directory tar: share/kvirc/3.0.1/modules/libkvialiaseditor.la: Cannot stat: No such file or directory tar: share/kvirc/3.0.1/modules/libkvichan.la: Cannot stat: No such file or directory tar: share/kvirc/3.0.1/modules/libkvichannelsjoin.la: Cannot stat: No such file or directory ... and lots more. Volker http://www.freebsd.org/cgi/query-pr.cgi?pr=69300 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 21:14: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 875DA16A4CE; Mon, 19 Jul 2004 21:14:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6795043D67; Mon, 19 Jul 2004 21:14:46 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JLEk5x023892; Mon, 19 Jul 2004 21:14:46 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JLEkkd023888; Mon, 19 Jul 2004 21:14:46 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 21:14:46 GMT From: Volker Stolz Message-Id: <200407192114.i6JLEkkd023888@freefall.freebsd.org> To: eugos@gmx.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69254: [maintainer-update] lang/ocaml: update to 3.08.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: Mon, 19 Jul 2004 21:14:46 -0000 Synopsis: [maintainer-update] lang/ocaml: update to 3.08.0 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 21:14:17 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69254 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 3E63616A4CE; Mon, 19 Jul 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 1CDFE43D2D; Mon, 19 Jul 2004 21:18:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6JLIF1N023991; Mon, 19 Jul 2004 21:18:16 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JLIFfb023987; Mon, 19 Jul 2004 21:18:15 GMT (envelope-from vs) Date: Mon, 19 Jul 2004 21:18:15 GMT From: Volker Stolz Message-Id: <200407192118.i6JLIFfb023987@freefall.freebsd.org> To: eugos@gmx.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69255: [maintainer-update] lang/ocaml-doc: update to 3.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 21:18:16 -0000 Synopsis: [maintainer-update] lang/ocaml-doc: update to 3.08 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Mon Jul 19 21:18:02 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69255 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 21:26: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 B511316A4CE; Mon, 19 Jul 2004 21:26:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9427543D1F; Mon, 19 Jul 2004 21:26:23 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6JLQNgJ024596; Mon, 19 Jul 2004 21:26:23 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JLQN5H024592; Mon, 19 Jul 2004 21:26:23 GMT (envelope-from krion) Date: Mon, 19 Jul 2004 21:26:23 GMT From: Kirill Ponomarew Message-Id: <200407192126.i6JLQN5H024592@freefall.freebsd.org> To: tmseck@netcologne.de, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69307: [Maintainer] www/squid: integrate various vendor patches X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 21:26:23 -0000 Synopsis: [Maintainer] www/squid: integrate various vendor patches State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Mon Jul 19 21:26:18 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69307 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 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 500CA16A4CF for ; Mon, 19 Jul 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 41F6143D5E for ; Mon, 19 Jul 2004 21:30:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JLUMlK025086 for ; Mon, 19 Jul 2004 21:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JLUMfa025085; Mon, 19 Jul 2004 21:30:22 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 21:30:22 GMT Resent-Message-Id: <200407192130.i6JLUMfa025085@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Ossintsev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4795A16A4CE for ; Mon, 19 Jul 2004 21:24:12 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 5E1AB43D5A for ; Mon, 19 Jul 2004 21:24:11 +0000 (GMT) (envelope-from eugos@gmx.net) Received: (qmail 12986 invoked by uid 65534); 19 Jul 2004 21:24:09 -0000 Received: from p50847C10.dip.t-dialin.net (EHLO badger.home) (80.132.124.16) by mail.gmx.net (mp018) with SMTP; 19 Jul 2004 23:24:09 +0200 Received: by badger.home (Postfix, from userid 1001) id B995E20CD; Mon, 19 Jul 2004 23:24:40 +0200 (CEST) Message-Id: <20040719212440.B995E20CD@badger.home> Date: Mon, 19 Jul 2004 23:24:40 +0200 (CEST) From: Eugene@badger.home, Ossintsev@badger.home To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ale@FreeBSD.org Subject: ports/69313: graphics/gqview: support WITHOUT_NLS and delete gqview-devel conflict X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eugene Ossintsev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 21:30:22 -0000 >Number: 69313 >Category: ports >Synopsis: graphics/gqview: support WITHOUT_NLS and delete gqview-devel conflict >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 Jul 19 21:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Eugene Ossintsev >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD badger.home 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jul 7 22:59:01 CEST 2004 root@badger.home:/usr/obj/usr/src/sys/BADGER i386 >Description: Add support of WITHOUT_NLS and delete the obsolete conflict with gqview-devel. >How-To-Repeat: >Fix: diff -ruN gqview.orig/Makefile gqview/Makefile --- gqview.orig/Makefile Sat May 1 01:13:14 2004 +++ gqview/Makefile Sat Jul 17 00:31:39 2004 @@ -16,8 +16,6 @@ LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png -CONFLICTS= gqview-devel-* - USE_X_PREFIX= yes USE_GNOME= gnomehier gtk20 GNU_CONFIGURE= yes @@ -25,6 +23,14 @@ LDFLAGS="-L${LOCALBASE}/lib" MAN1= gqview.1 + +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " +.else +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.endif post-install: ${INSTALL_DATA} ${WRKSRC}/gqview.desktop ${PREFIX}/share/gnome/apps/Graphics diff -ruN gqview.orig/pkg-plist gqview/pkg-plist --- gqview.orig/pkg-plist Mon Mar 1 19:12:20 2004 +++ gqview/pkg-plist Sat Jul 17 00:30:35 2004 @@ -1,32 +1,32 @@ bin/gqview %%PORTDOCS%%%%DOCSDIR%%/README -share/locale/bg/LC_MESSAGES/gqview.mo -share/locale/cs/LC_MESSAGES/gqview.mo -share/locale/da/LC_MESSAGES/gqview.mo -share/locale/de/LC_MESSAGES/gqview.mo -share/locale/es/LC_MESSAGES/gqview.mo -share/locale/et/LC_MESSAGES/gqview.mo -share/locale/fi/LC_MESSAGES/gqview.mo -share/locale/fr/LC_MESSAGES/gqview.mo -share/locale/hu/LC_MESSAGES/gqview.mo -share/locale/id/LC_MESSAGES/gqview.mo -share/locale/it/LC_MESSAGES/gqview.mo -share/locale/ja/LC_MESSAGES/gqview.mo -share/locale/nl/LC_MESSAGES/gqview.mo -share/locale/no/LC_MESSAGES/gqview.mo -share/locale/pl/LC_MESSAGES/gqview.mo -share/locale/pt_BR/LC_MESSAGES/gqview.mo -share/locale/ro/LC_MESSAGES/gqview.mo -share/locale/ru/LC_MESSAGES/gqview.mo -share/locale/sk/LC_MESSAGES/gqview.mo -share/locale/sl/LC_MESSAGES/gqview.mo -share/locale/sv/LC_MESSAGES/gqview.mo -share/locale/th/LC_MESSAGES/gqview.mo -share/locale/tr/LC_MESSAGES/gqview.mo -share/locale/uk/LC_MESSAGES/gqview.mo -share/locale/vi/LC_MESSAGES/gqview.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/gqview.mo -share/locale/zh_TW/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/bg/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/da/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/de/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/es/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/et/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/fi/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/hu/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/id/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/it/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/ja/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/no/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/ro/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/sk/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/sl/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/th/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/tr/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/uk/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/vi/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/zh_CN.GB2312/LC_MESSAGES/gqview.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/gqview.mo share/gnome/apps/Graphics/gqview.desktop share/gnome/pixmaps/gqview.png %%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 21: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 95CC716A4CE for ; Mon, 19 Jul 2004 21:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7101843D58 for ; Mon, 19 Jul 2004 21:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JLeL8c026606 for ; Mon, 19 Jul 2004 21:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JLeLed026605; Mon, 19 Jul 2004 21:40:21 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 21:40:21 GMT Resent-Message-Id: <200407192140.i6JLeLed026605@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mark Daniel Reidel Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD12016A4CE for ; Mon, 19 Jul 2004 21:39:50 +0000 (GMT) Received: from karm.dyndns.org (pD9E89EA0.dip.t-dialin.net [217.232.158.160]) by mx1.FreeBSD.org (Postfix) with SMTP id 9AE9643D46 for ; Mon, 19 Jul 2004 21:39:49 +0000 (GMT) (envelope-from root@karm.dyndns.org) Received: (qmail 93200 invoked by uid 0); 19 Jul 2004 21:39:47 -0000 Message-Id: <20040719213947.93199.qmail@karm.dyndns.org> Date: 19 Jul 2004 21:39:47 -0000 From: Mark Daniel Reidel To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69314: [MAINTAINER] audio/musicpd: update to 0.11.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: Mon, 19 Jul 2004 21:40:21 -0000 >Number: 69314 >Category: ports >Synopsis: [MAINTAINER] audio/musicpd: update to 0.11.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: Mon Jul 19 21:40:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mark Daniel Reidel >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD alu.reidel.info 5.2-CURRENT FreeBSD 5.2-CURRENT #12: Fri Jul 2 20:37:09 CEST >Description: - Update to 0.11.2 >How-To-Repeat: >Fix: --- musicpd-0.11.2.patch begins here --- diff -ruN --exclude=CVS /tmp/portbk/audio/musicpd/Makefile /usr/ports/audio/musicpd/Makefile --- /tmp/portbk/audio/musicpd/Makefile Fri Jun 18 11:08:59 2004 +++ /usr/ports/audio/musicpd/Makefile Mon Jul 19 23:30:45 2004 @@ -6,7 +6,7 @@ # PORTNAME= musicpd -PORTVERSION= 0.11.0 +PORTVERSION= 0.11.2 CATEGORIES= audio ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN --exclude=CVS /tmp/portbk/audio/musicpd/distinfo /usr/ports/audio/musicpd/distinfo --- /tmp/portbk/audio/musicpd/distinfo Fri Jun 18 11:08:59 2004 +++ /usr/ports/audio/musicpd/distinfo Mon Jul 19 23:30:57 2004 @@ -1,2 +1,2 @@ -MD5 (mpd-0.11.0.tar.gz) = 7ee41a7699e46ab596c7df5619689469 -SIZE (mpd-0.11.0.tar.gz) = 1114000 +MD5 (mpd-0.11.2.tar.gz) = b6e913dc4b63b161bb1b96030763c3a7 +SIZE (mpd-0.11.2.tar.gz) = 1118098 --- musicpd-0.11.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 22:04:52 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 C855D16A4CE; Mon, 19 Jul 2004 22:04:52 +0000 (GMT) Received: from 21322530218.direct.eti.at (21322530218.direct.eti.at [213.225.30.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEFF043D41; Mon, 19 Jul 2004 22:04:51 +0000 (GMT) (envelope-from tilman@arved.at) Received: from huckfinn-wi0.arved.de (localhost [127.0.0.1]) i6JM4uoR036388; Tue, 20 Jul 2004 00:04:56 +0200 (CEST) (envelope-from tilman@arved.at) Received: (from tilman@localhost) by huckfinn-wi0.arved.de (8.12.11/8.12.6/Submit) id i6JM4umh036387; Tue, 20 Jul 2004 00:04:56 +0200 (CEST) X-Authentication-Warning: huckfinn-wi0.arved.de: tilman set sender to tilman@arved.at using -f Date: Tue, 20 Jul 2004 00:04:55 +0200 From: Tilman Linneweh To: Volker Stolz Message-ID: <20040719220455.GA36357@arved.at> References: <200407192055.i6JKtjt7018222@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407192055.i6JKtjt7018222@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports-bugs@freebsd.org cc: mranner@inode.at Subject: Re: ports/69300: [MAINTAINER] irc/kvirc: update to 3.0.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, 19 Jul 2004 22:04:52 -0000 * Volker Stolz [Mo, 19 Jul 2004 at 22:55 GMT]: > Synopsis: [MAINTAINER] irc/kvirc: update to 3.0.1 > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Mon Jul 19 20:54:49 GMT 2004 > State-Changed-Why: > Does not package (on 4.10): > > Creating gzip'd tar ball in '/usr/ports/packages/All/kvirc-3.0.1.tgz' > tar: lib/libkvilib.la: Cannot stat: No such file or directory > tar: share/kvirc/3.0.1/modules/libkviabout.la: Cannot stat: No such file or directory > tar: share/kvirc/3.0.1/modules/libkvialiaseditor.la: Cannot stat: No such file or directory > tar: share/kvirc/3.0.1/modules/libkvichan.la: Cannot stat: No such file or directory > tar: share/kvirc/3.0.1/modules/libkvichannelsjoin.la: Cannot stat: No such file or directory > ... > > and lots more. > Probably because this PR was submitted before the latest LIBTOOL bsd.port.mk changes. If i understand correctly KDE programs need to use their internal libtool, e.g. USE_INC_LIBTOOL_VER. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 22:20: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 8A49216A4CE for ; Mon, 19 Jul 2004 22:20:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66A7D43D45 for ; Mon, 19 Jul 2004 22:20:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JMKHqP031455 for ; Mon, 19 Jul 2004 22:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JMKHXq031454; Mon, 19 Jul 2004 22:20:17 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 22:20:17 GMT Resent-Message-Id: <200407192220.i6JMKHXq031454@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jacek Pelka Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DC9A16A4D1 for ; Mon, 19 Jul 2004 22:15:12 +0000 (GMT) Received: from user14.215.udn.pl (user14.215.udn.pl [82.139.14.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F83643D49 for ; Mon, 19 Jul 2004 22:15:11 +0000 (GMT) (envelope-from jacek@user14.215.udn.pl) Received: by user14.215.udn.pl (Postfix, from userid 1001) id F3FFF6283; Tue, 20 Jul 2004 00:15:34 +0200 (CEST) Message-Id: <20040719221534.F3FFF6283@user14.215.udn.pl> Date: Tue, 20 Jul 2004 00:15:34 +0200 (CEST) From: Jacek Pelka To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69315: removing dependencies on openssl package (pkgconfig) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jacek Pelka List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 22:20:17 -0000 >Number: 69315 >Category: ports >Synopsis: removing dependencies on openssl package (pkgconfig) >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: Mon Jul 19 22:20:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jacek Pelka >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD user14.215.udn.pl 5.2-CURRENT FreeBSD 5.2-CURRENT #1: Sat Jul 17 18:45:36 CEST 2004 root@user14.215.udn.pl:/usr/obj/usr/src/sys/ROKITA i386 >Description: Ekg depends on openssl. If there is no openssl package installed, openssl from base system is used. Polish/gnugadu2 requires libgadu from ekg port. Maintainer of gnugadu2 reports problem on updating this port: [...] Package openssl was not found in the pkg-config search path. Perhaps you should add the directory containing `openssl.pc' to the PKG_CONFIG_PATH environment variable Package 'openssl', required by 'libgadu', not found configure: error: [...] This patch removes pkgconfig style dependency on openssl package. >How-To-Repeat: >Fix: --- ekg.diff begins here --- diff -ruN ekg.orig/Makefile ekg/Makefile --- ekg.orig/Makefile Mon Jul 5 21:20:41 2004 +++ ekg/Makefile Mon Jul 19 22:36:27 2004 @@ -6,6 +6,7 @@ PORTNAME= ekg PORTVERSION= 1.5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= polish net MASTER_SITES= http://dev.null.pl/ekg/archive/ diff -ruN ekg.orig/files/patch-configure ekg/files/patch-configure --- ekg.orig/files/patch-configure Thu Jan 1 01:00:00 1970 +++ ekg/files/patch-configure Mon Jul 19 21:48:17 2004 @@ -0,0 +1,10 @@ +--- configure Mon Jun 28 22:13:05 2004 ++++ configure Sat Jul 17 10:12:27 2004 +@@ -4554,7 +4554,6 @@ + LIBS_LIBGADU="$LIBS_LIBGADU $OPENSSL_LIBS" + CFLAGS="$CFLAGS $OPENSSL_INCLUDES" + CFLAGS_LIBGADU="$CFLAGS_LIBGADU $OPENSSL_INCLUDES" +- PC_REQUIRES="$PC_REQUIRES openssl" + + sed 's/#undef __GG_LIBGADU_HAVE_OPENSSL/#define __GG_LIBGADU_HAVE_OPENSSL/' < lib/libgadu-config.h > lib/libgadu-config.h- + mv -f lib/libgadu-config.h- lib/libgadu-config.h --- ekg.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 22:30: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 D919B16A4CE for ; Mon, 19 Jul 2004 22:30:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9B3C43D58 for ; Mon, 19 Jul 2004 22:30:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JMUHOV032702 for ; Mon, 19 Jul 2004 22:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JMUHlI032700; Mon, 19 Jul 2004 22:30:17 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 22:30:17 GMT Resent-Message-Id: <200407192230.i6JMUHlI032700@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64DBC16A4CE for ; Mon, 19 Jul 2004 22:23:43 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id E30CB43D46 for ; Mon, 19 Jul 2004 22:23:42 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (213.235.70.232) by mail.tiscali.cz (6.7.021) id 40AE2ED301620CA9 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 00:23:41 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BmgV5-0005Ts-7j ; Tue, 20 Jul 2004 00:20:47 +0200 Message-Id: Date: Tue, 20 Jul 2004 00:20:47 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hsn@netmag.cz Subject: ports/69316: [PATCH] sysutils/portindex: update to 17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 19 Jul 2004 22:30:18 -0000 >Number: 69316 >Category: ports >Synopsis: [PATCH] sysutils/portindex: update to 17 >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 Jul 19 22:30:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p6 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p6 FreeBSD 5.2.1-RELEASE-p6 #7: Mon May 10 17:15:51 CEST 2004 >Description: - Update to 17, bugfix release - added pointupdates tool - do not crash when generating port with incomplete depends - keep unresolved cfg option was reversed by mistake - updateall: print generating readme.html - updateall: ports with unresolved depends needs to be removed from in-memory list also - do not warn about missing port multiple times - check for write errors while generating readme.html Port maintainer (hsn@netmag.cz) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- portindex-17.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/Makefile /home/hsn/myports/portindex/Makefile --- /usr/ports/sysutils/portindex/Makefile Mon Jul 19 18:07:31 2004 +++ /home/hsn/myports/portindex/Makefile Mon Jul 19 21:47:05 2004 @@ -6,7 +6,7 @@ # PORTNAME= portindex -PORTVERSION= 16 +PORTVERSION= 17 CATEGORIES= sysutils MASTER_SITES= http://people.tecnik93.com/~radim/distfiles/ DISTNAME= bsdportsutils-${PORTVERSION} @@ -23,7 +23,7 @@ PLIST_FILES= etc/portindex.conf.sample PORTINDEX= bsdpkg freebsdports indexer updatereadmes config \ portindexdb -MINORUPDATES= minorupdates stealthupdates +MINORUPDATES= minorupdates stealthupdates pointupdates MISCTOOLS= updateall PKGHISTORY= loadindex query updinst diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/README.html /home/hsn/myports/portindex/README.html --- /usr/ports/sysutils/portindex/README.html Mon Jul 19 21:45:53 2004 +++ /home/hsn/myports/portindex/README.html Mon Jul 12 18:36:14 2004 @@ -11,7 +11,7 @@

You are now in the directory for the port "sysutils/portindex".

-

The package name of this port is "portindex-16".

+

The package name of this port is "portindex-15".

This is the one-line description for this port:


@@ -22,15 +22,15 @@

Please read the "description file" for a - longer description and/or visit the web site for futher informations.

+ longer description.

If needed, you may contact the maintainer of this port or the port mailing-list.

-

This port requires package(s) "python-2.3.4_1" to build.

+

This port requires package(s) "python-2.3.4" to build.

-

This port requires package(s) "expat-1.95.7 gettext-0.13.1_1 libiconv-1.9.2 postgresql-7.4.3 py23-PyGreSQL-3.4_1,1 py23-mx-base-2.0.5 python-2.3.4_1" to run.

+

This port requires package(s) "expat-1.95.7 gettext-0.13.1_1 libiconv-1.9.1_3 postgresql-7.4.3 py23-PyGreSQL-3.4_1,1 py23-mx-base-2.0.5 python-2.3.4" to run.

Go to the top of the ports tree for a summary on how to use the ports collection.

diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/distinfo /home/hsn/myports/portindex/distinfo --- /usr/ports/sysutils/portindex/distinfo Mon Jul 19 18:07:31 2004 +++ /home/hsn/myports/portindex/distinfo Tue Jul 20 00:13:25 2004 @@ -1,2 +1,2 @@ -MD5 (bsdportsutils-16.tar.gz) = 60dd00ee94986dca77c6a7de2304a97d -SIZE (bsdportsutils-16.tar.gz) = 21857 +MD5 (bsdportsutils-17.tar.gz) = f3d9829c96e012db87527c78d47671b8 +SIZE (bsdportsutils-17.tar.gz) = 23041 diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/files/pointupdates.sh /home/hsn/myports/portindex/files/pointupdates.sh --- /usr/ports/sysutils/portindex/files/pointupdates.sh Thu Jan 1 01:00:00 1970 +++ /home/hsn/myports/portindex/files/pointupdates.sh Mon Jul 19 21:47:28 2004 @@ -0,0 +1,2 @@ +#! /bin/sh +exec /usr/bin/env python %%DATADIR%%/pointupdates.py $* --- portindex-17.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 22: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 BF59516A4D0 for ; Mon, 19 Jul 2004 22:30:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA64843D49 for ; Mon, 19 Jul 2004 22:30:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JMUIrx032752 for ; Mon, 19 Jul 2004 22:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JMUIK2032751; Mon, 19 Jul 2004 22:30:18 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 22:30:18 GMT Resent-Message-Id: <200407192230.i6JMUIK2032751@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, rik Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1460B16A4CE for ; Mon, 19 Jul 2004 22:23:45 +0000 (GMT) Received: from lost.little-black-kitty.net (host217-34-57-226.in-addr.btopenworld.com [217.34.57.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id D990143D39 for ; Mon, 19 Jul 2004 22:23:41 +0000 (GMT) (envelope-from rik@little-black-kitty.net) Received: by lost.little-black-kitty.net (Postfix, from userid 1000) id 1DC6F8B801; Mon, 19 Jul 2004 23:23:40 +0100 (BST) Message-Id: <20040719222340.1DC6F8B801@lost.little-black-kitty.net> Date: Mon, 19 Jul 2004 23:23:40 +0100 (BST) From: rik To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69317: socat 1.4.0.0 patch to fix socks4a 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, 19 Jul 2004 22:30:18 -0000 >Number: 69317 >Category: ports >Synopsis: socat 1.4.0.0 patch to fix socks4a support >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 22:30:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: rik >Release: FreeBSD 4.9-STABLE i386 >Organization: N/A >Environment: System: FreeBSD izzard.internal 4.9-STABLE FreeBSD 4.9-STABLE #3: Sat Nov 29 14:56:52 GMT 2003 RIK@izzard.internal:/usr/obj/usr/src/sys/IZZARD i386 >Description: socat 1.4.0.0 has buggy SOCKS4A code. The maintainer patch on the web site has (probably had, now) a platform-specific bug, which was resolved in conjunction with the socat author earlier. The problem will be corrected in socat 1.4.0.1, but in the meantime is provided separately. This patch adds the fix as a replacement xio-socks.c. I have also set myself as the maintainer as part of the patch below. I am willing to take on maintainership of this port. >How-To-Repeat: >Fix: diff -ruN socat/Makefile socat-new/Makefile --- socat/Makefile Wed Jun 30 08:25:42 2004 +++ socat-new/Makefile Mon Jul 19 23:06:48 2004 @@ -8,10 +8,11 @@ PORTNAME= socat PORTVERSION= 1.4.0.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.dest-unreach.org/socat/download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= freebsd-ports@rikrose.net COMMENT= Multipurpose relay and more WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R:R} @@ -30,6 +31,9 @@ MAN1= socat.1 PORTDOCS= EXAMPLES README SECURITY FAQ PLIST_FILES= bin/filan bin/procan bin/socat + +post-patch: + @${CP} ${FILESDIR}/xio-socks.c ${WRKSRC}/xio-socks.c .if !defined(NOPORTDOCS) post-install: diff -ruN socat/files/xio-socks.c socat-new/files/xio-socks.c --- socat/files/xio-socks.c Thu Jan 1 01:00:00 1970 +++ socat-new/files/xio-socks.c Mon Jul 19 23:05:50 2004 @@ -0,0 +1,393 @@ +/* $Id: xio-socks.c,v 1.21 2004/07/10 15:21:38 gerhard Exp $ */ +/* Copyright Gerhard Rieger 2001-2004 */ +/* Published under the GNU General Public License V.2, see file COPYING */ + +/* this file contains the source for opening addresses of socks4 type */ + +#include "xiosysincludes.h" +#include "xioopen.h" +#include "xio-socket.h" +#include "xio-ipapp.h" + +#include "xio-socks.h" + + +#if WITH_SOCKS4 || WITH_SOCKS4A +enum { + SOCKS_CD_GRANTED = 90, + SOCKS_CD_FAILED, + SOCKS_CD_NOIDENT, + SOCKS_CD_IDENTFAILED +} ; + +#define SOCKSPORT "1080" +#define BUFF_LEN (SIZEOF_STRUCT_SOCKS4+512) + +static int xioopen_socks4_connect(char *a1, int rw, xiofile_t *fd, + unsigned groups, int dummy1, int dummy2, + void *dummyp1); + +const struct optdesc opt_socksport = { "socksport", NULL, OPT_SOCKSPORT, GROUP_IP_SOCKS4, PH_LATE, TYPE_STRING, OFUNC_SPEC }; +const struct optdesc opt_socksuser = { "socksuser", NULL, OPT_SOCKSUSER, GROUP_IP_SOCKS4, PH_LATE, TYPE_NAME, OFUNC_SPEC }; + +const struct addrdesc addr_socks4_connect = { "socks4", 3, xioopen_socks4_connect, GROUP_FD|GROUP_SOCKET|GROUP_SOCK_IP4|GROUP_IP_TCP|GROUP_IP_SOCKS4|GROUP_CHILD|GROUP_RETRY, 0, 0, NULL HELP(":::") }; + +const struct addrdesc addr_socks4a_connect = { "socks4a", 3, xioopen_socks4_connect, GROUP_FD|GROUP_SOCKET|GROUP_SOCK_IP4|GROUP_IP_TCP|GROUP_IP_SOCKS4|GROUP_CHILD|GROUP_RETRY, 1, 0, NULL HELP(":::") }; + +static int xioopen_socks4_connect(char *a1, int rw, xiofile_t *xxfd, + unsigned groups, int socks4a, int dummy2, + void *dummyp1) { + /* we expect the form: host:host:port */ + char *a2, *a3, *a4; + struct single *xfd = &xxfd->stream; + struct opt *opts = NULL, *opts0 = NULL; + char *sockdname = a1, *socksport = NULL; + const char *targetname; + const char *protname = "tcp"; + bool dofork = false; + struct sockaddr_in us_sa, *us = &us_sa; + struct sockaddr_in themsa, *them = &themsa; + bool needbind = false; + bool lowport = false; + unsigned char buff[BUFF_LEN]; + struct socks4 *sockhead = (struct socks4 *)buff; + size_t buflen = sizeof(buff); + int socktype = SOCK_STREAM; + int level; + int result; + + a2 = strchr(a1, ':'); + if (!a2) { + Error1("xioopen_socks4_connect(\"%s\",,): missing target address", a1); + return STAT_NORETRY; + } + *a2 = '\0', ++a2; + targetname = a2; + + if ((a3 = strchr(a2, ':')) == NULL) { + Error2("xioopen_socks4_connect(\"%s:%s\",,): missing target port", a1, a2); + return STAT_NORETRY; + } + *a3 = '\0', ++a3; + + a4 = strchr(a3, ','); + if (a4) *a4 = '\0', ++a4; + + if (parseopts(a4, groups, &opts) < 0) { + return STAT_NORETRY; + } + + socket_in_init(us); + + applyopts(-1, opts, PH_INIT); + applyopts_single(xfd, opts, PH_INIT); + + retropt_int(opts, OPT_SO_TYPE, &socktype); + + retropt_bool(opts, OPT_FORK, &dofork); + + result = _xioopen_socks4_prepare(a3, opts, &socksport, sockhead, &buflen); + if (result != STAT_OK) return result; + + result = _xioopen_ip4app_prepare(opts, &opts0, sockdname, socksport, + protname, them, us, + &needbind, &lowport, &socktype); + if (result != STAT_OK) return result; + + Notice5("opening connection to %s:%u via socks4 server %s:%s as user \"%s\"", + a2, + ntohs(sockhead->port), + a1, socksport, sockhead->userid); + + do { /* loop over failed connect and socks-request attempts */ + +#if WITH_RETRY + if (xfd->forever || xfd->retry) { + level = E_INFO; + } else +#endif /* WITH_RETRY */ + level = E_ERROR; + + /* we try to resolve the target address _before_ connecting to the socks + server: this avoids unnecessary socks connects and timeouts */ + result = + _xioopen_socks4_connect0(xfd, targetname, socks4a, sockhead, + (ssize_t *)&buflen, level); + switch (result) { + case STAT_OK: break; +#if WITH_RETRY + case STAT_RETRYLATER: + case STAT_RETRYNOW: + if (xfd->forever || xfd->retry--) { + if (result == STAT_RETRYLATER) Nanosleep(&xfd->intervall, NULL); + continue; + } +#endif /* WITH_RETRY */ + default: + return result; + } + + /* this cannot fork because we retrieved fork option above */ + result = + _xioopen_connect (xfd, + needbind?(struct sockaddr *)us:NULL, sizeof(*us), + (struct sockaddr *)them, sizeof(struct sockaddr_in), + opts, PF_INET, socktype, IPPROTO_TCP, lowport, level); + switch (result) { + case STAT_OK: break; +#if WITH_RETRY + case STAT_RETRYLATER: + case STAT_RETRYNOW: + if (xfd->forever || xfd->retry--) { + if (result == STAT_RETRYLATER) Nanosleep(&xfd->intervall, NULL); + continue; + } +#endif /* WITH_RETRY */ + default: + return result; + } + + applyopts(xfd->fd, opts, PH_ALL); + + if ((result = _xio_openlate(xfd, opts)) < 0) + return result; + + result = _xioopen_socks4_connect(xfd, sockhead, buflen, level); + switch (result) { + case STAT_OK: break; +#if WITH_RETRY + case STAT_RETRYLATER: + case STAT_RETRYNOW: + if (xfd->forever || xfd->retry--) { + if (result == STAT_RETRYLATER) Nanosleep(&xfd->intervall, NULL); + continue; + } +#endif /* WITH_RETRY */ + default: + return result; + } + +#if WITH_RETRY + if (dofork) { + pid_t pid; + while ((pid = Fork()) < 0) { + int level = E_ERROR; + if (xfd->forever || xfd->retry) { + level = E_WARN; + } + Msg1(level, "fork(): %s", strerror(errno)); + if (xfd->forever || xfd->retry--) { + Nanosleep(&xfd->intervall, NULL); + continue; + } + return STAT_RETRYLATER; + } + if (pid == 0) { /* child process */ + Info1("just born: socks client process "F_pid, Getpid()); + xfd->forever = false; xfd->retry = 0; + break; + } + /* parent process */ + Notice1("forked off child process "F_pid, pid); + Close(xfd->fd); + Nanosleep(&xfd->intervall, NULL); + dropopts(opts, PH_ALL); opts = copyopts(opts0, GROUP_ALL); + continue; + } else +#endif /* WITH_RETRY */ + { + break; + } + + } while (true); /* end of complete open loop - drop out on success */ + return 0; +} + + +int _xioopen_socks4_prepare(const char *targetport, struct opt *opts, char **socksport, struct socks4 *sockhead, size_t *headlen) { + struct servent *se; + char *userid; + + /* generate socks header - points to final target */ + sockhead->version = 4; + sockhead->action = 1; + sockhead->port = parseport(targetport, "tcp"); + + if (retropt_string(opts, OPT_SOCKSPORT, socksport) < 0) { + if ((se = getservbyname("socks", "tcp")) != NULL) { + Debug1("\"socks/tcp\" resolves to %u", ntohs(se->s_port)); + if ((*socksport = Malloc(6)) == NULL) { + return -1; + } + sprintf(*socksport, "%u", ntohs(se->s_port)); + } else { + Debug1("cannot resolve service \"socks/tcp\", using %s", SOCKSPORT); + if ((*socksport = strdup(SOCKSPORT)) == NULL) { + errno = ENOMEM; return -1; + } + } + } + + if (retropt_string(opts, OPT_SOCKSUSER, &userid) < 0) { + if ((userid = getenv("LOGNAME")) == NULL) { + if ((userid = getenv("USER")) == NULL) { + userid = "anonymous"; + } + } + } + strncpy(sockhead->userid, userid, *headlen-SIZEOF_STRUCT_SOCKS4); + *headlen = SIZEOF_STRUCT_SOCKS4+strlen(userid)+1; + return STAT_OK; +} + + +/* called within retry/fork loop, before connect() */ +int + _xioopen_socks4_connect0(struct single *xfd, + const char *hostname, /* socks target host */ + int socks4a, + struct socks4 *sockhead, + ssize_t *headlen, /* get available space, + return used length*/ + int level) { + struct hostent *host = NULL; + int result; + + if (!socks4a) { + if ((result = xioGethostbyname(hostname, &host, level)) != STAT_OK) { + return result; + } + } + + if (!socks4a || host != NULL) { + memcpy(&sockhead->dest, host->h_addr_list[0], 4); + } +#if WITH_SOCKS4A + else { + /*! noresolve */ + sockhead->dest = htonl(0x00000001); /* three bytes zero */ + } +#endif /* WITH_SOCKS4A */ +#if WITH_SOCKS4A + if (host == NULL) { + /* SOCKS4A requires us to append the host name to resolve + after the user name's trailing 0 byte. */ + char* insert_position = (char*) sockhead + *headlen; + + strncpy(insert_position, hostname, BUFF_LEN-*headlen); + ((char *)sockhead)[BUFF_LEN-1] = 0; //insert_position[BUFF_LEN-1] = 0; + *headlen += strlen(hostname) + 1; + if (*headlen > BUFF_LEN) { + *headlen = BUFF_LEN; + } + } +#endif /* WITH_SOCKS4A */ + return STAT_OK; +} + + +/* perform socks4 client dialog on existing FD. + Called within fork/retry loop, after connect() */ +int _xioopen_socks4_connect(struct single *xfd, + struct socks4 *sockhead, + size_t headlen, + int level) { + ssize_t bytes; + int result; + unsigned char buff[SIZEOF_STRUCT_SOCKS4]; + struct socks4 *replyhead = (struct socks4 *)buff; + + /* send socks header (target addr+port, +auth) */ + Info("sending socks request"); + do { + result = Write(xfd->fd, sockhead, headlen); + } while (result < 0 && errno == EINTR); + if (result < 0) { + Msg4(level, "write(%d, %p, "F_Zu"): %s", + xfd->fd, sockhead, headlen, strerror(errno)); + if (Close(xfd->fd) < 0) { + Warn2("close(%d): %s", xfd->fd, strerror(errno)); + } + return STAT_RETRYLATER; /* retry complete open cycle */ + } + + bytes = 0; + Info("waiting for socks reply"); + while (bytes >= 0) { /* loop over answer chunks until complete or error */ + /* receive socks answer */ + do { + result = Read(xfd->fd, buff+bytes, SIZEOF_STRUCT_SOCKS4-bytes); + } while (result < 0 && errno == EINTR); + if (result < 0) { + Msg4(level, "read(%d, %p, "F_Zu"): %s", + xfd->fd, buff+bytes, SIZEOF_STRUCT_SOCKS4-bytes, + strerror(errno)); + if (Close(xfd->fd) < 0) { + Warn2("close(%d): %s", xfd->fd, strerror(errno)); + } + } + if (result == 0) { + Msg(level, "read(): EOF during read of socks reply"); + if (Close(xfd->fd) < 0) { + Warn2("close(%d): %s", xfd->fd, strerror(errno)); + } + return STAT_RETRYLATER; + } + bytes += result; + if (bytes == SIZEOF_STRUCT_SOCKS4) { + Debug1("received all "F_Zd" bytes", bytes); + break; + } + Debug2("received "F_Zd" bytes, waiting for "F_Zu" more bytes", + result, SIZEOF_STRUCT_SOCKS4-bytes); + } + if (result <= 0) { /* we had a problem while reading socks answer */ + return STAT_RETRYLATER; /* retry complete open cycle */ + } + + Info7("socks answer: {%u, %u, %u, %u.%u.%u.%u}", + replyhead->version, replyhead->action, ntohs(replyhead->port), + ((uint8_t *)&replyhead->dest)[0], + ((uint8_t *)&replyhead->dest)[1], + ((uint8_t *)&replyhead->dest)[2], + ((uint8_t *)&replyhead->dest)[3]); + if (replyhead->version != 0) { + Warn1("socks: reply code version is not 0 (%d)", + replyhead->version); + } + + switch (replyhead->action) { + case SOCKS_CD_GRANTED: + /* Notice("socks: connect request succeeded"); */ +#if 0 + if (Getsockname(xfd->fd, (struct sockaddr *)&us, &uslen) < 0) { + Warn4("getsockname(%d, %p, {%d}): %s", + xfd->fd, &us, uslen, strerror(errno)); + } + Notice1("successfully connected from %s via socks", + sockaddr_info((struct sockaddr *)&us, infobuff, sizeof(infobuff))); +#else + Notice("successfully connected via socks"); +#endif + break; + + case SOCKS_CD_FAILED: + Msg(level, "socks: connect request rejected or failed"); + return STAT_RETRYLATER; + + case SOCKS_CD_NOIDENT: + Msg(level, "socks: ident refused by client"); + return STAT_RETRYLATER; + + case SOCKS_CD_IDENTFAILED: + Msg(level, "socks: ident failed"); + return STAT_RETRYLATER; + + default: + Msg1(level, "socks: undefined status %u", replyhead->action); + } + + return STAT_OK; +} +#endif /* WITH_SOCKS4 || WITH_SOCKS4A */ + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 23:10: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 CEFFB16A4CE for ; Mon, 19 Jul 2004 23:10:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE43743D53 for ; Mon, 19 Jul 2004 23:10:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JNAG4h039259 for ; Mon, 19 Jul 2004 23:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JNAGTX039258; Mon, 19 Jul 2004 23:10:16 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 23:10:16 GMT Resent-Message-Id: <200407192310.i6JNAGTX039258@freefall.freebsd.org> 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 ABE7816A4CE; Mon, 19 Jul 2004 23:05:47 +0000 (GMT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E90B43D41; Mon, 19 Jul 2004 23:05:47 +0000 (GMT) (envelope-from vasallia@ukr.net) Received: from [212.86.238.11] (helo=santinel.home.ua) by mail-kv.alkar.net with esmtp (Exim 4.34 (FreeBSD)) id 1BmhCb-000BbD-3i; Tue, 20 Jul 2004 02:05:46 +0300 Received: from anray by santinel.home.ua with local (Exim 4.40; FreeBSD) id 1Bmg1P-0000GO-BM; Tue, 20 Jul 2004 00:50:07 +0300 Message-Id: Date: Tue, 20 Jul 2004 00:50:07 +0300 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: sem@FreeBSD.org Subject: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR 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: Mon, 19 Jul 2004 23:10:16 -0000 >Number: 69318 >Category: ports >Synopsis: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR >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 Jul 19 23:10:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.2-CURRENT i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Fri Jul 16 17:57:53 EEST 2004 root@santinel.home.ua:/usr/src/sys/i386/compile/ANRAY i386 >Description: $PORTNAME changed to msql3, added supporting option NOPORTDOCS, changed PORTREVISION, added DOCSDIR, DATADIR >How-To-Repeat: >Fix: --- msql3.diff begins here --- diff -ruN /usr/ports/databases/msql3/Makefile msql3/Makefile --- /usr/ports/databases/msql3/Makefile Sun Jul 18 02:23:15 2004 +++ msql3/Makefile Mon Jul 19 23:16:04 2004 @@ -5,13 +5,17 @@ # $FreeBSD: ports/databases/msql3/Makefile,v 1.62 2004/07/17 21:19:57 sem Exp $ # -PORTNAME= msql +PORTNAME= msql3 PORTVERSION= 3.5 +PORTREVISION= 1 CATEGORIES= databases +DISTNAME= msql-${PORTVERSION} MAINTAINER= vasallia@ukr.net COMMENT= Version 3 of the Mini SQL relational database system +CONFLICTS= msql-2.* + INSTALLS_SHLIB= YES USE_PERL5= YES USE_REINPLACE= YES @@ -21,6 +25,13 @@ MAKE_ENV+= WRKSRC=${WRKSRC} +MSQLDATA= directory.mm dll_os2.mm install.mm lex.mm libinstall.mm \ + library_os2.mm library_unix.mm makegen makegen.cf object.mm \ + program.mm touch.mm yacc.mm + +DOCS= README RELEASE_NOTES BUGS doc/License doc/Manual \ + doc/Perl doc/acl.txt + post-patch: cd ${FILESDIR}; \ ${REINPLACE_CMD} -e "s|'bison -y' byacc|byacc 'bison -y'|g" \ @@ -34,19 +45,30 @@ @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL post-install: - @${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin - @for f in msqladmin msqlimport msqlexport; do\ - ${CHGRP} msql ${PREFIX}/bin/${f}; \ - done - ${CHGRP} msql ${PREFIX}/sbin/msql3d - @${CHMOD} 751 ${PREFIX}/etc/msql3/ - @${CHOWN} -R msql:msql ${PREFIX}/etc/msql3/ - @${MKDIR} ${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin +.for f in msqladmin msqlimport msqlexport + ${CHGRP} msql ${PREFIX}/bin/${f} +.endfor + ${CHGRP} msql ${PREFIX}/sbin/msql3d + ${CHMOD} 751 ${PREFIX}/etc/msql3/ + ${CHOWN} -R msql:msql ${PREFIX}/etc/msql3/ + ${MKDIR} ${PREFIX}/etc/rc.d @if [ ! -f ${PREFIX}/etc/rc.d/msql3.sh ]; then \ ${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/msql3.sh startup file."; \ ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/msql3.sh \ ${PREFIX}/etc/rc.d/msql3.sh; \ fi + ${MKDIR} ${DATADIR}/makegen +.for i in ${MSQLDATA} + ${INSTALL_SCRIPT} ${WRKSRC}/src/makegen/${i} ${DATADIR}/makegen +.endfor + ${INSTALL_SCRIPT} ${WRKSRC}/src/site.mm ${DATADIR}/makegen +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif .include diff -ruN /usr/ports/databases/msql3/files/patch-Makefile.tmpl msql3/files/patch-Makefile.tmpl --- /usr/ports/databases/msql3/files/patch-Makefile.tmpl Sat May 29 04:47:40 2004 +++ msql3/files/patch-Makefile.tmpl Mon Jul 19 22:58:44 2004 @@ -1,6 +1,6 @@ --- src/Makefile.tmpl.orig Fri Aug 23 01:36:26 2002 -+++ src/Makefile.tmpl Sat May 29 04:12:49 2004 -@@ -35,22 +35,22 @@ ++++ src/Makefile.tmpl Mon Jul 19 22:58:11 2004 +@@ -35,22 +35,12 @@ echo install :: @@ -9,17 +9,7 @@ - chmod 755 $(INST_DIR)/makegen/*;\\ - cp site.mm $(INST_DIR)/makegen;\\ - if test -f $(INST_DIR)/msql.conf;\ -+ @cp ../README $(INST_DIR)/share/doc/msql3;\\ -+ cp ../RELEASE_NOTES $(INST_DIR)/share/doc/msql3;\\ -+ cp ../BUGS $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/License $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/Manual $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/Perl $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/acl.txt $(INST_DIR)/share/doc/msql3;\\ -+ cp makegen/makegen makegen/*.cf makegen/*.mm $(INST_DIR)/share/msql3/makegen;\\ -+ chmod 755 $(INST_DIR)/share/msql3/makegen/*;\\ -+ cp site.mm $(INST_DIR)/share/msql3/makegen;\\ -+ if test -f $(INST_DIR)/etc/msql3/msql.conf;\ ++ @if test -f $(INST_DIR)/etc/msql3/msql.conf;\ then\ - rm -f $(INST_DIR)/msql.conf.old;\ - mv $(INST_DIR)/msql.conf $(INST_DIR)/msql.conf.old;\ diff -ruN /usr/ports/databases/msql3/pkg-plist msql3/pkg-plist --- /usr/ports/databases/msql3/pkg-plist Sun Jul 18 02:23:16 2004 +++ msql3/pkg-plist Mon Jul 19 01:01:11 2004 @@ -15,29 +15,29 @@ include/regexp.h lib/libmsql.a lib/libregexp.a -share/msql3/makegen/directory.mm -share/msql3/makegen/dll_os2.mm -share/msql3/makegen/install.mm -share/msql3/makegen/lex.mm -share/msql3/makegen/libinstall.mm -share/msql3/makegen/library_os2.mm -share/msql3/makegen/library_unix.mm -share/msql3/makegen/makegen -share/msql3/makegen/makegen.cf -share/msql3/makegen/object.mm -share/msql3/makegen/program.mm -share/msql3/makegen/site.mm -share/msql3/makegen/touch.mm -share/msql3/makegen/yacc.mm -share/doc/msql3/BUGS -share/doc/msql3/README -share/doc/msql3/RELEASE_NOTES -share/doc/msql3/License -share/doc/msql3/Manual -share/doc/msql3/Perl -share/doc/msql3/acl.txt +%%DATADIR%%/makegen/directory.mm +%%DATADIR%%/makegen/dll_os2.mm +%%DATADIR%%/makegen/install.mm +%%DATADIR%%/makegen/lex.mm +%%DATADIR%%/makegen/libinstall.mm +%%DATADIR%%/makegen/library_os2.mm +%%DATADIR%%/makegen/library_unix.mm +%%DATADIR%%/makegen/makegen +%%DATADIR%%/makegen/makegen.cf +%%DATADIR%%/makegen/object.mm +%%DATADIR%%/makegen/program.mm +%%DATADIR%%/makegen/site.mm +%%DATADIR%%/makegen/touch.mm +%%DATADIR%%/makegen/yacc.mm +%%PORTDOCS%%%%DOCSDIR%%/BUGS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES +%%PORTDOCS%%%%DOCSDIR%%/License +%%PORTDOCS%%%%DOCSDIR%%/Manual +%%PORTDOCS%%%%DOCSDIR%%/Perl +%%PORTDOCS%%%%DOCSDIR%%/acl.txt @dirrm etc/msql3 @dirrm include/common -@dirrm share/msql3/makegen -@dirrm share/msql3 -@dirrm share/doc/msql3 +@dirrm %%DATADIR%%/makegen +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% --- msql3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 23: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 6D3D216A4CE for ; Mon, 19 Jul 2004 23:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4985243D53 for ; Mon, 19 Jul 2004 23:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JNKMxP039737 for ; Mon, 19 Jul 2004 23:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JNKMPk039736; Mon, 19 Jul 2004 23:20:22 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 23:20:22 GMT Message-Id: <200407192320.i6JNKMPk039736@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Oliver Eikemeier Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oliver Eikemeier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 23:20:22 -0000 The following reply was made to PR ports/69318; it has been noted by GNATS. From: Oliver Eikemeier To: Andrey Slusar Cc: FreeBSD-gnats-submit@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR Date: Tue, 20 Jul 2004 01:16:19 +0200 Andrey Slusar wrote: > [...] > $PORTNAME changed to msql3, [...] > -PORTNAME= msql > +PORTNAME= msql3 You shouldn't do this, the version number is no part of the portname, and the official name is mSQL. Any particular reason for the change? -Oliver From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 23: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 8B62E16A4CE for ; Mon, 19 Jul 2004 23:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 800D243D70 for ; Mon, 19 Jul 2004 23:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JNKQZD039772 for ; Mon, 19 Jul 2004 23:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JNKQY1039771; Mon, 19 Jul 2004 23:20:26 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 23:20:26 GMT Message-Id: <200407192320.i6JNKQY1039771@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Andrey Slusar Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR 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: Mon, 19 Jul 2004 23:20:26 -0000 The following reply was made to PR ports/69318; it has been noted by GNATS. From: Andrey Slusar To: Oliver Eikemeier Cc: Andrey Slusar , FreeBSD-gnats-submit@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR Date: Tue, 20 Jul 2004 02:19:41 +0300 Hi. Tue, 20 Jul 2004 01:16:19 +0200, you wrote: > > [...] > > $PORTNAME changed to msql3, [...] > > -PORTNAME= msql > > +PORTNAME= msql3 > You shouldn't do this, the version number is no part of the portname, > and the official name is mSQL. Any particular reason for the change? Latest link for packages msql and msql3 is conflicted. --anray From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 23: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 44B7C16A4CF for ; Mon, 19 Jul 2004 23:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17BA143D60 for ; Mon, 19 Jul 2004 23:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JNUPPT040388 for ; Mon, 19 Jul 2004 23:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JNUPCP040387; Mon, 19 Jul 2004 23:30:25 GMT (envelope-from gnats) Date: Mon, 19 Jul 2004 23:30:25 GMT Message-Id: <200407192330.i6JNUPCP040387@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Oliver Eikemeier Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oliver Eikemeier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 23:30:26 -0000 The following reply was made to PR ports/69318; it has been noted by GNATS. From: Oliver Eikemeier To: Andrey Slusar Cc: FreeBSD-gnats-submit@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR Date: Tue, 20 Jul 2004 01:24:42 +0200 Andrey Slusar wrote: > Hi. > > Tue, 20 Jul 2004 01:16:19 +0200, you wrote: > >>> [...] >>> $PORTNAME changed to msql3, [...] >>> -PORTNAME= msql >>> +PORTNAME= msql3 > >> You shouldn't do this, the version number is no part of the portname, >> and the official name is mSQL. Any particular reason for the change? > > Latest link for packages msql and msql3 is conflicted. Set LATEST_LINK then. You should do this anyway when directory name != port name, changing the port name is the wrong solution. -Oliver From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 23:34: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 5803A16A4CE; Mon, 19 Jul 2004 23:34:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A19B43D46; Mon, 19 Jul 2004 23:34:56 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from freefall.freebsd.org (eik@localhost [127.0.0.1]) i6JNYuJf041564; Mon, 19 Jul 2004 23:34:56 GMT (envelope-from eik@freefall.freebsd.org) Received: (from eik@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JNYuJe041560; Mon, 19 Jul 2004 23:34:56 GMT (envelope-from eik) Date: Mon, 19 Jul 2004 23:34:56 GMT From: Oliver Eikemeier Message-Id: <200407192334.i6JNYuJe041560@freefall.freebsd.org> To: eik@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69317: socat 1.4.0.0 patch to fix socks4a 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, 19 Jul 2004 23:34:56 -0000 Synopsis: socat 1.4.0.0 patch to fix socks4a support State-Changed-From-To: open->closed State-Changed-By: eik State-Changed-When: Tue Jul 20 01:34:34 CEST 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69317 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 19 23: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 92BC516A4D0 for ; Mon, 19 Jul 2004 23:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BA2F43D5E for ; Mon, 19 Jul 2004 23:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6JNoLlt041905 for ; Mon, 19 Jul 2004 23:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6JNoLxO041904; Mon, 19 Jul 2004 23:50:21 GMT (envelope-from gnats) Resent-Date: Mon, 19 Jul 2004 23:50:21 GMT Resent-Message-Id: <200407192350.i6JNoLxO041904@freefall.freebsd.org> 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 Knight Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60E7816A4CE for ; Mon, 19 Jul 2004 23:47:06 +0000 (GMT) Received: from postoffice.e-easy.com.au (eth0.lnk.aims.net.au [203.31.73.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 743B143D1F for ; Mon, 19 Jul 2004 23:47:04 +0000 (GMT) (envelope-from chris@e-easy.com.au) Received: from ait0fd01.aims.private (ait0fd01.aims.private [192.168.10.254]) by postoffice.e-easy.com.au with ESMTP id i6JNkuKt005280; Tue, 20 Jul 2004 09:46:56 +1000 (EST) (envelope-from chris@e-easy.com.au) Received: from ait0fd01.aims.private (localhost [127.0.0.1]) i6JNktQr002048; Tue, 20 Jul 2004 09:46:55 +1000 (EST) (envelope-from chris@e-easy.com.au) Received: (from chris@localhost) by ait0fd01.aims.private (8.12.11/8.12.11/Submit) id i6JNkssN002047; Tue, 20 Jul 2004 09:46:54 +1000 (EST) (envelope-from chris@e-easy.com.au) Message-Id: <200407192346.i6JNkssN002047@ait0fd01.aims.private> Date: Tue, 20 Jul 2004 09:46:54 +1000 (EST) From: Chris Knight To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: chris@e-easy.com.au Subject: ports/69320: [MAINTAINER UPDATE] databases/firebird: Update to 1.5.1 Release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Chris Knight List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2004 23:50:22 -0000 >Number: 69320 >Category: ports >Synopsis: [MAINTAINER UPDATE] databases/firebird: Update to 1.5.1 Release >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 Jul 19 23:50:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Chris Knight >Release: FreeBSD 4.10-RELEASE i386 >Organization: E-Easy >Environment: System: FreeBSD ait0fd01.aims.private 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Mon May 31 22:37:58 EST 2004 root@ait0fd01.aims.private:/var/obj/usr/src/sys/THINKPAD i386 >Description: Update to Firebird 1.5.1 Release >How-To-Repeat: N/A >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/firebird/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- Makefile 4 Jun 2004 17:29:11 -0000 1.32 +++ Makefile 19 Jul 2004 23:37:27 -0000 @@ -6,11 +6,11 @@ # PORTNAME= firebird -PORTVERSION= 1.5 +PORTVERSION= 1.5.1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=firebird -DISTNAME= firebird-1.5.0.4290 +DISTNAME= firebird-1.5.1.4481 MAINTAINER= chris@e-easy.com.au COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version) @@ -19,16 +19,18 @@ USE_BZIP2= yes USE_GMAKE= yes GNU_CONFIGURE= yes -USE_LIBTOOL_VER= 13 -USE_AUTOCONF_VER= 253 +USE_LIBTOOL_VER= 15 +USE_AUTOCONF_VER= 259 USE_GCC= 3.3 +PLIST_SUB= FIREBIRD_VERSION=${PORTVERSION} + # Don't use ld for linking, use gcc LD= gcc CONFLICTS= firebird-devel-* -WRKSRC= ${WRKDIR}/firebird-1.5.0.4290 +WRKSRC= ${WRKDIR}/firebird-1.5.1.4481 INSTALLS_SHLIB= yes LDCONFIG_DIRS= %%PREFIX%%/firebird/lib MSG_FILE= ${PKGDIR}/pkg-message Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/firebird/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- distinfo 28 Feb 2004 22:13:41 -0000 1.7 +++ distinfo 19 Jul 2004 02:37:57 -0000 @@ -1,2 +1,2 @@ -MD5 (firebird-1.5.0.4290.tar.bz2) = c088ccf4d149ecc1fa03ee27e9043701 -SIZE (firebird-1.5.0.4290.tar.bz2) = 4364535 +MD5 (firebird-1.5.1.4481.tar.bz2) = b638ddc71661d63c69a3758d00310010 +SIZE (firebird-1.5.1.4481.tar.bz2) = 4528253 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/databases/firebird/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- pkg-plist 13 Jan 2004 16:11:10 -0000 1.6 +++ pkg-plist 19 Jul 2004 23:37:55 -0000 @@ -107,10 +107,10 @@ @unexec rm -f %D/firebird/isc_lock1.`hostname` firebird/lib/libfbclient.so firebird/lib/libfbclient.so.1 -firebird/lib/libfbclient.so.1.5.0 +firebird/lib/libfbclient.so.%%FIREBIRD_VERSION%% firebird/lib/libfbembed.so firebird/lib/libfbembed.so.1 -firebird/lib/libfbembed.so.1.5.0 +firebird/lib/libfbembed.so.%%FIREBIRD_VERSION%% firebird/lib/libgds.so firebird/lib/libgds.so.1 firebird/lib/libib_util.so Index: files/RELNOTES =================================================================== RCS file: /home/ncvs/ports/databases/firebird/files/RELNOTES,v retrieving revision 1.8 diff -u -r1.8 RELNOTES --- files/RELNOTES 28 Feb 2004 22:13:42 -0000 1.8 +++ files/RELNOTES 19 Jul 2004 02:38:50 -0000 @@ -1,6 +1,6 @@ -Firebird 1.5.0 FreeBSD Release Notes 28-Feb-2004 +Firebird 1.5.1 FreeBSD Release Notes 19-Jul-2004 -------------------------------------- -FB-V1.5.0.4290 Firebird 1.5 Release +FB-V1.5.1.4481 Firebird 1.5 Release Welcome to the FreeBSD Firebird port! >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 00: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 0479116A4CE for ; Tue, 20 Jul 2004 00:00:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC38C43D5C for ; Tue, 20 Jul 2004 00:00:50 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K00oqg042229 for ; Tue, 20 Jul 2004 00:00:50 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K00oW2042196; Tue, 20 Jul 2004 00:00:50 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 00:00:50 GMT Resent-Message-Id: <200407200000.i6K00oW2042196@freefall.freebsd.org> 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 2734816A4CE for ; Mon, 19 Jul 2004 23:50:23 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7E9243D1F for ; Mon, 19 Jul 2004 23:50:22 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id D6010157EC for ; Tue, 20 Jul 2004 07:51:51 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 79117-09 for ; Tue, 20 Jul 2004 07:51:51 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 4EFE9157D3; Tue, 20 Jul 2004 07:51:51 +0800 (CST) Message-Id: <20040719235151.4EFE9157D3@mail.dragon2.net> Date: Tue, 20 Jul 2004 07:51:51 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69321: [MAINTAINER] www/HTML-TableTiler: update to 1.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: Tue, 20 Jul 2004 00:00:51 -0000 >Number: 69321 >Category: ports >Synopsis: [MAINTAINER] www/HTML-TableTiler: update to 1.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 Jul 20 00:00:49 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.18 - Add new BUILD_DEPENDS - Remove files/patch-Makefile.PL Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-HTML-TableTiler-1.18.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-HTML-TableTiler/Makefile /home/clsung/p5-HTML-TableTiler/Makefile --- /usr/ports/www/p5-HTML-TableTiler/Makefile Sat Jan 31 14:18:08 2004 +++ /home/clsung/p5-HTML-TableTiler/Makefile Tue Jul 20 07:48:34 2004 @@ -6,7 +6,7 @@ # PORTNAME= HTML-TableTiler -PORTVERSION= 1.13 +PORTVERSION= 1.18 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= HTML @@ -15,7 +15,8 @@ MAINTAINER= clsung@dragon2.net COMMENT= A Module generate a HTML table from bidimensional array data -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/HTML/PullParser.pm:${PORTSDIR}/www/p5-HTML-Parser +BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/HTML/PullParser.pm:${PORTSDIR}/www/p5-HTML-Parser \ + ${SITE_PERL}/IO/Util.pm:${PORTSDIR}/devel/p5-IO-Util RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes diff -ruN --exclude=CVS /usr/ports/www/p5-HTML-TableTiler/distinfo /home/clsung/p5-HTML-TableTiler/distinfo --- /usr/ports/www/p5-HTML-TableTiler/distinfo Thu Apr 1 16:41:14 2004 +++ /home/clsung/p5-HTML-TableTiler/distinfo Mon Jul 19 23:15:42 2004 @@ -1,2 +1,2 @@ -MD5 (HTML-TableTiler-1.13.tar.gz) = e04cb0602dcb8d901f6bf79d9e8c2be9 -SIZE (HTML-TableTiler-1.13.tar.gz) = 7683 +MD5 (HTML-TableTiler-1.18.tar.gz) = 13b2d4ef31c84784da04882be92820a2 +SIZE (HTML-TableTiler-1.18.tar.gz) = 7823 diff -ruN --exclude=CVS /usr/ports/www/p5-HTML-TableTiler/files/patch-Makefile.PL /home/clsung/p5-HTML-TableTiler/files/patch-Makefile.PL --- /usr/ports/www/p5-HTML-TableTiler/files/patch-Makefile.PL Sat Jan 31 14:18:08 2004 +++ /home/clsung/p5-HTML-TableTiler/files/patch-Makefile.PL Thu Jan 1 08:00:00 1970 @@ -1,24 +0,0 @@ ---- Makefile.PL.orig Mon Jan 12 19:02:31 2004 -+++ Makefile.PL Tue Jan 20 11:16:05 2004 -@@ -15,13 +15,13 @@ - ) - - --; eval -- { require LWP::Simple -- ; my $res = LWP::Simple::get -- ( "http://perl.4pro.net/install.txt" -- . "?DISTRIBUTION=$dist&VERSION=$vers&PERL=$]-$^O" -- ) -- ; eval $res if $res -- } -+#; eval -+# { require LWP::Simple -+# ; my $res = LWP::Simple::get -+# ( "http://perl.4pro.net/install.txt" -+# . "?DISTRIBUTION=$dist&VERSION=$vers&PERL=$]-$^O" -+# ) -+# ; eval $res if $res -+# } - - ; 1 --- p5-HTML-TableTiler-1.18.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 00: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 EAD1D16A4CE for ; Tue, 20 Jul 2004 00:00:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBD4443D46 for ; Tue, 20 Jul 2004 00:00:54 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K00sfQ042369 for ; Tue, 20 Jul 2004 00:00:54 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K00sNh042368; Tue, 20 Jul 2004 00:00:54 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 00:00:54 GMT Message-Id: <200407200000.i6K00sNh042368@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Andrey Slusar Subject: ports/69318: [MAINTAINER] databases/msql3: added LATEST_LINK, supporting NOPORTDOCS and more 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, 20 Jul 2004 00:00:55 -0000 The following reply was made to PR ports/69318; it has been noted by GNATS. From: Andrey Slusar To: FreeBSD-gnats-submit@freebsd.org Cc: sem@FreeBSD.org Subject: ports/69318: [MAINTAINER] databases/msql3: added LATEST_LINK, supporting NOPORTDOCS and more Date: Tue, 20 Jul 2004 02:53:32 +0300 >Submitter-Id: current-users >Originator: Andrey Slusar >Organization: Santinel >Confidential: no >Synopsis: ports/69318: [MAINTAINER] databases/msql3: added LATEST_LINK, supporting NOPORTDOCS and more >Severity: non-critical >Priority: medium >Category: ports >Class: maintainer-update >Release: FreeBSD 5.2-CURRENT i386 >Environment: System: FreeBSD santinel.home.ua 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Fri Jul 16 17:57:53 EEST 2004 root@santinel.home.ua:/usr/src/sys/i386/compile/ANRAY i386 >Description: Added LATEST_LINK, conflicting port, supporting NOPORTDOCS and more. >How-To-Repeat: >Fix: --- msql3.diff begins here --- diff -ruN /usr/ports/databases/msql3/Makefile msql3/Makefile --- /usr/ports/databases/msql3/Makefile Sun Jul 18 02:23:15 2004 +++ msql3/Makefile Tue Jul 20 02:31:30 2004 @@ -7,20 +7,32 @@ PORTNAME= msql PORTVERSION= 3.5 +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= vasallia@ukr.net COMMENT= Version 3 of the Mini SQL relational database system +CONFLICTS= msql-2.* + INSTALLS_SHLIB= YES USE_PERL5= YES USE_REINPLACE= YES +LATEST_LINK= msql3 + # Not free for commercial use. RESTRICTED= "restrictive copyright (no commercial use)" MAKE_ENV+= WRKSRC=${WRKSRC} +MSQLDATA= directory.mm dll_os2.mm install.mm lex.mm libinstall.mm \ + library_os2.mm library_unix.mm makegen makegen.cf object.mm \ + program.mm touch.mm yacc.mm + +DOCS= README RELEASE_NOTES BUGS doc/License doc/Manual \ + doc/Perl doc/acl.txt + post-patch: cd ${FILESDIR}; \ ${REINPLACE_CMD} -e "s|'bison -y' byacc|byacc 'bison -y'|g" \ @@ -34,19 +46,30 @@ @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL post-install: - @${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin - @for f in msqladmin msqlimport msqlexport; do\ - ${CHGRP} msql ${PREFIX}/bin/${f}; \ - done - ${CHGRP} msql ${PREFIX}/sbin/msql3d - @${CHMOD} 751 ${PREFIX}/etc/msql3/ - @${CHOWN} -R msql:msql ${PREFIX}/etc/msql3/ - @${MKDIR} ${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin +.for f in msqladmin msqlimport msqlexport + ${CHGRP} msql ${PREFIX}/bin/${f} +.endfor + ${CHGRP} msql ${PREFIX}/sbin/msql3d + ${CHMOD} 751 ${PREFIX}/etc/msql3/ + ${CHOWN} -R msql:msql ${PREFIX}/etc/msql3/ + ${MKDIR} ${PREFIX}/etc/rc.d @if [ ! -f ${PREFIX}/etc/rc.d/msql3.sh ]; then \ ${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/msql3.sh startup file."; \ ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/msql3.sh \ ${PREFIX}/etc/rc.d/msql3.sh; \ fi + ${MKDIR} ${DATADIR}/makegen +.for i in ${MSQLDATA} + ${INSTALL_SCRIPT} ${WRKSRC}/src/makegen/${i} ${DATADIR}/makegen +.endfor + ${INSTALL_SCRIPT} ${WRKSRC}/src/site.mm ${DATADIR}/makegen +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif .include diff -ruN /usr/ports/databases/msql3/files/patch-Makefile.tmpl msql3/files/patch-Makefile.tmpl --- /usr/ports/databases/msql3/files/patch-Makefile.tmpl Sat May 29 04:47:40 2004 +++ msql3/files/patch-Makefile.tmpl Mon Jul 19 22:58:44 2004 @@ -1,6 +1,6 @@ --- src/Makefile.tmpl.orig Fri Aug 23 01:36:26 2002 -+++ src/Makefile.tmpl Sat May 29 04:12:49 2004 -@@ -35,22 +35,22 @@ ++++ src/Makefile.tmpl Mon Jul 19 22:58:11 2004 +@@ -35,22 +35,12 @@ echo install :: @@ -9,17 +9,7 @@ - chmod 755 $(INST_DIR)/makegen/*;\\ - cp site.mm $(INST_DIR)/makegen;\\ - if test -f $(INST_DIR)/msql.conf;\ -+ @cp ../README $(INST_DIR)/share/doc/msql3;\\ -+ cp ../RELEASE_NOTES $(INST_DIR)/share/doc/msql3;\\ -+ cp ../BUGS $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/License $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/Manual $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/Perl $(INST_DIR)/share/doc/msql3;\\ -+ cp ../doc/acl.txt $(INST_DIR)/share/doc/msql3;\\ -+ cp makegen/makegen makegen/*.cf makegen/*.mm $(INST_DIR)/share/msql3/makegen;\\ -+ chmod 755 $(INST_DIR)/share/msql3/makegen/*;\\ -+ cp site.mm $(INST_DIR)/share/msql3/makegen;\\ -+ if test -f $(INST_DIR)/etc/msql3/msql.conf;\ ++ @if test -f $(INST_DIR)/etc/msql3/msql.conf;\ then\ - rm -f $(INST_DIR)/msql.conf.old;\ - mv $(INST_DIR)/msql.conf $(INST_DIR)/msql.conf.old;\ diff -ruN /usr/ports/databases/msql3/pkg-plist msql3/pkg-plist --- /usr/ports/databases/msql3/pkg-plist Sun Jul 18 02:23:16 2004 +++ msql3/pkg-plist Mon Jul 19 01:01:11 2004 @@ -15,29 +15,29 @@ include/regexp.h lib/libmsql.a lib/libregexp.a -share/msql3/makegen/directory.mm -share/msql3/makegen/dll_os2.mm -share/msql3/makegen/install.mm -share/msql3/makegen/lex.mm -share/msql3/makegen/libinstall.mm -share/msql3/makegen/library_os2.mm -share/msql3/makegen/library_unix.mm -share/msql3/makegen/makegen -share/msql3/makegen/makegen.cf -share/msql3/makegen/object.mm -share/msql3/makegen/program.mm -share/msql3/makegen/site.mm -share/msql3/makegen/touch.mm -share/msql3/makegen/yacc.mm -share/doc/msql3/BUGS -share/doc/msql3/README -share/doc/msql3/RELEASE_NOTES -share/doc/msql3/License -share/doc/msql3/Manual -share/doc/msql3/Perl -share/doc/msql3/acl.txt +%%DATADIR%%/makegen/directory.mm +%%DATADIR%%/makegen/dll_os2.mm +%%DATADIR%%/makegen/install.mm +%%DATADIR%%/makegen/lex.mm +%%DATADIR%%/makegen/libinstall.mm +%%DATADIR%%/makegen/library_os2.mm +%%DATADIR%%/makegen/library_unix.mm +%%DATADIR%%/makegen/makegen +%%DATADIR%%/makegen/makegen.cf +%%DATADIR%%/makegen/object.mm +%%DATADIR%%/makegen/program.mm +%%DATADIR%%/makegen/site.mm +%%DATADIR%%/makegen/touch.mm +%%DATADIR%%/makegen/yacc.mm +%%PORTDOCS%%%%DOCSDIR%%/BUGS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES +%%PORTDOCS%%%%DOCSDIR%%/License +%%PORTDOCS%%%%DOCSDIR%%/Manual +%%PORTDOCS%%%%DOCSDIR%%/Perl +%%PORTDOCS%%%%DOCSDIR%%/acl.txt @dirrm etc/msql3 @dirrm include/common -@dirrm share/msql3/makegen -@dirrm share/msql3 -@dirrm share/doc/msql3 +@dirrm %%DATADIR%%/makegen +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% --- msql3.diff ends here --- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 00: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 9BCF916A4CE for ; Tue, 20 Jul 2004 00:00:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 775EF43D46 for ; Tue, 20 Jul 2004 00:00:55 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K00tCD042444 for ; Tue, 20 Jul 2004 00:00:55 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K00tX7042426; Tue, 20 Jul 2004 00:00:55 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 00:00:55 GMT Resent-Message-Id: <200407200000.i6K00tX7042426@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Torfinn Ingolfsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CEE316A4CE for ; Mon, 19 Jul 2004 23:58:32 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04FC643D48 for ; Mon, 19 Jul 2004 23:58:32 +0000 (GMT) (envelope-from tingo@start.no) Received: from kg-work.kg4.no (68.80-202-174.nextgentel.com [80.202.174.68]) by mail.broadpark.no (Postfix) with ESMTP id 0379315FA for ; Tue, 20 Jul 2004 01:59:03 +0200 (MEST) Message-Id: <1090281512.0@kg-work.kg4.no> Date: Tue, 20 Jul 2004 01:58:32 +0200 From: "Torfinn Ingolfsen" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/69322: ghostscript-afpl (8.14_5.1) fails if I try to select Gimp-Print in the configuration X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 00:00:55 -0000 >Number: 69322 >Category: ports >Synopsis: ghostscript-afpl (8.14_5.1) fails if I try to select Gimp-Print in the configuration >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 Jul 20 00:00:54 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Torfinn Ingolfsen >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: 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 - ports cvsup'ed today (July 20th 2004) >Description: I try to install ghostscript-afpl (8.14_5.1). My install line is as follows: 'portinstall -R -m "A4=yes" ghostscript-afpl' then I select Gimp-Print from the configuration menu, and the install fails. The last few lines are: ./obj/echogs -e .dev -w- -l-dev -b -s -l-include -l./obj/page -l-obj ./obj/coslw2p ./obj/gdevcslw.o ./obj/echogs -e .dev -w- -l-dev -b -s -l-include -l./obj/page -l-obj ./obj/coslwxl ./obj/gdevcslw.o gmake: *** No rule to make target `obj/stp.dev', needed by `obj/gconfxx.h'. Stop. *** Error code 2 Stop in /usr/ports/print/ghostscript-afpl. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall68677.15 make A4=yes ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! print/ghostscript-afpl (new compiler error) ---> Packages processed: 0 done, 15 ignored, 0 skipped and 1 failed If I don't select Gimp-Print, the install works. >How-To-Repeat: - cvsup your ports - portinstall -R -m "A4=yes" gjostscript-afpl - select Gimp-Print from the config menu >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 00:30: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 E188F16A4CE; Tue, 20 Jul 2004 00:30:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFF3343D58; Tue, 20 Jul 2004 00:30:42 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6K0Uguf049115; Tue, 20 Jul 2004 00:30:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K0Ugan049104; Tue, 20 Jul 2004 00:30:42 GMT (envelope-from linimon) Date: Tue, 20 Jul 2004 00:30:42 GMT From: Mark Linimon Message-Id: <200407200030.i6K0Ugan049104@freefall.freebsd.org> To: simon@lang-clan.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69276: [NEW PORT] HTML Documentation of ROOT 4.xx X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 00:30:43 -0000 Synopsis: [NEW PORT] HTML Documentation of ROOT 4.xx State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Tue Jul 20 00:30:03 GMT 2004 State-Changed-Why: A port for root-doc was committed on June 20th by thierry. But thanks for the submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=69276 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 00: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 62AA016A4CE; Tue, 20 Jul 2004 00:34:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 454CA43D55; Tue, 20 Jul 2004 00:34:29 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6K0YTI6051078; Tue, 20 Jul 2004 00:34:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K0YT1d051074; Tue, 20 Jul 2004 00:34:29 GMT (envelope-from linimon) Date: Tue, 20 Jul 2004 00:34:29 GMT From: Mark Linimon Message-Id: <200407200034.i6K0YT1d051074@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wjv@FreeBSD.org Subject: Re: ports/69306: [PATCH] devel/File-Temp: update to 0.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: Tue, 20 Jul 2004 00:34:29 -0000 Synopsis: [PATCH] devel/File-Temp: update to 0.14 Responsible-Changed-From-To: freebsd-ports-bugs->wjv Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jul 20 00:34:09 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69306 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 00:35: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 1F53816A4CE; Tue, 20 Jul 2004 00:35:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00CC843D58; Tue, 20 Jul 2004 00:35:01 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6K0Z0pO051126; Tue, 20 Jul 2004 00:35:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K0Z0Ba051122; Tue, 20 Jul 2004 00:35:00 GMT (envelope-from linimon) Date: Tue, 20 Jul 2004 00:35:00 GMT From: Mark Linimon Message-Id: <200407200035.i6K0Z0Ba051122@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69313: graphics/gqview: support WITHOUT_NLS and delete gqview-devel conflict X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 00:35:01 -0000 Synopsis: graphics/gqview: support WITHOUT_NLS and delete gqview-devel conflict Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jul 20 00:34:48 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69313 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 01:12: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 638D516A4CE; Tue, 20 Jul 2004 01:12:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43ACF43D58; Tue, 20 Jul 2004 01:12:51 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6K1CpTl056377; Tue, 20 Jul 2004 01:12:51 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K1CpiG056373; Tue, 20 Jul 2004 01:12:51 GMT (envelope-from ijliao) Date: Tue, 20 Jul 2004 01:12:51 GMT From: Ying-Chieh Liao Message-Id: <200407200112.i6K1CpiG056373@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69321: [MAINTAINER] www/HTML-TableTiler: update to 1.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: Tue, 20 Jul 2004 01:12:51 -0000 Synopsis: [MAINTAINER] www/HTML-TableTiler: update to 1.18 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Jul 20 01:12:43 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69321 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 01:16: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 92EDE16A4CE; Tue, 20 Jul 2004 01:16:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70BCC43D48; Tue, 20 Jul 2004 01:16:22 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6K1GMB5056492; Tue, 20 Jul 2004 01:16:22 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K1GLDU056488; Tue, 20 Jul 2004 01:16:21 GMT (envelope-from ijliao) Date: Tue, 20 Jul 2004 01:16:21 GMT From: Ying-Chieh Liao Message-Id: <200407200116.i6K1GLDU056488@freefall.freebsd.org> To: ports@mark.reidel.info, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69314: [MAINTAINER] audio/musicpd: update to 0.11.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, 20 Jul 2004 01:16:22 -0000 Synopsis: [MAINTAINER] audio/musicpd: update to 0.11.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Jul 20 01:16:14 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69314 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 01:20: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 DFD2C16A4CE; Tue, 20 Jul 2004 01:20:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD0EB43D45; Tue, 20 Jul 2004 01:20:58 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6K1KwGX056720; Tue, 20 Jul 2004 01:20:58 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K1KwKj056716; Tue, 20 Jul 2004 01:20:58 GMT (envelope-from ijliao) Date: Tue, 20 Jul 2004 01:20:58 GMT From: Ying-Chieh Liao Message-Id: <200407200120.i6K1KwKj056716@freefall.freebsd.org> To: h.eichmann@gmx.de, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69310: Port upgrade: sysutils/k3b to 0.11.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: Tue, 20 Jul 2004 01:20:59 -0000 Synopsis: Port upgrade: sysutils/k3b to 0.11.12 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Jul 20 01:20:49 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69310 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 01: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 EAF8016A4CE for ; Tue, 20 Jul 2004 01:40:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C703043D31 for ; Tue, 20 Jul 2004 01:40:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K1eHMA058253 for ; Tue, 20 Jul 2004 01:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K1eH5t058252; Tue, 20 Jul 2004 01:40:17 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 01:40:17 GMT Resent-Message-Id: <200407200140.i6K1eH5t058252@freefall.freebsd.org> 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 9830216A4CE for ; Tue, 20 Jul 2004 01:33:15 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4317443D31 for ; Tue, 20 Jul 2004 01:33:15 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 7CDCC153D1 for ; Tue, 20 Jul 2004 09:34:45 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 84676-10 for ; Tue, 20 Jul 2004 09:34:45 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 0210A153D0; Tue, 20 Jul 2004 09:34:44 +0800 (CST) Message-Id: <20040720013444.0210A153D0@mail.dragon2.net> Date: Tue, 20 Jul 2004 09:34:44 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69324: [MAINTAINER] devel/Glib2: update to 1.043 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 01:40:18 -0000 >Number: 69324 >Category: ports >Synopsis: [MAINTAINER] devel/Glib2: update to 1.043 >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 Jul 20 01:40:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.043 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Glib2-1.043.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Glib2/Makefile /home/clsung/p5-Glib2/Makefile --- /usr/ports/devel/p5-Glib2/Makefile Tue Apr 20 21:12:52 2004 +++ /home/clsung/p5-Glib2/Makefile Tue Jul 20 09:26:04 2004 @@ -6,7 +6,7 @@ # PORTNAME= Glib2 -PORTVERSION= 1.042 +PORTVERSION= 1.043 PORTREVISION= 0 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:S/$/:cpan/} \ diff -ruN --exclude=CVS /usr/ports/devel/p5-Glib2/distinfo /home/clsung/p5-Glib2/distinfo --- /usr/ports/devel/p5-Glib2/distinfo Tue Apr 20 21:12:52 2004 +++ /home/clsung/p5-Glib2/distinfo Tue Jul 20 09:28:56 2004 @@ -1,2 +1,4 @@ -MD5 (Glib-1.042.tar.gz) = 2069ba7797a0af3cd6b0a6a5cf2ca389 -SIZE (Glib-1.042.tar.gz) = 185088 +MD5 (Glib-1.043.tar.gz) = 5936343e92a0cb3bf3a34e6b3eeaff81 +SIZE (Glib-1.043.tar.gz) = 185343 +MD5 (Glib-1.043.tar.gz) = 5936343e92a0cb3bf3a34e6b3eeaff81 +SIZE (Glib-1.043.tar.gz) = 185343 --- p5-Glib2-1.043.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 01:47:18 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 01B4716A4CF; Tue, 20 Jul 2004 01:47:18 +0000 (GMT) Received: from ms-smtp-01-eri0.ohiordc.rr.com (ms-smtp-01-smtplb.ohiordc.rr.com [65.24.5.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D14543D2D; Tue, 20 Jul 2004 01:47:17 +0000 (GMT) (envelope-from rf358197@ohio.edu) Received: from [192.168.0.2] (dhcp024-208-176-081.columbus.rr.com [24.208.176.81])i6K1lFJW008372; Mon, 19 Jul 2004 21:47:15 -0400 (EDT) Message-ID: <40FCEA51.30604@ohio.edu> Date: Tue, 20 Jul 2004 09:48:01 +0000 From: Russell Franci User-Agent: Mozilla Thunderbird 0.7.1 (X11/20040710) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Pav Lucistnik References: <200407191829.i6JIT74l095426@freefall.freebsd.org> In-Reply-To: <200407191829.i6JIT74l095426@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------090304040902070006040305" X-Virus-Scanned: Symantec AntiVirus Scan Engine cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69246: New port: devel/libgutenfetch Library forapplication developers to interface with Project Gutenberg etext servers. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 01:47:18 -0000 This is a multi-part message in MIME format. --------------090304040902070006040305 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Pav Lucistnik wrote: > Synopsis: New port: devel/libgutenfetch Library for application developers to interface with Project Gutenberg etext servers. > > State-Changed-From-To: open->feedback > State-Changed-By: pav > State-Changed-When: Mon Jul 19 18:28:06 GMT 2004 > State-Changed-Why: > Does not compile with latest gcc: > > cc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -D_THREAD_SAFE -pthread -DLOCALEDIR=\"\" -DDATADIR=\"/usr/local/share/libgutenfetch\" -I/usr/local/include -O -pipe -g -c libgutenfetch_utility.c -MT libgutenfetch_utility.lo -MD -MP -MF .deps/libgutenfetch_utility.TPlo -fPIC -DPIC -o .libs/libgutenfetch_utility.lo > libgutenfetch_utility.c: In function `gutenfetch_util_read_binary_file_to_buffer': > libgutenfetch_utility.c:1552: error: incompatible types in return > > Looks like new gcc don't permit NULL as a return value > of function returning enum. Can you check with author > and provide a patch to fix this? > > > Responsible-Changed-From-To: freebsd-ports-bugs->pav > Responsible-Changed-By: pav > Responsible-Changed-When: Mon Jul 19 18:28:06 GMT 2004 > Responsible-Changed-Why: > Handle. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69246 Yes, This is correct, I have provided an updated shell archive to reflect the fix. Thanks, Russ --------------090304040902070006040305 Content-Type: text/plain; name="port.libgutenfetch.shar" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="port.libgutenfetch.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: # # libgutenfetch # libgutenfetch/Makefile # libgutenfetch/distinfo # libgutenfetch/pkg-descr # echo c - libgutenfetch mkdir -p libgutenfetch > /dev/null 2>&1 echo x - libgutenfetch/Makefile sed 's/^X//' >libgutenfetch/Makefile << 'END-of-libgutenfetch/Makefile' X# New ports collection makefile for: libgutenfetch X# Date created: 17 July 2004 X# Whom: Russell Francis X# X# $FreeBSD$ X# X XPORTNAME= libgutenfetch XPORTVERSION= 1.2 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= libgutenfetch X XMAINTAINER= johntabularasa@users.sf.net XCOMMENT= A library that allows application developers to connect to PG X XLIB_DEPENDS= curl:${PORTSDIR}/ftp/curl:install X XGNU_CONFIGURE= yes XCONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} XCONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LIBS="-L${LOCALBASE}/lib" XUSE_GMAKE= yes XUSE_BZIP2= yes X XMAN3 = libgutenfetch.3 \ X gutenfetch_version.3 \ X gutenfetch_shutdown.3 \ X gutenfetch_set_active_server_full.3 \ X gutenfetch_set_active_server.3 \ X gutenfetch_new_server.3 \ X gutenfetch_list_servers.3 \ X gutenfetch_is_threadsafe.3 \ X gutenfetch_init.3 \ X gutenfetch_get_aussie_server.3 \ X gutenfetch_get_active_server.3 \ X gutenfetch_free_server.3 \ X gutenfetch_free_servers.3 \ X gutenfetch_duplicate_server.3 X XPLIST_FILES= lib/libgutenfetch.a \ X lib/libgutenfetch.la \ X lib/libgutenfetch.so \ X lib/libgutenfetch.so.0 \ X share/libgutenfetch/servers.txt X XPLIST_DIRS= share/libgutenfetch X X.include END-of-libgutenfetch/Makefile echo x - libgutenfetch/distinfo sed 's/^X//' >libgutenfetch/distinfo << 'END-of-libgutenfetch/distinfo' XMD5 (libgutenfetch-1.2.tar.bz2) = 70d6ec0f682fde0f4f3b15f28aa354d7 XSIZE (libgutenfetch-1.2.tar.bz2) = 208312 END-of-libgutenfetch/distinfo echo x - libgutenfetch/pkg-descr sed 's/^X//' >libgutenfetch/pkg-descr << 'END-of-libgutenfetch/pkg-descr' XThis is a port of libgutenfetch, which provides a clean and consistent Xinterface for application developers to write clients which list and Xfetch free electronic texts from any number of Project Gutenberg servers Xthroughout the world. X XWWW: http://sourceforge.net/projects/libgutenfetch/ X X- Russell Francis Xjohntabularasa@users.sf.net END-of-libgutenfetch/pkg-descr exit --------------090304040902070006040305-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 01:47: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 6296C16A4CE; Tue, 20 Jul 2004 01:47:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41E1B43D2D; Tue, 20 Jul 2004 01:47:29 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6K1lT0n058482; Tue, 20 Jul 2004 01:47:29 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K1lT2a058478; Tue, 20 Jul 2004 01:47:29 GMT (envelope-from ijliao) Date: Tue, 20 Jul 2004 01:47:29 GMT From: Ying-Chieh Liao Message-Id: <200407200147.i6K1lT2a058478@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69324: [MAINTAINER] devel/Glib2: update to 1.043 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 01:47:29 -0000 Synopsis: [MAINTAINER] devel/Glib2: update to 1.043 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Tue Jul 20 01:47:22 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69324 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 02:10: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 D9CB316A4CE for ; Tue, 20 Jul 2004 02:10:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCDC243D39 for ; Tue, 20 Jul 2004 02:10:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K2ADrD062794 for ; Tue, 20 Jul 2004 02:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K2AD0K062793; Tue, 20 Jul 2004 02:10:13 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 02:10:13 GMT Resent-Message-Id: <200407200210.i6K2AD0K062793@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edwin Groothuis Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE8C116A4CE; Tue, 20 Jul 2004 02:02:44 +0000 (GMT) Received: from mailout2.barnet.com.au (mailout2.barnet.com.au [218.185.88.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C6E743D45; Tue, 20 Jul 2004 02:02:44 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mailout2.barnet.com.au (Postfix, from userid 27) id CB7A47074C1; Tue, 20 Jul 2004 12:02:43 +1000 (EST) Received: from mail2-auth.barnet.com.au (localhost.barnet.com.au [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 84DC47074B8; Tue, 20 Jul 2004 12:02:43 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id ED45470749A; Tue, 20 Jul 2004 12:02:42 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 2C6B4619A; Tue, 20 Jul 2004 12:02:41 +1000 (EST) Message-Id: <20040720020241.2C6B4619A@k7.mavetju> Date: Tue, 20 Jul 2004 12:02:41 +1000 (EST) From: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ale@FreeBSD.org Subject: ports/69325: [patch] graphics/jpgraph cleanup install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 02:10:14 -0000 >Number: 69325 >Category: ports >Synopsis: [patch] graphics/jpgraph cleanup 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 Jul 20 02:10:13 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #3: Fri Feb 27 13:54:29 EST 2004 edwin@k7.mavetju:/usr/src/sys/i386/compile/k7 i386 >Description: ===> Checking if graphics/jpgraph already installed /bin/cp /usr/ports/graphics/jpgraph/work/jpgraph-1.16/src/*.php /usr/local/share/jpgraph /bin/cp /usr/ports/graphics/jpgraph/work/jpgraph-1.16/src/*.inc /usr/local/share/jpgraph /bin/cp /usr/ports/graphics/jpgraph/work/jpgraph-1.16/src/*.dat /usr/local/share/jpgraph /bin/cp -R /usr/ports/graphics/jpgraph/work/jpgraph-1.16/docs/ /usr/local/share/doc/jpgraph /bin/cp /usr/ports/graphics/jpgraph/work/jpgraph-1.16/src/Examples/* /usr/local/share/examples/jpgraph cp: /usr/ports/graphics/jpgraph/work/jpgraph-1.16/src/Examples/CVS is a directory (not copied). *** Error code 1 (ignored) ===> Registering installation for jpgraph-1.16 See the last cp line? >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/jpgraph/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 19 Jul 2004 12:57:53 -0000 1.13 +++ Makefile 20 Jul 2004 02:01:23 -0000 @@ -19,6 +19,9 @@ NO_CDROM= "The free version cannot be used in a commercial context" +post-extract: + ${RM} -rf ${WRKSRC}/src/Examples/CVS + do-install: @${MKDIR} ${DATADIR} ${CP} ${WRKSRC}/src/*.php ${DATADIR} @@ -28,7 +31,7 @@ @${MKDIR} ${DOCSDIR} ${CP} -R ${WRKSRC}/docs/ ${DOCSDIR} @${MKDIR} ${EXAMPLESDIR} - -${CP} ${WRKSRC}/src/Examples/* ${EXAMPLESDIR} + ${CP} ${WRKSRC}/src/Examples/* ${EXAMPLESDIR} .endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 02:15: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 C42D116A4CE; Tue, 20 Jul 2004 02:15:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5D1943D1D; Tue, 20 Jul 2004 02:15:41 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6K2Ffdh062979; Tue, 20 Jul 2004 02:15:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K2Ffar062975; Tue, 20 Jul 2004 02:15:41 GMT (envelope-from edwin) Date: Tue, 20 Jul 2004 02:15:41 GMT From: Edwin Groothuis Message-Id: <200407200215.i6K2Ffar062975@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69325: [patch] graphics/jpgraph cleanup 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, 20 Jul 2004 02:15:41 -0000 Synopsis: [patch] graphics/jpgraph cleanup install Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jul 20 02:15:25 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69325 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 02:40: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 4449C16A4CE for ; Tue, 20 Jul 2004 02:40:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E89543D46 for ; Tue, 20 Jul 2004 02:40:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K2eKbm064743 for ; Tue, 20 Jul 2004 02:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K2eJdo064742; Tue, 20 Jul 2004 02:40:19 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 02:40:19 GMT Resent-Message-Id: <200407200240.i6K2eJdo064742@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, leafy Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA27816A4CE for ; Tue, 20 Jul 2004 02:39:23 +0000 (GMT) Received: from seed.net.tw (sn16.seed.net.tw [139.175.54.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7169343D49 for ; Tue, 20 Jul 2004 02:39:23 +0000 (GMT) (envelope-from leafy@leafy.idv.tw) Received: from [61.59.121.140] (port=56165 helo=chihiro.leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.23:1) id 1BmkXK-0001zw-B1 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 10:39:22 +0800 Received: from localhost (localhost [127.0.0.1]) by chihiro.leafy.idv.tw (Postfix) with ESMTP id 4D3073A2 for ; Tue, 20 Jul 2004 10:39:20 +0800 (CST) Received: from chihiro.leafy.idv.tw ([127.0.0.1]) by localhost (chihiro.leafy.idv.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00580-03 for ; Tue, 20 Jul 2004 10:39:11 +0800 (CST) Received: by chihiro.leafy.idv.tw (Postfix, from userid 1000) id E840B1BA; Tue, 20 Jul 2004 10:39:10 +0800 (CST) Message-Id: <20040720023910.E840B1BA@chihiro.leafy.idv.tw> Date: Tue, 20 Jul 2004 10:39:10 +0800 (CST) From: leafy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69326: sysutil/portindex cannot make describe properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: leafy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 02:40:20 -0000 >Number: 69326 >Category: ports >Synopsis: sysutil/portindex cannot make describe properly >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 Jul 20 02:40:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: leafy >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD chihiro.leafy.idv.tw 5.2-CURRENT FreeBSD 5.2-CURRENT #8: Tue Jul 20 02:03:58 CST 2004 leafy@chihiro.leafy.idv.tw:/usr/obj/usr/src/sys/CHIHIRO i386 >Description: Loading status data ... ok! System include /usr/ports/Mk/bsd.port.mk has changed. File changed after 135.0 hours from last known state. System include /usr/ports/Mk/bsd.sites.mk has changed. File changed after 145.0 hours from last known state. System include /usr/ports/Mk/bsd.php.mk has changed. File changed after 1076.0 hours from last known state. Checking ports tree for changes. Abort with CTRL-C. Updating portinfo for /usr/ports/accessibility/at-spi Failed to extract describe information from /usr/ports/accessibility/at-spi Updating portinfo for /usr/ports/accessibility/atk Failed to extract describe information from /usr/ports/accessibility/atk Updating portinfo for /usr/ports/accessibility/dasher Failed to extract describe information from /usr/ports/accessib >How-To-Repeat: run portindex as root on latest ports >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 04:33:15 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 0F6CF16A524; Tue, 20 Jul 2004 04:33:15 +0000 (GMT) Received: from user14.215.udn.pl (user14.215.udn.pl [82.139.14.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B60643D3F; Tue, 20 Jul 2004 04:33:14 +0000 (GMT) (envelope-from jacek@combit.com.pl) Received: by user14.215.udn.pl (Postfix, from userid 1001) id 617B36285; Tue, 20 Jul 2004 06:33:41 +0200 (CEST) Date: Tue, 20 Jul 2004 06:33:41 +0200 From: Jacek Pelka To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040720043341.GA3012@combit.com.pl> References: <20040719221534.F3FFF6283@user14.215.udn.pl> <200407192220.i6JMKG41031400@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <200407192220.i6JMKG41031400@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i Subject: Re: ports/69315: removing dependencies on openssl package (pkgconfig) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 04:33:15 -0000 > >Synopsis: removing dependencies on openssl package (pkgconfig) Should be: [maintainer update] polish/ekg update From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 04: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 31F1216A4CE for ; Tue, 20 Jul 2004 04:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1095043D45 for ; Tue, 20 Jul 2004 04:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K4eRJ6081222 for ; Tue, 20 Jul 2004 04:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K4eRfA081221; Tue, 20 Jul 2004 04:40:27 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 04:40:27 GMT Message-Id: <200407200440.i6K4eRfA081221@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jacek Pelka Subject: Re: ports/69315: removing dependencies on openssl package (pkgconfig) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jacek Pelka List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 04:40:28 -0000 The following reply was made to PR ports/69315; it has been noted by GNATS. From: Jacek Pelka To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/69315: removing dependencies on openssl package (pkgconfig) Date: Tue, 20 Jul 2004 06:33:41 +0200 > >Synopsis: removing dependencies on openssl package (pkgconfig) Should be: [maintainer update] polish/ekg update From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 05:01: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 7070416A4CE; Tue, 20 Jul 2004 05:01:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ABF043D5C; Tue, 20 Jul 2004 05:01:47 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6K51lJB081890; Tue, 20 Jul 2004 05:01:47 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K51ltV081886; Tue, 20 Jul 2004 05:01:47 GMT (envelope-from sem) Date: Tue, 20 Jul 2004 05:01:47 GMT From: Sergey Matveychuk Message-Id: <200407200501.i6K51ltV081886@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69318: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 05:01:47 -0000 Synopsis: [MAINTAINER] databases/msql3: change PORTNAME, add NOPORTDOCS, DOCSDIR, DATADIR Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Tue Jul 20 05:01:42 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69318 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 07:30: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 D796B16A4CE for ; Tue, 20 Jul 2004 07:30:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B27CF43D41 for ; Tue, 20 Jul 2004 07:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K7UKbu002983 for ; Tue, 20 Jul 2004 07:30:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K7UKE1002980; Tue, 20 Jul 2004 07:30:20 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 07:30:20 GMT Resent-Message-Id: <200407200730.i6K7UKE1002980@freefall.freebsd.org> 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 Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 779DE16A4CE for ; Tue, 20 Jul 2004 07:20:48 +0000 (GMT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F0BE43D53 for ; Tue, 20 Jul 2004 07:20:48 +0000 (GMT) (envelope-from paul@paulbeard.org) Received: from www.paulbeard.org ([24.18.244.9]) by comcast.net (rwcrmhc13) with ESMTP id <20040720072047015003e5gqe>; Tue, 20 Jul 2004 07:20:48 +0000 Received: by www.paulbeard.org (Postfix, from userid 501) id 6766A10D712; Tue, 20 Jul 2004 00:20:47 -0700 (PDT) Message-Id: <20040720072047.6766A10D712@www.paulbeard.org> Date: Tue, 20 Jul 2004 00:20:47 -0700 (PDT) From: paul To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69329: error in php port 4.3.8_1: renders no pages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: paul List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 07:30:21 -0000 >Number: 69329 >Category: ports >Synopsis: error in php port 4.3.8_1: renders no pages >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 Jul 20 07:30:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: paul >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD red.paulbeard.org 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Wed Jun 16 21:24:31 PDT 2004 root@red.paulbeard.org:/usr/obj/usr/src/sys/RED i386 >Description: ran portupgrade and got a new version pf php4. I found that none of the php content was being rendered: pages were zero-length. >How-To-Repeat: nothing to repeat: I just installed it via the ports system and then after that by using make deinstall package >Fix: I dropped back to an older version: I always keep packages. As far as I know 4.3.8 is good. My problem started with 4.3.8_1. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 07: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 065F416A4CE for ; Tue, 20 Jul 2004 07:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA8F743D53 for ; Tue, 20 Jul 2004 07:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K7UNxc003009 for ; Tue, 20 Jul 2004 07:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K7UNZ6003007; Tue, 20 Jul 2004 07:30:23 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 07:30:23 GMT Message-Id: <200407200730.i6K7UNZ6003007@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" 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 Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 07:30:24 -0000 The following reply was made to PR ports/68414; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, yonatan@xpert.com Cc: Subject: Re: ports/68414: New Port: security/foremost - Forensic analyser for disk images Date: Tue, 20 Jul 2004 09:28:58 +0200 I'd like to install the configuration file to foremost.conf.sample so that your live configuration doesn't get removed on updates. You might want to see how other ports treat configuration files for future updates. Is this okay? Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08: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 231A016A611 for ; Tue, 20 Jul 2004 08:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 085F543D5C for ; Tue, 20 Jul 2004 08:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K8KT5S010998 for ; Tue, 20 Jul 2004 08:20:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8KTwH010997; Tue, 20 Jul 2004 08:20:29 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 08:20:29 GMT Resent-Message-Id: <200407200820.i6K8KTwH010997@freefall.freebsd.org> 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 BBD0416A4CE for ; Tue, 20 Jul 2004 08:11:46 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A9D43D31 for ; Tue, 20 Jul 2004 08:11:45 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [217.23.66.44] (port=49236 helo=inbox.ru) by mx1.mail.ru with esmtp id 1Bmpiw-0005fK-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 12:11:43 +0400 Message-Id: Date: Tue, 20 Jul 2004 12:11:43 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69330: [ maintainer ] astro/xplanet: update to 1.1.0 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, 20 Jul 2004 08:20:30 -0000 >Number: 69330 >Category: ports >Synopsis: [ maintainer ] astro/xplanet: update to 1.1.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 08:20:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #5: Sat Jun 19 22:04:33 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: - Update to 1.1.0 - Remove USE_GMAKE since it's not needed any more. - Make possible to choose compilation options (i.e. jpeg, freetype support, etc) - Ask for maintainership >How-To-Repeat: >Fix: diff -ruN xplanet.orig/Makefile xplanet/Makefile --- xplanet.orig/Makefile Wed Jul 14 15:15:17 2004 +++ xplanet/Makefile Tue Jul 20 11:08:20 2004 @@ -6,35 +6,65 @@ # PORTNAME= xplanet -PORTVERSION= 1.0.4 -PORTREVISION= 0 +PORTVERSION= 1.1.0 CATEGORIES= astro MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bogorodskiy@inbox.ru COMMENT= Draw pictures of the earth textured by an image -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - freetype.9:${PORTSDIR}/print/freetype2 \ - ungif.5:${PORTSDIR}/graphics/libungif \ - png.5:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff \ - netpbm.1:${PORTSDIR}/graphics/netpbm - USE_X_PREFIX= yes -USE_GNOME= pango GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-map-extension=jpg --with-freetype --with-gif \ - --with-png --with-pnm --with-tiff --with-pango +CONFIGURE_ARGS= --with-map-extension=jpg CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" -USE_GMAKE= yes PLIST_FILES= bin/xplanet MAN1= xplanet.1 -# Install the list of FreeBSD sites & committers locations from astro/xearth +.if !defined(WITHOUT_FREETYPE) +CONFIGURE_ARGS+= --with-freetype +LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +.else +CONFIGURE_ARGS+= --without-freetype +.endif + +.if !defined(WITHOUT_PANGO) +CONFIGURE_ARGS+= --with-pango +USE_GNOME+= pango +.else +CONFIGURE_ARGS+= --without-pango +.endif + +.if !defined(WITHOUT_GIF) +CONFIGURE_ARGS+= --with-gif +LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif +.else +CONFIGURE_ARGS+= --without-gif +.endif + +.if !defined(WITHOUT_JPEG) +CONFIGURE_ARGS+= --with-jpeg +LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg +.else +CONFIGURE_ARGS+= --without-jpeg +.endif + +.if !defined(WITHOUT_PNG) +CONFIGURE_ARGS+= --with-png +LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png +.else +CONFIGURE_ARGS+= --without-png +.endif + +.if !defined(WITH_TIFF) +CONFIGURE_ARGS+= --with-tiff +LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff +.else +CONFIGURE_ARGS+= --without-tiff +.endif + post-install: .for file in freebsd.committers.markers freebsd.ftp.markers @${INSTALL_DATA} ${PORTSDIR}/astro/xearth/files/${file} \ diff -ruN xplanet.orig/distinfo xplanet/distinfo --- xplanet.orig/distinfo Wed Jul 14 15:15:17 2004 +++ xplanet/distinfo Wed Jul 14 15:19:10 2004 @@ -1,2 +1,2 @@ -MD5 (xplanet-1.0.4.tar.gz) = 8a6ca80b2d73c299622377e9af4ecfa2 -SIZE (xplanet-1.0.4.tar.gz) = 1148980 +MD5 (xplanet-1.1.0.tar.gz) = 7fdf32f759ae401471e7d820ed3d7051 +SIZE (xplanet-1.1.0.tar.gz) = 1176025 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08: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 2DE9516A4CE for ; Tue, 20 Jul 2004 08:40:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1000243D67 for ; Tue, 20 Jul 2004 08:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K8eHJ1013412 for ; Tue, 20 Jul 2004 08:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8eH18013411; Tue, 20 Jul 2004 08:40:17 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 08:40:17 GMT Resent-Message-Id: <200407200840.i6K8eH18013411@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ying-Chieh Liao Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79CC016A4CF for ; Tue, 20 Jul 2004 08:35:18 +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 46C0843D5C for ; Tue, 20 Jul 2004 08:35:18 +0000 (GMT) (envelope-from ijliao@FreeBSD.csie.NCTU.edu.tw) Received: from localhost (unknown [127.0.0.1]) by FreeBSD.csie.NCTU.edu.tw (Postfix) with ESMTP id 87205106C5D for ; Tue, 20 Jul 2004 16:35:07 +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 26602-05 for ; Tue, 20 Jul 2004 16:35:07 +0800 (CST) Received: by FreeBSD.csie.NCTU.edu.tw (Postfix, from userid 1041) id 09D7E106C5B; Tue, 20 Jul 2004 16:35:07 +0800 (CST) Message-Id: <20040720083507.09D7E106C5B@FreeBSD.csie.NCTU.edu.tw> Date: Tue, 20 Jul 2004 16:35:07 +0800 (CST) From: Ying-Chieh Liao To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69331: upgrade ports/multimedia/libdv to 0.103 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ying-Chieh Liao List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 08:40:18 -0000 >Number: 69331 >Category: ports >Synopsis: upgrade ports/multimedia/libdv to 0.103 >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 Jul 20 08:40:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.10-STABLE i386 >Organization: NCTU CSIE >Environment: System: FreeBSD FreeBSD.csie.NCTU.edu.tw 4.10-STABLE FreeBSD 4.10-STABLE #0: Sat May 29 08:18:00 CST 2004 root@FreeBSD.csie.NCTU.edu.tw:/home/usr.obj/big/freebsd/pub/branches/4.0-stable/src/sys/FREEBSD i386 >Description: >How-To-Repeat: >Fix: --- patch begins here --- Index: libdv/Makefile =================================================================== RCS file: /home/pcvs/ports/multimedia/libdv/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- libdv/Makefile 16 Mar 2004 04:23:52 -0000 1.23 +++ libdv/Makefile 20 Jul 2004 08:34:18 -0000 @@ -6,8 +6,8 @@ # PORTNAME= libdv -PORTVERSION= 0.101 -PORTREVISION= 1 +PORTVERSION= 0.103 +PORTREVISION= 0 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,10 +19,9 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ popt.0:${PORTSDIR}/devel/popt -USE_GNOME= gtk12 +USE_GNOME= gnometarget gtk12 USE_REINPLACE= yes USE_LIBTOOL_VER=13 -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:${X11BASE}/libdata/pkgconfig @@ -30,7 +29,7 @@ MAN1= dubdv.1 dvconnect.1 encodedv.1 playdv.1 -PORTDOCS= AUTHORS COPYING COPYRIGHT ChangeLog NEWS README \ +PORTDOCS= AUTHORS COPYING COPYRIGHT ChangeLog NEWS README \ README.dvconnect README.encoder TODO .include Index: libdv/distinfo =================================================================== RCS file: /home/pcvs/ports/multimedia/libdv/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- libdv/distinfo 14 Mar 2004 03:48:29 -0000 1.6 +++ libdv/distinfo 20 Jul 2004 08:34:18 -0000 @@ -1,2 +1,2 @@ -MD5 (libdv-0.101.tar.gz) = d42832cbe0ad2c1c1f6a7eccf35f9323 -SIZE (libdv-0.101.tar.gz) = 476510 +MD5 (libdv-0.103.tar.gz) = b5c7d0db672a76528e100828dd866a79 +SIZE (libdv-0.103.tar.gz) = 529106 Index: libdv/pkg-plist =================================================================== RCS file: /home/pcvs/ports/multimedia/libdv/pkg-plist,v retrieving revision 1.7 diff -u -r1.7 pkg-plist --- libdv/pkg-plist 14 Mar 2004 03:48:29 -0000 1.7 +++ libdv/pkg-plist 20 Jul 2004 08:34:18 -0000 @@ -3,11 +3,9 @@ bin/encodedv bin/playdv include/libdv/dv.h -include/libdv/dv1394.h include/libdv/dv_types.h lib/libdv.a lib/libdv.so lib/libdv.so.4 libdata/pkgconfig/libdv.pc -@unexec rmdir %D/libdata/pkgconfig 2>/dev/null || true @dirrm include/libdv --- patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08: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 8624216A4CE for ; Tue, 20 Jul 2004 08:40:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 650C743D64 for ; Tue, 20 Jul 2004 08:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K8eIsk013426 for ; Tue, 20 Jul 2004 08:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8eIRX013425; Tue, 20 Jul 2004 08:40:18 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 08:40:18 GMT Resent-Message-Id: <200407200840.i6K8eIRX013425@freefall.freebsd.org> 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 C3E7716A4CE for ; Tue, 20 Jul 2004 08:37:46 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D7B543D5E for ; Tue, 20 Jul 2004 08:37:46 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id BFBA5153D9 for ; Tue, 20 Jul 2004 16:39:15 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 85272-08 for ; Tue, 20 Jul 2004 16:39:15 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 526E5152E3; Tue, 20 Jul 2004 16:39:15 +0800 (CST) Message-Id: <20040720083915.526E5152E3@mail.dragon2.net> Date: Tue, 20 Jul 2004 16:39:15 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69332: [MAINTAINER] x11-toolkits/Gtk2: update to 1.043 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 08:40:18 -0000 >Number: 69332 >Category: ports >Synopsis: [MAINTAINER] x11-toolkits/Gtk2: update to 1.043 >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 Jul 20 08:40:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.043 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Gtk2-1.043.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/p5-Gtk2/Makefile /home/clsung/p5-Gtk2/Makefile --- /usr/ports/x11-toolkits/p5-Gtk2/Makefile Tue Apr 20 21:13:58 2004 +++ /home/clsung/p5-Gtk2/Makefile Tue Jul 20 09:36:07 2004 @@ -6,7 +6,7 @@ # PORTNAME= Gtk2 -PORTVERSION= 1.042 +PORTVERSION= 1.043 PORTREVISION= 0 CATEGORIES= x11-toolkits lang perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:S/$/:cpan/} \ diff -ruN --exclude=CVS /usr/ports/x11-toolkits/p5-Gtk2/distinfo /home/clsung/p5-Gtk2/distinfo --- /usr/ports/x11-toolkits/p5-Gtk2/distinfo Tue Apr 20 21:13:58 2004 +++ /home/clsung/p5-Gtk2/distinfo Tue Jul 20 09:36:13 2004 @@ -1,2 +1,4 @@ -MD5 (Gtk2-1.042.tar.gz) = 2e53d0ed55a6a0aef5db701c16636a37 -SIZE (Gtk2-1.042.tar.gz) = 526214 +MD5 (Gtk2-1.043.tar.gz) = 76567871f113bb2040d204fe2af49cfc +SIZE (Gtk2-1.043.tar.gz) = 527192 +MD5 (Gtk2-1.043.tar.gz) = 76567871f113bb2040d204fe2af49cfc +SIZE (Gtk2-1.043.tar.gz) = 527192 --- p5-Gtk2-1.043.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08: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 B5ED516A4CE for ; Tue, 20 Jul 2004 08:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFA1943D76 for ; Tue, 20 Jul 2004 08:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K8eLxm013447 for ; Tue, 20 Jul 2004 08:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8eLSu013434; Tue, 20 Jul 2004 08:40:21 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 08:40:21 GMT Message-Id: <200407200840.i6K8eLSu013434@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ying-Chieh Liao Subject: Re: ports/69330: [ maintainer ] astro/xplanet: update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ying-Chieh Liao List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 08:40:21 -0000 The following reply was made to PR ports/69330; it has been noted by GNATS. From: Ying-Chieh Liao To: Roman Bogorodskiy Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/69330: [ maintainer ] astro/xplanet: update to 1.1.0 Date: Tue, 20 Jul 2004 16:37:45 +0800 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 20, 2004 at 12:11:43 +0400, Roman Bogorodskiy wrote: > -# Install the list of FreeBSD sites & committers locations from astro/xe= arth > +.if !defined(WITHOUT_FREETYPE) > +.if !defined(WITHOUT_PANGO) > +.if !defined(WITHOUT_GIF) > +.if !defined(WITHOUT_JPEG) > +.if !defined(WITHOUT_PNG) > +.if !defined(WITH_TIFF) Do you consider utilizing OPTIONS ? --=20 char*p=3D"char*p=3D%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,= 34);} -- Anonymous --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/NnZrMYBZRHAI4IRAsblAKCNga5qvxXf4XcspDHSvvr74L7aPACdFWi7 lVWYFU1SVNhdJEzD6ZKr1kY= =gD+u -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08: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 8507316A4D6 for ; Tue, 20 Jul 2004 08:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 716CF43D67 for ; Tue, 20 Jul 2004 08:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K8eMHd013467 for ; Tue, 20 Jul 2004 08:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8eMNT013466; Tue, 20 Jul 2004 08:40:22 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 08:40:22 GMT Resent-Message-Id: <200407200840.i6K8eMNT013466@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Udo Schweigert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B29816A4CE for ; Tue, 20 Jul 2004 08:40:08 +0000 (GMT) Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51D1843D55 for ; Tue, 20 Jul 2004 08:40:06 +0000 (GMT) (envelope-from udo.schweigert@siemens.com) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by goliath.siemens.de (8.12.6/8.12.6) with ESMTP id i6K8e57Q016541 for ; Tue, 20 Jul 2004 10:40:05 +0200 Received: from mars.cert.siemens.com (ust.mchp.siemens.de [139.23.201.17]) by mail3.siemens.de (8.11.7/8.11.7) with ESMTP id i6K8e4309013 for ; Tue, 20 Jul 2004 10:40:04 +0200 (MEST) Received: from alaska.cert.siemens.com (reims.mchp.siemens.de [139.23.202.134]) mail/cert.mc.pre,v 1.61 2004/06/20 16:46:46 mailadm Exp $) with ESMTP id i6K8e4gB022439 for ; Tue, 20 Jul 2004 10:40:04 +0200 (CEST) Received: from alaska.cert.siemens.com (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.17 2004/05/08 20:26:28 ust Exp $) with ESMTP id i6K8e3SV058413 for ; Tue, 20 Jul 2004 10:40:03 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.com) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id i6K8e38P040739; Tue, 20 Jul 2004 10:40:03 +0200 (CEST) (envelope-from ust) Message-Id: <200407200840.i6K8e38P040739@alaska.cert.siemens.com> Date: Tue, 20 Jul 2004 10:40:03 +0200 (CEST) From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Udo Schweigert List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 08:40:22 -0000 >Number: 69333 >Category: ports >Synopsis: maintainer-update of security/nessus-* >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 Jul 20 08:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Udo Schweigert >Release: FreeBSD 4.9-STABLE i386 >Organization: >Environment: >Description: Maintainer-update of the security/nessus-* ports: - Upgrade to nessus version 2.0.11 Committer: file removed (cvs rm) files/extra-patch-3com-hub-amd64 >How-To-Repeat: >Fix: diff -ru /usr/ports/security/nessus/Makefile nessus/Makefile --- /usr/ports/security/nessus/Makefile Mon May 3 06:08:35 2004 +++ nessus/Makefile Tue Jul 20 08:43:55 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.11 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus/distinfo nessus/distinfo --- /usr/ports/security/nessus/distinfo Thu Apr 1 06:08:31 2004 +++ nessus/distinfo Tue Jul 20 08:44:18 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-core-2.0.10a.tar.gz) = bd9d62375adc5d6b9e38879a8cee108d -SIZE (nessus/nessus-core-2.0.10a.tar.gz) = 649493 +MD5 (nessus/nessus-core-2.0.11.tar.gz) = d7c3e2938f0f281acc7b3d837ae2e63f +SIZE (nessus/nessus-core-2.0.11.tar.gz) = 649252 diff -ru /usr/ports/security/nessus-libnasl/Makefile nessus-libnasl/Makefile --- /usr/ports/security/nessus-libnasl/Makefile Sun Apr 11 06:08:54 2004 +++ nessus-libnasl/Makefile Tue Jul 20 08:35:59 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus-libnasl -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.11 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libnasl/distinfo nessus-libnasl/distinfo --- /usr/ports/security/nessus-libnasl/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-libnasl/distinfo Tue Jul 20 08:36:19 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/libnasl-2.0.10a.tar.gz) = 59e0c0ed0fbe1fcf35cdfe004e32b37f -SIZE (nessus/libnasl-2.0.10a.tar.gz) = 343047 +MD5 (nessus/libnasl-2.0.11.tar.gz) = 0e6e1e53c799cd9915135398200f9097 +SIZE (nessus/libnasl-2.0.11.tar.gz) = 343145 diff -ru /usr/ports/security/nessus-libraries/Makefile nessus-libraries/Makefile --- /usr/ports/security/nessus-libraries/Makefile Sun Apr 11 06:08:54 2004 +++ nessus-libraries/Makefile Tue Jul 20 08:30:01 2004 @@ -9,8 +9,7 @@ # client. PORTNAME= nessus-libraries -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.11 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libraries/distinfo nessus-libraries/distinfo --- /usr/ports/security/nessus-libraries/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-libraries/distinfo Tue Jul 20 08:30:36 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-libraries-2.0.10a.tar.gz) = b0c1f429792b7517197bdeadb5f3ecb9 -SIZE (nessus/nessus-libraries-2.0.10a.tar.gz) = 418370 +MD5 (nessus/nessus-libraries-2.0.11.tar.gz) = e1e350247b2096e5e5491eb3183e43e5 +SIZE (nessus/nessus-libraries-2.0.11.tar.gz) = 418922 diff -ru /usr/ports/security/nessus-plugins/Makefile nessus-plugins/Makefile --- /usr/ports/security/nessus-plugins/Makefile Mon May 3 06:08:35 2004 +++ nessus-plugins/Makefile Tue Jul 20 08:56:16 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus-plugins -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.11 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ @@ -35,15 +34,6 @@ MAN8= nessus-update-plugins.8 .include - -.if ${ARCH} == "amd64" -PLIST_SUB+= AMD="@comment " -pre-configure: - ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-3com-hub-amd64 -.else -PLIST_SUB+= AMD="" -BUILD_DEPENDS+= libnet-config:${PORTSDIR}/net/libnet -.endif post-install: @${ECHO} "================================================================================" diff -ru /usr/ports/security/nessus-plugins/distinfo nessus-plugins/distinfo --- /usr/ports/security/nessus-plugins/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-plugins/distinfo Tue Jul 20 08:47:12 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-plugins-2.0.10a.tar.gz) = dda0829b6a70086edcec2c5000d06a21 -SIZE (nessus/nessus-plugins-2.0.10a.tar.gz) = 1443420 +MD5 (nessus/nessus-plugins-2.0.11.tar.gz) = 65419f216a8e752ddf3454abcde35876 +SIZE (nessus/nessus-plugins-2.0.11.tar.gz) = 1761035 diff -ru /usr/ports/security/nessus-plugins/files/extra-patch-3com-hub-amd64 nessus-plugins/files/extra-patch-3com-hub-amd64 --- /usr/ports/security/nessus-plugins/files/extra-patch-3com-hub-amd64 Sun May 2 20:18:08 2004 +++ nessus-plugins/files/extra-patch-3com-hub-amd64 Thu Jan 1 01:00:00 1970 @@ -1,18 +0,0 @@ ---- plugins/make_world.orig Sun Jun 9 13:07:06 2002 -+++ plugins/make_world Wed Apr 28 17:03:30 2004 -@@ -15,14 +15,7 @@ - do if [ -d $i -a $i != CVS ]; then - if [ "$i" = "3com_hub" ]; - then -- libnet-config && { -- cd $i -- ${MAKE:-make} $MAKEFLAG $1 -- if [ $? -ne 0 ];then -- BADPLUGINS="$BADPLUGINS $i" -- fi -- cd .. -- } -+ BADPLUGINS="$BADPLUGINS $i"; - else - cd $i - ${MAKE:-make} $MAKEFLAG $1 diff -ru /usr/ports/security/nessus-plugins/pkg-plist nessus-plugins/pkg-plist --- /usr/ports/security/nessus-plugins/pkg-plist Mon May 3 06:08:35 2004 +++ nessus-plugins/pkg-plist Tue Jul 20 08:52:35 2004 @@ -1,8 +1,9 @@ bin/nessus-build lib/nessus/plugins/12planet_chat_server_path_disclosure.nasl lib/nessus/plugins/12planet_chat_server_plaintext_password.nasl +lib/nessus/plugins/12planet_chat_server_xss.nasl lib/nessus/plugins/3com_config_disclosure.nasl -%%AMD%%lib/nessus/plugins/3com_hub.nes +lib/nessus/plugins/3com_nbx_voip_netset_detection.nasl lib/nessus/plugins/3com_ras_crash.nasl lib/nessus/plugins/3com_switches.nasl lib/nessus/plugins/404_path_disclosure.nasl @@ -42,12 +43,15 @@ lib/nessus/plugins/CSCdx54675.nasl lib/nessus/plugins/CSCdx92043.nasl lib/nessus/plugins/CSCdy03429.nasl +lib/nessus/plugins/CSCdy15598.nasl lib/nessus/plugins/CSCdy26428.nasl lib/nessus/plugins/CSCdy38035.nasl lib/nessus/plugins/CSCdz39284.nasl lib/nessus/plugins/CSCdz60229.nasl lib/nessus/plugins/CSCea42030.nasl lib/nessus/plugins/CSCea77143.nasl +lib/nessus/plugins/CSCec42751.nasl +lib/nessus/plugins/CSCed30113.nasl lib/nessus/plugins/ColdFusion.nasl lib/nessus/plugins/ColdFusion_path_disclosure.nasl lib/nessus/plugins/CuteNews_code_injection.nasl @@ -120,12 +124,14 @@ lib/nessus/plugins/SimpleBBS_users_disclosure.nasl lib/nessus/plugins/TLD_wildcard.nasl lib/nessus/plugins/TelSrv_DoS.nasl +lib/nessus/plugins/W32.Sasser.Worm.nasl lib/nessus/plugins/WebSite.nasl lib/nessus/plugins/X.nasl lib/nessus/plugins/Xeneo_Web_Server_2.2.9.0_DoS.nasl lib/nessus/plugins/Xerver_DoS.nasl lib/nessus/plugins/a1stats.nasl lib/nessus/plugins/aardvark_topsites_multiple.nasl +lib/nessus/plugins/aborior_cmd_exec.nasl lib/nessus/plugins/abyss_dos.nasl lib/nessus/plugins/abyss_overflow.nasl lib/nessus/plugins/acc.nasl @@ -157,6 +163,7 @@ lib/nessus/plugins/account_root_rootkit1.nasl lib/nessus/plugins/account_root_rootkit1bis.nasl lib/nessus/plugins/account_root_rootkit2.nasl +lib/nessus/plugins/account_swift_swift.nasl lib/nessus/plugins/account_sync.nasl lib/nessus/plugins/account_system_manager.nasl lib/nessus/plugins/account_toor.nasl @@ -171,6 +178,7 @@ lib/nessus/plugins/admentor_login_flaw.nasl lib/nessus/plugins/advanced_poll_phpinfo.nasl lib/nessus/plugins/afs_version.nasl +lib/nessus/plugins/agobot_fo.nasl lib/nessus/plugins/agora.nasl lib/nessus/plugins/airport_plaintext_credentials.nasl lib/nessus/plugins/aix_ftpd.nasl @@ -213,34 +221,43 @@ lib/nessus/plugins/apache_2_0_46.nasl lib/nessus/plugins/apache_2_0_47.nasl lib/nessus/plugins/apache_2_0_48.nasl +lib/nessus/plugins/apache_2_0_49_mod_ssl.nasl lib/nessus/plugins/apache_Tomcat_DOS_Device_XSS.nasl lib/nessus/plugins/apache_Tomcat_Servlet_XSS.nasl lib/nessus/plugins/apache_Tomcat_TroubleShooter.nasl lib/nessus/plugins/apache_auth_sql_insertion.nasl lib/nessus/plugins/apache_bat_exec.nasl lib/nessus/plugins/apache_chunked_encoding.nasl +lib/nessus/plugins/apache_conn_block.nasl lib/nessus/plugins/apache_dir_listing.nasl +lib/nessus/plugins/apache_input_header_folding_dos.nasl +lib/nessus/plugins/apache_log_injection.nasl lib/nessus/plugins/apache_server_info.nasl lib/nessus/plugins/apache_server_status.nasl lib/nessus/plugins/apache_slash.nasl lib/nessus/plugins/apache_source_asp.nasl +lib/nessus/plugins/apache_ssl_certificate_forging.nasl lib/nessus/plugins/apache_ssl_overflow.nasl lib/nessus/plugins/apache_username.nasl lib/nessus/plugins/apache_win32_devname.nasl lib/nessus/plugins/apache_win32_dir_trav.nasl lib/nessus/plugins/apache_win32_read_files.nasl +lib/nessus/plugins/apc_smartslot_factory_password.nasl lib/nessus/plugins/apcnisd_detect.nasl lib/nessus/plugins/apcupsd_overflows.nasl lib/nessus/plugins/appsocket_DoS.nasl +lib/nessus/plugins/aprox_portal_file_disclosure.nasl lib/nessus/plugins/arcserve_hidden_share.nasl lib/nessus/plugins/argosoft_dos.nasl lib/nessus/plugins/argosoft_multiple_flaws.nasl lib/nessus/plugins/args_bat.nasl lib/nessus/plugins/arkeia.nasl +lib/nessus/plugins/artmedic_links5_file_inclusion.nasl lib/nessus/plugins/ascend_kill.nasl lib/nessus/plugins/asip-status.nasl lib/nessus/plugins/asp_net_css.nasl lib/nessus/plugins/asp_net_path_disclosure.nasl +lib/nessus/plugins/asp_portal_xss.nasl lib/nessus/plugins/asp_source_data.nasl lib/nessus/plugins/asp_source_dot.nasl lib/nessus/plugins/asp_source_space.nasl @@ -267,6 +284,7 @@ lib/nessus/plugins/badblue_null_byte.nasl lib/nessus/plugins/badblue_remote_administrative_access.nasl lib/nessus/plugins/badblue_remote_administrative_access2.nasl +lib/nessus/plugins/bagel_b_detection.nasl lib/nessus/plugins/bagle_remover.nasl lib/nessus/plugins/bakfiles.nasl lib/nessus/plugins/bandmin_xss.nasl @@ -279,6 +297,7 @@ lib/nessus/plugins/bb-hist.nasl lib/nessus/plugins/bb-hostsvc.nasl lib/nessus/plugins/bboard.nasl +lib/nessus/plugins/bea_password.nasl lib/nessus/plugins/benhur_ftp_firewall.nasl lib/nessus/plugins/betterinternet_detection.nasl lib/nessus/plugins/bftelnet.nasl @@ -307,6 +326,7 @@ lib/nessus/plugins/bizdb1_search.nasl lib/nessus/plugins/biztalk_flaws.nasl lib/nessus/plugins/blackice_dos.nasl +lib/nessus/plugins/blackice_version_checker.nasl lib/nessus/plugins/blackmoon_ftp_users_database.nasl lib/nessus/plugins/blackmoon_ftp_users_enum.nasl lib/nessus/plugins/blnews_code_injection.nasl @@ -314,6 +334,7 @@ lib/nessus/plugins/bonsai_flaws.nasl lib/nessus/plugins/bonzi_buddy.nasl lib/nessus/plugins/bootparamd.nasl +lib/nessus/plugins/bootparamd_get_nis_domain.nasl lib/nessus/plugins/boozt_admin_overflow.nasl lib/nessus/plugins/brilliant_digital_detection.nasl lib/nessus/plugins/broadvision_path_disclosure.nasl @@ -325,6 +346,7 @@ lib/nessus/plugins/bugbear_b.nasl lib/nessus/plugins/bugbear_b_1080.nasl lib/nessus/plugins/bugzilla_detect.nasl +lib/nessus/plugins/bugzilla_multiple_vulns.nasl lib/nessus/plugins/bugzilla_sql_vulns.nasl lib/nessus/plugins/bugzilla_vulns.nasl lib/nessus/plugins/bugzilla_xss_and_tmp_files.nasl @@ -339,6 +361,7 @@ lib/nessus/plugins/campas.nasl lib/nessus/plugins/canna_overflow.nasl lib/nessus/plugins/carello.nasl +lib/nessus/plugins/cart32_xss.nasl lib/nessus/plugins/cassandra_nntp_dos.nasl lib/nessus/plugins/cayman_any_username.nasl lib/nessus/plugins/cc_guestbook.nasl @@ -350,6 +373,7 @@ lib/nessus/plugins/cfinger_format_bug.nasl lib/nessus/plugins/cfinger_search.nasl lib/nessus/plugins/cfinger_version.nasl +lib/nessus/plugins/cfwebstore_sql_injection.nasl lib/nessus/plugins/cgibin_browsable.nasl lib/nessus/plugins/cgibin_in_kb.nasl lib/nessus/plugins/cgicso_command_execution.nasl @@ -364,7 +388,9 @@ lib/nessus/plugins/chargen.nasl lib/nessus/plugins/check_ports.nasl lib/nessus/plugins/checkpoint.nasl +lib/nessus/plugins/checkpoint_format.nasl lib/nessus/plugins/checkpoint_open_web_admin.nasl +lib/nessus/plugins/chora_remote_code_execution.nasl lib/nessus/plugins/cifs445.nasl lib/nessus/plugins/cisco-view-source-dos.nasl lib/nessus/plugins/cisco_675.nasl @@ -387,6 +413,7 @@ lib/nessus/plugins/citrix.nasl lib/nessus/plugins/citrix_find.nasl lib/nessus/plugins/citrix_redirect.nasl +lib/nessus/plugins/citrix_web_xss.nasl lib/nessus/plugins/clarkconnectd.nasl lib/nessus/plugins/cleartrust_xss.nasl lib/nessus/plugins/cmail_overflow.nasl @@ -395,6 +422,7 @@ lib/nessus/plugins/cobalt_web_admin_server.nasl lib/nessus/plugins/codered_x.nasl lib/nessus/plugins/cold_fusion_admin_dos.nasl +lib/nessus/plugins/comersus_xss.nasl lib/nessus/plugins/commerce_cgi.nasl lib/nessus/plugins/communigatepro_overflow.nasl lib/nessus/plugins/communigatepro_referer_field.nasl @@ -407,13 +435,18 @@ lib/nessus/plugins/count_cgi.nasl lib/nessus/plugins/counter.nasl lib/nessus/plugins/counter_php_file_overwrite.nasl +lib/nessus/plugins/courier_imap_overflows.nasl +lib/nessus/plugins/courier_overflows.nasl lib/nessus/plugins/cp-firewall-auth.nasl lib/nessus/plugins/cp-firewall-webauth.nasl lib/nessus/plugins/cp_syslog_overflow.nasl lib/nessus/plugins/cpanel_cmd_exec.nasl +lib/nessus/plugins/cpanel_login_cmd_exec.nasl lib/nessus/plugins/crlinux_file_reading.nasl +lib/nessus/plugins/crobftp_buffer_overflow.nasl lib/nessus/plugins/crobftp_format_string.nasl lib/nessus/plugins/cross_site_scripting.nasl +lib/nessus/plugins/crystal_reports_directory_traversal.nasl lib/nessus/plugins/csSearch_cgi.nasl lib/nessus/plugins/csm_helo.nasl lib/nessus/plugins/csnews.nasl @@ -421,11 +454,15 @@ lib/nessus/plugins/cups_vulns.nasl lib/nessus/plugins/cuteftp_flaws.nasl lib/nessus/plugins/cutenews_phpinfo.nasl +lib/nessus/plugins/cutenews_show_news_xss.nasl lib/nessus/plugins/cvs_detect.nasl lib/nessus/plugins/cvs_dir_create.nasl lib/nessus/plugins/cvs_double_free.nasl lib/nessus/plugins/cvs_in_www.nasl +lib/nessus/plugins/cvs_malformed_entry_lines_flaw.nasl +lib/nessus/plugins/cvs_piped_co.nasl lib/nessus/plugins/cvs_pserver_cmd_exec.nasl +lib/nessus/plugins/cvs_pserver_heap_overflow.nasl lib/nessus/plugins/cvs_public_pserver.nasl lib/nessus/plugins/cvsweb_shell.nasl lib/nessus/plugins/cvsweb_version.nasl @@ -433,6 +470,7 @@ lib/nessus/plugins/cydoor_detection.nasl lib/nessus/plugins/cyrus_imap_prelogin_overflow.nasl lib/nessus/plugins/cyrus_imsp_overflow.nasl +lib/nessus/plugins/dabber_worm.nasl lib/nessus/plugins/dame.nasl lib/nessus/plugins/dameware_mini_remote_control_disclosure.nasl lib/nessus/plugins/dangerous_cgis.nasl @@ -454,7 +492,9 @@ lib/nessus/plugins/ddicgi.nasl lib/nessus/plugins/deep_throat.nasl lib/nessus/plugins/default_account.inc +lib/nessus/plugins/defaultnavcheck.nasl lib/nessus/plugins/delegate_overflow.nasl +lib/nessus/plugins/dell_openmanage.nasl lib/nessus/plugins/deltaups_detect.nasl lib/nessus/plugins/desktop_orbiter_detect.nasl lib/nessus/plugins/desktop_orbiter_reboot.nasl @@ -463,8 +503,10 @@ lib/nessus/plugins/directory_manager.nasl lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl +lib/nessus/plugins/distcc_detection.nasl lib/nessus/plugins/dlink_router_overflow.nasl lib/nessus/plugins/dmail_overflow.nasl +lib/nessus/plugins/dns_cache_sniffing.nasl lib/nessus/plugins/dns_fingerprint.nasl lib/nessus/plugins/dns_server.nasl lib/nessus/plugins/dns_xfer.nasl @@ -479,11 +521,14 @@ lib/nessus/plugins/domino_http_dos.nasl lib/nessus/plugins/domino_traversal.nasl lib/nessus/plugins/domino_xss.nasl +lib/nessus/plugins/dont_print_on_printers.nasl lib/nessus/plugins/dont_scan_printers.nasl +lib/nessus/plugins/download_ject.nasl lib/nessus/plugins/downloadware_detection.nasl lib/nessus/plugins/dragandzip_overflow.nasl lib/nessus/plugins/dragon_ftp.nasl lib/nessus/plugins/dragon_telnet.nasl +lib/nessus/plugins/dreamftp_format_string.nasl lib/nessus/plugins/drweb_overflow.nasl lib/nessus/plugins/dssagent_detection.nasl lib/nessus/plugins/dtspcd.nasl @@ -493,11 +538,15 @@ lib/nessus/plugins/dwhttp_format_string.nasl lib/nessus/plugins/e107_db_dump.nasl lib/nessus/plugins/eDonkey_detect.nasl +lib/nessus/plugins/eMuleWebServer_detect.nasl lib/nessus/plugins/eXtremail_format_strings.nasl lib/nessus/plugins/easydynamicpages_code_injection.nasl lib/nessus/plugins/ebola_overflow.nasl lib/nessus/plugins/ecartis_hidden_username.nasl +lib/nessus/plugins/ece_flag.nasl lib/nessus/plugins/echo.nasl +lib/nessus/plugins/ecommerce_corp_sql_injection.nasl +lib/nessus/plugins/edimax_ap_guest.nasl lib/nessus/plugins/eftp_bufferoverflow.nasl lib/nessus/plugins/eftp_directory_traversal.nasl lib/nessus/plugins/eftp_dos.nasl @@ -507,6 +556,7 @@ lib/nessus/plugins/eldapo_plaintext_passwords.nasl lib/nessus/plugins/empower_path.nasl lib/nessus/plugins/emule_dos.nasl +lib/nessus/plugins/emumail_multiple_vulns.nasl lib/nessus/plugins/epolicy_orchestrator_format_string.nasl lib/nessus/plugins/epolicy_orchestrator_multiple_issues.nasl lib/nessus/plugins/eserv.nasl @@ -522,6 +572,7 @@ lib/nessus/plugins/exchange_public_folders_information_leak.nasl lib/nessus/plugins/exchange_xexch50_overflow.nasl lib/nessus/plugins/exim_heap_overflow.nasl +lib/nessus/plugins/exim_mult_overflow.nasl lib/nessus/plugins/ezcontents_code_execution.nasl lib/nessus/plugins/ezpublish_config_disclosure.nasl lib/nessus/plugins/ezpublish_dir_xss.nasl @@ -545,11 +596,14 @@ lib/nessus/plugins/finger_freebsd.nasl lib/nessus/plugins/finger_redirection.nasl lib/nessus/plugins/finger_solaris_disclosure.nasl +lib/nessus/plugins/finjan_cmd_restart.nasl +lib/nessus/plugins/firebird_bo.nasl lib/nessus/plugins/firewall1_dos.nasl lib/nessus/plugins/flash_ftp_server_directory_traversal.nasl lib/nessus/plugins/flash_player_local_files.nasl lib/nessus/plugins/flash_player_overflows.nasl lib/nessus/plugins/flashfxp_overflow.nasl +lib/nessus/plugins/flexwatch_auth_bypass.nasl lib/nessus/plugins/formhandler.nasl lib/nessus/plugins/formmail_pl.nasl lib/nessus/plugins/formmail_version_disclosure.nasl @@ -557,6 +611,120 @@ lib/nessus/plugins/foxweb_dll.nasl lib/nessus/plugins/fp_fpcount.nasl lib/nessus/plugins/fp_htimage.nasl +lib/nessus/plugins/fqdn.nasl +lib/nessus/plugins/freebsd_DarwinStreamingServer_413g.nasl +lib/nessus/plugins/freebsd_anubis_362_1.nasl +lib/nessus/plugins/freebsd_apache+ssl_1329153.nasl +lib/nessus/plugins/freebsd_apache_2048_3.nasl +lib/nessus/plugins/freebsd_bind8_neg_poison.nasl +lib/nessus/plugins/freebsd_buffer_cache.nasl +lib/nessus/plugins/freebsd_clamav_065_7.nasl +lib/nessus/plugins/freebsd_contenttype_xss.nasl +lib/nessus/plugins/freebsd_cvs_heap_overflow.nasl +lib/nessus/plugins/freebsd_cvs_path_validation.nasl +lib/nessus/plugins/freebsd_cyrus_2017.nasl +lib/nessus/plugins/freebsd_cyrus_imspd_16a5.nasl +lib/nessus/plugins/freebsd_dhcp3_301r14.nasl +lib/nessus/plugins/freebsd_ecartis_100s20030814_1.nasl +lib/nessus/plugins/freebsd_emil_21b9.nasl +lib/nessus/plugins/freebsd_ethereal_0103.nasl +lib/nessus/plugins/freebsd_ethereal_0104.nasl +lib/nessus/plugins/freebsd_ethereal_0105.nasl +lib/nessus/plugins/freebsd_exim_433_20_1.nasl +lib/nessus/plugins/freebsd_ezbounce_104_a_1.nasl +lib/nessus/plugins/freebsd_fetchmail_620.nasl +lib/nessus/plugins/freebsd_fetchmail_625.nasl +lib/nessus/plugins/freebsd_fsp_28119.nasl +lib/nessus/plugins/freebsd_gaim_076.nasl +lib/nessus/plugins/freebsd_gallery_1432.nasl +lib/nessus/plugins/freebsd_gift_087.nasl +lib/nessus/plugins/freebsd_gnats_311319.nasl +lib/nessus/plugins/freebsd_gnupg_123_4.nasl +lib/nessus/plugins/freebsd_h323_bugs.nasl +lib/nessus/plugins/freebsd_heimdal_061.nasl +lib/nessus/plugins/freebsd_heimdal_061_1.nasl +lib/nessus/plugins/freebsd_hsftp_114.nasl +lib/nessus/plugins/freebsd_icecast_1312.nasl +lib/nessus/plugins/freebsd_ident2_104.nasl +lib/nessus/plugins/freebsd_inn_241.nasl +lib/nessus/plugins/freebsd_jail_route.nasl +lib/nessus/plugins/freebsd_jailed_processes.nasl +lib/nessus/plugins/freebsd_kdepim_314_1.nasl +lib/nessus/plugins/freebsd_lbreakout2_222_1.nasl +lib/nessus/plugins/freebsd_leafnode_1947.nasl +lib/nessus/plugins/freebsd_lftp_2610.nasl +lib/nessus/plugins/freebsd_lha_114_4.nasl +lib/nessus/plugins/freebsd_libmcrypt_256.nasl +lib/nessus/plugins/freebsd_libpng.nasl +lib/nessus/plugins/freebsd_libtool_temp_file.nasl +lib/nessus/plugins/freebsd_libxine_10r3_5.nasl +lib/nessus/plugins/freebsd_linux.nasl +lib/nessus/plugins/freebsd_mailman_21.nasl +lib/nessus/plugins/freebsd_mailman_211.nasl +lib/nessus/plugins/freebsd_mailman_213.nasl +lib/nessus/plugins/freebsd_mailman_214.nasl +lib/nessus/plugins/freebsd_mathopd_14p2.nasl +lib/nessus/plugins/freebsd_mc_460_10.nasl +lib/nessus/plugins/freebsd_mc_460_9.nasl +lib/nessus/plugins/freebsd_metamail_27_2.nasl +lib/nessus/plugins/freebsd_mksnap_ffs.nasl +lib/nessus/plugins/freebsd_mnogosearch_32.nasl +lib/nessus/plugins/freebsd_mod_python_2710.nasl +lib/nessus/plugins/freebsd_modsecurity_175.nasl +lib/nessus/plugins/freebsd_moinmoin_122.nasl +lib/nessus/plugins/freebsd_mpg123_059_12.nasl +lib/nessus/plugins/freebsd_mplayer_0921.nasl +lib/nessus/plugins/freebsd_mutt_142.nasl +lib/nessus/plugins/freebsd_mysql_client_4020.nasl +lib/nessus/plugins/freebsd_nap_145.nasl +lib/nessus/plugins/freebsd_neon_0245.nasl +lib/nessus/plugins/freebsd_neon_0245_1.nasl +lib/nessus/plugins/freebsd_oftpd_037.nasl +lib/nessus/plugins/freebsd_openssl_changecipherspec.nasl +lib/nessus/plugins/freebsd_outofseq_tcp_packets_dos.nasl +lib/nessus/plugins/freebsd_package.inc +lib/nessus/plugins/freebsd_pam_smb_199_3.nasl +lib/nessus/plugins/freebsd_pavuk_0928_5.nasl +lib/nessus/plugins/freebsd_phpBB_208.nasl +lib/nessus/plugins/freebsd_phpBB_208_1.nasl +lib/nessus/plugins/freebsd_phpBB_208_2.nasl +lib/nessus/plugins/freebsd_phpMyAdmin_254.nasl +lib/nessus/plugins/freebsd_phpMyAdmin_2571.nasl +lib/nessus/plugins/freebsd_php_438.nasl +lib/nessus/plugins/freebsd_phpnuke_69.nasl +lib/nessus/plugins/freebsd_phpnuke_73.nasl +lib/nessus/plugins/freebsd_pine_421.nasl +lib/nessus/plugins/freebsd_pine_444.nasl +lib/nessus/plugins/freebsd_pine_450.nasl +lib/nessus/plugins/freebsd_pine_458.nasl +lib/nessus/plugins/freebsd_pound_16.nasl +lib/nessus/plugins/freebsd_proftpd_1210_r1.nasl +lib/nessus/plugins/freebsd_proftpd_128_1.nasl +lib/nessus/plugins/freebsd_qpopper_253_1.nasl +lib/nessus/plugins/freebsd_racoon_20040116a.nasl +lib/nessus/plugins/freebsd_racoon_20040407b.nasl +lib/nessus/plugins/freebsd_rsync_257.nasl +lib/nessus/plugins/freebsd_rsync_261.nasl +lib/nessus/plugins/freebsd_samba_301_2.nasl +lib/nessus/plugins/freebsd_setiathome_308.nasl +lib/nessus/plugins/freebsd_setsockopt_521_4.nasl +lib/nessus/plugins/freebsd_shmat.nasl +lib/nessus/plugins/freebsd_squid_255.nasl +lib/nessus/plugins/freebsd_squid_255_9.nasl +lib/nessus/plugins/freebsd_ssltelnet_0131.nasl +lib/nessus/plugins/freebsd_subversion_102_1.nasl +lib/nessus/plugins/freebsd_tcpdump_381_351.nasl +lib/nessus/plugins/freebsd_uri_vulns.nasl +lib/nessus/plugins/freebsd_uudeview_0520.nasl +lib/nessus/plugins/freebsd_wuftpd_262_3.nasl +lib/nessus/plugins/freebsd_xboing_24_2.nasl +lib/nessus/plugins/freebsd_xchat_208_2.nasl +lib/nessus/plugins/freebsd_xfree86_server_430_13.nasl +lib/nessus/plugins/freebsd_xine_0923_3.nasl +lib/nessus/plugins/freebsd_xml2_266.nasl +lib/nessus/plugins/freebsd_xorgs_clients_670.nasl +lib/nessus/plugins/freebsd_zebra_093b_7.nasl +lib/nessus/plugins/freebsd_zh_cce_040.nasl lib/nessus/plugins/freecmty_detection.nasl lib/nessus/plugins/frontpage.nasl lib/nessus/plugins/frontpage_authors.nasl @@ -568,6 +736,7 @@ lib/nessus/plugins/frontpage_shtml.nasl lib/nessus/plugins/frontpage_shtml_overflow.nasl lib/nessus/plugins/frontpage_xss.nasl +lib/nessus/plugins/fsecure_ssh_pass_pol_evasion.nasl lib/nessus/plugins/fsp_detection.nasl lib/nessus/plugins/fspd_directory_traversal.nasl lib/nessus/plugins/ftgate_pro_dos.nasl @@ -593,6 +762,8 @@ lib/nessus/plugins/ftp_root.nasl lib/nessus/plugins/ftp_servu_dos.nasl lib/nessus/plugins/ftp_servu_dos2.nasl +lib/nessus/plugins/ftp_servu_mdtm_overflow.nasl +lib/nessus/plugins/ftp_servu_overflow.nasl lib/nessus/plugins/ftp_servu_path_disclosure.nasl lib/nessus/plugins/ftp_servu_traversal.nasl lib/nessus/plugins/ftp_setproctitle.nasl @@ -601,6 +772,7 @@ lib/nessus/plugins/ftp_traversal.nasl lib/nessus/plugins/ftp_w98_devname_dos.nasl lib/nessus/plugins/ftp_write_dirs.nes +lib/nessus/plugins/ftp_xlight_overflow.nasl lib/nessus/plugins/ftp_zaurus.nasl lib/nessus/plugins/ftpd_1byte_overflow.nasl lib/nessus/plugins/ftpgate.nasl @@ -608,18 +780,24 @@ lib/nessus/plugins/ftpserver_detect_type_nd_version.nasl lib/nessus/plugins/ftpvoyager_overflow.nasl lib/nessus/plugins/fw1_udp_DoS.nasl +lib/nessus/plugins/gallery_auth_bypass.nasl lib/nessus/plugins/gallery_injection.nasl lib/nessus/plugins/gallery_injection2.nasl +lib/nessus/plugins/gallery_injection3.nasl lib/nessus/plugins/gallery_xss.nasl +lib/nessus/plugins/gamespy_denial.nasl lib/nessus/plugins/gamespy_detect.nasl lib/nessus/plugins/gatecrasher.nasl lib/nessus/plugins/gator.nasl lib/nessus/plugins/gator_detection.nasl lib/nessus/plugins/gauntlet_overflow.nasl lib/nessus/plugins/geeklog_admin_access.nasl +lib/nessus/plugins/gemitel_file_inclusion.nasl lib/nessus/plugins/generic_WEB-INF.nasl lib/nessus/plugins/girlfriend.nasl lib/nessus/plugins/glimpse.nasl +lib/nessus/plugins/global_settings.inc +lib/nessus/plugins/global_settings.nasl lib/nessus/plugins/gnapster_get_file.nasl lib/nessus/plugins/gnocatan_overflow.nasl lib/nessus/plugins/gnu_cfserv.nasl @@ -636,9 +814,12 @@ lib/nessus/plugins/guestbook_tr3_passwd.nasl lib/nessus/plugins/guild_ftp.nasl lib/nessus/plugins/gupta_sqlbase_overflows.nasl +lib/nessus/plugins/h323_detection.nasl +lib/nessus/plugins/halo_detection.nasl lib/nessus/plugins/handler.nasl lib/nessus/plugins/happymall_cmd_exec.nasl lib/nessus/plugins/healthd_detect.nasl +lib/nessus/plugins/helix_dos.nasl lib/nessus/plugins/helix_overflow.nasl lib/nessus/plugins/hello_detect.nasl lib/nessus/plugins/homefree.nasl @@ -646,8 +827,10 @@ lib/nessus/plugins/horde_turba_path_disclosure.nasl lib/nessus/plugins/hosting_controller.nasl lib/nessus/plugins/hotnews_code_injection.nasl +lib/nessus/plugins/hotopentickets_unspecified_flaw.nasl lib/nessus/plugins/hotsync.nasl lib/nessus/plugins/hp_instant_toptools_dos.nasl +lib/nessus/plugins/hp_jadm_vuln.nasl lib/nessus/plugins/hp_jetdirect_vulns.nasl lib/nessus/plugins/hp_printer_display.nasl lib/nessus/plugins/hp_remote_print.nasl @@ -662,6 +845,7 @@ lib/nessus/plugins/htsearch_config_switch.nasl lib/nessus/plugins/htsearch_location.nasl lib/nessus/plugins/http-rpc-epmap.nasl +lib/nessus/plugins/http_asn1_decoding.nasl lib/nessus/plugins/http_func.inc lib/nessus/plugins/http_ids_evasion.nasl lib/nessus/plugins/http_keepalive.inc @@ -748,9 +932,12 @@ lib/nessus/plugins/imail_imonitor_overflow.nasl lib/nessus/plugins/imap4_banner.nasl lib/nessus/plugins/imap4_rev1_overflow.nasl +lib/nessus/plugins/imap_arbitrary_file_retrieval.nasl lib/nessus/plugins/imap_body_overflow.nasl lib/nessus/plugins/imap_overflow.nasl lib/nessus/plugins/imate_overflow.nasl +lib/nessus/plugins/imp_content_type_xss.nasl +lib/nessus/plugins/imp_detect.nasl lib/nessus/plugins/imp_mime_viewer_html_xss.nasl lib/nessus/plugins/imp_session_hijacking.nasl lib/nessus/plugins/imp_sql_injection.nasl @@ -759,6 +946,7 @@ lib/nessus/plugins/info2www.nasl lib/nessus/plugins/informix_traversal.nasl lib/nessus/plugins/infosrch.nasl +lib/nessus/plugins/inktomi_path_disclosure.nasl lib/nessus/plugins/inn.nasl lib/nessus/plugins/inn_control_message_overflow.nasl lib/nessus/plugins/innd_overflow.nasl @@ -768,8 +956,11 @@ lib/nessus/plugins/interscan_vw_cgi.nasl lib/nessus/plugins/invision_power_board.nasl lib/nessus/plugins/invision_power_board_calendar_sql_injection.nasl +lib/nessus/plugins/invision_power_board_ssi_sql_injection.nasl +lib/nessus/plugins/invision_power_board_xss.nasl lib/nessus/plugins/invision_power_top_site_sql_injection.nasl lib/nessus/plugins/ion_p.nasl +lib/nessus/plugins/ipb_sql_disclosure.nasl lib/nessus/plugins/ipinsight_detection.nasl lib/nessus/plugins/iplanet_app_server_detection.nasl lib/nessus/plugins/iplanet_app_server_overflow.nasl @@ -793,17 +984,25 @@ lib/nessus/plugins/iws_shtml.nasl lib/nessus/plugins/ixmail_arbitrary_file_upload.nasl lib/nessus/plugins/ixmail_sql_injection.nasl +lib/nessus/plugins/java_jre_jdk_dos.nasl +lib/nessus/plugins/java_source_retrieval.nasl lib/nessus/plugins/jboss_source.nasl +lib/nessus/plugins/jbrowser_multiple_vulns.nasl +lib/nessus/plugins/jelsoft_vbulletin_xss.nasl +lib/nessus/plugins/jetroot.nasl lib/nessus/plugins/jeus_url_xss.nasl +lib/nessus/plugins/jigsaw_2_2_4.nasl lib/nessus/plugins/jigsaw_msdos_dev_DoS.nasl lib/nessus/plugins/jj.nasl lib/nessus/plugins/jmf_privs_escalation.nasl lib/nessus/plugins/jolt.nasl lib/nessus/plugins/jolt2.nasl lib/nessus/plugins/jordan_telnet_overflow.nasl +lib/nessus/plugins/jportal_sql_injection.nasl lib/nessus/plugins/jrun.nasl lib/nessus/plugins/jrun_dir_listing.nasl lib/nessus/plugins/jrun_getdir.nasl +lib/nessus/plugins/js.scob.trojan.nasl lib/nessus/plugins/jserv_execute.nasl lib/nessus/plugins/jwalk_traversal.nasl lib/nessus/plugins/kazaa_installed.nasl @@ -820,6 +1019,7 @@ lib/nessus/plugins/kietu_code_injection.nasl lib/nessus/plugins/knfs_dos.nasl lib/nessus/plugins/knowledge_builder_code_execution.nasl +lib/nessus/plugins/korgo.nasl lib/nessus/plugins/kpym_telnet_overflow.nasl lib/nessus/plugins/krb_pingpong.nasl lib/nessus/plugins/kuang2_the_virus.nasl @@ -837,15 +1037,17 @@ lib/nessus/plugins/leafnode_version.nasl lib/nessus/plugins/leapftp_overflow.nasl lib/nessus/plugins/lednews_xss.nasl +lib/nessus/plugins/leifwright_blog_cmd_execution.nasl lib/nessus/plugins/les_visiteurs.nasl lib/nessus/plugins/libgtop_daemon.nasl -lib/nessus/plugins/libwhisker_settings.nasl lib/nessus/plugins/limewire_installed.nasl lib/nessus/plugins/line_overflow.nasl lib/nessus/plugins/linksys_ap_default_password.nasl lib/nessus/plugins/linksys_dos.nasl lib/nessus/plugins/linksys_empty_GET_DoS.nasl lib/nessus/plugins/linksys_gozila_cgi_DoS.nasl +lib/nessus/plugins/linksys_next_file_file_disclosure.nasl +lib/nessus/plugins/linux26_tcpopt_dos.nasl lib/nessus/plugins/linux_tftp.nes lib/nessus/plugins/linux_zero_len_fragment.nasl lib/nessus/plugins/linuxconf_detect.nasl @@ -868,7 +1070,19 @@ lib/nessus/plugins/lpd_overflow.nasl lib/nessus/plugins/lsh_overflow.nasl lib/nessus/plugins/macos_x_directory_svc_dos.nasl +lib/nessus/plugins/macosx_SecUpd20031104.nasl +lib/nessus/plugins/macosx_SecUpd20031205.nasl +lib/nessus/plugins/macosx_SecUpd20031219.nasl +lib/nessus/plugins/macosx_SecUpd20040126.nasl +lib/nessus/plugins/macosx_SecUpd20040503.nasl +lib/nessus/plugins/macosx_SecUpd20040524.nasl +lib/nessus/plugins/macosx_SecUpd20040607.nasl +lib/nessus/plugins/macosx_multiple_vulns.nasl +lib/nessus/plugins/macosx_server_default_password.nasl +lib/nessus/plugins/macosx_version.nasl lib/nessus/plugins/magic_winmail_pop_format_string.nasl +lib/nessus/plugins/mail_asn1_decoding.nasl +lib/nessus/plugins/mailman_password_retrieval.nasl lib/nessus/plugins/mailman_webmail.nasl lib/nessus/plugins/mailmax_imap_overflows.nasl lib/nessus/plugins/mailmax_imap_overflows2.nasl @@ -879,11 +1093,13 @@ lib/nessus/plugins/mambo.nasl lib/nessus/plugins/mambo_code_injection.nasl lib/nessus/plugins/mambo_xss.nasl +lib/nessus/plugins/mambo_xss2.nasl lib/nessus/plugins/manpage_file_disclosure.nasl lib/nessus/plugins/mantis_detect.nasl lib/nessus/plugins/mantis_multiple_vulns.nasl lib/nessus/plugins/marconi_dos.nasl lib/nessus/plugins/master_index_search.nasl +lib/nessus/plugins/mcafee_installed.nasl lib/nessus/plugins/mcms_overflow.nasl lib/nessus/plugins/mdaemon.nasl lib/nessus/plugins/mdaemon_create_overflow.nasl @@ -892,6 +1108,7 @@ lib/nessus/plugins/mdaemon_webconfig.nasl lib/nessus/plugins/mdaemon_worldclient.nasl lib/nessus/plugins/mdbms_overflow.nasl +lib/nessus/plugins/mdns.nasl lib/nessus/plugins/mediahouse_statistics_server.nasl lib/nessus/plugins/mediahouse_statistics_web_server.nasl lib/nessus/plugins/mercur_auth_overflow.nasl @@ -922,16 +1139,23 @@ lib/nessus/plugins/mod_ntlm.nasl lib/nessus/plugins/mod_python_handle.nasl lib/nessus/plugins/mod_python_malformed_query.nasl +lib/nessus/plugins/mod_rootme_backdoor.nasl +lib/nessus/plugins/mod_ssl_hook_functions_format_string_vuln.nasl lib/nessus/plugins/mod_ssl_offby1.nasl lib/nessus/plugins/mod_ssl_overflow.nasl +lib/nessus/plugins/mod_ssl_uuencode_binary.nasl lib/nessus/plugins/mod_ssl_wildcard_dns_xss.nasl lib/nessus/plugins/mod_survey_sql_injection.nasl lib/nessus/plugins/monkeyweb_post_DoS.nasl lib/nessus/plugins/monkeyweb_too_big_post.nasl +lib/nessus/plugins/moodle_xss.nasl lib/nessus/plugins/mountd_overflow.nasl +lib/nessus/plugins/mozilla_firefox_code_exec.nasl lib/nessus/plugins/mpcsw_guestbook_database.nasl lib/nessus/plugins/mq_toolbar_detection.nasl lib/nessus/plugins/ms_index_server.nasl +lib/nessus/plugins/ms_invalid_cookie.nasl +lib/nessus/plugins/ms_kb835732_ssl.nasl lib/nessus/plugins/ms_siteserver_info_disclosure.nasl lib/nessus/plugins/ms_telnet_overflow.nasl lib/nessus/plugins/msadcs_dll.nasl @@ -965,12 +1189,14 @@ lib/nessus/plugins/my_little_forum_xss.nasl lib/nessus/plugins/mycio_detect.nasl lib/nessus/plugins/mycio_directory_traversal.nasl +lib/nessus/plugins/mydoom_virus.nasl lib/nessus/plugins/myguestbk_admin_access.nasl lib/nessus/plugins/myphpPageTool_code_injection.nasl lib/nessus/plugins/myphpcalendar_injection.nasl lib/nessus/plugins/myphpnuke_code_injection.nasl lib/nessus/plugins/myserver_dos.nasl lib/nessus/plugins/myserver_traversal.nasl +lib/nessus/plugins/mysql_auth_bypass_zeropass.nasl lib/nessus/plugins/mysql_bad_password.nasl lib/nessus/plugins/mysql_double_free.nasl lib/nessus/plugins/mysql_flaws.nasl @@ -981,6 +1207,7 @@ lib/nessus/plugins/nai_webshield_info.nasl lib/nessus/plugins/nai_webshield_overflow.nasl lib/nessus/plugins/napster_detect.nasl +lib/nessus/plugins/nav_installed.nasl lib/nessus/plugins/ncacn_http.nasl lib/nessus/plugins/ncase_detection.nasl lib/nessus/plugins/ncbook_cgi.nasl @@ -1000,6 +1227,7 @@ lib/nessus/plugins/netcharts_default_password.nasl lib/nessus/plugins/netcommerce_sql.nasl lib/nessus/plugins/netgear_default_password.nasl +lib/nessus/plugins/netgear_hidden_password.nasl lib/nessus/plugins/netgear_password_disclosure.nasl lib/nessus/plugins/netgear_prosafe_dos.nasl lib/nessus/plugins/netinfo_detect.nasl @@ -1016,11 +1244,15 @@ lib/nessus/plugins/netscape_imap_overflow.nasl lib/nessus/plugins/netscape_pop_auth.nasl lib/nessus/plugins/netscape_publishing_expert_psuser.nasl +lib/nessus/plugins/netscape_rev_proxy.nasl +lib/nessus/plugins/netscape_server_default_files.nasl lib/nessus/plugins/netscape_wp_tag.nasl lib/nessus/plugins/netstat.nasl lib/nessus/plugins/nettools_cmd_exec.nasl +lib/nessus/plugins/netware_ldap_search_request.nasl lib/nessus/plugins/netware_perl_overflow.nasl lib/nessus/plugins/netware_post_perl.nasl +lib/nessus/plugins/netware_tomcat_sourcecode_viewer.nasl lib/nessus/plugins/network_func.inc lib/nessus/plugins/newdsn.nasl lib/nessus/plugins/newsdesk.nasl @@ -1033,6 +1265,7 @@ lib/nessus/plugins/nikto_wrapper.nes lib/nessus/plugins/nimda.nasl lib/nessus/plugins/niprint_dos.nasl +lib/nessus/plugins/nis_get_passwd_map.nasl lib/nessus/plugins/nis_server.nasl lib/nessus/plugins/nisd_overflow.nasl lib/nessus/plugins/niteserver_ftp_dir_trav.nasl @@ -1050,19 +1283,27 @@ lib/nessus/plugins/nortel_pwdless2.nasl lib/nessus/plugins/notes_detection.nasl lib/nessus/plugins/notes_mta_dos.nasl +lib/nessus/plugins/notesinicheck.nasl lib/nessus/plugins/novell_border_manager.nasl +lib/nessus/plugins/novell_groupwise_servletmanager_default_password.nasl lib/nessus/plugins/novell_groupwise_webacc_information_disclosure.nasl +lib/nessus/plugins/novell_netbasic_directory_traversal.nasl +lib/nessus/plugins/novell_novonyx_default_files.nasl +lib/nessus/plugins/novell_viewcode.nasl lib/nessus/plugins/nph-exploitscanget.nasl lib/nessus/plugins/nph-publish.nasl lib/nessus/plugins/nph-test-cgi.nasl +lib/nessus/plugins/nqt_xss.nasl lib/nessus/plugins/nsiislog_dll.nasl lib/nessus/plugins/nsm_format_strings.nasl lib/nessus/plugins/nt_ftp_guest.nasl lib/nessus/plugins/nt_spam.nasl lib/nessus/plugins/ntalk_detect.nasl +lib/nessus/plugins/ntds_get_info.nasl lib/nessus/plugins/ntp_open.nasl lib/nessus/plugins/ntp_overflow.nasl lib/nessus/plugins/nuked_clan_cmd_exec.nasl +lib/nessus/plugins/nuked_klan_file_include.nasl lib/nessus/plugins/nuked_klan_xss.nasl lib/nessus/plugins/nullhttpd_content_length.nasl lib/nessus/plugins/nx_web_content_file_include.nasl @@ -1073,6 +1314,7 @@ lib/nessus/plugins/odbc_tools_check.nasl lib/nessus/plugins/office_files.nasl lib/nessus/plugins/officescan_disclosure.nasl +lib/nessus/plugins/oftpd_dos.nasl lib/nessus/plugins/oneorzero_flaws.nasl lib/nessus/plugins/oops_overflow.nasl lib/nessus/plugins/openbb_sql_injection.nasl @@ -1090,9 +1332,13 @@ lib/nessus/plugins/openssh_rev_dns_lookup_bypass.nasl lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/openssh_uselogin_environment.nasl +lib/nessus/plugins/openssl_denial.nasl lib/nessus/plugins/openssl_overflow_generic_test.nasl lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/openwebmail_cmd_exec.nasl +lib/nessus/plugins/openwebmail_content_type_xss.nasl +lib/nessus/plugins/openwebmail_detect.nasl +lib/nessus/plugins/openwebmail_vacation_input_validation.nasl lib/nessus/plugins/opera_arbitrary_file_dropping.nasl lib/nessus/plugins/opera_heap_corruption.nasl lib/nessus/plugins/opera_href_overflow.nasl @@ -1103,6 +1349,7 @@ lib/nessus/plugins/oracle9i_apache_dms.nasl lib/nessus/plugins/oracle9i_dad_admin.nasl lib/nessus/plugins/oracle9i_globals_dot_jsa.nasl +lib/nessus/plugins/oracle9i_isqlplus_xss.nasl lib/nessus/plugins/oracle9i_java_process_manager.nasl lib/nessus/plugins/oracle9i_jsp_source.nasl lib/nessus/plugins/oracle9i_jspdefaulterror.nasl @@ -1118,9 +1365,12 @@ lib/nessus/plugins/oracle_dos.nasl lib/nessus/plugins/oracle_link_overflow.nasl lib/nessus/plugins/oracle_one_hour_install.nasl +lib/nessus/plugins/oracle_soap_vulns.nasl +lib/nessus/plugins/oracle_timezone_overflow.nasl lib/nessus/plugins/oracle_tnslsnr_security.nasl lib/nessus/plugins/oracle_tnslsnr_version.nasl lib/nessus/plugins/oracle_web_admin_server.nasl +lib/nessus/plugins/oracle_web_cache_multiple_vulns.nasl lib/nessus/plugins/oracle_xsql.nasl lib/nessus/plugins/oracle_xsql_query.nasl lib/nessus/plugins/orange_dos.nasl @@ -1128,12 +1378,19 @@ lib/nessus/plugins/osX_apache_finder.nasl lib/nessus/plugins/osX_apache_finder_content.nasl lib/nessus/plugins/os_fingerprint.nasl +lib/nessus/plugins/oscommerce_file_manager_disclosure.nasl lib/nessus/plugins/oscommerce_session_id_xss.nasl lib/nessus/plugins/oshare.nasl lib/nessus/plugins/ospf_detect.nasl +lib/nessus/plugins/osticket_attachment_code_execution.nasl +lib/nessus/plugins/osticket_backdoored.nasl +lib/nessus/plugins/osticket_large_attachment_upload.nasl +lib/nessus/plugins/osticket_setup_php_accessible.nasl +lib/nessus/plugins/osticket_view_attachments.nasl lib/nessus/plugins/overnet.nasl lib/nessus/plugins/owa-anonymous.nasl lib/nessus/plugins/owl_browse.nasl +lib/nessus/plugins/owls_file_disclosure.nasl lib/nessus/plugins/ows_bin_cgi.nasl lib/nessus/plugins/ows_overflow.nasl lib/nessus/plugins/p-news_priv_escalation.nasl @@ -1146,6 +1403,7 @@ lib/nessus/plugins/pam_smb.nasl lib/nessus/plugins/passwordless_cayman_router.nasl lib/nessus/plugins/passwordless_hp_printer.nasl +lib/nessus/plugins/passwordless_lexmark_printer.nasl lib/nessus/plugins/paypal_store_front_injection.nasl lib/nessus/plugins/pccsmysqladm.nasl lib/nessus/plugins/perlIS_dll_bufferoverflow.nasl @@ -1157,6 +1415,7 @@ lib/nessus/plugins/pftp_cleartext_passwords.nasl lib/nessus/plugins/pgpmail.nasl lib/nessus/plugins/pgpnet_detect.nasl +lib/nessus/plugins/phatbot_detection.nasl lib/nessus/plugins/phf.nasl lib/nessus/plugins/philboard_auth_bypass.nasl lib/nessus/plugins/philboard_db_access.nasl @@ -1167,6 +1426,7 @@ lib/nessus/plugins/php4_multiple_flaws.nasl lib/nessus/plugins/php4_path_disclosure.nasl lib/nessus/plugins/phpMyAdmin_file_reading.nasl +lib/nessus/plugins/phpMyAdmin_file_reading2.nasl lib/nessus/plugins/phpMyAdmin_multiple_flaws.nasl lib/nessus/plugins/phpMyExplorer.nasl lib/nessus/plugins/phpPgAdmin_file_reading.nasl @@ -1190,11 +1450,14 @@ lib/nessus/plugins/php_safe_mode.nasl lib/nessus/plugins/php_socket_iovec_alloc_overflow.nasl lib/nessus/plugins/php_split_mime.nasl +lib/nessus/plugins/php_strip_tags_memory_limit_vuln.nasl lib/nessus/plugins/phpay_info_disclosure.nasl lib/nessus/plugins/phpbb_sql_injection.nasl lib/nessus/plugins/phpbb_sql_injection2.nasl +lib/nessus/plugins/phpbb_xss.nasl lib/nessus/plugins/phpcatalog_sql_injection.nasl lib/nessus/plugins/phpdig_code_injection.nasl +lib/nessus/plugins/phpgedview_directory_traversal.nasl lib/nessus/plugins/phpgedview_multiple_flaws.nasl lib/nessus/plugins/phpgroupware_file_include.nasl lib/nessus/plugins/phpinfo.nasl @@ -1213,6 +1476,9 @@ lib/nessus/plugins/ping_host.nasl lib/nessus/plugins/pingpong.inc lib/nessus/plugins/piranha.nasl +lib/nessus/plugins/pirelli_router_default_password.nasl +lib/nessus/plugins/pivot_file_inclusion.nasl +lib/nessus/plugins/pjreview_neo_file_reading.nasl lib/nessus/plugins/platinum_ftp.nasl lib/nessus/plugins/plusmail.nasl lib/nessus/plugins/pmachine_code_injection.nasl @@ -1239,7 +1505,9 @@ lib/nessus/plugins/postnuke_multiple_xss.nasl lib/nessus/plugins/postnuke_rating_dos.nasl lib/nessus/plugins/postnuke_sql_injection.nasl +lib/nessus/plugins/pound_format_strings.nasl lib/nessus/plugins/powerplay.nasl +lib/nessus/plugins/powerportal_path_disclosure.nasl lib/nessus/plugins/powerup_information_disclosure.nasl lib/nessus/plugins/pptp_detect.nasl lib/nessus/plugins/printenv.nasl @@ -1254,6 +1522,7 @@ lib/nessus/plugins/proftpd_pgsql_insertion.nasl lib/nessus/plugins/proftpd_pre10.nasl lib/nessus/plugins/proftpd_pre6_exploit.nasl +lib/nessus/plugins/propfind_internal_ip.nasl lib/nessus/plugins/proxomitron_dos.nasl lib/nessus/plugins/proxy_connect.nasl lib/nessus/plugins/proxy_cross_site_scripting.nasl @@ -1273,12 +1542,16 @@ lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl lib/nessus/plugins/qpopper_qvsnprinf_overflow.nasl +lib/nessus/plugins/qpopper_user_disclosure.nasl lib/nessus/plugins/quake3_dos.nasl +lib/nessus/plugins/qualiteam_xcart_cmd_exec.nasl lib/nessus/plugins/quickstore.nasl lib/nessus/plugins/quickstore2.nasl lib/nessus/plugins/quicktime_admin.nasl +lib/nessus/plugins/quicktime_heap_overflow.nasl lib/nessus/plugins/quicktime_player_overflow.nasl lib/nessus/plugins/quote.nasl +lib/nessus/plugins/racoon_cookie_malloc_dos.nasl lib/nessus/plugins/radiate_detection.nasl lib/nessus/plugins/radius_detect.nasl lib/nessus/plugins/radmin_detect.nasl @@ -1286,17 +1559,239 @@ lib/nessus/plugins/raptor_detect.nasl lib/nessus/plugins/raptor_isn.nasl lib/nessus/plugins/rbs.nasl +lib/nessus/plugins/readdesigncheck.nasl +lib/nessus/plugins/realplayer_file_handler_overflow.nasl lib/nessus/plugins/realplayer_png_heap_corruption.nasl +lib/nessus/plugins/realserver_defaultcfg.nasl lib/nessus/plugins/realserver_disclosure.nasl lib/nessus/plugins/realserver_malformed_request_dos.nasl lib/nessus/plugins/realserver_ussr_dos.nasl lib/nessus/plugins/realserverg2.nasl +lib/nessus/plugins/record_route.nasl +lib/nessus/plugins/redhat-RHSA-2002-119.nasl +lib/nessus/plugins/redhat-RHSA-2002-120.nasl +lib/nessus/plugins/redhat-RHSA-2002-121.nasl +lib/nessus/plugins/redhat-RHSA-2002-122.nasl +lib/nessus/plugins/redhat-RHSA-2002-123.nasl +lib/nessus/plugins/redhat-RHSA-2002-124.nasl +lib/nessus/plugins/redhat-RHSA-2002-125.nasl +lib/nessus/plugins/redhat-RHSA-2002-126.nasl +lib/nessus/plugins/redhat-RHSA-2002-128.nasl +lib/nessus/plugins/redhat-RHSA-2002-129.nasl +lib/nessus/plugins/redhat-RHSA-2002-130.nasl +lib/nessus/plugins/redhat-RHSA-2002-131.nasl +lib/nessus/plugins/redhat-RHSA-2002-136.nasl +lib/nessus/plugins/redhat-RHSA-2002-137.nasl +lib/nessus/plugins/redhat-RHSA-2002-138.nasl +lib/nessus/plugins/redhat-RHSA-2002-152.nasl +lib/nessus/plugins/redhat-RHSA-2002-154.nasl +lib/nessus/plugins/redhat-RHSA-2002-157.nasl +lib/nessus/plugins/redhat-RHSA-2002-161.nasl +lib/nessus/plugins/redhat-RHSA-2002-165.nasl +lib/nessus/plugins/redhat-RHSA-2002-167.nasl +lib/nessus/plugins/redhat-RHSA-2002-170.nasl +lib/nessus/plugins/redhat-RHSA-2002-173.nasl +lib/nessus/plugins/redhat-RHSA-2002-180.nasl +lib/nessus/plugins/redhat-RHSA-2002-181.nasl +lib/nessus/plugins/redhat-RHSA-2002-191.nasl +lib/nessus/plugins/redhat-RHSA-2002-195.nasl +lib/nessus/plugins/redhat-RHSA-2002-211.nasl +lib/nessus/plugins/redhat-RHSA-2002-214.nasl +lib/nessus/plugins/redhat-RHSA-2002-216.nasl +lib/nessus/plugins/redhat-RHSA-2002-221.nasl +lib/nessus/plugins/redhat-RHSA-2002-224.nasl +lib/nessus/plugins/redhat-RHSA-2002-227.nasl +lib/nessus/plugins/redhat-RHSA-2002-250.nasl +lib/nessus/plugins/redhat-RHSA-2002-251.nasl +lib/nessus/plugins/redhat-RHSA-2002-255.nasl +lib/nessus/plugins/redhat-RHSA-2002-256.nasl +lib/nessus/plugins/redhat-RHSA-2002-259.nasl +lib/nessus/plugins/redhat-RHSA-2002-261.nasl +lib/nessus/plugins/redhat-RHSA-2002-263.nasl +lib/nessus/plugins/redhat-RHSA-2002-271.nasl +lib/nessus/plugins/redhat-RHSA-2002-287.nasl +lib/nessus/plugins/redhat-RHSA-2002-289.nasl +lib/nessus/plugins/redhat-RHSA-2002-291.nasl +lib/nessus/plugins/redhat-RHSA-2002-294.nasl +lib/nessus/plugins/redhat-RHSA-2002-301.nasl +lib/nessus/plugins/redhat-RHSA-2002-302.nasl +lib/nessus/plugins/redhat-RHSA-2002-307.nasl +lib/nessus/plugins/redhat-RHSA-2002-312.nasl +lib/nessus/plugins/redhat-RHSA-2003-003.nasl +lib/nessus/plugins/redhat-RHSA-2003-007.nasl +lib/nessus/plugins/redhat-RHSA-2003-008.nasl +lib/nessus/plugins/redhat-RHSA-2003-009.nasl +lib/nessus/plugins/redhat-RHSA-2003-013.nasl +lib/nessus/plugins/redhat-RHSA-2003-016.nasl +lib/nessus/plugins/redhat-RHSA-2003-021.nasl +lib/nessus/plugins/redhat-RHSA-2003-022.nasl +lib/nessus/plugins/redhat-RHSA-2003-027.nasl +lib/nessus/plugins/redhat-RHSA-2003-028.nasl +lib/nessus/plugins/redhat-RHSA-2003-030.nasl +lib/nessus/plugins/redhat-RHSA-2003-033.nasl +lib/nessus/plugins/redhat-RHSA-2003-038.nasl +lib/nessus/plugins/redhat-RHSA-2003-045.nasl +lib/nessus/plugins/redhat-RHSA-2003-046.nasl +lib/nessus/plugins/redhat-RHSA-2003-048.nasl +lib/nessus/plugins/redhat-RHSA-2003-050.nasl +lib/nessus/plugins/redhat-RHSA-2003-052.nasl +lib/nessus/plugins/redhat-RHSA-2003-055.nasl +lib/nessus/plugins/redhat-RHSA-2003-058.nasl +lib/nessus/plugins/redhat-RHSA-2003-061.nasl +lib/nessus/plugins/redhat-RHSA-2003-063.nasl +lib/nessus/plugins/redhat-RHSA-2003-065.nasl +lib/nessus/plugins/redhat-RHSA-2003-068.nasl +lib/nessus/plugins/redhat-RHSA-2003-071.nasl +lib/nessus/plugins/redhat-RHSA-2003-074.nasl +lib/nessus/plugins/redhat-RHSA-2003-077.nasl +lib/nessus/plugins/redhat-RHSA-2003-081.nasl +lib/nessus/plugins/redhat-RHSA-2003-085.nasl +lib/nessus/plugins/redhat-RHSA-2003-087.nasl +lib/nessus/plugins/redhat-RHSA-2003-090.nasl +lib/nessus/plugins/redhat-RHSA-2003-094.nasl +lib/nessus/plugins/redhat-RHSA-2003-096.nasl +lib/nessus/plugins/redhat-RHSA-2003-102.nasl +lib/nessus/plugins/redhat-RHSA-2003-103.nasl +lib/nessus/plugins/redhat-RHSA-2003-111.nasl +lib/nessus/plugins/redhat-RHSA-2003-114.nasl +lib/nessus/plugins/redhat-RHSA-2003-119.nasl +lib/nessus/plugins/redhat-RHSA-2003-121.nasl +lib/nessus/plugins/redhat-RHSA-2003-134.nasl +lib/nessus/plugins/redhat-RHSA-2003-138.nasl +lib/nessus/plugins/redhat-RHSA-2003-145.nasl +lib/nessus/plugins/redhat-RHSA-2003-146.nasl +lib/nessus/plugins/redhat-RHSA-2003-147.nasl +lib/nessus/plugins/redhat-RHSA-2003-150.nasl +lib/nessus/plugins/redhat-RHSA-2003-151.nasl +lib/nessus/plugins/redhat-RHSA-2003-161.nasl +lib/nessus/plugins/redhat-RHSA-2003-163.nasl +lib/nessus/plugins/redhat-RHSA-2003-167.nasl +lib/nessus/plugins/redhat-RHSA-2003-176.nasl +lib/nessus/plugins/redhat-RHSA-2003-177.nasl +lib/nessus/plugins/redhat-RHSA-2003-180.nasl +lib/nessus/plugins/redhat-RHSA-2003-182.nasl +lib/nessus/plugins/redhat-RHSA-2003-193.nasl +lib/nessus/plugins/redhat-RHSA-2003-195.nasl +lib/nessus/plugins/redhat-RHSA-2003-197.nasl +lib/nessus/plugins/redhat-RHSA-2003-200.nasl +lib/nessus/plugins/redhat-RHSA-2003-201.nasl +lib/nessus/plugins/redhat-RHSA-2003-207.nasl +lib/nessus/plugins/redhat-RHSA-2003-223.nasl +lib/nessus/plugins/redhat-RHSA-2003-224.nasl +lib/nessus/plugins/redhat-RHSA-2003-231.nasl +lib/nessus/plugins/redhat-RHSA-2003-236.nasl +lib/nessus/plugins/redhat-RHSA-2003-239.nasl +lib/nessus/plugins/redhat-RHSA-2003-242.nasl +lib/nessus/plugins/redhat-RHSA-2003-244.nasl +lib/nessus/plugins/redhat-RHSA-2003-246.nasl +lib/nessus/plugins/redhat-RHSA-2003-249.nasl +lib/nessus/plugins/redhat-RHSA-2003-257.nasl +lib/nessus/plugins/redhat-RHSA-2003-259.nasl +lib/nessus/plugins/redhat-RHSA-2003-262.nasl +lib/nessus/plugins/redhat-RHSA-2003-268.nasl +lib/nessus/plugins/redhat-RHSA-2003-270.nasl +lib/nessus/plugins/redhat-RHSA-2003-274.nasl +lib/nessus/plugins/redhat-RHSA-2003-280.nasl +lib/nessus/plugins/redhat-RHSA-2003-284.nasl +lib/nessus/plugins/redhat-RHSA-2003-285.nasl +lib/nessus/plugins/redhat-RHSA-2003-289.nasl +lib/nessus/plugins/redhat-RHSA-2003-293.nasl +lib/nessus/plugins/redhat-RHSA-2003-297.nasl +lib/nessus/plugins/redhat-RHSA-2003-305.nasl +lib/nessus/plugins/redhat-RHSA-2003-310.nasl +lib/nessus/plugins/redhat-RHSA-2003-312.nasl +lib/nessus/plugins/redhat-RHSA-2003-314.nasl +lib/nessus/plugins/redhat-RHSA-2003-315.nasl +lib/nessus/plugins/redhat-RHSA-2003-317.nasl +lib/nessus/plugins/redhat-RHSA-2003-324.nasl +lib/nessus/plugins/redhat-RHSA-2003-334.nasl +lib/nessus/plugins/redhat-RHSA-2003-360.nasl +lib/nessus/plugins/redhat-RHSA-2003-372.nasl +lib/nessus/plugins/redhat-RHSA-2003-386.nasl +lib/nessus/plugins/redhat-RHSA-2003-389.nasl +lib/nessus/plugins/redhat-RHSA-2003-395.nasl +lib/nessus/plugins/redhat-RHSA-2003-399.nasl +lib/nessus/plugins/redhat-RHSA-2003-404.nasl +lib/nessus/plugins/redhat-RHSA-2003-408.nasl +lib/nessus/plugins/redhat-RHSA-2003-416.nasl +lib/nessus/plugins/redhat-RHSA-2003-419.nasl +lib/nessus/plugins/redhat-RHSA-2004-002.nasl +lib/nessus/plugins/redhat-RHSA-2004-004.nasl +lib/nessus/plugins/redhat-RHSA-2004-005.nasl +lib/nessus/plugins/redhat-RHSA-2004-008.nasl +lib/nessus/plugins/redhat-RHSA-2004-009.nasl +lib/nessus/plugins/redhat-RHSA-2004-015.nasl +lib/nessus/plugins/redhat-RHSA-2004-017.nasl +lib/nessus/plugins/redhat-RHSA-2004-019.nasl +lib/nessus/plugins/redhat-RHSA-2004-023.nasl +lib/nessus/plugins/redhat-RHSA-2004-031.nasl +lib/nessus/plugins/redhat-RHSA-2004-033.nasl +lib/nessus/plugins/redhat-RHSA-2004-035.nasl +lib/nessus/plugins/redhat-RHSA-2004-041.nasl +lib/nessus/plugins/redhat-RHSA-2004-044.nasl +lib/nessus/plugins/redhat-RHSA-2004-045.nasl +lib/nessus/plugins/redhat-RHSA-2004-047.nasl +lib/nessus/plugins/redhat-RHSA-2004-050.nasl +lib/nessus/plugins/redhat-RHSA-2004-053.nasl +lib/nessus/plugins/redhat-RHSA-2004-056.nasl +lib/nessus/plugins/redhat-RHSA-2004-058.nasl +lib/nessus/plugins/redhat-RHSA-2004-060.nasl +lib/nessus/plugins/redhat-RHSA-2004-061.nasl +lib/nessus/plugins/redhat-RHSA-2004-064.nasl +lib/nessus/plugins/redhat-RHSA-2004-066.nasl +lib/nessus/plugins/redhat-RHSA-2004-069.nasl +lib/nessus/plugins/redhat-RHSA-2004-072.nasl +lib/nessus/plugins/redhat-RHSA-2004-073.nasl +lib/nessus/plugins/redhat-RHSA-2004-074.nasl +lib/nessus/plugins/redhat-RHSA-2004-084.nasl +lib/nessus/plugins/redhat-RHSA-2004-090.nasl +lib/nessus/plugins/redhat-RHSA-2004-096.nasl +lib/nessus/plugins/redhat-RHSA-2004-103.nasl +lib/nessus/plugins/redhat-RHSA-2004-105.nasl +lib/nessus/plugins/redhat-RHSA-2004-110.nasl +lib/nessus/plugins/redhat-RHSA-2004-119.nasl +lib/nessus/plugins/redhat-RHSA-2004-120.nasl +lib/nessus/plugins/redhat-RHSA-2004-133.nasl +lib/nessus/plugins/redhat-RHSA-2004-136.nasl +lib/nessus/plugins/redhat-RHSA-2004-152.nasl +lib/nessus/plugins/redhat-RHSA-2004-153.nasl +lib/nessus/plugins/redhat-RHSA-2004-156.nasl +lib/nessus/plugins/redhat-RHSA-2004-157.nasl +lib/nessus/plugins/redhat-RHSA-2004-160.nasl +lib/nessus/plugins/redhat-RHSA-2004-165.nasl +lib/nessus/plugins/redhat-RHSA-2004-172.nasl +lib/nessus/plugins/redhat-RHSA-2004-174.nasl +lib/nessus/plugins/redhat-RHSA-2004-178.nasl +lib/nessus/plugins/redhat-RHSA-2004-180.nasl +lib/nessus/plugins/redhat-RHSA-2004-183.nasl +lib/nessus/plugins/redhat-RHSA-2004-188.nasl +lib/nessus/plugins/redhat-RHSA-2004-190.nasl +lib/nessus/plugins/redhat-RHSA-2004-191.nasl +lib/nessus/plugins/redhat-RHSA-2004-192.nasl +lib/nessus/plugins/redhat-RHSA-2004-219.nasl +lib/nessus/plugins/redhat-RHSA-2004-222.nasl +lib/nessus/plugins/redhat-RHSA-2004-233.nasl +lib/nessus/plugins/redhat-RHSA-2004-234.nasl +lib/nessus/plugins/redhat-RHSA-2004-236.nasl +lib/nessus/plugins/redhat-RHSA-2004-240.nasl +lib/nessus/plugins/redhat-RHSA-2004-242.nasl +lib/nessus/plugins/redhat-RHSA-2004-244.nasl +lib/nessus/plugins/redhat-RHSA-2004-245.nasl +lib/nessus/plugins/redhat-RHSA-2004-249.nasl +lib/nessus/plugins/redhat-RHSA-2004-255.nasl +lib/nessus/plugins/redhat-RHSA-2004-260.nasl +lib/nessus/plugins/redhat-RHSA-2004-342.nasl +lib/nessus/plugins/redhat-RHSA-2004-354.nasl +lib/nessus/plugins/redhat-RHSA-2004-360.nasl +lib/nessus/plugins/redhat-RHSA-2004-395.nasl +lib/nessus/plugins/redhat_fixes.nasl lib/nessus/plugins/relative_field_vulnerability.nasl lib/nessus/plugins/remote_pc_detect.nasl lib/nessus/plugins/remwatch.nasl lib/nessus/plugins/resin_path_disclosure.nasl lib/nessus/plugins/resin_server_status.nasl lib/nessus/plugins/resin_traversal.nasl +lib/nessus/plugins/reviewpost_sql.nasl lib/nessus/plugins/rexecd.nasl lib/nessus/plugins/rfparalyze.nasl lib/nessus/plugins/rfpoison.nasl @@ -1304,9 +1799,11 @@ lib/nessus/plugins/rich_media_ecommerce_stores_sensitive_information_insecurely.nasl lib/nessus/plugins/rip_detect.nasl lib/nessus/plugins/rip_poison.nasl +lib/nessus/plugins/ris_detect.nasl lib/nessus/plugins/rlogin.nasl lib/nessus/plugins/rlogin_froot.nasl lib/nessus/plugins/roads_cgi.nasl +lib/nessus/plugins/robotftp.nasl lib/nessus/plugins/rockliffe_mailsite_overflow.nasl lib/nessus/plugins/rot13sj.nasl lib/nessus/plugins/rover_pop3_overflow.nasl @@ -1356,6 +1853,7 @@ lib/nessus/plugins/rpc_ypupated.nasl lib/nessus/plugins/rpc_ypxfrd.nasl lib/nessus/plugins/rpcinfo.nasl +lib/nessus/plugins/rpm.inc lib/nessus/plugins/rpm_query.nasl lib/nessus/plugins/rsh.nasl lib/nessus/plugins/rsh_null.nasl @@ -1363,6 +1861,7 @@ lib/nessus/plugins/rsync_array_overflow.nasl lib/nessus/plugins/rsync_heap_overflow.nasl lib/nessus/plugins/rsync_modules.nasl +lib/nessus/plugins/rsync_path_traversal.nasl lib/nessus/plugins/rtsp_detect.nasl lib/nessus/plugins/rusers_output.nasl lib/nessus/plugins/rwalld_format_string.nasl @@ -1387,7 +1886,12 @@ lib/nessus/plugins/sambar_sendmail.nasl lib/nessus/plugins/sambar_sysadmin.nasl lib/nessus/plugins/sambar_xss.nasl +lib/nessus/plugins/sami_ftp.nasl +lib/nessus/plugins/samihttp_1_0_4.nasl +lib/nessus/plugins/sandsurfer_user_auth.nasl +lib/nessus/plugins/sandsurfer_xss.nasl lib/nessus/plugins/sapdb_detect.nasl +lib/nessus/plugins/sasser_virus.nasl lib/nessus/plugins/savant_cgi_download.nasl lib/nessus/plugins/savant_cgitest.nasl lib/nessus/plugins/savant_content_length_DoS.nasl @@ -1444,6 +1948,7 @@ lib/nessus/plugins/shells.nasl lib/nessus/plugins/shiva_default_pass.nasl lib/nessus/plugins/shlwapi_dll_dos.nasl +lib/nessus/plugins/shopcartcgi_traversal.nasl lib/nessus/plugins/shopping_cart_information_disclosure.nasl lib/nessus/plugins/shopplus_information_disclosure.nasl lib/nessus/plugins/shopsearch_sql_injection.nasl @@ -1451,12 +1956,14 @@ lib/nessus/plugins/shoutcast_log_xss.nasl lib/nessus/plugins/shoutcast_version.nasl lib/nessus/plugins/showmount.nasl +lib/nessus/plugins/showphoto_sql_injection.nasl lib/nessus/plugins/shttp_detect.nasl lib/nessus/plugins/silverstream_database.nasl lib/nessus/plugins/silverstream_dirlisting.nasl lib/nessus/plugins/simple_chat_user_disclosure.nasl lib/nessus/plugins/simpleserverwww_dos.nasl lib/nessus/plugins/simplewww.nasl +lib/nessus/plugins/singapore_file_disclosure.nasl lib/nessus/plugins/sip_detection.nasl lib/nessus/plugins/sip_status_server.nasl lib/nessus/plugins/siteUserMod.nasl @@ -1471,6 +1978,7 @@ lib/nessus/plugins/slmail_webmail_flaws.nasl lib/nessus/plugins/smad.nes lib/nessus/plugins/small_ftp_traversal.nasl +lib/nessus/plugins/smallftpd_1_0_3.nasl lib/nessus/plugins/smartftp_overflow.nasl lib/nessus/plugins/smartserver_pop_overflow.nasl lib/nessus/plugins/smb2www_cmd_exec.nasl @@ -1482,6 +1990,7 @@ lib/nessus/plugins/smb_dom2sid.nasl lib/nessus/plugins/smb_enum_services.nasl lib/nessus/plugins/smb_enum_shares.nasl +lib/nessus/plugins/smb_file_funcs.inc lib/nessus/plugins/smb_group_account_op.nasl lib/nessus/plugins/smb_group_admin.nasl lib/nessus/plugins/smb_group_backup_op.nasl @@ -1491,6 +2000,7 @@ lib/nessus/plugins/smb_group_system_op.nasl lib/nessus/plugins/smb_groups_guest.nasl lib/nessus/plugins/smb_host2sid.nasl +lib/nessus/plugins/smb_kb835732.nasl lib/nessus/plugins/smb_lanman_browse_list.nasl lib/nessus/plugins/smb_localusers_autodisabled.nasl lib/nessus/plugins/smb_localusers_changepw.nasl @@ -1510,6 +2020,7 @@ lib/nessus/plugins/smb_netusergetinfo.nasl lib/nessus/plugins/smb_netusergetinfo_local.nasl lib/nessus/plugins/smb_nt.inc +lib/nessus/plugins/smb_nt_kb870669.nasl lib/nessus/plugins/smb_nt_ms00-029.nasl lib/nessus/plugins/smb_nt_ms00-035.nasl lib/nessus/plugins/smb_nt_ms00-036.nasl @@ -1597,6 +2108,24 @@ lib/nessus/plugins/smb_nt_ms04-001.nasl lib/nessus/plugins/smb_nt_ms04-002.nasl lib/nessus/plugins/smb_nt_ms04-003.nasl +lib/nessus/plugins/smb_nt_ms04-006.nasl +lib/nessus/plugins/smb_nt_ms04-007.nasl +lib/nessus/plugins/smb_nt_ms04-008.nasl +lib/nessus/plugins/smb_nt_ms04-009.nasl +lib/nessus/plugins/smb_nt_ms04-010.nasl +lib/nessus/plugins/smb_nt_ms04-011.nasl +lib/nessus/plugins/smb_nt_ms04-012.nasl +lib/nessus/plugins/smb_nt_ms04-013.nasl +lib/nessus/plugins/smb_nt_ms04-014.nasl +lib/nessus/plugins/smb_nt_ms04-015.nasl +lib/nessus/plugins/smb_nt_ms04-016.nasl +lib/nessus/plugins/smb_nt_ms04-018.nasl +lib/nessus/plugins/smb_nt_ms04-019.nasl +lib/nessus/plugins/smb_nt_ms04-020.nasl +lib/nessus/plugins/smb_nt_ms04-021.nasl +lib/nessus/plugins/smb_nt_ms04-022.nasl +lib/nessus/plugins/smb_nt_ms04-023.nasl +lib/nessus/plugins/smb_nt_ms04-024.nasl lib/nessus/plugins/smb_null_params_dos.nasl lib/nessus/plugins/smb_reg_MTS_access.nasl lib/nessus/plugins/smb_reg_autologon.nasl @@ -1616,6 +2145,7 @@ lib/nessus/plugins/smb_reg_sfcdisable.nasl lib/nessus/plugins/smb_reg_snmp_access.nasl lib/nessus/plugins/smb_reg_trojan_paths.nasl +lib/nessus/plugins/smb_reg_windowsautoupdate.nasl lib/nessus/plugins/smb_reg_winlogon_permissions.nasl lib/nessus/plugins/smb_reg_winvnc_perms.nasl lib/nessus/plugins/smb_registry_access.nasl @@ -1634,6 +2164,7 @@ lib/nessus/plugins/smb_users_pwexpiry.nasl lib/nessus/plugins/smb_virii.nasl lib/nessus/plugins/smb_xp_ms01-059.nasl +lib/nessus/plugins/smc2804wbr_default_password.nasl lib/nessus/plugins/smc_www_dos.nasl lib/nessus/plugins/smtp_AV_42zip_DoS.nasl lib/nessus/plugins/smtp_bounce.nasl @@ -1677,15 +2208,1007 @@ lib/nessus/plugins/socks4_username_overflow.nasl lib/nessus/plugins/socks4a_hostname_overflow.nasl lib/nessus/plugins/sojourn.nasl +lib/nessus/plugins/solaris.inc +lib/nessus/plugins/solaris251_103558.nasl +lib/nessus/plugins/solaris251_103566.nasl +lib/nessus/plugins/solaris251_103582.nasl +lib/nessus/plugins/solaris251_103594.nasl +lib/nessus/plugins/solaris251_103603.nasl +lib/nessus/plugins/solaris251_103627.nasl +lib/nessus/plugins/solaris251_103630.nasl +lib/nessus/plugins/solaris251_103640.nasl +lib/nessus/plugins/solaris251_103663.nasl +lib/nessus/plugins/solaris251_103670.nasl +lib/nessus/plugins/solaris251_103680.nasl +lib/nessus/plugins/solaris251_103686.nasl +lib/nessus/plugins/solaris251_103690.nasl +lib/nessus/plugins/solaris251_103699.nasl +lib/nessus/plugins/solaris251_103738.nasl +lib/nessus/plugins/solaris251_103743.nasl +lib/nessus/plugins/solaris251_103817.nasl +lib/nessus/plugins/solaris251_103866.nasl +lib/nessus/plugins/solaris251_103867.nasl +lib/nessus/plugins/solaris251_103879.nasl +lib/nessus/plugins/solaris251_103882.nasl +lib/nessus/plugins/solaris251_103891.nasl +lib/nessus/plugins/solaris251_103901.nasl +lib/nessus/plugins/solaris251_103959.nasl +lib/nessus/plugins/solaris251_103995.nasl +lib/nessus/plugins/solaris251_104010.nasl +lib/nessus/plugins/solaris251_104093.nasl +lib/nessus/plugins/solaris251_104166.nasl +lib/nessus/plugins/solaris251_104178.nasl +lib/nessus/plugins/solaris251_104212.nasl +lib/nessus/plugins/solaris251_104220.nasl +lib/nessus/plugins/solaris251_104266.nasl +lib/nessus/plugins/solaris251_104283.nasl +lib/nessus/plugins/solaris251_104331.nasl +lib/nessus/plugins/solaris251_104334.nasl +lib/nessus/plugins/solaris251_104338.nasl +lib/nessus/plugins/solaris251_104471.nasl +lib/nessus/plugins/solaris251_104489.nasl +lib/nessus/plugins/solaris251_104498.nasl +lib/nessus/plugins/solaris251_104516.nasl +lib/nessus/plugins/solaris251_104533.nasl +lib/nessus/plugins/solaris251_104552.nasl +lib/nessus/plugins/solaris251_104578.nasl +lib/nessus/plugins/solaris251_104613.nasl +lib/nessus/plugins/solaris251_104637.nasl +lib/nessus/plugins/solaris251_104650.nasl +lib/nessus/plugins/solaris251_104654.nasl +lib/nessus/plugins/solaris251_104661.nasl +lib/nessus/plugins/solaris251_104692.nasl +lib/nessus/plugins/solaris251_104736.nasl +lib/nessus/plugins/solaris251_104776.nasl +lib/nessus/plugins/solaris251_104795.nasl +lib/nessus/plugins/solaris251_104818.nasl +lib/nessus/plugins/solaris251_104841.nasl +lib/nessus/plugins/solaris251_104849.nasl +lib/nessus/plugins/solaris251_104873.nasl +lib/nessus/plugins/solaris251_104893.nasl +lib/nessus/plugins/solaris251_104935.nasl +lib/nessus/plugins/solaris251_104960.nasl +lib/nessus/plugins/solaris251_104968.nasl +lib/nessus/plugins/solaris251_104976.nasl +lib/nessus/plugins/solaris251_105050.nasl +lib/nessus/plugins/solaris251_105076.nasl +lib/nessus/plugins/solaris251_105092.nasl +lib/nessus/plugins/solaris251_105133.nasl +lib/nessus/plugins/solaris251_105165.nasl +lib/nessus/plugins/solaris251_105203.nasl +lib/nessus/plugins/solaris251_105251.nasl +lib/nessus/plugins/solaris251_105299.nasl +lib/nessus/plugins/solaris251_105784.nasl +lib/nessus/plugins/solaris251_105962.nasl +lib/nessus/plugins/solaris251_105998.nasl +lib/nessus/plugins/solaris251_106160.nasl +lib/nessus/plugins/solaris251_106224.nasl +lib/nessus/plugins/solaris251_106382.nasl +lib/nessus/plugins/solaris251_106396.nasl +lib/nessus/plugins/solaris251_106411.nasl +lib/nessus/plugins/solaris251_106441.nasl +lib/nessus/plugins/solaris251_106602.nasl +lib/nessus/plugins/solaris251_106662.nasl +lib/nessus/plugins/solaris251_106663.nasl +lib/nessus/plugins/solaris251_106689.nasl +lib/nessus/plugins/solaris251_106905.nasl +lib/nessus/plugins/solaris251_106909.nasl +lib/nessus/plugins/solaris251_107020.nasl +lib/nessus/plugins/solaris251_107756.nasl +lib/nessus/plugins/solaris251_108194.nasl +lib/nessus/plugins/solaris251_108205.nasl +lib/nessus/plugins/solaris251_108289.nasl +lib/nessus/plugins/solaris251_108363.nasl +lib/nessus/plugins/solaris251_108470.nasl +lib/nessus/plugins/solaris251_108497.nasl +lib/nessus/plugins/solaris251_108658.nasl +lib/nessus/plugins/solaris251_108802.nasl +lib/nessus/plugins/solaris251_108928.nasl +lib/nessus/plugins/solaris251_109275.nasl +lib/nessus/plugins/solaris251_109392.nasl +lib/nessus/plugins/solaris251_109721.nasl +lib/nessus/plugins/solaris251_111025.nasl +lib/nessus/plugins/solaris251_111279.nasl +lib/nessus/plugins/solaris251_111281.nasl +lib/nessus/plugins/solaris251_111499.nasl +lib/nessus/plugins/solaris251_111576.nasl +lib/nessus/plugins/solaris251_111840.nasl +lib/nessus/plugins/solaris251_111916.nasl +lib/nessus/plugins/solaris251_112086.nasl +lib/nessus/plugins/solaris251_112454.nasl +lib/nessus/plugins/solaris251_112770.nasl +lib/nessus/plugins/solaris251_112891.nasl +lib/nessus/plugins/solaris251_x86_103559.nasl +lib/nessus/plugins/solaris251_x86_103581.nasl +lib/nessus/plugins/solaris251_x86_103595.nasl +lib/nessus/plugins/solaris251_x86_103604.nasl +lib/nessus/plugins/solaris251_x86_103628.nasl +lib/nessus/plugins/solaris251_x86_103631.nasl +lib/nessus/plugins/solaris251_x86_103641.nasl +lib/nessus/plugins/solaris251_x86_103664.nasl +lib/nessus/plugins/solaris251_x86_103681.nasl +lib/nessus/plugins/solaris251_x86_103687.nasl +lib/nessus/plugins/solaris251_x86_103691.nasl +lib/nessus/plugins/solaris251_x86_103700.nasl +lib/nessus/plugins/solaris251_x86_103717.nasl +lib/nessus/plugins/solaris251_x86_103739.nasl +lib/nessus/plugins/solaris251_x86_103744.nasl +lib/nessus/plugins/solaris251_x86_103818.nasl +lib/nessus/plugins/solaris251_x86_103868.nasl +lib/nessus/plugins/solaris251_x86_103881.nasl +lib/nessus/plugins/solaris251_x86_103886.nasl +lib/nessus/plugins/solaris251_x86_103892.nasl +lib/nessus/plugins/solaris251_x86_103960.nasl +lib/nessus/plugins/solaris251_x86_103996.nasl +lib/nessus/plugins/solaris251_x86_104011.nasl +lib/nessus/plugins/solaris251_x86_104167.nasl +lib/nessus/plugins/solaris251_x86_104185.nasl +lib/nessus/plugins/solaris251_x86_104221.nasl +lib/nessus/plugins/solaris251_x86_104241.nasl +lib/nessus/plugins/solaris251_x86_104267.nasl +lib/nessus/plugins/solaris251_x86_104284.nasl +lib/nessus/plugins/solaris251_x86_104332.nasl +lib/nessus/plugins/solaris251_x86_104335.nasl +lib/nessus/plugins/solaris251_x86_104472.nasl +lib/nessus/plugins/solaris251_x86_104500.nasl +lib/nessus/plugins/solaris251_x86_104517.nasl +lib/nessus/plugins/solaris251_x86_104554.nasl +lib/nessus/plugins/solaris251_x86_104557.nasl +lib/nessus/plugins/solaris251_x86_104579.nasl +lib/nessus/plugins/solaris251_x86_104614.nasl +lib/nessus/plugins/solaris251_x86_104638.nasl +lib/nessus/plugins/solaris251_x86_104641.nasl +lib/nessus/plugins/solaris251_x86_104651.nasl +lib/nessus/plugins/solaris251_x86_104655.nasl +lib/nessus/plugins/solaris251_x86_104663.nasl +lib/nessus/plugins/solaris251_x86_104693.nasl +lib/nessus/plugins/solaris251_x86_104737.nasl +lib/nessus/plugins/solaris251_x86_104777.nasl +lib/nessus/plugins/solaris251_x86_104819.nasl +lib/nessus/plugins/solaris251_x86_104842.nasl +lib/nessus/plugins/solaris251_x86_104848.nasl +lib/nessus/plugins/solaris251_x86_104874.nasl +lib/nessus/plugins/solaris251_x86_104894.nasl +lib/nessus/plugins/solaris251_x86_104936.nasl +lib/nessus/plugins/solaris251_x86_104961.nasl +lib/nessus/plugins/solaris251_x86_104969.nasl +lib/nessus/plugins/solaris251_x86_105051.nasl +lib/nessus/plugins/solaris251_x86_105093.nasl +lib/nessus/plugins/solaris251_x86_105105.nasl +lib/nessus/plugins/solaris251_x86_105124.nasl +lib/nessus/plugins/solaris251_x86_105127.nasl +lib/nessus/plugins/solaris251_x86_105134.nasl +lib/nessus/plugins/solaris251_x86_105166.nasl +lib/nessus/plugins/solaris251_x86_105207.nasl +lib/nessus/plugins/solaris251_x86_105300.nasl +lib/nessus/plugins/solaris251_x86_105354.nasl +lib/nessus/plugins/solaris251_x86_105496.nasl +lib/nessus/plugins/solaris251_x86_105638.nasl +lib/nessus/plugins/solaris251_x86_105785.nasl +lib/nessus/plugins/solaris251_x86_105963.nasl +lib/nessus/plugins/solaris251_x86_105999.nasl +lib/nessus/plugins/solaris251_x86_106161.nasl +lib/nessus/plugins/solaris251_x86_106225.nasl +lib/nessus/plugins/solaris251_x86_106397.nasl +lib/nessus/plugins/solaris251_x86_106412.nasl +lib/nessus/plugins/solaris251_x86_106442.nasl +lib/nessus/plugins/solaris251_x86_106603.nasl +lib/nessus/plugins/solaris251_x86_106664.nasl +lib/nessus/plugins/solaris251_x86_106665.nasl +lib/nessus/plugins/solaris251_x86_106690.nasl +lib/nessus/plugins/solaris251_x86_106906.nasl +lib/nessus/plugins/solaris251_x86_106910.nasl +lib/nessus/plugins/solaris251_x86_107021.nasl +lib/nessus/plugins/solaris251_x86_107757.nasl +lib/nessus/plugins/solaris251_x86_108196.nasl +lib/nessus/plugins/solaris251_x86_108206.nasl +lib/nessus/plugins/solaris251_x86_108290.nasl +lib/nessus/plugins/solaris251_x86_108364.nasl +lib/nessus/plugins/solaris251_x86_108471.nasl +lib/nessus/plugins/solaris251_x86_108498.nasl +lib/nessus/plugins/solaris251_x86_108659.nasl +lib/nessus/plugins/solaris251_x86_108803.nasl +lib/nessus/plugins/solaris251_x86_108929.nasl +lib/nessus/plugins/solaris251_x86_109276.nasl +lib/nessus/plugins/solaris251_x86_109393.nasl +lib/nessus/plugins/solaris251_x86_109722.nasl +lib/nessus/plugins/solaris251_x86_111026.nasl +lib/nessus/plugins/solaris251_x86_111280.nasl +lib/nessus/plugins/solaris251_x86_111282.nasl +lib/nessus/plugins/solaris251_x86_111518.nasl +lib/nessus/plugins/solaris251_x86_111577.nasl +lib/nessus/plugins/solaris251_x86_111841.nasl +lib/nessus/plugins/solaris251_x86_111917.nasl +lib/nessus/plugins/solaris251_x86_112087.nasl +lib/nessus/plugins/solaris251_x86_112455.nasl +lib/nessus/plugins/solaris251_x86_112892.nasl +lib/nessus/plugins/solaris26_105181.nasl +lib/nessus/plugins/solaris26_105210.nasl +lib/nessus/plugins/solaris26_105216.nasl +lib/nessus/plugins/solaris26_105338.nasl +lib/nessus/plugins/solaris26_105377.nasl +lib/nessus/plugins/solaris26_105379.nasl +lib/nessus/plugins/solaris26_105395.nasl +lib/nessus/plugins/solaris26_105401.nasl +lib/nessus/plugins/solaris26_105405.nasl +lib/nessus/plugins/solaris26_105407.nasl +lib/nessus/plugins/solaris26_105528.nasl +lib/nessus/plugins/solaris26_105529.nasl +lib/nessus/plugins/solaris26_105552.nasl +lib/nessus/plugins/solaris26_105558.nasl +lib/nessus/plugins/solaris26_105562.nasl +lib/nessus/plugins/solaris26_105564.nasl +lib/nessus/plugins/solaris26_105566.nasl +lib/nessus/plugins/solaris26_105615.nasl +lib/nessus/plugins/solaris26_105633.nasl +lib/nessus/plugins/solaris26_105665.nasl +lib/nessus/plugins/solaris26_105667.nasl +lib/nessus/plugins/solaris26_105669.nasl +lib/nessus/plugins/solaris26_105693.nasl +lib/nessus/plugins/solaris26_105703.nasl +lib/nessus/plugins/solaris26_105722.nasl +lib/nessus/plugins/solaris26_105755.nasl +lib/nessus/plugins/solaris26_105780.nasl +lib/nessus/plugins/solaris26_105786.nasl +lib/nessus/plugins/solaris26_105800.nasl +lib/nessus/plugins/solaris26_105802.nasl +lib/nessus/plugins/solaris26_105837.nasl +lib/nessus/plugins/solaris26_105924.nasl +lib/nessus/plugins/solaris26_105990.nasl +lib/nessus/plugins/solaris26_106027.nasl +lib/nessus/plugins/solaris26_106040.nasl +lib/nessus/plugins/solaris26_106049.nasl +lib/nessus/plugins/solaris26_106112.nasl +lib/nessus/plugins/solaris26_106123.nasl +lib/nessus/plugins/solaris26_106125.nasl +lib/nessus/plugins/solaris26_106193.nasl +lib/nessus/plugins/solaris26_106222.nasl +lib/nessus/plugins/solaris26_106235.nasl +lib/nessus/plugins/solaris26_106242.nasl +lib/nessus/plugins/solaris26_106257.nasl +lib/nessus/plugins/solaris26_106292.nasl +lib/nessus/plugins/solaris26_106301.nasl +lib/nessus/plugins/solaris26_106303.nasl +lib/nessus/plugins/solaris26_106331.nasl +lib/nessus/plugins/solaris26_106361.nasl +lib/nessus/plugins/solaris26_106415.nasl +lib/nessus/plugins/solaris26_106437.nasl +lib/nessus/plugins/solaris26_106439.nasl +lib/nessus/plugins/solaris26_106448.nasl +lib/nessus/plugins/solaris26_106468.nasl +lib/nessus/plugins/solaris26_106522.nasl +lib/nessus/plugins/solaris26_106569.nasl +lib/nessus/plugins/solaris26_106592.nasl +lib/nessus/plugins/solaris26_106625.nasl +lib/nessus/plugins/solaris26_106629.nasl +lib/nessus/plugins/solaris26_106639.nasl +lib/nessus/plugins/solaris26_106648.nasl +lib/nessus/plugins/solaris26_106649.nasl +lib/nessus/plugins/solaris26_106650.nasl +lib/nessus/plugins/solaris26_106834.nasl +lib/nessus/plugins/solaris26_107298.nasl +lib/nessus/plugins/solaris26_107326.nasl +lib/nessus/plugins/solaris26_107336.nasl +lib/nessus/plugins/solaris26_107565.nasl +lib/nessus/plugins/solaris26_107618.nasl +lib/nessus/plugins/solaris26_107733.nasl +lib/nessus/plugins/solaris26_107758.nasl +lib/nessus/plugins/solaris26_107766.nasl +lib/nessus/plugins/solaris26_107774.nasl +lib/nessus/plugins/solaris26_107991.nasl +lib/nessus/plugins/solaris26_108129.nasl +lib/nessus/plugins/solaris26_108199.nasl +lib/nessus/plugins/solaris26_108201.nasl +lib/nessus/plugins/solaris26_108307.nasl +lib/nessus/plugins/solaris26_108333.nasl +lib/nessus/plugins/solaris26_108346.nasl +lib/nessus/plugins/solaris26_108388.nasl +lib/nessus/plugins/solaris26_108468.nasl +lib/nessus/plugins/solaris26_108492.nasl +lib/nessus/plugins/solaris26_108499.nasl +lib/nessus/plugins/solaris26_108660.nasl +lib/nessus/plugins/solaris26_108804.nasl +lib/nessus/plugins/solaris26_108890.nasl +lib/nessus/plugins/solaris26_108893.nasl +lib/nessus/plugins/solaris26_108895.nasl +lib/nessus/plugins/solaris26_109100.nasl +lib/nessus/plugins/solaris26_109266.nasl +lib/nessus/plugins/solaris26_109339.nasl +lib/nessus/plugins/solaris26_109388.nasl +lib/nessus/plugins/solaris26_109719.nasl +lib/nessus/plugins/solaris26_110128.nasl +lib/nessus/plugins/solaris26_110883.nasl +lib/nessus/plugins/solaris26_110990.nasl +lib/nessus/plugins/solaris26_111039.nasl +lib/nessus/plugins/solaris26_111236.nasl +lib/nessus/plugins/solaris26_111240.nasl +lib/nessus/plugins/solaris26_111560.nasl +lib/nessus/plugins/solaris26_111645.nasl +lib/nessus/plugins/solaris26_111859.nasl +lib/nessus/plugins/solaris26_111973.nasl +lib/nessus/plugins/solaris26_112073.nasl +lib/nessus/plugins/solaris26_112456.nasl +lib/nessus/plugins/solaris26_112765.nasl +lib/nessus/plugins/solaris26_112814.nasl +lib/nessus/plugins/solaris26_112893.nasl +lib/nessus/plugins/solaris26_113754.nasl +lib/nessus/plugins/solaris26_114889.nasl +lib/nessus/plugins/solaris26_114941.nasl +lib/nessus/plugins/solaris26_115563.nasl +lib/nessus/plugins/solaris26_x86_105182.nasl +lib/nessus/plugins/solaris26_x86_105211.nasl +lib/nessus/plugins/solaris26_x86_105217.nasl +lib/nessus/plugins/solaris26_x86_105339.nasl +lib/nessus/plugins/solaris26_x86_105380.nasl +lib/nessus/plugins/solaris26_x86_105396.nasl +lib/nessus/plugins/solaris26_x86_105402.nasl +lib/nessus/plugins/solaris26_x86_105406.nasl +lib/nessus/plugins/solaris26_x86_105408.nasl +lib/nessus/plugins/solaris26_x86_105530.nasl +lib/nessus/plugins/solaris26_x86_105553.nasl +lib/nessus/plugins/solaris26_x86_105559.nasl +lib/nessus/plugins/solaris26_x86_105563.nasl +lib/nessus/plugins/solaris26_x86_105565.nasl +lib/nessus/plugins/solaris26_x86_105567.nasl +lib/nessus/plugins/solaris26_x86_105601.nasl +lib/nessus/plugins/solaris26_x86_105616.nasl +lib/nessus/plugins/solaris26_x86_105617.nasl +lib/nessus/plugins/solaris26_x86_105639.nasl +lib/nessus/plugins/solaris26_x86_105666.nasl +lib/nessus/plugins/solaris26_x86_105668.nasl +lib/nessus/plugins/solaris26_x86_105670.nasl +lib/nessus/plugins/solaris26_x86_105694.nasl +lib/nessus/plugins/solaris26_x86_105704.nasl +lib/nessus/plugins/solaris26_x86_105723.nasl +lib/nessus/plugins/solaris26_x86_105756.nasl +lib/nessus/plugins/solaris26_x86_105781.nasl +lib/nessus/plugins/solaris26_x86_105787.nasl +lib/nessus/plugins/solaris26_x86_105801.nasl +lib/nessus/plugins/solaris26_x86_105803.nasl +lib/nessus/plugins/solaris26_x86_105838.nasl +lib/nessus/plugins/solaris26_x86_105991.nasl +lib/nessus/plugins/solaris26_x86_106028.nasl +lib/nessus/plugins/solaris26_x86_106041.nasl +lib/nessus/plugins/solaris26_x86_106050.nasl +lib/nessus/plugins/solaris26_x86_106113.nasl +lib/nessus/plugins/solaris26_x86_106124.nasl +lib/nessus/plugins/solaris26_x86_106126.nasl +lib/nessus/plugins/solaris26_x86_106194.nasl +lib/nessus/plugins/solaris26_x86_106223.nasl +lib/nessus/plugins/solaris26_x86_106236.nasl +lib/nessus/plugins/solaris26_x86_106243.nasl +lib/nessus/plugins/solaris26_x86_106248.nasl +lib/nessus/plugins/solaris26_x86_106258.nasl +lib/nessus/plugins/solaris26_x86_106293.nasl +lib/nessus/plugins/solaris26_x86_106302.nasl +lib/nessus/plugins/solaris26_x86_106304.nasl +lib/nessus/plugins/solaris26_x86_106353.nasl +lib/nessus/plugins/solaris26_x86_106362.nasl +lib/nessus/plugins/solaris26_x86_106416.nasl +lib/nessus/plugins/solaris26_x86_106438.nasl +lib/nessus/plugins/solaris26_x86_106440.nasl +lib/nessus/plugins/solaris26_x86_106449.nasl +lib/nessus/plugins/solaris26_x86_106469.nasl +lib/nessus/plugins/solaris26_x86_106523.nasl +lib/nessus/plugins/solaris26_x86_106570.nasl +lib/nessus/plugins/solaris26_x86_106593.nasl +lib/nessus/plugins/solaris26_x86_106626.nasl +lib/nessus/plugins/solaris26_x86_106640.nasl +lib/nessus/plugins/solaris26_x86_106657.nasl +lib/nessus/plugins/solaris26_x86_106658.nasl +lib/nessus/plugins/solaris26_x86_106659.nasl +lib/nessus/plugins/solaris26_x86_106835.nasl +lib/nessus/plugins/solaris26_x86_107299.nasl +lib/nessus/plugins/solaris26_x86_107327.nasl +lib/nessus/plugins/solaris26_x86_107338.nasl +lib/nessus/plugins/solaris26_x86_107566.nasl +lib/nessus/plugins/solaris26_x86_107619.nasl +lib/nessus/plugins/solaris26_x86_107734.nasl +lib/nessus/plugins/solaris26_x86_107759.nasl +lib/nessus/plugins/solaris26_x86_107767.nasl +lib/nessus/plugins/solaris26_x86_107775.nasl +lib/nessus/plugins/solaris26_x86_107992.nasl +lib/nessus/plugins/solaris26_x86_108130.nasl +lib/nessus/plugins/solaris26_x86_108200.nasl +lib/nessus/plugins/solaris26_x86_108202.nasl +lib/nessus/plugins/solaris26_x86_108308.nasl +lib/nessus/plugins/solaris26_x86_108334.nasl +lib/nessus/plugins/solaris26_x86_108389.nasl +lib/nessus/plugins/solaris26_x86_108469.nasl +lib/nessus/plugins/solaris26_x86_108493.nasl +lib/nessus/plugins/solaris26_x86_108500.nasl +lib/nessus/plugins/solaris26_x86_108661.nasl +lib/nessus/plugins/solaris26_x86_108805.nasl +lib/nessus/plugins/solaris26_x86_108891.nasl +lib/nessus/plugins/solaris26_x86_108894.nasl +lib/nessus/plugins/solaris26_x86_108896.nasl +lib/nessus/plugins/solaris26_x86_109101.nasl +lib/nessus/plugins/solaris26_x86_109267.nasl +lib/nessus/plugins/solaris26_x86_109340.nasl +lib/nessus/plugins/solaris26_x86_109389.nasl +lib/nessus/plugins/solaris26_x86_109720.nasl +lib/nessus/plugins/solaris26_x86_110884.nasl +lib/nessus/plugins/solaris26_x86_110991.nasl +lib/nessus/plugins/solaris26_x86_111040.nasl +lib/nessus/plugins/solaris26_x86_111237.nasl +lib/nessus/plugins/solaris26_x86_111241.nasl +lib/nessus/plugins/solaris26_x86_111561.nasl +lib/nessus/plugins/solaris26_x86_111860.nasl +lib/nessus/plugins/solaris26_x86_111974.nasl +lib/nessus/plugins/solaris26_x86_112074.nasl +lib/nessus/plugins/solaris26_x86_112457.nasl +lib/nessus/plugins/solaris26_x86_112766.nasl +lib/nessus/plugins/solaris26_x86_112815.nasl +lib/nessus/plugins/solaris26_x86_112894.nasl +lib/nessus/plugins/solaris26_x86_113755.nasl +lib/nessus/plugins/solaris26_x86_114890.nasl +lib/nessus/plugins/solaris26_x86_114942.nasl +lib/nessus/plugins/solaris26_x86_115428.nasl +lib/nessus/plugins/solaris26_x86_115564.nasl +lib/nessus/plugins/solaris7_106541.nasl +lib/nessus/plugins/solaris7_106725.nasl +lib/nessus/plugins/solaris7_106793.nasl +lib/nessus/plugins/solaris7_106934.nasl +lib/nessus/plugins/solaris7_106938.nasl +lib/nessus/plugins/solaris7_106942.nasl +lib/nessus/plugins/solaris7_106944.nasl +lib/nessus/plugins/solaris7_106949.nasl +lib/nessus/plugins/solaris7_106950.nasl +lib/nessus/plugins/solaris7_106952.nasl +lib/nessus/plugins/solaris7_106978.nasl +lib/nessus/plugins/solaris7_107022.nasl +lib/nessus/plugins/solaris7_107038.nasl +lib/nessus/plugins/solaris7_107058.nasl +lib/nessus/plugins/solaris7_107115.nasl +lib/nessus/plugins/solaris7_107171.nasl +lib/nessus/plugins/solaris7_107178.nasl +lib/nessus/plugins/solaris7_107180.nasl +lib/nessus/plugins/solaris7_107200.nasl +lib/nessus/plugins/solaris7_107259.nasl +lib/nessus/plugins/solaris7_107285.nasl +lib/nessus/plugins/solaris7_107337.nasl +lib/nessus/plugins/solaris7_107374.nasl +lib/nessus/plugins/solaris7_107403.nasl +lib/nessus/plugins/solaris7_107441.nasl +lib/nessus/plugins/solaris7_107443.nasl +lib/nessus/plugins/solaris7_107451.nasl +lib/nessus/plugins/solaris7_107454.nasl +lib/nessus/plugins/solaris7_107456.nasl +lib/nessus/plugins/solaris7_107475.nasl +lib/nessus/plugins/solaris7_107477.nasl +lib/nessus/plugins/solaris7_107589.nasl +lib/nessus/plugins/solaris7_107636.nasl +lib/nessus/plugins/solaris7_107650.nasl +lib/nessus/plugins/solaris7_107654.nasl +lib/nessus/plugins/solaris7_107684.nasl +lib/nessus/plugins/solaris7_107702.nasl +lib/nessus/plugins/solaris7_107709.nasl +lib/nessus/plugins/solaris7_107716.nasl +lib/nessus/plugins/solaris7_107792.nasl +lib/nessus/plugins/solaris7_107794.nasl +lib/nessus/plugins/solaris7_107885.nasl +lib/nessus/plugins/solaris7_107887.nasl +lib/nessus/plugins/solaris7_107893.nasl +lib/nessus/plugins/solaris7_107972.nasl +lib/nessus/plugins/solaris7_108117.nasl +lib/nessus/plugins/solaris7_108162.nasl +lib/nessus/plugins/solaris7_108219.nasl +lib/nessus/plugins/solaris7_108221.nasl +lib/nessus/plugins/solaris7_108263.nasl +lib/nessus/plugins/solaris7_108301.nasl +lib/nessus/plugins/solaris7_108317.nasl +lib/nessus/plugins/solaris7_108319.nasl +lib/nessus/plugins/solaris7_108327.nasl +lib/nessus/plugins/solaris7_108376.nasl +lib/nessus/plugins/solaris7_108381.nasl +lib/nessus/plugins/solaris7_108451.nasl +lib/nessus/plugins/solaris7_108482.nasl +lib/nessus/plugins/solaris7_108484.nasl +lib/nessus/plugins/solaris7_108551.nasl +lib/nessus/plugins/solaris7_108574.nasl +lib/nessus/plugins/solaris7_108585.nasl +lib/nessus/plugins/solaris7_108662.nasl +lib/nessus/plugins/solaris7_108721.nasl +lib/nessus/plugins/solaris7_108748.nasl +lib/nessus/plugins/solaris7_108750.nasl +lib/nessus/plugins/solaris7_108756.nasl +lib/nessus/plugins/solaris7_108758.nasl +lib/nessus/plugins/solaris7_108760.nasl +lib/nessus/plugins/solaris7_108762.nasl +lib/nessus/plugins/solaris7_108764.nasl +lib/nessus/plugins/solaris7_108798.nasl +lib/nessus/plugins/solaris7_108800.nasl +lib/nessus/plugins/solaris7_108838.nasl +lib/nessus/plugins/solaris7_109203.nasl +lib/nessus/plugins/solaris7_109253.nasl +lib/nessus/plugins/solaris7_109372.nasl +lib/nessus/plugins/solaris7_109404.nasl +lib/nessus/plugins/solaris7_109409.nasl +lib/nessus/plugins/solaris7_109709.nasl +lib/nessus/plugins/solaris7_109744.nasl +lib/nessus/plugins/solaris7_109797.nasl +lib/nessus/plugins/solaris7_109949.nasl +lib/nessus/plugins/solaris7_110070.nasl +lib/nessus/plugins/solaris7_110646.nasl +lib/nessus/plugins/solaris7_110869.nasl +lib/nessus/plugins/solaris7_111093.nasl +lib/nessus/plugins/solaris7_111238.nasl +lib/nessus/plugins/solaris7_111242.nasl +lib/nessus/plugins/solaris7_111350.nasl +lib/nessus/plugins/solaris7_111590.nasl +lib/nessus/plugins/solaris7_111600.nasl +lib/nessus/plugins/solaris7_111646.nasl +lib/nessus/plugins/solaris7_111931.nasl +lib/nessus/plugins/solaris7_111980.nasl +lib/nessus/plugins/solaris7_112300.nasl +lib/nessus/plugins/solaris7_112448.nasl +lib/nessus/plugins/solaris7_112604.nasl +lib/nessus/plugins/solaris7_112672.nasl +lib/nessus/plugins/solaris7_112820.nasl +lib/nessus/plugins/solaris7_112899.nasl +lib/nessus/plugins/solaris7_113752.nasl +lib/nessus/plugins/solaris7_114891.nasl +lib/nessus/plugins/solaris7_114944.nasl +lib/nessus/plugins/solaris7_115565.nasl +lib/nessus/plugins/solaris7_116456.nasl +lib/nessus/plugins/solaris7_116858.nasl +lib/nessus/plugins/solaris7_x86_106542.nasl +lib/nessus/plugins/solaris7_x86_106737.nasl +lib/nessus/plugins/solaris7_x86_106794.nasl +lib/nessus/plugins/solaris7_x86_106935.nasl +lib/nessus/plugins/solaris7_x86_106939.nasl +lib/nessus/plugins/solaris7_x86_106943.nasl +lib/nessus/plugins/solaris7_x86_106945.nasl +lib/nessus/plugins/solaris7_x86_106951.nasl +lib/nessus/plugins/solaris7_x86_106953.nasl +lib/nessus/plugins/solaris7_x86_106979.nasl +lib/nessus/plugins/solaris7_x86_107023.nasl +lib/nessus/plugins/solaris7_x86_107039.nasl +lib/nessus/plugins/solaris7_x86_107116.nasl +lib/nessus/plugins/solaris7_x86_107172.nasl +lib/nessus/plugins/solaris7_x86_107179.nasl +lib/nessus/plugins/solaris7_x86_107181.nasl +lib/nessus/plugins/solaris7_x86_107201.nasl +lib/nessus/plugins/solaris7_x86_107260.nasl +lib/nessus/plugins/solaris7_x86_107286.nasl +lib/nessus/plugins/solaris7_x86_107339.nasl +lib/nessus/plugins/solaris7_x86_107375.nasl +lib/nessus/plugins/solaris7_x86_107404.nasl +lib/nessus/plugins/solaris7_x86_107442.nasl +lib/nessus/plugins/solaris7_x86_107444.nasl +lib/nessus/plugins/solaris7_x86_107452.nasl +lib/nessus/plugins/solaris7_x86_107455.nasl +lib/nessus/plugins/solaris7_x86_107457.nasl +lib/nessus/plugins/solaris7_x86_107476.nasl +lib/nessus/plugins/solaris7_x86_107478.nasl +lib/nessus/plugins/solaris7_x86_107637.nasl +lib/nessus/plugins/solaris7_x86_107651.nasl +lib/nessus/plugins/solaris7_x86_107655.nasl +lib/nessus/plugins/solaris7_x86_107685.nasl +lib/nessus/plugins/solaris7_x86_107703.nasl +lib/nessus/plugins/solaris7_x86_107710.nasl +lib/nessus/plugins/solaris7_x86_107793.nasl +lib/nessus/plugins/solaris7_x86_107795.nasl +lib/nessus/plugins/solaris7_x86_107886.nasl +lib/nessus/plugins/solaris7_x86_107888.nasl +lib/nessus/plugins/solaris7_x86_107894.nasl +lib/nessus/plugins/solaris7_x86_107973.nasl +lib/nessus/plugins/solaris7_x86_108088.nasl +lib/nessus/plugins/solaris7_x86_108092.nasl +lib/nessus/plugins/solaris7_x86_108118.nasl +lib/nessus/plugins/solaris7_x86_108163.nasl +lib/nessus/plugins/solaris7_x86_108220.nasl +lib/nessus/plugins/solaris7_x86_108222.nasl +lib/nessus/plugins/solaris7_x86_108302.nasl +lib/nessus/plugins/solaris7_x86_108320.nasl +lib/nessus/plugins/solaris7_x86_108328.nasl +lib/nessus/plugins/solaris7_x86_108377.nasl +lib/nessus/plugins/solaris7_x86_108382.nasl +lib/nessus/plugins/solaris7_x86_108452.nasl +lib/nessus/plugins/solaris7_x86_108483.nasl +lib/nessus/plugins/solaris7_x86_108485.nasl +lib/nessus/plugins/solaris7_x86_108552.nasl +lib/nessus/plugins/solaris7_x86_108575.nasl +lib/nessus/plugins/solaris7_x86_108663.nasl +lib/nessus/plugins/solaris7_x86_108722.nasl +lib/nessus/plugins/solaris7_x86_108749.nasl +lib/nessus/plugins/solaris7_x86_108751.nasl +lib/nessus/plugins/solaris7_x86_108757.nasl +lib/nessus/plugins/solaris7_x86_108759.nasl +lib/nessus/plugins/solaris7_x86_108761.nasl +lib/nessus/plugins/solaris7_x86_108763.nasl +lib/nessus/plugins/solaris7_x86_108765.nasl +lib/nessus/plugins/solaris7_x86_108799.nasl +lib/nessus/plugins/solaris7_x86_108801.nasl +lib/nessus/plugins/solaris7_x86_108839.nasl +lib/nessus/plugins/solaris7_x86_109204.nasl +lib/nessus/plugins/solaris7_x86_109252.nasl +lib/nessus/plugins/solaris7_x86_109254.nasl +lib/nessus/plugins/solaris7_x86_109373.nasl +lib/nessus/plugins/solaris7_x86_109402.nasl +lib/nessus/plugins/solaris7_x86_109405.nasl +lib/nessus/plugins/solaris7_x86_109410.nasl +lib/nessus/plugins/solaris7_x86_109710.nasl +lib/nessus/plugins/solaris7_x86_109745.nasl +lib/nessus/plugins/solaris7_x86_109950.nasl +lib/nessus/plugins/solaris7_x86_110071.nasl +lib/nessus/plugins/solaris7_x86_110647.nasl +lib/nessus/plugins/solaris7_x86_110808.nasl +lib/nessus/plugins/solaris7_x86_110870.nasl +lib/nessus/plugins/solaris7_x86_111094.nasl +lib/nessus/plugins/solaris7_x86_111239.nasl +lib/nessus/plugins/solaris7_x86_111243.nasl +lib/nessus/plugins/solaris7_x86_111351.nasl +lib/nessus/plugins/solaris7_x86_111591.nasl +lib/nessus/plugins/solaris7_x86_111601.nasl +lib/nessus/plugins/solaris7_x86_111932.nasl +lib/nessus/plugins/solaris7_x86_111981.nasl +lib/nessus/plugins/solaris7_x86_112301.nasl +lib/nessus/plugins/solaris7_x86_112449.nasl +lib/nessus/plugins/solaris7_x86_112673.nasl +lib/nessus/plugins/solaris7_x86_112821.nasl +lib/nessus/plugins/solaris7_x86_112900.nasl +lib/nessus/plugins/solaris7_x86_113753.nasl +lib/nessus/plugins/solaris7_x86_114892.nasl +lib/nessus/plugins/solaris7_x86_114945.nasl +lib/nessus/plugins/solaris7_x86_115429.nasl +lib/nessus/plugins/solaris7_x86_115566.nasl +lib/nessus/plugins/solaris7_x86_116457.nasl +lib/nessus/plugins/solaris8_108528.nasl +lib/nessus/plugins/solaris8_108773.nasl +lib/nessus/plugins/solaris8_108835.nasl +lib/nessus/plugins/solaris8_108869.nasl +lib/nessus/plugins/solaris8_108899.nasl +lib/nessus/plugins/solaris8_108909.nasl +lib/nessus/plugins/solaris8_108919.nasl +lib/nessus/plugins/solaris8_108949.nasl +lib/nessus/plugins/solaris8_108968.nasl +lib/nessus/plugins/solaris8_108975.nasl +lib/nessus/plugins/solaris8_108981.nasl +lib/nessus/plugins/solaris8_108985.nasl +lib/nessus/plugins/solaris8_108987.nasl +lib/nessus/plugins/solaris8_108993.nasl +lib/nessus/plugins/solaris8_109007.nasl +lib/nessus/plugins/solaris8_109077.nasl +lib/nessus/plugins/solaris8_109091.nasl +lib/nessus/plugins/solaris8_109134.nasl +lib/nessus/plugins/solaris8_109147.nasl +lib/nessus/plugins/solaris8_109149.nasl +lib/nessus/plugins/solaris8_109152.nasl +lib/nessus/plugins/solaris8_109154.nasl +lib/nessus/plugins/solaris8_109202.nasl +lib/nessus/plugins/solaris8_109238.nasl +lib/nessus/plugins/solaris8_109320.nasl +lib/nessus/plugins/solaris8_109324.nasl +lib/nessus/plugins/solaris8_109326.nasl +lib/nessus/plugins/solaris8_109328.nasl +lib/nessus/plugins/solaris8_109354.nasl +lib/nessus/plugins/solaris8_109458.nasl +lib/nessus/plugins/solaris8_109667.nasl +lib/nessus/plugins/solaris8_109695.nasl +lib/nessus/plugins/solaris8_109783.nasl +lib/nessus/plugins/solaris8_109793.nasl +lib/nessus/plugins/solaris8_109805.nasl +lib/nessus/plugins/solaris8_109815.nasl +lib/nessus/plugins/solaris8_109887.nasl +lib/nessus/plugins/solaris8_109893.nasl +lib/nessus/plugins/solaris8_109894.nasl +lib/nessus/plugins/solaris8_109896.nasl +lib/nessus/plugins/solaris8_109898.nasl +lib/nessus/plugins/solaris8_109922.nasl +lib/nessus/plugins/solaris8_109951.nasl +lib/nessus/plugins/solaris8_110068.nasl +lib/nessus/plugins/solaris8_110075.nasl +lib/nessus/plugins/solaris8_110286.nasl +lib/nessus/plugins/solaris8_110322.nasl +lib/nessus/plugins/solaris8_110335.nasl +lib/nessus/plugins/solaris8_110386.nasl +lib/nessus/plugins/solaris8_110387.nasl +lib/nessus/plugins/solaris8_110389.nasl +lib/nessus/plugins/solaris8_110416.nasl +lib/nessus/plugins/solaris8_110453.nasl +lib/nessus/plugins/solaris8_110458.nasl +lib/nessus/plugins/solaris8_110461.nasl +lib/nessus/plugins/solaris8_110615.nasl +lib/nessus/plugins/solaris8_110668.nasl +lib/nessus/plugins/solaris8_110670.nasl +lib/nessus/plugins/solaris8_110820.nasl +lib/nessus/plugins/solaris8_110896.nasl +lib/nessus/plugins/solaris8_110898.nasl +lib/nessus/plugins/solaris8_110903.nasl +lib/nessus/plugins/solaris8_110916.nasl +lib/nessus/plugins/solaris8_110934.nasl +lib/nessus/plugins/solaris8_110943.nasl +lib/nessus/plugins/solaris8_110945.nasl +lib/nessus/plugins/solaris8_110953.nasl +lib/nessus/plugins/solaris8_110955.nasl +lib/nessus/plugins/solaris8_110957.nasl +lib/nessus/plugins/solaris8_111069.nasl +lib/nessus/plugins/solaris8_111071.nasl +lib/nessus/plugins/solaris8_111232.nasl +lib/nessus/plugins/solaris8_111234.nasl +lib/nessus/plugins/solaris8_111313.nasl +lib/nessus/plugins/solaris8_111321.nasl +lib/nessus/plugins/solaris8_111325.nasl +lib/nessus/plugins/solaris8_111332.nasl +lib/nessus/plugins/solaris8_111400.nasl +lib/nessus/plugins/solaris8_111504.nasl +lib/nessus/plugins/solaris8_111548.nasl +lib/nessus/plugins/solaris8_111570.nasl +lib/nessus/plugins/solaris8_111588.nasl +lib/nessus/plugins/solaris8_111596.nasl +lib/nessus/plugins/solaris8_111606.nasl +lib/nessus/plugins/solaris8_111624.nasl +lib/nessus/plugins/solaris8_111626.nasl +lib/nessus/plugins/solaris8_111647.nasl +lib/nessus/plugins/solaris8_111826.nasl +lib/nessus/plugins/solaris8_111874.nasl +lib/nessus/plugins/solaris8_111881.nasl +lib/nessus/plugins/solaris8_111883.nasl +lib/nessus/plugins/solaris8_112039.nasl +lib/nessus/plugins/solaris8_112237.nasl +lib/nessus/plugins/solaris8_112390.nasl +lib/nessus/plugins/solaris8_112459.nasl +lib/nessus/plugins/solaris8_112609.nasl +lib/nessus/plugins/solaris8_112611.nasl +lib/nessus/plugins/solaris8_112668.nasl +lib/nessus/plugins/solaris8_112792.nasl +lib/nessus/plugins/solaris8_112796.nasl +lib/nessus/plugins/solaris8_112846.nasl +lib/nessus/plugins/solaris8_113650.nasl +lib/nessus/plugins/solaris8_113685.nasl +lib/nessus/plugins/solaris8_113687.nasl +lib/nessus/plugins/solaris8_113792.nasl +lib/nessus/plugins/solaris8_114162.nasl +lib/nessus/plugins/solaris8_114673.nasl +lib/nessus/plugins/solaris8_114802.nasl +lib/nessus/plugins/solaris8_114984.nasl +lib/nessus/plugins/solaris8_115797.nasl +lib/nessus/plugins/solaris8_116455.nasl +lib/nessus/plugins/solaris8_117000.nasl +lib/nessus/plugins/solaris8_x86_108529.nasl +lib/nessus/plugins/solaris8_x86_108774.nasl +lib/nessus/plugins/solaris8_x86_108836.nasl +lib/nessus/plugins/solaris8_x86_108870.nasl +lib/nessus/plugins/solaris8_x86_108900.nasl +lib/nessus/plugins/solaris8_x86_108920.nasl +lib/nessus/plugins/solaris8_x86_108950.nasl +lib/nessus/plugins/solaris8_x86_108969.nasl +lib/nessus/plugins/solaris8_x86_108976.nasl +lib/nessus/plugins/solaris8_x86_108986.nasl +lib/nessus/plugins/solaris8_x86_108988.nasl +lib/nessus/plugins/solaris8_x86_108994.nasl +lib/nessus/plugins/solaris8_x86_109008.nasl +lib/nessus/plugins/solaris8_x86_109078.nasl +lib/nessus/plugins/solaris8_x86_109092.nasl +lib/nessus/plugins/solaris8_x86_109135.nasl +lib/nessus/plugins/solaris8_x86_109148.nasl +lib/nessus/plugins/solaris8_x86_109150.nasl +lib/nessus/plugins/solaris8_x86_109155.nasl +lib/nessus/plugins/solaris8_x86_109239.nasl +lib/nessus/plugins/solaris8_x86_109321.nasl +lib/nessus/plugins/solaris8_x86_109325.nasl +lib/nessus/plugins/solaris8_x86_109327.nasl +lib/nessus/plugins/solaris8_x86_109329.nasl +lib/nessus/plugins/solaris8_x86_109355.nasl +lib/nessus/plugins/solaris8_x86_109401.nasl +lib/nessus/plugins/solaris8_x86_109459.nasl +lib/nessus/plugins/solaris8_x86_109668.nasl +lib/nessus/plugins/solaris8_x86_109784.nasl +lib/nessus/plugins/solaris8_x86_109806.nasl +lib/nessus/plugins/solaris8_x86_109895.nasl +lib/nessus/plugins/solaris8_x86_109897.nasl +lib/nessus/plugins/solaris8_x86_109899.nasl +lib/nessus/plugins/solaris8_x86_109923.nasl +lib/nessus/plugins/solaris8_x86_109952.nasl +lib/nessus/plugins/solaris8_x86_110069.nasl +lib/nessus/plugins/solaris8_x86_110076.nasl +lib/nessus/plugins/solaris8_x86_110287.nasl +lib/nessus/plugins/solaris8_x86_110323.nasl +lib/nessus/plugins/solaris8_x86_110325.nasl +lib/nessus/plugins/solaris8_x86_110336.nasl +lib/nessus/plugins/solaris8_x86_110400.nasl +lib/nessus/plugins/solaris8_x86_110402.nasl +lib/nessus/plugins/solaris8_x86_110417.nasl +lib/nessus/plugins/solaris8_x86_110454.nasl +lib/nessus/plugins/solaris8_x86_110459.nasl +lib/nessus/plugins/solaris8_x86_110462.nasl +lib/nessus/plugins/solaris8_x86_110616.nasl +lib/nessus/plugins/solaris8_x86_110669.nasl +lib/nessus/plugins/solaris8_x86_110671.nasl +lib/nessus/plugins/solaris8_x86_110672.nasl +lib/nessus/plugins/solaris8_x86_110897.nasl +lib/nessus/plugins/solaris8_x86_110899.nasl +lib/nessus/plugins/solaris8_x86_110904.nasl +lib/nessus/plugins/solaris8_x86_110917.nasl +lib/nessus/plugins/solaris8_x86_110935.nasl +lib/nessus/plugins/solaris8_x86_110944.nasl +lib/nessus/plugins/solaris8_x86_110946.nasl +lib/nessus/plugins/solaris8_x86_110954.nasl +lib/nessus/plugins/solaris8_x86_110956.nasl +lib/nessus/plugins/solaris8_x86_110958.nasl +lib/nessus/plugins/solaris8_x86_111070.nasl +lib/nessus/plugins/solaris8_x86_111072.nasl +lib/nessus/plugins/solaris8_x86_111233.nasl +lib/nessus/plugins/solaris8_x86_111235.nasl +lib/nessus/plugins/solaris8_x86_111314.nasl +lib/nessus/plugins/solaris8_x86_111322.nasl +lib/nessus/plugins/solaris8_x86_111326.nasl +lib/nessus/plugins/solaris8_x86_111401.nasl +lib/nessus/plugins/solaris8_x86_111505.nasl +lib/nessus/plugins/solaris8_x86_111549.nasl +lib/nessus/plugins/solaris8_x86_111571.nasl +lib/nessus/plugins/solaris8_x86_111589.nasl +lib/nessus/plugins/solaris8_x86_111597.nasl +lib/nessus/plugins/solaris8_x86_111607.nasl +lib/nessus/plugins/solaris8_x86_111625.nasl +lib/nessus/plugins/solaris8_x86_111627.nasl +lib/nessus/plugins/solaris8_x86_111827.nasl +lib/nessus/plugins/solaris8_x86_111875.nasl +lib/nessus/plugins/solaris8_x86_111882.nasl +lib/nessus/plugins/solaris8_x86_112040.nasl +lib/nessus/plugins/solaris8_x86_112238.nasl +lib/nessus/plugins/solaris8_x86_112240.nasl +lib/nessus/plugins/solaris8_x86_112352.nasl +lib/nessus/plugins/solaris8_x86_112460.nasl +lib/nessus/plugins/solaris8_x86_112612.nasl +lib/nessus/plugins/solaris8_x86_112669.nasl +lib/nessus/plugins/solaris8_x86_112793.nasl +lib/nessus/plugins/solaris8_x86_112797.nasl +lib/nessus/plugins/solaris8_x86_112847.nasl +lib/nessus/plugins/solaris8_x86_113651.nasl +lib/nessus/plugins/solaris8_x86_113686.nasl +lib/nessus/plugins/solaris8_x86_113688.nasl +lib/nessus/plugins/solaris8_x86_113793.nasl +lib/nessus/plugins/solaris8_x86_114046.nasl +lib/nessus/plugins/solaris8_x86_114154.nasl +lib/nessus/plugins/solaris8_x86_114163.nasl +lib/nessus/plugins/solaris8_x86_114617.nasl +lib/nessus/plugins/solaris8_x86_114674.nasl +lib/nessus/plugins/solaris8_x86_114985.nasl +lib/nessus/plugins/solaris8_x86_115798.nasl +lib/nessus/plugins/solaris8_x86_116442.nasl +lib/nessus/plugins/solaris8_x86_117001.nasl +lib/nessus/plugins/solaris9_112233.nasl +lib/nessus/plugins/solaris9_112601.nasl +lib/nessus/plugins/solaris9_112617.nasl +lib/nessus/plugins/solaris9_112661.nasl +lib/nessus/plugins/solaris9_112807.nasl +lib/nessus/plugins/solaris9_112808.nasl +lib/nessus/plugins/solaris9_112810.nasl +lib/nessus/plugins/solaris9_112817.nasl +lib/nessus/plugins/solaris9_112874.nasl +lib/nessus/plugins/solaris9_112875.nasl +lib/nessus/plugins/solaris9_112908.nasl +lib/nessus/plugins/solaris9_112921.nasl +lib/nessus/plugins/solaris9_112922.nasl +lib/nessus/plugins/solaris9_112923.nasl +lib/nessus/plugins/solaris9_112925.nasl +lib/nessus/plugins/solaris9_112926.nasl +lib/nessus/plugins/solaris9_112960.nasl +lib/nessus/plugins/solaris9_112963.nasl +lib/nessus/plugins/solaris9_112970.nasl +lib/nessus/plugins/solaris9_112998.nasl +lib/nessus/plugins/solaris9_113146.nasl +lib/nessus/plugins/solaris9_113240.nasl +lib/nessus/plugins/solaris9_113273.nasl +lib/nessus/plugins/solaris9_113278.nasl +lib/nessus/plugins/solaris9_113279.nasl +lib/nessus/plugins/solaris9_113319.nasl +lib/nessus/plugins/solaris9_113322.nasl +lib/nessus/plugins/solaris9_113329.nasl +lib/nessus/plugins/solaris9_113451.nasl +lib/nessus/plugins/solaris9_113475.nasl +lib/nessus/plugins/solaris9_113492.nasl +lib/nessus/plugins/solaris9_113575.nasl +lib/nessus/plugins/solaris9_113579.nasl +lib/nessus/plugins/solaris9_113713.nasl +lib/nessus/plugins/solaris9_113718.nasl +lib/nessus/plugins/solaris9_114008.nasl +lib/nessus/plugins/solaris9_114014.nasl +lib/nessus/plugins/solaris9_114016.nasl +lib/nessus/plugins/solaris9_114049.nasl +lib/nessus/plugins/solaris9_114125.nasl +lib/nessus/plugins/solaris9_114133.nasl +lib/nessus/plugins/solaris9_114135.nasl +lib/nessus/plugins/solaris9_114332.nasl +lib/nessus/plugins/solaris9_114361.nasl +lib/nessus/plugins/solaris9_114495.nasl +lib/nessus/plugins/solaris9_114564.nasl +lib/nessus/plugins/solaris9_114569.nasl +lib/nessus/plugins/solaris9_114571.nasl +lib/nessus/plugins/solaris9_114636.nasl +lib/nessus/plugins/solaris9_114684.nasl +lib/nessus/plugins/solaris9_114713.nasl +lib/nessus/plugins/solaris9_114729.nasl +lib/nessus/plugins/solaris9_114861.nasl +lib/nessus/plugins/solaris9_114875.nasl +lib/nessus/plugins/solaris9_114971.nasl +lib/nessus/plugins/solaris9_115172.nasl +lib/nessus/plugins/solaris9_115553.nasl +lib/nessus/plugins/solaris9_115754.nasl +lib/nessus/plugins/solaris9_115926.nasl +lib/nessus/plugins/solaris9_116237.nasl +lib/nessus/plugins/solaris9_116243.nasl +lib/nessus/plugins/solaris9_116247.nasl +lib/nessus/plugins/solaris9_116308.nasl +lib/nessus/plugins/solaris9_116453.nasl +lib/nessus/plugins/solaris9_116489.nasl +lib/nessus/plugins/solaris9_116494.nasl +lib/nessus/plugins/solaris9_116807.nasl +lib/nessus/plugins/solaris9_117071.nasl +lib/nessus/plugins/solaris9_x86_112234.nasl +lib/nessus/plugins/solaris9_x86_112662.nasl +lib/nessus/plugins/solaris9_x86_113112.nasl +lib/nessus/plugins/solaris9_x86_113241.nasl +lib/nessus/plugins/solaris9_x86_113719.nasl +lib/nessus/plugins/solaris9_x86_113870.nasl +lib/nessus/plugins/solaris9_x86_113986.nasl +lib/nessus/plugins/solaris9_x86_113996.nasl +lib/nessus/plugins/solaris9_x86_114009.nasl +lib/nessus/plugins/solaris9_x86_114015.nasl +lib/nessus/plugins/solaris9_x86_114017.nasl +lib/nessus/plugins/solaris9_x86_114050.nasl +lib/nessus/plugins/solaris9_x86_114134.nasl +lib/nessus/plugins/solaris9_x86_114136.nasl +lib/nessus/plugins/solaris9_x86_114137.nasl +lib/nessus/plugins/solaris9_x86_114145.nasl +lib/nessus/plugins/solaris9_x86_114210.nasl +lib/nessus/plugins/solaris9_x86_114242.nasl +lib/nessus/plugins/solaris9_x86_114273.nasl +lib/nessus/plugins/solaris9_x86_114328.nasl +lib/nessus/plugins/solaris9_x86_114342.nasl +lib/nessus/plugins/solaris9_x86_114354.nasl +lib/nessus/plugins/solaris9_x86_114362.nasl +lib/nessus/plugins/solaris9_x86_114432.nasl +lib/nessus/plugins/solaris9_x86_114435.nasl +lib/nessus/plugins/solaris9_x86_114436.nasl +lib/nessus/plugins/solaris9_x86_114496.nasl +lib/nessus/plugins/solaris9_x86_114565.nasl +lib/nessus/plugins/solaris9_x86_114568.nasl +lib/nessus/plugins/solaris9_x86_114570.nasl +lib/nessus/plugins/solaris9_x86_114637.nasl +lib/nessus/plugins/solaris9_x86_114685.nasl +lib/nessus/plugins/solaris9_x86_114714.nasl +lib/nessus/plugins/solaris9_x86_114715.nasl +lib/nessus/plugins/solaris9_x86_114730.nasl +lib/nessus/plugins/solaris9_x86_114733.nasl +lib/nessus/plugins/solaris9_x86_114858.nasl +lib/nessus/plugins/solaris9_x86_114862.nasl +lib/nessus/plugins/solaris9_x86_114876.nasl +lib/nessus/plugins/solaris9_x86_114932.nasl +lib/nessus/plugins/solaris9_x86_114972.nasl +lib/nessus/plugins/solaris9_x86_114980.nasl +lib/nessus/plugins/solaris9_x86_115168.nasl +lib/nessus/plugins/solaris9_x86_115755.nasl +lib/nessus/plugins/solaris9_x86_115880.nasl +lib/nessus/plugins/solaris9_x86_115927.nasl +lib/nessus/plugins/solaris9_x86_116044.nasl +lib/nessus/plugins/solaris9_x86_116045.nasl +lib/nessus/plugins/solaris9_x86_116046.nasl +lib/nessus/plugins/solaris9_x86_116238.nasl +lib/nessus/plugins/solaris9_x86_116244.nasl +lib/nessus/plugins/solaris9_x86_116248.nasl +lib/nessus/plugins/solaris9_x86_116309.nasl +lib/nessus/plugins/solaris9_x86_116454.nasl +lib/nessus/plugins/solaris9_x86_116558.nasl +lib/nessus/plugins/solaris9_x86_116808.nasl +lib/nessus/plugins/solaris9_x86_117072.nasl lib/nessus/plugins/solaris_lpd_env_cmd_exec.nasl +lib/nessus/plugins/sophos_installed.nasl lib/nessus/plugins/source_routed.nasl lib/nessus/plugins/spank.nasl +lib/nessus/plugins/spidersales_sql_injection.nasl lib/nessus/plugins/spinclient.nasl lib/nessus/plugins/spyke_flaws.nasl lib/nessus/plugins/sql_injection.nasl lib/nessus/plugins/sqlqhit_information_disclosure.nasl lib/nessus/plugins/squid_dos.nasl +lib/nessus/plugins/squid_ntlm.nasl +lib/nessus/plugins/squid_null_url_auth_bypass.nasl lib/nessus/plugins/squid_overflows.nasl +lib/nessus/plugins/squirrelmail_143.nasl +lib/nessus/plugins/squirrelmail_detect.nasl lib/nessus/plugins/squirremail_cross_site_scripting.nasl lib/nessus/plugins/squirremail_multiple_flaws.nasl lib/nessus/plugins/sscd_input.nasl @@ -1697,6 +3220,8 @@ lib/nessus/plugins/ssh_detect.nasl lib/nessus/plugins/ssh_dropbear.nasl lib/nessus/plugins/ssh_forwarding.nasl +lib/nessus/plugins/ssh_func.inc +lib/nessus/plugins/ssh_get_info.nasl lib/nessus/plugins/ssh_insertion.nasl lib/nessus/plugins/ssh_kerberos.nasl lib/nessus/plugins/ssh_keygen.nasl @@ -1723,6 +3248,10 @@ lib/nessus/plugins/stronghold_swish.nasl lib/nessus/plugins/stun_detection.nasl lib/nessus/plugins/subseven.nasl +lib/nessus/plugins/subversion_1_0_3.nasl +lib/nessus/plugins/subversion_1_0_4.nasl +lib/nessus/plugins/subversion_1_0_5.nasl +lib/nessus/plugins/subversion_detection.nasl lib/nessus/plugins/sun_cobalt_adaptive_firewall_detect.nasl lib/nessus/plugins/sun_one_jsp_source.nasl lib/nessus/plugins/sunftpd_overflow.nasl @@ -1730,6 +3259,7 @@ lib/nessus/plugins/sunkill.nasl lib/nessus/plugins/superguestbook_config_disclosure.nasl lib/nessus/plugins/superm_son_hserver_traversal.nasl +lib/nessus/plugins/surgeldap_file_disclosure.nasl lib/nessus/plugins/suse_cgi_bin_sdb.nasl lib/nessus/plugins/suse_identd.nasl lib/nessus/plugins/swat_detect.nasl @@ -1741,7 +3271,9 @@ lib/nessus/plugins/systat.nasl lib/nessus/plugins/tanned_format_string.nasl lib/nessus/plugins/tcp_chorusing.nasl +lib/nessus/plugins/tcp_options_dos.nasl lib/nessus/plugins/tcp_seq.nasl +lib/nessus/plugins/tcp_seq_window.nasl lib/nessus/plugins/tcpip_ambiguities.nasl lib/nessus/plugins/teardrop.nasl lib/nessus/plugins/technote.nasl @@ -1774,19 +3306,23 @@ lib/nessus/plugins/tomcat_devname_DoS.nasl lib/nessus/plugins/tomcat_directory_listing_and_file_disclosure.nasl lib/nessus/plugins/tomcat_path_disclosure.nasl +lib/nessus/plugins/tomcat_server_default_files.nasl lib/nessus/plugins/tomcat_snoop.nasl lib/nessus/plugins/tomcat_source_exposure.nasl +lib/nessus/plugins/tomcat_srcjsp_malformed_request.nasl lib/nessus/plugins/tomcat_status.nasl lib/nessus/plugins/torturecgis.nasl lib/nessus/plugins/traceroute.nasl lib/nessus/plugins/translate_f.nasl lib/nessus/plugins/trendmicro_emanager.nasl lib/nessus/plugins/trillian_installed.nasl +lib/nessus/plugins/trillian_patchg.nasl lib/nessus/plugins/trinity.nasl lib/nessus/plugins/trinoo.nasl lib/nessus/plugins/tripwire_webpage.nasl lib/nessus/plugins/trojan_horses.nasl lib/nessus/plugins/truegalerie_admin_bypass.nasl +lib/nessus/plugins/tsweb_detect.nasl lib/nessus/plugins/ttawebtop.nasl lib/nessus/plugins/ttcms_code_injection.nasl lib/nessus/plugins/ttforum_code_injection.nasl @@ -1794,14 +3330,19 @@ lib/nessus/plugins/ttyprompt.nasl lib/nessus/plugins/typo3_dev_read.nasl lib/nessus/plugins/typsoft_ftp_DoS.nasl +lib/nessus/plugins/typsoftftp_1_10.nasl lib/nessus/plugins/uddi.inc lib/nessus/plugins/uddi.nasl lib/nessus/plugins/ultraseek_detect.nasl lib/nessus/plugins/ultraseek_dos.nasl lib/nessus/plugins/unicast_dos.nasl lib/nessus/plugins/unknown_services.nasl +lib/nessus/plugins/unreal_detection.nasl +lib/nessus/plugins/unreal_dos.nasl lib/nessus/plugins/unreal_game_engine.nasl +lib/nessus/plugins/unreal_ircd_cloaking.nasl lib/nessus/plugins/upb_code_injection.nasl +lib/nessus/plugins/upb_info_leak.nasl lib/nessus/plugins/upload_cgi.nasl lib/nessus/plugins/upload_lite_cgi.nasl lib/nessus/plugins/uploader_exe.nasl @@ -1810,6 +3351,7 @@ lib/nessus/plugins/upnp_xp_tcp.nasl lib/nessus/plugins/urlscan_detect.nasl lib/nessus/plugins/usermin_session_id.nasl +lib/nessus/plugins/usrobotics_disclosed_password.nasl lib/nessus/plugins/ustorekeeper.nasl lib/nessus/plugins/uw_imap_overflow.nasl lib/nessus/plugins/uw_imap_overflow_two.nasl @@ -1818,6 +3360,7 @@ lib/nessus/plugins/vcatch_detection.nasl lib/nessus/plugins/vchat_logs.nasl lib/nessus/plugins/vftpd_overflow.nasl +lib/nessus/plugins/vhost_xss.nasl lib/nessus/plugins/view_source_cgi.nasl lib/nessus/plugins/viewpage_file_reading.nasl lib/nessus/plugins/vignette_info_leak.nasl @@ -1842,6 +3385,7 @@ lib/nessus/plugins/wayboard.nasl lib/nessus/plugins/web3000_detection.nasl lib/nessus/plugins/web_chat_xss.nasl +lib/nessus/plugins/web_loadbalancer.nasl lib/nessus/plugins/web_traversal.nasl lib/nessus/plugins/webactive_log.nasl lib/nessus/plugins/webadmin.nasl @@ -1874,6 +3418,7 @@ lib/nessus/plugins/webmirror.nasl lib/nessus/plugins/webnews.nasl lib/nessus/plugins/webplus.nasl +lib/nessus/plugins/webplus_install_path.nasl lib/nessus/plugins/webplus_version.nasl lib/nessus/plugins/webseal_DoS.nasl lib/nessus/plugins/websendmail.nasl @@ -1895,6 +3440,7 @@ lib/nessus/plugins/wfchat_user_disclosure.nasl lib/nessus/plugins/wftp.nasl lib/nessus/plugins/wftp_241_dos.nasl +lib/nessus/plugins/wftp_321_overflow.nasl lib/nessus/plugins/wftp_dos.nasl lib/nessus/plugins/whois_raw.nasl lib/nessus/plugins/wihphoto_file_read.nasl @@ -1902,6 +3448,7 @@ lib/nessus/plugins/win_trinoo.nasl lib/nessus/plugins/winamp_buffer_overflow.nasl lib/nessus/plugins/windmail.nasl +lib/nessus/plugins/windows_asn1_vuln_ntlm.nasl lib/nessus/plugins/windows_terminal_services.nasl lib/nessus/plugins/wingate.nasl lib/nessus/plugins/wingate_denial.nasl @@ -1920,27 +3467,31 @@ lib/nessus/plugins/wordit_logbook.nasl lib/nessus/plugins/wordpress_flaws.nasl lib/nessus/plugins/worldclient_server_detection.nasl -lib/nessus/plugins/worldflash_detection.nasl lib/nessus/plugins/worldspan_gw_DoS.nasl +lib/nessus/plugins/worm_netsky_b.nasl lib/nessus/plugins/wrap.nasl lib/nessus/plugins/writesrv.nasl lib/nessus/plugins/ws4d_overflow.nasl lib/nessus/plugins/ws4e_too_long_url.nasl +lib/nessus/plugins/ws_ftp_client_overflows.nasl lib/nessus/plugins/wsftp_overflows.nasl lib/nessus/plugins/wsmp3d_cmd_exec.nasl lib/nessus/plugins/wu_ftpd_fb_realpath_offby1.nasl lib/nessus/plugins/wu_ftpd_glob.nasl lib/nessus/plugins/wu_ftpd_overflow.nasl lib/nessus/plugins/wu_ftpd_pasv_format_string.nasl +lib/nessus/plugins/wu_ftpd_restricted_gid_bypass.nasl lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl lib/nessus/plugins/wuftpd_ls_DoS.nasl lib/nessus/plugins/www_default_page.nasl lib/nessus/plugins/www_fingerprinting_hmap.nasl lib/nessus/plugins/www_hosting_copyrighted_material.nasl +lib/nessus/plugins/www_incomplete_auth_DoS.nasl lib/nessus/plugins/www_infinite_request_DoS.nasl lib/nessus/plugins/www_server_name.nasl lib/nessus/plugins/www_too_long_auth.nasl +lib/nessus/plugins/www_too_long_auth_DoS.nasl lib/nessus/plugins/www_too_long_cookie.nasl lib/nessus/plugins/www_too_long_header.nasl lib/nessus/plugins/www_too_long_header10.nasl @@ -1962,6 +3513,8 @@ lib/nessus/plugins/xmail_overflow.nasl lib/nessus/plugins/xmb_sql_injection.nasl lib/nessus/plugins/xmb_xss.nasl +lib/nessus/plugins/xmicro_default_password.nasl +lib/nessus/plugins/xnews.nasl lib/nessus/plugins/xolox_installed.nasl lib/nessus/plugins/xoops_myheader_url_xss.nasl lib/nessus/plugins/xoops_path_disclosure.nasl >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08:42: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 8F7CA16A4CE; Tue, 20 Jul 2004 08:42:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F5D243D5D; Tue, 20 Jul 2004 08:42:15 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6K8gFh8013580; Tue, 20 Jul 2004 08:42:15 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8gFIp013576; Tue, 20 Jul 2004 08:42:15 GMT (envelope-from ijliao) Date: Tue, 20 Jul 2004 08:42:15 GMT From: Ying-Chieh Liao Message-Id: <200407200842.i6K8gFIp013576@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/69331: upgrade ports/multimedia/libdv to 0.103 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 08:42:15 -0000 Synopsis: upgrade ports/multimedia/libdv to 0.103 Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: ijliao Responsible-Changed-When: Tue Jul 20 08:42:07 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69331 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 08:50: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 0E96116A4CF for ; Tue, 20 Jul 2004 08:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E400D43D5A for ; Tue, 20 Jul 2004 08:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K8oLMY013771 for ; Tue, 20 Jul 2004 08:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K8oLN7013770; Tue, 20 Jul 2004 08:50:21 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 08:50:21 GMT Resent-Message-Id: <200407200850.i6K8oLN7013770@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jeremy Chadwick Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C91616A4CE for ; Tue, 20 Jul 2004 08:45:27 +0000 (GMT) Received: from mail.parodius.com (mail.parodius.com [64.62.145.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E84343D48 for ; Tue, 20 Jul 2004 08:45:27 +0000 (GMT) (envelope-from jdc@pentarou.parodius.com) Received: from pentarou.parodius.com (jdc@localhost [127.0.0.1]) by mail.parodius.com (8.12.11/8.12.11) with ESMTP id i6K8jQu6017353 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 20 Jul 2004 01:45:26 -0700 (PDT) (envelope-from jdc@pentarou.parodius.com) Received: (from jdc@localhost) by pentarou.parodius.com (8.12.11/8.12.11/Submit) id i6K8jQcT017352; Tue, 20 Jul 2004 01:45:26 -0700 (PDT) (envelope-from jdc) Message-Id: <200407200845.i6K8jQcT017352@pentarou.parodius.com> Date: Tue, 20 Jul 2004 01:45:26 -0700 (PDT) From: Jeremy Chadwick To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69334: Fix for /suphp.log (should be /var/log/suphp.log) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jeremy Chadwick List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 08:50:22 -0000 >Number: 69334 >Category: ports >Synopsis: Fix for /suphp.log (should be /var/log/suphp.log) >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 Jul 20 08:50:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 4.10-PRERELEASE i386 >Organization: Parodius Networking >Environment: System: FreeBSD pentarou.parodius.com 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #0: Wed May 5 03:33:17 PDT 2004 root@pentarou.parodius.com:/usr/obj/usr/src/sys/PENTAROU i386 >Description: The present suphp port has some incorrect framework for specification of where the logfile points, assuming the user DOES NOT specify the LOG_PATH variable upon build (by default, it's empty). The logfile will end up in / (a.k.a. /suphp.log), which is naughty. The included Makefile patch should fix things up by removing LOG_PATH and WITH_LOGNAME, and using a single variable: LOGFILE, which by default points to /var/log/suphp.log. >How-To-Repeat: Build suphp without defining LOG_PATH. >Fix: See attached patch below. --- Makefile.orig Thu Jul 15 15:13:36 2004 +++ Makefile Tue Jul 20 01:36:37 2004 @@ -19,8 +19,7 @@ USE_APACHE= yes CONFLICTS= mod_php4-4* php-4.* -LOG_PATH?= ${WITH_LOGPATH} -WITH_LOGNAME?= suphp.log +LOGFILE?= /var/log/suphp.log PHP_PATH?= ${LOCALBASE}/bin/php APACHE_USER?= ${WWWOWN} MIN_UID?= 80 @@ -31,7 +30,7 @@ LANG= en de CONFIGURE_ARGS+= --with-php=${PHP_PATH} \ - --with-logfile=${LOG_PATH}/${WITH_LOGNAME} \ + --with-logfile=${LOGFILE} \ --with-apache-user=${APACHE_USER} \ --with-min-gid=${MIN_UID} \ --with-min-uid=${MIN_GID} \ @@ -52,9 +51,6 @@ .endif ## WITH_SETID_MODE: Mode to use for setting UID/GID. CONFIGURE_ARGS+= --with-setid-mode=${WITH_SETID_MODE} -## WITH_LOGPATH (formerly known as LOG_PATH): logging directory -## (default: /var/log) -## WITH_LOGNAME: log file name (default suphp.log) .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 09:06: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 58DFF16A4CE; Tue, 20 Jul 2004 09:06:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3879043D2D; Tue, 20 Jul 2004 09:06:40 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6K96eda018263; Tue, 20 Jul 2004 09:06:40 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K96dP9018257; Tue, 20 Jul 2004 09:06:39 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 09:06:39 GMT From: Volker Stolz Message-Id: <200407200906.i6K96dP9018257@freefall.freebsd.org> To: herve.quiroz@esil.univ-mrs.fr, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69055: [PATCH] textproc/xml4j: update to 4.3.0 and fix 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, 20 Jul 2004 09:06:40 -0000 Synopsis: [PATCH] textproc/xml4j: update to 4.3.0 and fix port State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Jul 20 09:06:16 GMT 2004 State-Changed-Why: After deinstallation: xml4j@menelaos [11:05:06]> ls -l /usr/local/share/java/xml4j/ total 10 -r--r--r-- 1 root wheel 1206 Jul 20 10:38 personal-schema.xml -r--r--r-- 1 root wheel 619 Jul 20 10:38 personal.dtd -r--r--r-- 1 root wheel 1145 Jul 20 10:38 personal.xml -r--r--r-- 1 root wheel 2139 Jul 20 10:38 personal.xsd Cheers, Volker http://www.freebsd.org/cgi/query-pr.cgi?pr=69055 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 09: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 04E0616A4CF for ; Tue, 20 Jul 2004 09:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAFA343D49 for ; Tue, 20 Jul 2004 09:10:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K9AR90018693 for ; Tue, 20 Jul 2004 09:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K9ARsF018692; Tue, 20 Jul 2004 09:10:27 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 09:10:27 GMT Resent-Message-Id: <200407200910.i6K9ARsF018692@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrej Zverev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51A2A16A4CE for ; Tue, 20 Jul 2004 09:00:49 +0000 (GMT) Received: from waterwall.inec.ru (waterwall.inec.ru [213.148.3.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7695F43D39 for ; Tue, 20 Jul 2004 09:00:48 +0000 (GMT) (envelope-from az@waterwall.inec.ru) Received: from waterwall.inec.ru (root@localhost) by waterwall.inec.ru (8.12.9p2/8.12.9) with SMTP id i6K9AeMS044583 for ; Tue, 20 Jul 2004 13:10:40 +0400 (MSD) (envelope-from az@waterwall.inec.ru) Received: from waterwall.inec.ru (localhost.inec.ru [127.0.0.1]) by localhost (8.12.9p2/8.12.6) with ESMTP id i6K9AemG044576 for ; Tue, 20 Jul 2004 13:10:40 +0400 (MSD) Received: from localhost (localhost.inec.ru [127.0.0.1]) by localhost (Postfix) with SMTP id 30F8D65045 for ; Tue, 20 Jul 2004 13:10:40 +0400 (MSD) Received: from waterwall.inec.ru (localhost.inec.ru [127.0.0.1]) by waterwall.inec.ru (Postfix) with ESMTP id AAP2540FCE190A7BF for ; Tue, 20 Jul 2004 13:10:40 +0400 (MSD) Received: (from az@localhost) by waterwall.inec.ru (8.12.9p2/8.12.6/Submit) id i6K9AdJ7044570; Tue, 20 Jul 2004 13:10:39 +0400 (MSD) Message-Id: <200407200910.i6K9AdJ7044570@waterwall.inec.ru> Date: Tue, 20 Jul 2004 13:10:39 +0400 (MSD) From: Andrej Zverev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69335: Fix ports/irc/hybserv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrej Zverev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 09:10:28 -0000 >Number: 69335 >Category: ports >Synopsis: Fix ports/irc/hybserv >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 Jul 20 09:10:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrej Zverev >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD az.inec.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #1: Wed Jul 14 14:46:11 MSD 2004 root@az.inec.ru:/usr/obj/usr/src/sys/az i386 >Description: Fix HybServ. change pkg-install script, and add startup script to pkg-plist. HybServ use interactive script to add user/group, but in batch mode script don't add user/group and install fail >How-To-Repeat: >Fix: If we need this user/group, why ask user add them or not ?! So remove checking and make pkg-install script more silent. --- hybserv-pkg-install.diff begins here --- --- /usr/ports/irc/hybserv/pkg-install Wed Nov 12 05:31:18 2003 +++ pkg-install Tue Jul 20 12:08:47 2004 @@ -1,91 +1,42 @@ #!/bin/sh -# This script is a slightly modified copy of the pkg-install script from the -# original ircd-hybrid port, by desmo@bandwidth.org. - if [ "x$2" != "xPRE-INSTALL" ]; then - exit 0; + exit 0; fi -ask() { - local question default answer - - question=$1 - default=$2 - if [ -z "${PACKAGE_BUILDING}" ]; then - read -p "${question} [${default}]? " answer - fi - if [ x${answer} = x ]; then - answer=${default} - fi - echo ${answer} -} - -yesno() { - local dflt question answer - - question=$1 - dflt=$2 - while :; do - answer=$(ask "${question}" "${dflt}") - case "${answer}" in - [Yy]*) return 0;; - [Nn]*) return 1;; - esac - echo "Please answer yes or no." - done -} - -if which -s pw ; then - : -else - cat < /dev/null ; then - echo "You already have a group \"hybserv\", so I will use it." -else - if pw groupshow 73 2> /dev/null ; then - echo "You already have a gid \"73\". Please create a user \"hybserv\"" - echo "with a default group of \"hybserv\"." - exit 1 - fi - echo "You need a group \"hybserv\"." - if which -s pw && yesno "Would you like me to create it" y; then - pw groupadd hybserv -g 73 || exit - echo "Done." + USER=hybserv + GROUP=${USER} + UID=73 + GID=${UID} + HOME_DIR="/nonexist" + if pw group show "${GROUP}" 2>/dev/null; then + echo "You already have a group \"${GROUP}\", so I will use it." else - echo "Please create it, and try again." - if ! pw usershow hybserv 2> /dev/null ; then - echo "While you're at it, please create a user \"hybserv\"" - echo 'too, with a default group of "hybserv".' + if pw groupadd ${GROUP} -g ${GID}; then + echo "Added group \"${GROUP}\"." + else + echo "Adding group \"${GROUP}\" failed..." + exit 1 fi - exit 1 fi -fi -if pw usershow hybserv 2> /dev/null ; then - echo "You already have a user \"hybserv\", so I will use it." -else - if pw usershow 73 2> /dev/null ; then - echo "You already have a uid \"73\". Please create a user \"irc -d\"" - echo "with a default group of \"hybserv\"." - exit 1 - fi - echo "You need a user \"hybserv\"." - if which -s pw && yesno "Would you like me to create it" y; then - pw useradd hybserv -g hybserv -u 73 -h - -d /nonexistent \ - -s /nonexistent -c "IRC Daemon" || exit - echo "Done." + if pw user show "${USER}" 2>/dev/null; then + echo "You already have a user \"${USER}\", so I will use it." + if pw usermod ${USER} -d ${HOME_DIR} + then + echo "Changed home directory of \"${USER}\" to \"${HOME_DIR}\"" + else + echo "Changing home directory of \"${USER}\" to \"${HOME_DIR}\" failed..." + exit 1 + fi else - echo "Please create it, and try again." - exit 1 + if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ + -d ${HOME_DIR} -s /sbin/nologin -c "HybServ Daemon" + then + echo "Added user \"${USER}\"." + else + echo "Adding user \"${USER}\" failed..." + exit 1 + fi fi -fi + --- hybserv-pkg-install.diff ends here --- --- hybserv-pkg-plist.diff begins here --- --- /usr/ports/irc/hybserv/pkg-plist Tue Jul 20 12:28:58 2004 +++ pkg-plist Tue Jul 20 12:26:13 2004 @@ -1,3 +1,4 @@ +etc/rc.d/hybserv.sh hybserv/hybserv hybserv/cleandb hybserv/encryptconf --- hybserv-pkg-plist.diff ends here --- --- hybserv-Makefile.diff begins here --- --- /usr/ports/irc/hybserv/Makefile Tue Jun 22 01:27:27 2004 +++ Makefile Tue Jul 20 12:12:02 2004 @@ -19,18 +19,8 @@ WRKSRC= ${WRKDIR}/hybserv -.if !defined(PACKAGE_BUILDING) && !defined(BATCH) -IS_INTERACTIVE= yes -.endif - -BROKEN= "Does not install" -EXPIRATION_DATE=2004-08-20 -DEPRECATED= ${BROKEN} - pre-install: -.if !defined(PACKAGE_BUILDING) && !defined(BATCH) @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL -.endif post-install: @${SED} -e "s#%PREFIX%#${PREFIX}#" ${FILESDIR}/hybserv.sh \ --- hybserv-Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 09:18: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 E77BB16A4CE; Tue, 20 Jul 2004 09:18:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA81D43D31; Tue, 20 Jul 2004 09:18:52 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from freefall.freebsd.org (osa@localhost [127.0.0.1]) i6K9IqaT019107; Tue, 20 Jul 2004 09:18:52 GMT (envelope-from osa@freefall.freebsd.org) Received: (from osa@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K9Iqs5019103; Tue, 20 Jul 2004 09:18:52 GMT (envelope-from osa) Date: Tue, 20 Jul 2004 09:18:52 GMT From: "Sergey A. Osokin" Message-Id: <200407200918.i6K9Iqs5019103@freefall.freebsd.org> To: az@inec.ru, osa@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69335: Fix ports/irc/hybserv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 09:18:53 -0000 Synopsis: Fix ports/irc/hybserv State-Changed-From-To: open->feedback State-Changed-By: osa State-Changed-When: Tue Jul 20 09:18:04 GMT 2004 State-Changed-Why: Please approve or reject changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69335 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 14E5216A4CE for ; Tue, 20 Jul 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 073E243D3F for ; Tue, 20 Jul 2004 09:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K9KJ0j019213 for ; Tue, 20 Jul 2004 09:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K9KJEQ019212; Tue, 20 Jul 2004 09:20:19 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 09:20:19 GMT Resent-Message-Id: <200407200920.i6K9KJEQ019212@freefall.freebsd.org> 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 8CC6116A4CE for ; Tue, 20 Jul 2004 09:14:18 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3356743D41 for ; Tue, 20 Jul 2004 09:14:17 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) i6K9ECCa013793 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 20 Jul 2004 10:14:12 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i6K9EC90013792; Tue, 20 Jul 2004 10:14:12 +0100 (BST) (envelope-from matthew) Message-Id: <200407200914.i6K9EC90013792@happy-idiot-talk.infracaninophile.co.uk> Date: Tue, 20 Jul 2004 10:14:12 +0100 (BST) From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69336: [ Maintainer update ] databases/phpmyadmin -- tracking PHP mega-commit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 09:20:20 -0000 >Number: 69336 >Category: ports >Synopsis: [ Maintainer update ] databases/phpmyadmin -- tracking PHP mega-commit >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 09:20:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 4.10-STABLE i386 >Organization: Infracaninophile >Environment: System: FreeBSD happy-idiot-talk.infracaninophile.co.uk 4.10-STABLE FreeBSD 4.10-STABLE #78: Mon Jul 5 15:49:39 BST 2004 root@happy-idiot-talk.infracaninophile.co.uk:/usr/obj/usr/src/sys/HAPPY-IDIOT-TALK i386 >Description: Take advantage of the new ports PHP infrastructure ade@... committed yesterday. This adds explicit dependencies on: archivers/phpX-bz2 graphics/phpX-gd databases/phpX-mysql security/phpX-openssl devel/phpX-pcre print/pecl-pdflib archivers/phpX-zlib Where X is 4 or 5 according to the installed version of PHP. >How-To-Repeat: >Fix: --- phpmyadmin.diff begins here --- diff -Nur /usr/ports/databases/phpmyadmin/Makefile phpmyadmin/Makefile --- /usr/ports/databases/phpmyadmin/Makefile Fri Jul 2 00:51:09 2004 +++ phpmyadmin/Makefile Tue Jul 20 09:55:07 2004 @@ -7,6 +7,7 @@ PORTNAME= phpMyAdmin PORTVERSION= 2.5.7.1 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= phpmyadmin @@ -17,11 +18,13 @@ USE_BZIP2= yes NO_BUILD= yes +USE_PHP= bz2 gd mysql openssl pcre pdf zlib .if defined(WITH_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp PKGNAMESUFFIX= -suphp +RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp +WANT_PHP_CGI= yes PKGINST_SKEL= ${PKGDIR}/pkg-install${PKGNAMESUFFIX} PKGINSTALL= ${WRKDIR}/pkg-install${PKGNAMESUFFIX} PKGDEINST_SKEL= ${PKGDIR}/pkg-deinstall${PKGNAMESUFFIX} @@ -36,7 +39,6 @@ .else -USE_PHP= yes WANT_PHP_WEB= yes .endif --- phpmyadmin.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 09:20: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 8722316A4CF for ; Tue, 20 Jul 2004 09:20:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 621A243D58 for ; Tue, 20 Jul 2004 09:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6K9KKGx019226 for ; Tue, 20 Jul 2004 09:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6K9KK9e019225; Tue, 20 Jul 2004 09:20:20 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 09:20:20 GMT Resent-Message-Id: <200407200920.i6K9KK9e019225@freefall.freebsd.org> 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 0FCDF16A4CE for ; Tue, 20 Jul 2004 09:14:29 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AF4643D46 for ; Tue, 20 Jul 2004 09:14:28 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) i6K9EOWK013847 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 20 Jul 2004 10:14:24 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i6K9EOMF013846; Tue, 20 Jul 2004 10:14:24 +0100 (BST) (envelope-from matthew) Message-Id: <200407200914.i6K9EOMF013846@happy-idiot-talk.infracaninophile.co.uk> Date: Tue, 20 Jul 2004 10:14:24 +0100 (BST) From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69337: [ Maintainer update ] net/phpldapadmin -- tracking PHP megacommit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 09:20:21 -0000 >Number: 69337 >Category: ports >Synopsis: [ Maintainer update ] net/phpldapadmin -- tracking PHP megacommit >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 09:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 4.10-STABLE i386 >Organization: Infracaninophile >Environment: System: FreeBSD happy-idiot-talk.infracaninophile.co.uk 4.10-STABLE FreeBSD 4.10-STABLE #78: Mon Jul 5 15:49:39 BST 2004 root@happy-idiot-talk.infracaninophile.co.uk:/usr/obj/usr/src/sys/HAPPY-IDIOT-TALK i386 >Description: Take advantage of the new ports PHP infrastructure ade@... committed yesterday. This adds explicit dependencies on: net/phpX-ldap security/phpX-openssl Where X is 4 or 5 according to the installed version of PHP. >How-To-Repeat: >Fix: --- phpldapadmin.diff begins here --- diff -Nur /usr/ports/net/phpldapadmin/Makefile phpldapadmin/Makefile --- /usr/ports/net/phpldapadmin/Makefile Thu May 20 17:31:29 2004 +++ phpldapadmin/Makefile Tue Jul 20 09:28:50 2004 @@ -7,7 +7,7 @@ PORTNAME= phpldapadmin PORTVERSION= 0.9.4b -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= phpldapadmin @@ -16,11 +16,13 @@ COMMENT= A set of PHP-scripts to administer LDAP servers over the web NO_BUILD= yes +USE_PHP= ldap openssl .if defined(WITH_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp PKGNAMESUFFIX= -suphp +RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp +WANT_PHP_CGI= yes PKGINST_SKEL= ${PKGDIR}/pkg-install${PKGNAMESUFFIX} PKGINSTALL= ${WRKDIR}/pkg-install${PKGNAMESUFFIX} PKGDEINST_SKEL= ${PKGDIR}/pkg-deinstall${PKGNAMESUFFIX} @@ -35,7 +37,6 @@ .else -USE_PHP= yes WANT_PHP_WEB= yes .endif diff -Nur /usr/ports/net/phpldapadmin/pkg-message phpldapadmin/pkg-message --- /usr/ports/net/phpldapadmin/pkg-message Thu May 20 17:31:30 2004 +++ phpldapadmin/pkg-message Mon Jul 19 15:29:04 2004 @@ -10,6 +10,3 @@ Alias /phpldapadmin/ "%%PREFIX%%/%%PLADIR%%/" -You will need a version of PHP with LDAP functionality enabled, -which is not the default. If necessary, enable the 'OPENLDAP' -option in the PHP port's configuration screen and reinstall. --- phpldapadmin.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 09:21:22 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 975) id D413A16A4CF; Tue, 20 Jul 2004 09:21:22 +0000 (GMT) Date: Tue, 20 Jul 2004 09:21:22 +0000 From: "Sergey A. Osokin" To: az@inec.ru, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040720092122.GF85358@FreeBSD.org> References: <200407200918.i6K9Iqs5019103@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200407200918.i6K9Iqs5019103@freefall.freebsd.org> User-Agent: Mutt/1.4.1i cc: rick@help-desk.ca Subject: Re: ports/69335: Fix ports/irc/hybserv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 09:21:23 -0000 On Tue, Jul 20, 2004 at 09:18:52AM +0000, Sergey A. Osokin wrote: > Synopsis: Fix ports/irc/hybserv > > State-Changed-From-To: open->feedback > State-Changed-By: osa > State-Changed-When: Tue Jul 20 09:18:04 GMT 2004 > State-Changed-Why: > Please approve or reject changes. > Thanks! > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69335 Please review changes. Thanks! -- Sergey A. Osokin, osa@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 10:31:55 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 95F5B16A4CE for ; Tue, 20 Jul 2004 10:31:55 +0000 (GMT) Received: from mail.gascom.ru (mail.gascom.ru [217.17.160.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 8AA5443D3F for ; Tue, 20 Jul 2004 10:31:54 +0000 (GMT) (envelope-from asa@gascom.ru) Received: (qmail 83221 invoked from network); 20 Jul 2004 10:31:49 -0000 Received: from asa.gascom.net.ru (HELO ?192.168.100.29?) (192.168.100.29) by mail.gascom.ru with SMTP; 20 Jul 2004 10:31:49 -0000 From: Sergey Akifyev To: freebsd-ports-bugs@FreeBSD.org In-Reply-To: <200407150700.i6F70n4T001783@freefall.freebsd.org> References: <200407150700.i6F70n4T001783@freefall.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-fHcgHSAcV6TSEgbGhkLu" Organization: JSC Gascom Message-Id: <1090319512.697.124.camel@asa.gascom.net.ru> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 20 Jul 2004 14:31:52 +0400 Subject: Re: ports/68979: [new port] math/qalculate - best GUI calculator ever X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 10:31:55 -0000 --=-fHcgHSAcV6TSEgbGhkLu Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Changes: * Updated qalculate 0.6.1 -> 0.6.2 * Changed comment * Fixed plist for correct package deinstallation Original patch can be obtained from: ftp://ftp.gascom.ru/pub/GNOME2/diffs/qalculate.diff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D diff -ruN qalculate.orig/Makefile qalculate/Makefile --- qalculate.orig/Makefile Tue Jul 13 13:14:34 2004 +++ qalculate/Makefile Tue Jul 20 14:27:19 2004 @@ -6,13 +6,13 @@ # =20 PORTNAME=3D qalculate -PORTVERSION=3D 0.6.1 +PORTVERSION=3D 0.6.2 CATEGORIES=3D math MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} DISTNAME=3D ${PORTNAME}-gtk-${PORTVERSION} =20 MAINTAINER=3D asa@gascom.ru -COMMENT=3D Best GUI calculator ever +COMMENT=3D Very powerful GUI calculator for GNOME =20 LIB_DEPENDS=3D cln.3:${PORTSDIR}/math/cln RUN_DEPENDS=3D gnuplot:${PORTSDIR}/math/gnuplot \ diff -ruN qalculate.orig/distinfo qalculate/distinfo --- qalculate.orig/distinfo Thu Jul 8 11:10:53 2004 +++ qalculate/distinfo Tue Jul 20 13:27:56 2004 @@ -1,2 +1,2 @@ -MD5 (qalculate-gtk-0.6.1.tar.gz) =3D b0b8c9b4ee3189ef3d378aeb2051da8a -SIZE (qalculate-gtk-0.6.1.tar.gz) =3D 1312026 +MD5 (qalculate-gtk-0.6.2.tar.gz) =3D faa5799bb49e3e725843dcc92e5bd45f +SIZE (qalculate-gtk-0.6.2.tar.gz) =3D 1325205 diff -ruN qalculate.orig/pkg-plist qalculate/pkg-plist --- qalculate.orig/pkg-plist Tue Jul 13 13:13:48 2004 +++ qalculate/pkg-plist Tue Jul 20 13:54:12 2004 @@ -2,6 +2,7 @@ share/gnome/applications/qalculate.desktop share/gnome/qalculate-gtk/glade/about.glade share/gnome/qalculate-gtk/glade/argumentrules.glade +share/gnome/qalculate-gtk/glade/csvexport.glade share/gnome/qalculate-gtk/glade/csvimport.glade share/gnome/qalculate-gtk/glade/decimals.glade share/gnome/qalculate-gtk/glade/functionedit.glade @@ -9,6 +10,7 @@ share/gnome/qalculate-gtk/glade/main.glade share/gnome/qalculate-gtk/glade/matrixedit.glade share/gnome/qalculate-gtk/glade/nbases.glade +share/gnome/qalculate-gtk/glade/nbexpression.glade share/gnome/qalculate-gtk/glade/plot.glade share/gnome/qalculate-gtk/glade/precision.glade share/gnome/qalculate-gtk/glade/preferences.glade @@ -23,6 +25,7 @@ share/gnome/qalculate/units.xml share/gnome/qalculate/variables.xml bin/qalculate-gtk +bin/qalculate share/gnome/help/qalculate-gtk/C/legal.xml share/gnome/help/qalculate-gtk/C/qalculate-gtk.xml share/gnome/help/qalculate-gtk/C/figures/calculation-history.png @@ -50,8 +53,8 @@ @exec scrollkeeper-install -q %D/share/gnome/omf/qalculate-gtk/qalculate-gtk-C.omf 2>/dev/null || /usr/bin/true @unexec scrollkeeper-uninstall -q %D/share/gnome/omf/qalculate-gtk/qalculate-gtk-C.omf 2>/dev/null || /usr/bin/true @dirrm share/gnome/applnk/Utilities -@dirrm share/gnome/qalculate-gtk/glade -@dirrm share/gnome/qalculate-gtk -@dirrm share/gnome/qalculate @dirrm share/gnome/help/qalculate-gtk/C/figures @dirrm share/gnome/help/qalculate-gtk/C +@dirrm share/gnome/qalculate +@dirrm share/gnome/qalculate-gtk/glade +@dirrm share/gnome/qalculate-gtk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --=20 regards, Sergey Akifyev JSC Gascom PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-fHcgHSAcV6TSEgbGhkLu Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBA/PSYbu06QwmNwNsRAsljAJ9RIuF9YEpAdGYX2HUr3/Rvb+h+LwCfYtOl yasVVy+zRqBadHq06yLGO5I= =ec9K -----END PGP SIGNATURE----- --=-fHcgHSAcV6TSEgbGhkLu-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 10: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 685E316A4CF for ; Tue, 20 Jul 2004 10:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C39243D62 for ; Tue, 20 Jul 2004 10:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KAeNg9028800 for ; Tue, 20 Jul 2004 10:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KAeN4Y028799; Tue, 20 Jul 2004 10:40:23 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 10:40:23 GMT Resent-Message-Id: <200407201040.i6KAeN4Y028799@freefall.freebsd.org> 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 Lancereau Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9249916A4CE; Tue, 20 Jul 2004 10:37:53 +0000 (GMT) Received: from fly.mos.bsdfly.org (mos.bsdfly.org [213.41.136.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21CA943D5C; Tue, 20 Jul 2004 10:37:52 +0000 (GMT) (envelope-from matt@fly.mos.bsdfly.org) Received: from fly.mos.bsdfly.org (localhost [127.0.0.1]) by fly.mos.bsdfly.org (8.12.10/8.12.10) with ESMTP id i6KAgYIT025388; Tue, 20 Jul 2004 12:42:34 +0200 (CEST) (envelope-from matt@fly.mos.bsdfly.org) Received: (from matt@localhost) by fly.mos.bsdfly.org (8.12.10/8.12.10/Submit) id i6KAgXaY025387; Tue, 20 Jul 2004 12:42:34 +0200 (CEST) (envelope-from matt) Message-Id: <200407201042.i6KAgXaY025387@fly.mos.bsdfly.org> Date: Tue, 20 Jul 2004 12:42:34 +0200 (CEST) From: Matt Lancereau To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ale@FreeBSD.org Subject: ports/69338: [maintainer update] all Matt Lancereau ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Lancereau List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 10:40:23 -0000 >Number: 69338 >Category: ports >Synopsis: [maintainer update] all Matt Lancereau ports >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 Jul 20 10:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matt Lancereau >Release: FreeBSD 5.2.1-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD fly.mos.bsdfly.org 5.2.1-RELEASE-p7 FreeBSD 5.2.1-RELEASE-p7 #2: Sat Jun 19 13:28:16 CEST 2004 root@fly.mos.bsd-blax.org:/usr/obj/usr/src/sys/FLY i386 >Description: - Change my mail address - Remove a MASTER_SITE - Add DIST_SUBDIR >How-To-Repeat: >Fix: --- maintenair.diff begins here --- --- deskutils/xfce4-calendar/Makefile.orig Mon Jul 19 19:03:28 2004 +++ deskutils/xfce4-calendar/Makefile Tue Jul 20 08:09:18 2004 @@ -13,7 +13,7 @@ DISTNAME= xfcalendar-${PORTVERSION} DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= A calendar application to manage your time with XFce 4 BUILD_DEPENDS= xfce-mcs-manager:${PORTSDIR}/sysutils/xfce4-mcs-manager --- deskutils/xfce4-taskbar-plugin/Makefile.orig Mon Jul 19 19:03:46 2004 +++ deskutils/xfce4-taskbar-plugin/Makefile Tue Jul 20 08:17:13 2004 @@ -10,11 +10,11 @@ CATEGORIES= deskutils xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ \ http://matt.nerim.net/xfce-goodies/ \ - http://xfce.org/~kelnos/mirrors/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://xfce.org/~kelnos/mirrors/xfce-goodies/ DISTNAME= xfce4-taskbar-plugin-${PORTVERSION} +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= A taskbar plugin for xfce4-panel BUILD_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel --- deskutils/xfce4-windowlist-plugin/Makefile.orig Mon Jul 19 19:04:06 2004 +++ deskutils/xfce4-windowlist-plugin/Makefile Tue Jul 20 08:17:34 2004 @@ -10,11 +10,11 @@ CATEGORIES= deskutils xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ \ http://matt.nerim.net/xfce-goodies/ \ - http://xfce.org/~kelnos/mirrors/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://xfce.org/~kelnos/mirrors/xfce-goodies/ DISTNAME= xfce4-windowlist-plugin-${PORTVERSION} +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= A windowlist plugin for xfce4-panel BUILD_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel --- sysutils/xfce4-cpugraph-plugin/Makefile.orig Tue Jul 20 08:13:57 2004 +++ sysutils/xfce4-cpugraph-plugin/Makefile Tue Jul 20 08:14:46 2004 @@ -9,11 +9,10 @@ PORTVERSION= 0.2.2 CATEGORIES= sysutils xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ \ - http://matt.nerim.net/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://matt.nerim.net/xfce-goodies/ DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= XFce4 systemload plugin with multiple CPU display modes BUILD_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel --- sysutils/xfce4-fsguard-plugin/Makefile.orig Tue Jul 20 08:14:12 2004 +++ sysutils/xfce4-fsguard-plugin/Makefile Tue Jul 20 08:19:32 2004 @@ -11,10 +11,10 @@ CATEGORIES= sysutils xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ \ http://matt.nerim.net/xfce-goodies/ \ - http://xfce.org/~kelnos/mirrors/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://xfce.org/~kelnos/mirrors/xfce-goodies/ +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= XFce4 panel plugin to check a mountpoint for free disk space BUILD_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel --- x11/xfce4-clipman-plugin/Makefile.orig Tue Jul 20 08:22:06 2004 +++ x11/xfce4-clipman-plugin/Makefile Tue Jul 20 08:23:08 2004 @@ -11,10 +11,10 @@ CATEGORIES= x11 xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ \ http://matt.nerim.net/xfce-goodies/ \ - http://xfce.org/~kelnos/mirrors/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://xfce.org/~kelnos/mirrors/xfce-goodies/ +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= XFce 4 clipboard module for xfce4-panel BUILD_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel --- x11-clocks/xfce4-datetime-plugin/Makefile.orig Tue Jul 20 12:14:37 2004 +++ x11-clocks/xfce4-datetime-plugin/Makefile Tue Jul 20 12:15:18 2004 @@ -11,10 +11,10 @@ CATEGORIES= x11-clocks xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ \ http://matt.nerim.net/xfce-goodies/ \ - http://xfce.org/~kelnos/mirrors/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://xfce.org/~kelnos/mirrors/xfce-goodies/ +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= XFce 4 additional clock module which also shows date BUILD_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel --- x11-fonts/artwiz-aleczapka/Makefile.orig Tue Jul 20 12:15:38 2004 +++ x11-fonts/artwiz-aleczapka/Makefile Tue Jul 20 12:16:18 2004 @@ -11,7 +11,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= artwizaleczapka -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= A set of (improved) artwiz fonts NO_BUILD= yes --- x11-wm/xfce4-menueditor/Makefile.orig Tue Jul 20 12:26:27 2004 +++ x11-wm/xfce4-menueditor/Makefile Tue Jul 20 12:27:06 2004 @@ -10,10 +10,10 @@ PORTREVISION= 1 CATEGORIES= x11-wm xfce MASTER_SITES= http://users.skynet.be/p0llux/files/ \ - http://matt.nerim.net/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://matt.nerim.net/xfce-goodies/ +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= Menu Editor for the XFce desktop environment LIB_DEPENDS= xfce4util.1:${PORTSDIR}/x11/libxfce4util \ --- x11-wm/xfce4-session/Makefile.orig Tue Jul 20 12:27:22 2004 +++ x11-wm/xfce4-session/Makefile Tue Jul 20 12:28:00 2004 @@ -10,10 +10,10 @@ PORTREVISION= 3 CATEGORIES= x11-wm xfce MASTER_SITES= http://echobase.homeunix.net/~bmeurer/tmp/xfce4-session/ \ - http://matt.nerim.net/xfce-goodies/ \ - http://www.bsd-blax.org/ports/mirrors/ + http://matt.nerim.net/xfce-goodies/ +DIST_SUBDIR= xfce4 -MAINTAINER= matt@rimasec.net +MAINTAINER= matt@bsdfly.org COMMENT= XFce 4 Session Manager BUILD_DEPENDS= xfce-mcs-manager:${PORTSDIR}/sysutils/xfce4-mcs-manager --- maintenair.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11:33: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 AC31E16A4CE; Tue, 20 Jul 2004 11:33:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DBD543D5A; Tue, 20 Jul 2004 11:33:18 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KBXIl2035967; Tue, 20 Jul 2004 11:33:18 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBXImD035963; Tue, 20 Jul 2004 11:33:18 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 11:33:18 GMT From: Volker Stolz Message-Id: <200407201133.i6KBXImD035963@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69329: error in php port 4.3.8_1: renders no 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: Tue, 20 Jul 2004 11:33:18 -0000 Synopsis: error in php port 4.3.8_1: renders no pages Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: vs Responsible-Changed-When: Tue Jul 20 11:33:04 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69329 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11:35: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 65E0B16A4CE; Tue, 20 Jul 2004 11:35:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4813043D48; Tue, 20 Jul 2004 11:35:05 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KBZ5rm036037; Tue, 20 Jul 2004 11:35:05 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBZ5SW036033; Tue, 20 Jul 2004 11:35:05 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 11:35:05 GMT From: Volker Stolz Message-Id: <200407201135.i6KBZ5SW036033@freefall.freebsd.org> To: zk@wspim.edu.pl, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69308: audio/baudline doesn't fetch, update to 0.98, correct small typo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 11:35:05 -0000 Synopsis: audio/baudline doesn't fetch, update to 0.98, correct small typo State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 11:34:34 GMT 2004 State-Changed-Why: A fix is already in the works under ports/69071. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=69308 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11:36: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 DCB4716A4CF; Tue, 20 Jul 2004 11:36:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFDF943D31; Tue, 20 Jul 2004 11:36:28 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KBaSkp036156; Tue, 20 Jul 2004 11:36:28 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBaSEd036152; Tue, 20 Jul 2004 11:36:28 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 11:36:28 GMT From: Volker Stolz Message-Id: <200407201136.i6KBaSEd036152@freefall.freebsd.org> To: simon@lang-clan.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69274: [PORT UPDATE] devel/root - Version 4.00.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 11:36:29 -0000 Synopsis: [PORT UPDATE] devel/root - Version 4.00.06 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Jul 20 11:35:53 GMT 2004 State-Changed-Why: Please submit the update as a "unified diff"! -- Volker http://www.freebsd.org/cgi/query-pr.cgi?pr=69274 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11:37: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 AA99A16A4CF; Tue, 20 Jul 2004 11:37:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7041943D5A; Tue, 20 Jul 2004 11:37:39 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KBbdnw036216; Tue, 20 Jul 2004 11:37:39 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBbdjA036212; Tue, 20 Jul 2004 11:37:39 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 11:37:39 GMT From: Volker Stolz Message-Id: <200407201137.i6KBbdjA036212@freefall.freebsd.org> To: frank@dynamical-systems.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69279: multimedia/avidemux2-2.0.24 fails to build with libtool13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 11:37:39 -0000 Synopsis: multimedia/avidemux2-2.0.24 fails to build with libtool13 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Jul 20 11:37:23 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69279 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11: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 D8AC116A4CE; Tue, 20 Jul 2004 11:40:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B966443D1F; Tue, 20 Jul 2004 11:40:02 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KBe25Y036301; Tue, 20 Jul 2004 11:40:02 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBdwWp036289; Tue, 20 Jul 2004 11:39:58 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 11:39:58 GMT From: Volker Stolz Message-Id: <200407201139.i6KBdwWp036289@freefall.freebsd.org> To: bork@rsu.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69192: [patch] x11-toolkits/gtkmathview installs .pc files in $(X11BASE)/lib X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 11:40:03 -0000 Synopsis: [patch] x11-toolkits/gtkmathview installs .pc files in $(X11BASE)/lib State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Tue Jul 20 11:39:43 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69192 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11: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 1818116A4CE for ; Tue, 20 Jul 2004 11:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDAD443D54 for ; Tue, 20 Jul 2004 11:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KBeRFp036408 for ; Tue, 20 Jul 2004 11:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBeRoe036403; Tue, 20 Jul 2004 11:40:27 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 11:40:27 GMT Message-Id: <200407201140.i6KBeRoe036403@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69279: multimedia/avidemux2-2.0.24 fails to build with libtool13 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, 20 Jul 2004 11:40:28 -0000 The following reply was made to PR ports/69279; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, frank@dynamical-systems.org, amistry@am-productions.biz Cc: Subject: Re: ports/69279: multimedia/avidemux2-2.0.24 fails to build with libtool13 Date: Tue, 20 Jul 2004 13:37:15 +0200 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11: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 D087F16A4CE for ; Tue, 20 Jul 2004 11:40:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B28D843D49 for ; Tue, 20 Jul 2004 11:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KBeU9u036415 for ; Tue, 20 Jul 2004 11:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBeUMV036414; Tue, 20 Jul 2004 11:40:30 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 11:40:30 GMT Message-Id: <200407201140.i6KBeUMV036414@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69192: [patch] x11-toolkits/gtkmathview installs .pc files in $(X11BASE)/lib 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, 20 Jul 2004 11:40:31 -0000 The following reply was made to PR ports/69192; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, bork@rsu.ru, yinjieh@csie.nctu.edu.tw Cc: Subject: Re: ports/69192: [patch] x11-toolkits/gtkmathview installs .pc files in $(X11BASE)/lib Date: Tue, 20 Jul 2004 13:39:21 +0200 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 11:43: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 0736F16A4CF; Tue, 20 Jul 2004 11:43:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8AE143D5A; Tue, 20 Jul 2004 11:43:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KBhGVu036848; Tue, 20 Jul 2004 11:43:16 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KBhG7N036844; Tue, 20 Jul 2004 11:43:16 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 11:43:16 GMT From: Volker Stolz Message-Id: <200407201143.i6KBhG7N036844@freefall.freebsd.org> To: esn@x123.info, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/52311: [ADD MAKE ARGS]:: WITH_GTK And WITH_THREADS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 11:43:17 -0000 Synopsis: [ADD MAKE ARGS]:: WITH_GTK And WITH_THREADS State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 11:42:55 GMT 2004 State-Changed-Why: Feedback timeout. Sorry it didn't work out :( http://www.freebsd.org/cgi/query-pr.cgi?pr=52311 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 12:00: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 EF18016A4CF for ; Tue, 20 Jul 2004 12:00:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD63443D54 for ; Tue, 20 Jul 2004 12:00:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KC0MdS037407 for ; Tue, 20 Jul 2004 12:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KC0MCf037406; Tue, 20 Jul 2004 12:00:22 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 12:00:22 GMT Resent-Message-Id: <200407201200.i6KC0MCf037406@freefall.freebsd.org> 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 Timoshenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AFF816A4CE for ; Tue, 20 Jul 2004 11:53:20 +0000 (GMT) Received: from expo.ukrweb.net (expo.ukrweb.net [193.125.78.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D8E443D4C for ; Tue, 20 Jul 2004 11:53:05 +0000 (GMT) (envelope-from root@expo.ukrweb.net) Received: from root by expo.ukrweb.net with local (Exim 4.34 (FreeBSD)) id 1BmtB4-0001t6-0z for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 14:52:58 +0300 Message-Id: Date: Tue, 20 Jul 2004 14:52:58 +0300 From: Alexander Timoshenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69339: New port: net/ejabberd jabber server written on erlang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alexander Timoshenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 12:00:23 -0000 >Number: 69339 >Category: ports >Synopsis: New port: net/ejabberd jabber server written on erlang >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 12:00:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Timoshenko >Release: FreeBSD 5.2.1-RELEASE-p1 i386 >Organization: private person >Environment: System: FreeBSD expo.ukrweb.net 5.2.1-RELEASE-p1 FreeBSD 5.2.1-RELEASE-p1 #2: Thu Mar 18 17:45:54 EET 2004 levsha@expo.ukrweb.net:/usr/obj/usr/src/sys/EXPO i386 >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: # # ejabberd # ejabberd/files # ejabberd/files/patch-src::configure # ejabberd/files/patch-src::ejabberd # ejabberd/files/patch-src::ejabberdctl # ejabberd/files/patch-src::ejabberd.sh # ejabberd/files/ejabberd.cfg.sample # ejabberd/files/patch-src::mod_last.erl # ejabberd/Makefile # ejabberd/distinfo # ejabberd/pkg-descr # ejabberd/pkg-plist # ejabberd/pkg-install # ejabberd/pkg-deinstall # echo c - ejabberd mkdir -p ejabberd > /dev/null 2>&1 echo c - ejabberd/files mkdir -p ejabberd/files > /dev/null 2>&1 echo x - ejabberd/files/patch-src::configure sed 's/^X//' >ejabberd/files/patch-src::configure << 'END-of-ejabberd/files/patch-src::configure' X--- configure.orig Sat Jul 3 14:58:07 2004 X+++ configure Sat Jul 3 15:01:49 2004 X@@ -2180,7 +2180,7 @@ X fi X X X- if test "z$ERLC" == "z" || test "z$ERL" == "z"; then X+ if test -z "$ERLC" || test -z "$ERL"; then X { { echo "$as_me:$LINENO: error: erlang not found" >&5 X echo "$as_me: error: erlang not found" >&2;} X { (exit 1); exit 1; }; } END-of-ejabberd/files/patch-src::configure echo x - ejabberd/files/patch-src::ejabberd sed 's/^X//' >ejabberd/files/patch-src::ejabberd << 'END-of-ejabberd/files/patch-src::ejabberd' X--- ejabberd.orig Thu Jan 1 03:00:00 1970 X+++ ejabberd Sat Jul 3 15:52:35 2004 X@@ -0,0 +1,31 @@ X+#!/bin/sh X+ X+[ -r /var/run/ejabberd/.erlang.cookie ] && HOME=/var/run/ejabberd X+ X+CONFIG=%%PREFIX%%/etc/ejabberd.cfg X+LOG=/var/log/ejabberd/ejabberd.log X+SASL_LOG=/var/log/ejabberd/sasl.log X+SPOOL=/var/spool/ejabberd X+ X+ARGS= X+while [ $# -ne 0 ]; X+do X+ PARAM=$1 X+ shift X+ case $PARAM in X+ --) break ;; X+ --config) CONFIG=$1 ; shift ;; X+ --log) LOG=$1 ; shift ;; X+ --sasl-log) SASL_LOG=$1 ; shift ;; X+ --spool) SPOOL=$1 ; shift ;; X+ *) ARGS="$ARGS $PARAM" X+ esac X+done X+ X+exec erl -sname ejabberd \ X+ -s ejabberd -detached \ X+ -ejabberd config \"$CONFIG\" log_path \"$LOG\" \ X+ -sasl sasl_error_logger \{file,\"$SASL_LOG\"\} \ X+ -mnesia dir \"$SPOOL\" \ X+ $ARGS "$@" X+ END-of-ejabberd/files/patch-src::ejabberd echo x - ejabberd/files/patch-src::ejabberdctl sed 's/^X//' >ejabberd/files/patch-src::ejabberdctl << 'END-of-ejabberd/files/patch-src::ejabberdctl' X--- ejabberdctl.orig Thu Jan 1 03:00:00 1970 X+++ ejabberdctl Sat Jul 3 15:53:38 2004 X@@ -0,0 +1,6 @@ X+#!/bin/sh X+ X+[ -r /var/run/ejabberd/.erlang.cookie ] && HOME=/var/run/ejabberd X+ X+exec erl -noinput -sname ejabberdctl -s ejabberd_ctl -extra ejabberd@`hostname -s` "$@" X+ END-of-ejabberd/files/patch-src::ejabberdctl echo x - ejabberd/files/patch-src::ejabberd.sh sed 's/^X//' >ejabberd/files/patch-src::ejabberd.sh << 'END-of-ejabberd/files/patch-src::ejabberd.sh' X--- ejabberd.sh Thu Jan 1 03:00:00 1970 X+++ ejabberd.sh Sat Jul 3 16:49:51 2004 X@@ -0,0 +1,42 @@ X+#! /bin/sh X+# X+# ejabberd Start/stop ejabberd server X+# X+# X+ X+PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/local/sbin X+EJABBERD=%%PREFIX%%/bin/ejabberd X+EJABBERDCTL=%%PREFIX%%/bin/ejabberdctl X+EJABBERDUSER=ejabberd X+NAME=ejabberd X+DESC=ejabberd X+ X+test -f $EJABBERD || exit 0 X+test -f $EJABBERDCTL || exit 0 X+ X+set -e X+ X+case "$1" in X+ start) X+ echo -n "Starting $DESC: " X+ su ejabberd -c "$EJABBERD -heart -noshell -detached" X+ echo "$NAME." X+ ;; X+ stop) X+ echo -n "Stopping $DESC: " X+ su ejabberd -c "$EJABBERDCTL stop" X+ echo "$NAME." X+ ;; X+ restart|force-reload) X+ echo -n "Restarting $DESC: " X+ su ejabberd -c "$EJABBERDCTL restart" X+ echo "$NAME." X+ ;; X+ *) X+ N=/etc/init.d/$NAME X+ echo "Usage: $N {start|stop|restart|force-reload}" >&2 X+ exit 1 X+ ;; X+esac X+ X+exit 0 END-of-ejabberd/files/patch-src::ejabberd.sh echo x - ejabberd/files/ejabberd.cfg.sample sed 's/^X//' >ejabberd/files/ejabberd.cfg.sample << 'END-of-ejabberd/files/ejabberd.cfg.sample' X% Default Debian ejabberd.cfg X X%override_acls. X X X% Users that have admin access. Add line like one of the following after you X% will be successfully registered on server to get admin access: X%{acl, admin, {user, "aleksey"}}. X%{acl, admin, {user, "ermine"}}. X X% Blocked users: X%{acl, blocked, {user, "test"}}. X X% Local users: X{acl, local, {user_regexp, ""}}. X X% Another examples of ACLs: X%{acl, jabberorg, {server, "jabber.org"}}. X%{acl, aleksey, {user, "aleksey", "jabber.ru"}}. X%{acl, test, {user_regexp, "^test"}}. X%{acl, test, {user_glob, "test*"}}. X X X% Only admins can use configuration interface: X{access, configure, [{allow, admin}]}. X X% Every username can be registered via in-band registration: X{access, register, [{allow, all}]}. X X% None username can be registered via in-band registration: X%{access, register, [{deny, all}]}. X X% After successful registration user will get message with following subject X% and body: X{welcome_message, X {"Welcome!", X "Welcome to Debian Jabber Service. " X "For information about Jabber visit http://jabber.org"}}. X% Replace them with 'none' if you don't want to send such message: X%{welcome_message, none}. X X% List of people who will get notifications about registered users X%{registration_watchers, ["admin1@localhost", X% "admin2@localhost"]}. X X% Only admins can send announcement messages: X{access, announce, [{allow, admin}]}. X X X% Only non-blocked users can use c2s connections: X{access, c2s, [{deny, blocked}, X {allow, all}]}. X X% Set shaper with name "normal" to limit traffic speed to 1000B/s X{shaper, normal, {maxrate, 1000}}. X X% Set shaper with name "fast" to limit traffic speed to 50000B/s X{shaper, fast, {maxrate, 50000}}. X X% For all users except admins used "normal" shaper X{access, c2s_shaper, [{none, admin}, X {normal, all}]}. X X% For all S2S connections used "fast" shaper X{access, s2s_shaper, [{fast, all}]}. X X% Admins of this server are also admins of MUC service: X{access, muc_admin, [{allow, admin}]}. X X% All users are allowed to use MUC service: X{access, muc, [{allow, all}]}. X X% This rule allows access only for local users: X{access, local, [{allow, local}]}. X X X% Authentification method. If you want to use internal user base, then use X% this line: X{auth_method, internal}. X X% For LDAP uthentification use these lines instead of above one: X%{auth_method, ldap}. X%{ldap_servers, ["localhost"]}. % List of LDAP servers X%{ldap_uidattr, "uid"}. % LDAP attribute that holds user ID X%{ldap_base, "dc=example,dc=com"}. % Base of LDAP directory X X X% Host name: (replace for your hostname) X{host, "localhost"}. X X% Default language for server messages X{language, "en"}. X X% Listened ports: X{listen, X% Ordinary client-2-server service X [{5222, ejabberd_c2s, [{access, c2s}, X {shaper, c2s_shaper}]}, X X% SSL-enabled client-2-server service, uncomment these lines to X% enable ssl X% {5223, ejabberd_c2s, [{access, c2s}, X% ssl, X% {certfile, "/etc/ssl/certs/ejabberd.pem"}]}, X X% Server-2-server service X {5269, ejabberd_s2s_in, [{shaper, s2s_shaper}]}, X X% External MUC jabber-muc (but internal mod_muc is better :)) X% {5554, ejabberd_service, [{ip, {127, 0, 0, 1}}, X% {access, all}, X% {host, "muc.localhost", [{password, "secret"}]}]}, X X% Jabber ICQ Transport X% {5555, ejabberd_service, [{ip, {127, 0, 0, 1}}, X% {access, all}, X% {hosts, ["icq.localhost", "sms.localhost"], [{password, "secret"}]}]}, X X% AIM Transport X% {5556, ejabberd_service, [{ip, {127, 0, 0, 1}}, X% {access, all}, X% {host, "aim.localhost", [{password, "secret"}]}]}, X X% MSN Transport X% {5557, ejabberd_service, [{ip, {127, 0, 0, 1}}, X% {access, all}, X% {host, "msn.localhost", [{password, "secret"}]}]}, X X% Yahoo! Transport X% {5558, ejabberd_service, [{ip, {127, 0, 0, 1}}, X% {access, all}, X% {host, "yahoo.localhost", [{password, "secret"}]}]}, X X% External JUD (internal is more powerful, X% but doesn't allow to register users from other servers) X% {5559, ejabberd_service, [{ip, {127, 0, 0, 1}}, X% {access, all}, X% {host, "jud.localhost", [{password, "secret"}]}]}, X X% HTTP service (You may choose options HTTP-polling and Web-administering) X% When commenting out, be careful with commas X {5280, ejabberd_http, [http_poll, web_admin]} X ]}. X X% If SRV lookup fails, then port 5269 is used to communicate with remote server X{outgoing_s2s_port, 5269}. X X% Used modules: X{modules, X [ X {mod_register, [{access, register}]}, X {mod_roster, []}, X {mod_privacy, []}, X {mod_configure, []}, X {mod_configure2, []}, X {mod_disco, [{extra_domains, ["users.jabber.org"]}]}, X {mod_stats, []}, X {mod_vcard, []}, X {mod_offline, []}, X {mod_echo, []}, X {mod_private, []}, X {mod_irc, []}, X% Default options for mod_muc: X% host: "conference." ++ ?MYNAME X% access: all X% access_create: all X% access_admin: none (only room creator has owner privileges) X {mod_muc, [{access, muc}, X {access_create, muc}, X {access_admin, muc_admin}]}, X {mod_pubsub, []}, X {mod_time, []}, X {mod_last, []}, X {mod_version, []} X ]}. X END-of-ejabberd/files/ejabberd.cfg.sample echo x - ejabberd/files/patch-src::mod_last.erl sed 's/^X//' >ejabberd/files/patch-src::mod_last.erl << 'END-of-ejabberd/files/patch-src::mod_last.erl' X--- mod_last.erl.orig X+++ mod_last.erl X@@ -102,7 +102,16 @@ X sub_el = [{xmlelement, "query", X [{"xmlns", ?NS_LAST}, X {"seconds", integer_to_list(Sec)}], X- [{xmlcdata, Status}]}]} X+ [{xmlcdata, Status}]}]}; X+ [{last_activity, _, TimeStamp}] -> X+ {MegaSecs, Secs, _MicroSecs} = now(), X+ TimeStamp2 = MegaSecs * 1000000 + Secs, X+ Sec = TimeStamp2 - TimeStamp, X+ IQ#iq{type = result, X+ sub_el = [{xmlelement, "query", X+ [{"xmlns", ?NS_LAST}, X+ {"seconds", integer_to_list(Sec)}], X+ []}]} X end. X X END-of-ejabberd/files/patch-src::mod_last.erl echo x - ejabberd/Makefile sed 's/^X//' >ejabberd/Makefile << 'END-of-ejabberd/Makefile' X# New ports collection makefile for: ejabberd X# Date created: 03 July 2004 X# Whom: Alexander Timoshenko X# X# $FreeBSD$ X# X XPORTNAME= ejabberd XPORTVERSION= 0.7 XCATEGORIES= net XMASTER_SITES= http://www.jabber.ru/files/ejabberd/ X XMAINTAINER= gonzo@univ.kiev.ua XCOMMENT= Free and Open Source distributed fault-tolerant Jabber server X XBUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang XRUN_DEPENDS= erl:${PORTSDIR}/lang/erlang X XPLIST_SUB= VERSION="${PORTVERSION}" X XWRKSRC= ${WRKDIR}/${DISTNAME}/src XHAS_CONFIGURE= yes XUSE_GMAKE= yes XUSE_REINPLACE= yes X X# MAN1= yaws.1 X# MAN5= yaws.conf.5 yaws_api.5 X XAPPDIR=${PREFIX}/lib/erlang/lib/ejabberd-${PORTVERSION} X X.include X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ X ${WRKSRC}/ejabberd ${WRKSRC}/ejabberdctl ${WRKSRC}/ejabberd.sh X @${FIND} ${WRKSRC} -name \*.orig -or -name \*.bak | ${XARGS} ${RM} X Xdo-install: X @${MKDIR} ${APPDIR}/ebin X @${INSTALL_DATA} ${WRKSRC}/*.beam ${APPDIR}/ebin X @${RM} -f ${BEAMDIR}/configure.beam X @${INSTALL_DATA} ${WRKSRC}/*.app ${APPDIR}/ebin X @${MKDIR} ${APPDIR}/priv/lib X @${INSTALL_DATA} ${WRKSRC}/*.so ${APPDIR}/priv/lib X @${MKDIR} ${APPDIR}/priv/msgs X @${INSTALL_DATA} ${WRKSRC}/msgs/*.msg ${APPDIR}/priv/msgs X @${INSTALL_SCRIPT} ${WRKSRC}/ejabberd ${PREFIX}/bin X @${INSTALL_SCRIPT} ${WRKSRC}/ejabberdctl ${PREFIX}/bin X @${INSTALL_SCRIPT} ${WRKSRC}/ejabberd.sh ${PREFIX}/etc/rc.d X @${INSTALL_DATA} ${FILESDIR}/ejabberd.cfg.sample ${PREFIX}/etc/ X @${MKDIR} ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/../doc/* ${DOCSDIR} X Xpost-install: X @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X X.include END-of-ejabberd/Makefile echo x - ejabberd/distinfo sed 's/^X//' >ejabberd/distinfo << 'END-of-ejabberd/distinfo' XMD5 (ejabberd-0.7.tar.gz) = dfec9573263de8729213993f015cfac9 XSIZE (ejabberd-0.7.tar.gz) = 378466 END-of-ejabberd/distinfo echo x - ejabberd/pkg-descr sed 's/^X//' >ejabberd/pkg-descr << 'END-of-ejabberd/pkg-descr' Xejabberd is a Free and Open Source distributed fault-tolerant Jabber server. XIt writen mostly in Erlang. X XThe main features of ejabberd is: X - Works on most of popular platforms: *nix X (tested on Linux, FreeBSD and NetBSD) X - Distributed X - Fault-tolerance: X - Built-in Multi-User Chat service X - Built-in IRC transport X - Built-in Publish-Subscribe service X - Built-in Jabber Users Directory service based on users vCards X - SSL support X - Ability to interface with external components (JIT, MSN-t, Yahoo-t, etc) X - Migration from jabberd14 is possible X - Mostly XMPP-compliant X - Support for JEP-0030 (Service Discovery). X - Support for JEP-0039 (Statistics Gathering). X - Support for xml:lang attribute in many XML elements X XWWW: http://ejabberd.jabberstudio.org/ END-of-ejabberd/pkg-descr echo x - ejabberd/pkg-plist sed 's/^X//' >ejabberd/pkg-plist << 'END-of-ejabberd/pkg-plist' Xbin/ejabberd Xbin/ejabberdctl Xetc/ejabberd.cfg.sample Xetc/rc.d/ejabberd.sh Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ELDAPv3.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/acl.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/configure.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/cyrsasl.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/cyrsasl_digest.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/cyrsasl_plain.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_app.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_auth.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_c2s.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_config.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_ctl.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_http.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_http_poll.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_listener.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_local.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_logger_h.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/eldap.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_receiver.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_router.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_s2s.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_s2s_in.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_s2s_out.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_service.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_sm.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_sup.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_tmp_sup.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_web.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd_web_admin.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/gen_iq_handler.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/gen_mod.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/iconv.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/idna.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/jd2ejd.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/jlib.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_configure.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_configure2.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_disco.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_echo.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_irc.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_irc_connection.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_last.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_muc.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_muc_room.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_offline.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_privacy.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_private.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_pubsub.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_register.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_roster.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_stats.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_time.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_vcard.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/mod_version.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/randoms.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/sha.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/shaper.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/stringprep.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/translate.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/xml.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/xml_stream.beam Xlib/erlang/lib/ejabberd-%%VERSION%%/ebin/ejabberd.app Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/lib/expat_erl.so Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/lib/iconv_erl.so Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/lib/stringprep_drv.so Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/msgs/es.msg Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/msgs/fr.msg Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/msgs/nl.msg Xlib/erlang/lib/ejabberd-%%VERSION%%/priv/msgs/ru.msg X%%DOCSDIR%%/confacls.png X%%DOCSDIR%%/confhostname.png X%%DOCSDIR%%/dev.html X%%DOCSDIR%%/dev.tex X%%DOCSDIR%%/disco.png X%%DOCSDIR%%/discoallusers.png X%%DOCSDIR%%/discorunnodes.png X%%DOCSDIR%%/discorus.png X%%DOCSDIR%%/guide.html X%%DOCSDIR%%/guide.tex X%%DOCSDIR%%/logo.png X%%DOCSDIR%%/webadmmain.png X%%DOCSDIR%%/webadmmainru.png X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm lib/erlang/lib/ejabberd-%%VERSION%%/priv/lib X@dirrm lib/erlang/lib/ejabberd-%%VERSION%%/priv/msgs X@dirrm lib/erlang/lib/ejabberd-%%VERSION%%/priv X@dirrm lib/erlang/lib/ejabberd-%%VERSION%%/ebin X@dirrm lib/erlang/lib/ejabberd-%%VERSION%% END-of-ejabberd/pkg-plist echo x - ejabberd/pkg-install sed 's/^X//' >ejabberd/pkg-install << 'END-of-ejabberd/pkg-install' X#!/bin/sh X Xif [ "$2" != "POST-INSTALL" ]; then X exit 0 Xfi X XUSER=ejabberd XGROUP=${USER} XUID=522 XGID=${UID} X Xif ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then X if pw groupadd ${GROUP} -g ${GID}; then X echo "Added group \"${GROUP}\"." X else X echo "Adding group \"${GROUP}\" failed..." X exit 1 X fi Xfi X Xif ! pw usershow "${USER}" 2>/dev/null 1>&2; then X if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ X -s "/bin/sh" -d "/var/run/ejabberd" \ X -c "ejabberd pseudo user"; \ X then X echo "Added user \"${USER}\"." X else X echo "Adding user \"${USER}\" failed..." X exit 1 X fi Xfi X Xmkdir -m 750 /var/log/ejabberd /var/spool/ejabberd /var/run/ejabberd 2>/dev/null Xcat > /var/run/ejabberd/.inetrc << __EOF__ X{lookup,["file","native"]}. X{host,{127,0,0,1}, ["localhost","hostalias"]}. X__EOF__ Xchown -R ejabberd:ejabberd /var/log/ejabberd /var/spool/ejabberd /var/run/ejabberd X Xexit 0 END-of-ejabberd/pkg-install echo x - ejabberd/pkg-deinstall sed 's/^X//' >ejabberd/pkg-deinstall << 'END-of-ejabberd/pkg-deinstall' X#!/bin/sh X Xif [ "$2" != "POST-DEINSTALL" ]; then X exit 0 Xfi X XUSER=ejabberd X Xif pw usershow "${USER}" 2>/dev/null 1>&2; then X echo "To delete ejabberd user permanently, use 'pw userdel ${USER}'" Xfi X Xif pw groupshow "${USER}" 2>/dev/null 1>&2; then X echo "To delete ejabberd group permanently, use 'pw groupdel ${USER}'" Xfi X Xrm -Rf /var/run/ejabberd X Xecho "If you wish to delete ejabberd data and log files, remove" Xecho "'/var/spool/ejabberd' and '/var/log/ejabberd' directories." X Xexit 0 END-of-ejabberd/pkg-deinstall exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 12: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 5276116A4CF for ; Tue, 20 Jul 2004 12:00:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 387D643D62 for ; Tue, 20 Jul 2004 12:00:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KC0N5P037421 for ; Tue, 20 Jul 2004 12:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KC0Nup037420; Tue, 20 Jul 2004 12:00:23 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 12:00:23 GMT Resent-Message-Id: <200407201200.i6KC0Nup037420@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Guido Falsi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AF5D16A4CE for ; Tue, 20 Jul 2004 11:58:03 +0000 (GMT) Received: from mail.dada.it (mail2.dada.it [195.110.100.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 1AB2443D1F for ; Tue, 20 Jul 2004 11:58:02 +0000 (GMT) (envelope-from mad@madpilot.net) Received: (qmail 31880 invoked from network); 20 Jul 2004 11:57:58 -0000 Received: from unknown (HELO madpilot.net) (195.110.114.197) by mail.dada.it with SMTP; 20 Jul 2004 11:57:58 -0000 Received: (qmail 82405 invoked from network); 20 Jul 2004 11:57:59 -0000 Received: from wedge.madpilot.net (192.168.13.11) by 0 with SMTP; 20 Jul 2004 11:57:59 -0000 Received: from wedge.madpilot.net (localhost.madpilot.net [127.0.0.1]) by wedge.madpilot.net (8.12.11/8.12.11) with ESMTP id i6KBvx9l003925 for ; Tue, 20 Jul 2004 13:57:59 +0200 (CEST) (envelope-from mad@wedge.madpilot.net) Received: (from mad@localhost) by wedge.madpilot.net (8.12.11/8.12.11/Submit) id i6KBvxZA003924; Tue, 20 Jul 2004 13:57:59 +0200 (CEST) (envelope-from mad) Message-Id: <200407201157.i6KBvxZA003924@wedge.madpilot.net> Date: Tue, 20 Jul 2004 13:57:59 +0200 (CEST) From: Guido Falsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69340: [maintainer-update] fix bluetooth stack detection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Guido Falsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 12:00:23 -0000 >Number: 69340 >Category: ports >Synopsis: [maintainer-update] fix bluetooth stack detection >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 Jul 20 12:00:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 5.2-CURRENT i386 >Organization: none >Environment: System: FreeBSD wedge.madpilot.net 5.2-CURRENT FreeBSD 5.2-CURRENT #3: Tue Jul 13 16:27:54 CEST 2004 root@wedge.madpilot.net:/usr/obj/usr/src/sys/WEDGE i386 >Description: Fix the detection of the bluetooth stack in this port. I'm not bumping portrevision since there's no functionality change, but the installed binaries DO differ. This is still untested on any architecture other than i386, so any testing is encouraged! >How-To-Repeat: >Fix: diff -ruN openobex.old/Makefile openobex/Makefile --- openobex.old/Makefile Sat Jul 17 19:52:16 2004 +++ openobex/Makefile Sat Jul 17 19:52:47 2004 @@ -14,8 +14,8 @@ MAINTAINER= mad@madpilot.net COMMENT= Open source implementation of the OBEX protocol -WANT_AUTOCONF_VER= 253 -WANT_AUTOMAKE_VER= 14 +USE_AUTOCONF_VER= 253 +USE_AUTOMAKE_VER= 14 WANT_LIBTOOL_VER= 15 USE_GMAKE= yes INSTALLS_SHLIB= yes diff -ruN openobex.old/files/patch-aclocal.m4 openobex/files/patch-aclocal.m4 --- openobex.old/files/patch-aclocal.m4 Sat Jul 17 19:52:16 2004 +++ openobex/files/patch-aclocal.m4 Sat Jul 17 19:52:47 2004 @@ -1,6 +1,6 @@ ---- aclocal.m4.orig Mon Mar 22 16:19:39 2004 -+++ aclocal.m4 Mon Mar 22 16:22:51 2004 -@@ -67,6 +67,35 @@ +--- aclocal.m4.orig Wed Jun 16 19:59:04 2004 ++++ aclocal.m4 Wed Jun 16 20:26:17 2004 +@@ -67,6 +67,36 @@ BLUETOOTH_HOOK([],failure) ]) @@ -9,7 +9,8 @@ +AC_DEFUN([FREEBSD_BLUETOOTH_HOOK],[ + AC_MSG_CHECKING([for the FreeBSD/netgraph bluetooth support]) + echo -+ AC_CACHE_CHECK(for the struct sockaddr_rfcomm in , ac_cv_have_sockaddr_rfcomm, ++ AC_CHECK_LIB(bluetooth, bt_aton, ++ [AC_CACHE_CHECK(for the struct sockaddr_rfcomm in , ac_cv_have_sockaddr_rfcomm, + [AC_TRY_COMPILE([#include + #include + #include @@ -24,10 +25,10 @@ + AC_DEFINE(HAVE_BLUETOOTH) + AC_DEFINE(HAVE_BLUETOOTH_NETGRAPH,1,[Compile on FreeBSD]) + USE_BLUETOOTH="yes" -+ AC_CHECK_LIB(bluetooth, bt_aton, -+ [LIBS="$LIBS -lbluetooth" AC_DEFINE(HAVE_BT_ATON,1,[Define to 1 if you have the \`bt_aton' function.])]) ++ LIBS="$LIBS -lbluetooth" ++ AC_DEFINE(HAVE_BT_ATON,1,[Define to 1 if you have the \`bt_aton' function.]) + fi -+]) ++])]) + +AC_DEFUN([FREEBSD_BLUETOOTH_CHECK], [ + FREEBSD_BLUETOOTH_HOOK([],failure) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 D7D1516A4D1 for ; Tue, 20 Jul 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 B4EF543D6E for ; Tue, 20 Jul 2004 12:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KCASkU041369 for ; Tue, 20 Jul 2004 12:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KCASqp041368; Tue, 20 Jul 2004 12:10:28 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 12:10:28 GMT Message-Id: <200407201210.i6KCASqp041368@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Kang Liu" Subject: Re: ports/69237: [PATCH] Update www/phpbb to 2.0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kang Liu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 12:10:29 -0000 The following reply was made to PR ports/69237; it has been noted by GNATS. From: "Kang Liu" To: , Cc: Subject: Re: ports/69237: [PATCH] Update www/phpbb to 2.0.10 Date: Tue, 20 Jul 2004 19:33:09 +0800 Seems ok, As the maintainer, I'd like to approve this PR. Thanks for your work :-) Kang From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 13:00: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 973DC16A4CE for ; Tue, 20 Jul 2004 13:00:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 895CF43D53 for ; Tue, 20 Jul 2004 13:00:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KD0bX8044322 for ; Tue, 20 Jul 2004 13:00:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KD0bew044321; Tue, 20 Jul 2004 13:00:37 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 13:00:37 GMT Resent-Message-Id: <200407201300.i6KD0bew044321@freefall.freebsd.org> 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 9226316A4CE for ; Tue, 20 Jul 2004 12:57:51 +0000 (GMT) Received: from mail.ba.zoznam.sk (mail.ba.zoznam.sk [217.75.73.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id D446543D2F for ; Tue, 20 Jul 2004 12:57:50 +0000 (GMT) (envelope-from matuska@mail.ba.zoznam.sk) Received: from localhost (localhost.budkova.zoznam.sk [127.0.0.1]) by mail.ba.zoznam.sk (Postfix) with ESMTP id 6CD14228CD for ; Tue, 20 Jul 2004 14:57:48 +0200 (CEST) Received: from mail.ba.zoznam.sk ([127.0.0.1]) by localhost (mail.example.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 20987-02-4 for ; Tue, 20 Jul 2004 14:57:46 +0200 (CEST) Received: by mail.ba.zoznam.sk (Postfix, from userid 1000) id 03AE7228A4; Tue, 20 Jul 2004 14:57:46 +0200 (CEST) Message-Id: <20040720125746.03AE7228A4@mail.ba.zoznam.sk> Date: Tue, 20 Jul 2004 14:57:46 +0200 (CEST) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69341: [MAINTAINER UPDATE] databases/adodb to 4.50 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, 20 Jul 2004 13:00:37 -0000 >Number: 69341 >Category: ports >Synopsis: [MAINTAINER UPDATE] databases/adodb to 4.50 >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 Jul 20 13:00:36 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD 5.2.1-RELEASE-p8 >Description: Update of databases/adodb from 4.21 to 4.50 >How-To-Repeat: >Fix: --- Makefile.orig Tue Jul 20 14:47:13 2004 +++ Makefile Tue Jul 20 14:53:34 2004 @@ -6,9 +6,10 @@ # PORTNAME= adodb -PORTVERSION= 4.21 +PORTVERSION= 4.50 CATEGORIES= databases www -MASTER_SITES= http://phplens.com/lens/dl/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= adodb DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} EXTRACT_SUFX= .tgz @@ -30,9 +31,11 @@ .endif DOCS= docs-adodb.htm docs-datadict.htm docs-perf.htm docs-session.htm \ - license.txt old-changelog.htm readme.htm readme.txt tips_portable_sql.htm \ + old-changelog.htm readme.htm tips_portable_sql.htm \ tute.htm +TXTDOCS=license.txt readme.txt + ICONS= adodb.gif adodb2.gif BASE= adodb-csvlib.inc.php adodb-datadict.inc.php adodb-error.inc.php \ @@ -45,28 +48,34 @@ CONTRIB=toxmlrpc.inc.php -DATADICT=datadict-access.inc.php datadict-db2.inc.php datadict-generic.inc.php \ - datadict-ibase.inc.php datadict-informix.inc.php datadict-mssql.inc.php \ - datadict-mysql.inc.php datadict-oci8.inc.php datadict-postgres.inc.php \ - datadict-sybase.inc.php +DATADICT=datadict-access.inc.php datadict-db2.inc.php datadict-firebird.inc.php \ + datadict-generic.inc.php datadict-ibase.inc.php datadict-informix.inc.php \ + datadict-mssql.inc.php datadict-mysql.inc.php datadict-oci8.inc.php \ + datadict-postgres.inc.php datadict-sybase.inc.php DRIVERS=adodb-access.inc.php adodb-ado.inc.php adodb-ado_access.inc.php \ adodb-ado_mssql.inc.php adodb-borland_ibase.inc.php adodb-csv.inc.php \ adodb-db2.inc.php adodb-fbsql.inc.php adodb-firebird.inc.php \ adodb-ibase.inc.php adodb-informix.inc.php adodb-informix72.inc.php \ - adodb-mssql.inc.php adodb-mssqlpo.inc.php adodb-mysql.inc.php \ - adodb-mysqli.inc.php adodb-mysqlt.inc.php adodb-oci8.inc.php \ + adodb-ldap.inc.php adodb-mssql.inc.php adodb-mssqlpo.inc.php \ + adodb-mysql.inc.php adodb-mysqli.inc.php adodb-mysqlt.inc.php \ + adodb-netezza.inc.php adodb-oci8.inc.php \ adodb-oci805.inc.php adodb-oci8po.inc.php adodb-odbc.inc.php \ - adodb-odbc_mssql.inc.php adodb-odbc_oracle.inc.php adodb-oracle.inc.php \ - adodb-postgres.inc.php adodb-postgres64.inc.php adodb-postgres7.inc.php \ + adodb-odbc_mssql.inc.php \ + adodb-odbc_oracle.inc.php adodb-oracle.inc.php \ + adodb-odbtp.inc.php adodb-odbtp_unicode.inc.php adodb-pdo.inc.php \ + adodb-postgres.inc.php adodb-postgres64.inc.php \ + adodb-postgres7.inc.php \ adodb-proxy.inc.php adodb-sapdb.inc.php adodb-sqlanywhere.inc.php \ - adodb-sqlite.inc.php adodb-sybase.inc.php adodb-vfp.inc.php \ - adodb-odbtp.inc.php + adodb-sqlite.inc.php adodb-sqlitepo.inc.php adodb-sybase.inc.php \ + adodb-vfp.inc.php adodb-odbtp.inc.php -LANG= adodb-ca.inc.php adodb-cn.inc.php adodb-cz.inc.php \ +LANG= adodb-bg.inc.php adodb-bgutf8.inc.php \ + adodb-ca.inc.php adodb-cn.inc.php adodb-cz.inc.php \ adodb-de.inc.php adodb-en.inc.php adodb-es.inc.php \ adodb-fr.inc.php adodb-it.inc.php adodb-nl.inc.php \ - adodb-pt-br.inc.php adodb-ru1251.inc.php adodb-sv.inc.php + adodb-pl.inc.php adodb-pt-br.inc.php adodb-ro.inc.php \ + adodb-ru1251.inc.php adodb-sv.inc.php PERF= perf-db2.inc.php perf-informix.inc.php perf-mssql.inc.php \ perf-mysql.inc.php perf-oci8.inc.php perf-postgres.inc.php @@ -128,6 +137,9 @@ .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${DOCSDIR}/cute_icons_for_site .for FILE in ${DOCS} + ${INSTALL_MAN} ${WRKSRC}/docs/${FILE} ${DOCSDIR}/${FILE} +.endfor +.for FILE in ${TXTDOCS} ${INSTALL_MAN} ${WRKSRC}/${FILE} ${DOCSDIR}/${FILE} .endfor .for FILE in ${ICONS} --- distinfo.orig Tue Jul 20 14:44:56 2004 +++ distinfo Tue Jul 20 14:17:57 2004 @@ -1,2 +1,2 @@ -MD5 (adodb421.tgz) = ab15ead2b90b1f1c74cee5b6fc643b34 -SIZE (adodb421.tgz) = 341815 +MD5 (adodb450.tgz) = 4605855e79ab5ae4718bfee28c8f675b +SIZE (adodb450.tgz) = 367343 --- pkg-plist.orig Tue Jul 20 14:45:03 2004 +++ pkg-plist Tue Jul 20 14:44:23 2004 @@ -23,6 +23,7 @@ %%ADODB_DIR%%/contrib/toxmlrpc.inc.php %%ADODB_DIR%%/datadict/datadict-access.inc.php %%ADODB_DIR%%/datadict/datadict-db2.inc.php +%%ADODB_DIR%%/datadict/datadict-firebird.inc.php %%ADODB_DIR%%/datadict/datadict-generic.inc.php %%ADODB_DIR%%/datadict/datadict-ibase.inc.php %%ADODB_DIR%%/datadict/datadict-informix.inc.php @@ -43,11 +44,13 @@ %%ADODB_DIR%%/drivers/adodb-ibase.inc.php %%ADODB_DIR%%/drivers/adodb-informix.inc.php %%ADODB_DIR%%/drivers/adodb-informix72.inc.php +%%ADODB_DIR%%/drivers/adodb-ldap.inc.php %%ADODB_DIR%%/drivers/adodb-mssql.inc.php %%ADODB_DIR%%/drivers/adodb-mssqlpo.inc.php %%ADODB_DIR%%/drivers/adodb-mysql.inc.php %%ADODB_DIR%%/drivers/adodb-mysqli.inc.php %%ADODB_DIR%%/drivers/adodb-mysqlt.inc.php +%%ADODB_DIR%%/drivers/adodb-netezza.inc.php %%ADODB_DIR%%/drivers/adodb-oci8.inc.php %%ADODB_DIR%%/drivers/adodb-oci805.inc.php %%ADODB_DIR%%/drivers/adodb-oci8po.inc.php @@ -55,7 +58,9 @@ %%ADODB_DIR%%/drivers/adodb-odbc_mssql.inc.php %%ADODB_DIR%%/drivers/adodb-odbc_oracle.inc.php %%ADODB_DIR%%/drivers/adodb-odbtp.inc.php +%%ADODB_DIR%%/drivers/adodb-odbtp_unicode.inc.php %%ADODB_DIR%%/drivers/adodb-oracle.inc.php +%%ADODB_DIR%%/drivers/adodb-pdo.inc.php %%ADODB_DIR%%/drivers/adodb-postgres.inc.php %%ADODB_DIR%%/drivers/adodb-postgres64.inc.php %%ADODB_DIR%%/drivers/adodb-postgres7.inc.php @@ -63,8 +68,11 @@ %%ADODB_DIR%%/drivers/adodb-sapdb.inc.php %%ADODB_DIR%%/drivers/adodb-sqlanywhere.inc.php %%ADODB_DIR%%/drivers/adodb-sqlite.inc.php +%%ADODB_DIR%%/drivers/adodb-sqlitepo.inc.php %%ADODB_DIR%%/drivers/adodb-sybase.inc.php %%ADODB_DIR%%/drivers/adodb-vfp.inc.php +%%ADODB_DIR%%/lang/adodb-bg.inc.php +%%ADODB_DIR%%/lang/adodb-bgutf8.inc.php %%ADODB_DIR%%/lang/adodb-ca.inc.php %%ADODB_DIR%%/lang/adodb-cn.inc.php %%ADODB_DIR%%/lang/adodb-cz.inc.php @@ -74,7 +82,9 @@ %%ADODB_DIR%%/lang/adodb-fr.inc.php %%ADODB_DIR%%/lang/adodb-it.inc.php %%ADODB_DIR%%/lang/adodb-nl.inc.php +%%ADODB_DIR%%/lang/adodb-pl.inc.php %%ADODB_DIR%%/lang/adodb-pt-br.inc.php +%%ADODB_DIR%%/lang/adodb-ro.inc.php %%ADODB_DIR%%/lang/adodb-ru1251.inc.php %%ADODB_DIR%%/lang/adodb-sv.inc.php %%ADODB_DIR%%/perf/perf-db2.inc.php @@ -104,7 +114,12 @@ %%ADODB_DIR%%/xsl/convert-0.2-0.1.xsl %%TESTS%%%%ADODB_DIR%%/tests/benchmark.php %%TESTS%%%%ADODB_DIR%%/tests/client.php +%%TESTS%%%%ADODB_DIR%%/tests/pdo.php %%TESTS%%%%ADODB_DIR%%/tests/test-datadict.php +%%TESTS%%%%ADODB_DIR%%/tests/test-pref.php +%%TESTS%%%%ADODB_DIR%%/tests/test-pgblob.php +%%TESTS%%%%ADODB_DIR%%/tests/test-php5.php +%%TESTS%%%%ADODB_DIR%%/tests/test-xmlschema.php %%TESTS%%%%ADODB_DIR%%/tests/test.php %%TESTS%%%%ADODB_DIR%%/tests/test2.php %%TESTS%%%%ADODB_DIR%%/tests/test3.php >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 13:10: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 A464016A4CF for ; Tue, 20 Jul 2004 13:10:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 816D243D41 for ; Tue, 20 Jul 2004 13:10:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KDAG3m048700 for ; Tue, 20 Jul 2004 13:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KDAGh7048699; Tue, 20 Jul 2004 13:10:16 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 13:10:16 GMT Resent-Message-Id: <200407201310.i6KDAGh7048699@freefall.freebsd.org> 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 7BF9A16A4CE for ; Tue, 20 Jul 2004 13:05:39 +0000 (GMT) Received: from mail.ba.zoznam.sk (mail.ba.zoznam.sk [217.75.73.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3593243D46 for ; Tue, 20 Jul 2004 13:05:39 +0000 (GMT) (envelope-from matuska@mail.ba.zoznam.sk) Received: from localhost (localhost.budkova.zoznam.sk [127.0.0.1]) by mail.ba.zoznam.sk (Postfix) with ESMTP id 2A89322B9A for ; Tue, 20 Jul 2004 15:05:38 +0200 (CEST) Received: from mail.ba.zoznam.sk ([127.0.0.1]) by localhost (mail.example.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 20689-03-2 for ; Tue, 20 Jul 2004 15:05:37 +0200 (CEST) Received: by mail.ba.zoznam.sk (Postfix, from userid 1000) id D5EFB22B95; Tue, 20 Jul 2004 15:05:37 +0200 (CEST) Message-Id: <20040720130537.D5EFB22B95@mail.ba.zoznam.sk> Date: Tue, 20 Jul 2004 15:05:37 +0200 (CEST) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69342: [UPDATE] www/pear-APC to 2.0.4 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, 20 Jul 2004 13:10:16 -0000 >Number: 69342 >Category: ports >Synopsis: [UPDATE] www/pear-APC to 2.0.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 Jul 20 13:10:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD 5.2.1-RELEASE-p8 >Description: Update of www/pear-APC from 2.0 to 2.0.4 >How-To-Repeat: >Fix: --- Makefile.orig Tue Jul 20 14:59:23 2004 +++ Makefile Tue Jul 20 14:59:29 2004 @@ -6,7 +6,7 @@ # PORTNAME= APC -PORTVERSION= 2.0 +PORTVERSION= 2.0.4 CATEGORIES= www pear MAINTAINER= ports@FreeBSD.org --- distinfo.orig Tue Jul 20 14:59:26 2004 +++ distinfo Tue Jul 20 15:00:26 2004 @@ -1,2 +1,2 @@ -MD5 (PEAR/APC-2.0.tgz) = dfbbe831eeedacc495d3adec26d6f784 -SIZE (PEAR/APC-2.0.tgz) = 43107 +MD5 (PEAR/APC-2.0.4.tgz) = 4962f05bc752e3cfa1f662bbdfa33605 +SIZE (PEAR/APC-2.0.4.tgz) = 44606 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 13:16:28 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 C575616A4CE; Tue, 20 Jul 2004 13:16:28 +0000 (GMT) Received: from arabica.esil.univ-mrs.fr (arabica.esil.univ-mrs.fr [139.124.41.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95CC443D55; Tue, 20 Jul 2004 13:16:27 +0000 (GMT) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: from arabica.esil.univ-mrs.fr (localhost.esil.univ-mrs.fr [127.0.0.1])i6KDGP2r030123; Tue, 20 Jul 2004 15:16:25 +0200 (CEST) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: (from rv@localhost)i6KDGPF9030122; Tue, 20 Jul 2004 15:16:25 +0200 (CEST) (envelope-from herve.quiroz@esil.univ-mrs.fr) X-Authentication-Warning: arabica.esil.univ-mrs.fr: rv set sender to herve.quiroz@esil.univ-mrs.fr using -f Date: Tue, 20 Jul 2004 15:16:25 +0200 From: Herve Quiroz To: Volker Stolz Message-ID: <20040720131625.GA30101@arabica.esil.univ-mrs.fr> References: <200407200906.i6K96dP9018257@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <200407200906.i6K96dP9018257@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69055: [PATCH] textproc/xml4j: update to 4.3.0 and fix 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, 20 Jul 2004 13:16:29 -0000 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jul 20, 2004 at 09:06:39AM +0000, Volker Stolz wrote: > After deinstallation: > > xml4j@menelaos [11:05:06]> ls -l /usr/local/share/java/xml4j/ > total 10 > -r--r--r-- 1 root wheel 1206 Jul 20 10:38 personal-schema.xml > -r--r--r-- 1 root wheel 619 Jul 20 10:38 personal.dtd > -r--r--r-- 1 root wheel 1145 Jul 20 10:38 personal.xml > -r--r--r-- 1 root wheel 2139 Jul 20 10:38 personal.xsd Sorry for that. The attached patch will fix the problem. Herve --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.diff" --- Makefile.orig Tue Jul 20 15:01:19 2004 +++ Makefile Tue Jul 20 15:09:52 2004 @@ -6,25 +6,65 @@ # PORTNAME= xml4j -PORTVERSION= 3.1.1 +PORTVERSION= 4.3.0 CATEGORIES= textproc -MASTER_SITES= http://www.alphaworks.ibm.com/aw.nsf/download/xml4j/ -DISTNAME= XML4J-J-bin.${PORTVERSION} +MASTER_SITES= http://dl.alphaworks.ibm.com/technologies/xml4j/ +DISTNAME= XML4J-bin.${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= XML for Java parser -WRKSRC= ${WRKDIR}/XML4J-3_1_1 +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/./_/g} +USE_JAVA= yes +JAVA_VERSION= 1.2+ NO_BUILD= YES +DATADIR= ${JAVASHAREDIR}/${PORTNAME} -JAVASUBDIR= jdk1.1.8 -DIR= ${PREFIX}/share/java +CONFLICTS= xerces-j-2.* + +SAMPLES= dom sax simpletype socket ui xni xs +PORTDOCS= *.html graphics images javadocs resources +JARFILES= resolver.jar xercesImpl.jar xercesSamples.jar xml-apis.jar xmlParserAPIs.jar +DATAFILES= personal-schema.xml personal.dtd personal.xml personal.xsd + +PLIST_FILES= ${JARFILES:S,^,%%JAVAJARDIR%%/,} \ + ${DATAFILES:S,^,%%DATADIR%%/,} +PLIST_DIRS= %%DATADIR%% do-install: - @${MKDIR} ${DIR}/classes - @(cd ${WRKSRC} && ${INSTALL_DATA} xml4j.jar xerces.jar xercesSamples.jar ${DIR}/classes) - @${MKDIR} ${DIR}/xml4j - @(cd ${WRKSRC} && ${INSTALL_DATA} Readme.html ${DIR}/xml4j) - @(cd ${WRKSRC} && ${CP} -R data docs ${DIR}/xml4j) + @${MKDIR} ${JAVAJARDIR} + @${ECHO_MSG} -n ">> Installing JAR in ${JAVAJARDIR}..." + @cd ${WRKSRC} && \ + ${INSTALL_DATA} ${JARFILES} ${JAVAJARDIR}/ + @${ECHO_MSG} " [ DONE ]" + @${ECHO_MSG} -n ">> Installing data in ${DATADIR}..." + @${MKDIR} ${DATADIR} + @cd ${WRKSRC}/data && \ + ${INSTALL_DATA} ${DATAFILES} ${DATADIR}/ + @${ECHO_MSG} " [ DONE ]" +.if !defined(NOPORTDOCS) + @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." + @${MKDIR} ${DOCSDIR} + @cd ${WRKSRC}/docs && \ + ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; + @cd ${WRKSRC}/docs && \ + ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; + @${ECHO_MSG} " [ DONE ]" + @${ECHO_MSG} -n ">> Installing samples in ${EXAMPLESDIR}..." + @${MKDIR} ${EXAMPLESDIR} + @cd ${WRKSRC}/samples && \ + ${FIND} ${SAMPLES} -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \; + @cd ${WRKSRC}/samples && \ + ${FIND} ${SAMPLES} -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \; + @${ECHO_MSG} " [ DONE ]" +.endif + +.if !defined(NOPORTDOCS) +post-install: + @${FIND} -s ${WRKSRC}/samples -not -type d | \ + ${SED} -ne 's,^${WRKSRC}/samples,${EXAMPLESDIR:S,${PREFIX}/,,},p' >> ${TMPPLIST} + @${FIND} -s -d ${WRKSRC}/samples -type d | \ + ${SED} -ne 's,^${WRKSRC}/samples,@dirrm ${EXAMPLESDIR:S,${PREFIX}/,,},p' >> ${TMPPLIST} +.endif .include --bp/iNruPH9dso1Pn-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 14:58:14 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 CA65A16A4CE for ; Tue, 20 Jul 2004 14:58:14 +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 76CD243D4C for ; Tue, 20 Jul 2004 14:58:11 +0000 (GMT) (envelope-from rushani@FreeBSD.org) Received: (qmail 24698 invoked from network); 20 Jul 2004 14:58:06 -0000 Received: from unknown (HELO localhost) (202.229.152.118) by wasley.bl.mmtr.or.jp with SMTP; 20 Jul 2004 14:58:06 -0000 Date: Tue, 20 Jul 2004 23:55:47 +0900 (JST) Message-Id: <20040720.235547.30101387.rushani@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: Hideyuki KURASHINA In-Reply-To: <200407191340.i6JDeEUc059120@freefall.freebsd.org> References: <20040719.223232.71185611.rushani@FreeBSD.org> <200407191340.i6JDeEUc059120@freefall.freebsd.org> X-URL: http://www.rushani.jp/ X-PGP-Public-Key: http://www.rushani.jp/rushani.asc X-PGP-Fingerprint: A052 6F98 6146 6FE3 91E2 DA6B F2FA 2088 439A DC57 X-RC5-72-Stats: http://stats.distributed.net/participant/psummary.php?project_id=8&id=432320 X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: mharo@FreeBSD.org Subject: Re: ports/69288: [PATCH] security/sudo: Fix deinstall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 14:58:15 -0000 In a previous PR, one of changes I requested was removing ${PREFIX}/etc/sudoers in the ``pkg-plist'' if it is identical with ${EXAMPLESDIR}/sudoers. After sending a PR, I've got a suggestion about where to remove the config file from Umemoto-san. That point is utilizing ``pkg-deinstall''. I believe it is reasonable for consistency because we use ``pkg-install'' for package. I've made a patch again. Please apply following patch (While I'm here, use EXAMPLESDIR in both ``pkg-install'' and ``pkg-deinstall''). Regards, -- rushani Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/sudo/Makefile,v retrieving revision 1.63 diff -u -r1.63 Makefile --- Makefile 20 Jul 2004 08:30:14 -0000 1.63 +++ Makefile 20 Jul 2004 14:43:48 -0000 @@ -7,7 +7,7 @@ PORTNAME= sudo PORTVERSION= 1.6.7.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://www.sudo.ws/sudo/dist/ \ http://probsd.org/sudoftp/ \ @@ -51,10 +51,21 @@ MAN5= sudoers.5 MAN8= sudo.8 visudo.8 +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +PKGINSTALL= ${WRKDIR}/pkg-install + post-patch: @${REINPLACE_CMD} -e 's|^|#|g' ${WRKSRC}/sample.sudoers + @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" \ + -e "s|%%EXAMPLESDIR%%|${EXAMPLESDIR}|g" \ + ${.CURDIR}/pkg-install > ${PKGINSTALL} + @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" \ + -e "s|%%EXAMPLESDIR%%|${EXAMPLESDIR}|g" \ + ${.CURDIR}/pkg-deinstall > ${PKGDEINSTALL} post-install: - ${INSTALL_DATA} ${WRKSRC}/sample.sudoers ${PREFIX}/etc/sudoers.sample + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/sudoers ${EXAMPLESDIR}/sudoers + ${INSTALL_DATA} ${WRKSRC}/sample.sudoers ${EXAMPLESDIR}/sudoers.sample .include Index: pkg-deinstall =================================================================== RCS file: pkg-deinstall diff -N pkg-deinstall --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg-deinstall 20 Jul 2004 14:42:18 -0000 @@ -0,0 +1,12 @@ +#!/bin/sh + +PKG_PREFIX=${PKG_PREFIX:=%%PREFIX%%} +EXAMPLESDIR=${EXAMPLESDIR:=%%EXAMPLESDIR%%} + +if [ $2 != "DEINSTALL" ]; then + exit 0 +fi + +if cmp -s ${PKG_PREFIX}/etc/sudoers ${EXAMPLESDIR}/sudoers; then + rm -f ${PKG_PREFIX}/etc/sudoers +fi Index: pkg-install =================================================================== RCS file: /home/ncvs/ports/security/sudo/pkg-install,v retrieving revision 1.4 diff -u -r1.4 pkg-install --- pkg-install 20 Jul 2004 08:30:14 -0000 1.4 +++ pkg-install 20 Jul 2004 14:46:09 -0000 @@ -1,10 +1,15 @@ #!/bin/sh + +PKG_PREFIX=${PKG_PREFIX:=%%PREFIX%%} +EXAMPLESDIR=${EXAMPLESDIR:=%%EXAMPLESDIR%%} + if [ $2 != "POST-INSTALL" ]; then exit 0 fi + if [ -e ${PKG_PREFIX}/etc/sudoers ]; then echo "Will not overwrite existing ${PKG_PREFIX}/etc/sudoers file." else - cp -p ${PKG_PREFIX}/etc/sudoers.sample ${PKG_PREFIX}/etc/sudoers + cp -p ${EXAMPLESDIR}/sudoers ${PKG_PREFIX}/etc/sudoers chmod 440 ${PKG_PREFIX}/etc/sudoers fi Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/sudo/pkg-plist,v retrieving revision 1.9 diff -u -r1.9 pkg-plist --- pkg-plist 20 Jul 2004 08:30:14 -0000 1.9 +++ pkg-plist 20 Jul 2004 14:43:03 -0000 @@ -1,4 +1,5 @@ -@unexec if cmp -s %D/etc/sudoers %D/etc/sudoers.sample; then rm -f %D/etc/sudoers; fi bin/sudo -etc/sudoers.sample sbin/visudo +%%EXAMPLESDIR%%/sudoers +%%EXAMPLESDIR%%/sudoers.sample +@dirrm %%EXAMPLESDIR%% From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 15:03: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 E447F16A4CE; Tue, 20 Jul 2004 15:03:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B9743D2D; Tue, 20 Jul 2004 15:03:38 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KF3ceG059918; Tue, 20 Jul 2004 15:03:38 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KF3cgh059914; Tue, 20 Jul 2004 15:03:38 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 15:03:38 GMT From: Volker Stolz Message-Id: <200407201503.i6KF3cgh059914@freefall.freebsd.org> To: hsn@netmag.cz, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69316: [PATCH] sysutils/portindex: update to 17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 15:03:39 -0000 Synopsis: [PATCH] sysutils/portindex: update to 17 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 15:03:16 GMT 2004 State-Changed-Why: Committed, thanks! Once again contained patch for the readme.html... http://www.freebsd.org/cgi/query-pr.cgi?pr=69316 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 15:20: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 2B61116A4CE for ; Tue, 20 Jul 2004 15:20:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F0E843D5C for ; Tue, 20 Jul 2004 15:20:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KFKK7S064613 for ; Tue, 20 Jul 2004 15:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KFKKt6064612; Tue, 20 Jul 2004 15:20:20 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 15:20:20 GMT Resent-Message-Id: <200407201520.i6KFKKt6064612@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nick Leuta Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5421516A4CE for ; Tue, 20 Jul 2004 15:12:51 +0000 (GMT) Received: from falcon.lipetsk.ru (falcon.lipetsk.ru [195.34.224.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95D3B43D5D for ; Tue, 20 Jul 2004 15:12:49 +0000 (GMT) (envelope-from skynick@stu.lipetsk.ru) Received: from lstu by falcon.lipetsk.ru with UUCP id S634719AbUGTPMr (ORCPT ); Tue, 20 Jul 2004 19:12:47 +0400 Received: from maverick.stu.lipetsk.ru (localhost [127.0.0.1]) i6KFBP8h097523 for ; Tue, 20 Jul 2004 19:11:25 +0400 (MSD) (envelope-from skynick@maverick.stu.lipetsk.ru) Received: (from skynick@localhost) by maverick.stu.lipetsk.ru (8.12.9p2/8.12.9/Submit) id i6KFBOed097522; Tue, 20 Jul 2004 19:11:24 +0400 (MSD) (envelope-from skynick) Message-Id: <200407201511.i6KFBOed097522@maverick.stu.lipetsk.ru> Date: Tue, 20 Jul 2004 19:11:24 +0400 (MSD) From: Nick Leuta To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69343: [maintainer update] ftp/bsdftpd-ssl from 1.0.1 to 1.0.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Nick Leuta List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 15:20:21 -0000 >Number: 69343 >Category: ports >Synopsis: [maintainer update] ftp/bsdftpd-ssl from 1.0.1 to 1.0.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 Jul 20 15:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Nick Leuta >Release: FreeBSD 4.9-RELEASE i386 >Organization: Lipetsk State Technical University >Environment: System: FreeBSD maverick.stu.lipetsk.ru 4.9-RELEASE FreeBSD 4.9-RELEASE #3: Mon Jun 21 15:20:08 MSD 2004 root@maverick.stu.lipetsk.ru:/usr/src/sys/compile/MAVERICK i386 >Description: It's an update to the new (1.0.2) version of the software. ChangeLog is available at http://bsdftpd-ssl.sc.ru/events.html >How-To-Repeat: >Fix: diff -urN bsdftpd-ssl-ORI/Makefile bsdftpd-ssl/Makefile --- bsdftpd-ssl-ORI/Makefile Wed Mar 3 02:23:54 2004 +++ bsdftpd-ssl/Makefile Mon Jul 19 00:16:13 2004 @@ -6,7 +6,7 @@ # PORTNAME= bsdftpd-ssl -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 PORTREVISION= 0 CATEGORIES= ftp MASTER_SITES= http://bsdftpd-ssl.sc.ru/files/bsdftpd-ssl/archive/1.0/src/ diff -urN bsdftpd-ssl-ORI/distinfo bsdftpd-ssl/distinfo --- bsdftpd-ssl-ORI/distinfo Wed Mar 3 02:23:54 2004 +++ bsdftpd-ssl/distinfo Mon Jul 19 00:16:15 2004 @@ -1 +1,2 @@ -MD5 (bsdftpd-ssl-1.0.1.tar.gz) = fe77f5a8631c01aa85f969355fba3b69 +MD5 (bsdftpd-ssl-1.0.2.tar.gz) = 987d8645a254ec3695d21054a6cad91f +SIZE (bsdftpd-ssl-1.0.2.tar.gz) = 334010 diff -urN bsdftpd-ssl-ORI/files/bsdftpd-ssl.sh bsdftpd-ssl/files/bsdftpd-ssl.sh --- bsdftpd-ssl-ORI/files/bsdftpd-ssl.sh Wed Mar 3 02:23:55 2004 +++ bsdftpd-ssl/files/bsdftpd-ssl.sh Sun Jul 18 01:12:41 2004 @@ -1,5 +1,10 @@ #!/bin/sh +# Add extra options here for the BSDftpd-ssl FTP server. +# See ftpd-ssl(8) for more details. +EXTRAOPTS="-l" + +# You shouldn't edit anything below... if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then echo "$0: Cannot determine the PREFIX" >&2 exit 1 @@ -8,7 +13,7 @@ case "$1" in start) if [ -x ${PREFIX}/libexec/ftpd ]; then - ${PREFIX}/libexec/ftpd -D -l -p /var/run/ftpd.pid > /dev/null + ${PREFIX}/libexec/ftpd -D -p /var/run/ftpd.pid ${EXTRAOPTS} > /dev/null echo -n ' BSDftpd-ssl' fi ;; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 15: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 E056116A4CE for ; Tue, 20 Jul 2004 15:30:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1E6943D41 for ; Tue, 20 Jul 2004 15:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KFULnZ065313 for ; Tue, 20 Jul 2004 15:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KFULRJ065306; Tue, 20 Jul 2004 15:30:21 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 15:30:21 GMT Resent-Message-Id: <200407201530.i6KFULRJ065306@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gerrit Beine Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A87E16A4F7 for ; Tue, 20 Jul 2004 15:25:50 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1F2F43D5A for ; Tue, 20 Jul 2004 15:25:44 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6KFPiMp004379 for ; Tue, 20 Jul 2004 15:25:44 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6KFPhsi004378; Tue, 20 Jul 2004 15:25:43 GMT (envelope-from nobody) Message-Id: <200407201525.i6KFPhsi004378@www.freebsd.org> Date: Tue, 20 Jul 2004 15:25:43 GMT From: Gerrit Beine To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69344: Update Port: irc/unreal X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 15:30:22 -0000 >Number: 69344 >Category: ports >Synopsis: Update Port: irc/unreal >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 15:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Gerrit Beine >Release: FreeBSD 5.2.1-RELEASE-p8 >Organization: pitcom GmbH >Environment: FreeBSD asus.intern.beine-computer.de 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #4: Mon Jul 5 12:53:28 CEST 2004 root@asus.intern.beine-computer.de:/usr/src/sys/i386/compile/ASUS i386 >Description: Update Unreal IRCd to version 3.2.1. This adds a new API and some bug fixes. There is also support for the SQLMod (not official, but it should work). >How-To-Repeat: >Fix: diff -ur unreal.orig/Makefile unreal/Makefile --- unreal.orig/Makefile Wed Jun 2 23:02:31 2004 +++ unreal/Makefile Tue Jul 20 17:15:03 2004 @@ -8,17 +8,20 @@ # PORTNAME= Unreal -PORTVERSION= 3.2 +PORTVERSION= 3.2.1 CATEGORIES= irc MASTER_SITES= http://mirror.nimsay-networks.com/unrealircd/ \ http://unrealircd.za.net/ \ ftp://unrealircd.za.net/pub/UnrealIRCd/ DISTNAME= ${PORTNAME}${PORTVERSION} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= tux@pinguru.net COMMENT= Unreal - the next generation ircd -WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION} +SQLMOD= Unreal/SQLMod.tar.gz + +WRKSRC= ${WRKDIR}/${PORTNAME}3.2 HAS_CONFIGURE= yes @@ -35,6 +38,17 @@ --with-fd-setsize=1024 \ --enable-dynamic-linking +.include + +.if exists(${DISTDIR}/${SQLMOD}) +USE_MYSQL= yes +WITH_SQLMOD= yes +MAKE_ARGS= all custommodule MODULEFILE=m_sqlmod +PLIST_FILES+= Unreal/modules/m_sqlmod.so Unreal/m_sqlmod.conf \ + Unreal/doc/Changes.sqlmod Unreal/doc/README.sqlmod \ + Unreal/doc/LICENSE.sqlmod +.endif + .if defined(WITH_IPV6) CONFIGURE_ARGS+= --enable-inet6 .endif @@ -44,4 +58,25 @@ USE_OPENSSL= yes .endif -.include +post-extract: +.if defined(WITH_SQLMOD) + @${TAR} xfz ${DISTDIR}/${SQLMOD} -C ${WRKSRC} + @${MV} ${WRKSRC}/SQLMod* ${WRKSRC}/SQLMod + @${CP} -r ${WRKSRC}/SQLMod/m_sqlmod.c ${WRKSRC}/src/modules +.endif + +post-patch: +.if defined(WITH_SQLMOD) + @${PATCH} -d ${WRKSRC} < ${WRKSRC}/SQLMod/patch +.endif + +post-install: +.if defined(WITH_SQLMOD) + @${CP} ${WRKSRC}/SQLMod/sample.conf ${PREFIX}/Unreal/m_sqlmod.conf + @${CP} ${WRKSRC}/SQLMod/Changes ${PREFIX}/Unreal/doc/Changes.sqlmod + @${CP} ${WRKSRC}/SQLMod/README ${PREFIX}/Unreal/doc/README.sqlmod + @${CP} ${WRKSRC}/SQLMod/LICENSE ${PREFIX}/Unreal/doc/LICENSE.sqlmod + @${INSTALL} ${WRKSRC}/src/modules/m_sqlmod.so ${PREFIX}/Unreal/modules/m_sqlmod.so +.endif + +.include diff -ur unreal.orig/distinfo unreal/distinfo --- unreal.orig/distinfo Mon May 31 15:33:19 2004 +++ unreal/distinfo Tue Jul 20 17:12:31 2004 @@ -1,2 +1,2 @@ -MD5 (Unreal3.2.tar.gz) = cc24872a1382bc11e2fac96ac6b016f2 -SIZE (Unreal3.2.tar.gz) = 1477195 +MD5 (Unreal3.2.1.tar.gz) = ebe56fd42fc229681f527932eaa173cc +SIZE (Unreal3.2.1.tar.gz) = 1614434 diff -ur unreal.orig/pkg-plist unreal/pkg-plist --- unreal.orig/pkg-plist Mon May 31 15:33:19 2004 +++ unreal/pkg-plist Tue Jul 20 17:18:54 2004 @@ -57,6 +57,7 @@ Unreal/LICENSE Unreal/Donation Unreal/unreal +Unreal/modules/cloak.so Unreal/modules/commands.so Unreal/modules/m_addline.so Unreal/modules/m_addomotd.so @@ -71,6 +72,7 @@ Unreal/modules/m_close.so Unreal/modules/m_connect.so Unreal/modules/m_cycle.so +Unreal/modules/m_dccallow.so Unreal/modules/m_dccdeny.so Unreal/modules/m_eos.so Unreal/modules/m_globops.so @@ -144,6 +146,7 @@ Unreal/modules/m_who.so Unreal/modules/m_whois.so Unreal/modules/m_whowas.so +Unreal/modules/oldcloak.so @dirrm Unreal/networks @dirrm Unreal/modules @dirrm Unreal/doc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 15: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 C31B516A4CE for ; Tue, 20 Jul 2004 15:50:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8A1043D3F for ; Tue, 20 Jul 2004 15:50:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KFoTmM066856 for ; Tue, 20 Jul 2004 15:50:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KFoTuN066855; Tue, 20 Jul 2004 15:50:29 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 15:50:29 GMT Message-Id: <200407201550.i6KFoTuN066855@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Simon Lang Subject: Re: ports/69274: [PORT UPDATE] devel/root - Version 4.00.06 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simon Lang List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 15:50:29 -0000 The following reply was made to PR ports/69274; it has been noted by GNATS. From: Simon Lang To: freebsd-gnats-submit@FreeBSD.org, simon@lang-clan.de Cc: Subject: Re: ports/69274: [PORT UPDATE] devel/root - Version 4.00.06 Date: Tue, 20 Jul 2004 17:44:07 +0200 This is a multi-part message in MIME format. --------------000700050509020809090901 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit -- ,,, (o o) +---------------------------------------ooO--(_)--Ooo----------+ | | | Simon Lang | | | | E-Mail: simon@lang-clan.de | | Homepage: http://www.lang-clan.de | | | +--------------------------------------------------------------+ --------------000700050509020809090901 Content-Type: text/plain; name="root.diff.bz2.enc" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="root.diff.bz2.enc" begin-base64 644 root.diff.bz2 QlpoOTFBWSZTWRhIQKUALq3/gH//AIF/////////9L////5gKf773yvVI622+y3fNts+ufa7FmKp 49JvsHxeg+8++MU3xJ87r2zRtmlt9va8+G0q622106ldddSqUXduO2q7pnQUDFR60BoOveztsqwg FjGRCo0dBy6svGcSrN3AKZvuYSgiEnkU/RNoaTAmUejRkhP0SeoB6T1NMEGg0aYg0MgGgQAQSeqe mTTSjamMiepk0aaNPSABoaAAAAAGmgRqIGlPU/TVTxNRtENNAGg0GgAAAAADQASaUgghoBT1PQo8 npG1JpoDJpobU00PUNA0AGmmgABEkSaEZDSnkwRo1T8U2mgpmamTE001GNRtTJk0A9TTQDEEiQQC aAIaAKejRMBKfo1M1PVN6UHqekepoab1Gk0yGg0OHsEkJJGEYu2rrwAUj323YUfv9p93c9v3f0/V Kz9ffFxcULbbZ/svrflinoYOBsaQoQDCuMD+Pt7TJ3TB/Q5f9+JZMCIlRgcClyJhRRvRwxcgjOzr 5C5MUg5DkmECqW1VVbapbVtqqpVttqltpatpVUVMCYLgByA5YByn5jVv1559vuvcBrw8zDPIm14Z DD6e5rAnntCdqAavEor50KihFkd3v/L09s3x935JMW7n3vhwfPwe1rNb+LNGEDws7JgUZRlVRlPc OoxhLj5piGFTLO4YZsGJklS53JcrBSQUdRlHUZRxRlih36MlSWs8/FR2vzNHVMmWmRdfW+8s48+a CwWCwWLBSCwWCwWCwWCwWCwWCwWCkFIsFBQiqgtFk9l7kjXKSK6oytf9uW/fizYGZ2Z2Zma7X5sW ea7RX7AQFRLeFOOZAiChUF0G9y4kzZNxEqFssSjGMN4kNZQYxzaQJSUkE5iQrBIig3nB0GGwks5C LXIn94fjNGcwjXaewWkuDfcTNdpmFsblOMrHQs1lmBBhxouOGwzMKosSKLTTs5W2XTy+TjOXvnZn 63z8uE8qsUFIovlZWKYhnrrhSlL4pGHiOOqnT1xzzm5Lo5O7ncK6tVoGo6zDCVjyHMhIhVenTodm mYFFC1gTHBn55WR/WuGQ5e4nt5oDxXjfceV1X6tla17XsfWc3vdzq1Wqr7O3I4vh4c/GwBuoNekg W6BmfY2+Pims4d/r92gsIw9DFzd/LEhMgCJFwKi6eOlmZma3Z9mkQDH2Ce02Pj56bOOGqFqjiR1j odh990lWG7c88kX5JiSmBubPG5fk4MMvFzXdctlRbCMYIV7ponRbSXKzYYaFWVs/MwZyLgeDDe+G 3caZFbTteWfMZsOReg2fM6PqtyuHD0PB8jm9TvdWq1Ve53Ons754+K9vs8nR3U83CzqjVbrsKo8v dzAYzo6Jx1XOTBsHpYWMAwNRjR2Oxp+JSCIPHA+ZYD2oD7LeSyxakkKUQbghERG9ToK4kIWCGgsA UNSkpKJYh8ZQiHyw5+7MmYE9fvxspUomFbyn7T6UH2lx5voCYQoRx/YkNZF1gujpXvO7kwFKTUbi G1tpgg1FUyZMw7YH5NJ07x1kT4CeAPeE0gw8O4UUOgQG3Y4QaSXuoC2sfsGQMP4I7RSBHA5TWGaP WGAMbGwGJjBCWoLVf/IDT6iA+wz+33Nnp+XulHnhn8fk8yYlSfTQKUXsLTupaPsUSRJwIYiShsou s5FGTlDO9Hr2HE/2AxvwLYHhLPxm9fShJflS9CXeE9qeATmTaC4PoA50OYCF5FIMH/aj8aeZDT23 31HFDoInFTtFgTdAiHQnaPjAwsYs1k29Pk3iM3ZViZ3lOgJiQ4UHKBSUrQH3+0mexrHTr8bTZjHz XTypfFNIFl4Gekfr/iB5JewKIxfQIDvAvepFIQF6DcTZU0chBEIIbgnktpXcvX3HA5yYzdiCJKoO JQLdXhWIizw0mLO7Pa6r1C+PpIz27P6z1h2oxt+oC0LWDj63IJXwEEltaowKooqeQkfeKc+qaKlz CgUwPuqKw8c5EOM4RdqNMSKztLBGnUGYei3NKbR0WE0YDC/Tc1uiGRkJkKpQuKB8HEbHA9gWAsRr VQDvjF37gadCIisbThh4LhyHpOg7QMDG12aqYXZE4Lha5170s2/9RwQ7ZY4ZNvjZlV2d7B2y+GUO 2Xk3soVSsZxcoGbPNbiZirQNFzW4z4Si2LS5l9wB9yBo7/w4YWBbnBdKE+T6juQgRo0ZvVriH3/v PVcCuSaE0MG0JDQwbEJoR5SeR4Gu42jNJhns9JTjwJjlhjp7y1RLx2hp1vE8dNy4OVKRJSNBcAK4 LkXc9r2Oj6Xt5r0zQ0mmIaa0b0Y53OlILzxfmj6uXhblQpu6tVvG1q2TJDYHlXfeklOrV26qlvd8 loL2EpoOsov4oLvicb2m+/Cl8G/Pn9S+w6UHcJgCaR7n7bnMLeWHJToGNZa6abKfkGFh4vE5bxNG XSd+hiYhn5wSJtmCYh+dyFMEBEPNOdpVYNsFJ5ohcNh8QzC4BVayeCz5ASCDAntAkD1ApEKHWcRS nXBAwPoI6zBmH5qO+h+k2hxCBlAwxIx+o+kQU2BssggoCqRERIqoqpFRIvK1FIpFIiqJFIoqkRBS KREkkiQWAdzunYKDutNgps2coig+ZDIHWI+d6TltpIBxP1jUVCEDs9ehCQKUGKQMGkzHMujRm4/R xPoPmJisBryL2emSKHhCGQYlVT1XvcU5+npyxvSB44oO5eavyQjPHje4Fhif+gYp6i15oDuBl2go PcE1Cho32gV7IBwKRTZCvIINhixYCECANoKDQBEFiRShgoniBi2IxCjqblwJFRwRX1GqAQX7Tsp9 rhRCBaQhUkyAoYkRjIERB4E29vxaAPOL6zk/Vx/D174YUWheCyqvQV98M8CHUd/701IMBRdVJdmL NVhUk0GvVi7yVveIqbNEVDWN3FB1Yw4Fls4s0kKIq8gu7mZiKiDYF1gkbANpAyCJkiADkBC1FikT giQi7lgpblIFK+m4UoWJFAKqqqqrJM5JgBxIWQE+dESQZGRAopFYghwQwOyymDdF9pBIHtpL3KAI GDZsgW4CwWAhEQNAXIBvu/vmIPQAYGQRMWClJSj6YFGGmGdLF0jFpsW6m8jiWW8CwhrBcoMAuOYL AUJEPKlJ8sLhHIF0O76p21XeUdcgIUiTYzFIfcoIm/KtjN4236Fva5aPDISP1+aeHiygMDc4QoGU 8nN6qe32kedqSHOniN+py6qVoDdqi8668MmcfBpne1ZDxRG7OAaHgi+MStHXkngWInY8+xDEGCD9 rXKW500xGVFb4C7W2hOgBaGous8XXjS/6otnOLFpu352UTFr8Hh2iv2+L0Grp2SHc3588OqI65Y9 qyjPGOqq1xONtQiTfkeH3r1uC9RaWUXLbM/Q08/T1O4OQuGFTTdGN7EvBh5bdOW7ONcb6ZzkHKE6 ph+ZW2XTrWWGNMjqqdXXhPz6YQB7acKtBDBmDOJ1yRrBk8LY4ueGFnR26IOl4fZelJOcko3vWT1j 49krGjnNgfXAHbMH2EBbwQR+4ZgAT6Bo7aaXRmZtHwyinZGUcmC8bz01eQyVImXmQV0wvfTYvu3C 7dexvp7L7OhtxZm8ipqqp6pqKqaKaLB6PccI+PzQfSJ9wHk9C27YoEExLZ74dRwrsD0vrRhdEQ+X k4mym8wZcHeqs61RRJDStatWrzBlWssawL1LaGMrnc4aWADnlAISVS8GXgXjDQyDMobRMEGYCAHV 0SYwhUDY43rpDLLKNczxlJloqqqqqrQlgw2DDWAyIMNBYyEobc1TL3gwdBWKhKQCsKhrwLkp1K+Q 0F5gMggmAigMSBWHXgEYO8sFMKmAWnaRDFYAMGCU9DcaAxBwLIlBQ2GYXnJ4vGcZmByMgEmgQAZG QgkDZvawcSSnk3XBvRghaizRgyS1j5wxgDVQS1gRD2DzCeY6ya+sYwZRQGtmPGvpIs5PL1TsHihI ZGHlhzd85JtzTNjQ6CQK3yAi5yMExMViAAYaXFXEpNS8VuyZYgCV95SVFzyy6nGNLi6ah7OsgCpS CpI12xTtnihJDUts7xdJYwQ56cGvroiILFrBC85SBd0OAIElI3yokcTAAE2A32sSDNhAJSYhDDkY 5TVGqLhVWudIHAwY2WxJLSxULJFtlUVF+yyhg7ZGBCSW1RVwqzKBUKbAPMF6Rghq5WMt3A6hjES2 Kp8Lnh2MxDZLNjbBqQrfYO8fQfFzZR0IADhPhtoondtRmKHPLCOWcESykKCOCnhxcbJhddmaFeA1 rNR1orFSCFePCKjQwOYCJ8knjudnq5+VY4UuLvACoVmNEGZtv0eHzSDaxF6uma7htw3UF59Tfsqd XcpbjBbtwlnlBYvnOOiGwUifARa0nRSC6QiZFx7+fRD29QgdUBclvaYBHlkpBJqGBfhohsoBw2UN vNxngETm5gSOOCFNemms8dNththYJiCNeURM0psXd3DSyDom+CB4ZeJnRUsX1PkGADVTtDCkLyUc BjEGFyQKROggkAyMiNu0q6hHASnnHNyOF7CxauqEAnXA26cZSRiRizKeDzmoY0qvOJWux61fSRg0 XbQi0IESEBqRA++pBgYm68i+AEGVpyQsJuwvHVezoytJMTGkqXBChFUPAMFc3MLGQIdZ+WNoQc4X mtacdNcSu+2k8jXp8Ef7gFLjEuS1oUshOl8MpoJBFYItlZYV9z7YtuielVPNPu3LWF3aXwtT6PBB olDNI7xnqmdZs6YVnpGdK1o11lAWtDLf1IQkdFLf1uENAKGNWXuYTaO7FkzLVRaulq/mfQRGuEjs qpVYqX0RShtZjGgUokKzoZxEILxdUSOxmAQE+8ZgHF+lSPyM9YfOnsnsuPj9Xp/x2Ln/PmrwGPcf nvQEcHjA6/TpbqRpUZYohYmsKLCxO/QcR+tac7u7z76IXz9hyBcLEZD6iSDxFWd+qbocAXS6ZUsm ZVVQogofiOg7j+DsBrBSIIBuSKGKM92rbt+k+NdwSIpWtlT4G8DrF8gUwX3+zvmLcen5CEl75JiE k+IkPtMgsBViyI74eLCqqqqquRaqqqrbVVVW20tVVVVVVVVVVVVVVVVVVVVVVVIqqqqs2+7Nc56n l8odUOqAn4esYZTtqYKC77Q9IFa2ZaM6gcFz+Q2PuEURgJa/nEpdSeJXEyFqQL1Y5ab2QZ9GNj+F BPpth+Pqq+Uy4/QJ9imNGwHjGBl+tN3AXlVgcQGwHHZPV7u5OHIa8/YfMiBlYiwgnCFCnT+m3o/e Bo1fu5CNt7DQiZVhQwEmM7LwNovRUHGY5cre10ve6WiXkn5GGbBNAgpmW+oRaaCtzTO0UIvYxqTb HYIwSMLvDpoHW+VUUHlXKvkUj/llB8y91RoXvl8vNzbMQGhEMhMIjAwh1+Bl7kdKrYTsSA9Rp7NY dQdAp5WIDzdSQLEQKci/hSHJe4n1Lm1eEQUgOyMOEu7UsBoULZ9ZnlRlHFQ6WEht25+ZNWqwDrXw tayBg/42onCpIRvoent6ZFSSBFgHmFAJGA0OvaHYBdcYbGYdKcpoMFKAqnvyTXFmlyBAewmhBigl AWqURwZi7d19irVa1r2MSXiXnyAYLQKczmpU4oVEwXfEOHticAbyeY8rFNWw2aKlkulk8MCzBBk0 mQXAIYxTDaRop36EzvfEmhudvm61Y3eKPisYjIr9x9mi+upyJqE8YGdeuXYbngJzHHlMRcyKOUWD ziGuoNzliLg1m19C6BTAunIRsZABMTBCkd3C0mYU4wDfUDZUZrH5xDW3UwS11Np1JmpxV1lZga0I BYCIP4gk+wRgIg5bz0KVzUvJ4N0KEnDc/R8uwpNCNervZCCRpvrDYZNs9qFslHcqqkpokd1NSgsH WAwzh0Ed84ArteECBtNQo5DzGsCwv80GDdgo9WOTR7gg6RHv9GKPShPORYYsoclQhgnnRLxrCkIV nArXNOruzy3i7jtMWL5Lt/LYjw6hbc0jfybtO66lPnzIlHctXIHAa6AKPvPDvsKSieGFE/GqIxVR iKM4/X2d/ZfTG6QI+q6IZ434if3wBHJxRwA1drGFqW0gUuLBDvCWNwzpgmF6oooQ4ii/icBzrkWH cBxECRxPQJZ9CWNpAI+cgTCYkaDAMg1A9NGnOc4/mEPOZlpXlDOKdwA0Qd41gnch4JoOcTa4SRCE JJAJEvvUcnCOgsYe8oXMjNGgXgAzGMtQKIg8e30iaOwmEAzINBpAfOPEOB1EPyTI+KcnunTZ52Pd p3rPxcNASZcnrXhZaqhh1wZAJ2W7lycDl5twULUFWsV0o8BAp5BKDiwQdNAQCHTzC5oI5VzrgJzi Ups6HoFzIGRNLBfd7RsKe8JgNhyp1X4JNBq4hrSvAtEEy5cUTCXJzwoevwcWJm8W8NwTxKjuiO0k QYkFJoO/VpSlKBGKTrHRkbl5n2C0MavN7vXV1CCmKGbATOhA1l6R6wPdAhbj48gcAs9+tpT0NuCz Ze9BS8WhWmAlvLWIoI4zCnL3B4uiTOPNp8X0EtMsSIie44rHPY5KVJhp4S6KCS1Dq0wNw5cQ3tK9 k7Ioo+lzh7UELJ7CLBoKBani8SmCzvnihyoqDU0MGIaAOgc8kjnsOkzqYhaKElQWInoyAHhNIYjR rdQEdsuDkBynSsALJAHP25ApQdtBkiFrIUjsZLB0lxDpTcIQImIkCi+/6Obiv2WDmnhqr+fkbZHb cEowaGKzYBkKrF26INnQTCIZxA6mpNs6qyaAD6T5vmzz0XmggGukQk/DZ8J+XiXWJX6UhafYJsJG Q1VRVUVu+G8AwUcTgC5RYXn5kIJMgW/UBLAUCJgI24K4XERJiSjWAl58DGAYpDQg/hr+s9frNr8f syAmU+qKtP0A7LtC/D6BdgNtqS7JJHiCb81O9nwVw7BWBvqKwqWHbJsmBZMGIAsA3azOZikPJpCh oQ7qOcSICfF4jVqNPcVVVVVkPSUh6x9nT6onAkPJIRsHo9GXQG82biedOlhtie5qLMUlVIggjGMV YKAgirMoGTDEmD7x7XvzoHUwe75z60ZoCBin+EvwN9EjIkfwUkXr0GBgjAaWbC45zWg5NmSwHsSt TSSYZb8cs5Se0Ulh9yns1mzR61GeSB7mIChA0ifIQBpN+prRMLfkbGrdTCqHtPRmSUzyMeteBain 2DZjhrG4719uhQzpOcWhAfMFnAP7DuS4jW1Yu5CRdmYrSaurqRU4tF50o9YVwYaA7NRgieO6x+gI 9SRIMwFBYbh6nzNBQuCvMEGtMsEMyLjr3/rPb+IoCIF5ifsNZ2LIV3E1qWgYONhtO+iE0LSmM8IQ kgc3swOmXA9MfmrLYVqDqhW1gnLdeUNjwWX37rFVaXrWRZIPpERVAxgANiRkUt9NF0tC9YakfyYJ SOwRAHl5p4F6hPtMd3mDxmkaxH4vPbWx1q60gN6yvoZGZVB+7l86NWkuIsDAuFq5CgMR2ikNBIMz MuZfCPYec2l6osLqoLEoZcCLoVpKXbafmJrAocCmIIAleSxekahJltqss6iS7OE0AINdnyRgH9Dt BUC9jBtwhKol4w3JeIyOQp3QzIV8B2Cr4BTryeKKIgVhuQTrm9HMyNu+MWeHEIc4nHlRwymdhQhZ l2vXpni6LXQZwTAB8l9XMIouraYT3ypcGgzDgSqtxbpZ+XwSuGISA1kbA9Ae6X/kVYiqq5/64Exv fgMdnRnjEJP4Adt4G0a4khkHUIEFmC3CEQHxsXLBwQTRfARQWTkjuJ2Zk+VFQos6YzqX9fe+iTG8 IXTAS9FZKaINtKulNZWQEUIDqEDjpBq8axFPtJ7wYFA4weOsOHI1nYL2YqLlruHhA6IjFEFFCCY1 DWq2chFGgJ6KErMInlFG3Eo6HF17rJls1pnjPG4HczCo7jMxyAaQYCxERSEJMQNJjB1JJlsa6Fro kphdjBm8XhPCVcIrZ4iItJpZLhchB6jTCQFufnxmec/Bec9OxAG0CmuwOB7gy9psZpZG9me+jfvv sLYSLTMLpjJWjihcCHJXZkgEplI+Gkyg5UkECkCJlpSm3GF5cjAbLTdX6th2sOlXJa1LUU1ZaFPU BZ2lqXMUs+2/rR2gj/FK4zCzNIqIaGuFxAyC9mlW9qOEF7JMz0651L0jUMch8uztOoF1l9qduWnH ZMqrdPypsIyUUZwASl4AEAmyQkWxcLdR/pO2CTGb80UZUuzWm9dB8GwjWBScC4DfDrTKTQatGl6N Mb3I24jBDJVZlzHMdhmrnx15IX87SQVTrymoyLFJsIg6w6zhQv2rZYUVbf0ciiFBYizJsLK7rTHY uEjJWnEOnIkwF6mDIl5RTBQBNQk2hn0jlJnO/NpksyqXrzD3UsdFmkYHE1kH79cHXNuhMzsHwnyX 3VUyGgHeqhE20kfUECFiQaCZr2WdF5RK46UGCJIwQcBHHQ88E6OUK1IH8ERXEgpB4OVEp8AMSmG0 BvZ2y23gmIhNwTxnpgYncCaOwXUhREqoiAXCJ/EWgJO8TQZJA7Bn3OQ0y+ZUxaoDsSyIDlz89EVt baDeGi3P5tCD5wnagobgZTfStMRBLRFc173uqxC0ihAgbBtEspabwwFWmZfRO8xAJ1anA1mpJHjU FVsZNBJYQHoxFdEqDLgg9pbiJPhSqA1wgtrGaKXc5ofBzlpNjfaLhye498ICITrmEURTYYoXJDNT rhMsKHBLDy5dm9TYNFyPT6gtELla5Eg2nkPJSQLGoDC5C0ih5jq2sC6GFHZ3S4mEAD4EhA3UlAm3 Z3SVsku0W/Bp/fNdGnk6ixBwS2vAZ2LsGEuH1rrOHf45A2sIbofs0pKJP1JFIlKFEiwUiJFIpFIp FJcKq0mEikUikUmIyqilZREI1CpGRKyggkYpFmQdRDbuZQhvO7pDU4710OSxtkRxpuLwwgaOTd5M Uc3jPJ9MNsckgAZOYrz3WmKBtA2bjTdAdYgzNRrW5gvDaQkCDI8arkU95KUVQkcnk+fFFvjKhYtx ii60pIXiMDtEpTk1sGcSdcs+gdo5OCg4BcCwN6YuUjnuKjJkYlsETM3AMw4AkVdlLFVEIOQLZqzW dg5Ei7efx6xmrQ5O/fQcpsnSh4IISE/PAWHiEqXmmlLXNF17GyBShTLFWdzdVJF5gbab0GK9izpd 2hTAvoG0VV6HuRicLv64AJrmihhKBYMBNqVVJJNbXAkMMAwKKnU3bNU00xkAw1LsWO9vbGIjpxza Fw44SCQgIHAr25AihIqMgIdAQYwaY1hISzZjTdUOyERTZWkyFnwnfMylgvWpmRsRPpGZl9Q07d1w koJEaETUA57aKdiPfqMBTDmkEg3Fl8Xh1aFdVtdkIQ2AChtjYhUEdeS6AM9iAEHRkJTvw2TRgGLX Fi1oipAzgkITjSQcNI5dbpt0vtmpK4a25LjPIoi1KiiMghkaiaOnMaylqPyNtpTUwyYcNuwtu7SL SwyGEKSxWgVmWBCwRXvoqqxNDh23S9McnPzslYLHALi5F8EgqUu1idqC0TKW2ZnLNEXxrTKTbsLS SGmzYb4TIA9sTGeeBTF0LMGHIYospgGAwsbRwzmuwEANDQ01K0DGzYaEZAIGhcy8eCSUxEjkCkWH ShDiMtiYNCaHMbN5nlJIIYZTsuokGNHA4N5w2mKBSUlkzIkTEryu93GikR5yYidihUMlmUFyEMro EZ4m62BAOO0TBbThCmIxnHOmFAwsFQ8RpxSM2k5RwQQwwJCS3HLRwYCLnqXFjKRAn6rT1jUrSy/F sTSVLQr0pMmezu5wDd7O3lG/UDxWkWKNZNruN8Oq1hwregaW885uEE3SiwmaZIXY5kmYvfKHPPDv YKpAL52kwaa7vETXOjI4oC4YAklvSTR3hsvrYBdAWsbKThGZfyyBCBoXqAoIkYIyQcmCISmTC7f5 t0lXlYNr1wQbTWdSRsvgBJIkxO2pMIl3AxKYMQBgLh45w0KCmuq5SW5BZHB+DsciZfJmifA/UqFZ yE2Nt82s7mZdM0TBHVRZlQneQIOEDlko/Ma+UKVKMZeEIC8Yb80TEFQ/MKQtyfOt5UIr7fjpmYtG 2D9vwhYXBCZ6wySjDomg9t9A0E4tOfXBIRo5CDcjfcSY2YkEHAqS8ZkhFAsqCuNoKyjaGUo3IDOB gwk2FeyobssZJUWKTJliooiYQ2AICQQmMSFkqIzk9buTzTEPGp6jyjGNBhiURcu5fWu1GxC+g5aq cfMdAsAV6NR47hV6qiobtSNKuxxABvkcqgdwxDexErqJcElwQBFToMMRm5wuJdfsTIBCC4kbJTZH Pclkxmk9yrbtC4pmYwodwQQsSwghtgiHsTdFUIyelOqePnpafGYirCgCQRAhIIRCERAO4M98OU3G 9nN44x3Da4QxwEEJ1Rq+oIks2NuyHLEWQtkIAEhi6ga0D8vEnxSeu6DR6RgOiZDUz4OjNEBoeESQ XcakaSepL6hzj/RZIKsqCyEDdgGC8+Ok4lbbZERi0lg4OYiyqcHo7WEoRTbVgXcPCaa8opdiIRiR QkFkJkkYyGYwEIMtKErAUJsTfmbD1AVEVEbsJPEeEdUrEJDJchLeTLRIL0tW7J6oxbbbWr/zpLB2 89zztCXQX2RbpMZrMXjGkiaR/MT6yq7d+g3cqN+oKn92zixvVsL3ctGSV8aoL/fnnURtSsBIsklh XsLOmGREzynPxeBRbR2cpA1qdpyGcReBc9xVCOLeW0tCBjnOLRk9OQjEKBncFtOANoa0EulHRm8a xKUpecc5zkSljGDAqqPToGXw/ltO7oeXt3XTUdVpN/LObhOmEySTUrRwBI3vuXQsixZchtOsIpT3 46pNytiyyOlcKJvdpeAl0BQek4GhqCjWmgrB03vJK4CUCYAXEYrIYgyzEpI1QLjiQzJNuVy8QsMX vcA36uNSZBv2bLa4k1RkgkkhFgiEAJCMQMBVYgsSDkSrJe9YXvDNkJTqJPkUBoSWw23ovGLoCXDz GArQFPh32gTNG5bYtxKIqEceG5q2SisHTkfoD7TNHROBsaBPaDitqMZYEhZAwzEuzVIuSUXIil/O KTDsQz5fQ37T5Eq0OzT265B+016SBrVYTRs7C2mtyUEDIwJHEsEqHv0GDETL4Lq2kXNxEn2FoIQY kjid1OlGMkNJB12fYw4vM1qqK68xKJJC/GaotLxKLMtm2UaohrRLX7Lpd5GyZwuU7lF5pBCDbcXn x+BajtWagv2/BeSFt0oAQXhvFyHnAv5Wj7RPgcrEqkwTPYDKnmx5NJl4SaQi7QvIKTTJLDo2Xj5r l2X8RBYWSZrZ0W1RGIIQbpgjmPz+Q1mbMyQVV9EMRAcGQQdS/J85hO9oxeY367fhOkxmJlbKxWdf NqZokmbeTyeg5QyIcA1hZqaeaLnOWy1hjJ0ZshvMaK51qiERicyGorSx1wupOtxZMHE2SksnAucT KpDMgSQQAaDSrgg27hk9ncCi5g/ZYKioxUc9UZ/SUnmPWkpI4hyGjrV8l3LFZIzA70Zq5Eg6jaFX TYHL5OY7ZbT0AAf5r9XPBEMruzThwntR3dyTj6B66dT+0PXmy2O/8qyxEgZghRaWMA/+LuSKcKEg MJCBSg== ==== --------------000700050509020809090901-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 15: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 BD19216A4CE for ; Tue, 20 Jul 2004 15:50:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97A7243D31 for ; Tue, 20 Jul 2004 15:50:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KFoU7x066871 for ; Tue, 20 Jul 2004 15:50:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KFoUWk066868; Tue, 20 Jul 2004 15:50:30 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 15:50:30 GMT Resent-Message-Id: <200407201550.i6KFoUWk066868@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bernd Luevelsmeyer Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 025D216A4CE for ; Tue, 20 Jul 2004 15:48:08 +0000 (GMT) Received: from christel.heitec.net (christel.heitec.net [213.70.109.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD80C43D62 for ; Tue, 20 Jul 2004 15:48:07 +0000 (GMT) (envelope-from bernd@heitec.net) Received: from heitec.net (paladin.heitec.net [193.101.232.30]) by christel.heitec.net (Postfix) with ESMTP id E7A5955462; Tue, 20 Jul 2004 17:48:06 +0200 (CEST) Received: (from bernd@localhost) by heitec.net (8.12.11/8.12.11) id i6KFm2DV027706; Tue, 20 Jul 2004 17:48:02 +0200 (CEST) (envelope-from bernd) Message-Id: <200407201548.i6KFm2DV027706@ heitec.net> Date: Tue, 20 Jul 2004 17:48:02 +0200 (CEST) From: Bernd Luevelsmeyer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Hiroo Ono cc: Kris Kennaway Subject: ports/69345: www/xitami compilation problem X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bernd Luevelsmeyer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 15:50:30 -0000 >Number: 69345 >Category: ports >Synopsis: www/xitami compilation problem >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 Jul 20 15:50:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Bernd Luevelsmeyer >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD 4.10-STABLE i386 >Description: There is a problem getting xitami to compile on 64-bit machines. The previous patch (ports/69012) that should remedy this was defective. This one should work, at least on 32-bit intel architectures. I don't have access to other architectures, so I cannot test it there. >How-To-Repeat: Try to build the port. >Fix: ports/www/xitami/files/patch-ae should have this contents: --- src/sfl/prelude.h.orig Tue Jul 20 15:11:55 2004 +++ src/sfl/prelude.h Tue Jul 20 15:21:33 2004 @@ -175,6 +175,10 @@ #elif (defined (FreeBSD) || defined (__FreeBSD__)) # define __UTYPE_FREEBSD # define __UNIX__ +#if !defined(__i386__) +# undef __IS_32BIT__ +# define __IS_64BIT__ +#endif #elif (defined (NetBSD) || defined (__NetBSD__)) # define __UTYPE_NETBSD # define __UNIX__ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 4349C16A4CE for ; Tue, 20 Jul 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 1F30843D31 for ; Tue, 20 Jul 2004 15:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KFoVjn066900 for ; Tue, 20 Jul 2004 15:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KFoUeP066899; Tue, 20 Jul 2004 15:50:30 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 15:50:30 GMT Resent-Message-Id: <200407201550.i6KFoUeP066899@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Simon Dick Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F1C716A4CE for ; Tue, 20 Jul 2004 15:49:14 +0000 (GMT) Received: from home.irrelevant.org (dsl-217-155-238-245.zen.co.uk [217.155.238.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0307243D2F for ; Tue, 20 Jul 2004 15:49:14 +0000 (GMT) (envelope-from simond@home.irrelevant.org) Received: from simond by home.irrelevant.org with local (Exim 4.30; FreeBSD) id 1Bmwrg-0003gw-0F for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 16:49:12 +0100 Message-Id: Date: Tue, 20 Jul 2004 16:49:12 +0100 From: Simon Dick Sender: Simon Dick To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69346: Mainainer port update: mail/squirrelmail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simon Dick List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 15:50:31 -0000 >Number: 69346 >Category: ports >Synopsis: Mainainer port update: mail/squirrelmail >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 Jul 20 15:50:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Simon Dick >Release: FreeBSD 4.9-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD nelly.internal.irrelevant.org 4.9-RELEASE-p1 FreeBSD 4.9-RELEASE-p1 #5: Sat Feb 7 07:48:58 GMT 2004 root@nelly.internal.irrelevant.org:/usr/obj/usr/src/sys/ELEPHANT i386 >Description: Update mail/squirrelmail to use new PHP framework >How-To-Repeat: >Fix: diff -ruN squirrelmail.orig/Makefile squirrelmail/Makefile --- squirrelmail.orig/Makefile Tue Jul 20 16:12:32 2004 +++ squirrelmail/Makefile Tue Jul 20 16:24:37 2004 @@ -16,11 +16,19 @@ CONFLICTS?= ja-squirrelmail-1.* -USE_PHP= yes +USE_PHP= session mhash gettext mbstring WANT_PHP_WEB= yes USE_BZIP2= yes +.ifdef WITH_DATABASE +WANT_PHP_PEAR= yes +.endif + +.ifdef WITH_LDAP +USE_PHP= ${USE_PHP} ldap +.endif + .ifndef WITHOUT_WWWDIR SQUIRRELDIR?= ${PREFIX}/www/squirrelmail .else @@ -42,6 +50,9 @@ @${ECHO_CMD} "SquirrelMail is installed into ${SQUIRRELDIR}" @${ECHO_CMD} "To use the old location ${PREFIX}/squirrelmail define" @${ECHO_CMD} "WITHOUT_WWWDIR when patching or installing" + @${ECHO_CMD} + @${ECHO_CMD} "Use WITH_LDAP to ensure PHP LDAP support is installed" + @${ECHO_CMD} "Use WITH_DATABASE to ensure PEAR framework for database support is installed" @${ECHO_CMD} .if !target(slaveport-post-patch) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 16:08: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 E1CF316A4CE; Tue, 20 Jul 2004 16:08:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C479B43D48; Tue, 20 Jul 2004 16:08:18 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) i6KG8IDG071452; Tue, 20 Jul 2004 16:08:18 GMT (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KG8IBC071448; Tue, 20 Jul 2004 16:08:18 GMT (envelope-from nork) Date: Tue, 20 Jul 2004 16:08:18 GMT From: Norikatsu Shigemura Message-Id: <200407201608.i6KG8IBC071448@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/69345: www/xitami compilation problem X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 16:08:19 -0000 Synopsis: www/xitami compilation problem Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: nork Responsible-Changed-When: Tue Jul 20 16:08:05 GMT 2004 Responsible-Changed-Why: Now, I'm working. http://www.freebsd.org/cgi/query-pr.cgi?pr=69345 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 16:11: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 2BF7316A4CE; Tue, 20 Jul 2004 16:11:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D7C943D2D; Tue, 20 Jul 2004 16:11:21 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KGBKYI071665; Tue, 20 Jul 2004 16:11:20 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KGBKjK071661; Tue, 20 Jul 2004 16:11:20 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 16:11:20 GMT From: Volker Stolz Message-Id: <200407201611.i6KGBKjK071661@freefall.freebsd.org> To: slaven@rezic.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/60479: x11-toolkits/p5-Tk800 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 16:11:21 -0000 Synopsis: x11-toolkits/p5-Tk800 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 16:11:09 GMT 2004 State-Changed-Why: Fixed in ports/67235. http://www.freebsd.org/cgi/query-pr.cgi?pr=60479 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 16: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 88CFC16A4D0 for ; Tue, 20 Jul 2004 16:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6708843D55 for ; Tue, 20 Jul 2004 16:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KGURcv072438 for ; Tue, 20 Jul 2004 16:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KGURH1072436; Tue, 20 Jul 2004 16:30:27 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 16:30:27 GMT Resent-Message-Id: <200407201630.i6KGURH1072436@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrew Heybey Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4D9D16A4CE for ; Tue, 20 Jul 2004 16:23:48 +0000 (GMT) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6772A43D55 for ; Tue, 20 Jul 2004 16:23:48 +0000 (GMT) (envelope-from ath@niksun.com) Received: from stiegl.mj.niksun.com (stiegl.mj.niksun.com [10.70.0.231]) i6KGNlRl004951 for ; Tue, 20 Jul 2004 12:23:47 -0400 (EDT) (envelope-from ath@stiegl.mj.niksun.com) Received: by stiegl.mj.niksun.com (Postfix, from userid 1002) id A285416C4E; Tue, 20 Jul 2004 12:23:47 -0400 (EDT) Message-Id: <20040720162347.A285416C4E@stiegl.mj.niksun.com> Date: Tue, 20 Jul 2004 12:23:47 -0400 (EDT) From: Andrew Heybey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69347: xemacs spews many "past acceptable memory limits" warning messages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew Heybey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 16:30:27 -0000 >Number: 69347 >Category: ports >Synopsis: xemacs spews many "past acceptable memory limits" warning messages >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: Tue Jul 20 16:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrew Heybey >Release: FreeBSD 4.9-RELEASE-p5 i386 >Organization: Niksun, Inc. >Environment: System: FreeBSD stiegl.mj.niksun.com 4.9-RELEASE-p5 FreeBSD 4.9-RELEASE-p5 #0: Tue Apr 20 22:35:25 EDT 2004 ath@stiegl.mj.niksun.com:/scratch/obj/x/src/sys/STIEGL i386 Ports tree cvsup'ed sometime last week. >Description: The port patches src/mem-limits.h to declare the "lim_data" variable as rlim_t (a 64-bit type), but src/emacs.c still defines it as an integer. This makes the memory limit checking think that there are zero bytes available. >How-To-Repeat: Install the editors/xemacs port. Run xemacs. See the warning messages. >Fix: Put this diff in files/patch-emacs.c of the port. --- src/emacs.c.orig Wed Jan 15 07:18:00 2003 +++ src/emacs.c Tue Jul 20 12:02:41 2004 @@ -344,7 +344,7 @@ #endif /* Number of bytes of writable memory we can expect to be able to get */ -unsigned int lim_data; +rlim_t lim_data; /* WARNING! >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 17:00: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 878D416A4CE for ; Tue, 20 Jul 2004 17:00:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E95E43D6B for ; Tue, 20 Jul 2004 17:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KH0eLC075234 for ; Tue, 20 Jul 2004 17:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KH0d5c075229; Tue, 20 Jul 2004 17:00:39 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 17:00:39 GMT Resent-Message-Id: <200407201700.i6KH0d5c075229@freefall.freebsd.org> 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 668D616A4CE for ; Tue, 20 Jul 2004 16:56:27 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65DC443D58 for ; Tue, 20 Jul 2004 16:56:26 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [217.23.66.42] (port=49661 helo=inbox.ru) by mx1.mail.ru with esmtp id 1Bmxui-000G5d-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 20:56:25 +0400 Message-Id: Date: Tue, 20 Jul 2004 20:56:25 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69348: [ maintainer ] devel/phptags: update to 0.2.3 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, 20 Jul 2004 17:00:42 -0000 >Number: 69348 >Category: ports >Synopsis: [ maintainer ] devel/phptags: update to 0.2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 17:00:39 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #5: Sat Jun 19 22:04:33 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: Update to 0.2.3 (just a bugfix release). >How-To-Repeat: >Fix: diff -ruN phptags.orig/Makefile phptags/Makefile --- phptags.orig/Makefile Tue Jul 20 20:41:00 2004 +++ phptags/Makefile Tue Jul 20 20:42:46 2004 @@ -6,7 +6,7 @@ # PORTNAME= phptags -PORTVERSION= 0.2.2 +PORTVERSION= 0.2.3 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN phptags.orig/distinfo phptags/distinfo --- phptags.orig/distinfo Tue Jul 20 20:41:00 2004 +++ phptags/distinfo Tue Jul 20 20:43:41 2004 @@ -1,2 +1,2 @@ -MD5 (phptags-0.2.2.tar.gz) = d1f4f694195b2aeadef285f034fa46b7 -SIZE (phptags-0.2.2.tar.gz) = 149772 +MD5 (phptags-0.2.3.tar.gz) = ef5a57b193f3a00fdde8a7c5a061eaf6 +SIZE (phptags-0.2.3.tar.gz) = 150312 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 17:16: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 ECA0F16A4CE; Tue, 20 Jul 2004 17:16:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD0DC43D5D; Tue, 20 Jul 2004 17:16:40 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KHGe82079493; Tue, 20 Jul 2004 17:16:40 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHGefk079489; Tue, 20 Jul 2004 17:16:40 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 17:16:40 GMT From: Volker Stolz Message-Id: <200407201716.i6KHGefk079489@freefall.freebsd.org> To: hsn@netmag.cz, tingo@start.no, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68704: sysutils/portindex fails on editors/flim, cvsuped at June 5th, 2004 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 17:16:41 -0000 Synopsis: sysutils/portindex fails on editors/flim, cvsuped at June 5th, 2004 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 17:16:24 GMT 2004 State-Changed-Why: Fixed in latest version (via maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=68704 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 17:17: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 9CBA816A4CF; Tue, 20 Jul 2004 17:17:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E3D143D45; Tue, 20 Jul 2004 17:17:08 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6KHH8XP079557; Tue, 20 Jul 2004 17:17:08 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHH8RH079553; Tue, 20 Jul 2004 17:17:08 GMT (envelope-from vs) Date: Tue, 20 Jul 2004 17:17:08 GMT From: Volker Stolz Message-Id: <200407201717.i6KHH8RH079553@freefall.freebsd.org> To: leafy@leafy.idv.tw, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69326: sysutil/portindex cannot make describe properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 17:17:08 -0000 Synopsis: sysutil/portindex cannot make describe properly State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 17:16:52 GMT 2004 State-Changed-Why: Fixed in latest version (via maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=69326 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 17: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 F034116A4CE for ; Tue, 20 Jul 2004 17:20:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC8C643D49 for ; Tue, 20 Jul 2004 17:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KHKFaU079680 for ; Tue, 20 Jul 2004 17:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHKFiE079679; Tue, 20 Jul 2004 17:20:15 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 17:20:15 GMT Resent-Message-Id: <200407201720.i6KHKFiE079679@freefall.freebsd.org> 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 Timoshenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D31DE16A4CE for ; Tue, 20 Jul 2004 17:17:46 +0000 (GMT) Received: from expo.ukrweb.net (expo.ukrweb.net [193.125.78.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6C6C43D55 for ; Tue, 20 Jul 2004 17:17:45 +0000 (GMT) (envelope-from root@expo.ukrweb.net) Received: from root by expo.ukrweb.net with local (Exim 4.34 (FreeBSD)) id 1BmyFM-000DA3-CD for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 20:17:44 +0300 Message-Id: Date: Tue, 20 Jul 2004 20:17:44 +0300 From: Alexander Timoshenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69349: New port: net/jit jabber icq transport X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alexander Timoshenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 17:20:16 -0000 >Number: 69349 >Category: ports >Synopsis: New port: net/jit jabber icq transport >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 Jul 20 17:20:15 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alexander Timoshenko >Release: FreeBSD 5.2.1-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD expo.ukrweb.net 5.2.1-RELEASE-p1 FreeBSD 5.2.1-RELEASE-p1 #2: Thu Mar 18 17:45:54 EET 2004 levsha@expo.ukrweb.net:/usr/obj/usr/src/sys/EXPO i386 >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: # # jit # jit/files # jit/files/patch-jit::jit::wp_client.cpp # jit/files/patch-jabberd::mio_xml.c # jit/files/patch-Makefile # jit/files/patch-jabberd::mtq.c # jit/files/patch-jit::jabber-icq.example # jit/files/patch-jit::jit.sh # jit/files/patch-disco-sg2 # jit/Makefile # jit/distinfo # jit/pkg-descr # jit/pkg-plist # jit/pkg-install # jit/pkg-deinstall # echo c - jit mkdir -p jit > /dev/null 2>&1 echo c - jit/files mkdir -p jit/files > /dev/null 2>&1 echo x - jit/files/patch-jit::jit::wp_client.cpp sed 's/^X//' >jit/files/patch-jit::jit::wp_client.cpp << 'END-of-jit/files/patch-jit::jit::wp_client.cpp' X--- jit/jit/wp_client.cpp Tue Jul 6 18:58:45 2004 X+++ jit/jit/wp_client.cpp Tue Jul 6 18:55:31 2004 X@@ -146,7 +146,8 @@ X } X X void WPclient::SignalDisconnected(DisconnectedEvent *ev) { X- terror e = (terror){0,""}; X+ terror e; X+ e = (terror){0,""}; X X switch(ev->getReason()){ X case DisconnectedEvent::FAILED_BADUSERNAME: END-of-jit/files/patch-jit::jit::wp_client.cpp echo x - jit/files/patch-jabberd::mio_xml.c sed 's/^X//' >jit/files/patch-jabberd::mio_xml.c << 'END-of-jit/files/patch-jabberd::mio_xml.c' X--- jabberd/mio_xml.c.orig Tue Jul 6 19:06:24 2004 X+++ jabberd/mio_xml.c Tue Jul 6 19:07:34 2004 X@@ -142,14 +142,13 @@ X nul += 4; X bufsz = bufsz - (nul - buf); X buf = nul; X- mio_write(m,NULL,"HTTP/1.0 200 Ok X-Server: jabber/xmlstream-hack-0.1 X-Expires: Fri, 10 Oct 1997 10:10:10 GMT X-Pragma: no-cache X-Cache-control: private X-Connection: close X- X-",-1); X+ mio_write(m,NULL,"HTTP/1.0 200 Ok\n" \ X+"Server: jabber/xmlstream-hack-0.1\n" \ X+"Expires: Fri, 10 Oct 1997 10:10:10 GMT\n" \ X+"Pragma: no-cache\n" \ X+"Cache-control: private\n" \ X+"Connection: close\n" \ X+"\n", -1); X m->type = type_NORMAL; X } X END-of-jit/files/patch-jabberd::mio_xml.c echo x - jit/files/patch-Makefile sed 's/^X//' >jit/files/patch-Makefile << 'END-of-jit/files/patch-Makefile' X--- Makefile.orig Tue Jul 6 19:11:02 2004 X+++ Makefile Tue Jul 6 19:10:53 2004 X@@ -2,6 +2,7 @@ X all: X (cd jit && $(MAKE)) X (cd jabberd && $(MAKE)) X+ (cd xdb_file && $(MAKE)) X X clean: X (cd jit && $(MAKE) clean) END-of-jit/files/patch-Makefile echo x - jit/files/patch-jabberd::mtq.c sed 's/^X//' >jit/files/patch-jabberd::mtq.c << 'END-of-jit/files/patch-jabberd::mtq.c' X--- jabberd/mtq.c.orig Tue Jul 6 19:18:05 2004 X+++ jabberd/mtq.c Tue Jul 6 19:18:29 2004 X@@ -127,7 +127,7 @@ X while(1) { X X if (t->mtq->last == NULL ) { X- Sleep(1); X+ Sleep(500); X } X X END-of-jit/files/patch-jabberd::mtq.c echo x - jit/files/patch-jit::jabber-icq.example sed 's/^X//' >jit/files/patch-jit::jabber-icq.example << 'END-of-jit/files/patch-jit::jabber-icq.example' X--- jit/jabber-icq.example.orig Tue Jul 20 16:54:23 2004 X+++ jit/jabber-icq.example Tue Jul 20 16:59:10 2004 X@@ -23,16 +23,16 @@ X XDB requests. This is strongly recommended if X you use xdb_ldap, xdb_sql or other non-file XDB X implementations, too. X- See xdb_file directory for more information. X+ See xdb_file directory for more information. --> X X X X- xdb_file/xdb_file.so X+ %%PREFIX%%/lib/jabber/jit/xdb_file.so X X X ./spool X X- --> X+ X X X- windows-1252 X+ windows-1251 X X X X- 205.188.179.233 X- 64.12.200.89 X+ login.icq.com X X X X X X X- jit/jit.so X+ %%PREFIX%%/lib/jabber/jit/jit.so X X X END-of-jit/files/patch-jit::jabber-icq.example echo x - jit/files/patch-jit::jit.sh sed 's/^X//' >jit/files/patch-jit::jit.sh << 'END-of-jit/files/patch-jit::jit.sh' X--- jit/jit.sh.orig Tue Jul 20 17:09:59 2004 X+++ jit/jit.sh Tue Jul 20 17:10:47 2004 X@@ -0,0 +1,13 @@ X+#!/bin/sh X+ X+PREFIX=%%PREFIX%% X+USER="jabber" X+ X+echo -n " jit" X+case ${1:-start} in X+start) X+ su -f -m ${USER} -c "$PREFIX/sbin/jit -c $PREFIX/etc/jabber-icq.xml -d " ;; X+ X+stop) X+ killall -SIGKILL -u ${USER} jit; X+esac END-of-jit/files/patch-jit::jit.sh echo x - jit/files/patch-disco-sg2 sed 's/^X//' >jit/files/patch-disco-sg2 << 'END-of-jit/files/patch-disco-sg2' Xdiff -ru jabber.orig/lib/lib.h jabberd/lib/lib.h X--- jabber.orig/lib/lib.h 2003-05-30 16:10:24.000000000 +0400 X+++ jabberd/lib/lib.h 2003-12-11 22:48:04.000000000 +0300 X@@ -654,6 +654,9 @@ X #define NS_XDBGINSERT "jabber:xdb:ginsert" X #define NS_XDBNSLIST "jabber:xdb:nslist" X X+#define NS_DISCO_INFO "http://jabber.org/protocol/disco#info" X+#define NS_DISCO_ITEMS "http://jabber.org/protocol/disco#items" X+ X X /* --------------------------------------------------------- */ X /* */ Xdiff -ru jit.orig/jit/icqtransport.h jit/jit/icqtransport.h X--- jit.orig/jit/icqtransport.h 2003-06-02 14:06:51.000000000 +0400 X+++ jit/jit/icqtransport.h 2003-12-12 13:14:40.000000000 +0300 X@@ -20,7 +20,7 @@ X #include "utils/english.h" X #endif X X-#define MOD_VERSION "1.1.6" X+#define MOD_VERSION "1.1.6-sg2" X #define DEFAULT_CHARSET "iso-8859-1" X X typedef unsigned long UIN_t; X@@ -290,6 +290,10 @@ X void it_iq_gateway_set(session s, jpacket jp); X void it_iq_browse_server(iti ti, jpacket jp); X void it_iq_browse_user(session s, jpacket jp); X+void it_iq_disco_info_server(iti ti, jpacket jp); X+void it_iq_disco_info_user(session s, jpacket jp); X+void it_iq_disco_items_server(iti ti, jpacket jp); X+void it_iq_disco_items_user(session s, jpacket jp); X X X void it_save_contacts(session s); Xdiff -ru jit.orig/jit/iq.c jit/jit/iq.c X--- jit.orig/jit/iq.c 2003-04-29 15:03:53.000000000 +0400 X+++ jit/jit/iq.c 2003-12-11 22:48:04.000000000 +0300 X@@ -29,6 +29,10 @@ X void it_iq_gateway_set(session s, jpacket jp); X void it_iq_browse_server(iti ti, jpacket jp); X void it_iq_browse_user(session s, jpacket jp); X+void it_iq_disco_info_server(iti ti, jpacket jp); X+void it_iq_disco_info_user(session s, jpacket jp); X+void it_iq_disco_items_server(iti ti, jpacket jp); X+void it_iq_disco_items_user(session s, jpacket jp); X X void SendSearchUINRequest(session s,UIN_t uin); X void SendSearchUsersRequest(session s, X@@ -73,6 +77,10 @@ X it_iq_gateway_get(s,jp); X else if (j_strcmp(ns,NS_BROWSE) == 0) X jp->to->user ? it_iq_browse_user(s,jp) : it_iq_browse_server(s->ti,jp); X+ else if (j_strcmp(ns,NS_DISCO_INFO) == 0) X+ jp->to->user ? it_iq_disco_info_user(s,jp) : it_iq_disco_info_server(s->ti,jp); X+ else if (j_strcmp(ns,NS_DISCO_ITEMS) == 0) X+ jp->to->user ? it_iq_disco_items_user(s,jp) : it_iq_disco_items_server(s->ti,jp); X else if (j_strcmp(ns,NS_VCARD) == 0) X jp->to->user ? it_iq_vcard(s,jp) : it_iq_vcard_server(s->ti,jp); X else if (j_strcmp(ns,NS_LAST) == 0) X@@ -503,6 +511,8 @@ X xmlnode_insert_cdata(xmlnode_insert_tag(q,"ns"),NS_REGISTER,-1); X xmlnode_insert_cdata(xmlnode_insert_tag(q,"ns"),NS_SEARCH,-1); X xmlnode_insert_cdata(xmlnode_insert_tag(q,"ns"),NS_GATEWAY,-1); X+ xmlnode_insert_cdata(xmlnode_insert_tag(q,"ns"),NS_DISCO_INFO,-1); X+ xmlnode_insert_cdata(xmlnode_insert_tag(q,"ns"),NS_DISCO_ITEMS,-1); X X it_deliver(ti,jp->x); X } X@@ -538,6 +548,131 @@ X it_deliver(s->ti,jp->x); X } X X+/** Service Discovery support (JEP-0030) */ X+/** Info */ X+ X+void it_iq_disco_info_server(iti ti, jpacket jp) X+{ X+ xmlnode q, x; X+ X+ if(xmlnode_get_attrib(xmlnode_get_tag(jp->x, "query"),"node") != NULL) X+ { X+ jutil_error(jp->x,TERROR_NOTALLOWED); X+ it_deliver(ti,jp->x); X+ return; X+ } X+ X+ q = xmlnode_insert_tag(jutil_iqresult(jp->x),"query"); X+ xmlnode_put_attrib(q,"xmlns",NS_DISCO_INFO); X+ X+ x = xmlnode_insert_tag(q,"identity"); X+ xmlnode_put_attrib(x,"category","gateway"); X+ xmlnode_put_attrib(x,"type","icq"); X+ xmlnode_put_attrib(x,"name",xmlnode_get_tag_data(ti->vcard,"FN")); X+ X+ xmlnode_put_attrib(xmlnode_insert_tag(q,"feature"),"var",NS_REGISTER); X+ xmlnode_put_attrib(xmlnode_insert_tag(q,"feature"),"var",NS_SEARCH); X+ xmlnode_put_attrib(xmlnode_insert_tag(q,"feature"),"var",NS_VERSION); X+ xmlnode_put_attrib(xmlnode_insert_tag(q,"feature"),"var",NS_TIME); X+ xmlnode_put_attrib(xmlnode_insert_tag(q,"feature"),"var",NS_LAST); X+ X+ it_deliver(ti,jp->x); X+} X+ X+void it_iq_disco_info_user(session s, jpacket jp) X+{ X+ xmlnode q, x; X+ X+ if (s->type == stype_register) X+ { X+ queue_elem queue; X+ X+ queue = pmalloco(jp->p,sizeof(_queue_elem)); X+ queue->elem = (void *)jp; X+ X+ QUEUE_PUT(s->queue,s->queue_last,queue); X+ return; X+ } X+ X+ if (it_jid2uin(jp->from) == 0) X+ { X+ jutil_error(jp->x,TERROR_BAD); X+ it_deliver(s->ti,jp->x); X+ return; X+ } X+ X+ if(xmlnode_get_attrib(xmlnode_get_tag(jp->x, "query"),"node") != NULL) X+ { X+ jutil_error(jp->x,TERROR_NOTALLOWED); X+ it_deliver(s->ti,jp->x); X+ return; X+ } X+ X+ q = xmlnode_insert_tag(jutil_iqresult(jp->x),"query"); X+ xmlnode_put_attrib(q,"xmlns",NS_DISCO_INFO); X+ x = xmlnode_insert_tag(q,"identity"); X+ xmlnode_put_attrib(x,"category","user"); X+ xmlnode_put_attrib(x,"type","client"); X+ xmlnode_put_attrib(x,"name", jp->to->user); X+ X+ it_deliver(s->ti,jp->x); X+} X+ X+/** Service Discovery support (JEP-0030) */ X+/** Items */ X+ X+void it_iq_disco_items_server(iti ti, jpacket jp) X+{ X+ xmlnode q; X+ X+ if(xmlnode_get_attrib(xmlnode_get_tag(jp->x, "query"),"node") != NULL) X+ { X+ jutil_error(jp->x,TERROR_NOTALLOWED); X+ it_deliver(ti,jp->x); X+ return; X+ } X+ X+ q = xmlnode_insert_tag(jutil_iqresult(jp->x),"query"); X+ xmlnode_put_attrib(q,"xmlns",NS_DISCO_ITEMS); X+ X+ it_deliver(ti,jp->x); X+} X+ X+void it_iq_disco_items_user(session s, jpacket jp) X+{ X+ xmlnode q; X+ X+ if (s->type == stype_register) X+ { X+ queue_elem queue; X+ X+ queue = pmalloco(jp->p,sizeof(_queue_elem)); X+ queue->elem = (void *)jp; X+ X+ QUEUE_PUT(s->queue,s->queue_last,queue); X+ return; X+ } X+ X+ if (it_jid2uin(jp->from) == 0) X+ { X+ jutil_error(jp->x,TERROR_BAD); X+ it_deliver(s->ti,jp->x); X+ return; X+ } X+ X+ if(xmlnode_get_attrib(xmlnode_get_tag(jp->x, "query"),"node") != NULL) X+ { X+ jutil_error(jp->x,TERROR_NOTALLOWED); X+ it_deliver(s->ti,jp->x); X+ return; X+ } X+ X+ q = xmlnode_insert_tag(jutil_iqresult(jp->x),"query"); X+ xmlnode_put_attrib(q,"xmlns",NS_DISCO_ITEMS); X+ X+ it_deliver(s->ti,jp->x); X+} X+ X /** Send reply to a version inquiry to Jabber */ X void it_iq_version(iti ti, jpacket jp) X { Xdiff -ru jit.orig/jit/session.c jit/jit/session.c X--- jit.orig/jit/session.c 2003-05-12 15:07:53.000000000 +0400 X+++ jit/jit/session.c 2003-12-12 12:59:30.000000000 +0300 X@@ -429,6 +429,11 @@ X time(NULL)-s->start_time); X } X X+ if ((s->ti->own_roster)&&(s->roster_changed)) { X+ it_save_contacts(s); X+ s->roster_changed = 0; X+ } X+ X /* remove from hash */ X SEM_LOCK(s->ti->sessions_sem); X wpxhash_zap(s->ti->sessions,jid_full(s->id)); X@@ -468,6 +473,11 @@ X else X it_session_regerr(s,e); X X+ if ((s->ti->own_roster)&&(s->roster_changed)) { X+ it_save_contacts(s); X+ s->roster_changed = 0; X+ } X+ X /* remove from hash */ X SEM_LOCK(s->ti->sessions_sem); X wpxhash_zap(s->ti->sessions,jid_full(s->id)); Xdiff -ru jit.orig/jit/unknown.c jit/jit/unknown.c X--- jit.orig/jit/unknown.c 2003-04-29 14:19:42.000000000 +0400 X+++ jit/jit/unknown.c 2003-12-11 22:48:04.000000000 +0300 X@@ -84,6 +84,10 @@ X } X else if (j_strcmp(ns,NS_BROWSE) == 0) X it_iq_browse_server(ti,jp); X+ else if (j_strcmp(ns,NS_DISCO_INFO) == 0) X+ it_iq_disco_info_server(ti,jp); X+ else if (j_strcmp(ns,NS_DISCO_ITEMS) == 0) X+ it_iq_disco_items_server(ti,jp); X else if (j_strcmp(ns,NS_VERSION) == 0) X it_iq_version(ti,jp); X else if (j_strcmp(ns,NS_TIME) == 0) END-of-jit/files/patch-disco-sg2 echo x - jit/Makefile sed 's/^X//' >jit/Makefile << 'END-of-jit/Makefile' X# New ports collection makefile for: jit X# Date created: 20 July 2004 X# Whom: Alexander Timoshenko X# X# $FreeBSD$ X# X XPORTNAME= jit XPORTVERSION= 1.1.6 XCATEGORIES= net XMASTER_SITES= http://www.jabberstudio.org/files/jit/ XDIST_SUBDIR= jabber X XMAINTAINER= gonzo@univ.kiev.ua XCOMMENT= Jabber ICQ Transport X XUSE_GMAKE= yes XUSE_REINPLACE= yes XHAS_CONFIGURE= yes X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ X ${WRKSRC}/jit/jabber-icq.example ${WRKSRC}/jit/jit.sh X Xdo-install: X @${MKDIR} ${PREFIX}/lib/jabber/jit X @${INSTALL_DATA} ${WRKSRC}/jit/jit.so ${PREFIX}/lib/jabber/jit X @${INSTALL_DATA} ${WRKSRC}/xdb_file/xdb_file.so ${PREFIX}/lib/jabber/jit X @${INSTALL_PROGRAM} ${WRKSRC}/jabberd/jabberd ${PREFIX}/sbin/jit X @${INSTALL_DATA} ${WRKSRC}/jit/jabber-icq.example ${PREFIX}/etc X @${INSTALL_SCRIPT} ${WRKSRC}/jit/jit.sh ${PREFIX}/etc/rc.d X Xpost-install: X @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X X.include END-of-jit/Makefile echo x - jit/distinfo sed 's/^X//' >jit/distinfo << 'END-of-jit/distinfo' XMD5 (jabber/jit-1.1.6.tar.gz) = 950f6b82ab5e0542535108fd54409363 XSIZE (jabber/jit-1.1.6.tar.gz) = 275246 END-of-jit/distinfo echo x - jit/pkg-descr sed 's/^X//' >jit/pkg-descr << 'END-of-jit/pkg-descr' XJIT - Jabber ICQ Transport - is a working and stable Jabber Xtransport which provides interoperability between ICQ and XJabber IM systems. X XWWW: http://jit.jabberstudio.org/ END-of-jit/pkg-descr echo x - jit/pkg-plist sed 's/^X//' >jit/pkg-plist << 'END-of-jit/pkg-plist' Xlib/jabber/jit/jit.so Xlib/jabber/jit/xdb_file.so Xsbin/jit Xetc/jabber-icq.example Xetc/rc.d/jit.sh X@dirrm lib/jabber/jit END-of-jit/pkg-plist echo x - jit/pkg-install sed 's/^X//' >jit/pkg-install << 'END-of-jit/pkg-install' X#!/bin/sh X Xif [ "$2" != "POST-INSTALL" ]; then X exit 0 Xfi X XUSER=jabber XGROUP=${USER} XUID=93 XGID=${UID} XSPOOLDIR="/var/spool/jit" X Xif ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then X if pw groupadd ${GROUP} -g ${GID}; then X echo "Added group \"${GROUP}\"." X else X echo "Adding group \"${GROUP}\" failed..." X exit 1 X fi Xfi X Xif ! pw usershow "${USER}" 2>/dev/null 1>&2; then X if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ X -s "/sbin/nologin" -d "/nonexistent" \ X -c "Jabber Daemon"; \ X then X echo "Added user \"${USER}\"." X else X echo "Adding user \"${USER}\" failed..." X exit 1 X fi Xfi X Xif [ ! -d ${SPOOLDIR} ]; then X echo "Creating \"${SPOOLDIR}\"." X mkdir -p ${SPOOLDIR} Xfi X Xecho "Fixing ownerships and modes in \"${SPOOLDIR}\"." Xchown -R ${USER}:${GROUP} ${SPOOLDIR} Xchmod -R go= ${SPOOLDIR} END-of-jit/pkg-install echo x - jit/pkg-deinstall sed 's/^X//' >jit/pkg-deinstall << 'END-of-jit/pkg-deinstall' X#!/bin/sh X Xif [ "$2" != "POST-DEINSTALL" ]; then X exit 0 Xfi X XUSER=jabber X Xif pw usershow "${USER}" 2>/dev/null 1>&2; then X echo "To delete Jabber user permanently, use 'pw userdel ${USER}'" Xfi X Xif pw groupshow "${USER}" 2>/dev/null 1>&2; then X echo "To delete Jabber group permanently, use 'pw groupdel ${USER}'" Xfi X Xecho "If you wish to delete jit data files, remove '/var/spool/jit' directory." X Xexit 0 END-of-jit/pkg-deinstall exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 0E02116A4D4 for ; Tue, 20 Jul 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 D2E8743D45 for ; Tue, 20 Jul 2004 17:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KHeRYf081694 for ; Tue, 20 Jul 2004 17:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHeRQt081693; Tue, 20 Jul 2004 17:40:27 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 17:40:27 GMT Resent-Message-Id: <200407201740.i6KHeRQt081693@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Szabolcs Feczak Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB21516A4CE for ; Tue, 20 Jul 2004 17:33:55 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3EED43D2F for ; Tue, 20 Jul 2004 17:33:55 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6KHXtFp026649 for ; Tue, 20 Jul 2004 17:33:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6KHXtFx026648; Tue, 20 Jul 2004 17:33:55 GMT (envelope-from nobody) Message-Id: <200407201733.i6KHXtFx026648@www.freebsd.org> Date: Tue, 20 Jul 2004 17:33:55 GMT From: Szabolcs Feczak To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69350: pure-pw dumps core (segfault) on 4.10-Release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 17:40:28 -0000 >Number: 69350 >Category: ports >Synopsis: pure-pw dumps core (segfault) on 4.10-Release >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 Jul 20 17:40:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Szabolcs Feczak >Release: FreeBSD 4.10-RELEASE i386 >Organization: Siodigit >Environment: FreeBSD backup.belso.hu 4.10-RELEASE FreeBSD 4.10-RELEASE #2: Wed Jun 9 11:00:37 CEST 2004 root@backup.sdi.hu:/mnt/data/obj/mnt/data/cvs/src/sys/BACKUP i386 >Description: pure-pw commands result in segmentation fault (core dumped) The daemon itself starts up okay though. It seems that it is fbsd 4.10 specific problem, since I have pureftpd 1.0.20 pw commands working fine on fbsd 5.2.1 >How-To-Repeat: just make install the port on 4.10-Release and try something like pure-pw useradd joe -u ftpuser -d /home/ftpusers/joe >Fix: Not known yet. Looks like it is specific to the version 1.0.20 of the port, since 1.0.18 works fine on the same machine. Others have faced this problem as well : http://www.freebsdforums.org/forums/showthread.php?s=0d14984482fe720269add18ab4ebdda9&postid=131623#post131623 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 3FFBA16A4D7 for ; Tue, 20 Jul 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 3252043D4C for ; Tue, 20 Jul 2004 17:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KHeSEF081707 for ; Tue, 20 Jul 2004 17:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHeSlZ081706; Tue, 20 Jul 2004 17:40:28 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 17:40:28 GMT Resent-Message-Id: <200407201740.i6KHeSlZ081706@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Koop Mast Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00E1616A4CE for ; Tue, 20 Jul 2004 17:35:21 +0000 (GMT) Received: from prisma.rainbow-runner.nl (c7057.upc-c.chello.nl [212.187.7.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0455E43D5F for ; Tue, 20 Jul 2004 17:35:20 +0000 (GMT) (envelope-from kwm@rainbow-runner.nl) Received: by prisma.rainbow-runner.nl (Postfix, from userid 1001) id 9BF8B20FC; Tue, 20 Jul 2004 19:32:10 +0200 (CEST) Message-Id: <20040720173210.9BF8B20FC@prisma.rainbow-runner.nl> Date: Tue, 20 Jul 2004 19:32:10 +0200 (CEST) From: Koop Mast To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69351: Maintainer update gstreamer ffmpeg 0.8.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Koop Mast List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 17:40:28 -0000 >Number: 69351 >Category: ports >Synopsis: Maintainer update gstreamer ffmpeg 0.8.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: Tue Jul 20 17:40:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Koop Mast >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD prisma.rainbow-runner.nl 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #27: Wed Jun 9 11:46:29 CEST 2004 root@prisma.rainbow-runner.nl:/usr/obj/usr/src/sys/UnderTheRainbow i386 >Description: Update gstreamer ffmpeg to 0.8.1. Release notes/changelog http://gstreamer.freedesktop.org/releases/gst-ffmpeg/0.8.1.html >How-To-Repeat: >Fix: --- gstreamer-ffmpeg-0.8.1.diff begins here --- diff -urN gstreamer-ffmpeg.orig/Makefile gstreamer-ffmpeg/Makefile --- gstreamer-ffmpeg.orig/Makefile Fri Jun 18 18:05:16 2004 +++ gstreamer-ffmpeg/Makefile Fri Jul 16 22:46:42 2004 @@ -6,8 +6,7 @@ # PORTNAME= gstreamer -PORTVERSION= 0.8.0 -PORTREVISION= 1 +PORTVERSION= 0.8.1 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-ffmpeg/ PKGNAMESUFFIX= -ffmpeg @@ -36,6 +35,10 @@ GST_VERSION=${PORTVERSION:C/..$//} .include + +.if ${OSVERSION} < 500000 +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c +.endif post-patch: @${REINPLACE_CMD} -E -e \ diff -urN gstreamer-ffmpeg.orig/distinfo gstreamer-ffmpeg/distinfo --- gstreamer-ffmpeg.orig/distinfo Wed Mar 17 23:15:04 2004 +++ gstreamer-ffmpeg/distinfo Fri Jul 16 22:47:00 2004 @@ -1,2 +1,2 @@ -MD5 (gst-ffmpeg-0.8.0.tar.bz2) = 26dd962c37e886cbc3be167680a44ee4 -SIZE (gst-ffmpeg-0.8.0.tar.bz2) = 1558194 +MD5 (gst-ffmpeg-0.8.1.tar.bz2) = f020b9f394fec2712964cd11ac46b43d +SIZE (gst-ffmpeg-0.8.1.tar.bz2) = 1590668 diff -urN gstreamer-ffmpeg.orig/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c gstreamer-ffmpeg/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c --- gstreamer-ffmpeg.orig/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c Thu Jan 1 01:00:00 1970 +++ gstreamer-ffmpeg/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c Sun Jul 11 18:15:03 2004 @@ -0,0 +1,12 @@ +--- gst-libs/ext/ffmpeg/libavformat/nut.c.orig Wed Apr 14 20:38:02 2004 ++++ gst-libs/ext/ffmpeg/libavformat/nut.c Sun Jul 11 18:14:19 2004 +@@ -59,6 +59,9 @@ + #define FLAG_FULL_PTS 4 + #define FLAG_KEY_FRAME 32 + ++// UINT64_MAX isn't defined on FreeBSD 4.x borrow it from 5.x ++#define UINT64_MAX 0xffffffffffffffffULL ++ + typedef struct { + uint8_t flags; + uint8_t stream_id_plus1; diff -urN gstreamer-ffmpeg.orig/files/patch-ext_ffmpeg_gstffmpegcodecmap.c gstreamer-ffmpeg/files/patch-ext_ffmpeg_gstffmpegcodecmap.c --- gstreamer-ffmpeg.orig/files/patch-ext_ffmpeg_gstffmpegcodecmap.c Fri Feb 27 09:00:07 2004 +++ gstreamer-ffmpeg/files/patch-ext_ffmpeg_gstffmpegcodecmap.c Fri Jul 16 22:44:13 2004 @@ -1,31 +0,0 @@ ---- ext/ffmpeg/gstffmpegcodecmap.c.orig Fri Feb 6 15:29:09 2004 -+++ ext/ffmpeg/gstffmpegcodecmap.c Fri Feb 6 15:40:14 2004 -@@ -44,13 +44,13 @@ - "width", G_TYPE_INT, context->width, \ - "height", G_TYPE_INT, context->height, \ - "framerate", G_TYPE_DOUBLE, 1. * context->frame_rate / \ -- context->frame_rate_base, \ -+ context->frame_rate_base , \ - ##props, NULL) \ - : \ - gst_caps_new_simple (mimetype, \ - "width", GST_TYPE_INT_RANGE, 16, 4096, \ - "height", GST_TYPE_INT_RANGE, 16, 4096, \ -- "framerate", GST_TYPE_DOUBLE_RANGE, 0., G_MAXDOUBLE, \ -+ "framerate", GST_TYPE_DOUBLE_RANGE, 0., G_MAXDOUBLE , \ - ##props, NULL) - - /* same for audio - now with channels/sample rate -@@ -60,10 +60,10 @@ - (context != NULL) ? \ - gst_caps_new_simple (mimetype, \ - "rate", G_TYPE_INT, context->sample_rate, \ -- "channels", G_TYPE_INT, context->channels, \ -+ "channels", G_TYPE_INT, context->channels , \ - ##props, NULL) \ - : \ -- gst_caps_new_simple (mimetype, \ -+ gst_caps_new_simple (mimetype , \ - ##props, NULL) - - /* Convert a FFMPEG codec ID and optional AVCodecContext diff -urN gstreamer-ffmpeg.orig/files/patch-gst-libs_ext_ffmpeg_libavformat_mov.c gstreamer-ffmpeg/files/patch-gst-libs_ext_ffmpeg_libavformat_mov.c --- gstreamer-ffmpeg.orig/files/patch-gst-libs_ext_ffmpeg_libavformat_mov.c Thu Jan 1 01:00:00 1970 +++ gstreamer-ffmpeg/files/patch-gst-libs_ext_ffmpeg_libavformat_mov.c Fri Jul 16 22:51:05 2004 @@ -0,0 +1,18 @@ +--- gst-libs/ext/ffmpeg/libavformat/mov.c.orig Fri Apr 30 20:41:45 2004 ++++ gst-libs/ext/ffmpeg/libavformat/mov.c Sun Jul 11 18:21:15 2004 +@@ -998,6 +998,7 @@ + else if( st->codec.codec_tag == MKTAG( 'm', 'p', '4', 'a' )) + { + /* Handle mp4 audio tag */ ++ MOV_atom_t a = { format, url_ftell(pb), size - (20 + 20 + 8) }; + get_be32(pb); /* version */ + get_be32(pb); + st->codec.channels = get_be16(pb); /* channels */ +@@ -1006,7 +1007,6 @@ + st->codec.sample_rate = get_be16(pb); /* sample rate, not always correct */ + get_be16(pb); + c->mp4=1; +- MOV_atom_t a = { format, url_ftell(pb), size - (20 + 20 + 8) }; + mov_read_default(c, pb, a); + /* Get correct sample rate from extradata */ + if(st->codec.extradata_size) { --- gstreamer-ffmpeg-0.8.1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 17:44: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 0341C16A4CE; Tue, 20 Jul 2004 17:44:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D85B143D1F; Tue, 20 Jul 2004 17:44:42 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) i6KHig6M081847; Tue, 20 Jul 2004 17:44:42 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHigwW081843; Tue, 20 Jul 2004 17:44:42 GMT (envelope-from glewis) Date: Tue, 20 Jul 2004 17:44:42 GMT From: Greg Lewis Message-Id: <200407201744.i6KHigwW081843@freefall.freebsd.org> To: chris@unixpages.org, glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69057: New port: java/jomp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 17:44:43 -0000 Synopsis: New port: java/jomp State-Changed-From-To: open->closed State-Changed-By: glewis State-Changed-When: Tue Jul 20 17:43:59 GMT 2004 State-Changed-Why: Committed, thanks! Yes, there are a number of Java ports which need various clean ups. Are you volunteering? :) http://www.freebsd.org/cgi/query-pr.cgi?pr=69057 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 17: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 BD2C516A4CE for ; Tue, 20 Jul 2004 17:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A07AA43D4C for ; Tue, 20 Jul 2004 17:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KHoN1Y081982 for ; Tue, 20 Jul 2004 17:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KHoNnk081981; Tue, 20 Jul 2004 17:50:23 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 17:50:23 GMT Resent-Message-Id: <200407201750.i6KHoNnk081981@freefall.freebsd.org> 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 J. Laszlo" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13BC716A4CE for ; Tue, 20 Jul 2004 17:49:57 +0000 (GMT) Received: from mail.vonostingroup.com (ip209-154.digitalrealm.net [216.144.209.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 44EA843D55 for ; Tue, 20 Jul 2004 17:49:56 +0000 (GMT) (envelope-from laszlof@ritamari.vonostingroup.com) Received: (qmail 49391 invoked by uid 89); 20 Jul 2004 17:50:54 -0000 Received: from unknown (HELO ritamari.vonostingroup.com) (127.0.0.1) by localhost with SMTP; 20 Jul 2004 17:50:54 -0000 Received: (from laszlof@localhost)i6KHorJV049389; Tue, 20 Jul 2004 13:50:53 -0400 (EDT) (envelope-from laszlof) Message-Id: <200407201750.i6KHorJV049389@ritamari.vonostingroup.com> Date: Tue, 20 Jul 2004 13:50:53 -0400 (EDT) From: "Frank J. Laszlo" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69352: Fix for ports/61297 (readline port) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Frank J. Laszlo" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 17:50:23 -0000 >Number: 69352 >Category: ports >Synopsis: Fix for ports/61297 (readline port) >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: Tue Jul 20 17:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Frank J. Laszlo >Release: FreeBSD 4.9-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD ritamari.vonostingroup.com 4.9-RELEASE-p3 FreeBSD 4.9-RELEASE-p3 #2: Mon Mar 8 18:14:29 EST 2004 root@ritamari.vonostingroup.com:/usr/obj/usr/src/sys/RITAMARI i386 >Description: This patch fixes the problems related to PR ports/61297. With this fix, people using bash2 and this readline port, will no longer experience the issue. >How-To-Repeat: See ports/61297. >Fix: --- readline.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: # # readline # readline/CVS # readline/CVS/Root # readline/CVS/Repository # readline/CVS/Entries # readline/Makefile # readline/distinfo # readline/pkg-descr # readline/pkg-plist # readline/files # readline/files/patch-aa # echo c - readline mkdir -p readline > /dev/null 2>&1 echo c - readline/CVS mkdir -p readline/CVS > /dev/null 2>&1 echo x - readline/CVS/Root sed 's/^X//' >readline/CVS/Root << 'END-of-readline/CVS/Root' X/usr/cvs END-of-readline/CVS/Root echo x - readline/CVS/Repository sed 's/^X//' >readline/CVS/Repository << 'END-of-readline/CVS/Repository' Xports/devel/readline END-of-readline/CVS/Repository echo x - readline/CVS/Entries sed 's/^X//' >readline/CVS/Entries << 'END-of-readline/CVS/Entries' X/Makefile/1.1/Sun Dec 28 10:32:48 2003// X/distinfo/1.2/Thu Mar 18 18:00:19 2004// X/pkg-descr/1.1/Sun Dec 28 10:32:48 2003// X/pkg-plist/1.1/Sun Dec 28 10:32:48 2003// XD END-of-readline/CVS/Entries echo x - readline/Makefile sed 's/^X//' >readline/Makefile << 'END-of-readline/Makefile' X# ports collection makefile for: readline X# Date created: 10 December 2003 X# Whom: Frank Laszlo X# X# $FreeBSD$ X# X XPORTNAME= readline XPORTVERSION= 4.3 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ X XMAINTAINER= laszlof@vonostingroup.com XCOMMENT= A library for editing command lines as they are typed X XGNU_CONFIGURE= yes XINSTALLS_SHLIB= yes X XINFO= readline rluserman history XMAN3= readline.3 history.3 X X.include END-of-readline/Makefile echo x - readline/distinfo sed 's/^X//' >readline/distinfo << 'END-of-readline/distinfo' XMD5 (readline-4.3.tar.gz) = f86f7cb717ab321fe15f1bbcb058c11e XSIZE (readline-4.3.tar.gz) = 961662 END-of-readline/distinfo echo x - readline/pkg-descr sed 's/^X//' >readline/pkg-descr << 'END-of-readline/pkg-descr' XThe GNU Readline library provides a set of functions for use by Xapplications that allow users to edit command lines as they are Xtyped in. Both Emacs and vi editing modes are available. The XReadline library includes additional functions to maintain a list Xof previously-entered command lines, to recall and perhaps reedit Xthose lines, and perform csh-like history expansion on previous commands. X XWWW: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html END-of-readline/pkg-descr echo x - readline/pkg-plist sed 's/^X//' >readline/pkg-plist << 'END-of-readline/pkg-plist' Xinclude/readline/readline.h Xinclude/readline/chardefs.h Xinclude/readline/keymaps.h Xinclude/readline/history.h Xinclude/readline/tilde.h Xinclude/readline/rlstdc.h Xinclude/readline/rlconf.h Xinclude/readline/rltypedefs.h Xlib/libreadline.a Xlib/libhistory.a Xlib/libhistory.so.4 Xlib/libhistory.so Xlib/libreadline.so.4 Xlib/libreadline.so X@dirrm include/readline END-of-readline/pkg-plist echo c - readline/files mkdir -p readline/files > /dev/null 2>&1 echo x - readline/files/patch-aa sed 's/^X//' >readline/files/patch-aa << 'END-of-readline/files/patch-aa' X*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 X--- bind.c Wed Jul 31 09:11:18 2002 X*************** X*** 312,316 **** X and the function bound to `a' to be executed when the user X types `abx', leaving `bx' in the input queue. */ X! if (k.function /* && k.type == ISFUNC */) X { X map[ANYOTHERKEY] = k; X--- 312,316 ---- X and the function bound to `a' to be executed when the user X types `abx', leaving `bx' in the input queue. */ X! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) X { X map[ANYOTHERKEY] = k; X END-of-readline/files/patch-aa exit --- readline.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 18:10: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 E27A316A4CE for ; Tue, 20 Jul 2004 18:10:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF4CB43D54 for ; Tue, 20 Jul 2004 18:10:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KIAGDQ086310 for ; Tue, 20 Jul 2004 18:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KIAGWi086309; Tue, 20 Jul 2004 18:10:16 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 18:10:16 GMT Resent-Message-Id: <200407201810.i6KIAGWi086309@freefall.freebsd.org> 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 A489016A4CE for ; Tue, 20 Jul 2004 18:01:04 +0000 (GMT) Received: from greendale.ukc.ac.uk (greendale.ukc.ac.uk [129.12.21.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id D106943D69 for ; Tue, 20 Jul 2004 18:01:03 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by greendale.ukc.ac.uk with esmtp (Exim 4.22) id 1Bmyv7-0002Li-Du; Tue, 20 Jul 2004 19:00:53 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1Bmyv7-0005VE-CT; Tue, 20 Jul 2004 19:00:53 +0100 Message-Id: Date: Tue, 20 Jul 2004 19:00:53 +0100 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/69353: [MAINTAINER] irc/pircbot: update to 1.4.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, 20 Jul 2004 18:10:17 -0000 >Number: 69353 >Category: ports >Synopsis: [MAINTAINER] irc/pircbot: update to 1.4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 18:10:16 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 1.4.2 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- pircbot-1.4.2.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/irc/pircbot/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 8 Mar 2004 10:34:05 -0000 1.26 +++ Makefile 20 Jul 2004 17:59:28 -0000 @@ -6,7 +6,7 @@ # PORTNAME= pircbot -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.2 CATEGORIES= irc java MASTER_SITES= http://www.jibble.org/files/ \ ftp://ftp.i-scream.org/pub/www.jibble.org/files/ \ Index: distinfo =================================================================== RCS file: /u1/freebsd/cvs/ports/irc/pircbot/distinfo,v retrieving revision 1.21 diff -u -r1.21 distinfo --- distinfo 8 Mar 2004 10:34:05 -0000 1.21 +++ distinfo 20 Jul 2004 17:59:45 -0000 @@ -1,2 +1,2 @@ -MD5 (pircbot-1.4.0.zip) = e72ce52f0c7c8eaf48bee1021c74b4a9 -SIZE (pircbot-1.4.0.zip) = 194515 +MD5 (pircbot-1.4.2.zip) = 9348ef9f0a89e43f15668a58610d4936 +SIZE (pircbot-1.4.2.zip) = 195200 --- pircbot-1.4.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 4241116A4CE for ; Tue, 20 Jul 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 2179643D58 for ; Tue, 20 Jul 2004 18:30:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KIUWNI086909 for ; Tue, 20 Jul 2004 18:30:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KIUVQ1086908; Tue, 20 Jul 2004 18:30:31 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 18:30:31 GMT Message-Id: <200407201830.i6KIUVQ1086908@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Dan Langille" Subject: Re: ports/69352: Fix for ports/61297 (readline port) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 18:30:32 -0000 The following reply was made to PR ports/69352; it has been noted by GNATS. From: "Dan Langille" To: freebsd-gnats-submit@FreeBSD.org Cc: laszlof@ritamari.vonostingroup.com Subject: Re: ports/69352: Fix for ports/61297 (readline port) Date: Tue, 20 Jul 2004 14:26:10 -0400 I have confirmed that the bug existed on both 4.10-stable and 5.2.1- release. This patch fixes both branches. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 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 C424A16A4CE for ; Tue, 20 Jul 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 9A69B43D54 for ; Tue, 20 Jul 2004 18:40:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KIeOkp088107 for ; Tue, 20 Jul 2004 18:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KIeOck088106; Tue, 20 Jul 2004 18:40:24 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 18:40:24 GMT Resent-Message-Id: <200407201840.i6KIeOck088106@freefall.freebsd.org> 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 60DEF16A4CE for ; Tue, 20 Jul 2004 18:32:09 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 893A343D49 for ; Tue, 20 Jul 2004 18:32:08 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [217.23.66.42] (port=49773 helo=inbox.ru) by mx2.mail.ru with esmtp id 1BmzPK-000IS6-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 22:32:07 +0400 Message-Id: Date: Tue, 20 Jul 2004 22:32:07 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69354: [ maintainer ] x11-wm/genmenu: update to 1.0.7 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, 20 Jul 2004 18:40:25 -0000 >Number: 69354 >Category: ports >Synopsis: [ maintainer ] x11-wm/genmenu: update to 1.0.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 18:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #5: Sat Jun 19 22:04:33 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: - Update to 1.0.7 - SIZEify - Ask for maintainership >How-To-Repeat: >Fix: diff -ruN genmenu.orig/Makefile genmenu/Makefile --- genmenu.orig/Makefile Tue Jul 20 22:22:38 2004 +++ genmenu/Makefile Tue Jul 20 22:25:17 2004 @@ -7,11 +7,11 @@ # PORTNAME= genmenu -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.7 CATEGORIES= x11-wm MASTER_SITES= http://gtk.no/archive/genmenu/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bogorodskiy@inbox.ru COMMENT= Generating menus for Bbox, Fbox, Obox, WM and E RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2 diff -ruN genmenu.orig/distinfo genmenu/distinfo --- genmenu.orig/distinfo Tue Jul 20 22:22:38 2004 +++ genmenu/distinfo Tue Jul 20 22:23:04 2004 @@ -1 +1,2 @@ -MD5 (genmenu-1.0.5.tar.gz) = 0886951949c924708b4e685c4473c15d +MD5 (genmenu-1.0.7.tar.gz) = 0b8e3b2bad8f1aa086de0d46e00766c4 +SIZE (genmenu-1.0.7.tar.gz) = 10454 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 18: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 BB3BC16A4CE for ; Tue, 20 Jul 2004 18:40:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E61243D67 for ; Tue, 20 Jul 2004 18:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KIeRsj088122 for ; Tue, 20 Jul 2004 18:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KIeRmP088121; Tue, 20 Jul 2004 18:40:27 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 18:40:27 GMT Message-Id: <200407201840.i6KIeRmP088121@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Frank Laszlo Subject: Re: ports/69352: Fix for ports/61297 (readline port) 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: Tue, 20 Jul 2004 18:40:27 -0000 The following reply was made to PR ports/69352; it has been noted by GNATS. From: Frank Laszlo To: freebsd-gnats-submit@FreeBSD.org, laszlof@vonostingroup.com Cc: Subject: Re: ports/69352: Fix for ports/61297 (readline port) Date: Tue, 20 Jul 2004 14:33:34 -0500 The problem seems to exist within readline itself. After extensive testing with Dan,we have confirmed this suspition. -Frank Laszlo From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 19:20: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 72C4E16A4CE for ; Tue, 20 Jul 2004 19:20:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50DC843D5F for ; Tue, 20 Jul 2004 19:20:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KJK8K7093402 for ; Tue, 20 Jul 2004 19:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KJK8Bs093401; Tue, 20 Jul 2004 19:20:08 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 19:20:08 GMT Resent-Message-Id: <200407201920.i6KJK8Bs093401@freefall.freebsd.org> 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 2990D16A4CE; Tue, 20 Jul 2004 19:10:34 +0000 (GMT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF9E743D60; Tue, 20 Jul 2004 19:10:33 +0000 (GMT) (envelope-from vasallia@ukr.net) Received: from [212.86.238.213] (helo=santinel.home.ua) by mail-kv.alkar.net with esmtp (Exim 4.34 (FreeBSD)) id 1Bn00W-0005lF-Kv; Tue, 20 Jul 2004 22:10:33 +0300 Received: from anray by santinel.home.ua with local (Exim 4.40; FreeBSD) id 1Bn00R-0002AZ-Nn; Tue, 20 Jul 2004 22:10:27 +0300 Message-Id: Date: Tue, 20 Jul 2004 22:10:27 +0300 From: Andrey Slusar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: sem@FreeBSD.org Subject: ports/69355: [MAINTAINER] databases/msql: add CONFLICTS 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, 20 Jul 2004 19:20:08 -0000 >Number: 69355 >Category: ports >Synopsis: [MAINTAINER] databases/msql: add CONFLICTS >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 Jul 20 19:20:07 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrey Slusar >Release: FreeBSD 5.2-CURRENT i386 >Organization: Santinel >Environment: System: FreeBSD santinel.home.ua 5.2-CURRENT FreeBSD 5.2-CURRENT #1: Tue Jul 20 16:55:39 EEST 2004 root@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386 >Description: Added CONFLICTS >How-To-Repeat: >Fix: --- msql.diff begins here --- diff -ru /usr/ports/databases/msql/Makefile msql/Makefile --- /usr/ports/databases/msql/Makefile Tue Jul 13 04:17:50 2004 +++ msql/Makefile Mon Jul 19 00:18:55 2004 @@ -13,6 +13,8 @@ MAINTAINER= vasallia@ukr.net COMMENT= The Mini SQL server, version 2 +CONFLICTS= msql-[3-9]* + INSTALLS_SHLIB= YES USE_PERL5= YES USE_REINPLACE= YES --- msql.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 19: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 066E316A4CF for ; Tue, 20 Jul 2004 19:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A624243D5D for ; Tue, 20 Jul 2004 19:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KJoKv8095444 for ; Tue, 20 Jul 2004 19:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KJoK6M095443; Tue, 20 Jul 2004 19:50:20 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 19:50:20 GMT Resent-Message-Id: <200407201950.i6KJoK6M095443@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 183DE16A4CE; Tue, 20 Jul 2004 19:45:41 +0000 (GMT) Received: from imf19aec.mail.bellsouth.net (imf19aec.mail.bellsouth.net [205.152.59.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFC5243D54; Tue, 20 Jul 2004 19:45:36 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf19aec.mail.bellsouth.netESMTP <20040720194532.OFQK1792.imf19aec.mail.bellsouth.net@gentoo.ahze.net>; Tue, 20 Jul 2004 15:45:32 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6KJjVZ9099792; Tue, 20 Jul 2004 15:45:31 -0400 (EDT) (envelope-from ahze) Message-Id: <200407201945.i6KJjVZ9099792@gentoo.ahze.net> Date: Tue, 20 Jul 2004 15:45:31 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: pb@FreeBSD.org Subject: ports/69357: [PATCH] multimedia/dvdauthor: [Fix fatal typo] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 19:50:21 -0000 >Number: 69357 >Category: ports >Synopsis: [PATCH] multimedia/dvdauthor: [Fix fatal typo] >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 Jul 20 19:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Fix fatal typo Port maintainer (pb@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- dvdauthor-0.6.10.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/opt/cvs/freebsd-src/ports/multimedia/dvdauthor/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 8 Apr 2004 21:47:39 -0000 1.18 +++ Makefile 20 Jul 2004 18:57:36 -0000 @@ -43,7 +43,7 @@ LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 .endif .if defined(WITH_FRIBIDI) -LIB_DEPENDS+= libfribidi.0:${PORTSDIR}/converters/fribidi +LIB_DEPENDS+= fribidi.0:${PORTSDIR}/converters/fribidi .endif .if defined(WITH_ICONV) USE_ICONV= yes --- dvdauthor-0.6.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 20:22: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 AB56816A4CE; Tue, 20 Jul 2004 20:22:49 +0000 (GMT) Received: from smartmx-03.inode.at (smartmx-03.inode.at [213.229.60.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6452843D31; Tue, 20 Jul 2004 20:22:49 +0000 (GMT) (envelope-from mranner@inode.at) Received: from [62.99.226.182] (port=2079 helo=[62.99.226.182]) by smartmx-03.inode.at with esmtp (Exim 4.30) id 1Bn18S-0001mE-At; Tue, 20 Jul 2004 22:22:48 +0200 From: Michael Ranner To: Volker Stolz Date: Tue, 20 Jul 2004 22:22:30 +0200 User-Agent: KMail/1.6.1 References: <200407192055.i6JKtjt7018222@freefall.freebsd.org> In-Reply-To: <200407192055.i6JKtjt7018222@freefall.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200407202222.31124.mranner@inode.at> cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69300: [MAINTAINER] irc/kvirc: update to 3.0.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, 20 Jul 2004 20:22:49 -0000 Am Montag, 19. Juli 2004 22:55 schrieb Volker Stolz: > Synopsis: [MAINTAINER] irc/kvirc: update to 3.0.1 > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Mon Jul 19 20:54:49 GMT 2004 > State-Changed-Why: > Does not package (on 4.10): > > Creating gzip'd tar ball in '/usr/ports/packages/All/kvirc-3.0.1.tgz' > tar: lib/libkvilib.la: Cannot stat: No such file or directory > tar: share/kvirc/3.0.1/modules/libkviabout.la: Cannot stat: No such file or > directory tar: share/kvirc/3.0.1/modules/libkvialiaseditor.la: Cannot stat: > No such file or directory tar: share/kvirc/3.0.1/modules/libkvichan.la: > Cannot stat: No such file or directory tar: > share/kvirc/3.0.1/modules/libkvichannelsjoin.la: Cannot stat: No such file > or directory ... Please add INSTALLS_SHLIB= yes USE_INC_LIBTOOL_VER= 15 to kvirc.update/Makefile "port test" runs find, package created. How can I fix this portlint warning, or can I safely ignore it? WARN: /usr/ports/irc/kvirc.update/pkg-plist [1236]: installing libtool archives, please use USE_LIBTOOL in Makefile if possible -- /\/\ichael Ranner mranner@inode.at - mranner@jawa.at - mranner@bugat.at ----------------------------------------------------- BSD Usergroup Austria - http://www.bugat.at/ -----BEGIN GEEK CODE BLOCK----- GIT/CS/AT dx(-) s+:(++:) a- C++ UBLVS++++$ P++>+++$ L-(+)$ E--- W+++$ N+(++) o-- K- w--()$ O-(--) M@ V-(--) PS+>++ PE(-) Y+ PGP(-) t+ 5+ X+++(++++) R* tv++ b+(++) DI++ D-(--) G- e h--(*) r++ y? ------END GEEK CODE BLOCK------ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 21:16:29 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 F1CBE16A4CE for ; Tue, 20 Jul 2004 21:16:29 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.252]) by mx1.FreeBSD.org (Postfix) with SMTP id DAF2843D54 for ; Tue, 20 Jul 2004 21:16:29 +0000 (GMT) (envelope-from bsdslut@gmail.com) Received: by mproxy.gmail.com with SMTP id w29so6185607cwb for ; Tue, 20 Jul 2004 14:16:29 -0700 (PDT) Received: by 10.11.99.40 with SMTP id w40mr347254cwb; Tue, 20 Jul 2004 14:16:29 -0700 (PDT) Message-ID: <1a33bb9c04072014166608eb3c@mail.gmail.com> Date: Tue, 20 Jul 2004 17:16:29 -0400 From: jimmie james To: freebsd-ports-bugs@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: RE: ports/69261 (just a me too) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 21:16:30 -0000 With base perl on 4.10, irssi compiles/runs just fine, with 5.8.4 I get the same error: /usr/libexec/ld-elf.so.1: irssi: Undefined symbol "Perl_eval_pv" Just a "me too" with a bit more info(about base perl working) From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 21:30: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 0C7F316A4CE for ; Tue, 20 Jul 2004 21:30:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F030143D48 for ; Tue, 20 Jul 2004 21:30:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KLUBhB006984 for ; Tue, 20 Jul 2004 21:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KLUBQB006983; Tue, 20 Jul 2004 21:30:11 GMT (envelope-from gnats) Resent-Date: Tue, 20 Jul 2004 21:30:11 GMT Resent-Message-Id: <200407202130.i6KLUBQB006983@freefall.freebsd.org> 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-Baptiste Quenot Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C9DD16A4CE for ; Tue, 20 Jul 2004 21:21:51 +0000 (GMT) Received: from oxyd.caraldi.com (caraldi.com [195.137.249.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7987943D5F for ; Tue, 20 Jul 2004 21:21:50 +0000 (GMT) (envelope-from jbq@oxyd.caraldi.com) Received: by oxyd.caraldi.com (Postfix, from userid 1001) id 387BD2221; Tue, 20 Jul 2004 23:22:35 +0200 (CEST) Message-Id: <20040720212235.387BD2221@oxyd.caraldi.com> Date: Tue, 20 Jul 2004 23:22:35 +0200 (CEST) From: Jean-Baptiste Quenot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69358: Maintainer update: Cocoon 2.1.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, 20 Jul 2004 21:30:12 -0000 >Number: 69358 >Category: ports >Synopsis: Maintainer update: Cocoon 2.1.5.1 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jul 20 21:30:11 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jean-Baptiste Quenot >Release: FreeBSD 5.1-RELEASE i386 >Organization: >Environment: System: FreeBSD oxyd.caraldi.com 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Thu Jun 5 02:55:42 GMT 2003 root@wv1u.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: 1) Updates cocoon to 2.1.5.1, as 2.1.5 is no more available on mirrors. 2) Cocoon does not belong to textproc anymore, it should be moved to www >How-To-Repeat: >Fix: 1) Apply the following patch 2) Request a repocopy to move cocoon from textproc to www diff -ru /usr/ports/textproc/cocoon/Makefile cocoon/Makefile --- /usr/ports/textproc/cocoon/Makefile Fri Jul 2 11:29:38 2004 +++ cocoon/Makefile Tue Jul 20 23:12:05 2004 @@ -6,8 +6,8 @@ # PORTNAME= cocoon -PORTVERSION= 2.1.5 -CATEGORIES= textproc www java +PORTVERSION= 2.1.5.1 +CATEGORIES= www java MASTER_SITES= ${MASTER_SITE_APACHE:S,%SUBDIR%,${PORTNAME},} DISTNAME= ${PDISTNAME}-src @@ -32,7 +32,7 @@ COCOON_LIB= ${JAVASHAREDIR}/${APP_NAME} PLIST_SUB+= "COCOON_LIB=${COCOON_LIB}" -COPYDIRS= tools/jetty tools/loader legal +COPYDIRS= *.txt tools/jetty tools/loader legal PORT?= 8888 PID_FILE?= /var/run/${APP_NAME}.pid diff -ru /usr/ports/textproc/cocoon/distinfo cocoon/distinfo --- /usr/ports/textproc/cocoon/distinfo Fri Jul 2 11:29:38 2004 +++ cocoon/distinfo Tue Jul 20 23:12:05 2004 @@ -1,2 +1,2 @@ -MD5 (cocoon-2.1.5-src.tar.gz) = 74fc8b179d6f08330cbb1f96254f5b21 -SIZE (cocoon-2.1.5-src.tar.gz) = 42029472 +MD5 (cocoon-2.1.5.1-src.tar.gz) = 0f6e58bd430db7cf6d98b1ccac2dcc99 +SIZE (cocoon-2.1.5.1-src.tar.gz) = 42035921 diff -ru /usr/ports/textproc/cocoon/pkg-message cocoon/pkg-message --- /usr/ports/textproc/cocoon/pkg-message Fri Jul 2 11:29:38 2004 +++ cocoon/pkg-message Tue Jul 20 23:12:05 2004 @@ -1,10 +1,12 @@ -Cocoon is now installed in %%APP_HOME%% +Cocoon is now installed in %%APP_HOME%%. -You may want to start it by issuing `%%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh start' -and then point your web browser to the default home page at http://localhost:%%PORT%%/ to read -the documentation and test the samples. - -If you wish to start Cocoon automatically at boot time, add the following line -to /etc/rc.conf: +In order to be able to run Cocoon, please add the following line to +/etc/rc.conf: %%APP_NAME%%_enable="YES" + +If you wish to start cocoon right now, invoke the startup script with +`%%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh start' +and point your web browser to the default home page at +http://localhost:%%PORT%%/ where you may read the documentation and test the +samples. diff -ru /usr/ports/textproc/cocoon/pkg-plist cocoon/pkg-plist --- /usr/ports/textproc/cocoon/pkg-plist Fri Jul 2 11:29:38 2004 +++ cocoon/pkg-plist Tue Jul 20 23:12:05 2004 @@ -1,10 +1,8 @@ -cocoon/tools/jetty/conf/admin.xml -cocoon/tools/jetty/conf/main.xml -cocoon/tools/jetty/conf/webdefaults.xml -cocoon/tools/jetty/lib/jetty-4.2.19.jar -cocoon/tools/jetty/lib/servlet-2.3.jar -cocoon/tools/loader/Loader$RepositoryClassLoader.class -cocoon/tools/loader/Loader.class +cocoon/CREDITS.txt +cocoon/INSTALL.txt +cocoon/LICENSE.txt +cocoon/NOTICE.txt +cocoon/README.txt cocoon/legal/altrmi-client-impl-0.9.2.jar.license.txt cocoon/legal/altrmi-client-interfaces-0.9.2.jar.license.txt cocoon/legal/altrmi-common-0.9.2.jar.license.txt @@ -118,11 +116,18 @@ cocoon/legal/xmldb-xupdate-20040205.jar.license.txt cocoon/legal/xmlunit0.8.jar.license.txt cocoon/legal/xreporter-expression-20030725.jar.license.txt +cocoon/tools/jetty/conf/admin.xml +cocoon/tools/jetty/conf/main.xml +cocoon/tools/jetty/conf/webdefaults.xml +cocoon/tools/jetty/lib/jetty-4.2.19.jar +cocoon/tools/jetty/lib/servlet-2.3.jar +cocoon/tools/loader/Loader$RepositoryClassLoader.class +cocoon/tools/loader/Loader.class +@dirrm cocoon/legal @dirrm cocoon/tools/jetty/conf @dirrm cocoon/tools/jetty/lib @dirrm cocoon/tools/jetty @dirrm cocoon/tools/loader -@dirrm cocoon/legal @dirrm cocoon/tools sbin/cocoon.sh sbin/cocoonctl >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 21:50: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 E984A16A4CE for ; Tue, 20 Jul 2004 21:50:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2E1843D55 for ; Tue, 20 Jul 2004 21:50:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6KLoB0H008505 for ; Tue, 20 Jul 2004 21:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6KLoBW3008504; Tue, 20 Jul 2004 21:50:11 GMT (envelope-from gnats) Date: Tue, 20 Jul 2004 21:50:11 GMT Message-Id: <200407202150.i6KLoBW3008504@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Slawek" Subject: ports/69168: Broken ltmdm port on recent -current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Slawek List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 21:50:12 -0000 The following reply was made to PR ports/69168; it has been noted by GNATS. From: "Slawek" To: , Cc: Subject: ports/69168: Broken ltmdm port on recent -current Date: Tue, 20 Jul 2004 23:45:32 +0200 This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C46EB3.A5326080 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit Hello! Ok, I've tried to deal with that and here is the result. Place attached file as /usr/ports/comms/ltmdm/files/patch-ad and reinstall the port. Hope this helps -- Slawek Piotrowski ------=_NextPart_000_0005_01C46EB3.A5326080 Content-Type: application/octet-stream; name="patch-ad" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="patch-ad" --- sys/dev/ltmdm/ltmdmsio.c.orig Tue Jul 20 23:29:32 2004=0A= +++ sys/dev/ltmdm/ltmdmsio.c Tue Jul 20 23:31:55 2004=0A= @@ -1492,7 +1492,7 @@=0A= disc_optim(tp, &tp->t_termios, com);=0A= comstop(tp, FREAD | FWRITE);=0A= comhardclose(com);=0A= - ttyclose(tp);=0A= + tty_close(tp);=0A= }=0A= vxdPortClose();=0A= siosettimeout();=0A= @@ -1733,7 +1733,7 @@=0A= disc_optim(tp, &tp->t_termios, com);=0A= comstop(tp, FREAD | FWRITE);=0A= comhardclose(com);=0A= - ttyclose(tp);=0A= + tty_close(tp);=0A= siosettimeout();=0A= splx(s);=0A= if (com->gone) {=0A= ------=_NextPart_000_0005_01C46EB3.A5326080-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 20 22:18:44 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 2D07116A4CF for ; Tue, 20 Jul 2004 22:18:44 +0000 (GMT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D63843D62 for ; Tue, 20 Jul 2004 22:18:42 +0000 (GMT) (envelope-from itetcu@go.ro) Received: (qmail 28087 invoked by uid 89); 20 Jul 2004 22:12:58 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 20 Jul 2004 22:12:58 -0000 Received: from localhost (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 47C3819D; Wed, 21 Jul 2004 01:15:18 +0300 (EEST) Received: from it.buh.tecnik93.com ([127.0.0.1]) by localhost (it.buh.tecnik93.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29577-03; Wed, 21 Jul 2004 01:15:17 +0300 (EEST) Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with SMTP id 6503826; Wed, 21 Jul 2004 01:15:17 +0300 (EEST) Date: Wed, 21 Jul 2004 01:15:16 +0300 From: Ion-Mihai Tetcu Message-Id: <20040721011516.451f1af2@it.buh.tecnik93.com> In-Reply-To: <20040717163550.GA64896@titan.klemm.apsfilter.org> References: <200407171308.i6HD8mtD040269@freefall.freebsd.org> <20040717173802.716458aa@it.buh.tecnik93.com> <20040717163550.GA64896@titan.klemm.apsfilter.org> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Wed__21_Jul_2004_01_15_16_+0300_4X1gt1hMN0Ytt86r" X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: itetcu@people.tecnik93.com cc: freebsd-ports-bugs@FreeBSD.org cc: Andreas Klemm Subject: Re: ports/68358: [NEW PORT] mail/dspam-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 20 Jul 2004 22:18:44 -0000 This is a multi-part message in MIME format. --Multipart=_Wed__21_Jul_2004_01_15_16_+0300_4X1gt1hMN0Ytt86r Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, Please use the attached diff instead of the link in the PR, as it contains 3 fixes, Thanks, -- |__-_=__+__=_ IOnut, unregistered ;) FreeBSD "user" _=__+__=__-__=__| Only someone with nothing to be sorry for smiles back at the rear of an elephant. --Multipart=_Wed__21_Jul_2004_01_15_16_+0300_4X1gt1hMN0Ytt86r Content-Type: application/octet-stream; name="dspam-devel.diff" Content-Disposition: attachment; filename="dspam-devel.diff" Content-Transfer-Encoding: base64 ZGlmZiAtdXJOIGRzcGFtLWRldmVsL01ha2VmaWxlIGRzcGFtLWRldmVsLmRldmVsL01ha2VmaWxl Ci0tLSBkc3BhbS1kZXZlbC9NYWtlZmlsZQlGcmkgSnVsICA5IDIwOjQyOjMyIDIwMDQKKysrIGRz cGFtLWRldmVsLmRldmVsL01ha2VmaWxlCVdlZCBKdWwgMjEgMDE6MTE6MTYgMjAwNApAQCAtMSwy MSArMSwyNCBAQAotIyBOZXcgcG9ydHMgY29sbGVjdGlvbiBtYWtlZmlsZSBmb3I6CWRzcGFtCi0j IERhdGUgY3JlYXRlZDoJCQkzIEF1Z3VzdCAyMDAzCi0jIFdob206CQkJCURvbWluaWMgTWFya3Mg PGRvbUB3aXJlc3BlZWQub3JnLnVrPgorIyBOZXcgcG9ydHMgY29sbGVjdGlvbiBtYWtlZmlsZSBm b3I6CWRzcGFtLWRldmVsCisjIERhdGUgY3JlYXRlZDoJCTI0IEp1biAyMDA0CisjIFdob206CQkJ SW9uLU1paGFpICJJT251dCIgVGV0Y3UgPGl0ZXRjdUBwZW9wbGUudGVjbmlrOTMuY29tPgogIwog IyAkRnJlZUJTRDogcG9ydHMvbWFpbC9kc3BhbS1kZXZlbC9NYWtlZmlsZSx2IDEuMTkgMjAwNC8w Ny8wOSAxNzo0MjozMiBtYXJjdXMgRXhwICQKICMKIAotUE9SVE5BTUU9CWRzcGFtCi1QT1JUVkVS U0lPTj0JMy4wLjAKK1BPUlROQU1FPQlkc3BhbS1kZXZlbAorUE9SVFZFUlNJT049CTMuMC4wLjIw MDQwNjI0LjA0MjUKIENBVEVHT1JJRVM9CW1haWwKLU1BU1RFUl9TSVRFUz0JaHR0cDovL3d3dy5u dWNsZWFyZWxlcGhhbnQuY29tL3Byb2plY3RzL2RzcGFtL3NvdXJjZXMvCitNQVNURVJfU0lURVM9 CWh0dHA6Ly93d3cubnVjbGVhcmVsZXBoYW50LmNvbS9wcm9qZWN0cy9kc3BhbS9zb3VyY2VzLyBc CisJCWh0dHA6Ly9wZW9wbGUudGVjbmlrOTMuY29tL35pdGV0Y3UvZHNwYW0tZGV2ZWwvc291cmNl cy8KK0RJU1RGSUxFUz0JZHNwYW0tJHtQT1JUVkVSU0lPTn0udGFyLmd6CiAKLU1BSU5UQUlORVI9 CXJvYkBkZWJhbmsudHYKLUNPTU1FTlQ9CUEgc2VydmVyLXNpZGUgYmF5ZXNpYW4gc3BhbSBmaWx0 ZXIKK01BSU5UQUlORVI9CWl0ZXRjdUBwZW9wbGUudGVjbmlrOTMuY29tCitDT01NRU5UPQlCYXll c2lhbiBzcGFtIGZpbHRlciAtIGRldmVsb3BtZW50IHZlcnNpb24KKworV1JLU1JDPQkJJHtXUktE SVJ9L2RzcGFtLSR7UE9SVFZFUlNJT059CiAKICMjIGRlYnVnIC8gbG9nIG9wdGlvbnMKLU9QVElP TlM9CU5PX0NPTkZMSUNUUyAiRE8gTk9UIGNvbmZsaWN0IHdpdGggZHNwYW0tMi54IiBvZmYKLU9Q VElPTlMrPQlERUJVRyAiRW5hYmxlIGRlYnVnIGluIERTUEFNX0hPTUUvZHNwYW0uZGVidWciIG9u CitPUFRJT05TPQlERUJVRyAiRW5hYmxlIGRlYnVnIGluIERTUEFNX0hPTUUvZHNwYW0uZGVidWci IG9uCiBPUFRJT05TKz0JVkVSQk9TRV9ERUJVRyAiRW5hYmxlIHZlcmJvc2UgZGVidWciIG9uCiBP UFRJT05TKz0JVVNFUl9MT0dHSU5HCSJMb2cgbWFpbCBpbiBEU1BBTV9IT01FL2RhdGEvdXNlci91 c2VyLmxvZyIgb24KIE9QVElPTlMrPQlTWVNURU1fTE9HR0lORwkiTG9nIHNvbWUgaW5mbyBEU1BB TV9IT01FL3N5c3RlbS5sb2ciIG9uCkBAIC00NSw2ICs0OCw3IEBACiBPUFRJT05TKz0JUE9TVEdS RVNRTDc0ICJVc2UgUG9zdGdyZVNRTCB2LjcuNCBhcyBiYWNrLWVuZCIgb2ZmCiAjT1BUSU9OUys9 CVBHU1FMX0lOU1RBTExFRCAiWW91IGhhdmUgdGhlIGNsaWVudCBpbnN0YWxsZWQiIG9uCiBPUFRJ T05TKz0JT1JBQ0xFICJVc2UgT3JhY2xlIGFzIGJhY2stZW5kIChCUk9LRU4pIiBvZmYKK09QVElP TlMrPQlTUUxJVEUgIkJFVEE6IFVzZSBTUUxpdGUgYXMgYmFjay1lbmQiIG9mZgogT1BUSU9OUys9 CVZJUlRfVVNFUlMgIkVuYWJsZSB2aXJ0dWFsIHVzZXJzIChuZWVkcyBTUUwgYmFjay1lbmQpIiBv ZmYKIE9QVElPTlMrPQlMT05HX1VTRVJOQU1FUyAiVXNlcm5hbWVzIGxvbmdlciB0aGF0IE9TIHN1 cHBvcnRzIiBvZmYKIE9QVElPTlMrPQlMQVJHRV9TQ0FMRSAiRmlsZSBzdHJ1Y3R1cmUgZm9yIGxh cmdlIHNjYWxlIiBvZmYKQEAgLTU1LDEwICs1OSwxMSBAQAogT1BUSU9OUys9CVBST0NNQUlMICJV c2UgUHJvY21haWwgYXMgbG9jYWwgZGVsaXZlcnkgYWdlbnQiIG9mZgogT1BUSU9OUys9CVNFTkRN QUlMX0xEQSAiVXNlIFNlbmRtYWlsIGFzIGxvY2FsIGRlbGl2ZXJ5IGFnZW50IiBvZmYKIE9QVElP TlMrPQlTRU5ETUFJTCAiUGxheSBuaWNlIHdpdGggc2VuZG1haWwgc2VydmVyIiBvZmYKK09QVElP TlMrPQlQT1NURklYX01CQyAiRHNwYW0gYXMgbWFpbGJveF9jb21tYW5kIGluIFBvc3RmaXgiIG9m ZgogT1BUSU9OUys9CVFNQUlMICJQbGF5IG5pY2Ugd2l0aCBRbWFpbCBtYWlsIHNlcnZlciIgb2Zm CiBPUFRJT05TKz0JQlJPS0VOX0VSUl9DT0RFUyAiOTk9c3BhbSwgMD1ub3QsIG90aGVyPWVycm9y IChxbWFpbGlzaCkiIG9mZgogT1BUSU9OUys9CUJST0tFTl9NVEEgIkVuYWJsZSBpZiBNVEEgcGFz ZXMgXk0gdG8gZHNwYW0iIG9mZgotT1BUSU9OUys9CUNHSSAiSW5zdGFsbCBDR0kgKHB1bGxzIGlu IGFwYWNoZSkiIG9mZgorI09QVElPTlMrPQlDR0kgIkluc3RhbGwgQ0dJIChwdWxscyBpbiBhcGFj aGUpIiBvZmYKIAogVVNFX0dOT01FPQlwa2djb25maWcKIFVTRV9JTkNfTElCVE9PTF9WRVI9MTMK QEAgLTY4LDU2ICs3Myw1NSBAQAogQ09ORklHVVJFX0VOVj0JTERGTEFHUz0iLUwke0xPQ0FMQkFT RX0vbGliIgogQ09ORklHVVJFX1RBUkdFVD0JLS1idWlsZD0ke01BQ0hJTkVfQVJDSH0tcG9ydGJs ZC1mcmVlYnNkJHtPU1JFTH0KIAorQ09ORkxJQ1RTPQlkc3BhbS0yKiBkc3BhbS0zKgorCiBTRURf U0NSSVBUPQktZSAncywlJURPQ1NESVIlJSwke0RPQ1NESVJ9LGcnIFwKIAkJLWUgJ3MsJSVFWEFN UExFU0RJUiUlLCR7RVhBTVBMRVNESVJ9LGcnIFwKLQkJLWUgJ3MsJSVMT0NBTEJBU0UlJSwke0xP Q0FMQkFTRX0sZycKKwkJLWUgJ3MsJSVMT0NBTEJBU0UlJSwke0xPQ0FMQkFTRX0sZycgXAorCQkt ZSAncywlJVBSRUZJWCUlLCR7UFJFRklYfSxnJwogCi1XSVRIX1NJR05BVFVSRV9MSUZFPz0JMjgK K1dJVEhfU0lHTkFUVVJFX0xJRkU/PQkxNQogCiAuaW5jbHVkZSA8YnNkLnBvcnQucHJlLm1rPgog Ci0uaWYgIWRlZmluZWQoV0lUSF9OT19DT05GTElDVFMpCi1DT05GTElDVFM9CWRzcGFtLTIqCi0u ZW5kaWYKLQotLmlmIGRlZmluZWQoV0lUSE9VVF9ERUJVRykKLUNPTkZJR1VSRV9BUkdTKz0JLS1k aXNhYmxlLWRlYnVnCi0uZWxzZQorLmlmIGRlZmluZWQoV0lUSF9ERUJVRykKIENPTkZJR1VSRV9B UkdTKz0JLS1lbmFibGUtZGVidWcKKy5lbHNlCitDT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1k ZWJ1ZwogLmVuZGlmCiAKLS5pZiBkZWZpbmVkKFdJVEhPVVRfVkVSQk9TRV9ERUJVRykKLUNPTkZJ R1VSRV9BUkdTKz0JLS1kaXNhYmxlLXZlcmJvc2UtZGVidWcKLS5lbHNlCisuaWYgZGVmaW5lZChX SVRIX1ZFUkJPU0VfREVCVUcpCiBDT05GSUdVUkVfQVJHUys9CS0tZW5hYmxlLXZlcmJvc2UtZGVi dWcKKy5lbHNlCitDT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS12ZXJib3NlLWRlYnVnCiAuZW5k aWYKIAotLmlmIGRlZmluZWQoV0lUSE9VVF9TWVNURU1fTE9HR0lORykKLUNPTkZJR1VSRV9BUkdT Kz0JLS1kaXNhYmxlLXN5c3RlbS1sb2dnaW5nCi0uZWxzZQorLmlmIGRlZmluZWQoV0lUSF9TWVNU RU1fTE9HR0lORykKIENPTkZJR1VSRV9BUkdTKz0JLS1lbmFibGUtbG9nZ2luZworLmVsc2UKK0NP TkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLXN5c3RlbS1sb2dnaW5nCiAuZW5kaWYKIAotLmlmIGRl ZmluZWQoV0lUSE9VVF9VU0VSX0xPR0dJTkcpCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS11 c2VyLWxvZ2dpbmcKLS5lbHNlCisuaWYgZGVmaW5lZChXSVRIX1VTRVJfTE9HR0lORykKIENPTkZJ R1VSRV9BUkdTKz0JLS1lbmFibGUtdXNlci1sb2dnaW5nCisuZWxzZQorQ09ORklHVVJFX0FSR1Mr PQktLWRpc2FibGUtdXNlci1sb2dnaW5nCiAuZW5kaWYKIAotLmlmICFkZWZpbmVkKFdJVEhPVVRf U0FUKQorLmlmIGRlZmluZWQoV0lUSF9TQVQpCiBDT05GSUdVUkVfQVJHUys9CS0tZW5hYmxlLXNv dXJjZS1hZGRyZXNzLXRyYWNraW5nCiAuZW5kaWYKIAotLmlmIGRlZmluZWQoV0lUSE9VVF9UUkFE X0JBWUVTKQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtdHJhZGl0aW9uYWwtYmF5ZXNpYW4K LS5lbHNlCisuaWYgZGVmaW5lZChXSVRIX1RSQURfQkFZRVMpCiBDT05GSUdVUkVfQVJHUys9CS0t ZW5hYmxlLXRyYWRpdGlvbmFsLWJheWVzaWFuCisuZWxzZQorQ09ORklHVVJFX0FSR1MrPQktLWRp c2FibGUtdHJhZGl0aW9uYWwtYmF5ZXNpYW4KIC5lbmRpZgogCi0uaWYgZGVmaW5lZChXSVRIT1VU X0FMVF9CQVlFUykKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWFsdGVybmF0aXZlLWJheWVz aWFuCi0uZWxzZQorLmlmIGRlZmluZWQoV0lUSF9BTFRfQkFZRVMpCiBDT05GSUdVUkVfQVJHUys9 CS0tZW5hYmxlLWFsdGVybmF0aXZlLWJheWVzaWFuCisuZWxzZQorQ09ORklHVVJFX0FSR1MrPQkt LWRpc2FibGUtYWx0ZXJuYXRpdmUtYmF5ZXNpYW4KIC5lbmRpZgogCiAuaWYgZGVmaW5lZChXSVRI X1JOQikKQEAgLTEzOCwxMCArMTQyLDEwIEBACiBDT05GSUdVUkVfQVJHUys9CSAtLWRpc2FibGUt cm9iaW5zb24tcHZhbHVlcwogLmVuZGlmCiAKLS5pZiBkZWZpbmVkKFdJVEhPVVRfVEVTVF9DT05E KQotQ09ORklHVVJFX0FSR1MrPQkgLS1kaXNhYmxlLXRlc3QtY29uZGl0aW9uYWwKLS5lbHNlCisu aWYgZGVmaW5lZChXSVRIX1RFU1RfQ09ORCkKIENPTkZJR1VSRV9BUkdTKz0JIC0tZW5hYmxlLXRl c3QtY29uZGl0aW9uYWwKKy5lbHNlCitDT05GSUdVUkVfQVJHUys9CSAtLWRpc2FibGUtdGVzdC1j b25kaXRpb25hbAogLmVuZGlmCiAKIC5pZiBkZWZpbmVkKFdJVEhfTk9fQklBUykKQEAgLTE5Mywx NSArMTk3LDE3IEBACiBQTElTVF9TVUIrPQlEQjQ9IkBjb21tZW50ICIKIFBMSVNUX1NVQis9CU1Z U1FMPSIiCiBQTElTVF9TVUIrPQlQR1NRTD0iQGNvbW1lbnQgIgorUExJU1RfU1VCKz0JU1FMSVRF PSJAY29tbWVudCAiCiBTRURfU0NSSVBUKz0JLWUgJ3MsJSVNWVNRTCUlLCxnJwogU0VEX1NDUklQ VCs9CS1lICcvJSVQR1NRTCUlL0QnCitTRURfU0NSSVBUKz0JLWUgJy8lJVNRTElURSUlL0QnCiAu aWYgZGVmaW5lZChXSVRIX01ZU1FMX0NPTVBSRVNTKQogQ09ORklHVVJFX0FSR1MrPQktLWVuYWJs ZS1jbGllbnQtY29tcHJlc3Npb24KIC5lbmRpZgogLmVuZGlmCiAKIC5pZiBkZWZpbmVkKFdJVEhf UE9TVEdSRVNRTDczKQotTElCX0RFUEVORFMrPQlwcS4zOiR7UE9SVFNESVJ9L2RhdGFiYXNlcy9w b3N0Z3Jlc3FsNzMKK0xJQl9ERVBFTkRTPQlwcS4zOiR7UE9SVFNESVJ9L2RhdGFiYXNlcy9wb3N0 Z3Jlc3FsNzMKICNCVUlMRF9ERVBFTkRTPSAke0xJQl9ERVBFTkRTfQogQ09ORklHVVJFX0FSR1Mr PQktLXdpdGgtc3RvcmFnZS1kcml2ZXI9cGdzcWxfZHJ2IFwKIAkJLS13aXRoLXBnc3FsLWluY2x1 ZGVzPSR7TE9DQUxCQVNFfS9pbmNsdWRlIFwKQEAgLTIwOSwxMiArMjE1LDE0IEBACiBQTElTVF9T VUIrPQlEQjQ9IkBjb21tZW50ICIKIFBMSVNUX1NVQis9CU1ZU1FMPSJAY29tbWVudCAiCiBQTElT VF9TVUIrPQlQR1NRTD0iIgorUExJU1RfU1VCKz0JU1FMSVRFPSJAY29tbWVudCAiCiBTRURfU0NS SVBUKz0JLWUgJy8lJU1ZU1FMJSUvRCcKIFNFRF9TQ1JJUFQrPQktZSAncywlJVBHU1FMJSUsLGcn CitTRURfU0NSSVBUKz0JLWUgJy8lJVNRTElURSUlL0QnCiAuZW5kaWYKIAogLmlmIGRlZmluZWQo V0lUSF9QT1NUR1JFU1FMNzQpCi1MSUJfREVQRU5EUys9CWVjcGcuNDoke1BPUlRTRElSfS9kYXRh YmFzZXMvcG9zdGdyZXNxbDcKK0xJQl9ERVBFTkRTPQllY3BnLjQ6JHtQT1JUU0RJUn0vZGF0YWJh c2VzL3Bvc3RncmVzcWw3CiAjQlVJTERfREVQRU5EUz0JJHtMSUJfREVQRU5EU30KIENPTkZJR1VS RV9BUkdTKz0JLS13aXRoLXN0b3JhZ2UtZHJpdmVyPXBnc3FsX2RydiBcCiAJCS0td2l0aC1wZ3Nx bC1pbmNsdWRlcz0ke0xPQ0FMQkFTRX0vaW5jbHVkZSBcCkBAIC0yMjIsMjkgKzIzMCw1MSBAQAog UExJU1RfU1VCKz0JREI0PSJAY29tbWVudCAiCiBQTElTVF9TVUIrPQlNWVNRTD0iQGNvbW1lbnQg IgogUExJU1RfU1VCKz0JUEdTUUw9IiIKK1BMSVNUX1NVQis9CVNRTElURT0iQGNvbW1lbnQgIgog U0VEX1NDUklQVCs9CS1lICcvJSVNWVNRTCUlL0QnCiBTRURfU0NSSVBUKz0JLWUgJ3MsJSVQR1NR TCUlLCxnJworU0VEX1NDUklQVCs9CS1lICcvJSVTUUxJVEUlJS9EJwogLmVuZGlmCiAKIC5pZiBk ZWZpbmVkKFdJVEhfT1JBQ0xFKQotQlVJTERfREVQRU5EUys9CSR7TE9DQUxCQVNFfS9vcmFjbGU3 L3JkYm1zL2xpYi9saWJubHNydGwzLmE6JHtQT1JUU0RJUn0vZGF0YWJhc2VzL29yYWNsZTctY2xp ZW50CitCVUlMRF9ERVBFTkRTPQkke0xPQ0FMQkFTRX0vb3JhY2xlNy9yZGJtcy9saWIvbGlibmxz cnRsMy5hOlwKKwkke1BPUlRTRElSfS9kYXRhYmFzZXMvb3JhY2xlNy1jbGllbnQKIENPTkZJR1VS RV9BUkdTKz0JLS13aXRoLXN0b3JhZ2UtZHJpdmVyPW9yYV9kcnYgXAogCQktLXdpdGgtb3JhY2xl LWhvbWU9CSR7TE9DQUxCQVNFfS9vcmFjbGU3CiAuZW5kaWYKIAorLmlmIGRlZmluZWQoV0lUSF9T UUxJVEUpCitMSUJfREVQRU5EUys9CXNxbGl0ZS4yOiR7UE9SVFNESVJ9L2RhdGFiYXNlcy9zcWxp dGUKK0NPTkZJR1VSRV9BUkdTKz0JLS13aXRoLXN0b3JhZ2UtZHJpdmVyPXNxbGl0ZV9kcnYgXAor CS0td2l0aC1zcWxpdGUtaW5jbHVkZXM9JHtMT0NBTEJBU0V9L2luY2x1ZGUgXAorCS0td2l0aC1z cWxpdGUtbGlicmFyaWVzPSR7TE9DQUxCQVNFfS9saWIKK1BMSVNUX1NVQis9CURCND0iQGNvbW1l bnQgIgorUExJU1RfU1VCKz0JTVlTUUw9IkBjb21tZW50ICIKK1BMSVNUX1NVQis9CVBHU1FMPSJA Y29tbWVudCAiCitQTElTVF9TVUIrPQlTUUxJVEU9IiIKK1NFRF9TQ1JJUFQrPQktZSAnLyUlTVlT UUwlJS9EJworU0VEX1NDUklQVCs9CS1lICcvJSVQR1NRTCUlL0QnCitTRURfU0NSSVBUKz0JLWUg J3MsJSVTUUxJVEUlJSwsZycKKy5lbmRpZgorCiAuaWYgZGVmaW5lZChXSVRIX1ZJUlRfVVNFUlMp CiBDT05GSUdVUkVfQVJHUys9CS0tZW5hYmxlLXZpcnR1YWwtdXNlcnMKICNORUVEX01fUD0uIEAk e1RSVUV9CiAuZW5kaWYKIAotLmlmICEoZGVmaW5lZChXSVRIX01ZU1FMKSB8fCBkZWZpbmVkKFdJ VEhfUE9TVEdSRVNRTDczKSB8fCBkZWZpbmVkKFdJVEhfUE9TVEdSRVNRTDc0KSB8fCBkZWZpbmVk KFdJVEhfT1JBQ0xFKSkKKy5pZiAhKGRlZmluZWQoV0lUSF9NWVNRTCkgfHwgZGVmaW5lZChXSVRI X1BPU1RHUkVTUUw3MykgfHwgXAorCWRlZmluZWQoV0lUSF9QT1NUR1JFU1FMNzQpIHx8IGRlZmlu ZWQoV0lUSF9PUkFDTEUpIHx8IFwKKwlkZWZpbmVkKFdJVEhfU1FMSVRFKSkKIExJQl9ERVBFTkRT Kz0JZGI0MS4xOiR7UE9SVFNESVJ9L2RhdGFiYXNlcy9kYjQxCi1DT05GSUdVUkVfQVJHUys9CS0t d2l0aC1kYjQtaW5jbHVkZXM9JHtMT0NBTEJBU0V9L2luY2x1ZGUvZGI0MQorQ09ORklHVVJFX0FS R1MrPQktLXdpdGgtc3RvcmFnZS1kcml2ZXI9bGliZGI0X2RydiBcCisJLS13aXRoLWRiNC1pbmNs dWRlcz0ke0xPQ0FMQkFTRX0vaW5jbHVkZS9kYjQxCiBQTElTVF9TVUIrPQlEQjQ9IiIKIFBMSVNU X1NVQis9CU1ZU1FMPSJAY29tbWVudCAiCiBQTElTVF9TVUIrPQlQR1NRTD0iQGNvbW1lbnQgIgor UExJU1RfU1VCKz0JU1FMSVRFPSJAY29tbWVudCAiCiBTRURfU0NSSVBUKz0JLWUgJy8lJU1ZU1FM JSUvRCcKIFNFRF9TQ1JJUFQrPQktZSAnLyUlUEdTUUwlJS9EJworU0VEX1NDUklQVCs9CS1lICcv JSVTUUxJVEUlJS9EJwogLmVuZGlmCiAKIC5pZiBkZWZpbmVkKFdJVEhfTE9OR19VU0VSTkFNRVMp CkBAIC0yNzksNiArMzA5LDEzIEBACiBDT05GSUdVUkVfQVJHUys9CS0td2l0aC1kc3BhbS1tb2Rl PTQ1MTEKIC5lbmRpZgogCisuaWYgZGVmaW5lZChXSVRIX1BPU1RGSVhfTUJDKQorQ09ORklHVVJF X0FSR1MrPQktLXdpdGgtZHNwYW0tbW9kZT00NTExCitTRURfU0NSSVBUKz0JLWUgJ3MsJSVQT1NU RklYX01CQyUlLCxnJworLmVsc2UKK1NFRF9TQ1JJUFQrPQktZSAnLyUlUE9TVEZJWF9NQkMlJS9E JworLmVuZGlmCisKIC5pZiBkZWZpbmVkKFdJVEhfUU1BSUwpCiBDT05GSUdVUkVfQVJHUys9CS0t d2l0aC1kc3BhbS1tb2RlPTQ1MTEKIC5lbmRpZgpAQCAtMjg4LDE5ICszMjUsMTggQEAKIC5lbmRp ZgogCiAuaWYgZGVmaW5lZChEU1BBTV9IT01FKQotQ09ORklHVVJFX0FSR1MrPS0td2l0aC1kc3Bh bS1ob21lPSR7RFNQQU1fSE9NRX0KK0NPTkZJR1VSRV9BUkdTKz0JLS13aXRoLWRzcGFtLWhvbWU9 JHtEU1BBTV9IT01FfQogLmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0tLXdpdGgtZHNwYW0taG9tZT0k e1BSRUZJWH0vZXRjL2RzcGFtCitDT05GSUdVUkVfQVJHUys9CS0td2l0aC1kc3BhbS1ob21lPSR7 UFJFRklYfS9ldGMvZHNwYW0KIC5lbmRpZgogCi0jICAtLXdpdGgtZHNwYW0taG9tZT1ESVIJICBT cGVjaWZ5IGRpcmVjdG9yeSB3aGVyZSBwZXItdXNlciBkaWN0aW9uYXJpZXMKLSMgIC0td2l0aC1k c3BhbS1ob21lLW1vZGU9TU9ERSAgIFNldCBhY2Nlc3MgbW9kZSBmb3IgRFNQQU1fSE9NRQotIyAg LS13aXRoLWRzcGFtLWhvbWUtb3duZXI9T1dORVIgIFNldCBvd25lciBmb3IgRFNQQU1fSE9NRQot IyAgLS13aXRoLWRzcGFtLWhvbWUtZ3JvdXA9R1JPVVAgIFNldCBncm91cCBmb3IgRFNQQU1fSE9N RQorLmlmIGRlZmluZWQoRFNQQU1fT1dORVIpCitDT05GSUdVUkVfQVJHUys9CS0td2l0aC1kc3Bh bS1ob21lLW93bmVyPSR7RFNQQU1fT1dORVJ9CisuZW5kaWYKIAotIyAgLS13aXRoLWRzcGFtLW1v ZGU9TU9ERSAgICAgICAgIFNldCBhY2Nlc3MgbW9kZSBmb3IgZHNwYW0gYmluYXJ5Ci0jICAtLXdp dGgtZHNwYW0tb3duZXI9T1dORVIgICAgICAgU2V0IG93bmVyIGZvciBkc3BhbSBiaW5hcnkKLSMg IC0td2l0aC1kc3BhbS1ncm91cD1HUk9VUCAgICAgICBTZXQgZ3JvdXAgZm9yIGRzcGFtIGJpbmFy eQorLmlmIGRlZmluZWQoRFNQQU1fR1JPVVApCitDT05GSUdVUkVfQVJHUys9CS0td2l0aC1kc3Bh bS1ob21lLWdyb3VwPSR7RFNQQU1fR1JPVVB9CisuZW5kaWYKIAogLmlmIGRlZmluZWQoV0lUSF9C Uk9LRU5fTVRBKQogQ09ORklHVVJFX0FSR1MrPQktLWVuYWJsZS1icm9rZW4tbXRhCkBAIC0zMTUs MjEgKzM1MSwyMiBAQAogLmVuZGlmCiAKIC5pZiBkZWZpbmVkKFdJVEhfQ0dJKQotUlVOX0RFUEVO RFMrPQkke0xPQ0FMQkFTRX0vZXRjL2FwYWNoZS9odHRwZC5jb25mOiR7UE9SVFNESVJ9LyR7QVBB Q0hFX1BPUlR9CitSVU5fREVQRU5EUz0JJHtMT0NBTEJBU0V9L2V0Yy9hcGFjaGUvaHR0cGQuY29u Zjoke1BPUlRTRElSfS8ke0FQQUNIRV9QT1JUfQogLmVuZGlmCiAKLU1BTjE9CWRzcGFtLjEgZHNw YW1fY2xlYW4uMSBkc3BhbV9jb3JwdXMuMSBkc3BhbV9kdW1wLjEgZHNwYW1fbWVyZ2UuMSBkc3Bh bV9zdGF0cy4xCitNQU4xPQlkc3BhbS4xIGRzcGFtX2NsZWFuLjEgZHNwYW1fY29ycHVzLjEgZHNw YW1fZHVtcC4xIGRzcGFtX21lcmdlLjEgXAorCWRzcGFtX3N0YXRzLjEKIAogRE9DUz0JQ0hBTkdF TE9HIFJFQURNRSBMSUNFTlNFIFJFTEVBU0UuTk9URVMKIAotcHJlLWV2ZXJ5dGhpbmc6OgotCUAk e1NIfSAke1BLR0lOU1RBTEx9ICR7UE9SVE5BTUV9IFBSRS1JTlNUQUxMCisjcHJlLWV2ZXJ5dGhp bmc6OgorIwlAJHtTSH0gJHtQS0dJTlNUQUxMfSAke1BPUlROQU1FfSBQUkUtSU5TVEFMTAogCiBw b3N0LXBhdGNoOgogCUAke1JFSU5QTEFDRV9DTUR9IC1lICdzfCUlTElCVE9PTEZMQUdTJSV8JHtM SUJUT09MRkxBR1N9fGcgOyBcCiAJCXN8LWxkYi00LjF8LWxkYjQxfGcnICR7V1JLU1JDfS9jb25m aWd1cmUKIAlAJHtSRUlOUExBQ0VfQ01EfSAtZSAnc3wobGliZGlyKS9wa2djb25maWd8KHByZWZp eCkvbGliZGF0YS9wa2djb25maWd8JyBcCi0JCSR7V1JLU1JDfS9NYWtlZmlsZS5pbgorCSR7V1JL U1JDfS9NYWtlZmlsZS5pbgogCiBwcmUtY29uZmlndXJlOgogLmlmIGRlZmluZWQoV0lUSF9NQUlM RFJPUCkgJiYgKGRlZmluZWQoV0lUSF9QUk9DTUFJTCkgfHwgZGVmaW5lZChXSVRIX1NFTkRNQUlM X0xEQSkpCkBAIC0zNDQsNyArMzgxLDggQEAKIAlAJHtFQ0hPX0NNRH0gIllvdSBuZWVkIE15U1FM IG9yIFBPU1RHUkVTUUwgdG8gdXNlIG5ldXJhbCBuZXR3b3JraW5nLiIKIAlAJHtGQUxTRX0KIC5l bmRpZgotLmlmIGRlZmluZWQoV0lUSF9WSVJUX1VTRVJTKSAmJiAhKGRlZmluZWQoV0lUSF9NWVNR TCkgfHwgZGVmaW5lZChXSVRIX1BPU1RHUkVTUUwpIHx8IGRlZmluZWQoV0lUSF9PUkFDTEUpKQor LmlmIGRlZmluZWQoV0lUSF9WSVJUX1VTRVJTKSAmJiAhKGRlZmluZWQoV0lUSF9NWVNRTCkgfHwg XAorCWRlZmluZWQoV0lUSF9QT1NUR1JFU1FMKSB8fCBkZWZpbmVkKFdJVEhfT1JBQ0xFKSkKIAlA JHtFQ0hPX0NNRH0gIllvdSBuZWVkIE15U1FMLCBQT1NUR1JFU1FMIG9yIE9SQUNMRSBmb3Igdmly dHVhbCB1c2Vycy4iCiAJQCR7RkFMU0V9CiAuZW5kaWYKQEAgLTM2Miw2ICs0MDAsMTUgQEAKIAlj ZCAke1dSS1NSQ30vdG9vbHMucGdzcWxfZHJ2ICYmIFwKIAkJJHtJTlNUQUxMX0RBVEF9IFJFQURN RSAqLnNxbCAke0VYQU1QTEVTRElSfS9wZ3NxbAogCSR7SU5TVEFMTF9EQVRBfSAke0ZJTEVTRElS fS9wZ3NxbC5kYXRhICR7RVhBTVBMRVNESVJ9L3Bnc3FsCisuZW5kaWYKKy5pZiBkZWZpbmVkKFdJ VEhfU1FMSVRFKQorCSR7TUtESVJ9ICR7RVhBTVBMRVNESVJ9L3NxbGl0ZQorCWNkICR7V1JLU1JD fS90b29scy5zcWxpdGVfZHJ2ICYmIFwKKwkJJHtJTlNUQUxMX0RBVEF9IFJFQURNRSAqLnNxbCAk e0VYQU1QTEVTRElSfS9zcWxpdGUKKy5lbmRpZgorLmlmIGRlZmluZWQoV0lUSF9DR0kpCisJJHtN S0RJUn0gJHtFWEFNUExFU0RJUn0vY2dpCisJJHtJTlNUQUxMX0RBVEF9ICR7RklMRVNESVJ9L1JF QURNRS5jZ2kgJHtFWEFNUExFU0RJUn0vY2dpCiAuZW5kaWYKIC5pZiAhZGVmaW5lZChOT1BPUlRE T0NTKQogCUAke01LRElSfSAke0RPQ1NESVJ9CmRpZmYgLXVyTiBkc3BhbS1kZXZlbC9kaXN0aW5m byBkc3BhbS1kZXZlbC5kZXZlbC9kaXN0aW5mbwotLS0gZHNwYW0tZGV2ZWwvZGlzdGluZm8JU3Vu IEp1bCAgNCAxNDo1ODoxNiAyMDA0CisrKyBkc3BhbS1kZXZlbC5kZXZlbC9kaXN0aW5mbwlTYXQg SnVuIDI2IDAyOjEwOjA1IDIwMDQKQEAgLTEsMiArMSwyIEBACi1NRDUgKGRzcGFtLTMuMC4wLnRh ci5neikgPSBmNWI1NjhlOGZlYTUwZmFhZjRjMWZjYWJlZTE3NzkzNAotU0laRSAoZHNwYW0tMy4w LjAudGFyLmd6KSA9IDU3NTM4MgorTUQ1IChkc3BhbS0zLjAuMC4yMDA0MDYyNC4wNDI1LnRhci5n eikgPSBmOTZkZTBjMTYyOTQ1MGQ4ZjNkOGM1M2Q1MTA4YjQwMworU0laRSAoZHNwYW0tMy4wLjAu MjAwNDA2MjQuMDQyNS50YXIuZ3opID0gNTg4NDUzCmRpZmYgLXVyTiBkc3BhbS1kZXZlbC9maWxl cy9wYXRjaC1NYWtlZmlsZS5pbiBkc3BhbS1kZXZlbC5kZXZlbC9maWxlcy9wYXRjaC1NYWtlZmls ZS5pbgotLS0gZHNwYW0tZGV2ZWwvZmlsZXMvcGF0Y2gtTWFrZWZpbGUuaW4JVGh1IEphbiAgMSAw MjowMDowMCAxOTcwCisrKyBkc3BhbS1kZXZlbC5kZXZlbC9maWxlcy9wYXRjaC1NYWtlZmlsZS5p bglUaHUgSnVuIDI0IDE4OjM4OjQzIDIwMDQKQEAgLTAsMCArMSwxMSBAQAorLS0tIE1ha2VmaWxl LmluLm9yaWcJVGh1IEp1biAyNCAxODozMjozOCAyMDA0CisrKysgTWFrZWZpbGUuaW4JVGh1IEp1 biAyNCAxODozNzowOSAyMDA0CitAQCAtMjQyLDcgKzI0Miw3IEBACisgbWFuX01BTlMgPSBkc3Bh bS4xIGRzcGFtX3N0YXRzLjEgZHNwYW1fY29ycHVzLjEgZHNwYW1fY2xlYW4uMSBkc3BhbV9kdW1w LjEgXAorICAgZHNwYW1fbWVyZ2UuMQorIAorLXBrZ2NvbmZpZ2RpciA9ICQobGliZGlyKS9wa2dj b25maWcKKytwa2djb25maWdkaXIgPSAkKHByZWZpeCkvbGliZGF0YS9wa2djb25maWcKKyBwa2dj b25maWdfREFUQSA9IGRzcGFtLnBjCisgRVhUUkFfRElTVCA9IGF1dG9nZW4uc2ggUkVMRUFTRS5O T1RFUyBDSEFOR0VMT0cgTElDRU5TRSBleGFtcGxlLmMgXAorICAgZHNwYW0tYnV0dG9uLmdpZiBk c3BhbS4xIGRzcGFtX3N0YXRzLjEgZHNwYW1fY29ycHVzLjEgZHNwYW1fY2xlYW4uMSBcCmRpZmYg LXVyTiBkc3BhbS1kZXZlbC9maWxlcy9wYXRjaC1jb25maWd1cmUgZHNwYW0tZGV2ZWwuZGV2ZWwv ZmlsZXMvcGF0Y2gtY29uZmlndXJlCi0tLSBkc3BhbS1kZXZlbC9maWxlcy9wYXRjaC1jb25maWd1 cmUJU3VuIEp1bCAgNCAxNDo1ODoxNiAyMDA0CisrKyBkc3BhbS1kZXZlbC5kZXZlbC9maWxlcy9w YXRjaC1jb25maWd1cmUJRnJpIEphbiAgOSAwMDo0NDo1MiAyMDA0CkBAIC0xLDYgKzEsNiBAQAot LS0tIGNvbmZpZ3VyZS5vcmlnCVNhdCBKdWwgIDMgMTQ6MTg6MzcgMjAwNAotKysrIGNvbmZpZ3Vy ZQlTYXQgSnVsICAzIDE0OjE4OjU3IDIwMDQKLUBAIC0xOTI3Miw3ICsxOTI3Miw4IEBACistLS0g Y29uZmlndXJlLm9yaWcJV2VkIE5vdiAyNiAxNDozNTozNCAyMDAzCisrKysgY29uZmlndXJlCVRo dSBEZWMgMTEgMTQ6MDA6MTggMjAwMworQEAgLTc1NDgsNyArNzU0OCw4IEBACiAgCiAgCiAgIyBU aGlzIGNhbiBiZSB1c2VkIHRvIHJlYnVpbGQgbGlidG9vbCB3aGVuIG5lZWRlZApkaWZmIC11ck4g ZHNwYW0tZGV2ZWwvcGtnLWluc3RhbGwgZHNwYW0tZGV2ZWwuZGV2ZWwvcGtnLWluc3RhbGwKLS0t IGRzcGFtLWRldmVsL3BrZy1pbnN0YWxsCVN1biBKdWwgIDQgMTQ6NTg6MTYgMjAwNAorKysgZHNw YW0tZGV2ZWwuZGV2ZWwvcGtnLWluc3RhbGwJVGh1IEphbiAgMSAwMjowMDowMCAxOTcwCkBAIC0x LDYxICswLDAgQEAKLSMhL2Jpbi9zaAotCi0jICRGcmVlQlNEOiBwb3J0cy9tYWlsL2RzcGFtLWRl dmVsL3BrZy1pbnN0YWxsLHYgMS4xIDIwMDQvMDcvMDQgMTE6NTg6MTYgcGF2IEV4cCAkCi0KLVBB VEg9L2JpbjovdXNyL3NiaW4KLQotdXBncmFkZXdhcm5pbmcoKSB7Ci0JZWNobyAiCi0KLQk9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PQotCU5vdGUgZm9yIHVwZ3JhZGVycyBmcm9tIGRzcGFtIDIueDoKLQktIERTUEFN IHYzLjAgaGFzIG1vdmVkIG1hbnkgZmVhdHVyZXMgb3V0IHRvIHRoZSBjb21tYW5kbGluZS4KLQkt IE90aGVyIGNvbmZpZ3VyZS10aW1lIGFyZ3VtZW50cyBoYXZlIGFsc28gYmVlbiBjaGFuZ2VkIG9y IHJlbW92ZWQuCi0JLSBUaGUgc3R1Y3R1cmUgb2YgdGhlIGRhdGFiYXNlIChNeVNRTCwgT3JhY2xl KSBoYXMgY2hhbmdlZDsgaWYgeW91IHVzZQotCW9uZSBvZiB0aGlzIHRoZSBQS0dNRVNTQUdFIHdp bGwgdGVsbCB5b3Ugd2hhdCBkbyBkby4KLQotCVdoaWxlIHRoaXMgcG9ydCB0cmllcyBoaXMgYmVz dCB0byBoZWxwIHlvdSB3aXRoIHRoZSB1cGdyYWRlLCBiZSBzdXJlCi0JdG8gcmVhZCB0aGUgc2Vj dGlvbiBVUEdSQURJTkcgb2YgMS4xIElOU1RBTExBVElPTiAtIFVQR1JBRElORyBmcm9tCi0JJSVQ T1JURE9DUyUlLyUlRE9DU0RJUiUlL1JFQURNRS4gQmVjYXVzZSBvZiB0aGUgY29tbWFuZCBsaW5l IGNoYW5nZXMgeW91Ci0JcmlzayB0byBoYXZlIGFsbCB5b3UgbWFpbHMgZ29pbmcgdG8gdGhlIGJp dCBidWNrZXQgd2l0aCBOTyBXQVJOSU5HLgotCQotCURvIG5vdCBjb250aW51ZSB0byBpbnN0YWxs IHRoaXMgcG9ydCB3aXRob3V0IHNodXR0aW5nIGRvd24geW91ciBNVEEKLQlhbmQvb3IgZGlzYWJs ZWluZyBkc3BhbSAoaWYgeW91IGFyZSBpbnN0YWxsaW5nIGluIHRoZSBzYW1lIHBsYWNlKS4KLQlJ ZiB5b3Ugd2hhbnQgdG8gdGVzdCB0aGUgbmV3IHZlcnNpb24sIGluc3RhbGwgd2l0aCBQUkVGSVgg IT0gL3Vzci9sb2NhbCAKLQlhbmQgY2hvb3NlIFdJVEhfTk9fQ09ORkxJQ1QgaW4gdGhlIE9QVElP TlMgbWVudTsgb3RoZXJ3aXNlIGlmIHlvdSBoYXZlIAotCWRzcGFtLTIueCB0aGlzIHBvcnQgd2ls bCByZWZ1c2UgdG8gaW5zdGFsbC4KLQk9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLSIKLSAgICAgICAgc2xlZXAg MwotfQotCi1mZWF0dXJld2FybmluZygpIHsKLQllY2hvICIKLQkKLQlLbm93biBpc3N1ZXM6Ci0J LSBXSVRIX09SQUNMRSBkb2VzIG5vdCBjb25maWd1cmUuCi0JLSB0aGUgbmV3IFBPUDMgUHJveHkg aW50ZWdyYXRpb24gaXMgbm90IHlldCBoYW5kbGVkIGJ5IHRoaXMgcG9ydAotCS0gZHVlIHRvIHRo ZSByZW1vdmFsIG9mIHBvc3RncmVzcyBjbGllbnQgcG9ydCBmcm9tIHRoZSBQb3J0cyBUcmVlCi0J aWYgeW91IGNob29zZSBXSVRIX1BPU1RSRVNRTCBQb3N0Z3Jlc3FsIDcuMyB3aWxsIGJlIGluc3Rh bGxlZDsgaWYgeW91Ci0JcGxhbiB0byB1c2UgYSBzZXJ2ZXIgb24gYW5vdGhlciBtYWNoaW5lIGRv OgotCQkxLiBIaXQgQ3RybCtDIG5vdy4KLQkJMi4gR28gaW4gZGF0YWJhc2VzL3Bvc3RncmVzcWw3 MyBhbmQgbWFrZSAtRFdJVEhPVVRfU0VSVkVSIGluc3RhbGwKLQkJMy4gQ29tZSBiYWNrIGhlcmUg YW5kIG1ha2UgaW5zdGFsbAotCS0gdGhlIGNnaSBwYXJ0IGlzIHJlYWxseSB1bnRlc3RlZCBhbmQg cmVxdWlyZXMgbW9yZSB3b3JrCi0JLSBzb21lIGNoYW5nZXMgZnJvbSByYzIgYXJlIG5vdCBtZXJn ZWQgeWV0LgotCS0gbm8gc3VwcGxpbWFudGFyeSB7cGxhdGZvcm18TVRBfExEQSxldGMufSBkb2N1 bWVudGFpb24gaXMgaW4geWV0Ci0JLSBxbWFpbCBkc3BhbS1maWx0ZXIgKGh0dHA6Ly9zb3VyY2Vm b3JnZS5uZXQvcHJvamVjdHMvZHNwYW0tZmlsdGVyLykKLQlpcyBub3QgeWV0IGludGVncmF0ZWQu Ci0JIgotCXNsZWVwIDgKLX0KLQotY2FzZSAkMiBpbgotUFJFLUlOU1RBTEwpCi0JdXBncmFkZXdh cm5pbmcKLQlmZWF0dXJld2FybmluZwotCTs7Ci1VUEdSQURFV0FSTklORykKLQl1cGdyYWRld2Fy bmluZwotCTs7Ci1lc2FjCmRpZmYgLXVyTiBkc3BhbS1kZXZlbC9wa2ctbWVzc2FnZSBkc3BhbS1k ZXZlbC5kZXZlbC9wa2ctbWVzc2FnZQotLS0gZHNwYW0tZGV2ZWwvcGtnLW1lc3NhZ2UJVHVlIEp1 bCAgNiAxNzo0MzoyOCAyMDA0CisrKyBkc3BhbS1kZXZlbC5kZXZlbC9wa2ctbWVzc2FnZQlTYXQg SnVuIDI2IDA2OjMxOjU2IDIwMDQKQEAgLTEsMjYgKzEsMzggQEAKIAotLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KKy0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0KIAotIFNlZSB0aGUgZmlsZSAlJURPQ1NESVIlJS9SRUFETUUg Zm9yIGFkdmljZSBhYm91dAotIGhvdyB0byBjb25maWd1cmUgRFNQQU0gd2l0aCB5b3VyIE1UQS4g RXhhbXBsZXMgYXJlIHByb3ZpZGVkIGZvcgotIHNlbmRtYWlsLCBwb3N0Zml4LCBleGltIGFuZCBj b3VyaWVyIE1UQXMuCisgU2VlIHRoZSBmaWxlICUlRE9DU0RJUiUlL1JFQURNRSBmb3IgYWR2aWNl IGFib3V0IAorIGhvdyB0byBjb25maWd1cmUgRFNQQU0gd2l0aCB5b3VyIE1UQS4gRXhhbXBsZXMg YXJlIHByb3ZpZGVkIGZvciBzZW5kbWFpbCwgCisgcG9zdGZpeCwgZXhpbSBhbmQgY291cmllciBN VEFzLgorCislJVBPU1RGSVhfTUJDJSUKKyUlUE9TVEZJWF9NQkMlJSBRdWljayBQb3N0Zml4IHNl dHVwIGd1aWRlOgorJSVQT1NURklYX01CQyUlIEFkZCByb290LCBwb3N0Zml4IGFuZCBjZ2l1c2Vy IHRvICUlUFJFRklYJSUvZXRjL2RzcGFtL3RydXN0ZWQudXNlcnMKKyUlUE9TVEZJWF9NQkMlJSAo RG8gTk9UIGFkZCAtLXVzZXIgJFVTRVIgdG8gdGhlIGNhbGwgb2YgZHNwYW0gYmluYXJ5KQorJSVQ T1NURklYX01CQyUlIEluIG1haW4uY2Ygc2V0IAorJSVQT1NURklYX01CQyUlICBtYWlsYm94X2Nv bW1hbmQgPSAlJVBSRUZJWCUlL2Jpbi9kc3BhbSAtLW1vZGU9dGVmdCAtLWRlbGl2ZXI9aW5ub2Nl bnQsc3BhbSAtLWZlYXR1cmU9Y2hhaW5lZCxub2lzZSAtZCAldQorJSVQT1NURklYX01CQyUlIEFu ZCBkb24ndCBmb3JnZXQgdG8gc2V0CislJVBPU1RGSVhfTUJDJSUgJSVQUkVGSVglJS9ldGMvZHNw YW0vdW50cnVzdGVkLm1haWxlcl9hcmdzCislJVBPU1RGSVhfTUJDJSUgKGZvciBtYWlsLmxvY2Fs IGl0IGNvdWxkIGJlIC91c3IvbGliZXhlYy9tYWlsLmxvY2FsIC1zICV1KQorJSVQT1NURklYX01C QyUlCiAKICBOb3RlIHRoYXQgbWFuIGVudHJpZXMgaGF2ZSBiZWVuIGFkZGVkIGZvciBhbGwgZHNw YW0gYmluYXJpZXMuCiAKICUlTVlTUUwlJQotJSVNWVNRTCUlIFNlZSAlJUVYQU1QTEVTRElSJSUv UkVBRE1FCislJU1ZU1FMJSUgU2VlICUlRVhBTVBMRVNESVIlJS9teXNxbC9SRUFETUUKICUlTVlT UUwlJSBmb3IgaW5zdHJ1Y3Rpb25zIG9uIGhvdyB0byBjb25maWd1cmUgTXlTUUwKICUlTVlTUUwl JSBmb3IgdXNlIHdpdGggRFNQQU0uCiAlJU1ZU1FMJSUKLSUlTVlTUUwlJSAlJUVYQU1QTEVTRElS JSUvbXlzcWwuZGF0YQorJSVNWVNRTCUlICUlRVhBTVBMRVNESVIlJS9teXNxbC9teXNxbC5kYXRh CiAlJU1ZU1FMJSUgY29udGFpbnMgYW4gZXhhbXBsZSBjb25maWd1cmF0aW9uIGZvciB1c2Ugd2l0 aCBNeVNRTC4KICUlTVlTUUwlJSBFZGl0IGFuZCBpbnN0YWxsIGFzCi0lJU1ZU1FMJSUgJSVMT0NB TEJBU0UlJS9ldGMvZHNwYW0vbXlzcWwuZGF0YQorJSVNWVNRTCUlICUlUFJFRklYJSUvZXRjL2Rz cGFtL215c3FsLmRhdGEKICUlTVlTUUwlJSBUbyBtb2RpZnkgYW4gMi54IGRhdGFiYXNlIHVzZSBh bmQgdXNlIGl0IHdpdGggZHNwYW0gMy54IHVzZToKICUlTVlTUUwlJSAlJUVYQU1QTEVTRElSJSUv bXlzcWwvMnhfdG9fM3hfZGIuc3FsCislJU1ZU1FMJSUgVG8gbW9kaWZ5IHRoZSBleGlzdGluZyBk YiBhbmQgdXNlIGl0IHdpdGggYm90aCB2ZXJzaW9ucyB1c2UKICUlTVlTUUwlJQogJSVQR1NRTCUl Ci0lJVBHU1FMJSUgU2VlICUlRVhBTVBMRVNESVIlJS9SRUFETUUKKyUlUEdTUUwlJSBTZWUgJSVF WEFNUExFU0RJUiUlL3Bnc3FsL1JFQURNRQogJSVQR1NRTCUlIGZvciBpbnN0cnVjdGlvbnMgb24g aG93IHRvIGNvbmZpZ3VyZSBQb3N0cmdyZVNRTAogJSVQR1NRTCUlIGZvciB1c2Ugd2l0aCBEU1BB TS4KICUlUEdTUUwlJSBbIFRvIGFkZCBhIG5pY2UgdHV0b3JpYWwgb24gdGhpcyBdCkBAIC0yOCw3 ICs0MCwzOCBAQAogJSVQR1NRTCUlICUlRVhBTVBMRVNESVIlJS9wZ3NxbC5kYXRhCiAlJVBHU1FM JSUgY29udGFpbnMgYW4gZXhhbXBsZSBjb25maWd1cmF0aW9uIGZvciB1c2Ugd2l0aCBQb3N0Z3Jl U1FMLgogJSVQR1NRTCUlIEVkaXQgYW5kIGluc3RhbGwgYXMKLSUlUEdTUUwlJSAlJUxPQ0FMQkFT RSUlL2V0Yy9kc3BhbS9wZ3NxbC5kYXRhCi0lJVBHU1FMJSUKKyUlUEdTUUwlJSAlJVBSRUZJWCUl L2V0Yy9kc3BhbS9wZ3NxbC5kYXRhCislJVBHU1FMJSUgCislJVNRTElURSUlCislJVNRTElURSUl IFNlZSAlJUVYQU1QTEVTRElSJSUvc3FsaXRlL1JFQURNRQorJSVTUUxJVEUlJSBmb3Igc3VnZ2Vz dGlvbiBvbiBTUUxpdGUgYmFjay1lbmQuIEl0IHNob3VsZCB3b3JrIG91dC1vZi10aGUtYm94Lgor JSVTUUxJVEUlJQorJSVTUUxJVEUlJSBZb3UnbGwgYWx3YXlzIHdhbnQgdG8gcnVuIGRzcGFtX2Ns ZWFuIC1wMCBhbmQgCislJVNRTElURSUlIHNxbGl0ZSAvcGF0aC90by91c2VyLnNkYiA8IHZhY3V1 bSBhZnRlciBhIGNvcnB1c2ZlZWQuCislJVNRTElURSUlIHdoZXJlIC9wYXRoL3RvL3VzZXIuc2Ri IHdvdWxkIGJ5IG9uIGEgZGVmYXVsdCBpbnN0YWxsOiAKKyUlU1FMSVRFJSUgJSVMT0NBTEJBU0Ul JS9ldGMvZHNwYW0vZGF0YS91c2VyL3VzZXIuc2RiCislJVNRTElURSUlIFRoZXJlIGFyZSAgbW9z dCBsaWtlbHkgNzAlKyBqdW5rIHRva2VucyB0aGF0IG5lZWQgdG8gYmUgcmVtb3ZlZC4KKyUlU1FM SVRFJSUgVGhpcyB3aWxsIGhhdmUgYSBIVUdFIGltcGFjdCBvbiB0aGUgZGlzayBzcGFjZSB5b3Vy IGRiIHVzZXMuCislJVNRTElURSUlCisKKyBMYXN0IGNoYW5nZXMgaW4gZHNwYW0gc291cmNlcyAo ZnJvbSAzLjAuMCByZWxlYXNlKToKKyAtZml4ZWQgYSBxdWFyYW50aW5lIGxvY2tpbmcgYnVnIHdo ZXJlIGZjbnRsIGxvY2tpbmcgd2FzIG5vdCB3YWl0aW5nIGZvciBhIAorIGxvY2ssIGJ1dCByZXR1 cm5pbmcgYSBmYWlsdXJlIGltbWVkaWF0ZWx5IGlmIGFscmVhZHkgbG9ja2VkCisgLSBhZGRlZCBh IGxpc3Qgb2YgYXJndW1lbnRzIERTUEFNIHdhcyBjb25maWd1cmVkIHdpdGggdG8gLS12ZXJzaW9u IG91dHB1dAorIC0gYXBwbGllZCBDR0kgZmFjZWxpZnQgc3VibWl0dGVkIGJ5IENyYWlnIEhvY2tl bmJlcnJ5IDxjcmFpZ0BpY29uZmFjdG9yeS5jb20+CisgLSBmaXhlZCBhIGJ1ZyB0aGF0IGNhdXNl ZCBlbmNvZGVkLCBtdWx0aWxpbmUgaGVhZGVycyB0byBsb3NlIGFueSBsaW5lcyBvZiB0ZXh0Cisg YWZ0ZXIgdGhlIGZpcnN0LgorIC0gbWFkZSBzcWxpdGVfZHJ2IHRoZSBkZWZhdWx0IHN0b3JhZ2Ug ZHJpdmVyICh0aGlzIHBvcnQgc3RpbGwgaGFkIGJkYiBhcyAKKyBkZWZhdWx0KQorIC0gYWRkZWQg U1FMaXRlIHN0b3JhZ2UgZHJpdmVyLgorIC0gZml4ZWQgY29uZmlndXJlIGhlbHAgdGV4dCBmb3Ig LS1lbmFibGUtd2VibWFpbCwgd2hpY2ggd2FzIG1hbmdsZWQKKyAtIGZpeGVkIGEgdHlwZS1vIGlu IGFkbWluLmNnaSB3aGVyZSAkQ09ORklHeydMQVJHRV9TQ0xBRSd9ID0gMDsKKworICoqKioqKioq KioqKioqKioqKioqKioqKioqKioqIFdBUk5JTkc6ICoqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKgorIENvbW1hbmQtbGluZSBvcHRpb25zIChhbmQgTXlTUUwgZGF0YWJhc2Ug c3RydWN0dXJlKSBoYXMgY2hhbmdlZC4KKyBJZiB5b3UgYXJlIHVwZ3JhZGluZyBmcm9tIDIueCBi ZSBzdXJlIHRvIGNoYW5nZSB0aGUgd2F5IHlvdSBhcmUgY2FsbGluZworIGRzcGFtIGJpbmFyeSAo Zm9yIGRlbGl2ZXJ5LCBzdWJtaXR0aW5nIGZwLCBldGMuKSwgb3RoZXJ3aXNlIG1haWwKKyB3aWxs IGdvIHRvIHRoZSBiaXQtYnVja2V0IHdpdGggTk8gV0FSTklORy4KKyAqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKgogCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLQorLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCmRpZmYgLXVyTiBkc3Bh bS1kZXZlbC9wa2ctcGxpc3QgZHNwYW0tZGV2ZWwuZGV2ZWwvcGtnLXBsaXN0Ci0tLSBkc3BhbS1k ZXZlbC9wa2ctcGxpc3QJVHVlIEp1bCAgNiAxNzo0MzoyOCAyMDA0CisrKyBkc3BhbS1kZXZlbC5k ZXZlbC9wa2ctcGxpc3QJU2F0IEp1biAyNiAwNTo0NjozMyAyMDA0CkBAIC0yNCw4ICsyNCw4IEBA CiAlJVBPUlRET0NTJSUlJURPQ1NESVIlJS9SRUFETUUKICUlUE9SVERPQ1MlJSUlRE9DU0RJUiUl L1JFTEVBU0UuTk9URVMKICUlUE9SVERPQ1MlJUBkaXJybSAlJURPQ1NESVIlJQotJSVNWVNRTCUl JSVFWEFNUExFU0RJUiUlL215c3FsL1JFQURNRQogJSVNWVNRTCUlJSVFWEFNUExFU0RJUiUlL215 c3FsLzJ4X3RvXzN4X2RiLnNxbAorJSVNWVNRTCUlJSVFWEFNUExFU0RJUiUlL215c3FsL1JFQURN RQogJSVNWVNRTCUlJSVFWEFNUExFU0RJUiUlL215c3FsL215c3FsLmRhdGEKICUlTVlTUUwlJSUl RVhBTVBMRVNESVIlJS9teXNxbC9teXNxbF9vYmplY3RzLnNxbC5zcGFjZS5vcHRpbWl6ZWQKICUl TVlTUUwlJSUlRVhBTVBMRVNESVIlJS9teXNxbC9teXNxbF9vYmplY3RzLnNxbC5zcGVlZC5vcHRp bWl6ZWQKQEAgLTQwLDUgKzQwLDEwIEBACiAlJVBHU1FMJSUlJUVYQU1QTEVTRElSJSUvcGdzcWwv dmlydHVhbF91c2Vycy5zcWwKICUlUEdTUUwlJUBkaXJybSAlJUVYQU1QTEVTRElSJSUvcGdzcWwK ICUlUEdTUUwlJUBkaXJybSAlJUVYQU1QTEVTRElSJSUKKyUlU1FMSVRFJSUlJUVYQU1QTEVTRElS JSUvc3FsaXRlL1JFQURNRQorJSVTUUxJVEUlJSUlRVhBTVBMRVNESVIlJS9zcWxpdGUvcHVyZ2Uu c3FsCislJVNRTElURSUlQGRpcnJtICUlRVhBTVBMRVNESVIlJS9zcWxpdGUKKyUlU1FMSVRFJSVA ZGlycm0gJSVFWEFNUExFU0RJUiUlCiBAZGlycm0gaW5jbHVkZS9kc3BhbQogQGRpcnJtIGV0Yy9k c3BhbQorQGRpcnJtIGxpYmRhdGEvcGtnY29uZmlnCg== --Multipart=_Wed__21_Jul_2004_01_15_16_+0300_4X1gt1hMN0Ytt86r-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 01:08: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 DE55116A4CE; Wed, 21 Jul 2004 01:08:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDAEA43D1F; Wed, 21 Jul 2004 01:08:25 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6L18PqU047375; Wed, 21 Jul 2004 01:08:25 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L18PUI047371; Wed, 21 Jul 2004 01:08:25 GMT (envelope-from ijliao) Date: Wed, 21 Jul 2004 01:08:25 GMT From: Ying-Chieh Liao Message-Id: <200407210108.i6L18PUI047371@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69332: [MAINTAINER] x11-toolkits/Gtk2: update to 1.043 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 01:08:26 -0000 Synopsis: [MAINTAINER] x11-toolkits/Gtk2: update to 1.043 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Wed Jul 21 01:08:18 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69332 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 01:45: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 4BC7316A4CE; Wed, 21 Jul 2004 01:45:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DA7043D46; Wed, 21 Jul 2004 01:45:25 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6L1jPZf049784; Wed, 21 Jul 2004 01:45:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L1jPRo049780; Wed, 21 Jul 2004 01:45:25 GMT (envelope-from linimon) Date: Wed, 21 Jul 2004 01:45:25 GMT From: Mark Linimon Message-Id: <200407210145.i6L1jPRo049780@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jedgar@FreeBSD.org Subject: Re: ports/69350: pure-pw dumps core (segfault) on 4.10-Release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 01:45:25 -0000 Synopsis: pure-pw dumps core (segfault) on 4.10-Release Responsible-Changed-From-To: freebsd-ports-bugs->jedgar Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 21 01:44:55 GMT 2004 Responsible-Changed-Why: Over to maintainer of ftp/lukemftp. (At least, I *think* this is the port that the PR applies to.) http://www.freebsd.org/cgi/query-pr.cgi?pr=69350 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 01:51: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 7EE5716A4CE; Wed, 21 Jul 2004 01:51:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61CFA43D58; Wed, 21 Jul 2004 01:51:26 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6L1pQMX050066; Wed, 21 Jul 2004 01:51:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L1pQKK050062; Wed, 21 Jul 2004 01:51:26 GMT (envelope-from linimon) Date: Wed, 21 Jul 2004 01:51:26 GMT From: Mark Linimon Message-Id: <200407210151.i6L1pQKK050062@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gj@FreeBSD.org Subject: Re: ports/69347: xemacs spews many "past acceptable memory limits" warning messages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 01:51:26 -0000 Synopsis: xemacs spews many "past acceptable memory limits" warning messages Responsible-Changed-From-To: freebsd-ports-bugs->gj Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 21 01:51:18 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69347 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 01:52: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 830F416A4CE; Wed, 21 Jul 2004 01:52:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65B5643D58; Wed, 21 Jul 2004 01:52:14 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6L1qEfM050116; Wed, 21 Jul 2004 01:52:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L1qERp050112; Wed, 21 Jul 2004 01:52:14 GMT (envelope-from linimon) Date: Wed, 21 Jul 2004 01:52:14 GMT From: Mark Linimon Message-Id: <200407210152.i6L1qERp050112@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pb@FreeBSD.org Subject: Re: ports/69357: [PATCH] multimedia/dvdauthor: [Fix fatal typo] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 01:52:14 -0000 Synopsis: [PATCH] multimedia/dvdauthor: [Fix fatal typo] Responsible-Changed-From-To: freebsd-ports-bugs->pb Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 21 01:51:43 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69357 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 02: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 4C69D16A4CE for ; Wed, 21 Jul 2004 02:40:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 316C243D54 for ; Wed, 21 Jul 2004 02:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L2eJ0w056483 for ; Wed, 21 Jul 2004 02:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L2eJ43056479; Wed, 21 Jul 2004 02:40:19 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 02:40:19 GMT Resent-Message-Id: <200407210240.i6L2eJ43056479@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, UMENO Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63B5B16A4CE for ; Wed, 21 Jul 2004 02:34:37 +0000 (GMT) Received: from belldandy.unnumbered.net (gateway.unnumbered.net [61.197.240.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE10D43D41 for ; Wed, 21 Jul 2004 02:34:36 +0000 (GMT) (envelope-from umeno@belldandy.unnumbered.net) Received: from belldandy.unnumbered.net (localhost.unnumbered.net [127.0.0.1]) i6L2YYro080998 for ; Wed, 21 Jul 2004 11:34:34 +0900 (JST) (envelope-from umeno@belldandy.unnumbered.net) Received: (from umeno@localhost)i6L2YY17080997; Wed, 21 Jul 2004 11:34:34 +0900 (JST) (envelope-from umeno) Message-Id: <200407210234.i6L2YY17080997@belldandy.unnumbered.net> Date: Wed, 21 Jul 2004 11:34:34 +0900 (JST) From: UMENO Takashi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69363: Maintainer Update: graphics/zphoto to 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: UMENO Takashi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 02:40:19 -0000 >Number: 69363 >Category: ports >Synopsis: Maintainer Update: graphics/zphoto to 1.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: Wed Jul 21 02:40:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 4.10-STABLE i386 >Organization: individual >Environment: System: FreeBSD belldandy.unnumbered.net 4.10-STABLE FreeBSD 4.10-STABLE #0: Tue Jul 13 05:35:24 JST 2004 umeno@belldandy.unnumbered.net:/usr/src/sys/compile/SAKUYA22 i386 >Description: Maintainer Update: graphics/zphoto to 1.2 This send-pr will supersed ports/69232. (update to 1.1) >How-To-Repeat: N/A >Fix: diff -urN zphoto.orig/Makefile zphoto/Makefile --- zphoto.orig/Makefile Tue May 11 07:42:34 2004 +++ zphoto/Makefile Wed Jul 21 09:17:16 2004 @@ -6,7 +6,7 @@ # PORTNAME= zphoto -PORTVERSION= 1.0 +PORTVERSION= 1.2 CATEGORIES= graphics www MASTER_SITES= http://namazu.org/~satoru/zphoto/ MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,33 +16,42 @@ LIB_DEPENDS= ming.3:${PORTSDIR}/graphics/ming \ Imlib2.2:${PORTSDIR}/graphics/imlib2 \ - popt.0:${PORTSDIR}/devel/popt \ - aviplay.0:${PORTSDIR}/multimedia/avifile + popt.0:${PORTSDIR}/devel/popt +.if !defined (WITHOUT_AVIPLAY) +LIB_DEPENDS+= aviplay.0:${PORTSDIR}/multimedia/avifile +.endif .if defined (WITH_WXGTK) LIB_DEPENDS+= wx_gtk-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk .elif defined (WITH_WXGTK2) LIB_DEPENDS+= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 .endif +.if !defined (WITHOUT_ZIP) RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip +.endif USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ CPPFLAGS="-I${LOCALBASE}/include \ ${PTHREAD_CFLAGS}" -.if defined (WITH_WXGTK) || (WITH_WXGTK2) +.if defined (WITH_WXGTK) +CONFIGURE_ARGS+= --with-wx-config=wxgtk-2.4-config PLIST+= ${PKGDIR}/pkg-plist.wxzphoto +.elif defined (WITH_WXGTK2) +CONFIGURE_ARGS+= --with-wx-config=wxgtk2-2.4-config .else -CONFIGURE_ARGS= --disable-wx +CONFIGURE_ARGS+= --disable-wx +.endif +.if defined (WITHOUT_AVIPLAY) +CONFIGURE_ARGS+= --disable-avifile +.endif +.if defined (WITHOUT_ZIP) +CONFIGURE_ARGS+= --disable-zip .endif USE_GMAKE= yes USE_XLIB= yes post-patch: @${REINPLACE_CMD} -e 's|||g' ${WRKSRC}/*.c ${WRKSRC}/configure -.if defined (WITH_WXGTK) - @${REINPLACE_CMD} -e 's|wxgtk2-config||g' -e 's|wxgtk2-2.5-config||g' -e 's|wxgtk2-2.4-config||g' ${WRKSRC}/configure -.elif defined (WITH_WXGTK2) - @${REINPLACE_CMD} -e 's|wx-config||g' -e 's|wxgtk-config||g' ${WRKSRC}/configure -.endif + .include diff -urN zphoto.orig/distinfo zphoto/distinfo --- zphoto.orig/distinfo Tue May 11 07:42:34 2004 +++ zphoto/distinfo Wed Jul 21 09:17:27 2004 @@ -1,2 +1,2 @@ -MD5 (zphoto-1.0.tar.gz) = 7cba659b913468124b664bcde52efece -SIZE (zphoto-1.0.tar.gz) = 419086 +MD5 (zphoto-1.2.tar.gz) = 636a9cffec9131043e29c1f5812a6c3c +SIZE (zphoto-1.2.tar.gz) = 414079 diff -urN zphoto.orig/pkg-plist zphoto/pkg-plist --- zphoto.orig/pkg-plist Tue May 11 07:42:34 2004 +++ zphoto/pkg-plist Sun Jul 18 00:15:21 2004 @@ -5,12 +5,14 @@ share/zphoto/templates/default/en/zphoto.css share/zphoto/templates/default/en/flash-colors.txt share/zphoto/templates/default/en/css-colors.txt +share/zphoto/templates/default/en/zoom.js share/zphoto/templates/default/ja/.photo.html share/zphoto/templates/default/ja/index.html share/zphoto/templates/default/ja/noflash.html share/zphoto/templates/default/ja/zphoto.css share/zphoto/templates/default/ja/flash-colors.txt share/zphoto/templates/default/ja/css-colors.txt +share/zphoto/templates/default/ja/zoom.js share/zphoto/templates/default/all/.photo.html share/zphoto/templates/default/all/zphoto.css share/zphoto/templates/default/all/index.html.en @@ -19,8 +21,14 @@ share/zphoto/templates/default/all/noflash.html.ja share/zphoto/templates/default/all/flash-colors.txt share/zphoto/templates/default/all/css-colors.txt +share/zphoto/templates/default/all/zoom.js.en +share/zphoto/templates/default/all/zoom.js.ja share/zphoto/doc/zphoto-ja.html share/zphoto/doc/zphoto.html +share/zphoto/doc/images/wxzphoto-linux-mini.png +share/zphoto/doc/images/wxzphoto-linux.png +share/zphoto/doc/images/wxzphoto-mini.png +share/zphoto/doc/images/wxzphoto.png share/zphoto/fonts/EfontSerifB.fdb share/locale/ja/LC_MESSAGES/zphoto.mo share/locale/ja_JP.SJIS/LC_MESSAGES/zphoto.mo @@ -30,5 +38,6 @@ @dirrm share/zphoto/templates/default @dirrm share/zphoto/templates @dirrm share/zphoto/fonts +@dirrm share/zphoto/doc/images @dirrm share/zphoto/doc @dirrm share/zphoto >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 03: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 90F4816A4CF for ; Wed, 21 Jul 2004 03:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8503943D39 for ; Wed, 21 Jul 2004 03:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L3APvm061180 for ; Wed, 21 Jul 2004 03:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L3APHm061179; Wed, 21 Jul 2004 03:10:25 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 03:10:25 GMT Resent-Message-Id: <200407210310.i6L3APHm061179@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mit Rowe Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF03216A4CE for ; Wed, 21 Jul 2004 03:08:56 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0B5C43D46 for ; Wed, 21 Jul 2004 03:08:56 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6L38uwv010003 for ; Wed, 21 Jul 2004 03:08:56 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6L38uNl010002; Wed, 21 Jul 2004 03:08:56 GMT (envelope-from nobody) Message-Id: <200407210308.i6L38uNl010002@www.freebsd.org> Date: Wed, 21 Jul 2004 03:08:56 GMT From: Mit Rowe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69364: horde2 broken under php5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 03:10:25 -0000 >Number: 69364 >Category: ports >Synopsis: horde2 broken under php5 >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: Wed Jul 21 03:10:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mit Rowe >Release: 4.10-STABLE >Organization: >Environment: FreeBSD hal.ringranger.com 4.10-STABLE FreeBSD 4.10-STABLE #0: Thu Jul 8 21:09:51 EDT 2004 root@hal.ringranger.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: horde2 looks for domxml which is not applicable under php5 >How-To-Repeat: install php5 and try to build the horde2 port >Fix: maybe it's dom that should be there, conditionally if php_version >= 5.0.0 ? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 03: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 4D92816A4CE for ; Wed, 21 Jul 2004 03:50:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3122243D53 for ; Wed, 21 Jul 2004 03:50:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L3oAW5063306 for ; Wed, 21 Jul 2004 03:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L3oAEJ063305; Wed, 21 Jul 2004 03:50:10 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 03:50:10 GMT Resent-Message-Id: <200407210350.i6L3oAEJ063305@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rusty Nejdl Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E27316A4CE for ; Wed, 21 Jul 2004 03:40:41 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id F397D43D2F for ; Wed, 21 Jul 2004 03:40:40 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6L3eeDr083317 for ; Wed, 21 Jul 2004 03:40:40 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6L3eeIj083316; Wed, 21 Jul 2004 03:40:40 GMT (envelope-from nobody) Message-Id: <200407210340.i6L3eeIj083316@www.freebsd.org> Date: Wed, 21 Jul 2004 03:40:40 GMT From: Rusty Nejdl To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69365: libxine crashes on some wmv files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 03:50:10 -0000 >Number: 69365 >Category: ports >Synopsis: libxine crashes on some wmv files >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 Jul 21 03:50:09 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Rusty Nejdl >Release: FreeBSD-5.2.1 >Organization: >Environment: [tethys]:[10:34pm]:[/usr/ports/multimedia/libxine] > uname -a FreeBSD tethys.ringofsaturn.com 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #6: Tue Jul 20 20:25:16 CDT 2004 root@tethys.ringofsaturn.com:/usr/src/sys/i386/compile/SATURN i386 [tethys]:[10:34pm]:[/usr/ports/multimedia/libxine] > >Description: I have a file called goldkart.wmv. It is one of many wmv files that I have that I cannot use xine or kaffeine to play. I worked with the xine development group and we found that FreeBSD was corrupting the registers for some reason. With that in mind, I somehow got it work by messing around with libmap.conf and libkse. Well, that broke a bunch of other things, so I have gone back to an empty libmap.conf and recompiled everything back to normal. You can see my thread and troubleshooting with the xine developers here: http://sourceforge.net/mailarchive/forum.php?thread_id=5141311&forum_id=7131 >How-To-Repeat: From most recent ports collection, installed KDE3, and kaffeine, then try to play this wmv file: http://www.ringofsaturn.com/goldkart.wmv You will get this lovely crash: [tethys]:[10:37pm]:[/home/rnejdl/Media] > kaffeine: Playing: /usr/home/rnejdl/Media/goldkart.wmv Set_LDT External func OLEAUT32.dll:8 DMO dll supports VO Optimizations 0 1 DMO dll might use previous sample when requested kaffeine: xine event: channels changed GetOutput r=0x0 size:230400 align:1 StreamCount r=0x0 1 1 Decoder supports the following YUV formats: YV12 YUY2 UYVY YVYU ▒ Decoder is capable of YUV output (flags 0x1b) ldt_keeper: FS segment is not set or has being lost! Please report this error to xine-devel@lists.sourceforge.net Aborting.... KCrash: Application 'kaffeine' crashing... >Fix: Somehow, I was able to get it working by doing this: I edited /etc/libmap.conf and added the following 2 lines: libc_r.so.5 libkse.so.1 # Everything uses "libkse" libc_r.so libkse.so Then, I uninstalled and recompiled libxine. When it was recompiled, it used the new libkse threading system as opposed to the old one. But, that broke a bunch of other stuff. So, if you can please help me get a patch to handle this properly, that would be a better solution that this. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 06:52: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 CB4B016A4CE for ; Wed, 21 Jul 2004 06:52:20 +0000 (GMT) Received: from smtp2.arnet.com.ar (smtp2.arnet.com.ar [200.45.191.5]) by mx1.FreeBSD.org (Postfix) with SMTP id E883843D45 for ; Wed, 21 Jul 2004 06:52:18 +0000 (GMT) (envelope-from brunstein@arnet.com.ar) Received: (qmail 24393 invoked from network); 21 Jul 2004 06:52:14 -0000 Received: from unknown (HELO mauroxpn) (200.45.96.210) by smtp2.arnet.com.ar with SMTP; 21 Jul 2004 06:52:11 -0000 From: "Mauricio Brunstein" To: Date: Wed, 21 Jul 2004 03:51:59 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Thread-Index: AcRu7zhSIePMmxM9SxSc5xpHIZFGug== Message-Id: <20040721065218.E883843D45@mx1.FreeBSD.org> Subject: Error running portsdb -Uu after cvsup ports-all X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 06:52:20 -0000 Hi! I'm running FreeBSD 4.9, fileserver:~ $ uname -a FreeBSD fileserver.lan 4.9-RELEASE FreeBSD 4.9-RELEASE #0: Mon Oct 27 17:51:09 GMT 2003 root@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/GENERIC i386 and after removing the complete ports tree, fileserver:/usr/ports $ sudo rm -rf * fileserver:/usr/ports $ and doing a cvsup of the ports tree using the standard supplied supfile (I only modified the server name) to retrieve the complete ports tree again, get the following output: fileserver:/usr/ports $ sudo portsdb -Uu Updating the ports index ... grip-3.2.0_4:"" non-existent -- dependency list incomplete grip-3.2.0_4:"/usr/ports/devel/lgspeakers-0.11" non-existent -- dependency list incomplete ibbonobo gconf-2.5:/usr/ports/devel/gconf2 gnomevfs-2.600:/usr/ports/devel/gnomevfs2 gnomecanvas-2.600:/usr/ports/graphics/libgnomecanvas art_lgpl_2.5:/usr/ports/graphics/libart_lgpl2 gnome-2.600:/usr/ports/x11/libgnome bonoboui-2.0:/usr/ports/x11-toolkits/libbonoboui gnomeui-2.600:/usr/ports/x11-toolkits/libgnomeui vte.8:/usr/ports/x11-toolkits/vte: malformed entry: ibbonobo gconf-2.5:/usr/ports/devel/gconf2 gnomevfs-2.600:/usr/ports/devel/gnomevfs2 gnomecanvas-2.600:/usr/ports/graphics/libgnomecanvas art_lgpl_2.5:/usr/ports/graphics/libart_lgpl2 gnome-2.600:/usr/ports/x11/libgnome bonoboui-2.0:/usr/ports/x11-toolkits/libbonoboui gnomeui-2.600:/usr/ports/x11-toolkits/libgnomeui vte.8:/usr/ports/x11-toolkits/vte|lame:/usr/ports/audio/lame /usr/X11R6/share/gnome/.keep_me:/usr/ports/misc/gnomehier /usr/X11R6/libdata/pkgconfig/gnome-mime-data-2.0.pc:/usr/ports/misc/gnomemim edata pkg-config:/usr/ports/devel/pkgconfig | p5-Unicode-MapUTF8-1.09:"/usr/porp5-Unicode-String-2.07_1" non-existent -- dependency list incomplete ts/japanese/p5-Jcode: malformed entry: ts/japanese/p5-Jcode| multisync-0.82:"" non-existent -- dependency list incomplete multisync-0.82:"/usr/portmultisync-backup-0.82" non-existent -- dependency list incomplete s/devel/gconf2 gnomevfs-2.600:/usr/ports/devel/gnomevfs2 gnomecanvas-2.600:/usr/ports/graphics/libgnomecanvas art_lgpl_2.5:/usr/ports/graphics/libart_lgpl2 gnome-2.600:/usr/ports/x11/libgnome bonoboui-2.0:/usr/ports/x11-toolkits/libbonoboui gnomeui-2.600:/usr/ports/x11-toolkits/libgnomeui: malformed entry: s/devel/gconf2 gnomevfs-2.600:/usr/ports/devel/gnomevfs2 gnomecanvas-2.600:/usr/ports/graphics/libgnomecanvas art_lgpl_2.5:/usr/ports/graphics/libart_lgpl2 gnome-2.600:/usr/ports/x11/libgnome bonoboui-2.0:/usr/ports/x11-toolkits/libbonoboui gnomeui-2.600:/usr/ports/x11-toolkits/libgnomeui| /usr/X11R6/share/gnome/.keep_me:/usr/ports/misc/gnomehier /usr/X11R6/libdata/pkgconfig/gnome-mime-data-2.0.pc:/usr/ports/misc/gnomemim edata pkg-config:/usr/ports/devel/pkgconfig | p5-DateTime-Format-Builder-0.78.04:"" non-existent -- dependency list incomplete _perl/5.005/File/Spec.pm:/usr/ports/devel/p5-File-Spec: malformed entry: _perl/5.005/File/Spec.pm:/usr/ports/devel/p5-File-Spec| p5-Devel-Cover-0.47:"/usr/ports/devel/p5-Stp5-Devel-Cycle-1.02" non-existent -- dependency list incomplete orable /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/Digest/MD5.pm:/usr/ports/s ecurity/p5-Digest-MD5: malformed entry: orable /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/Digest/MD5.pm:/usr/ports/s ecurity/p5-Digest-MD5| p5-Parse-CPAN-Packages-2.21:"" non-existent -- dependency list incomplete b/perl5/site_perl/5.005/Module/Build.pm:/usr/ports/devel/p5-Module-Build: malformed entry: b/perl5/site_perl/5.005/Module/Build.pm:/usr/ports/devel/p5-Module-Build| mlview-0.6.2:"" non-existent -- dependency list incomplete mlview-0.6.2:"nedit-5.4" non-existent -- dependency list incomplete /usr/ports/devel/gnomevfs2 gailutil.17:/usr/ports/accessibility/gail gnomecanvas-2.600:/usr/ports/graphics/libgnomecanvas art_lgpl_2.5:/usr/ports/graphics/libart_lgpl2 gnome-2.600:/usr/ports/x11/libgnome bonoboui-2.0:/usr/ports/x11-toolkits/libbonoboui gnomeui-2.600:/usr/ports/x11-toolkits/libgnomeui eel-2.8:/usr/ports/x11-toolkits/eel2: malformed entry: /usr/ports/devel/gnomevfs2 gailutil.17:/usr/ports/accessibility/gail gnomecanvas-2.600:/usr/ports/graphics/libgnomecanvas art_lgpl_2.5:/usr/ports/graphics/libart_lgpl2 gnome-2.600:/usr/ports/x11/libgnome bonoboui-2.0:/usr/ports/x11-toolkits/libbonoboui gnomeui-2.600:/usr/ports/x11-toolkits/libgnomeui eel-2.8:/usr/ports/x11-toolkits/eel2| /usr/X11R6/share/gnome/.keep_me:/usr/ports/misc/gnomehier /usr/X11R6/libdata/pkgconfig/gnome-mime-data-2.0.pc:/usr/ports/misc/gnomemim edata pkg-config:/usr/ports/devel/pkgconfig | vmware3-3.2.1.2242_8,1:"" non-existent -- dependency list incomplete inkscape-0.38.1_1:"" non-existent -- dependency list incomplete inkscape-0.38.1_1:"" non-existent -- dependency list incomplete ..... Here comes about 1.4 Mb of the same things... ...... /usr/ports/INDEX:11363:Port info line must consist of 10 fields. /usr/ports/INDEX:11364:Port info line must consist of 10 fields. /usr/ports/INDEX:11365:Port info line must consist of 10 fields. /usr/ports/INDEX:11366:Port info line must consist of 10 fields. /usr/ports/INDEX:11367:Port info line must consist of 10 fields. /usr/ports/INDEX:11368:Port info line must consist of 10 fields. /usr/ports/INDEX:11369:Port info line must consist of 10 fields. /usr/ports/INDEX:11370:Port info line must consist of 10 fields. /usr/ports/INDEX:11371:Port info line must consist of 10 fields. /usr/ports/INDEX:11372:Port info line must consist of 10 fields. /usr/ports/INDEX:11373:Port info line must consist of 10 fields. /usr/ports/INDEX:11374:Port info line must consist of 10 fields. /usr/ports/INDEX:11375:Port info line must consist of 10 fields. /usr/ports/INDEX:11376:Port info line must consist of 10 fields. /usr/ports/INDEX:11377:Port info line must consist of 10 fields. /usr/ports/INDEX:11378:Port info line must consist of 10 fields. /usr/ports/INDEX:11379:Port info line must consist of 10 fields. /usr/ports/INDEX:11380:Port info line must consist of 10 fields. /usr/ports/INDEX:11381:Port info line must consist of 10 fields. /usr/ports/INDEX:11382:Port info line must consist of 10 fields. /usr/ports/INDEX:11383:Port info line must consist of 10 fields. /usr/ports/INDEX:11384:Port info line must consist of 10 fields. /usr/ports/INDEX:11385:Port info line must consist of 10 fields. /usr/ports/INDEX:11386:Port info line must consist of 10 fields. /usr/ports/INDEX:11387:Port info line must consist of 10 fields. /usr/ports/INDEX:11388:Port info line must consist of 10 fields. /usr/ports/INDEX:11389:Port info line must consist of 10 fields. /usr/ports/INDEX:11390:Port info line must consist of 10 fields. /usr/ports/INDEX:11391:Port info line must consist of 10 fields. /usr/ports/INDEX:11392:Port info line must consist of 10 fields. /usr/ports/INDEX:11393:Port info line must consist of 10 fields. ..... done] I would appreciate if someone can give me a clue! Thanks! PD: If the complete stderr log is needed, I can submit it. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 06:56: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 ED83216A4CE; Wed, 21 Jul 2004 06:56:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF87A43D5E; Wed, 21 Jul 2004 06:56:19 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6L6uJK2087716; Wed, 21 Jul 2004 06:56:19 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L6uJqG087712; Wed, 21 Jul 2004 06:56:19 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 06:56:19 GMT From: Volker Stolz Message-Id: <200407210656.i6L6uJqG087712@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/65681: [NEW PORT] www/formication: Formular processing tool written in perl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 06:56:20 -0000 Synopsis: [NEW PORT] www/formication: Formular processing tool written in perl Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Wed Jul 21 06:56:07 GMT 2004 Responsible-Changed-Why: Handle http://www.freebsd.org/cgi/query-pr.cgi?pr=65681 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 07:04: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 C6EDD16A4CE for ; Wed, 21 Jul 2004 07:04:19 +0000 (GMT) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CA8943D3F for ; Wed, 21 Jul 2004 07:04:19 +0000 (GMT) (envelope-from kstewart@owt.com) Received: from [207.41.94.233] (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id i6L734H5005239; Wed, 21 Jul 2004 00:03:05 -0700 From: Kent Stewart To: freebsd-ports-bugs@freebsd.org Date: Wed, 21 Jul 2004 00:04:05 -0700 User-Agent: KMail/1.6.2 References: <20040721065218.E883843D45@mx1.FreeBSD.org> In-Reply-To: <20040721065218.E883843D45@mx1.FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407210004.06018.kstewart@owt.com> cc: Mauricio Brunstein Subject: Re: Error running portsdb -Uu after cvsup ports-all X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 07:04:19 -0000 On Tuesday 20 July 2004 11:51 pm, Mauricio Brunstein wrote: > Hi! > > I'm running FreeBSD 4.9, > > fileserver:~ $ uname -a > FreeBSD fileserver.lan 4.9-RELEASE FreeBSD 4.9-RELEASE #0: Mon Oct 27 > 17:51:09 GMT 2003 > root@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/GENERIC i386 > > > and after removing the complete ports tree, > > fileserver:/usr/ports $ sudo rm -rf * > fileserver:/usr/ports $ > > and doing a cvsup of the ports tree using the standard supplied > supfile (I only modified the server name) to retrieve the complete > ports tree again, get the following output: > > fileserver:/usr/ports $ sudo portsdb -Uu > > Updating the ports index ... grip-3.2.0_4:"" non-existent -- > dependency list incomplete > grip-3.2.0_4:"/usr/ports/devel/lgspeakers-0.11" non-existent -- > dependency list incomplete You are following the wrong list. Kris' script has been saying it was broken on ports@ for about 1.5 days. Since almost everyone knows it is broken, there isn't any point of complaining about it unless you have a fix :). Use sysutils/portindex. It is still producing a portdb -u with 11406 port entries. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 07:11:32 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 0811416A4CE for ; Wed, 21 Jul 2004 07:11:32 +0000 (GMT) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87AE443D66 for ; Wed, 21 Jul 2004 07:11:31 +0000 (GMT) (envelope-from kstewart@owt.com) Received: from [207.41.94.233] (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id i6L7AOH5005429; Wed, 21 Jul 2004 00:10:24 -0700 From: Kent Stewart To: freebsd-ports-bugs@freebsd.org Date: Wed, 21 Jul 2004 00:11:26 -0700 User-Agent: KMail/1.6.2 References: <20040721065218.E883843D45@mx1.FreeBSD.org> <200407210004.06018.kstewart@owt.com> In-Reply-To: <200407210004.06018.kstewart@owt.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407210011.26184.kstewart@owt.com> cc: Mauricio Brunstein Subject: Re: Error running portsdb -Uu after cvsup ports-all X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 07:11:32 -0000 In your defense, the breakage appears to be so bad that Kris' script is not dinging the people responsible for breaking the make index. Kent On Wednesday 21 July 2004 12:04 am, Kent Stewart wrote: > On Tuesday 20 July 2004 11:51 pm, Mauricio Brunstein wrote: > > Hi! > > > > I'm running FreeBSD 4.9, > > > > fileserver:~ $ uname -a > > FreeBSD fileserver.lan 4.9-RELEASE FreeBSD 4.9-RELEASE #0: Mon Oct > > 27 17:51:09 GMT 2003 > > root@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/GENERIC i386 > > > > > > and after removing the complete ports tree, > > > > fileserver:/usr/ports $ sudo rm -rf * > > fileserver:/usr/ports $ > > > > and doing a cvsup of the ports tree using the standard supplied > > supfile (I only modified the server name) to retrieve the complete > > ports tree again, get the following output: > > > > fileserver:/usr/ports $ sudo portsdb -Uu > > > > Updating the ports index ... grip-3.2.0_4:"" non-existent -- > > dependency list incomplete > > grip-3.2.0_4:"/usr/ports/devel/lgspeakers-0.11" non-existent -- > > dependency list incomplete > > You are following the wrong list. Kris' script has been saying it was > broken on ports@ for about 1.5 days. Since almost everyone knows it > is broken, there isn't any point of complaining about it unless you > have a fix :). > > Use sysutils/portindex. It is still producing a portdb -u with 11406 > port entries. > > Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 07: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 77AE716A4CE for ; Wed, 21 Jul 2004 07:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B5243D39 for ; Wed, 21 Jul 2004 07:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L7eOgs094190 for ; Wed, 21 Jul 2004 07:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L7eOK3094189; Wed, 21 Jul 2004 07:40:24 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 07:40:24 GMT Resent-Message-Id: <200407210740.i6L7eOK3094189@freefall.freebsd.org> 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 8009E16A4CE for ; Wed, 21 Jul 2004 07:30:29 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FC8643D2D for ; Wed, 21 Jul 2004 07:30:29 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 7B7DA153D9 for ; Wed, 21 Jul 2004 15:31:57 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 37025-04 for ; Wed, 21 Jul 2004 15:31:57 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id E6808152E3; Wed, 21 Jul 2004 15:31:56 +0800 (CST) Message-Id: <20040721073156.E6808152E3@mail.dragon2.net> Date: Wed, 21 Jul 2004 15:31:56 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69366: [PATCH] devel/Spiffy: update to 0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 07:40:24 -0000 >Number: 69366 >Category: ports >Synopsis: [PATCH] devel/Spiffy: update to 0.19 >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 Jul 21 07:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.19 - from Changes version: 0.19 date: Sun Jul 11 01:41:38 PDT 2004 changes: - mixin support - don't export spiffy_constructor by default - Don't export XXX stuff until -XXX used - add support for roles and import lists with mixins - super works with AUTOLOAD Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Spiffy-0.19.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Spiffy/Makefile /home/clsung/p5-Spiffy/Makefile --- /usr/ports/devel/p5-Spiffy/Makefile Sat Jul 17 15:07:56 2004 +++ /home/clsung/p5-Spiffy/Makefile Wed Jul 21 15:30:23 2004 @@ -6,7 +6,7 @@ # PORTNAME= Spiffy -PORTVERSION= 0.18 +PORTVERSION= 0.19 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/I/IN/INGY/ diff -ruN --exclude=CVS /usr/ports/devel/p5-Spiffy/distinfo /home/clsung/p5-Spiffy/distinfo --- /usr/ports/devel/p5-Spiffy/distinfo Fri Jul 16 10:22:10 2004 +++ /home/clsung/p5-Spiffy/distinfo Wed Jul 21 15:30:30 2004 @@ -1,2 +1,2 @@ -MD5 (Spiffy-0.18.tar.gz) = a86178288a9c550e4daeacdf6277d165 -SIZE (Spiffy-0.18.tar.gz) = 20206 +MD5 (Spiffy-0.19.tar.gz) = ee03720a17eb07021eb04e29c299386c +SIZE (Spiffy-0.19.tar.gz) = 23402 --- p5-Spiffy-0.19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 07: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 C102E16A4CE for ; Wed, 21 Jul 2004 07:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A612143D39 for ; Wed, 21 Jul 2004 07:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L7eObg094203 for ; Wed, 21 Jul 2004 07:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L7eOcN094202; Wed, 21 Jul 2004 07:40:24 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 07:40:24 GMT Resent-Message-Id: <200407210740.i6L7eOcN094202@freefall.freebsd.org> 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 A97B716A4CE for ; Wed, 21 Jul 2004 07:35:54 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74FB143D2D for ; Wed, 21 Jul 2004 07:35:54 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id CF5AA153D9 for ; Wed, 21 Jul 2004 15:37:22 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 39812-01 for ; Wed, 21 Jul 2004 15:37:22 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 2E81E152E3; Wed, 21 Jul 2004 15:37:22 +0800 (CST) Message-Id: <20040721073722.2E81E152E3@mail.dragon2.net> Date: Wed, 21 Jul 2004 15:37:22 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69367: [PATCH] devel/IO-All: update to 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: Wed, 21 Jul 2004 07:40:24 -0000 >Number: 69367 >Category: ports >Synopsis: [PATCH] devel/IO-All: update to 0.30 >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 Jul 21 07:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.30 - new manpages, modules - from Changes version: 0.30 date: Mon Jul 19 11:23:15 PDT 2004 changes: - Split module into several classes - Pluggable framework - file->all - ->touch - ->empty Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-IO-All-0.30.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-IO-All/Makefile /home/clsung/p5-IO-All/Makefile --- /usr/ports/devel/p5-IO-All/Makefile Sat Jul 17 15:07:56 2004 +++ /home/clsung/p5-IO-All/Makefile Wed Jul 21 15:34:39 2004 @@ -6,7 +6,7 @@ # PORTNAME= IO-All -PORTVERSION= 0.22 +PORTVERSION= 0.30 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/I/IN/INGY/ @@ -20,7 +20,18 @@ PERL_CONFIGURE= yes -MAN3= IO::All.3 +MAN3= IO::All.3 \ + IO::All::String.3 \ + IO::All::Link.3 \ + IO::All::Socket.3 \ + IO::All::Temp.3 \ + IO::All::Pipe.3 \ + IO::All::DBM.3 \ + IO::All::Dir.3 \ + IO::All::File.3 \ + IO::All::MLDBM.3 \ + IO::All::STDIO.3 \ + IO::All::Filesys.3 .include diff -ruN --exclude=CVS /usr/ports/devel/p5-IO-All/distinfo /home/clsung/p5-IO-All/distinfo --- /usr/ports/devel/p5-IO-All/distinfo Fri Jul 16 10:23:29 2004 +++ /home/clsung/p5-IO-All/distinfo Wed Jul 21 15:32:47 2004 @@ -1,2 +1,2 @@ -MD5 (IO-All-0.22.tar.gz) = fec62c77dd6fe6eea3e06d5b5ed26a1c -SIZE (IO-All-0.22.tar.gz) = 47711 +MD5 (IO-All-0.30.tar.gz) = afca43824173fc7c53eeff6d44ee141c +SIZE (IO-All-0.30.tar.gz) = 51524 diff -ruN --exclude=CVS /usr/ports/devel/p5-IO-All/pkg-plist /home/clsung/p5-IO-All/pkg-plist --- /usr/ports/devel/p5-IO-All/pkg-plist Fri Jul 16 10:23:29 2004 +++ /home/clsung/p5-IO-All/pkg-plist Wed Jul 21 15:35:53 2004 @@ -1,5 +1,18 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/All/.packlist %%SITE_PERL%%/IO/All.pm +%%SITE_PERL%%/IO/All.pod +%%SITE_PERL%%/IO/All/String.pm +%%SITE_PERL%%/IO/All/Link.pm +%%SITE_PERL%%/IO/All/Socket.pm +%%SITE_PERL%%/IO/All/Temp.pm +%%SITE_PERL%%/IO/All/Pipe.pm +%%SITE_PERL%%/IO/All/DBM.pm +%%SITE_PERL%%/IO/All/Dir.pm +%%SITE_PERL%%/IO/All/File.pm +%%SITE_PERL%%/IO/All/MLDBM.pm +%%SITE_PERL%%/IO/All/Filesys.pm +%%SITE_PERL%%/IO/All/STDIO.pm +@dirrm %%SITE_PERL%%/IO/All @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/All @unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/ 2>/dev/null || true @unexec rmdir %D/%%SITE_PERL%%/IO 2>/dev/null || true --- p5-IO-All-0.30.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 07:50: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 375E516A4CF for ; Wed, 21 Jul 2004 07:50:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14F3143D3F for ; Wed, 21 Jul 2004 07:50:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L7o3td094489 for ; Wed, 21 Jul 2004 07:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L7o3nf094488; Wed, 21 Jul 2004 07:50:03 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 07:50:03 GMT Resent-Message-Id: <200407210750.i6L7o3nf094488@freefall.freebsd.org> 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 CF80216A4CE for ; Wed, 21 Jul 2004 07:41:37 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AAB043D54 for ; Wed, 21 Jul 2004 07:41:37 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id CEDE515436 for ; Wed, 21 Jul 2004 15:43:05 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 39812-03 for ; Wed, 21 Jul 2004 15:43:05 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 55F92152E3; Wed, 21 Jul 2004 15:43:05 +0800 (CST) Message-Id: <20040721074305.55F92152E3@mail.dragon2.net> Date: Wed, 21 Jul 2004 15:43:05 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69368: [PATCH] devel/Spoon: update to 0.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 07:50:04 -0000 >Number: 69368 >Category: ports >Synopsis: [PATCH] devel/Spoon: update to 0.17 >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 Jul 21 07:50:03 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.17 - From Changes --- version: 0.17 date: Fri Jul 16 23:42:53 PDT 2004 changes: - Use only the UTF8 character encoding Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Spoon-0.17.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Spoon/Makefile /home/clsung/p5-Spoon/Makefile --- /usr/ports/devel/p5-Spoon/Makefile Sat Jul 17 09:59:30 2004 +++ /home/clsung/p5-Spoon/Makefile Wed Jul 21 15:37:55 2004 @@ -6,7 +6,7 @@ # PORTNAME= Spoon -PORTVERSION= 0.16 +PORTVERSION= 0.17 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/I/IN/INGY/ diff -ruN --exclude=CVS /usr/ports/devel/p5-Spoon/distinfo /home/clsung/p5-Spoon/distinfo --- /usr/ports/devel/p5-Spoon/distinfo Sat Jul 17 09:59:30 2004 +++ /home/clsung/p5-Spoon/distinfo Wed Jul 21 15:41:53 2004 @@ -1,2 +1,2 @@ -MD5 (Spoon-0.16.tar.gz) = 89b2b38768d2977d075a80c61d8ba962 -SIZE (Spoon-0.16.tar.gz) = 17091 +MD5 (Spoon-0.17.tar.gz) = 90fc2eec3856964b5ed404e243a7b33c +SIZE (Spoon-0.17.tar.gz) = 17169 --- p5-Spoon-0.17.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 08: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 F128916A4CF for ; Wed, 21 Jul 2004 08:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D10AA43D58 for ; Wed, 21 Jul 2004 08:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L8KO9L099858 for ; Wed, 21 Jul 2004 08:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L8KOMM099857; Wed, 21 Jul 2004 08:20:24 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 08:20:24 GMT Message-Id: <200407210820.i6L8KOMM099857@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: elvis Subject: Re: ports/69367: [PATCH] devel/IO-All: update to 0.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elvis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 08:20:25 -0000 The following reply was made to PR ports/69367; it has been noted by GNATS. From: elvis To: freebsd-gnats-submit@FreeBSD.org, clsung@dragon2.net Cc: Subject: Re: ports/69367: [PATCH] devel/IO-All: update to 0.30 Date: Wed, 21 Jul 2004 16:20:35 +0800 Maybe you can modify it also --- pkg-descr.old Wed Jul 21 16:17:20 2004 +++ pkg-descr Wed Jul 21 16:17:45 2004 @@ -5,4 +5,5 @@ It exports a single function called io, which returns a new IO::All object. And that object can do it all! -WWW: http://search.cpan.org/~ingy/IO-All-0.22/ +WWW: http://search.cpan.org/~ingy/ +Author: Brian Ingerson From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 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 19EC416A4CE for ; Wed, 21 Jul 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 0D95043D45 for ; Wed, 21 Jul 2004 08:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L8KRZ1099886 for ; Wed, 21 Jul 2004 08:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L8KRNi099885; Wed, 21 Jul 2004 08:20:27 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 08:20:27 GMT Message-Id: <200407210820.i6L8KRNi099885@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: elvis Subject: Re: ports/69366: [PATCH] devel/Spiffy: update to 0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elvis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 08:20:28 -0000 The following reply was made to PR ports/69366; it has been noted by GNATS. From: elvis To: freebsd-gnats-submit@FreeBSD.org, clsung@dragon2.net Cc: Subject: Re: ports/69366: [PATCH] devel/Spiffy: update to 0.19 Date: Wed, 21 Jul 2004 16:20:35 +0800 Maybe you can modify it also --- pkg-descr.old Wed Jul 21 16:12:27 2004 +++ pkg-descr Wed Jul 21 16:14:49 2004 @@ -1,4 +1,4 @@ -IO::All - Spiffy Perl Interface Framework For You +Spiffy - Spiffy Perl Interface Framework For You Spiffy" is a framework and methodology for doing object oriented programming in Perl. Spiffy combines the best parts of Exporter.pm, base.pm, mixin.pm and @@ -6,4 +6,5 @@ warts of traditional Perl OO, in a clean, straightforward and (perhaps someday) standard way. -WWW: http://search.cpan.org/~ingy/Spiffy-0.18/ +WWW: http://search.cpan.org/~ingy/ +Author: Brian Ingerson From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 08: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 C98E416A4CE for ; Wed, 21 Jul 2004 08:30:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C023F43D39 for ; Wed, 21 Jul 2004 08:30:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L8UWXx000611 for ; Wed, 21 Jul 2004 08:30:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L8UW2n000607; Wed, 21 Jul 2004 08:30:32 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 08:30:32 GMT Message-Id: <200407210830.i6L8UW2n000607@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: elvis Subject: Re: ports/69366: [PATCH] devel/Spiffy: update to 0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elvis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 08:30:32 -0000 The following reply was made to PR ports/69366; it has been noted by GNATS. From: elvis To: freebsd-gnats-submit@FreeBSD.org, clsung@dragon2.net Cc: Subject: Re: ports/69366: [PATCH] devel/Spiffy: update to 0.19 Date: Wed, 21 Jul 2004 16:25:56 +0800 sorry for my mail client, it's --- pkg-descr.old Wed Jul 21 16:12:27 2004 +++ pkg-descr Wed Jul 21 16:14:49 2004 @@ -1,4 +1,4 @@ -IO::All - Spiffy Perl Interface Framework For You +Spiffy - Spiffy Perl Interface Framework For You Spiffy" is a framework and methodology for doing object oriented programming in Perl. Spiffy combines the best parts of Exporter.pm, base.pm, mixin.pm and @@ -6,4 +6,5 @@ warts of traditional Perl OO, in a clean, straightforward and (perhaps someday) standard way. -WWW: http://search.cpan.org/~ingy/Spiffy-0.18/ +WWW: http://search.cpan.org/~ingy/Spiffy/ +Author: Brian Ingerson From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 08: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 3113816A4CE for ; Wed, 21 Jul 2004 08:30:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27B0343D1D for ; Wed, 21 Jul 2004 08:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6L8UTjI000569 for ; Wed, 21 Jul 2004 08:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6L8UTm8000568; Wed, 21 Jul 2004 08:30:29 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 08:30:29 GMT Message-Id: <200407210830.i6L8UTm8000568@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: elvis Subject: Re: ports/69367: [PATCH] devel/IO-All: update to 0.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elvis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 08:30:29 -0000 The following reply was made to PR ports/69367; it has been noted by GNATS. From: elvis To: elvis Cc: freebsd-gnats-submit@FreeBSD.org, clsung@dragon2.net Subject: Re: ports/69367: [PATCH] devel/IO-All: update to 0.30 Date: Wed, 21 Jul 2004 16:25:13 +0800 sorry for my mail client, it's --- pkg-descr.old Wed Jul 21 16:17:20 2004 +++ pkg-descr Wed Jul 21 16:25:45 2004 @@ -5,4 +5,5 @@ It exports a single function called io, which returns a new IO::All object. And that object can do it all! -WWW: http://search.cpan.org/~ingy/IO-All-0.22/ +WWW: http://search.cpan.org/~ingy/IO-All/ +Author: Brian Ingerson From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 10:00: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 0625E16A4CE for ; Wed, 21 Jul 2004 10:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED7D143D48 for ; Wed, 21 Jul 2004 10:00:44 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LA0iLF011197 for ; Wed, 21 Jul 2004 10:00:44 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LA0i4F011192; Wed, 21 Jul 2004 10:00:44 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 10:00:44 GMT Resent-Message-Id: <200407211000.i6LA0i4F011192@freefall.freebsd.org> 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 9CF1716A4CE for ; Wed, 21 Jul 2004 09:51:10 +0000 (GMT) Received: from skye.ki.iif.hu (freebsd.ki.iif.hu [193.225.13.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF30343D4C for ; Wed, 21 Jul 2004 09:51:09 +0000 (GMT) (envelope-from mohacsi@skye.ki.iif.hu) Received: (from mohacsi@localhost) by skye.ki.iif.hu (8.12.11/8.12.11) id i6L9oN1J009155; Wed, 21 Jul 2004 11:50:23 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200407210950.i6L9oN1J009155@skye.ki.iif.hu> Date: Wed, 21 Jul 2004 11:50:23 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69370: New port: net-mgmt/nagiostat version 1.0.0 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: Wed, 21 Jul 2004 10:00:45 -0000 >Number: 69370 >Category: ports >Synopsis: New port: net-mgmt/nagiostat version 1.0.0 >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: Wed Jul 21 10:00:44 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 4.10-PRERELEASE i386 >Organization: NIIF >Environment: System: FreeBSD skye.ki.iif.hu 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #7: Thu May 20 13:27:41 CEST 2004 root@skye.ki.iif.hu:/usr/obj/mirror/src/sys/SKYE i386 >Description: New port: net-mgmt/nagiostat version 1.0.0 This port is processes performance data produced by nagios stores them to RRD database and provide nice view of collected data in a very configurable way. >How-To-Repeat: Apply this shar. >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: # # nagiostat/ # nagiostat/pkg-plist # nagiostat/pkg-descr # nagiostat/distinfo # nagiostat/Makefile # nagiostat/files # nagiostat/files/patch-nagiostat # nagiostat/files/patch-nagiostat.conf # nagiostat/files/patch-README # echo c - nagiostat/ mkdir -p nagiostat/ > /dev/null 2>&1 echo x - nagiostat/pkg-plist sed 's/^X//' >nagiostat/pkg-plist << 'END-of-nagiostat/pkg-plist' X@exec mkdir -p /var/spool/nagios/nagiostatrrd X@exec chmod 775 /var/spool/nagios/nagiostatrrd X@exec chown nagios:nagios /var/spool/nagios/nagiostatrrd X@unexec rmdir /var/spool/nagios/nagiostatrrd 2>/dev/null || true Xetc/nagiostat.conf-sample Xshare/nagios/cgi-bin/nagiostat.cgi Xlibexec/nagiostat/nagiostat Xlibexec/nagiostat/html-templates/default.html Xlibexec/nagiostat/html-templates/graphindex.html Xshare/nagios/images/logos/graph.gif X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/GPL.txt X@dirrm libexec/nagiostat/html-templates X@dirrm libexec/nagiostat X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-nagiostat/pkg-plist echo x - nagiostat/pkg-descr sed 's/^X//' >nagiostat/pkg-descr << 'END-of-nagiostat/pkg-descr' XNagiostat parses performance-data from Nagios and generates graphs of Xtrends over time. Nagiostat makes use of RRD-tool. It then generates Xgraphs on-the-fly through a CGI-script and HTML-templates. Nagiostat is Xwritten in perl. X XWWW: http://nagiostat.sourceforge.net END-of-nagiostat/pkg-descr echo x - nagiostat/distinfo sed 's/^X//' >nagiostat/distinfo << 'END-of-nagiostat/distinfo' XMD5 (nagiostat-1.0.0.tgz) = 10ecfebe9430b2daf6a0e87b71dc739c XSIZE (nagiostat-1.0.0.tgz) = 18883 END-of-nagiostat/distinfo echo x - nagiostat/Makefile sed 's/^X//' >nagiostat/Makefile << 'END-of-nagiostat/Makefile' X# New ports collection makefile for: nagiostat X# Date created: 20 July 2004 X# Whom: Janos.Mohacsi@bsd.hu X# X# $FreeBSD$ X# X XPORTNAME= nagiostat XPORTVERSION= 1.0.0 XCATEGORIES= net-mgmt XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XEXTRACT_SUFX= .tgz X XMAINTAINER= janos.mohacsi@bsd.hu XCOMMENT= Nagiostat parses performance-data from Nagios and generates graphs X XRUN_DEPENDS= rrdtool:${PORTSDIR}/net/rrdtool \ X nagios:${PORTSDIR}/net-mgmt/nagios \ X ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm X XUSE_PERL5= yes XNO_BUILD= yes XUSE_REINPLACE= yes XNO_WRKSUBDIR= yes XNAGIOSDIR?= /var/spool/nagios XDOC_FILES= README GPL.txt X Xdo-configure: X @${REINPLACE_CMD} \ X -e 's|%%NAGIOSTATCONFDIR%%|${PREFIX}/etc/|' \ X -e 's|%%NAGIOSTATDIR%%|${PREFIX}/libexec/${PORTNAME}/|' \ X -e 's|%%NAGIOSTATRRD%%|${NAGIOSDIR}/${PORTNAME}rrd/|' \ X -e 's|%%PREFIX%%|${PREFIX}|' \ X ${WRKSRC}/nagiostat ${WRKSRC}/nagiostat.conf ${WRKSRC}/README Xdo-install: X @${MKDIR} ${PREFIX}/libexec/${PORTNAME} X @${MKDIR} ${NAGIOSDIR}/${PORTNAME}rrd X @${INSTALL_SCRIPT} ${WRKSRC}/nagiostat ${PREFIX}/libexec/${PORTNAME}/ X @${LN} -s ${PREFIX}/libexec/${PORTNAME}/nagiostat ${PREFIX}/share/nagios/cgi-bin/nagiostat.cgi X @${INSTALL_DATA} ${WRKSRC}/nagiostat.conf ${PREFIX}/etc/nagiostat.conf-sample X @${INSTALL_DATA} ${WRKSRC}/graph.gif ${PREFIX}/share/nagios/images/logos X @${MKDIR} ${PREFIX}/libexec/${PORTNAME}/html-templates/ X @${INSTALL_DATA} ${WRKSRC}/html-templates/default.html ${PREFIX}/libexec/${PORTNAME}/html-templates/ X @${INSTALL_DATA} ${WRKSRC}/html-templates/graphindex.html ${PREFIX}/libexec/${PORTNAME}/html-templates/ X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for file in ${DOC_FILES} X @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} X.endfor X.endif X X.include END-of-nagiostat/Makefile echo c - nagiostat/files mkdir -p nagiostat/files > /dev/null 2>&1 echo x - nagiostat/files/patch-nagiostat sed 's/^X//' >nagiostat/files/patch-nagiostat << 'END-of-nagiostat/files/patch-nagiostat' X X$FreeBSD$ X X--- nagiostat.orig Tue Jul 20 17:30:18 2004 X+++ nagiostat Tue Jul 20 18:01:53 2004 X@@ -21,8 +21,8 @@ X use strict; X X ## Basic configuration options X-my $BASE_DIR = "/usr/local/nagios/nagiostat"; X-my $CONFIG_FILE = $BASE_DIR."/nagiostat.conf"; ## Config-file location X+my $BASE_DIR = "%%NAGIOSTATDIR%%"; X+my $CONFIG_FILE = "%%NAGIOSTATCONFDIR%%/nagiostat.conf"; ## Config-file location X my $DEBUG_LOG_FILE = $BASE_DIR."/debug.log"; ## Specify where to create log-file and what filename (must be writable by nagios-user!) X my $DEBUGLEVEL = 3; ## 0=Nothing, 1=Errors, 2=Warnings, 3=Debug X my $DEBUGOUTPUT = 0; ## 0=file, 1=STDERR, 2=STDOUT (for cgi) END-of-nagiostat/files/patch-nagiostat echo x - nagiostat/files/patch-nagiostat.conf sed 's/^X//' >nagiostat/files/patch-nagiostat.conf << 'END-of-nagiostat/files/patch-nagiostat.conf' X X$FreeBSD$ X X--- nagiostat.conf.orig Tue Jul 20 18:02:15 2004 X+++ nagiostat.conf Tue Jul 20 18:09:40 2004 X@@ -13,10 +13,10 @@ X ## quote-marks are written in pairs EVEN IN COMMENTS. This is a known bug. X X # Pointer to where the rrd-tool binary is located X-RRDToolPath /usr/local/bin/rrdtool X+RRDToolPath %%PREFIX%%/bin/rrdtool X X # Pointer to where HTML-templates are stored X-HTMLTemplatePath /usr/local/nagios/nagiostat/html-templates X+HTMLTemplatePath %%NAGIOSTATDIR%%/html-templates X X # Pointer to HTML-template for the index-page (relative to HTMLTemplatePath) X GraphIndexTemplate graphindex.html X@@ -25,7 +25,7 @@ X # nagiostat automatically creates RRD-archives if they dont exist. X # IMPORTANT: the whole directory RRDArchivePath must be writable by the nagios user (that calls the X # nagiostat-script) X-RRDArchivePath /usr/local/nagios/nagiostat/archives X+RRDArchivePath %%NAGIOSTATRRD%%/ X X ## How many graphs per HTML-page and which time-periods they should represent X ## TemplateName Definitions (format=::) END-of-nagiostat/files/patch-nagiostat.conf echo x - nagiostat/files/patch-README sed 's/^X//' >nagiostat/files/patch-README << 'END-of-nagiostat/files/patch-README' X X$FreeBSD$ X X--- README.orig Wed Jul 21 10:07:51 2004 X+++ README Wed Jul 21 10:12:10 2004 X@@ -27,24 +27,28 @@ X X X **INSTALLING X-1. Unpack the tar-file to a directory, for example '/usr/local/nagios/nagiostat'. X-The nagiostat-base-dir does not have to be within the nagios-installation directory. X X-2. Start by editing the $BASE_DIR parameter in the file called "nagiostat", which is X-the main script. Set the value to the directory where you unpacked the files. X-Create a file called "debug.log" ('$ touch debug.log') in this dir and change permissions so that the X-nagios-user may write to it. This is the logfile for nagiostat which can be X-very helpful when debugging the regular-expression thing. X+1. Unpack the tar-file to a directory, for example '%%NAGIOSTATDIR%%'. X+The nagiostat-base-dir does not have to be within the nagios-installation X+directory. X X-If things are installed in the directory specified in step 1, you can also run "make install" to X-create debug.log, archives-directory and set permissions on them. "make install" is under development. X-It also assumes that the nagios-user is called 'nagios'. X+2. Start by editing the $BASE_DIR parameter in the file called X+"nagiostat", which is the main script. Set the value to the directory X+where you unpacked the files. Create a file called "debug.log" ('$ touch X+debug.log') in this dir and change permissions so that the nagios-user may X+write to it. This is the logfile for nagiostat which can be very helpful X+when debugging the regular-expression thing. X X-3. Then read the nagios.conf-file where also most of the documentation is located and change the X-parameters to your liking. X+If things are installed in the directory specified in step 1, you can also X+run "make install" to create debug.log, archives-directory and set X+permissions on them. "make install" is under development. It also assumes X+that the nagios-user is called 'nagios'. X X-4. Then set up your webserver so that you can access the nagiostat.cgi (symbolic-link X-to 'nagiostat') from some URL. Example for apache: X+3. Then read the nagios.conf-file where also most of the documentation is X+located and change the parameters to your liking. X+ X+4. Then set up your webserver so that you can access the nagiostat.cgi X+(symbolic-link to 'nagiostat') from some URL. Example for apache: X --- X Alias /nagiostat/ /usr/local/nagios/nagiostat/ X X@@ -53,41 +57,47 @@ X Allow from all X X --- X-You also have to make sure that the apache-user has read-rights to the RRDArchivePath X-and the config-file nagios.conf. You also would probably add additional security to X-this, password protecting for instance. X X-5. Set up nagios to enable performance-data handling and that it should send the perfdata X-to nagiostat. X-In nagios.cfg, set the parameter 'process_performance_data=1'. This enables processing of X-performance data. X-Then add the parameter 'service_perfdata_command=service-perf-data-handler' also to nagios.cfg. This X-tells nagios to run the "service-perf-data-handler" command to process the performance data after X-each plugin has been executed. X-Then add the following to the checkcommands.cfg-file (or whatever nagios-config-file you find suitable): X+You also have to make sure that the apache-user has read-rights to the X+RRDArchivePath and the config-file nagios.conf. You also would probably X+add additional security to this, password protecting for instance. X+ X+5. Set up nagios to enable performance-data handling and that it should X+send the perfdata to nagiostat. In nagios.cfg, set the parameter X+'process_performance_data=1'. This enables processing of performance data. X+Then add the parameter X+'service_perfdata_command=service-perf-data-handler' also to nagios.cfg. X+This tells nagios to run the "service-perf-data-handler" command to X+process the performance data after each plugin has been executed. Then add X+the following to the checkcommands.cfg-file (or whatever X+nagios-config-file you find suitable): X+ X --- X ## X ## PERF-DATA-HANDLER X ## X define command { X command_name service-perf-data-handler X- command_line /usr/local/nagios/nagiostat/nagiostat -p "$LASTCHECK$|!!|$HOSTNAME$|!!|$SERVICEDESC$|!!|$SERVICESTATE$|!!|$OUTPUT$|!!|$PERFDATA$" X+ command_line /%%NAGIOSTATDIR%%/nagiostat -p "$LASTCHECK$|!!|$HOSTNAME$|!!|$SERVICEDESC$|!!|$SERVICESTATE$|!!|$OUTPUT$|!!|$PERFDATA$" X } X --- X Alter the path to nagiostat to reflect where you installed the files in step 1. X X-6. To add a nifty icon to click on in the "service detail"-page in the nagios web interface, you X-can add something like the following to the serviceextinfo.cfg-file: X+6. To add a nifty icon to click on in the "service detail"-page in the X+nagios web interface, you can add something like the following to the X+serviceextinfo.cfg-file: X+ X --- X define serviceextinfo { X host_name purjo.dacom.se X service_description PING X- notes_url /nagiostat/nagiostat.cgi?graph_name=purjo-ping X+ notes_url /nagiostat.cgi?graph_name=purjo-ping X icon_image graph.gif X icon_image_alt View graphs X } X --- X-Copy graph.gif to /usr/local/nagios/share/images/logos (or whichever directory your nagios-installation is in) X+Copy graph.gif to /%%PREFIX%%/nagios/share/images/logos (or whichever X+directory your nagios-installation is in) X to get the little ugly graph-icon in the right place. X X END-of-nagiostat/files/patch-README exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 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 1FB4B16A4CE for ; Wed, 21 Jul 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 EFBEB43D2F for ; Wed, 21 Jul 2004 10:10:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LAAR6K015239 for ; Wed, 21 Jul 2004 10:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LAARs2015238; Wed, 21 Jul 2004 10:10:27 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 10:10:27 GMT Resent-Message-Id: <200407211010.i6LAARs2015238@freefall.freebsd.org> 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 8431516A4CE for ; Wed, 21 Jul 2004 10:09:46 +0000 (GMT) Received: from unimail.uni-dortmund.de (mx1.HRZ.Uni-Dortmund.DE [129.217.128.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBA1643D55 for ; Wed, 21 Jul 2004 10:09:45 +0000 (GMT) (envelope-from matthias.andree@web.de) Received: from m2a2.myip.org (6pdkic5ix5xjd8u7@p5487CA3B.dip.t-dialin.net [84.135.202.59]) (authenticated bits=0)i6LA9Zgi002596; Wed, 21 Jul 2004 12:09:41 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 1001) id 8EA5A1B206; Wed, 21 Jul 2004 12:09:34 +0200 (CEST) Message-Id: <20040721100934.8EA5A1B206@merlin.emma.line.org> Date: Wed, 21 Jul 2004 12:09:34 +0200 (CEST) From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69371: [MAINTAINER] news/leafnode: update to 1.10.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, 21 Jul 2004 10:10:28 -0000 >Number: 69371 >Category: ports >Synopsis: [MAINTAINER] news/leafnode: update to 1.10.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 Jul 21 10:10:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD merlin.emma.line.org 5.2-CURRENT FreeBSD 5.2-CURRENT #10: Tue Jul 13 09:55:30 CEST 2004 >Description: - Update to 1.10.2 -> texpire bug fix for "directory is not empty" problem Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- leafnode-1.10.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/news/leafnode/Makefile /root/ports/news/leafnode/Makefile --- /usr/ports/news/leafnode/Makefile Wed Jul 7 20:50:53 2004 +++ /root/ports/news/leafnode/Makefile Wed Jul 21 11:39:43 2004 @@ -6,7 +6,7 @@ # PORTNAME= leafnode -PORTVERSION= 1.10.1 +PORTVERSION= 1.10.2 PORTREVISION= 0 CATEGORIES= news MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED:S/$/:sourceforge/} \ diff -ruN --exclude=CVS /usr/ports/news/leafnode/distinfo /root/ports/news/leafnode/distinfo --- /usr/ports/news/leafnode/distinfo Wed Jul 7 20:50:54 2004 +++ /root/ports/news/leafnode/distinfo Wed Jul 21 11:39:53 2004 @@ -1,2 +1,2 @@ -MD5 (leafnode-1.10.1.rel.tar.bz2) = 7cf9a927888bb833375771af396a5d74 -SIZE (leafnode-1.10.1.rel.tar.bz2) = 384126 +MD5 (leafnode-1.10.2.rel.tar.bz2) = 963fa8cb550c10bceb460c317cc5a0bf +SIZE (leafnode-1.10.2.rel.tar.bz2) = 384179 --- leafnode-1.10.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 10:11: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 D1AF416A4CE; Wed, 21 Jul 2004 10:11:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B57E843D48; Wed, 21 Jul 2004 10:11:08 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LAB8Zo015351; Wed, 21 Jul 2004 10:11:08 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LAB8IJ015347; Wed, 21 Jul 2004 10:11:08 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 10:11:08 GMT From: Kirill Ponomarew Message-Id: <200407211011.i6LAB8IJ015347@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69371: [MAINTAINER] news/leafnode: update to 1.10.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, 21 Jul 2004 10:11:09 -0000 Synopsis: [MAINTAINER] news/leafnode: update to 1.10.2 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 10:11:05 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69371 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 10: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 12E3C16A4CE for ; Wed, 21 Jul 2004 10:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 041EB43D58 for ; Wed, 21 Jul 2004 10:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LAUQko015927 for ; Wed, 21 Jul 2004 10:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LAUQcP015925; Wed, 21 Jul 2004 10:30:26 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 10:30:26 GMT Resent-Message-Id: <200407211030.i6LAUQcP015925@freefall.freebsd.org> 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 521BA16A4CE for ; Wed, 21 Jul 2004 10:20:23 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32AF943D4C for ; Wed, 21 Jul 2004 10:20:23 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6LAKMQw082793 for ; Wed, 21 Jul 2004 10:20:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6LAKMh4082792; Wed, 21 Jul 2004 10:20:22 GMT (envelope-from nobody) Message-Id: <200407211020.i6LAKMh4082792@www.freebsd.org> Date: Wed, 21 Jul 2004 10:20:22 GMT From: Andriy Gapon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69372: sysutils/healthd: incorrect configure with WITHOUT_IPV6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 10:30:27 -0000 >Number: 69372 >Category: ports >Synopsis: sysutils/healthd: incorrect configure with WITHOUT_IPV6 >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 Jul 21 10:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 4.10 or 5.2.1 i386 >Organization: >Environment: FreeBSD 4.10 or 5.2.1 i386 healthd-0.7.7 >Description: when the port is built with WITHOUT_IPV6 option (--disable-ipv6 option for configure), configure script can not detect any header file properly, including smb.h, thus limiting healthd's capabilities. >How-To-Repeat: $ make configure WITHOUT_IPV6=yes ===> Vulnerability check disabled ===> Extracting for healthd-0.7.7 >Fix: unfortunately I have very little experience with autoconf >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for healthd-0.7.7.tar.gz. ===> Patching for healthd-0.7.7 ===> Applying extra patch files/healthd.sh-500038 ===> Configuring for healthd-0.7.7 creating cache ./config.cache checking host system type... i386-unknown-freebsd5.2.1 checking for gcc... cc checking whether the C compiler (cc -O -pipe -march=athlon-xp ) works... yes checking whether the C compiler (cc -O -pipe -march=athlon-xp ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for hosts_access in -lwrap... yes checking for inb in -lio... no checking for i386_iopl in -li386... no checking whether to enable remotely reading the full config... no checking whether to enable ipv6... no checking getaddrinfo bug... good checking for getaddrinfo... yes checking for getnameinfo... yes checking for ANSI C header files... no checking for fcntl.h... no checking for sys/ioctl.h... no checking for sys/time.h... no checking for syslog.h... no checking for unistd.h... no checking for machine/smb.h... no checking for dev/smbus/smb.h... no checking for working const... yes checking whether time.h and sys/time.h may both be included... yes checking whether cc needs -traditional... no checking return type of signal handlers... void checking for select... yes checking for socket... yes checking for strerror... yes checking for strtod... yes checking for strtol... yes updating cache ./config.cache creating ./config.status creating Makefile creating config.h From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 10: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 80FD316A4CE for ; Wed, 21 Jul 2004 10:30:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F6143D55 for ; Wed, 21 Jul 2004 10:30:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LAUVI4015975 for ; Wed, 21 Jul 2004 10:30:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LAUV71015974; Wed, 21 Jul 2004 10:30:31 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 10:30:31 GMT Message-Id: <200407211030.i6LAUV71015974@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Yonatan Bokovza" 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 Reply-To: Yonatan Bokovza List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 10:30:31 -0000 The following reply was made to PR ports/68414; it has been noted by GNATS. From: "Yonatan Bokovza" To: "Volker Stolz" , Cc: Subject: RE: ports/68414: New Port: security/foremost - Forensic analyser for disk images Date: Tue, 20 Jul 2004 17:52:10 +0300 KGV4Y3VzZSB0aGUgbWFpbCBjb25maWd1cmF0aW9uLCBJJ20gZm9yY2VkIHRvIE9XQSBmb3Igbm93 KQ0KVGhpcyBpcyBhIGdvb2QgaWRlYS4gQ2hhbmdlIHRoaXMgbGluZSBpbiB0aGUgLnNoYXIgZmls ZToNClhldGMvZm9yZW1vc3QuY29uZg0KDQp0byANCg0KWGV0Yy9mb3JlbW9zdC5jb25mLnNhbXBs ZQ0KDQphbmQNCg0KWCBAJHtJTlNUQUxMfSAtQ20gNjQ0ICR7V1JLU1JDfS9mb3JlbW9zdC5jb25m ICR7UFJFRklYfS9ldGMvZm9yZW1vc3QuY29uZg0KDQp0bw0KDQpYIEAke0lOU1RBTEx9IC1DbSA2 NDQgJHtXUktTUkN9L2ZvcmVtb3N0LmNvbmYgJHtQUkVGSVh9L2V0Yy9mb3JlbW9zdC5jb25mLnNh bXBsZQ0KDQphbmQgcGxlYXNlIGNoZWNrIHRoZSBsaWNlbnNlLCB5b3UgbWlnaHQgaGF2ZSB0byB1 cGRhdGUgTEVHQUwgb3IgZXZlbg0KbWFrZSBzdXJlIHRoaXMgcG9ydCBkb2Vzbid0IHJlYWNoIHRo ZSBvZmZpY2lhbCBDRHMuIFNhbWUgZ29lcyBmb3IgcG9ydHMvNjg0MTMNCnRoYXQgeW91IGNsb3Nl ZCBqdXN0IG5vdy4NCg0KUmVnYXJkcywNCllvbmF0YW4uDQoNCgktLS0tLU9yaWdpbmFsIE1lc3Nh Z2UtLS0tLSANCglGcm9tOiBWb2xrZXIgU3RvbHogW21haWx0bzp2c0BmcmVlYnNkLm9yZ10gDQoJ U2VudDogVHVlIDcvMjAvMjAwNCAxMDoyOCBBTSANCglUbzogZnJlZWJzZC1nbmF0cy1zdWJtaXRA ZnJlZWJzZC5vcmc7IFlvbmF0YW4gQm9rb3Z6YSANCglDYzogDQoJU3ViamVjdDogUmU6IHBvcnRz LzY4NDE0OiBOZXcgUG9ydDogc2VjdXJpdHkvZm9yZW1vc3QgLSBGb3JlbnNpYyBhbmFseXNlciBm b3IgZGlzayBpbWFnZXMNCgkNCgkNCg0KCUknZCBsaWtlIHRvIGluc3RhbGwgdGhlIGNvbmZpZ3Vy YXRpb24gZmlsZSB0byBmb3JlbW9zdC5jb25mLnNhbXBsZSBzbyB0aGF0IA0KCXlvdXIgbGl2ZSBj b25maWd1cmF0aW9uIGRvZXNuJ3QgZ2V0IHJlbW92ZWQgb24gdXBkYXRlcy4NCglZb3UgbWlnaHQg d2FudCB0byBzZWUgaG93IG90aGVyIHBvcnRzIHRyZWF0IGNvbmZpZ3VyYXRpb24gZmlsZXMgZm9y IGZ1dHVyZSANCgl1cGRhdGVzLiBJcyB0aGlzIG9rYXk/DQoJDQoJVm9sa2VyDQoJDQoNCg== From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:00: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 32AA316A4CE for ; Wed, 21 Jul 2004 11:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C75F43D58 for ; Wed, 21 Jul 2004 11:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LB0iTX018970 for ; Wed, 21 Jul 2004 11:00:44 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LB0iMT018965; Wed, 21 Jul 2004 11:00:44 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 11:00:44 GMT Resent-Message-Id: <200407211100.i6LB0iMT018965@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jean-Francois Legros Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4833516A4CE for ; Wed, 21 Jul 2004 10:56:44 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41A6043D45 for ; Wed, 21 Jul 2004 10:56:44 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6LAuhYQ089242 for ; Wed, 21 Jul 2004 10:56:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6LAuhpX089241; Wed, 21 Jul 2004 10:56:43 GMT (envelope-from nobody) Message-Id: <200407211056.i6LAuhpX089241@www.freebsd.org> Date: Wed, 21 Jul 2004 10:56:43 GMT From: Jean-Francois Legros To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69373: [patch] www/bricolage/Makefile typo breaking pkg tools X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 11:00:45 -0000 >Number: 69373 >Category: ports >Synopsis: [patch] www/bricolage/Makefile typo breaking pkg tools >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 Jul 21 11:00:44 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Legros >Release: 5.1-RELEASE-p14 >Organization: gudul.net >Environment: FreeBSD gudul.gudul.net 5.1-RELEASE-p14 FreeBSD 5.1-RELEASE-p14 #2: Mon Mar 8 11:45:13 CET 2004 root@gudul.gudul.net:/usr/src/sys/i386/compile/GUDUL51 i386 >Description: A typo in www/bricolage/Makefile breaks pkg tools if graphics/p5-Imager is installed >How-To-Repeat: Install graphics/p5-Imager then "portsdb -Uu" for example says: Updating the ports index ... Generating INDEX.tmp - please wait..bricolage-1.8.0: "/usr/portsgraphics/p5-Imager" non-existent -- dependency list incomplete .. >Fix: [patch]: unified diff against ports/www/bricolage/Makefile,v 1.1 2004/06/16 13:34:30 pav Exp $ --- Makefile.orig Wed Jul 21 11:57:37 2004 +++ Makefile Wed Jul 21 11:57:39 2004 @@ -106,7 +106,7 @@ #.endif .if exists(${SITE_PERL}/${PERL_ARCH}/Imager.pm) -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Imager.pm:${PORTSDIR}graphics/p5-Imager +BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Imager.pm:${PORTSDIR}/graphics/p5-Imager .endif .if exists(${SITE_PERL}/XML/DOM.pm) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:00: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 B835216A4CE for ; Wed, 21 Jul 2004 11:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 948F843D58 for ; Wed, 21 Jul 2004 11:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LB0j30018989 for ; Wed, 21 Jul 2004 11:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LB0jbh018988; Wed, 21 Jul 2004 11:00:45 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 11:00:45 GMT Resent-Message-Id: <200407211100.i6LB0jbh018988@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrej Zverev Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED69316A4CF for ; Wed, 21 Jul 2004 10:58:59 +0000 (GMT) Received: from waterwall.inec.ru (waterwall.inec.ru [213.148.3.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33DB443D45 for ; Wed, 21 Jul 2004 10:58:59 +0000 (GMT) (envelope-from az@waterwall.inec.ru) Received: from waterwall.inec.ru (root@localhost) by waterwall.inec.ru (8.12.9p2/8.12.9) with SMTP id i6LB8nGa044122 for ; Wed, 21 Jul 2004 15:08:49 +0400 (MSD) (envelope-from az@waterwall.inec.ru) Received: from waterwall.inec.ru (localhost.inec.ru [127.0.0.1]) by localhost (8.12.9p2/8.12.6) with ESMTP id i6LB8nmG044116; Wed, 21 Jul 2004 15:08:49 +0400 (MSD) Received: from localhost (localhost.inec.ru [127.0.0.1]) by localhost (Postfix) with SMTP id A3E9B6482F; Wed, 21 Jul 2004 15:08:49 +0400 (MSD) Received: from waterwall.inec.ru (localhost.inec.ru [127.0.0.1]) by waterwall.inec.ru (Postfix) with ESMTP id AAP440FE4EC1AAEE; Wed, 21 Jul 2004 15:08:49 +0400 (MSD) Received: (from az@localhost) by waterwall.inec.ru (8.12.9p2/8.12.6/Submit) id i6LB8nw1044113; Wed, 21 Jul 2004 15:08:49 +0400 (MSD) Message-Id: <200407211108.i6LB8nw1044113@waterwall.inec.ru> Date: Wed, 21 Jul 2004 15:08:49 +0400 (MSD) From: Andrej Zverev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: markus@FreeBSD.org Subject: ports/69374: Update port: ports/sysutils/krename to 3.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrej Zverev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 11:00:45 -0000 >Number: 69374 >Category: ports >Synopsis: Update port: ports/sysutils/krename to 3.0.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 Jul 21 11:00:45 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andrej Zverev >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD az.inec.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #2: Wed Jul 21 12:43:50 MSD 2004 root@az.inec.ru:/usr/obj/usr/src/sys/az i386 >Description: Update to version 3.0.1 >How-To-Repeat: >Fix: --- /usr/ports/sysutils/krename/Makefile Wed Jun 30 07:05:48 2004 +++ Makefile Wed Jul 21 14:19:07 2004 @@ -6,7 +6,7 @@ # PORTNAME= krename -PORTVERSION= 3.0.0 +PORTVERSION= 3.0.1 CATEGORIES= sysutils kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME} --- krename-pkg-plist.diff begins here --- --- /usr/ports/sysutils/krename/pkg-plist Wed Jun 30 07:05:48 2004 +++ pkg-plist Wed Jul 21 14:35:49 2004 @@ -28,6 +28,7 @@ share/locale/it/LC_MESSAGES/krename.mo share/locale/ja/LC_MESSAGES/krename.mo share/locale/nl/LC_MESSAGES/krename.mo +share/locale/ru/LC_MESSAGES/krename.mo share/locale/pl/LC_MESSAGES/krename.mo share/locale/zh_TW.Big5/LC_MESSAGES/krename.mo @unexec rmdir %D/share/icons/locolor/32x32/apps 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11: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 18F7E16A4CE for ; Wed, 21 Jul 2004 11:10:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D01D43D1F for ; Wed, 21 Jul 2004 11:10:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LBAENr023328 for ; Wed, 21 Jul 2004 11:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LBAEbP023323; Wed, 21 Jul 2004 11:10:14 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 11:10:14 GMT Resent-Message-Id: <200407211110.i6LBAEbP023323@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Florent Thoumie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACA3D16A4CE for ; Wed, 21 Jul 2004 11:06:09 +0000 (GMT) Received: from gw.xbsd.org (xbsd.org [81.56.254.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 268C943D39 for ; Wed, 21 Jul 2004 11:06:09 +0000 (GMT) (envelope-from flz@xbsd.org) Received: by gw.xbsd.org (Postfix, from userid 201) id 75A89706; Wed, 21 Jul 2004 13:06:05 +0200 (CEST) Message-Id: <20040721110605.75A89706@gw.xbsd.org> Date: Wed, 21 Jul 2004 13:06:05 +0200 (CEST) From: Florent Thoumie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69375: x11-wm/tpager - update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Florent Thoumie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 11:10:15 -0000 >Number: 69375 >Category: ports >Synopsis: x11-wm/tpager - update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 11:10:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Florent Thoumie >Release: FreeBSD 4.9-RC i386 >Organization: Xbsd.org >Environment: System: FreeBSD gw 4.9-RC FreeBSD 4.9-RC #4: Sun Oct 5 14:25:09 CEST 2003 rf@gw:/usr/src/sys/compile/GW i386 >Description: Distfile has been unfetchable for some days, this is no corrected. >How-To-Repeat: N/A >Fix: --- tpager.diff begins here --- diff -ruN tpager/Makefile tpager.new/Makefile --- tpager/Makefile Sat Feb 14 15:12:29 2004 +++ tpager.new/Makefile Wed Jul 21 13:04:16 2004 @@ -8,7 +8,7 @@ PORTNAME= tpager PORTVERSION= 0.2 CATEGORIES= x11-wm -MASTER_SITES= http://s1x.homelinux.net/downloads/ +MASTER_SITES= http://old.s1x.homelinux.net/downloads/ MAINTAINER= flz@xbsd.org COMMENT= Lightweight EMWH Compliant Pager --- tpager.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:10: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 DC7CB16A4CF for ; Wed, 21 Jul 2004 11:10:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC74F43D45 for ; Wed, 21 Jul 2004 11:10:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LBAH8t023344 for ; Wed, 21 Jul 2004 11:10:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LBAHXo023343; Wed, 21 Jul 2004 11:10:17 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 11:10:17 GMT Message-Id: <200407211110.i6LBAHXo023343@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Andrej Zverev Subject: Re: ports/69374: Update port: ports/sysutils/krename to 3.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrej Zverev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 11:10:18 -0000 The following reply was made to PR ports/69374; it has been noted by GNATS. From: Andrej Zverev To: freebsd-gnats-submit@freebsd.org, az@inec.ru Cc: Subject: Re: ports/69374: Update port: ports/sysutils/krename to 3.0.1 Date: Wed, 21 Jul 2004 15:08:10 +0400 Opps, missed distinfo --- /usr/ports/sysutils/krename/distinfo Wed Jun 30 07:05:48 2004 +++ distinfo Wed Jul 21 15:05:49 2004 @@ -1,2 +1,2 @@ -MD5 (krename-3.0.0.tar.bz2) = c8e3dc74589bb8a37b2b6635e9d3d78f -SIZE (krename-3.0.0.tar.bz2) = 595798 +MD5 (krename-3.0.1.tar.bz2) = 03e12fff82508581c3be8e6442a08b44 +SIZE (krename-3.0.1.tar.bz2) = 607694 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:21: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 7EB3616A4CE; Wed, 21 Jul 2004 11:21:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA5E43D46; Wed, 21 Jul 2004 11:21:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LBL3LE024137; Wed, 21 Jul 2004 11:21:03 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LBKwcC024133; Wed, 21 Jul 2004 11:20:58 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 11:20:58 GMT From: Volker Stolz Message-Id: <200407211120.i6LBKwcC024133@freefall.freebsd.org> To: laszlof@vonostingroup.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69352: Fix for ports/61297 (readline 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: Wed, 21 Jul 2004 11:21:03 -0000 Synopsis: Fix for ports/61297 (readline port) State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Jul 21 11:19:47 GMT 2004 State-Changed-Why: Thanks for the quick response! Could you please resubmit your patch in "unified diff" format? Thanks in advance. Most probably, you'll only have added the patchfile and you should bump PORTREVISION. http://www.freebsd.org/cgi/query-pr.cgi?pr=69352 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:27: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 9A06516A4CE; Wed, 21 Jul 2004 11:27:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AB0E43D45; Wed, 21 Jul 2004 11:27:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LBRFCC024494; Wed, 21 Jul 2004 11:27:15 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LBRFEJ024490; Wed, 21 Jul 2004 11:27:15 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 11:27:15 GMT From: Volker Stolz Message-Id: <200407211127.i6LBRFEJ024490@freefall.freebsd.org> To: vasallia@ukr.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69355: [MAINTAINER] databases/msql: add CONFLICTS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 11:27:15 -0000 Synopsis: [MAINTAINER] databases/msql: add CONFLICTS State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Jul 21 11:24:52 GMT 2004 State-Changed-Why: Committed with modifications, thanks! I narrowed the conflict down to msql-3* and added the inverse to databases/msql3. http://www.freebsd.org/cgi/query-pr.cgi?pr=69355 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:28: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 60E8E16A4CE; Wed, 21 Jul 2004 11:28:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E0443D4C; Wed, 21 Jul 2004 11:28:39 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LBSdN3024595; Wed, 21 Jul 2004 11:28:39 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LBSdlJ024591; Wed, 21 Jul 2004 11:28:39 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 11:28:39 GMT From: Volker Stolz Message-Id: <200407211128.i6LBSdlJ024591@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org Subject: Re: ports/69364: horde2 broken under php5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 11:28:39 -0000 Synopsis: horde2 broken under php5 Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: vs Responsible-Changed-When: Wed Jul 21 11:28:04 GMT 2004 Responsible-Changed-Why: Over to maintainer (on holiday atm, I believe) http://www.freebsd.org/cgi/query-pr.cgi?pr=69364 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 11:29: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 9F1C316A4CE; Wed, 21 Jul 2004 11:29:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 825BC43D41; Wed, 21 Jul 2004 11:29:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LBTF05024677; Wed, 21 Jul 2004 11:29:15 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LBTFI5024673; Wed, 21 Jul 2004 11:29:15 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 11:29:15 GMT From: Volker Stolz Message-Id: <200407211129.i6LBTFI5024673@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nobutaka@FreeBSD.org Subject: Re: ports/69365: libxine crashes on some wmv files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 11:29:15 -0000 Synopsis: libxine crashes on some wmv files Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: vs Responsible-Changed-When: Wed Jul 21 11:29:05 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69365 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:10: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 833D416A4CE for ; Wed, 21 Jul 2004 12:10:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC1A43D69 for ; Wed, 21 Jul 2004 12:10:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LCAIUP032779 for ; Wed, 21 Jul 2004 12:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCAIw8032773; Wed, 21 Jul 2004 12:10:18 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 12:10:18 GMT Resent-Message-Id: <200407211210.i6LCAIw8032773@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Florent Thoumie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F72A16A4CE for ; Wed, 21 Jul 2004 12:04:27 +0000 (GMT) Received: from gw.xbsd.org (xbsd.org [81.56.254.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA87643D1F for ; Wed, 21 Jul 2004 12:04:26 +0000 (GMT) (envelope-from flz@xbsd.org) Received: by gw.xbsd.org (Postfix, from userid 201) id 84D28789; Wed, 21 Jul 2004 14:04:26 +0200 (CEST) Message-Id: <20040721120426.84D28789@gw.xbsd.org> Date: Wed, 21 Jul 2004 14:04:26 +0200 (CEST) From: Florent Thoumie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69377: net/libbt - update to version 1.03 and removal of useless dependancy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Florent Thoumie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 12:10:18 -0000 >Number: 69377 >Category: ports >Synopsis: net/libbt - update to version 1.03 and removal of useless dependancy >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 Jul 21 12:10:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Florent Thoumie >Release: FreeBSD 4.9-RC i386 >Organization: Xbsd.org >Environment: System: FreeBSD gw 4.9-RC FreeBSD 4.9-RC #4: Sun Oct 5 14:25:09 CEST 2003 rf@gw:/usr/src/sys/compile/GW i386 >Description: Updates libbt port to version 1.03. Removes a useless dependancy. >How-To-Repeat: Jump two lines above then continue. >Fix: --- libbt-1.03.diff begins here --- diff -ruN libbt/Makefile libbt.new/Makefile --- libbt/Makefile Sun Jun 6 23:46:57 2004 +++ libbt.new/Makefile Wed Jul 21 14:05:11 2004 @@ -6,8 +6,7 @@ # PORTNAME= libbt -PORTVERSION= 1.02 -PORTREVISION?= 1 +PORTVERSION= 1.03 CATEGORIES= net devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -15,8 +14,7 @@ MAINTAINER= flz@xbsd.org COMMENT= C library implementing the core BitTorrent protocol -LIB_DEPENDS= uuid.1:${PORTSDIR}/sysutils/e2fsprogs \ - curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS= curl.3:${PORTSDIR}/ftp/curl GNU_CONFIGURE= yes USE_GMAKE= yes diff -ruN libbt/distinfo libbt.new/distinfo --- libbt/distinfo Sun Jun 6 23:46:57 2004 +++ libbt.new/distinfo Wed Jul 21 13:39:09 2004 @@ -1,2 +1,2 @@ -MD5 (libbt-1.02.tar.gz) = 1db9d77dd51014d672e1c3e2fd60eb31 -SIZE (libbt-1.02.tar.gz) = 307050 +MD5 (libbt-1.03.tar.gz) = f5fdd7f4b641d5da08d678130b4d6bff +SIZE (libbt-1.03.tar.gz) = 307473 --- libbt-1.03.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:24: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 7E1FB16A4CE; Wed, 21 Jul 2004 12:24:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F36D43D5D; Wed, 21 Jul 2004 12:24:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCOsKP034142; Wed, 21 Jul 2004 12:24:54 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCOsAP034138; Wed, 21 Jul 2004 12:24:54 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:24:54 GMT From: Kirill Ponomarew Message-Id: <200407211224.i6LCOsAP034138@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jeh@FreeBSD.org Subject: Re: ports/69372: sysutils/healthd: incorrect configure with WITHOUT_IPV6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:24:54 -0000 Synopsis: sysutils/healthd: incorrect configure with WITHOUT_IPV6 Responsible-Changed-From-To: freebsd-ports-bugs->jeh Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 12:24:44 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69372 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:25: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 4875B16A4CE; Wed, 21 Jul 2004 12:25:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A1D143D39; Wed, 21 Jul 2004 12:25:21 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCPLIH034215; Wed, 21 Jul 2004 12:25:21 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCPLhA034211; Wed, 21 Jul 2004 12:25:21 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:25:21 GMT From: Kirill Ponomarew Message-Id: <200407211225.i6LCPLhA034211@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, markus@FreeBSD.org Subject: Re: ports/69374: Update port: ports/sysutils/krename to 3.0.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, 21 Jul 2004 12:25:21 -0000 Synopsis: Update port: ports/sysutils/krename to 3.0.1 Responsible-Changed-From-To: freebsd-ports-bugs->markus Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 12:25:07 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69374 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:26: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 E26B816A4CF; Wed, 21 Jul 2004 12:26:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCB5E43D54; Wed, 21 Jul 2004 12:26:51 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCQp8V034420; Wed, 21 Jul 2004 12:26:51 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCQpHn034416; Wed, 21 Jul 2004 12:26:51 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:26:51 GMT From: Kirill Ponomarew Message-Id: <200407211226.i6LCQpHn034416@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org Subject: Re: ports/69368: [PATCH] devel/Spoon: update to 0.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:26:52 -0000 Synopsis: [PATCH] devel/Spoon: update to 0.17 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 12:26:41 GMT 2004 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=69368 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:29: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 D51C316A4CE; Wed, 21 Jul 2004 12:29:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B554843D2F; Wed, 21 Jul 2004 12:29:10 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCTAHr034646; Wed, 21 Jul 2004 12:29:10 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCTAD6034642; Wed, 21 Jul 2004 12:29:10 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:29:10 GMT From: Kirill Ponomarew Message-Id: <200407211229.i6LCTAD6034642@freefall.freebsd.org> To: flz@xbsd.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69377: net/libbt - update to version 1.03 and removal of useless dependancy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:29:11 -0000 Synopsis: net/libbt - update to version 1.03 and removal of useless dependancy State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Jul 21 12:29:04 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69377 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:29: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 ED4F516A4CF; Wed, 21 Jul 2004 12:29:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE6A643D1F; Wed, 21 Jul 2004 12:29:33 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LCTXSn034738; Wed, 21 Jul 2004 12:29:33 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCTXEX034734; Wed, 21 Jul 2004 12:29:33 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 12:29:33 GMT From: Volker Stolz Message-Id: <200407211229.i6LCTXEX034734@freefall.freebsd.org> To: mhsin@mhsin.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69195: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:29:34 -0000 Synopsis: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Wed Jul 21 12:29:11 GMT 2004 State-Changed-Why: Forwarded PR to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69195 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12: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 9DD5816A4CE for ; Wed, 21 Jul 2004 12:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BCD443D55 for ; Wed, 21 Jul 2004 12:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LCUOeo034892 for ; Wed, 21 Jul 2004 12:30:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCUOjM034891; Wed, 21 Jul 2004 12:30:24 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 12:30:24 GMT Message-Id: <200407211230.i6LCUOjM034891@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69195: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes 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, 21 Jul 2004 12:30:24 -0000 The following reply was made to PR ports/69195; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, mhsin@mhsin.org, harald.wille@students.jku.at Cc: Subject: Re: ports/69195: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes Date: Wed, 21 Jul 2004 14:28:55 +0200 Dear maintainer, please review the proposed patch! Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:30: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 AF3E216A4CF; Wed, 21 Jul 2004 12:30:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 918C343D45; Wed, 21 Jul 2004 12:30:45 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCUjQn035972; Wed, 21 Jul 2004 12:30:45 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCUjvf035968; Wed, 21 Jul 2004 12:30:45 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:30:45 GMT From: Kirill Ponomarew Message-Id: <200407211230.i6LCUjvf035968@freefall.freebsd.org> To: flz@xbsd.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69375: x11-wm/tpager - update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:30:45 -0000 Synopsis: x11-wm/tpager - update MASTER_SITES State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Jul 21 12:30:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69375 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:31: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 8587216A4CE; Wed, 21 Jul 2004 12:31:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 679F743D31; Wed, 21 Jul 2004 12:31:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCVsqg036174; Wed, 21 Jul 2004 12:31:54 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCVsBi036170; Wed, 21 Jul 2004 12:31:54 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:31:54 GMT From: Kirill Ponomarew Message-Id: <200407211231.i6LCVsBi036170@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org Subject: Re: ports/69366: [PATCH] devel/Spiffy: update to 0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:31:54 -0000 Synopsis: [PATCH] devel/Spiffy: update to 0.19 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 12:31:42 GMT 2004 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=69366 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:32: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 891C016A4CE; Wed, 21 Jul 2004 12:32:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CB6343D46; Wed, 21 Jul 2004 12:32:25 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCWPnj036254; Wed, 21 Jul 2004 12:32:25 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCWPIN036250; Wed, 21 Jul 2004 12:32:25 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:32:25 GMT From: Kirill Ponomarew Message-Id: <200407211232.i6LCWPIN036250@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org Subject: Re: ports/69367: [PATCH] devel/IO-All: update to 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: Wed, 21 Jul 2004 12:32:25 -0000 Synopsis: [PATCH] devel/IO-All: update to 0.30 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 12:32:14 GMT 2004 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=69367 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:36: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 4918816A4CE; Wed, 21 Jul 2004 12:36:05 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00DC143D62; Wed, 21 Jul 2004 12:36:03 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 489DC167522; Wed, 21 Jul 2004 14:36:02 +0200 (CEST) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i6LCZr8n007253 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 21 Jul 2004 14:35:54 +0200 (CEST) (envelope-from lofi@freebsd.org) From: Michael Nottebrock To: freebsd-ports-bugs@freebsd.org Date: Wed, 21 Jul 2004 14:35:49 +0200 User-Agent: KMail/1.6.2 References: <200407192055.i6JKtjt7018222@freefall.freebsd.org> <200407202222.31124.mranner@inode.at> In-Reply-To: <200407202222.31124.mranner@inode.at> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200407211435.53519.lofi@freebsd.org> X-Virus-Scanned: by amavisd-new cc: Michael Ranner Subject: Re: ports/69300: [MAINTAINER] irc/kvirc: update to 3.0.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, 21 Jul 2004 12:36:05 -0000 On Tuesday 20 July 2004 22:22, Michael Ranner wrote: > How can I fix this portlint warning, or can I safely ignore it? > > WARN: /usr/ports/irc/kvirc.update/pkg-plist [1236]: installing libtool > archives, please use USE_LIBTOOL in Makefile if possible If your port requires the libtool archives (most KDE software does at runtime), you can safely ignore it. However if it works without the libtool archives, you might as well use the system libtool and remove them from pkg-plist. -- ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:39: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 2D55F16A4CE; Wed, 21 Jul 2004 12:39:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA4B43D46; Wed, 21 Jul 2004 12:39:26 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCdP6u036671; Wed, 21 Jul 2004 12:39:25 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCdPkx036667; Wed, 21 Jul 2004 12:39:25 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:39:25 GMT From: Kirill Ponomarew Message-Id: <200407211239.i6LCdPkx036667@freefall.freebsd.org> To: matt@bsdfly.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69338: [maintainer update] all Matt Lancereau ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 12:39:26 -0000 Synopsis: [maintainer update] all Matt Lancereau ports State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Jul 21 12:39:17 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69338 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:42: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 DA2A116A4CE; Wed, 21 Jul 2004 12:42:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA79843D5A; Wed, 21 Jul 2004 12:42:36 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCgaAx037091; Wed, 21 Jul 2004 12:42:36 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCgaQM037087; Wed, 21 Jul 2004 12:42:36 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:42:36 GMT From: Kirill Ponomarew Message-Id: <200407211242.i6LCgaQM037087@freefall.freebsd.org> To: bogorodskiy@inbox.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69354: [ maintainer ] x11-wm/genmenu: update to 1.0.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, 21 Jul 2004 12:42:37 -0000 Synopsis: [ maintainer ] x11-wm/genmenu: update to 1.0.7 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Jul 21 12:42:31 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69354 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:43:33 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 1508A16A4E3; Wed, 21 Jul 2004 12:43:33 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFFEE43D2F; Wed, 21 Jul 2004 12:43:32 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id CDE83167677; Wed, 21 Jul 2004 14:43:31 +0200 (CEST) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i6LChN8n007295 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 21 Jul 2004 14:43:24 +0200 (CEST) (envelope-from lofi@freebsd.org) From: Michael Nottebrock To: freebsd-ports-bugs@freebsd.org Date: Wed, 21 Jul 2004 14:43:21 +0200 User-Agent: KMail/1.6.2 References: <200407192055.i6JKtjt7018222@freefall.freebsd.org> <200407202222.31124.mranner@inode.at> <200407211435.53519.lofi@freebsd.org> In-Reply-To: <200407211435.53519.lofi@freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200407211443.23080.lofi@freebsd.org> X-Virus-Scanned: by amavisd-new cc: Michael Ranner Subject: Re: ports/69300: [MAINTAINER] irc/kvirc: update to 3.0.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, 21 Jul 2004 12:43:33 -0000 On Wednesday 21 July 2004 14:35, Michael Nottebrock wrote: > On Tuesday 20 July 2004 22:22, Michael Ranner wrote: > > How can I fix this portlint warning, or can I safely ignore it? > > > > WARN: /usr/ports/irc/kvirc.update/pkg-plist [1236]: installing libtool > > archives, please use USE_LIBTOOL in Makefile if possible > > If your port requires the libtool archives (most KDE software does at > runtime), you can safely ignore it. However if it works without the libtool > archives, you might as well use the system libtool and remove them from > pkg-plist. Oh, and please don't include Makefile.kde, the include line was removed on purpose (I tried to send out notifications about this to all port maintainers of ports that did it, but missed yours - you noticed via freshports and asked about it on kde@freebsd.org). Also, when I removed that include, --with-freebsd-pthread did not do the right thing, hence I added the REINPLACE line in post-patch. If that part of the configure script did not change between 3.0.0 and 3.0.1, you will want to keep the REINPLACE instead of the built-in logic. -- ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:45: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 826DA16A4CE; Wed, 21 Jul 2004 12:45:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 658A043D45; Wed, 21 Jul 2004 12:45:06 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCj6Gg037225; Wed, 21 Jul 2004 12:45:06 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCj6UX037216; Wed, 21 Jul 2004 12:45:06 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:45:06 GMT From: Kirill Ponomarew Message-Id: <200407211245.i6LCj6UX037216@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/69351: Maintainer update gstreamer ffmpeg 0.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, 21 Jul 2004 12:45:06 -0000 Synopsis: Maintainer update gstreamer ffmpeg 0.8.1 Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 12:44:49 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69351 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:48: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 F061B16A4CF for ; Wed, 21 Jul 2004 12:48:05 +0000 (GMT) Received: from mail.vonostingroup.com (ip209-154.digitalrealm.net [216.144.209.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B51443D5C for ; Wed, 21 Jul 2004 12:48:03 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: (qmail 92201 invoked by uid 0); 21 Jul 2004 12:49:06 -0000 Received: from laszlof@vonostingroup.com by ritamari.vonostingroup.com by uid 89 with qmail-scanner-1.20 (clamuko: 0.65. spamassassin: 2.63. Clear:RC:1(192.168.1.100):. Processed in 0.882178 secs); 21 Jul 2004 12:49:06 -0000 Received: from unknown (HELO vonostingroup.com) (laszlof@vonostingroup.com@192.168.1.100) by 192.168.1.5 with SMTP; 21 Jul 2004 12:49:05 -0000 Message-ID: <40FE73F2.80501@vonostingroup.com> Date: Wed, 21 Jul 2004 08:47:30 -0500 From: Frank Laszlo User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <200407211120.i6LBKwcC024133@freefall.freebsd.org> In-Reply-To: <200407211120.i6LBKwcC024133@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------030204020700070501010608" cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69352: Fix for ports/61297 (readline 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: Wed, 21 Jul 2004 12:48:06 -0000 This is a multi-part message in MIME format. --------------030204020700070501010608 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Here is the patch in unified diff format. Maybe someone should point this at the maintainer for readline in base? Thanks. Frank Laszlo --------------030204020700070501010608 Content-Type: text/plain; name="readline.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="readline.patch" diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Sun Dec 28 05:32:48 2003 +++ readline/Makefile Wed Jul 21 08:46:39 2004 @@ -7,6 +7,7 @@ PORTNAME= readline PORTVERSION= 4.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ diff -rNU3 readline.old/files/patch-aa readline/files/patch-aa --- readline.old/files/patch-aa Wed Dec 31 19:00:00 1969 +++ readline/files/patch-aa Tue Jul 20 13:28:09 2004 @@ -0,0 +1,16 @@ +*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 +--- bind.c Wed Jul 31 09:11:18 2002 +*************** +*** 312,316 **** + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function /* && k.type == ISFUNC */) + { + map[ANYOTHERKEY] = k; +--- 312,316 ---- + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) + { + map[ANYOTHERKEY] = k; + --------------030204020700070501010608-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:48: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 6BD3516A4CF; Wed, 21 Jul 2004 12:48:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B66A43D53; Wed, 21 Jul 2004 12:48:33 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCmXmd037483; Wed, 21 Jul 2004 12:48:33 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCmXSn037479; Wed, 21 Jul 2004 12:48:33 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:48:33 GMT From: Kirill Ponomarew Message-Id: <200407211248.i6LCmXSn037479@freefall.freebsd.org> To: skynick@mail.sc.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69343: [maintainer update] ftp/bsdftpd-ssl from 1.0.1 to 1.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: Wed, 21 Jul 2004 12:48:33 -0000 Synopsis: [maintainer update] ftp/bsdftpd-ssl from 1.0.1 to 1.0.2 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Jul 21 12:48:28 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69343 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12: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 0044E16A4CE; Wed, 21 Jul 2004 12:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4A3843D5D; Wed, 21 Jul 2004 12:50:28 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LCoSGm037759; Wed, 21 Jul 2004 12:50:28 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LCoSHv037752; Wed, 21 Jul 2004 12:50:28 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 12:50:28 GMT From: Kirill Ponomarew Message-Id: <200407211250.i6LCoSHv037752@freefall.freebsd.org> To: umeno@rr.iij4u.or.jp, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69232: Maintainer Update: graphics/zphoto to 1.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, 21 Jul 2004 12:50:29 -0000 Synopsis: Maintainer Update: graphics/zphoto to 1.1 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Wed Jul 21 12:50:19 GMT 2004 State-Changed-Why: Superseded by ports/69363 http://www.freebsd.org/cgi/query-pr.cgi?pr=69232 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13:00: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 B42D416A4CE for ; Wed, 21 Jul 2004 13:00:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA5CB43D45 for ; Wed, 21 Jul 2004 13:00:39 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LD0dTs038540 for ; Wed, 21 Jul 2004 13:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LD0dXM038539; Wed, 21 Jul 2004 13:00:39 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 13:00:39 GMT Message-Id: <200407211300.i6LD0dXM038539@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Frank Laszlo Subject: Re: ports/69352: Fix for ports/61297 (readline port) 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, 21 Jul 2004 13:00:39 -0000 The following reply was made to PR ports/69352; it has been noted by GNATS. From: Frank Laszlo To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69352: Fix for ports/61297 (readline port) Date: Wed, 21 Jul 2004 08:52:05 -0500 This is a multi-part message in MIME format. --------------090607000307090409000609 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Here is the patch in unified diff format. Maybe someone should point this at the maintainer for readline in base? Thanks. Frank Laszlo --------------090607000307090409000609 Content-Type: text/plain; name="readline.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="readline.patch" diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Sun Dec 28 05:32:48 2003 +++ readline/Makefile Wed Jul 21 08:46:39 2004 @@ -7,6 +7,7 @@ PORTNAME= readline PORTVERSION= 4.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ diff -rNU3 readline.old/files/patch-aa readline/files/patch-aa --- readline.old/files/patch-aa Wed Dec 31 19:00:00 1969 +++ readline/files/patch-aa Tue Jul 20 13:28:09 2004 @@ -0,0 +1,16 @@ +*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 +--- bind.c Wed Jul 31 09:11:18 2002 +*************** +*** 312,316 **** + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function /* && k.type == ISFUNC */) + { + map[ANYOTHERKEY] = k; +--- 312,316 ---- + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) + { + map[ANYOTHERKEY] = k; + --------------090607000307090409000609-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13:00: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 AA83616A4CE for ; Wed, 21 Jul 2004 13:00:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 878A243D68 for ; Wed, 21 Jul 2004 13:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LD0eid038563 for ; Wed, 21 Jul 2004 13:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LD0eah038554; Wed, 21 Jul 2004 13:00:40 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 13:00:40 GMT Resent-Message-Id: <200407211300.i6LD0eah038554@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Florent Thoumie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7852516A4CE for ; Wed, 21 Jul 2004 12:54:03 +0000 (GMT) Received: from gw.xbsd.org (xbsd.org [81.56.254.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1F2043D2F for ; Wed, 21 Jul 2004 12:54:01 +0000 (GMT) (envelope-from flz@xbsd.org) Received: by gw.xbsd.org (Postfix, from userid 201) id B8B7D789; Wed, 21 Jul 2004 14:54:01 +0200 (CEST) Message-Id: <20040721125401.B8B7D789@gw.xbsd.org> Date: Wed, 21 Jul 2004 14:54:01 +0200 (CEST) From: Florent Thoumie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69378: sysutils/progsreiserfs - make it build correctly with gcc 3.4.1 and drop maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Florent Thoumie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 13:00:40 -0000 >Number: 69378 >Category: ports >Synopsis: sysutils/progsreiserfs - make it build correctly with gcc 3.4.1 and drop maintainership >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 Jul 21 13:00:39 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Florent Thoumie >Release: FreeBSD 4.9-RC i386 >Organization: Xbsd.org >Environment: System: FreeBSD gw 4.9-RC FreeBSD 4.9-RC #4: Sun Oct 5 14:25:09 CEST 2003 rf@gw:/usr/src/sys/compile/GW i386 >Description: Build with GCC 3.4.1. I'm dropping maintainership since I'm not actually using reiserfs. >How-To-Repeat: N/A >Fix: --- progsreiserfs.diff begins here --- diff -ruN progsreiserfs/Makefile progsreiserfs.new/Makefile --- progsreiserfs/Makefile Sun Jul 18 19:19:43 2004 +++ progsreiserfs.new/Makefile Wed Jul 21 14:48:03 2004 @@ -11,7 +11,7 @@ MASTER_SITES= http://www.cgsecurity.org/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/} -MAINTAINER= flz@xbsd.org +MAINTAINER= ports@FreeBSD.org COMMENT= Utilities and library to manipulate ReiserFS partitions LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt @@ -23,6 +23,7 @@ USE_REINPLACE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${PREFIX}/include" LDFLAGS="-L${PREFIX}/lib -lgnugetopt" +CONFIGURE_ARGS= --disable-debug MAN8= cpfs.reiserfs.8 mkfs.reiserfs.8 reiserfs.8 \ resizefs.reiserfs.8 tunefs.reiserfs.8 --- progsreiserfs.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13: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 1598916A4CE for ; Wed, 21 Jul 2004 13:00:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7BA643D68 for ; Wed, 21 Jul 2004 13:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LD0eAM038587 for ; Wed, 21 Jul 2004 13:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LD0e8P038586; Wed, 21 Jul 2004 13:00:40 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 13:00:40 GMT Resent-Message-Id: <200407211300.i6LD0e8P038586@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, UMENO Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 531AA16A4CE for ; Wed, 21 Jul 2004 12:55:03 +0000 (GMT) Received: from belldandy.unnumbered.net (gateway.unnumbered.net [61.197.240.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id B829043D4C for ; Wed, 21 Jul 2004 12:55:02 +0000 (GMT) (envelope-from umeno@belldandy.unnumbered.net) Received: from belldandy.unnumbered.net (localhost.unnumbered.net [127.0.0.1]) i6LCt1No088503 for ; Wed, 21 Jul 2004 21:55:01 +0900 (JST) (envelope-from umeno@belldandy.unnumbered.net) Received: (from umeno@localhost)i6LCt1Vd088502; Wed, 21 Jul 2004 21:55:01 +0900 (JST) (envelope-from umeno) Message-Id: <200407211255.i6LCt1Vd088502@belldandy.unnumbered.net> Date: Wed, 21 Jul 2004 21:55:01 +0900 (JST) From: UMENO Takashi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69379: Update port: x11/xlockmore to 5.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: UMENO Takashi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 13:00:41 -0000 >Number: 69379 >Category: ports >Synopsis: Update port: x11/xlockmore to 5.13 >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: Wed Jul 21 13:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 4.10-STABLE i386 >Organization: individual >Environment: System: FreeBSD belldandy.unnumbered.net 4.10-STABLE FreeBSD 4.10-STABLE #0: Tue Jul 13 05:35:24 JST 2004 umeno@belldandy.unnumbered.net:/usr/src/sys/compile/SAKUYA22 i386 >Description: Update port: x11/xlockmore to 5.13 >How-To-Repeat: N/A >Fix: diff -urN xlockmore.orig/Makefile xlockmore/Makefile --- xlockmore.orig/Makefile Fri Apr 30 23:04:59 2004 +++ xlockmore/Makefile Wed Jul 21 18:09:18 2004 @@ -6,7 +6,7 @@ # PORTNAME= xlockmore -PORTVERSION= 5.12 +PORTVERSION= 5.13 CATEGORIES?= x11 MASTER_SITES= ftp://ftp.tux.org/pub/tux/bagleyd/xlockmore/ diff -urN xlockmore.orig/distinfo xlockmore/distinfo --- xlockmore.orig/distinfo Fri Apr 30 23:04:59 2004 +++ xlockmore/distinfo Wed Jul 21 18:11:35 2004 @@ -1,2 +1,2 @@ -MD5 (xlockmore-5.12.tar.bz2) = f58758fa3757984edee42e141c7a80dc -SIZE (xlockmore-5.12.tar.bz2) = 1568824 +MD5 (xlockmore-5.13.tar.bz2) = c041992b87c0cfa187d945c6dde0d7b2 +SIZE (xlockmore-5.13.tar.bz2) = 1606402 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13:27:25 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 B751516A4CE; Wed, 21 Jul 2004 13:27:25 +0000 (GMT) Received: from prisma.rainbow-runner.nl (c7057.upc-c.chello.nl [212.187.7.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6162D43D49; Wed, 21 Jul 2004 13:27:25 +0000 (GMT) (envelope-from kwm@rainbow-runner.nl) Received: by prisma.rainbow-runner.nl (Postfix, from userid 2006) id 6599C20FA; Wed, 21 Jul 2004 15:24:11 +0200 (CEST) Received: from [192.168.1.5] (heater.rainbow-runner.nl [192.168.1.5]) by prisma.rainbow-runner.nl (Postfix) with ESMTP id 55912208A; Wed, 21 Jul 2004 15:24:06 +0200 (CEST) From: Koop Mast To: Kirill Ponomarew In-Reply-To: <200407211245.i6LCj6UX037216@freefall.freebsd.org> References: <200407211245.i6LCj6UX037216@freefall.freebsd.org> Content-Type: text/plain Date: Wed, 21 Jul 2004 13:26:34 +0000 Message-Id: <1090416394.328.7.camel@heater.rainbow-runner.nl> Mime-Version: 1.0 X-Mailer: Evolution 1.5.90FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on prisma.rainbow-runner.nl X-Spam-Level: X-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.63 cc: freebsd-ports-bugs@FreeBSD.org cc: lioux@FreeBSD.org Subject: Re: ports/69351: Maintainer update gstreamer ffmpeg 0.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, 21 Jul 2004 13:27:25 -0000 On Wed, 2004-07-21 at 12:45 +0000, Kirill Ponomarew wrote: > Synopsis: Maintainer update gstreamer ffmpeg 0.8.1 > > Responsible-Changed-From-To: freebsd-ports-bugs->lioux > Responsible-Changed-By: krion > Responsible-Changed-When: Wed Jul 21 12:44:49 GMT 2004 > Responsible-Changed-Why: > Over to maintainer. euh.... I think you didn't look good enough. root@heater:/usr/ports/multimedia/gstreamer-ffmpeg# make -V MAINTAINER kwm@rainbow-runner.nl Thanks, Koop From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13:29:23 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 7DD2616A4CE; Wed, 21 Jul 2004 13:29:23 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 420BA43D45; Wed, 21 Jul 2004 13:29:23 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.40 (FreeBSD)) id 1BnH9x-000Jtr-Uj; Wed, 21 Jul 2004 15:29:25 +0200 Date: Wed, 21 Jul 2004 15:29:25 +0200 From: Kirill Ponomarew To: Koop Mast Message-ID: <20040721132925.GD60692@voodoo.oberon.net> References: <200407211245.i6LCj6UX037216@freefall.freebsd.org> <1090416394.328.7.camel@heater.rainbow-runner.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GyRA7555PLgSTuth" Content-Disposition: inline In-Reply-To: <1090416394.328.7.camel@heater.rainbow-runner.nl> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports-bugs@FreeBSD.org cc: lioux@FreeBSD.org Subject: Re: ports/69351: Maintainer update gstreamer ffmpeg 0.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, 21 Jul 2004 13:29:23 -0000 --GyRA7555PLgSTuth Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Jul 21, 2004 at 01:26:34PM +0000, Koop Mast wrote: > On Wed, 2004-07-21 at 12:45 +0000, Kirill Ponomarew wrote: > > Synopsis: Maintainer update gstreamer ffmpeg 0.8.1 > >=20 > > Responsible-Changed-From-To: freebsd-ports-bugs->lioux=20 > > Responsible-Changed-By: krion > > Responsible-Changed-When: Wed Jul 21 12:44:49 GMT 2004 > > Responsible-Changed-Why:=20 > > Over to maintainer. >=20 > euh.... I think you didn't look good enough. >=20 > root@heater:/usr/ports/multimedia/gstreamer-ffmpeg# make -V MAINTAINER > kwm@rainbow-runner.nl Duh ! -Kirill --GyRA7555PLgSTuth Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/m+1QC1G6a60JuURApZRAJ0cKLh3+TznGO15HDqTcfArfHtW/wCbBpQZ NvhW+m8uUfhIQ1NmXTe4qlo= =7ETL -----END PGP SIGNATURE----- --GyRA7555PLgSTuth-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13:29: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 89C7116A4CE; Wed, 21 Jul 2004 13:29:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CDE243D1D; Wed, 21 Jul 2004 13:29:53 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6LDTr3B045441; Wed, 21 Jul 2004 13:29:53 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LDTr4I045437; Wed, 21 Jul 2004 13:29:53 GMT (envelope-from krion) Date: Wed, 21 Jul 2004 13:29:53 GMT From: Kirill Ponomarew Message-Id: <200407211329.i6LDTr4I045437@freefall.freebsd.org> To: krion@FreeBSD.org, lioux@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69351: Maintainer update gstreamer ffmpeg 0.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, 21 Jul 2004 13:29:53 -0000 Synopsis: Maintainer update gstreamer ffmpeg 0.8.1 Responsible-Changed-From-To: lioux->freebsd-ports-bugs Responsible-Changed-By: krion Responsible-Changed-When: Wed Jul 21 13:29:28 GMT 2004 Responsible-Changed-Why: lioux has nothing to do with this stuff. http://www.freebsd.org/cgi/query-pr.cgi?pr=69351 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 14:06: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 E907E16A4CE; Wed, 21 Jul 2004 14:06:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C889243D48; Wed, 21 Jul 2004 14:06:23 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LE6NwX053506; Wed, 21 Jul 2004 14:06:23 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LE6NMR053502; Wed, 21 Jul 2004 14:06:23 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 14:06:23 GMT From: Volker Stolz Message-Id: <200407211406.i6LE6NMR053502@freefall.freebsd.org> To: jeff@gudul.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69373: [patch] www/bricolage/Makefile typo breaking pkg tools X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 14:06:24 -0000 Synopsis: [patch] www/bricolage/Makefile typo breaking pkg tools State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Jul 21 14:06:11 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69373 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 14:12: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 6642116A4EE; Wed, 21 Jul 2004 14:12:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 413EA43D41; Wed, 21 Jul 2004 14:12:03 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6LEC3dX054029; Wed, 21 Jul 2004 14:12:03 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LEC27S054025; Wed, 21 Jul 2004 14:12:02 GMT (envelope-from edwin) Date: Wed, 21 Jul 2004 14:12:02 GMT From: Edwin Groothuis Message-Id: <200407211412.i6LEC27S054025@freefall.freebsd.org> To: umeno@rr.iij4u.or.jp, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69379: Update port: x11/xlockmore to 5.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: Wed, 21 Jul 2004 14:12:03 -0000 Synopsis: Update port: x11/xlockmore to 5.13 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Jul 21 14:11:35 GMT 2004 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69379 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 14:40: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 B5B1016A4CE for ; Wed, 21 Jul 2004 14:40:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93AB043D53 for ; Wed, 21 Jul 2004 14:40:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LEeKXu056933 for ; Wed, 21 Jul 2004 14:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LEeK1W056932; Wed, 21 Jul 2004 14:40:20 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 14:40:20 GMT Resent-Message-Id: <200407211440.i6LEeK1W056932@freefall.freebsd.org> 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 5513F16A4CE for ; Wed, 21 Jul 2004 14:32:47 +0000 (GMT) Received: from mx2.oav.net (mx2.oav.net [195.154.253.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2666143D48 for ; Wed, 21 Jul 2004 14:32:47 +0000 (GMT) (envelope-from kiwi@mx2.oav.net) Received: by mx2.oav.net (Postfix, from userid 1000) id 7A3714AC7C; Wed, 21 Jul 2004 16:32:43 +0200 (CEST) Message-Id: <20040721143243.7A3714AC7C@mx2.oav.net> Date: Wed, 21 Jul 2004 16:32:43 +0200 (CEST) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69380: [MAINTAINER] misc/libhome: update to 0.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, 21 Jul 2004 14:40:20 -0000 >Number: 69380 >Category: ports >Synopsis: [MAINTAINER] misc/libhome: update to 0.8.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 14:40:20 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 0.8.1 Changelog * make install fixed if libhome-preload.so is not avaiable * remove LDAP cache feature, too unstable in ldap libs. (from Oliver Eikemeier) Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- libhome-0.8.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/misc/libhome.old/Makefile /usr/ports/misc/libhome/Makefile --- /usr/ports/misc/libhome.old/Makefile Wed Jul 21 16:27:21 2004 +++ /usr/ports/misc/libhome/Makefile Wed Jul 21 16:27:32 2004 @@ -6,7 +6,7 @@ # PORTNAME= libhome -PORTVERSION= 0.8 +PORTVERSION= 0.8.1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pll diff -ruN --exclude=CVS /usr/ports/misc/libhome.old/distinfo /usr/ports/misc/libhome/distinfo --- /usr/ports/misc/libhome.old/distinfo Wed Jul 21 16:27:21 2004 +++ /usr/ports/misc/libhome/distinfo Wed Jul 21 16:27:40 2004 @@ -1,3 +1,2 @@ -MD5 (libhome-0.8.tar.gz) = e1f17acbceb22400695a8aec80a8fe16 -SIZE (libhome-0.8.tar.gz) = 254400 -SIZE (libhome-0.7.1.tar.gz) = 75288 +MD5 (libhome-0.8.1.tar.gz) = 44f06ff97b594741f0558efb51960d29 +SIZE (libhome-0.8.1.tar.gz) = 251512 --- libhome-0.8.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 14: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 0EA1716A4CF for ; Wed, 21 Jul 2004 14:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6D0043D5A for ; Wed, 21 Jul 2004 14:40:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LEeKd4056946 for ; Wed, 21 Jul 2004 14:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LEeKjD056945; Wed, 21 Jul 2004 14:40:20 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 14:40:20 GMT Resent-Message-Id: <200407211440.i6LEeKjD056945@freefall.freebsd.org> 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 8C85016A4CE for ; Wed, 21 Jul 2004 14:37:44 +0000 (GMT) Received: from mx2.oav.net (mx2.oav.net [195.154.253.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56EC843D55 for ; Wed, 21 Jul 2004 14:37:44 +0000 (GMT) (envelope-from kiwi@mx2.oav.net) Received: by mx2.oav.net (Postfix, from userid 1000) id 9500A4AC7C; Wed, 21 Jul 2004 16:37:43 +0200 (CEST) Message-Id: <20040721143743.9500A4AC7C@mx2.oav.net> Date: Wed, 21 Jul 2004 16:37:43 +0200 (CEST) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69381: [MAINTAINER] mail/lmtpd: update to 0.9.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 14:40:21 -0000 >Number: 69381 >Category: ports >Synopsis: [MAINTAINER] mail/lmtpd: update to 0.9.19 >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 Jul 21 14:40:20 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 0.9.19 ChangeLog * remove C90 mixed declarations and code in tre code. (thanks to Xavier Beaudouin) add missing ltld.* for tre. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- lmtpd-0.9.19.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/lmtpd.old/Makefile /usr/ports/mail/lmtpd/Makefile --- /usr/ports/mail/lmtpd.old/Makefile Wed Jul 21 16:33:34 2004 +++ /usr/ports/mail/lmtpd/Makefile Wed Jul 21 16:33:44 2004 @@ -6,7 +6,7 @@ # PORTNAME= lmtpd -PORTVERSION= 0.9.18 +PORTVERSION= 0.9.19 CATEGORIES= mail MASTER_SITES= ftp://ftp.oav.net/pll/ ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pll diff -ruN --exclude=CVS /usr/ports/mail/lmtpd.old/distinfo /usr/ports/mail/lmtpd/distinfo --- /usr/ports/mail/lmtpd.old/distinfo Wed Jul 21 16:33:34 2004 +++ /usr/ports/mail/lmtpd/distinfo Wed Jul 21 16:34:05 2004 @@ -1,2 +1,2 @@ -MD5 (lmtpd-0.9.18.tar.gz) = 45cc49c3b1bc85a3de35d2ada8f9fa1e -SIZE (lmtpd-0.9.18.tar.gz) = 446618 +MD5 (lmtpd-0.9.19.tar.gz) = 59cd761e6308c7be339033522ece5fbe +SIZE (lmtpd-0.9.19.tar.gz) = 446715 diff -ruN --exclude=CVS /usr/ports/mail/lmtpd.old/files/patch-re::re-tre.c /usr/ports/mail/lmtpd/files/patch-re::re-tre.c --- /usr/ports/mail/lmtpd.old/files/patch-re::re-tre.c Wed Jul 21 16:33:34 2004 +++ /usr/ports/mail/lmtpd/files/patch-re::re-tre.c Thu Jan 1 01:00:00 1970 @@ -1,31 +0,0 @@ ---- re/re-tre.c.orig Mon Jul 12 14:33:52 2004 -+++ re/re-tre.c Mon Jul 12 14:36:05 2004 -@@ -117,6 +117,7 @@ - static int re_exec(RE *re, char *string) { - regaparams_t regparams ; - regamatch_t regamatch = {0,}; -+ int ret; - - memcpy(®params, re->hint, sizeof(regaparams_t)); - -@@ -131,16 +132,17 @@ - regparams.max_err=1; - #endif - -- int ret = tre_regaexec(re->code, string, ®amatch, regparams, 0); -+ ret = tre_regaexec(re->code, string, ®amatch, regparams, 0); - return ret!=0; - } - - char *re_tre_params(RE *re, char *s) { -+ int *counter; -+ int end = 0; - regaparams_t *params = malloc(sizeof(regaparams_t)); - tre_regaparams_default(params); -- int *counter = ¶ms->max_err; -+ counter = ¶ms->max_err; - *counter = 1; -- int end = 0; - printf("s=%s\n", s); - while(*s && !end) { - if (*s>='0' && *s<='9') { --- lmtpd-0.9.19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 14:43: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 36BC416A4CE; Wed, 21 Jul 2004 14:43:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 191A243D48; Wed, 21 Jul 2004 14:43:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LEhiEk057091; Wed, 21 Jul 2004 14:43:44 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LEhieW057087; Wed, 21 Jul 2004 14:43:44 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 14:43:44 GMT From: Volker Stolz Message-Id: <200407211443.i6LEhieW057087@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/65360: Installation problem with flashplugin.tbz X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 14:43:45 -0000 Synopsis: Installation problem with flashplugin.tbz Responsible-Changed-From-To: freebsd-i386->freebsd-ports-bugs Responsible-Changed-By: vs Responsible-Changed-When: Wed Jul 21 14:43:02 GMT 2004 Responsible-Changed-Why: Ports issue http://www.freebsd.org/cgi/query-pr.cgi?pr=65360 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 15:15:18 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 9083216A4D5; Wed, 21 Jul 2004 15:15:18 +0000 (GMT) Received: from mail.tinkerbox.org (adsl-64-168-139-138.dsl.snfc21.pacbell.net [64.168.139.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3A7C43D4C; Wed, 21 Jul 2004 15:15:15 +0000 (GMT) (envelope-from bruno@tinkerbox.org) Received: from localhost (unknown [127.0.0.1]) by mail.tinkerbox.org (Postfix) with ESMTP id 10EAB18E4; Wed, 21 Jul 2004 15:15:15 +0000 (GMT) Received: from mail.tinkerbox.org ([127.0.0.1]) by localhost (router.bschwand.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 44483-01; Wed, 21 Jul 2004 08:15:05 -0700 (PDT) Received: from duron (unknown [192.168.137.4]) by mail.tinkerbox.org (Postfix) with ESMTP id A827018E3; Wed, 21 Jul 2004 08:15:04 -0700 (PDT) Date: Wed, 21 Jul 2004 08:15:04 -0700 (PDT) From: bruno schwander X-X-Sender: bruno@duron.bschwand.net To: Clement Laforet In-Reply-To: <200407152226.i6FMQSPe016946@freefall.freebsd.org> Message-ID: <20040721081328.S77701@duron.bschwand.net> References: <200407152226.i6FMQSPe016946@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at tinkerbox.org cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68731: new port: mod_proxy_html X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 15:15:18 -0000 Hi, looks like you can just bump the version of the port to 2.0, and update the distinfo. bruno On Thu, 15 Jul 2004, Clement Laforet wrote: > Synopsis: new port: mod_proxy_html > > State-Changed-From-To: open->feedback > State-Changed-By: clement > State-Changed-When: Thu Jul 15 22:24:49 GMT 2004 > State-Changed-Why: > Hi, > > The chechsums mismatch: > MD5 (mod_proxy_html.c) = a7a2bb9c24ee548ea9b16c35e7cab76a > vs > MD5 (mod_proxy_html.c) = b1828fb7fb9305ef14c583c99e1fed02 > According to the website, 2.0 was released. > Can you please investigate? > > clem > > http://www.freebsd.org/cgi/query-pr.cgi?pr=68731 > From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 15:20: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 5E3B616A4CE for ; Wed, 21 Jul 2004 15:20:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5374343D5A for ; Wed, 21 Jul 2004 15:20:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LFKHLG062215 for ; Wed, 21 Jul 2004 15:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LFKH7C062214; Wed, 21 Jul 2004 15:20:17 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 15:20:17 GMT Resent-Message-Id: <200407211520.i6LFKH7C062214@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yonatan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BFDF16A4CE for ; Wed, 21 Jul 2004 15:11:49 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D7A743D54 for ; Wed, 21 Jul 2004 15:11:49 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6LFBn02068931 for ; Wed, 21 Jul 2004 15:11:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6LFBnmZ068930; Wed, 21 Jul 2004 15:11:49 GMT (envelope-from nobody) Message-Id: <200407211511.i6LFBnmZ068930@www.freebsd.org> Date: Wed, 21 Jul 2004 15:11:49 GMT From: Yonatan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69382: new port: secure/pft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 15:20:17 -0000 >Number: 69382 >Category: ports >Synopsis: new port: secure/pft >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 Jul 21 15:20:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yonatan >Release: 4.10 >Organization: N/A >Environment: 4.10-STABLE FreeBSD 4.10-STABLE #1 >Description: Penetration Testing tool for JPL on HP printers. Mind the license: http://www.phenoelit.de/fr/license.html >How-To-Repeat: N/A >Fix: http://j.xpert.com/FreeBSD/ports/pft.shar >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 15: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 B923D16A4CE for ; Wed, 21 Jul 2004 15:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8741743D1F for ; Wed, 21 Jul 2004 15:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LFeO3E063811 for ; Wed, 21 Jul 2004 15:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LFeOoI063810; Wed, 21 Jul 2004 15:40:24 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 15:40:24 GMT Message-Id: <200407211540.i6LFeOoI063810@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Brandon D. Valentine" Subject: Re: ports/69299: [PATCH] missing dependency for www/linux-flashplugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Brandon D. Valentine" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 15:40:24 -0000 The following reply was made to PR ports/69299; it has been noted by GNATS. From: "Brandon D. Valentine" To: Volker Stolz Cc: freebsd-gnats-submit@freebsd.org, ports@fsck.ch Subject: Re: ports/69299: [PATCH] missing dependency for www/linux-flashplugin Date: Wed, 21 Jul 2004 10:31:59 -0500 On Mon, Jul 19, 2004 at 10:11:41PM +0300, Volker Stolz wrote: > Dear maintainer, please review the proposed patch! There is no such dependency on devel/linuxthreads. 506 dallben:/home/bandix% pkg_info -r `pkg_glob linuxpluginwrapper` Information for linuxpluginwrapper-20040310_1: Depends on: Dependency: pkgconfig-0.15.0_1 Dependency: perl-5.8.4 Dependency: freetype2-2.1.7_3 Dependency: linux_base-7.1_7 Dependency: expat-1.95.7 Dependency: imake-4.3.0_2 Dependency: fontconfig-2.2.3,1 Dependency: XFree86-libraries-4.3.0_7 Dependency: open-motif-2.2.2_2 Dependency: acroread-5.08 Dependency: linux-flashplugin-6.0r79 507 dallben:/home/bandix% pkg_info | grep linuxthreads 508 dallben:/home/bandix% Plugin works just fine in Mozilla. It is my belief that the submitter has misconfigured his libmap.conf(5), not following the recommendations of linuxpluginwrapper's pkg-message. Unless the submitter can provide some proof (i.e. ldd output) supporting his claim of a linuxthreads dependency, I am going to reject this patch. Thanks, Brandon D. Valentine -- brandon@dvalentine.com http://www.geekpunk.net Pseudo-Random Googlism: beer is now a health food From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 16:10: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 E76D416A4CE for ; Wed, 21 Jul 2004 16:10:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC24943D31 for ; Wed, 21 Jul 2004 16:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LGACH5068654 for ; Wed, 21 Jul 2004 16:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LGACAT068653; Wed, 21 Jul 2004 16:10:12 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 16:10:12 GMT Resent-Message-Id: <200407211610.i6LGACAT068653@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A63016A4CE for ; Wed, 21 Jul 2004 16:04:59 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0A4843D1D for ; Wed, 21 Jul 2004 16:04:58 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (212.90.234.173) by mail.tiscali.cz (6.7.021) id 40AE2ED3016F7B50 for FreeBSD-gnats-submit@freebsd.org; Wed, 21 Jul 2004 18:04:57 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BnBL5-000KGt-PX for ; Wed, 21 Jul 2004 09:16:31 +0200 Message-Id: Date: Wed, 21 Jul 2004 09:16:31 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69384: [PATCH] databases/edb: 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: Wed, 21 Jul 2004 16:10:13 -0000 >Number: 69384 >Category: ports >Synopsis: [PATCH] databases/edb: 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: Wed Jul 21 16:10:12 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #8: Tue Jul 20 20:32:29 CEST 2004 >Description: distfile was bzip2ed and moved to my server because sf.net mirrors has two different files with the same name. pkg-plist merged into makefile added .la file to pkglist Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- edb-1.0.3_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/edb/Makefile /home/hsn/hacked/edb/Makefile --- /usr/ports/databases/edb/Makefile Tue Jun 22 19:20:36 2004 +++ /home/hsn/hacked/edb/Makefile Wed Jul 21 09:06:28 2004 @@ -9,20 +9,20 @@ PORTVERSION= 1.0.3 PORTREVISION= 1 CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= enlightenment +MASTER_SITES= http://people.tecnik93.com/~radim/tarballs/ MAINTAINER= ports@FreeBSD.org COMMENT= Enlightenment Database Library -BROKEN= checksum mismatch -EXPIRATION_DATE=2004-08-20 -DEPRECATED= ${BROKEN} - USE_LIBTOOL_VER= 13 USE_GNOME= gtk12 INSTALLS_SHLIB= yes USE_REINPLACE= yes +USE_BZIP2= yes + +PLIST_FILES= bin/edb_ed bin/edb_gtk_ed bin/edb_vt_ed bin/edb-config \ + include/Edb.h lib/libedb.a lib/libedb.la lib/libedb.so \ + lib/libedb.so.1 post-patch: @${REINPLACE_CMD} -e 's|gtk-config|${GTK_CONFIG}|g' ${WRKSRC}/configure \ diff -ruN --exclude=CVS /usr/ports/databases/edb/distinfo /home/hsn/hacked/edb/distinfo --- /usr/ports/databases/edb/distinfo Tue Feb 3 16:09:24 2004 +++ /home/hsn/hacked/edb/distinfo Wed Jul 21 09:02:03 2004 @@ -1,2 +1,2 @@ -MD5 (edb-1.0.3.tar.gz) = eb2a0e0eb8876b817e01427d1f09f838 -SIZE (edb-1.0.3.tar.gz) = 464253 +MD5 (edb-1.0.3.tar.bz2) = bf5db4dbb2cb612cd3d587d5688c294b +SIZE (edb-1.0.3.tar.bz2) = 348400 diff -ruN --exclude=CVS /usr/ports/databases/edb/pkg-plist /home/hsn/hacked/edb/pkg-plist --- /usr/ports/databases/edb/pkg-plist Sun Nov 4 11:01:36 2001 +++ /home/hsn/hacked/edb/pkg-plist Thu Jan 1 01:00:00 1970 @@ -1,8 +0,0 @@ -bin/edb_ed -bin/edb_gtk_ed -bin/edb_vt_ed -bin/edb-config -include/Edb.h -lib/libedb.a -lib/libedb.so -lib/libedb.so.1 --- edb-1.0.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 17:10: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 6887116A4CE for ; Wed, 21 Jul 2004 17:10:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CED343D3F for ; Wed, 21 Jul 2004 17:10:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LHAEnq075900 for ; Wed, 21 Jul 2004 17:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LHAEBq075899; Wed, 21 Jul 2004 17:10:14 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 17:10:14 GMT Resent-Message-Id: <200407211710.i6LHAEBq075899@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olafur Osvaldsson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96CE016A4CE for ; Wed, 21 Jul 2004 17:04:34 +0000 (GMT) Received: from aker.isnic.is (aker.isnic.is [193.4.58.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3129243D1D for ; Wed, 21 Jul 2004 17:04:34 +0000 (GMT) (envelope-from root@aker.isnic.is) Received: by aker.isnic.is (Postfix, from userid 0) id E96A28A1E4; Wed, 21 Jul 2004 17:04:32 +0000 (GMT) Message-Id: <20040721170432.E96A28A1E4@aker.isnic.is> Date: Wed, 21 Jul 2004 17:04:32 +0000 (GMT) From: Olafur Osvaldsson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: marius@isnic.is Subject: ports/69385: dns/nsd: Changing signals used for bind8 stats X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Olafur Osvaldsson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 17:10:14 -0000 >Number: 69385 >Category: ports >Synopsis: dns/nsd: Changing signals used for bind8 stats >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 Jul 21 17:10:13 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Olafur Osvaldsson >Release: FreeBSD 5.2.1-RELEASE-p4 i386 >Organization: ISNIC >Environment: System: FreeBSD aker.isnic.is 5.2.1-RELEASE-p4 FreeBSD 5.2.1-RELEASE-p4 #6: Wed Mar 31 09:08:35 GMT 2004 oli@aker.isnic.is:/usr/obj/usr/src/sys/HP360 i386 >Description: nsd is using SIGILL to determine if it should print out bind8 stats to the log. This will not work if nsd is running as an unprivileged user. >How-To-Repeat: Make the port with WITH_BIND8_STATS, start as an unprivileged user and run "kill -SIGILL `cat /var/run/nsd.pid`" The prog will log the following to syslog: nsd[66215]: problems killing 66219: Operation not permitted 66215 being the parent process and 66219 a child process. >Fix: SIGILL is not allowed for "tainted" processes so a non-restricted signal should be used. I've contacted the developers and the patch attached is from them and will be included in a future update. The patch changes SIGILL to SIGUSR1. --- nsd.diff begins here --- diff -ruN nsd.orig/Makefile nsd/Makefile --- nsd.orig/Makefile Fri Jul 2 22:14:06 2004 +++ nsd/Makefile Wed Jul 21 16:42:25 2004 @@ -7,6 +7,7 @@ PORTNAME= nsd PORTVERSION= 2.1.1 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ diff -ruN nsd.orig/files/patch-aa nsd/files/patch-aa --- nsd.orig/files/patch-aa Thu Jan 1 00:00:00 1970 +++ nsd/files/patch-aa Wed Jul 21 16:51:09 2004 @@ -0,0 +1,110 @@ +Index: nsd.8 +=================================================================== +RCS file: /cvs/nsd/nsd.8,v +retrieving revision 1.28 +retrieving revision 1.28.2.1 +diff -u -r1.28 -r1.28.2.1 +--- nsd.8 22 Apr 2004 13:23:05 -0000 1.28 ++++ nsd.8 21 Jul 2004 16:31:50 -0000 1.28.2.1 +@@ -158,7 +158,7 @@ + .Ar seconds + seconds. + This is equal to sending +-.Em SIGILL ++.Em SIGUSR1 + to the daemon periodically. + + .It Fl t Ar chroot +@@ -208,7 +208,7 @@ + Stop answering queries, shutdown, and exit normally. + .It Dv SIGHUP + Reload the database. +-.It Dv SIGILL ++.It Dv SIGUSR1 + Dump BIND8-style statistics into the log. Ignored otherwise. + .El + .\" .Sh IMPLEMENTATION NOTES +Index: nsd.c +=================================================================== +RCS file: /cvs/nsd/nsd.c,v +retrieving revision 1.105 +retrieving revision 1.105.2.1 +diff -u -r1.105 -r1.105.2.1 +--- nsd.c 22 Apr 2004 13:23:06 -0000 1.105 ++++ nsd.c 21 Jul 2004 16:31:54 -0000 1.105.2.1 +@@ -218,6 +218,7 @@ + nsd.mode = NSD_QUIT; + break; + case SIGILL: ++ case SIGUSR1: /* Dump stats on SIGUSR1. */ + nsd.mode = NSD_STATS; + break; + default: +@@ -237,8 +238,17 @@ + #ifdef BIND8_STATS + alarm(nsd.st.period); + #endif +- sig = SIGILL; ++ sig = SIGUSR1; ++ break; + case SIGILL: ++ /* ++ * For backwards compatibility with BIND 8 and older ++ * versions of NSD. ++ */ ++ sig = SIGUSR1; ++ break; ++ case SIGUSR1: ++ /* Dump statistics. */ + break; + case SIGINT: + /* Silent shutdown... */ +@@ -248,6 +258,7 @@ + default: + nsd.mode = NSD_SHUTDOWN; + log_msg(LOG_WARNING, "signal %d received, shutting down...", sig); ++ sig = SIGTERM; + break; + } + +@@ -724,6 +735,7 @@ + sigaction(SIGHUP, &action, NULL); + sigaction(SIGINT, &action, NULL); + sigaction(SIGILL, &action, NULL); ++ sigaction(SIGUSR1, &action, NULL); + sigaction(SIGALRM, &action, NULL); + sigaction(SIGCHLD, &action, NULL); + action.sa_handler = SIG_IGN; +Index: nsdc.sh.in +=================================================================== +RCS file: /cvs/nsd/nsdc.sh.in,v +retrieving revision 1.30 +retrieving revision 1.30.2.1 +diff -u -r1.30 -r1.30.2.1 +--- nsdc.sh.in 22 Apr 2004 13:39:47 -0000 1.30 ++++ nsdc.sh.in 21 Jul 2004 16:31:56 -0000 1.30.2.1 +@@ -89,7 +89,7 @@ + signal "TERM" + ;; + stats) +- signal "ILL" ++ signal "USR1" + ;; + reload) + signal "HUP" +Index: server.c +=================================================================== +RCS file: /cvs/nsd/server.c,v +retrieving revision 1.123 +retrieving revision 1.123.2.1 +diff -u -r1.123 -r1.123.2.1 +--- server.c 12 May 2004 14:45:35 -0000 1.123 ++++ server.c 21 Jul 2004 16:32:00 -0000 1.123.2.1 +@@ -623,6 +623,7 @@ + sigemptyset(&block_sigmask); + sigaddset(&block_sigmask, SIGHUP); + sigaddset(&block_sigmask, SIGILL); ++ sigaddset(&block_sigmask, SIGUSR1); + sigaddset(&block_sigmask, SIGINT); + sigaddset(&block_sigmask, SIGTERM); + sigprocmask(SIG_BLOCK, &block_sigmask, &default_sigmask); --- nsd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 17:10: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 CB60216A4CE for ; Wed, 21 Jul 2004 17:10:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFF1A43D53 for ; Wed, 21 Jul 2004 17:10:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LHAETv075913 for ; Wed, 21 Jul 2004 17:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LHAEhK075912; Wed, 21 Jul 2004 17:10:14 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 17:10:14 GMT Resent-Message-Id: <200407211710.i6LHAEhK075912@freefall.freebsd.org> 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 DCA1016A4CF for ; Wed, 21 Jul 2004 17:04:58 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACB8443D2F for ; Wed, 21 Jul 2004 17:04:58 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 50373154EB for ; Thu, 22 Jul 2004 01:06:26 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 63212-03 for ; Thu, 22 Jul 2004 01:06:25 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id B0FDA154EA; Thu, 22 Jul 2004 01:06:25 +0800 (CST) Message-Id: <20040721170625.B0FDA154EA@mail.dragon2.net> Date: Thu, 22 Jul 2004 01:06:25 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69386: [MAINTAINER] textproc/dbacl: update 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, 21 Jul 2004 17:10:15 -0000 >Number: 69386 >Category: ports >Synopsis: [MAINTAINER] textproc/dbacl: update to 1.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 17:10:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.7 - Add doc/costs.ps Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- dbacl-1.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/dbacl/Makefile /home/clsung/dbacl/Makefile --- /usr/ports/textproc/dbacl/Makefile Thu Jan 1 09:49:38 2004 +++ /home/clsung/dbacl/Makefile Thu Jul 22 01:00:49 2004 @@ -6,7 +6,7 @@ # PORTNAME= dbacl -PORTVERSION= 1.6 +PORTVERSION= 1.7 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -23,7 +23,8 @@ PROGRAMS= bayesol dbacl mailinspect SCRIPTS= mailcross mailtoe mailfoot MAN1= bayesol.1 dbacl.1 mailcross.1 mailinspect.1 mailtoe.1 mailfoot.1 -DOCS= AUTHORS ChangeLog README doc/dbacl.ps doc/email.html doc/tutorial.html +DOCS= AUTHORS ChangeLog README doc/dbacl.ps \ + doc/email.html doc/tutorial.html doc/costs.ps EXAMPLES= sample*.txt japanese.txt example*.risk toy.risk prop.pl pre-install: diff -ruN --exclude=CVS /usr/ports/textproc/dbacl/distinfo /home/clsung/dbacl/distinfo --- /usr/ports/textproc/dbacl/distinfo Thu Apr 1 16:40:57 2004 +++ /home/clsung/dbacl/distinfo Thu Jul 22 00:48:53 2004 @@ -1,2 +1,2 @@ -MD5 (dbacl-1.6.tar.gz) = 6efaaa314d43b4bb89bec5217474609e -SIZE (dbacl-1.6.tar.gz) = 426136 +MD5 (dbacl-1.7.tar.gz) = 187612c287786953799937daa652bffd +SIZE (dbacl-1.7.tar.gz) = 565904 diff -ruN --exclude=CVS /usr/ports/textproc/dbacl/pkg-plist /home/clsung/dbacl/pkg-plist --- /usr/ports/textproc/dbacl/pkg-plist Thu Jan 1 09:49:38 2004 +++ /home/clsung/dbacl/pkg-plist Thu Jul 22 01:04:26 2004 @@ -8,6 +8,7 @@ %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/costs.ps %%PORTDOCS%%%%DOCSDIR%%/dbacl.ps %%PORTDOCS%%%%DOCSDIR%%/email.html %%PORTDOCS%%%%DOCSDIR%%/tutorial.html --- dbacl-1.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 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 24CFC16A4CF for ; Wed, 21 Jul 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 181D643D5C for ; Wed, 21 Jul 2004 18:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LIKNQW082715 for ; Wed, 21 Jul 2004 18:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LIKNLT082714; Wed, 21 Jul 2004 18:20:23 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 18:20:23 GMT Resent-Message-Id: <200407211820.i6LIKNLT082714@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Thiel Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72EA016A4CE for ; Wed, 21 Jul 2004 18:11:24 +0000 (GMT) Received: from redundancy.redundancy.org (redundancy.redundancy.org [198.144.201.242]) by mx1.FreeBSD.org (Postfix) with SMTP id 0803843D31 for ; Wed, 21 Jul 2004 18:11:24 +0000 (GMT) (envelope-from lx@redundancy.redundancy.org) Received: (qmail 93312 invoked by uid 1000); 21 Jul 2004 18:11:41 -0000 Message-Id: <20040721181141.93311.qmail@redundancy.redundancy.org> Date: 21 Jul 2004 18:11:41 -0000 From: David Thiel To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: krion@FreeBSD.org Subject: ports/69387: Update: security/samhain 1.8.9 -> 1.8.10b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Thiel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 18:20:24 -0000 >Number: 69387 >Category: ports >Synopsis: Update: security/samhain 1.8.9 -> 1.8.10b >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 Jul 21 18:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: David Thiel >Release: FreeBSD 4.9-STABLE i386 >Organization: >Environment: System: FreeBSD redundancy.redundancy.org 4.9-STABLE FreeBSD 4.9-STABLE #15: Wed Nov 19 21:41:32 PST 2003 lx@redundancy.redundancy.org:/usr/obj/usr/src/sys/REDUNDANCY i386 >Description: Port changes: Add OPTIONS menu, remove most tunable info from comments. Change variable names to use the "WITH_*" standard. 1.8.10b info: Fixed FreeBSD make issue in the 1.8.10 release, fixes for default GrowingLogFiles policy, bugfixes in signal handling and kernel checking. See docs/Changelog for details. >How-To-Repeat: >Fix: diff -ruN samhain.old/Makefile samhain/Makefile --- samhain.old/Makefile Tue Jul 20 11:01:17 2004 +++ samhain/Makefile Wed Jul 21 10:27:21 2004 @@ -5,40 +5,19 @@ # $FreeBSD: ports/security/samhain/Makefile,v 1.16 2004/06/21 19:09:14 pav Exp $ # # -# This port recognizes the following tunables: +# This port recognizes the following non-binary tunables: # -# RUNAS_USER: -# The username of the account Yule will run as. Usually just "yule". -# -# WITH_GPG: -# Instructs the port to sign configuration files using the -# GNU Privacy Guard. -# -# WITH_KCHECK: -# Enable support for rogue kernel module detection. -# -# WITH_MYSQL: -# Enable support for logging to a MySQL database. Due to there -# being multiple current versions of MySQL, dependency for this -# is NOT checked. -# -# WITH_POSTGRESQL: -# Enable support for logging to a Postgres database. Untested. -# -# WITH_LIBWRAP: -# Enable support for TCP wrappers. -# -# SERVER: -# Builds as Yule, Samhain's central logging server. Mutually exclusive -# with CLIENT. -# -# CLIENT: -# Builds as a client to Yule. Fetches configuration files -# and signature database from LOG_SERVER, and optionally, ALT_LOG_SERVER. +# WITH_RUNAS_USER: +# Whe building with "WITH_SERVER" defined, the username of the +# account Yule will run as. Defaults to "yule". +# +# WITH_LOG_SERVER, WITH_ALT_LOG_SERVER. When "WITH_CLIENT" is defined, +# these specify what server the client will fetch configuration +# and database files from. This can also be defined at runtime. # PORTNAME= samhain -PORTVERSION= 1.8.9 +PORTVERSION= 1.8.10b CATEGORIES= security MASTER_SITES= http://la-samhna.de/archive/ \ http://cold.darkambient.net/ @@ -47,6 +26,15 @@ MAINTAINER= lx@redundancy.redundancy.org COMMENT= The Samhain Intrusion Detection System +OPTIONS= KCHECK "Enable rogue KLD detection" on \ + GPG "Enable GnuPG support" off \ + MYSQL "Enable MySQL logging" off \ + POSTGRESQL "Enable PostgreSQL logging" off \ + LIBWRAP "Enable TCP wrapper support" on \ + CLIENT "Build as Samhain network client" off \ + SERVER "Build as Yule network server" off + +.include .if defined(WITH_GPG) BUILD_DEPENDS= gpg:${PORTSDIR}/security/gnupg .endif @@ -55,8 +43,8 @@ CONFIGURE_ARGS= --enable-login-watch --localstatedir=/var \ --mandir=${PREFIX}/man --enable-suidcheck -.if defined(RUNAS_USER) -CONFIGURE_ARGS+= --enable-identity=${RUNAS_USER} +.if defined(WITH_RUNAS_USER) +CONFIGURE_ARGS+= --enable-identity=${WITH_RUNAS_USER} .endif .if defined(WITH_KCHECK) CONFIGURE_ARGS+= --with-kcheck @@ -75,7 +63,7 @@ .if defined(WITH_LIBWRAP) CONFIGURE_ARGS+= --with-libwrap .endif -.if defined(CLIENT) +.if defined(WITH_CLIENT) CONFIGURE_ARGS+= --enable-network=client \ --with-data-file=REQ_FROM_SERVER/var/lib/samhain/data.samhain \ --with-config-file=REQ_FROM_SERVER @@ -83,7 +71,7 @@ EXTRA_PATCHES+= ${FILESDIR}/fixsamhainrc.patch MAN5= samhainrc.5 MAN8= samhain.8 -.elif defined(SERVER) +.elif defined(WITH_SERVER) CONFIGURE_ARGS+= --enable-network=server PLIST_SUB+= YULE="" SAMHAIN="@comment " SETPWD="@comment " EXTRA_PATCHES+= ${FILESDIR}/fixyulerc.patch @@ -95,24 +83,25 @@ MAN5= samhainrc.5 MAN8= samhain.8 .endif -.if defined(LOG_SERVER) -CONFIGURE_ARGS+= --with-logserver=${LOG_SERVER} +.if defined(WITH_LOG_SERVER) +CONFIGURE_ARGS+= --with-logserver=${WITH_LOG_SERVER} .endif -.if defined(ALT_LOG_SERVER) -CONFIGURE_ARGS+= --with-altlogserver=${ALT_LOG_SERVER} +.if defined(WITH_ALT_LOG_SERVER) +CONFIGURE_ARGS+= --with-altlogserver=${WITH_ALT_LOG_SERVER} .endif pre-everything:: -.if !defined(CLIENT) && !defined(SERVER) +.if !defined(WITH_CLIENT) && !defined(WITH_SERVER) @${ECHO_MSG} @${ECHO_MSG} "Building in standalone mode." @${ECHO_MSG} "If you wish to enable networked mode, please hit CTRL-C" - @${ECHO_MSG} "now and make with SERVER=yes or CLIENT=yes." + @${ECHO_MSG} "now, review the options in the Makefile, and make" + @${ECHO_MSG} "with WITH_SERVER=yes or WITH_CLIENT=yes." @${ECHO_MSG} .endif -.if defined(CLIENT) && defined(SERVER) +.if defined(WITH_CLIENT) && defined(WITH_SERVER) @${ECHO_MSG} @${ECHO_MSG} "Can't build client and server at once!" @${ECHO_MSG} @@ -132,7 +121,7 @@ @${RM} ${WRKSRC}.tar.gz ${WRKSRC}.tar.gz.asc post-install: -.if !defined(SERVER) +.if !defined(WITH_SERVER) @${CP} ${WRKSRC}/init/samhain.startFreeBSD ${PREFIX}/etc/rc.d/samhain.sh.sample .else @${CP} ${WRKSRC}/init/samhain.startFreeBSD ${PREFIX}/etc/rc.d/yule.sh.sample @@ -148,4 +137,4 @@ install-user: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} install-user) -.include +.include diff -ruN samhain.old/distinfo samhain/distinfo --- samhain.old/distinfo Tue Jul 20 11:01:17 2004 +++ samhain/distinfo Wed Jul 21 10:15:49 2004 @@ -1,2 +1,2 @@ -MD5 (samhain_signed-1.8.9.tar.gz) = 042b5bbee89d219dd9ac1f0043e29a64 -SIZE (samhain_signed-1.8.9.tar.gz) = 929295 +MD5 (samhain_signed-1.8.10b.tar.gz) = f7c638e6989cb44287e814cf008877cd +SIZE (samhain_signed-1.8.10b.tar.gz) = 972170 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 18: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 4F8DC16A4D4 for ; Wed, 21 Jul 2004 18:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BD1943D4C for ; Wed, 21 Jul 2004 18:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LIeLRs084293 for ; Wed, 21 Jul 2004 18:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LIeLd8084292; Wed, 21 Jul 2004 18:40:21 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 18:40:21 GMT Resent-Message-Id: <200407211840.i6LIeLd8084292@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE86A16A4CE for ; Wed, 21 Jul 2004 18:37:26 +0000 (GMT) Received: from imf23aec.mail.bellsouth.net (imf23aec.mail.bellsouth.net [205.152.59.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 486E543D4C for ; Wed, 21 Jul 2004 18:37:26 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf23aec.mail.bellsouth.netESMTP <20040721183725.FOBS1779.imf23aec.mail.bellsouth.net@gentoo.ahze.net> for ; Wed, 21 Jul 2004 14:37:25 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6LIbNvR096193; Wed, 21 Jul 2004 14:37:23 -0400 (EDT) (envelope-from ahze) Message-Id: <200407211837.i6LIbNvR096193@gentoo.ahze.net> Date: Wed, 21 Jul 2004 14:37:23 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69388: [MAINTAINER] audio/faac: [Remove windows stuff and fix for gstreamer-plugins] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 18:40:23 -0000 >Number: 69388 >Category: ports >Synopsis: [MAINTAINER] audio/faac: [Remove windows stuff and fix for gstreamer-plugins] >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 Jul 21 18:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Remove windows stuff and fix so faac will compile with gstreamer-plugins Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- faac-1.24_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/faac.orig/Makefile /usr/ports/audio/faac/Makefile --- /usr/ports/audio/faac.orig/Makefile Wed Jul 21 13:59:39 2004 +++ /usr/ports/audio/faac/Makefile Wed Jul 21 14:10:51 2004 @@ -7,6 +7,7 @@ PORTNAME= faac PORTVERSION= 1.24 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= faac @@ -31,6 +32,7 @@ pre-patch: build-depends post-patch: + @${ECHO_CMD} "" >>${WRKSRC}/libfaac/psych.h @cd ${WRKSRC}; ${ACLOCAL} -I .; \ ${SETENV} ${SCRIPTS_ENV} ${LIBTOOLIZE} --automake @${REINPLACE_CMD} -e 's|$$lt_target|$$host|' \ diff -ruN --exclude=CVS /usr/ports/audio/faac.orig/files/patch-gcc /usr/ports/audio/faac/files/patch-gcc --- /usr/ports/audio/faac.orig/files/patch-gcc Wed Dec 31 19:00:00 1969 +++ /usr/ports/audio/faac/files/patch-gcc Wed Jul 21 14:09:29 2004 @@ -0,0 +1,79 @@ +--- include/faac.h.orig Mon Nov 24 13:10:32 2003 ++++ include/faac.h Wed Jul 21 14:00:09 2004 +@@ -36,7 +36,6 @@ + # endif + #endif + +-#pragma pack(push, 1) + + typedef struct { + void *ptr; +@@ -77,16 +76,11 @@ + unsigned long *pSizeOfDecoderSpecificInfo); + + +-int FAACAPI faacEncEncode(faacEncHandle hEncoder, int32_t * inputBuffer, unsigned int samplesInput, +- unsigned char *outputBuffer, +- unsigned int bufferSize); +- + + int FAACAPI faacEncClose(faacEncHandle hEncoder); + + + +-#pragma pack(pop) + + #ifdef __cplusplus + } +--- include/faaccfg.h.orig Wed Oct 29 05:31:24 2003 ++++ include/faaccfg.h Wed Jul 21 14:00:09 2004 +@@ -45,7 +45,6 @@ + #define SHORTCTL_NOSHORT 1 + #define SHORTCTL_NOLONG 2 + +-#pragma pack(push, 1) + typedef struct faacEncConfiguration + { + /* config version */ +@@ -117,6 +116,5 @@ + + } faacEncConfiguration, *faacEncConfigurationPtr; + +-#pragma pack(pop) + + #endif /* _FAACCFG_H_ */ +--- libfaac/frame.h.orig Wed Jul 21 14:08:23 2004 ++++ libfaac/frame.h Wed Jul 21 14:08:32 2004 +@@ -60,7 +60,6 @@ + #endif + #endif + +-#pragma pack(push, 1) + + typedef struct { + psymodel_t *model; +@@ -151,7 +150,6 @@ + int FAACAPI faacEncClose(faacEncHandle hEncoder); + + +-#pragma pack(pop) + + #ifdef __cplusplus + } +--- libfaac/aacquant.h.orig Wed Jul 21 14:08:45 2004 ++++ libfaac/aacquant.h Wed Jul 21 14:08:53 2004 +@@ -37,14 +37,12 @@ + #define POW20(x) pow(2.0,((double)x)*.25) + #define IPOW20(x) pow(2.0,-((double)x)*.1875) + +-#pragma pack(push, 1) + typedef struct + { + double *pow43; + double *adj43; + double quality; + } AACQuantCfg; +-#pragma pack(pop) + + void AACQuantizeInit(CoderInfo *coderInfo, unsigned int numChannels, + AACQuantCfg *aacquantCfg); --- faac-1.24_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 18:54: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 54A0816A4CE; Wed, 21 Jul 2004 18:54:46 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB3943D45; Wed, 21 Jul 2004 18:54:46 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-11.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.40 (FreeBSD)) id 1BnMEm-000Lg2-4g; Wed, 21 Jul 2004 20:54:45 +0200 Date: Wed, 21 Jul 2004 20:55:43 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: bruno schwander From: Oliver Eikemeier In-Reply-To: <20040721081328.S77701@duron.bschwand.net> Message-Id: <918B540F-DB47-11D8-BA2D-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: Clement Laforet cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68731: new port: mod_proxy_html X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 18:54:46 -0000 bruno schwander wrote: > On Thu, 15 Jul 2004, Clement Laforet wrote: > >> Synopsis: new port: mod_proxy_html >> >> State-Changed-From-To: open->feedback >> State-Changed-By: clement >> State-Changed-When: Thu Jul 15 22:24:49 GMT 2004 >> State-Changed-Why: >> Hi, >> >> The chechsums mismatch: >> MD5 (mod_proxy_html.c) = a7a2bb9c24ee548ea9b16c35e7cab76a >> vs >> MD5 (mod_proxy_html.c) = b1828fb7fb9305ef14c583c99e1fed02 >> According to the website, 2.0 was released. >> Can you please investigate? >> >> clem >> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=68731 > > Hi, > > looks like you can just bump the version of the port to 2.0, and update > the distinfo. > > bruno Please use DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} when ports have unversioned distfiles. -Oliver From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19:10: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 3057F16A4CE for ; Wed, 21 Jul 2004 19:10:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20DF843D5C for ; Wed, 21 Jul 2004 19:10:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LJAHjI089106 for ; Wed, 21 Jul 2004 19:10:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJAGZW089105; Wed, 21 Jul 2004 19:10:16 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 19:10:16 GMT Resent-Message-Id: <200407211910.i6LJAGZW089105@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F27816A4CE for ; Wed, 21 Jul 2004 19:09:07 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 367A943D53 for ; Wed, 21 Jul 2004 19:09:07 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6LJ96t6067443 for ; Wed, 21 Jul 2004 19:09:06 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6LJ96DS067442; Wed, 21 Jul 2004 19:09:06 GMT (envelope-from nobody) Message-Id: <200407211909.i6LJ96DS067442@www.freebsd.org> Date: Wed, 21 Jul 2004 19:09:06 GMT From: Michael Johnson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69389: [PATCH] audio/speex [update 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, 21 Jul 2004 19:10:17 -0000 >Number: 69389 >Category: ports >Synopsis: [PATCH] audio/speex [update to 1.0.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: Wed Jul 21 19:10:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: >Organization: >Environment: >Description: - update to 1.0.4 >How-To-Repeat: >Fix: begin 644 speex.tar.gz M'YV0<^"4*8/G!8"#"!,J7,BPH<.'$"-*1`@#!@T8-VK4`%"Q8T6.'6_8V.BQ MY,<8%6]DG'%C!HP8'%':R`@`Q,:).'/JW,FSSAPZ8>2```%`SILW='@Z#(-& M3QFE4*-*G4JUJE6I`0<6A!.&SA@T+<+4(9/FC0X=<^X,A'.U+<^7%6W0H`&R M9%V,(^]VC$&#+P"4&%?*L"'C1DP:,FK`!`'#K>/'#'T"%4K4*-*K3)U"WLRY ML^?.2=R0(:@#1),P:\J82<.FC((>L&/+GDV[MNW;N'/W4"!ER!00JUN7?N%3 MSHLW<.B\&&-GS@LS<@:*F4.FQ1PY8U[`>2.'CG.Q9-^\2+OVQ>G4P/F#(CH\^>4=0,BA@L9,RA`EAEF@-!"'0;*X1^`IJ&F&FNNM2!A M@^A!F$`,.8"@1!UL@"!#133T=X,.-."@`TH&>G3A?P&NX"*%#[:6@`PQ:,BA MAR#V9^)@)(;8@D<*``&$@3>P<`,(*Q1YI)`*@-`D%$](084303111`\)D%<& M'$]&284514@Q11)/.($E#"[@X$*`+4`II11%6)'$F&5B&8,"*[A)!9QRTFGF MC$T.$00511P191)%3($E>&6!<(8;;[3AFFE!3$&H%%^,2:BB"9"P1Q.57III M$H1F^D05O15A1)1'%-%'DZ!:&N:HI4Y1A1!$)"$%EI[J2:65KPII8`PX&(DD ML<8R"0(320CQ!1%%0%&$$T1P.H=HZ;D0@PZ]>CE%KE+T\0*CXK&1QG380@@" M%TTFD&48;<#1FAQ=E:$MMWOH^:VNXI+[@KG3P2MO&?324<:Z[29@!W=BI#'' MFOCJ"VZ_8Y7U[[D+R]'P'`BWX&Y6!/T7L;<3CUNQ>"#C@?`*'PL4\@PC2[EO MN":'-Y[+*K,+@KMMA$&&R-W*7+*_/9.!\,X)T$&&&/<&3<7,XI+151ABA#%' M&:1 M2"29%,-@=`&F4@TSR'"1##$I]G=-C$.2!35444:"Y#6ZB2>"7PN0G.[D`37=JDY?X-"N)@!1-`@T`-JE"'2M2B M3@:K4,U*4RI,`!KH0` M<`EP%G.Y M`0YH>(,=6U"UJQ53(G6[FUX^LK>\Y(TO-#",X%8B1L0D;@8L8=PUPQ8YRE#N M,I=K2N;62<]ZMN5SI!D?A%Z3NG[Z$W6K^TUZ7G>=V"F'.L_#C_2D23W#":B-V$-0"Q3TGQ#5KS7@ MF]!+RW`A&30H#SA2'U]T8#<=S*!&/X+?@DKHHA7H4T;W.U].0[0_&MC@1#X" MDK`(2,8#HM%)(/!5E1CH*68Y`0I\=((KM0HL"79QA%U-PE?#.E8OG?6+X`MA MG#I8IT[MP:M@+5-;WS17/[TJ3QOLJP?M),%H/6$(2.#57=6:5[%^04^&1>RK M0"`H0AE*"HCBU#);*"M,P9!3:5VK7K\0*U%]%HS#*N`*8F!55#;!2DZ@`I:" M``*UB`$$T)3FP>B`AJZ`8`YU@`/OO`.",4$!MT:APQO&\`8VO-&2A\PDI\XP MAS8T[9%"BZ2_J-N&CK5,*XZ4F'9_E[*5??=E,7O:T,B+LZ.YZPWZ@8,+ M4$X48/!-`Y>P6H4IN/((3GB"E;!T!H!]R%&0DE1OQ[`&!$=J>4$YP_)`0!\Z ML&'!#8;#&L[`7#>LY@R_M*>(1UR58YX-+.0Z"Q[:T(8YZ%(K)%Y(-N>R3;V% MQ)M^0PQ,QDFXB\P`;S&H@0P,I\X80Z:=D[.,Y:J".2,[^A?,&*6_QB@FB4=!U=WD>=9Q^1ZH>D MVX/!20ED()6R%$4SC:GX9IJ`_QGA=DOUT+;0Z=,C!;4B\=-S4:D\HQHI-7U, M-=$,3`0#FSY:SU-5;6NQ2E8&KMG%E,RJ6RDXV`2@*0?:BFM@^]3J.P&6K[2N MJPQ,:-D4\`5JT`/3Z,45T:S1!618@W;J((873'%.4]HJ M(W'6@E-O$;L3]&*94-N"&-B`C.8^HVMA*]L$8.&UOZ$/'.I`!]RRH0YGH`\( ME&OO,."TO.F9PQN%4(4D,($(ET1DM;#D[0Y_N+XE:P.'Z)`&29$E#&IFL(M?$)IY*P=@C7Q;B*%,]:IC!6=F2V8+=,[S M._J\F>?"`WWF&>,9X\TD=^%;C?G"O;^D9"5]H<$,$F>#EQ39ZE1!8V.WX9N2Q MQZ/-HT^=HW=G_OC'!@&Z7I^UYP+44UG0E)X!_A+-6AT0SO:>5M'I6T0_PB/5 MTC?"M(Y\:J(:.%JJ`RR2#0RH;E)[R8H)V/RD]/36NOH'37*H`9[DFNL_W8FR M)[QL9K%D^9Z'(=@O'#9H/^5"SP[;5*@:@JI8Y2KTN[]6MP*78DM-;AJ1<"Y% MXUV<%'(&F&;EQ2XL$X+HU7(D-TGMQ8`)$`9A<%WB13-GP&QHT$/?$08`#%BT(/VX8)PX(,U,()"2(1CX!Q+F(13!WA6>(4186): MMTQG834&`Q]SL`9_9W8UEG8X5A+F1CAN%Q@]!B"&\1)S06.,@850H7?OM&14 MT61TN(>;(WBO=WB`Z$^)YSJ+]V6R@U"ULU"YXU##Y1P3Y84$XS#2-E-QQCP@ M-7KY,3W;4T*JESTKM8FO%SZ4]C\;PA_"UU.%02*R]VGQ0U2]MU$TE53!IS\F MMWVSIHQ8LFO@UVN8 M%4.;12F=12LQ9`;&AD/:*%_`*(E")`=$-&_59C"MD5MND`?C\A.1&(8O<('= M>&S=Z`+?&(;A.([4]@+FN"46I8[U*&W-51W1T1I6@S76-E4?\G]CM"1717`& MAW#1]7%#T56'%01,(`25XBI&^`)MD`=S$`=L8(0=^9%L,`;FLD9T0(\C*#5` M@5&5YY$@>1$M8)+QX0;UYH*>$F!BA078-BU4T` M&9$+%Y80.(,'R()G"0(Q-W-JJ2A#,9%W59$7F9'BDG0C"9(B"9,E>9(VJ9)3 M&353XY(<*9@R29,H^48`5@5?,`2IM$JMA"5Y@#552(=:B#;EAWEG05WO40;P M0C`M("_X1A]SL$YDF#=FV#=HB$Z(PV,L,0-"%A,B,1AWQX:P9O" M*39^&&B!>)RG,XAG>6_YY@;. M08F?)V>A%U*DIXDN8'Q[EE*L9WRA*%.^1U,HV(@2;-`6`A`4](`)`P%PLAI(@(`*D9$H1@G+2M4F-)'*' M28*C=')IZ7&:!'(I&($N!Y<$X:78EBFW,J9E>J9NRDMLY$;#^:B0VAF="18F M^G4Z8`P5IUMX:#\V,S01)\D1%T,8>1"A&^R7?Q%)RK&JMN M49SQR4_(>:NVH9QE0%#->8AB!GEEQHB41YT[9YT^]P*8FAWBJ3R62&?0DXEX MEIZIAU*K]XG2^IZ#%I\7LGSTJ3ZH2`.V%U5"):WS8U3_"7P!FFD]8GL9\FFZ MV`(_Q0++MP+QJJ#.IT`-FJP3.D)H<@/_P8P:6FLB*GXQ5*GGIZ(O2FPT9*-* MQ$1.!$4_,Q^CT5QAX`;W.&W5)K%E0+%N@*PE^0)<1(Q.("Y/L@0`ME6V8@2J MA`4_H%@Q:B6&JK))@`5]X"F)@0(4*2A[Z5]] M>2Y&&'5O\!\I``(F8`(@,$3&TB8J9E9VT9<@Y`W0`/_ MEQ'-IT:-^D9=Z[ATFT=[E+F"Y+9P*[=U=$>LR[222Z:4*TA=:4A\:J5U.H+^ M8G)RFDATNG+`:Y:#2EF5*:6N!$NRM$@2LD9:RJ6$2G1&ERB;E'3)NAQO,!K9 M<;A:\06H^9TN('6\!*>;:4Q8ATQHDV*7RC`.TP+*U5RKZ62;:A>=NG8_MF-O M1S@_50,VD#@`O!&J*JN1\1.2LW?PQ&1^9\`.3!6T"HNVBJL4'!NZRJL&Y7B) M2&:+.'EHYB\5Z&+S:TJ=!R&5.&>B]ZPC97IK,JU\YHDLA4[8&GLV8HKU*7)] MX5/+MY\M7*Z4!J"TMR,F\C<&^JZBUHNJAJ\#IC#P*\)'84K[6FL7%&L9NB>" MI6L`:\7=AR4!DL2$`B6(Q<4#ZVLK%![VAXV<4J/'ID-WX`(A[`)J^AP0XAS7 MIRW$X09I4!#OBBQ'R\<@H"S#NY9AL+8L!Z@K6"[G,L@7^$-RP`9M"83/44/+ M40>-?(%&P`1!,`3I>;PV8P9L$`9C`(*_>Z?!VX)X\9HU5K2=)JHK MT1)V-\5LTJ$;FL4:;4%H4D)>'%F)=2%C M3*)E7!9G_%E8HL8XQ,;EVTE`ND1-]$0^BS%8J]-$LB<\@9G<`:; M3,J_@U]%S34K8,M?\+(,]"@/AF%-XM2M0@5/``5^Q`1E<@2;B[5.#2>,AV1'$>]@;A+,ZW2L[,F<'/":P=O,Z^ M\W+N7-?T809O<,+EB8DK3#U\@<\P#(J&?=>P-]F(/2,PT"!"(7PTPE,PL\\\ M_-B39MEO4&D(38LGTH0OX=`#%`,L8%.K]=I_C$8MT`1$4`,@@`(I4VX<[0*3 MX0)GH`=MVP,@D`-B8&XTD`,R$`9E,`,Y$`9F(`9F<`,R0`8X(`9BX%1B(`-F MD!@X$$XV`#YCH@5%D-N[7<R'`9\,P('NUIQ@^):Z0QI\^ M?.3F\A.FW:U,15\PT(1%R]K#P@+</(NQ5#CN0X;@<]GE,S\`)V\P)C_N2+%B)NX#-D@%-%@`=PT.9-TC`=FS+> MV^CT<3-:L49CT"3T89)CD5&-A`9XDNGW-AJ4[F:=_NENH.FB7C8I\P4-XQTN MX.DK`.J;/NH%L>ICH(-L4#4,]C"P+NNICG6KC@:D.1K\W>NG'NJ<#NPXXS9? MN+&OCNG'/NNKWNJ\#NVHGNSA>^MLD.N@O`;53F'1_NOA*^P^0S#/#N[73NO, M3C#.[ND@D'3@&S('"^_GHK;@0^_3@;AK.]_XKK9K@B<`PY(89^(.EP9$U$AP M<.DK,`>]%1WC8I++I8.T[@)M0%1`0!9R(`?=Y>O8/JC=_/$@'_(B/_(D7_(F E?_(HG_(JO_(LW_(N__(P'_,R/_,T7_,V?_,XG_,ZO_,\W_..`P`` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19:16: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 208A416A4CE; Wed, 21 Jul 2004 19:16:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0296543D3F; Wed, 21 Jul 2004 19:16:02 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LJG1dW089295; Wed, 21 Jul 2004 19:16:01 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJG1qv089291; Wed, 21 Jul 2004 19:16:01 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 19:16:01 GMT From: Volker Stolz Message-Id: <200407211916.i6LJG1qv089291@freefall.freebsd.org> To: hsn@netmag.cz, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69384: [PATCH] databases/edb: 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: Wed, 21 Jul 2004 19:16:02 -0000 Synopsis: [PATCH] databases/edb: unbroke port State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Jul 21 19:15:35 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69384 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19: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 3DE1B16A4CE for ; Wed, 21 Jul 2004 19:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2236F43D58 for ; Wed, 21 Jul 2004 19:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LJKRmW089419 for ; Wed, 21 Jul 2004 19:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJKQtl089418; Wed, 21 Jul 2004 19:20:26 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 19:20:26 GMT Resent-Message-Id: <200407211920.i6LJKQtl089418@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BEDC16A4CE; Wed, 21 Jul 2004 19:12:06 +0000 (GMT) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 109C743D48; Wed, 21 Jul 2004 19:12:06 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf21aec.mail.bellsouth.netESMTP <20040721191201.PKSA1776.imf21aec.mail.bellsouth.net@gentoo.ahze.net>; Wed, 21 Jul 2004 15:12:01 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6LJBwrc017469; Wed, 21 Jul 2004 15:11:58 -0400 (EDT) (envelope-from ahze) Message-Id: <200407211911.i6LJBwrc017469@gentoo.ahze.net> Date: Wed, 21 Jul 2004 15:11:58 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lioux@FreeBSD.org Subject: ports/69390: [PATCH] multimedia/gstreamer-plugins: [faac 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, 21 Jul 2004 19:20:27 -0000 >Number: 69390 >Category: ports >Synopsis: [PATCH] multimedia/gstreamer-plugins: [faac support] >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 Jul 21 19:20:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - add faac support pr-69388 needs to commited first Port maintainer (lioux@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- gstreamer-plugins-0.8.2_2.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/opt/cvs/freebsd-src/ports/multimedia/gstreamer-plugins/Makefile,v retrieving revision 1.57 diff -u -r1.57 Makefile --- Makefile 10 Jul 2004 22:47:58 -0000 1.57 +++ Makefile 21 Jul 2004 19:10:41 -0000 @@ -7,7 +7,7 @@ PORTNAME= gstreamer PORTVERSION= 0.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia audio MASTER_SITES= ${MASTER_SITE_GNOME} \ http://gstreamer.freedesktop.org/src/gst-plugins/ @@ -49,7 +49,6 @@ # list of plugins that need some work in one way or the other to work # probable the lib needs to be ported, disable them for now. CONFIGURE_ARGS+=--disable-mas \ - --disable-faac \ --disable-tarkin \ --disable-lcs \ --disable-mplex \ @@ -174,6 +173,11 @@ WITH_ESOUND=yes .endif +# faac +.if exists(${LOCALBASE}/lib/libfaac.a) +WITH_FAAC=yes +.endif + # faad .if exists(${LOCALBASE}/lib/libfaad.a) WITH_FAAD=yes @@ -460,6 +464,15 @@ PLIST_SUB+= ESOUND="" .endif +# faac +.ifndef(WITH_FAAC) +CONFIGURE_ARGS+= --disable-faac +PLIST_SUB+= FAAC="@comment " +.else +LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac +PLIST_SUB+= FAAC="" +.endif + # faad .ifndef(WITH_FAAD) CONFIGURE_ARGS+= --disable-faad @@ -934,6 +947,10 @@ @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_ESOUND to enable esound Audio plugin' .endif +.ifndef(WITH_FAAC) + @${ECHO_MSG} '===>' + @${ECHO_MSG} '===> Define WITH_FAAC to enable faac Audio encoder plugin' +.endif .ifndef(WITH_FAAD) @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_FAAD to enable faad Audio plugin' Index: pkg-plist =================================================================== RCS file: /usr/opt/cvs/freebsd-src/ports/multimedia/gstreamer-plugins/pkg-plist,v retrieving revision 1.15 diff -u -r1.15 pkg-plist --- pkg-plist 10 Jul 2004 22:47:58 -0000 1.15 +++ pkg-plist 21 Jul 2004 18:32:40 -0000 @@ -66,6 +66,7 @@ lib/gstreamer-%%VERSION%%/libgstefence.so lib/gstreamer-%%VERSION%%/libgsteffectv.so %%ESOUND%%lib/gstreamer-%%VERSION%%/libgstesd.so +%%FAAC%%gstreamer-%%VERSION%%/libgstfaac.so %%FAAD%%lib/gstreamer-%%VERSION%%/libgstfaad.so lib/gstreamer-%%VERSION%%/libgstfestival.so lib/gstreamer-%%VERSION%%/libgstffmpegcolorspace.so --- gstreamer-plugins-0.8.2_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19: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 C116D16A4CE for ; Wed, 21 Jul 2004 19:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DFEB43D41 for ; Wed, 21 Jul 2004 19:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LJKRFe089439 for ; Wed, 21 Jul 2004 19:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJKRvn089438; Wed, 21 Jul 2004 19:20:27 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 19:20:27 GMT Resent-Message-Id: <200407211920.i6LJKRvn089438@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB7216A4CE for ; Wed, 21 Jul 2004 19:19:41 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0B3B43D49 for ; Wed, 21 Jul 2004 19:19:40 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (213.235.70.177) by mail.tiscali.cz (6.7.021) id 40AE2ED301708D94 for FreeBSD-gnats-submit@freebsd.org; Wed, 21 Jul 2004 21:19:39 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BnLPm-000Ith-W3 ; Wed, 21 Jul 2004 20:02:03 +0200 Message-Id: Date: Wed, 21 Jul 2004 20:02:02 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hsn@netmag.cz Subject: ports/69392: [PATCH] net/fspclient: update to 0.0.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, 21 Jul 2004 19:20:28 -0000 >Number: 69392 >Category: ports >Synopsis: [PATCH] net/fspclient: update to 0.0.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 19:20:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #8: Tue Jul 20 20:32:29 CEST 2004 >Description: - Update to 0.0.7 This unbreaks ports on freebsd libc. Port maintainer (hsn@netmag.cz) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- fspclient-0.0.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/fspclient/Makefile /home/hsn/myports/fspclient/Makefile --- /usr/ports/net/fspclient/Makefile Tue Jun 22 19:24:55 2004 +++ /home/hsn/myports/fspclient/Makefile Wed Jul 21 19:51:41 2004 @@ -2,21 +2,17 @@ # Date created: 7 Nov 1994 # Whom: ache # -# $FreeBSD: ports/net/fspclient/Makefile,v 1.22 2004/06/21 21:27:36 kris Exp $ +# $FreeBSD: ports/net/fspclient/Makefile,v 1.20 2004/02/06 13:11:59 trevor Exp $ # PORTNAME= fspclient -PORTVERSION= 0.0.6 +PORTVERSION= 0.0.7 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= hsn@netmag.cz -COMMENT= A client for the fsp service - -IGNORE= does not work correctly under FreeBSD libc -EXPIRATION_DATE=2004-08-20 -DEPRECATED= ${IGNORE} +COMMENT= A ftp-like client for the fsp service GNU_CONFIGURE= yes USE_BZIP2= yes diff -ruN --exclude=CVS /usr/ports/net/fspclient/distinfo /home/hsn/myports/fspclient/distinfo --- /usr/ports/net/fspclient/distinfo Wed Feb 11 13:57:54 2004 +++ /home/hsn/myports/fspclient/distinfo Wed Jul 21 19:52:14 2004 @@ -1,2 +1,2 @@ -MD5 (fspclient-0.0.6.tar.bz2) = d15585e2f24d9d33f8084f3e3d222431 -SIZE (fspclient-0.0.6.tar.bz2) = 187547 +MD5 (fspclient-0.0.7.tar.bz2) = e9d5ab812f396afa0410368715e53298 +SIZE (fspclient-0.0.7.tar.bz2) = 128906 --- fspclient-0.0.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19:21: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 E396516A4CF; Wed, 21 Jul 2004 19:21:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C62EE43D1F; Wed, 21 Jul 2004 19:21:54 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LJLsXL089555; Wed, 21 Jul 2004 19:21:54 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJLs28089551; Wed, 21 Jul 2004 19:21:54 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 19:21:54 GMT From: Volker Stolz Message-Id: <200407211921.i6LJLs28089551@freefall.freebsd.org> To: kiwi@oav.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69381: [MAINTAINER] mail/lmtpd: update to 0.9.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 19:21:55 -0000 Synopsis: [MAINTAINER] mail/lmtpd: update to 0.9.19 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Jul 21 19:21:16 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69381 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19:25: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 7CD7716A4CE; Wed, 21 Jul 2004 19:25:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B0E743D49; Wed, 21 Jul 2004 19:25:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LJPj5N089656; Wed, 21 Jul 2004 19:25:45 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJPjAj089652; Wed, 21 Jul 2004 19:25:45 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 19:25:45 GMT From: Volker Stolz Message-Id: <200407211925.i6LJPjAj089652@freefall.freebsd.org> To: kiwi@oav.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69380: [MAINTAINER] misc/libhome: update to 0.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, 21 Jul 2004 19:25:45 -0000 Synopsis: [MAINTAINER] misc/libhome: update to 0.8.1 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Jul 21 19:25:31 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69380 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19: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 55DBA16A4CE for ; Wed, 21 Jul 2004 19:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3937B43D48 for ; Wed, 21 Jul 2004 19:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LJUQex089812 for ; Wed, 21 Jul 2004 19:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJUPXv089809; Wed, 21 Jul 2004 19:30:26 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 19:30:26 GMT Message-Id: <200407211930.i6LJUPXv089809@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: michael johnson Subject: Re: ports/69390: [PATCH] multimedia/gstreamer-plugins: [faac support] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: michael johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 19:30:26 -0000 The following reply was made to PR ports/69390; it has been noted by GNATS. From: michael johnson To: michael johnson , freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69390: [PATCH] multimedia/gstreamer-plugins: [faac support] Date: Wed, 21 Jul 2004 15:21:29 -0400 i made a typo pkg-plist - %%FAAC%%gstreamer-%%VERSION%%/libgstfaac.so + %%FAAC%%lib/gstreamer-%%VERSION%%/libgstfaac.so From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19:40: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 4D5C416A4CE; Wed, 21 Jul 2004 19:40:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C30F43D3F; Wed, 21 Jul 2004 19:40:08 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LJe80g091040; Wed, 21 Jul 2004 19:40:08 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJe7kQ091036; Wed, 21 Jul 2004 19:40:07 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 19:40:07 GMT From: Volker Stolz Message-Id: <200407211940.i6LJe7kQ091036@freefall.freebsd.org> To: flz@xbsd.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69378: sysutils/progsreiserfs - make it build correctly with gcc 3.4.1 and drop 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: Wed, 21 Jul 2004 19:40:08 -0000 Synopsis: sysutils/progsreiserfs - make it build correctly with gcc 3.4.1 and drop maintainership State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Wed Jul 21 19:39:20 GMT 2004 State-Changed-Why: Committed, thanks for maintaing this so far. http://www.freebsd.org/cgi/query-pr.cgi?pr=69378 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 19: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 3A46816A4CE for ; Wed, 21 Jul 2004 19:50:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A67343D4C for ; Wed, 21 Jul 2004 19:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LJoKbs092119 for ; Wed, 21 Jul 2004 19:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LJoK9Z092118; Wed, 21 Jul 2004 19:50:20 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 19:50:20 GMT Resent-Message-Id: <200407211950.i6LJoK9Z092118@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC11216A4CE for ; Wed, 21 Jul 2004 19:48:50 +0000 (GMT) Received: from imf23aec.mail.bellsouth.net (imf23aec.mail.bellsouth.net [205.152.59.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C5243D1F for ; Wed, 21 Jul 2004 19:48:45 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf23aec.mail.bellsouth.netESMTP <20040721194844.HJZG1779.imf23aec.mail.bellsouth.net@gentoo.ahze.net> for ; Wed, 21 Jul 2004 15:48:44 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6LJmiGq058249; Wed, 21 Jul 2004 15:48:44 -0400 (EDT) (envelope-from ahze) Message-Id: <200407211948.i6LJmiGq058249@gentoo.ahze.net> Date: Wed, 21 Jul 2004 15:48:44 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69393: [MAINTAINER] audio/libcddb: update to 0.9.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, 21 Jul 2004 19:50:21 -0000 >Number: 69393 >Category: ports >Synopsis: [MAINTAINER] audio/libcddb: update to 0.9.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 19:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Update to 0.9.5 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- libcddb-0.9.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/libcddb.orig/Makefile /usr/ports/audio/libcddb/Makefile --- /usr/ports/audio/libcddb.orig/Makefile Fri Jul 9 13:41:53 2004 +++ /usr/ports/audio/libcddb/Makefile Wed Jul 21 15:47:54 2004 @@ -5,8 +5,7 @@ # $FreeBSD: ports/audio/libcddb/Makefile,v 1.5 2004/07/09 17:41:53 marcus Exp $ PORTNAME= libcddb -PORTVERSION= 0.9.4 -PORTREVISION= 1 +PORTVERSION= 0.9.5 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,8 +13,8 @@ MAINTAINER= ahze@ahze.net COMMENT= A library to access data on a CDDB server -USE_INC_LIBTOOL_VER= 13 -USE_GNOME= gnometarget lthack gnomehack pkgconfig +USE_INC_LIBTOOL_VER= 15 +USE_GNOME= gnometarget gnomehack pkgconfig INSTALLS_SHLIB= yes .include diff -ruN --exclude=CVS /usr/ports/audio/libcddb.orig/distinfo /usr/ports/audio/libcddb/distinfo --- /usr/ports/audio/libcddb.orig/distinfo Mon Mar 1 14:16:24 2004 +++ /usr/ports/audio/libcddb/distinfo Wed Jul 21 15:32:33 2004 @@ -1,2 +1,2 @@ -MD5 (libcddb-0.9.4.tar.gz) = 366095f09e1d89d91915a2dd7c7c1478 -SIZE (libcddb-0.9.4.tar.gz) = 272751 +MD5 (libcddb-0.9.5.tar.gz) = 9db0b305a67ce0827966442bc0731c96 +SIZE (libcddb-0.9.5.tar.gz) = 380064 diff -ruN --exclude=CVS /usr/ports/audio/libcddb.orig/files/cddb.h-systypes-patch /usr/ports/audio/libcddb/files/cddb.h-systypes-patch --- /usr/ports/audio/libcddb.orig/files/cddb.h-systypes-patch Mon Mar 1 14:16:24 2004 +++ /usr/ports/audio/libcddb/files/cddb.h-systypes-patch Wed Jul 21 15:35:52 2004 @@ -1,11 +1,10 @@ ---- include/cddb/cddb.h.orig Mon Mar 1 04:22:27 2004 -+++ include/cddb/cddb.h Mon Mar 1 04:22:47 2004 -@@ -26,7 +26,7 @@ - extern "C" { +--- include/cddb/cddb.h.orig Wed Jul 21 15:34:48 2004 ++++ include/cddb/cddb.h Wed Jul 21 15:35:03 2004 +@@ -27,6 +27,7 @@ #endif - -- + + +#include + #include #include #include - #include diff -ruN --exclude=CVS /usr/ports/audio/libcddb.orig/files/cddb_ni.h-systypes-patch /usr/ports/audio/libcddb/files/cddb_ni.h-systypes-patch --- /usr/ports/audio/libcddb.orig/files/cddb_ni.h-systypes-patch Mon Mar 1 14:16:24 2004 +++ /usr/ports/audio/libcddb/files/cddb_ni.h-systypes-patch Wed Jul 21 15:36:20 2004 @@ -1,10 +1,10 @@ ---- include/cddb/cddb_ni.h.orig Mon Mar 1 04:28:02 2004 -+++ include/cddb/cddb_ni.h Mon Mar 1 04:28:16 2004 -@@ -18,6 +18,7 @@ - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - */ +--- include/cddb/cddb_ni.h.orig Wed Jul 21 15:35:13 2004 ++++ include/cddb/cddb_ni.h Wed Jul 21 15:35:32 2004 +@@ -31,6 +31,7 @@ + # include + #endif + +#include - - #ifndef CDDB_NI_H - #define CDDB_NI_H 1 + #include "cddb/cddb_regex.h" + #include "cddb/cddb.h" + #include "cddb/cddb_conn_ni.h" diff -ruN --exclude=CVS /usr/ports/audio/libcddb.orig/files/patch-ltmain.sh /usr/ports/audio/libcddb/files/patch-ltmain.sh --- /usr/ports/audio/libcddb.orig/files/patch-ltmain.sh Wed Dec 31 19:00:00 1969 +++ /usr/ports/audio/libcddb/files/patch-ltmain.sh Wed Jul 21 15:43:57 2004 @@ -0,0 +1,15 @@ +--- ltmain.sh.orig Wed Jul 21 15:43:15 2004 ++++ ltmain.sh Wed Jul 21 15:43:45 2004 +@@ -5608,10 +5608,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff -ruN --exclude=CVS /usr/ports/audio/libcddb.orig/pkg-plist /usr/ports/audio/libcddb/pkg-plist --- /usr/ports/audio/libcddb.orig/pkg-plist Fri Apr 9 03:44:53 2004 +++ /usr/ports/audio/libcddb/pkg-plist Wed Jul 21 15:40:05 2004 @@ -1,6 +1,7 @@ bin/cddb_query include/cddb/cddb.h include/cddb/cddb_cmd.h +include/cddb/cddb_config.h include/cddb/cddb_conn.h include/cddb/cddb_disc.h include/cddb/cddb_error.h --- libcddb-0.9.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 20:06: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 A2E5E16A4CE; Wed, 21 Jul 2004 20:06:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8360F43D48; Wed, 21 Jul 2004 20:06:14 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6LK6Eh8096354; Wed, 21 Jul 2004 20:06:14 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LK6EvS096350; Wed, 21 Jul 2004 20:06:14 GMT (envelope-from vs) Date: Wed, 21 Jul 2004 20:06:14 GMT From: Volker Stolz Message-Id: <200407212006.i6LK6EvS096350@freefall.freebsd.org> To: jb.quenot@caraldi.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/69358: Maintainer update: Cocoon 2.1.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, 21 Jul 2004 20:06:14 -0000 Synopsis: Maintainer update: Cocoon 2.1.5.1 State-Changed-From-To: open->repocopy State-Changed-By: vs State-Changed-When: Wed Jul 21 20:02:22 GMT 2004 State-Changed-Why: Request repocopy from textproc to www. Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: vs Responsible-Changed-When: Wed Jul 21 20:02:22 GMT 2004 Responsible-Changed-Why: Port updated. Request repocopy from textproc to www. http://www.freebsd.org/cgi/query-pr.cgi?pr=69358 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 20: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 62AA916A4CE; Wed, 21 Jul 2004 20:32:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 452C643D48; Wed, 21 Jul 2004 20:32:10 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6LKWA4V098734; Wed, 21 Jul 2004 20:32:10 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LKWAcd098730; Wed, 21 Jul 2004 20:32:10 GMT (envelope-from pav) Date: Wed, 21 Jul 2004 20:32:10 GMT From: Pav Lucistnik Message-Id: <200407212032.i6LKWAcd098730@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/69315: removing dependencies on openssl package (pkgconfig) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 20:32:10 -0000 Synopsis: removing dependencies on openssl package (pkgconfig) Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Wed Jul 21 20:31:37 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=69315 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 20: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 4CB8316A4D6 for ; Wed, 21 Jul 2004 20:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3062A43D53 for ; Wed, 21 Jul 2004 20:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LKoPKR099184 for ; Wed, 21 Jul 2004 20:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LKoPZu099183; Wed, 21 Jul 2004 20:50:25 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 20:50:25 GMT Resent-Message-Id: <200407212050.i6LKoPZu099183@freefall.freebsd.org> 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 86CD716A4CE for ; Wed, 21 Jul 2004 20:40:51 +0000 (GMT) Received: from gateway.lefort.net (212.68.242.203.brutele.be [212.68.242.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74ECE43D5C for ; Wed, 21 Jul 2004 20:40:50 +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 8DDB354F0 for ; Wed, 21 Jul 2004 22:40:48 +0200 (CEST) Received: by jsite.lefort.net (Postfix, from userid 1000) id 2146322E1E; Wed, 21 Jul 2004 22:40:47 +0200 (CEST) Message-Id: <20040721204047.2146322E1E@jsite.lefort.net> Date: Wed, 21 Jul 2004 22:40:47 +0200 (CEST) From: Jean-Yves Lefort To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69395: Update port: mail/mail-notification to 0.5.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: Wed, 21 Jul 2004 20:50:25 -0000 >Number: 69395 >Category: ports >Synopsis: Update port: mail/mail-notification to 0.5.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: Wed Jul 21 20:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jean-Yves Lefort >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD jsite.lefort.net 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Thu Jul 1 14:25:43 CEST 2004 jylefort@jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386 >Description: >How-To-Repeat: >Fix: diff -ruN /usr/ports/mail/mail-notification/Makefile mail-notification/Makefile --- /usr/ports/mail/mail-notification/Makefile Fri Jul 2 04:39:33 2004 +++ mail-notification/Makefile Wed Jul 21 22:12:01 2004 @@ -6,7 +6,7 @@ # PORTNAME= mail-notification -PORTVERSION= 0.4.0 +PORTVERSION= 0.5.0 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= mailnotify @@ -17,6 +17,7 @@ USE_X_PREFIX= yes USE_GNOME= gnomeprefix gnomehack eel2 GNU_CONFIGURE= yes +USE_GMAKE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" @@ -24,7 +25,8 @@ MH "MH support" on \ MAILDIR "Maildir support" on \ POP3 "POP3 support" on \ - SYLPHEED "Sylpheed support" on + SYLPHEED "Sylpheed support" on \ + GMAIL "Gmail support" on .include @@ -44,6 +46,11 @@ .endif .if defined(WITHOUT_SYLPHEED) CONFIGURE_ARGS+= --disable-sylpheed +.endif +.if defined(WITHOUT_GMAIL) +CONFIGURE_ARGS+= --disable-gmail +.else +LIB_DEPENDS+= soup-2.0:${PORTSDIR}/devel/libsoup .endif .include diff -ruN /usr/ports/mail/mail-notification/distinfo mail-notification/distinfo --- /usr/ports/mail/mail-notification/distinfo Fri Jul 2 04:39:33 2004 +++ mail-notification/distinfo Wed Jul 21 22:13:57 2004 @@ -1,2 +1,2 @@ -MD5 (mail-notification-0.4.0.tar.gz) = b145c3d4167bad1ade778a57d26930bb -SIZE (mail-notification-0.4.0.tar.gz) = 216554 +MD5 (mail-notification-0.5.0.tar.gz) = 97efb33125bdfe9d4cec8a63ff4d4cb6 +SIZE (mail-notification-0.5.0.tar.gz) = 244997 diff -ruN /usr/ports/mail/mail-notification/pkg-plist mail-notification/pkg-plist --- /usr/ports/mail/mail-notification/pkg-plist Fri Jul 2 04:39:33 2004 +++ mail-notification/pkg-plist Wed Jul 21 22:13:44 2004 @@ -12,6 +12,7 @@ share/gnome/help/mail-notification/C/software-license.xml share/gnome/mail-notification/ui/about-icon.png share/gnome/mail-notification/ui/dialog.glade +share/gnome/mail-notification/ui/gmail.png share/gnome/mail-notification/ui/logo.png share/gnome/mail-notification/ui/mail-error.png share/gnome/mail-notification/ui/mail.png @@ -27,6 +28,7 @@ @unexec scrollkeeper-uninstall -q %D/share/gnome/omf/mail-notification/mail-notification-C.omf 2>/dev/null || /usr/bin/true share/gnome/pixmaps/mail-notification.png share/locale/fr/LC_MESSAGES/mail-notification.mo +share/locale/ru/LC_MESSAGES/mail-notification.mo @dirrm share/gnome/help/mail-notification/C/figures @dirrm share/gnome/help/mail-notification/C @dirrm share/gnome/help/mail-notification >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 22: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 0515A16A4CE for ; Wed, 21 Jul 2004 22:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB33843D1F for ; Wed, 21 Jul 2004 22:10:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LMARfq010016 for ; Wed, 21 Jul 2004 22:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LMARbK010015; Wed, 21 Jul 2004 22:10:27 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 22:10:27 GMT Message-Id: <200407212210.i6LMARbK010015@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: David Le Brun Subject: Re: ports/68872: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Le Brun List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 22:10:28 -0000 The following reply was made to PR ports/68872; it has been noted by GNATS. From: David Le Brun To: Volker Stolz Cc: freebsd-gnats-submit@freebsd.org, pdseniura@techie.com Subject: Re: ports/68872: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 Date: Thu, 22 Jul 2004 00:03:35 +0200 Hi, I prefer to update library with stable release as many ports are touched by this update. Anyway, thanks for the patch. David Le Lun 12/07/2004 à 18:02, Volker Stolz a écrit : > Dear maintainer, please review the proposed patch! > > Volker > From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 22:21: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 6DF7316A4CE; Wed, 21 Jul 2004 22:21:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DEDC43D45; Wed, 21 Jul 2004 22:21:16 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6LMLGBU010377; Wed, 21 Jul 2004 22:21:16 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LMLFjx010373; Wed, 21 Jul 2004 22:21:15 GMT (envelope-from linimon) Date: Wed, 21 Jul 2004 22:21:15 GMT From: Mark Linimon Message-Id: <200407212221.i6LMLFjx010373@freefall.freebsd.org> To: ingmar.kuehl@automatic-programming.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/65360: Installation problem with flashplugin.tbz X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 22:21:16 -0000 Synopsis: Installation problem with flashplugin.tbz State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Jul 21 22:19:33 GMT 2004 State-Changed-Why: www/flashplugin is for use with the older browser, and that's what you get if you pkg_add flashplugin. See (e.g.) flashplugin-mozilla-0.4.10_6 which is the package for www/flashplugin-mozilla, which is probably what you want instead. http://www.freebsd.org/cgi/query-pr.cgi?pr=65360 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 22:34: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 B321716A4CE; Wed, 21 Jul 2004 22:34:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 911CF43D60; Wed, 21 Jul 2004 22:34:08 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) i6LMY82X011753; Wed, 21 Jul 2004 22:34:08 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LMY7rE011749; Wed, 21 Jul 2004 22:34:07 GMT (envelope-from glewis) Date: Wed, 21 Jul 2004 22:34:07 GMT From: Greg Lewis Message-Id: <200407212234.i6LMY7rE011749@freefall.freebsd.org> To: zaa@ulstu.ru, glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69207: [MAINTAINER UPDATE] www/smarty up to 2.6.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, 21 Jul 2004 22:34:08 -0000 Synopsis: [MAINTAINER UPDATE] www/smarty up to 2.6.3 State-Changed-From-To: open->closed State-Changed-By: glewis State-Changed-When: Wed Jul 21 22:33:02 GMT 2004 State-Changed-Why: Committed, thanks! There was one small problem in the packing list which I fixed. I also made a small tweak to the Makefile which should make the next update easier (made the doc DISTFILE use ${PORTVERSION} rather than hardcode the version). http://www.freebsd.org/cgi/query-pr.cgi?pr=69207 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 23: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 0853716A4CE for ; Wed, 21 Jul 2004 23:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D877E43D53 for ; Wed, 21 Jul 2004 23:20:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LNKL56016814 for ; Wed, 21 Jul 2004 23:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LNKLUo016813; Wed, 21 Jul 2004 23:20:21 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 23:20:21 GMT Resent-Message-Id: <200407212320.i6LNKLUo016813@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimura Fuyuki Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55F3916A4CE for ; Wed, 21 Jul 2004 23:10:21 +0000 (GMT) Received: from mgate14.so-net.ne.jp (mgate14.so-net.ne.jp [210.139.254.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD5EF43D53 for ; Wed, 21 Jul 2004 23:10:20 +0000 (GMT) (envelope-from fuyuki@hadaly.org) Received: from mail.dg8.so-net.ne.jp (mspool12.so-net.ne.jp [210.139.248.12]) by mgate14.so-net.ne.jp with ESMTP id i6LNAJL24378 for ; Thu, 22 Jul 2004 08:10:19 +0900 (JST) Received: from ns.nigredo.org (pd33871.spprac00.ap.so-net.ne.jp [61.211.56.113]) by mail.dg8.so-net.ne.jp with ESMTP id i6LNAJE06850 for ; Thu, 22 Jul 2004 08:10:19 +0900 (JST) Message-Id: <86d62p2bze.wl%fuyuki@hadaly.org> Date: Thu, 22 Jul 2004 08:10:13 +0900 From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69396: Update port: misc/ossp-uuid to 1.0.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, 21 Jul 2004 23:20:22 -0000 >Number: 69396 >Category: ports >Synopsis: Update port: misc/ossp-uuid to 1.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 23:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: FreeBSD ns.nigredo.org 5.2.1-RELEASE-p9 i386 >Description: Update to 1.0.1 >How-To-Repeat: >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/misc/ossp-uuid/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 17 Feb 2004 09:43:58 -0000 1.2 +++ Makefile 21 Jul 2004 23:09:38 -0000 @@ -6,20 +6,23 @@ # PORTNAME= uuid -PORTVERSION= 1.0.0 +PORTVERSION= 1.0.1 CATEGORIES= misc devel MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/${PORTNAME}/ PKGNAMEPREFIX= ossp- -MAINTAINER= fuyuki@nigredo.org +MAINTAINER= fuyuki@hadaly.org COMMENT= An ISO-C API and CLI for generating Universally Unique Identifiers -CONFLICTS= e2fsprogs-* +CONFLICTS= e2fsprogs-[0-9]* USE_LIBTOOL_VER= 15 INSTALLS_SHLIB= yes MAN1= uuid-config.1 uuid.1 MAN3= uuid.3 + +test: + cd ${WRKSRC}; ${MAKE} check .include Index: distinfo =================================================================== RCS file: /cvs/FreeBSD/ports/misc/ossp-uuid/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 17 Feb 2004 09:43:58 -0000 1.2 +++ distinfo 21 Jul 2004 23:03:54 -0000 @@ -1,2 +1,2 @@ -MD5 (uuid-1.0.0.tar.gz) = f79948345cc94ab841a8d20e4d76ac76 -SIZE (uuid-1.0.0.tar.gz) = 332957 +MD5 (uuid-1.0.1.tar.gz) = 55fbb64f4458c028a25171eac0f04c01 +SIZE (uuid-1.0.1.tar.gz) = 336423 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 23: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 4C17216A4CE for ; Wed, 21 Jul 2004 23:20:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D89C43D41 for ; Wed, 21 Jul 2004 23:20:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LNKMOO016828 for ; Wed, 21 Jul 2004 23:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LNKMuv016827; Wed, 21 Jul 2004 23:20:22 GMT (envelope-from gnats) Resent-Date: Wed, 21 Jul 2004 23:20:22 GMT Resent-Message-Id: <200407212320.i6LNKMuv016827@freefall.freebsd.org> 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 3CCFD16A4CE for ; Wed, 21 Jul 2004 23:19:12 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F72743D1D for ; Wed, 21 Jul 2004 23:19:12 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 0305D15238 for ; Thu, 22 Jul 2004 07:20:39 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 18297-02 for ; Thu, 22 Jul 2004 07:20:38 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 7422515236; Thu, 22 Jul 2004 07:20:38 +0800 (CST) Message-Id: <20040721232038.7422515236@mail.dragon2.net> Date: Thu, 22 Jul 2004 07:20:38 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69397: [MAINTAINER] www/Kwiki: update to 0.32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 21 Jul 2004 23:20:22 -0000 >Number: 69397 >Category: ports >Synopsis: [MAINTAINER] www/Kwiki: update to 0.32 >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 Jul 21 23:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.32 - Add new module (Status.pm) along with manpage (Status.3) Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-0.32.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-Kwiki/Makefile /home/clsung/p5-Kwiki/Makefile --- /usr/ports/www/p5-Kwiki/Makefile Sat Jul 17 17:17:36 2004 +++ /home/clsung/p5-Kwiki/Makefile Wed Jul 21 15:45:33 2004 @@ -6,7 +6,7 @@ # PORTNAME= Kwiki -PORTVERSION= 0.31 +PORTVERSION= 0.32 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Kwiki @@ -44,6 +44,7 @@ Kwiki::Plugin.3 \ Kwiki::Preferences.3 \ Kwiki::Registry.3 \ + Kwiki::Status.3 \ Kwiki::Template.3 Kwiki::Template::TT2.3 \ Kwiki::Theme.3 Kwiki::Theme::Basic.3 \ Kwiki::Toolbar.3 \ diff -ruN --exclude=CVS /usr/ports/www/p5-Kwiki/distinfo /home/clsung/p5-Kwiki/distinfo --- /usr/ports/www/p5-Kwiki/distinfo Sat Jul 17 17:17:36 2004 +++ /home/clsung/p5-Kwiki/distinfo Wed Jul 21 15:44:47 2004 @@ -1,2 +1,2 @@ -MD5 (Kwiki-0.31.tar.gz) = 6f5395153c128477fb18011c900f5b48 -SIZE (Kwiki-0.31.tar.gz) = 33978 +MD5 (Kwiki-0.32.tar.gz) = 6d0a6b1f20e087d3c4b0a886d84f278f +SIZE (Kwiki-0.32.tar.gz) = 35788 Binary files /usr/ports/www/p5-Kwiki/p5-Kwiki-0.32.tgz and /home/clsung/p5-Kwiki/p5-Kwiki-0.32.tgz differ diff -ruN --exclude=CVS /usr/ports/www/p5-Kwiki/pkg-plist /home/clsung/p5-Kwiki/pkg-plist --- /usr/ports/www/p5-Kwiki/pkg-plist Sat Jul 17 17:17:36 2004 +++ /home/clsung/p5-Kwiki/pkg-plist Wed Jul 21 15:45:41 2004 @@ -21,6 +21,7 @@ %%SITE_PERL%%/Kwiki/Plugin.pm %%SITE_PERL%%/Kwiki/Preferences.pm %%SITE_PERL%%/Kwiki/Registry.pm +%%SITE_PERL%%/Kwiki/Status.pm %%SITE_PERL%%/Kwiki/Template.pm %%SITE_PERL%%/Kwiki/Template/TT2.pm %%SITE_PERL%%/Kwiki/Theme.pm --- p5-Kwiki-0.32.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 00:00: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 12ACC16A4CE for ; Thu, 22 Jul 2004 00:00:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4F2143D1D for ; Thu, 22 Jul 2004 00:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M00fbU019582 for ; Thu, 22 Jul 2004 00:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M00fsp019581; Thu, 22 Jul 2004 00:00:41 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 00:00:41 GMT Resent-Message-Id: <200407220000.i6M00fsp019581@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Mahoney Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1671416A4CE for ; Wed, 21 Jul 2004 23:58:20 +0000 (GMT) Received: from prime.gushi.org (prime.gushi.org [65.125.228.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id C86EC43D3F for ; Wed, 21 Jul 2004 23:58:19 +0000 (GMT) (envelope-from danm@prime.gushi.org) Received: from prime.gushi.org (danm@localhost.com [127.0.0.1] (may be forged)) by prime.gushi.org (8.12.11/8.12.11) with ESMTP id i6M0A42l028448 for ; Wed, 21 Jul 2004 20:10:04 -0400 (EDT) Received: (from danm@localhost) by prime.gushi.org (8.12.11/8.12.11/Submit) id i6M0A3sv028447; Wed, 21 Jul 2004 20:10:03 -0400 (EDT) Message-Id: <200407220010.i6M0A3sv028447@prime.gushi.org> Date: Wed, 21 Jul 2004 20:10:03 -0400 (EDT) From: Dan Mahoney To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69399: mysql-server ports use ridiculous layout X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Mahoney List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 00:00:42 -0000 >Number: 69399 >Category: ports >Synopsis: mysql-server ports use ridiculous layout >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 Jul 22 00:00:41 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dan Mahoney >Release: FreeBSD 4.9-RELEASE-p4 i386 >Organization: Gushi Systems >Environment: System: FreeBSD prime.gushi.org 4.9-RELEASE-p4 FreeBSD 4.9-RELEASE-p4 #0: Thu Mar 18 21:12:47 EST 2004 danm@prime.gushi.org:/usr/obj/usr/src/sys/PRIME49 i386 Any base install of FreeBSD with ports. >Description: FreeBSD by default installs a very small /var partition for the user. This small partition is used not only for mail, and logs (both of which can grow on occasion without warning), but the mysql-server port uses this location as the default location for all databases. Additionally, the /var/tmp directory is used >How-To-Repeat: cd /usr/ports/mysql40-server make install let logs and/or mail run for a while (especially easy if you've also installed apache from ports), as the apache logs are written to /var/log with no rotation. Watch your tables corrupt themselves and mysql die with error 28 from the table handler. >Fix: The "fix" is something like: mkdir /usr/var cd /var cp db /usr/var ln -s /usr/var/db cp tmp /usr/var ln -s /usr/var/tmp However, it's generally my opinion that at least a WARNING or something should be printed, as the default table types (especially InnoDB) tend to grow by fairly large increments. Either an alternate location needs to be found for "big" semi-permanent files (/var is for mainly transient files -- it's not supposed to be a huge earth-shattering disaster if you lose /var), or that partition needs to be defaulted to something a lot bigger. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 00:20: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 EFDC216A4CF for ; Thu, 22 Jul 2004 00:20:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4A6443D5A for ; Thu, 22 Jul 2004 00:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M0KG9l024952 for ; Thu, 22 Jul 2004 00:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M0KGqb024949; Thu, 22 Jul 2004 00:20:16 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 00:20:16 GMT Resent-Message-Id: <200407220020.i6M0KGqb024949@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jie Gao Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 455EB16A4CE for ; Thu, 22 Jul 2004 00:12:34 +0000 (GMT) Received: from ensa.cpsc.ucalgary.ca (ensa.cpsc.ucalgary.ca [136.159.2.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDE1E43D4C for ; Thu, 22 Jul 2004 00:12:33 +0000 (GMT) (envelope-from gaoj@cpsc.ucalgary.ca) Received: from imgw1.cpsc.ucalgary.ca (imgw1 [136.159.5.9]) i6M0ARjr020328 for ; Wed, 21 Jul 2004 18:10:27 -0600 (MDT) Received: from aibsd (sana-sa [136.159.7.231])i6M0AMpi016026 for ; Wed, 21 Jul 2004 18:10:22 -0600 Received: by aibsd (sSMTP sendmail emulation); Wed, 21 Jul 2004 18:10:21 -0600 Message-Id: <200407220010.i6M0AMpi016026@imgw1.cpsc.ucalgary.ca> Date: Wed, 21 Jul 2004 18:10:21 -0600 From: "Jie Gao" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69400: [maintainer update] textproc/scim update to 0.99.4 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: Thu, 22 Jul 2004 00:20:17 -0000 >Number: 69400 >Category: ports >Synopsis: [maintainer update] textproc/scim update to 0.99.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: Thu Jul 22 00:20:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jie Gao >Release: FreeBSD 5.2.1-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD aibsd 5.2.1-RELEASE-p5 FreeBSD 5.2.1-RELEASE-p5 #0: Mon May 3 02:43:15 MDT 2004 gaoj@aibsd:/usr/obj/usr/src/sys/AIBSD i386 >Description: Update textproc/scim to 0.99.4, and remove a post-patch reinplacement that is now in the new version. Note: The attached patch is strange. It will succeed if I do a patch -p1 in textproc/scim. However it will fail if I patch without strip prefix in textproc directory. Really weird. >How-To-Repeat: >Fix: --- patch-scim begins here --- diff -ruN scim.orig/Makefile scim/Makefile --- scim.orig/Makefile Wed Jul 21 17:28:51 2004 +++ scim/Makefile Wed Jul 21 17:29:20 2004 @@ -6,7 +6,7 @@ # PORTNAME= scim -PORTVERSION= 0.99.2 +PORTVERSION= 0.99.4 CATEGORIES= textproc MASTER_SITES= http://freedesktop.org/~suzhe/sources/ @@ -31,11 +31,6 @@ .if ${OSVERSION} <= 499999 BROKEN= "4.x lacks C99 compliant wctypes implementation" .endif - -# Pay attention to the quotes usage below -post-patch: - ${REINPLACE_CMD} 's/,.GB2312"/,.GB2312,.eucCN"/g' \ - ${WRKSRC}/src/scim_utility.cpp post-configure: ${REINPLACE_CMD} '/^pkgconfigdir/s|$$(libdir)|$${exec_prefix}/libdata|' \ diff -ruN scim.orig/distinfo scim/distinfo --- scim.orig/distinfo Wed Jul 21 17:28:51 2004 +++ scim/distinfo Wed Jul 21 17:30:07 2004 @@ -1,2 +1,2 @@ -MD5 (scim-0.99.2.tar.gz) = 0c63b30d1ec1a6e9668305ad2bdfd0c5 -SIZE (scim-0.99.2.tar.gz) = 1954220 +MD5 (scim-0.99.4.tar.gz) = 8ac0a8bb8b25e198a4f9b67fa4ca950b +SIZE (scim-0.99.4.tar.gz) = 2104313 diff -ruN scim.orig/pkg-plist scim/pkg-plist --- scim.orig/pkg-plist Wed Jul 21 17:28:51 2004 +++ scim/pkg-plist Wed Jul 21 17:29:42 2004 @@ -40,10 +40,10 @@ include/scim-1.0/scim_utility.h lib/libscim-1.0.a lib/libscim-1.0.so -lib/libscim-1.0.so.1 +lib/libscim-1.0.so.3 lib/libscim-gtkutils-1.0.a lib/libscim-gtkutils-1.0.so -lib/libscim-gtkutils-1.0.so.1 +lib/libscim-gtkutils-1.0.so.3 lib/gtk-2.0/immodules/im-scim.so lib/scim-1.0/1.0.0/Config/gconf.so lib/scim-1.0/1.0.0/Config/simple.so @@ -64,6 +64,7 @@ share/control-center-2.0/capplets/scim-setup.desktop share/locale/zh_CN/LC_MESSAGES/scim.mo share/locale/zh_TW/LC_MESSAGES/scim.mo +share/locale/ja_JP/LC_MESSAGES/scim.mo share/pixmaps/scim-setup.png share/scim/icons/down.png share/scim/icons/full-letter.png --- patch-scim ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 00: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 6F88816A4CE for ; Thu, 22 Jul 2004 00:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 613FB43D1D for ; Thu, 22 Jul 2004 00:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M0UNRj025423 for ; Thu, 22 Jul 2004 00:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M0UNZU025417; Thu, 22 Jul 2004 00:30:23 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 00:30:23 GMT Resent-Message-Id: <200407220030.i6M0UNZU025417@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jie Gao Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7095916A4CE; Thu, 22 Jul 2004 00:29:51 +0000 (GMT) Received: from ensc.cpsc.ucalgary.ca (ensc.cpsc.ucalgary.ca [136.159.2.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A70543D4C; Thu, 22 Jul 2004 00:29:51 +0000 (GMT) (envelope-from gaoj@cpsc.ucalgary.ca) Received: from imgw1.cpsc.ucalgary.ca (imgw1.cpsc.ucalgary.ca [136.159.5.9]) i6M0PvxC029634; Wed, 21 Jul 2004 18:25:57 -0600 (MDT) Received: from aibsd (sana-sa [136.159.7.231])i6M0Pqpi016726; Wed, 21 Jul 2004 18:25:52 -0600 Received: by aibsd (sSMTP sendmail emulation); Wed, 21 Jul 2004 18:25:52 -0600 Message-Id: <200407220025.i6M0Pqpi016726@imgw1.cpsc.ucalgary.ca> Date: Wed, 21 Jul 2004 18:25:52 -0600 From: "Jie Gao" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: freebsd-ports@FreeBSD.org Subject: ports/69401: New port: textproc/skim -- An input method platform based on SCIM library and KDE/QT 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: Thu, 22 Jul 2004 00:30:23 -0000 >Number: 69401 >Category: ports >Synopsis: New port: textproc/skim -- An input method platform based on SCIM library and KDE/QT >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 Jul 22 00:30:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jie Gao >Release: FreeBSD 5.2.1-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD aibsd 5.2.1-RELEASE-p5 FreeBSD 5.2.1-RELEASE-p5 #0: Mon May 3 02:43:15 MDT 2004 gaoj@aibsd:/usr/obj/usr/src/sys/AIBSD i386 >Description: A New port textproc/skim. Skim is a input method platform based upon scim libraries optimized for KDE. It provides a GUI panel (named scim-panel-kde), a KConfig config module and SetupUIs for itself and scim-lib. It also has its own plugin system which supports on-demand loadable actions. WWW: http://scim.freedesktop.org/ This port depends on textproc/scim, and requires version 0.99.4 or above. So this PR depends on PR ports/69400 >How-To-Repeat: >Fix: --- textproc-skim.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: # # textproc/skim/ # textproc/skim/Makefile # textproc/skim/distinfo # textproc/skim/pkg-descr # textproc/skim/pkg-plist # textproc/skim/pkg-message # textproc/skim/files # textproc/skim/files/patch-plugins-scimlauncher-scimlauncher.cpp # echo c - textproc/skim/ mkdir -p textproc/skim/ > /dev/null 2>&1 echo x - textproc/skim/Makefile sed 's/^X//' >textproc/skim/Makefile << 'END-of-textproc/skim/Makefile' X# New ports collection makefile for: skim X# Date created: 21 July 2004 X# Whom: Jie Gao X# X# $FreeBSD$ X# X XPORTNAME= skim XPORTVERSION= 0.9.3 XCATEGORIES= textproc kde XMASTER_SITES= http://freedesktop.org/~cougar/skim/downloads/ X XMAINTAINER= gaoj@cpsc.ucalgary.ca XCOMMENT= An input method platform based on SCIM library and KDE/QT X XLIB_DEPENDS= scim-1.0.3:${PORTSDIR}/textproc/scim X XUSE_KDELIBS_VER=3 XUSE_ICONV= yes XUSE_GMAKE= yes XUSE_REINPLACE= yes XGNU_CONFIGURE= yes XCONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ X PTHREAD_LIBS="${PTHREAD_LIBS}" X Xpre-configure: X ${REINPLACE_CMD} "s,-pedantic,,g; \ X s,-pthread,${PTHREAD_LIBS},g" ${WRKSRC}/configure X ${REINPLACE_CMD} "s, | .*freebsd\*)$$,*),g" ${WRKSRC}/admin/ltmain.sh X Xpost-install: X @${CAT} ${PKGMESSAGE} X @${ECHO} To display this message again, type make post-install X X.include END-of-textproc/skim/Makefile echo x - textproc/skim/distinfo sed 's/^X//' >textproc/skim/distinfo << 'END-of-textproc/skim/distinfo' XMD5 (skim-0.9.3.tar.gz) = e3dd8d58262fdd379e9921ab384051b0 XSIZE (skim-0.9.3.tar.gz) = 876274 END-of-textproc/skim/distinfo echo x - textproc/skim/pkg-descr sed 's/^X//' >textproc/skim/pkg-descr << 'END-of-textproc/skim/pkg-descr' XSkim is a input method platform based upon scim libraries optimized for KDE. It Xprovides a GUI panel (named scim-panel-kde), a KConfig config module and XSetupUIs for itself and scim-lib. It also has its own plugin system which Xsupports on-demand loadable actions. X XWWW: http://scim.freedesktop.org/ END-of-textproc/skim/pkg-descr echo x - textproc/skim/pkg-plist sed 's/^X//' >textproc/skim/pkg-plist << 'END-of-textproc/skim/pkg-plist' Xbin/skim Xbin/scim-panel-kde Xlib/kde3/kcm_skimplugin_configplugin.la Xlib/kde3/kcm_skimplugin_configplugin.so Xlib/kde3/kcm_skimplugin_scim_global.la Xlib/kde3/kcm_skimplugin_scim_global.so Xlib/kde3/kcm_skimplugin_inputwindow.la Xlib/kde3/kcm_skimplugin_inputwindow.so Xlib/kde3/kcm_skimplugin_mainwindow.la Xlib/kde3/kcm_skimplugin_mainwindow.so Xlib/kde3/kcm_skimplugin_scim_imengines.la Xlib/kde3/kcm_skimplugin_scim_imengines.so Xlib/kde3/kcm_skimplugin_scim_qtimm.la Xlib/kde3/kcm_skimplugin_scim_qtimm.so Xlib/kde3/kcm_skimplugin_scim_smartpinyin.la Xlib/kde3/kcm_skimplugin_scim_smartpinyin.so Xlib/kde3/kcm_skimplugin_scim_tables.la Xlib/kde3/kcm_skimplugin_scim_tables.so Xlib/kde3/kcm_skimplugin_scim_x.la Xlib/kde3/kcm_skimplugin_scim_x.so Xlib/kde3/kcm_skimplugin_systemtray.la Xlib/kde3/kcm_skimplugin_systemtray.so Xlib/kde3/skimplugin_inputwindow.la Xlib/kde3/skimplugin_inputwindow.so Xlib/kde3/skimplugin_mainwindow.la Xlib/kde3/skimplugin_mainwindow.so Xlib/kde3/skimplugin_scim.la Xlib/kde3/skimplugin_scim.so Xlib/kde3/skimplugin_setupwindow.la Xlib/kde3/skimplugin_setupwindow.so Xlib/kde3/skimplugin_systemtray.la Xlib/kde3/skimplugin_systemtray.so Xlib/skim/libscim-kdeutils.la Xlib/skim/libscim-kdeutils.so Xlib/skim/libscim-kdeutils.so.0 Xlib/skim/libskim.la Xlib/skim/libskim.so Xlib/skim/libskim.so.0 Xshare/applnk/Utilities/skim.desktop Xshare/apps/skim/mainwindowui.rc Xshare/apps/skim/pics/full_width_letter.png Xshare/apps/skim/pics/full_width_punct.png Xshare/apps/skim/pics/half_width_letter.png Xshare/apps/skim/pics/half_width_punct.png Xshare/apps/skim/pics/keyboard.png Xshare/apps/skim/pics/pin_down.png Xshare/apps/skim/pics/pin_up.png Xshare/apps/skim/pics/skim.png Xshare/config.kcfg/generictable.kcfg Xshare/config.kcfg/qtimm.kcfg Xshare/config.kcfg/scimkdeconfig.kcfg Xshare/config.kcfg/smartpinyin.kcfg Xshare/doc/HTML/en/skim/common Xshare/doc/HTML/en/skim/index.cache.bz2 Xshare/doc/HTML/en/skim/index.docbook Xshare/doc/HTML/en/skim/inputwindow.png Xshare/doc/HTML/en/skim/kdesystray.png Xshare/doc/HTML/en/skim/kdex.dtd Xshare/doc/HTML/en/skim/mainwindow.png Xshare/doc/HTML/en/skim/setupwindow.png Xshare/locale/zh_CN/LC_MESSAGES/skim.mo Xshare/services/skimconfiguredialog/kcm_skimplugin_configplugin_config.desktop Xshare/services/skimconfiguredialog/skimplugin_scim_global_config.desktop Xshare/services/skimconfiguredialog/skimplugin_inputwindow_config.desktop Xshare/services/skimconfiguredialog/skimplugin_mainwindow_config.desktop Xshare/services/skimconfiguredialog/skimplugin_scim_imengines_config.desktop Xshare/services/skimconfiguredialog/skimplugin_scim_qtimm_config.desktop Xshare/services/skimconfiguredialog/skimplugin_scim_smartpinyin_config.desktop Xshare/services/skimconfiguredialog/skimplugin_scim_table_config.desktop Xshare/services/skimconfiguredialog/skimplugin_scim_x_config.desktop Xshare/services/skimconfiguredialog/skimplugin_systemtray_config.desktop Xshare/services/skimplugin_inputwindow.desktop Xshare/services/skimplugin_mainwindow.desktop Xshare/services/skimplugin_scim.desktop Xshare/services/skimplugin_setupwindow.desktop Xshare/services/skimplugin_systemtray.desktop Xshare/servicetypes/skimplugin.desktop Xshare/servicetypes/skimui.desktop X@cwd %%X11BASE%% Xlib/scim-1.0/1.0.0/Config/kconfig.la Xlib/scim-1.0/1.0.0/Config/kconfig.so Xlib/scim-1.0/1.0.0/Config/kconfig.so.0 X@cwd %%LOCALBASE%% X@dirrm share/services/skimconfiguredialog X@dirrm share/doc/HTML/en/skim X@dirrm share/apps/skim/pics X@dirrm share/apps/skim X@dirrm lib/skim END-of-textproc/skim/pkg-plist echo x - textproc/skim/pkg-message sed 's/^X//' >textproc/skim/pkg-message << 'END-of-textproc/skim/pkg-message' X------------------------------------------------------------------------------ XThe installation of skim has finished. You can find correponding menu items in XKDE's menu and Control Center. X XPlease note this port contains only KDE/QT frontends and utilities to the SCIM Xplatform. If you want to use any actual input method, please install the Xfollowing ports as needed: X X Chinese: X chinese/scim-tables Table based input methods: Array30, CangJie, Cantonese, X Dayi, Erbi, EZ, Jyutping, Simplex, Wubi, Ziranma, ZhuYin X chinese/scim-chinese Smart pinyin X X Korean: X korean/scim-tables Table based input methods: Hangul, Hanja X X Japanese: X japanese/scim-tables Table based input methods: HIRAGANA, KATAKANA, Nippon X XYou can use the command `skim' to start after properly setting SCIM (please Xrefer to the message displayed by scim installation). X------------------------------------------------------------------------------ END-of-textproc/skim/pkg-message echo c - textproc/skim/files mkdir -p textproc/skim/files > /dev/null 2>&1 echo x - textproc/skim/files/patch-plugins-scimlauncher-scimlauncher.cpp sed 's/^X//' >textproc/skim/files/patch-plugins-scimlauncher-scimlauncher.cpp << 'END-of-textproc/skim/files/patch-plugins-scimlauncher-scimlauncher.cpp' X--- plugins/scimlauncher/scimlauncher.cpp~ Sun Jul 11 06:19:13 2004 X+++ plugins/scimlauncher/scimlauncher.cpp Wed Jul 21 15:32:13 2004 X@@ -31,6 +31,20 @@ X K_EXPORT_COMPONENT_FACTORY( skimplugin_scim, X KGenericFactory( "skimplugin_scim" ) ); X X+char* mystrndup (const char* s, size_t n){ X+ size_t len=strlen(s); X+ if(len>n) X+ len=n; X+ char* newc=(char*)malloc(len+1); X+ X+ if (newc==NULL) X+ return NULL; X+ X+ newc[len] = '\0'; X+ return (char *)memcpy(newc, s, len); X+} X+#define strndup mystrndup X+ X ScimThread::ScimThread(QString _args) X { X args = "skim " + _args; END-of-textproc/skim/files/patch-plugins-scimlauncher-scimlauncher.cpp exit --- textproc-skim.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 00:57: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 BEA6B16A4CE; Thu, 22 Jul 2004 00:57:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F1F643D46; Thu, 22 Jul 2004 00:57:01 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M0v1ff027047; Thu, 22 Jul 2004 00:57:01 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M0v1re027043; Thu, 22 Jul 2004 00:57:01 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 00:57:01 GMT From: Ying-Chieh Liao Message-Id: <200407220057.i6M0v1re027043@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69397: [MAINTAINER] www/Kwiki: update to 0.32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 00:57:01 -0000 Synopsis: [MAINTAINER] www/Kwiki: update to 0.32 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 00:56:53 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69397 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:02: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 0C0BF16A4CE; Thu, 22 Jul 2004 01:02:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF0DF43D2F; Thu, 22 Jul 2004 01:02:29 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M12TFa027599; Thu, 22 Jul 2004 01:02:29 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M12TQT027595; Thu, 22 Jul 2004 01:02:29 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:02:29 GMT From: Ying-Chieh Liao Message-Id: <200407220102.i6M12TQT027595@freefall.freebsd.org> To: jylefort@brutele.be, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69395: Update port: mail/mail-notification to 0.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: Thu, 22 Jul 2004 01:02:30 -0000 Synopsis: Update port: mail/mail-notification to 0.5.0 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:02:20 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69395 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:10: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 236C716A4CE; Thu, 22 Jul 2004 01:10:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0615143D1D; Thu, 22 Jul 2004 01:10:53 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1Aq2e031499; Thu, 22 Jul 2004 01:10:52 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1Aq6C031495; Thu, 22 Jul 2004 01:10:52 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:10:52 GMT From: Ying-Chieh Liao Message-Id: <200407220110.i6M1Aq6C031495@freefall.freebsd.org> To: ahze@ahze.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69393: [MAINTAINER] audio/libcddb: update to 0.9.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: Thu, 22 Jul 2004 01:10:53 -0000 Synopsis: [MAINTAINER] audio/libcddb: update to 0.9.5 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:10:46 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69393 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:26: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 6123D16A4CE; Thu, 22 Jul 2004 01:26:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4171C43D39; Thu, 22 Jul 2004 01:26:24 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1QOsJ032136; Thu, 22 Jul 2004 01:26:24 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1QNjE032132; Thu, 22 Jul 2004 01:26:23 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:26:23 GMT From: Ying-Chieh Liao Message-Id: <200407220126.i6M1QNjE032132@freefall.freebsd.org> To: ahze@ahze.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69388: [MAINTAINER] audio/faac: [Remove windows stuff and fix for gstreamer-plugins] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 01:26:24 -0000 Synopsis: [MAINTAINER] audio/faac: [Remove windows stuff and fix for gstreamer-plugins] State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:26:17 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69388 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01: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 F047916A4CE for ; Thu, 22 Jul 2004 01:30:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E074943D39 for ; Thu, 22 Jul 2004 01:30:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M1UErJ032279 for ; Thu, 22 Jul 2004 01:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1UEk5032276; Thu, 22 Jul 2004 01:30:14 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 01:30:14 GMT Resent-Message-Id: <200407220130.i6M1UEk5032276@freefall.freebsd.org> 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 EFA6816A4E7 for ; Thu, 22 Jul 2004 01:26:18 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 518DE43D1D for ; Thu, 22 Jul 2004 01:26:18 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 6929615238 for ; Thu, 22 Jul 2004 09:27:45 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 28136-10 for ; Thu, 22 Jul 2004 09:27:44 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 885A315236; Thu, 22 Jul 2004 09:27:44 +0800 (CST) Message-Id: <20040722012744.885A315236@mail.dragon2.net> Date: Thu, 22 Jul 2004 09:27:44 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69402: [MAINTAINER] textproc/nltk: update to 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: Thu, 22 Jul 2004 01:30:15 -0000 >Number: 69402 >Category: ports >Synopsis: [MAINTAINER] textproc/nltk: update to 1.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: Thu Jul 22 01:30:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.4 - required python version to 2.3 - modify pkg-plist (new files, removed files) Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- nltk-1.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/nltk/Makefile /home/clsung/nltk/Makefile --- /usr/ports/textproc/nltk/Makefile Sun Apr 4 23:17:08 2004 +++ /home/clsung/nltk/Makefile Thu Jul 22 09:25:35 2004 @@ -7,7 +7,7 @@ # PORTNAME= nltk -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER= clsung@dragon2.net COMMENT= Natural language toolkit written in python -USE_PYTHON= 2.1+ +USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes USE_PYTHON_PREFIX= yes diff -ruN --exclude=CVS /usr/ports/textproc/nltk/distinfo /home/clsung/nltk/distinfo --- /usr/ports/textproc/nltk/distinfo Sun Apr 4 23:17:08 2004 +++ /home/clsung/nltk/distinfo Thu Jul 22 00:43:25 2004 @@ -1,2 +1,2 @@ -MD5 (nltk-1.3.tar.gz) = 336f038ff587851e23bd01abb03b3aad -SIZE (nltk-1.3.tar.gz) = 274824 +MD5 (nltk-1.4.tar.gz) = cf54fcf456a0dc03f8fd05f95fd9b1ae +SIZE (nltk-1.4.tar.gz) = 323438 diff -ruN --exclude=CVS /usr/ports/textproc/nltk/pkg-plist /home/clsung/nltk/pkg-plist --- /usr/ports/textproc/nltk/pkg-plist Sun Apr 4 23:17:09 2004 +++ /home/clsung/nltk/pkg-plist Thu Jul 22 09:23:38 2004 @@ -10,21 +10,24 @@ %%PYTHON_SITELIBDIR%%/nltk/classifier/__init__.py %%PYTHON_SITELIBDIR%%/nltk/classifier/__init__.pyc %%PYTHON_SITELIBDIR%%/nltk/classifier/__init__.pyo -%%PYTHON_SITELIBDIR%%/nltk/classifier/feature.py -%%PYTHON_SITELIBDIR%%/nltk/classifier/feature.pyc -%%PYTHON_SITELIBDIR%%/nltk/classifier/feature.pyo -%%PYTHON_SITELIBDIR%%/nltk/classifier/featureselection.py -%%PYTHON_SITELIBDIR%%/nltk/classifier/featureselection.pyc -%%PYTHON_SITELIBDIR%%/nltk/classifier/featureselection.pyo %%PYTHON_SITELIBDIR%%/nltk/classifier/maxent.py %%PYTHON_SITELIBDIR%%/nltk/classifier/maxent.pyc %%PYTHON_SITELIBDIR%%/nltk/classifier/maxent.pyo %%PYTHON_SITELIBDIR%%/nltk/classifier/naivebayes.py %%PYTHON_SITELIBDIR%%/nltk/classifier/naivebayes.pyc %%PYTHON_SITELIBDIR%%/nltk/classifier/naivebayes.pyo -%%PYTHON_SITELIBDIR%%/nltk/corpus.py -%%PYTHON_SITELIBDIR%%/nltk/corpus.pyc -%%PYTHON_SITELIBDIR%%/nltk/corpus.pyo +%%PYTHON_SITELIBDIR%%/nltk/clusterer/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/clusterer/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/clusterer/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/corpus/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/corpus/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/corpus/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/corpus/rogetreader.py +%%PYTHON_SITELIBDIR%%/nltk/corpus/rogetreader.pyc +%%PYTHON_SITELIBDIR%%/nltk/corpus/rogetreader.pyo +%%PYTHON_SITELIBDIR%%/nltk/corpus/tree.py +%%PYTHON_SITELIBDIR%%/nltk/corpus/tree.pyc +%%PYTHON_SITELIBDIR%%/nltk/corpus/tree.pyo %%PYTHON_SITELIBDIR%%/nltk/draw/__init__.py %%PYTHON_SITELIBDIR%%/nltk/draw/__init__.pyc %%PYTHON_SITELIBDIR%%/nltk/draw/__init__.pyo @@ -37,9 +40,9 @@ %%PYTHON_SITELIBDIR%%/nltk/draw/corpus.py %%PYTHON_SITELIBDIR%%/nltk/draw/corpus.pyc %%PYTHON_SITELIBDIR%%/nltk/draw/corpus.pyo -%%PYTHON_SITELIBDIR%%/nltk/draw/featurestruct.py -%%PYTHON_SITELIBDIR%%/nltk/draw/featurestruct.pyc -%%PYTHON_SITELIBDIR%%/nltk/draw/featurestruct.pyo +%%PYTHON_SITELIBDIR%%/nltk/draw/featurestructure.py +%%PYTHON_SITELIBDIR%%/nltk/draw/featurestructure.pyc +%%PYTHON_SITELIBDIR%%/nltk/draw/featurestructure.pyo %%PYTHON_SITELIBDIR%%/nltk/draw/fsa.py %%PYTHON_SITELIBDIR%%/nltk/draw/fsa.pyc %%PYTHON_SITELIBDIR%%/nltk/draw/fsa.pyo @@ -58,9 +61,27 @@ %%PYTHON_SITELIBDIR%%/nltk/draw/tree.py %%PYTHON_SITELIBDIR%%/nltk/draw/tree.pyc %%PYTHON_SITELIBDIR%%/nltk/draw/tree.pyo -%%PYTHON_SITELIBDIR%%/nltk/featurestruct.py -%%PYTHON_SITELIBDIR%%/nltk/featurestruct.pyc -%%PYTHON_SITELIBDIR%%/nltk/featurestruct.pyo +%%PYTHON_SITELIBDIR%%/nltk/eval.py +%%PYTHON_SITELIBDIR%%/nltk/eval.pyc +%%PYTHON_SITELIBDIR%%/nltk/eval.pyo +%%PYTHON_SITELIBDIR%%/nltk/featurestructure.py +%%PYTHON_SITELIBDIR%%/nltk/featurestructure.pyc +%%PYTHON_SITELIBDIR%%/nltk/featurestructure.pyo +%%PYTHON_SITELIBDIR%%/nltk/feature/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/feature/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/feature/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/feature/document.py +%%PYTHON_SITELIBDIR%%/nltk/feature/document.pyc +%%PYTHON_SITELIBDIR%%/nltk/feature/document.pyo +%%PYTHON_SITELIBDIR%%/nltk/feature/word.py +%%PYTHON_SITELIBDIR%%/nltk/feature/word.pyc +%%PYTHON_SITELIBDIR%%/nltk/feature/word.pyo +%%PYTHON_SITELIBDIR%%/nltk/hmm/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/hmm/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/hmm/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/hmm/multioutput.py +%%PYTHON_SITELIBDIR%%/nltk/hmm/multioutput.pyc +%%PYTHON_SITELIBDIR%%/nltk/hmm/multioutput.pyo %%PYTHON_SITELIBDIR%%/nltk/parser/__init__.py %%PYTHON_SITELIBDIR%%/nltk/parser/__init__.pyc %%PYTHON_SITELIBDIR%%/nltk/parser/__init__.pyo @@ -76,21 +97,18 @@ %%PYTHON_SITELIBDIR%%/nltk/probability.py %%PYTHON_SITELIBDIR%%/nltk/probability.pyc %%PYTHON_SITELIBDIR%%/nltk/probability.pyo -%%PYTHON_SITELIBDIR%%/nltk/sense.py -%%PYTHON_SITELIBDIR%%/nltk/sense.pyc -%%PYTHON_SITELIBDIR%%/nltk/sense.pyo -%%PYTHON_SITELIBDIR%%/nltk/set.py -%%PYTHON_SITELIBDIR%%/nltk/set.pyc -%%PYTHON_SITELIBDIR%%/nltk/set.pyo %%PYTHON_SITELIBDIR%%/nltk/stemmer/__init__.py %%PYTHON_SITELIBDIR%%/nltk/stemmer/__init__.pyc %%PYTHON_SITELIBDIR%%/nltk/stemmer/__init__.pyo %%PYTHON_SITELIBDIR%%/nltk/stemmer/porter.py %%PYTHON_SITELIBDIR%%/nltk/stemmer/porter.pyc %%PYTHON_SITELIBDIR%%/nltk/stemmer/porter.pyo -%%PYTHON_SITELIBDIR%%/nltk/tagger.py -%%PYTHON_SITELIBDIR%%/nltk/tagger.pyc -%%PYTHON_SITELIBDIR%%/nltk/tagger.pyo +%%PYTHON_SITELIBDIR%%/nltk/tagger/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/tagger/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/tagger/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/tagger/brill.py +%%PYTHON_SITELIBDIR%%/nltk/tagger/brill.pyc +%%PYTHON_SITELIBDIR%%/nltk/tagger/brill.pyo %%PYTHON_SITELIBDIR%%/nltk/test/__init__.py %%PYTHON_SITELIBDIR%%/nltk/test/__init__.pyc %%PYTHON_SITELIBDIR%%/nltk/test/__init__.pyo @@ -103,6 +121,9 @@ %%PYTHON_SITELIBDIR%%/nltk/test/imports.py %%PYTHON_SITELIBDIR%%/nltk/test/imports.pyc %%PYTHON_SITELIBDIR%%/nltk/test/imports.pyo +%%PYTHON_SITELIBDIR%%/nltk/test/parser.py +%%PYTHON_SITELIBDIR%%/nltk/test/parser.pyc +%%PYTHON_SITELIBDIR%%/nltk/test/parser.pyo %%PYTHON_SITELIBDIR%%/nltk/test/probability.py %%PYTHON_SITELIBDIR%%/nltk/test/probability.pyc %%PYTHON_SITELIBDIR%%/nltk/test/probability.pyo @@ -121,12 +142,36 @@ %%PYTHON_SITELIBDIR%%/nltk/test/tree.py %%PYTHON_SITELIBDIR%%/nltk/test/tree.pyc %%PYTHON_SITELIBDIR%%/nltk/test/tree.pyo +%%PYTHON_SITELIBDIR%%/nltk/test/util.py +%%PYTHON_SITELIBDIR%%/nltk/test/util.pyc +%%PYTHON_SITELIBDIR%%/nltk/test/util.pyo %%PYTHON_SITELIBDIR%%/nltk/token.py %%PYTHON_SITELIBDIR%%/nltk/token.pyc %%PYTHON_SITELIBDIR%%/nltk/token.pyo -%%PYTHON_SITELIBDIR%%/nltk/tokenizer.py -%%PYTHON_SITELIBDIR%%/nltk/tokenizer.pyc -%%PYTHON_SITELIBDIR%%/nltk/tokenizer.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenizer/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/tokenizer/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenizer/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/__init__.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/__init__.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/__init__.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/conll.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/conll.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/conll.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/ieer.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/ieer.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/ieer.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/sense.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/sense.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/sense.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/tagged.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/tagged.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/tagged.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/tokenizerbased.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/tokenizerbased.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/tokenizerbased.pyo +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/treebank.py +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/treebank.pyc +%%PYTHON_SITELIBDIR%%/nltk/tokenreader/treebank.pyo %%PYTHON_SITELIBDIR%%/nltk/tree.py %%PYTHON_SITELIBDIR%%/nltk/tree.pyc %%PYTHON_SITELIBDIR%%/nltk/tree.pyo @@ -134,8 +179,15 @@ %%PYTHON_SITELIBDIR%%/nltk/util.pyc %%PYTHON_SITELIBDIR%%/nltk/util.pyo @dirrm %%PYTHON_SITELIBDIR%%/nltk/classifier +@dirrm %%PYTHON_SITELIBDIR%%/nltk/clusterer +@dirrm %%PYTHON_SITELIBDIR%%/nltk/corpus @dirrm %%PYTHON_SITELIBDIR%%/nltk/draw +@dirrm %%PYTHON_SITELIBDIR%%/nltk/feature +@dirrm %%PYTHON_SITELIBDIR%%/nltk/hmm @dirrm %%PYTHON_SITELIBDIR%%/nltk/parser @dirrm %%PYTHON_SITELIBDIR%%/nltk/stemmer +@dirrm %%PYTHON_SITELIBDIR%%/nltk/tagger @dirrm %%PYTHON_SITELIBDIR%%/nltk/test +@dirrm %%PYTHON_SITELIBDIR%%/nltk/tokenizer +@dirrm %%PYTHON_SITELIBDIR%%/nltk/tokenreader @dirrm %%PYTHON_SITELIBDIR%%/nltk --- nltk-1.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:32: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 CC81F16A4CE; Thu, 22 Jul 2004 01:32:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABBE043D58; Thu, 22 Jul 2004 01:32:36 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1Waig033455; Thu, 22 Jul 2004 01:32:36 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1WaTd033451; Thu, 22 Jul 2004 01:32:36 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:32:36 GMT From: Ying-Chieh Liao Message-Id: <200407220132.i6M1WaTd033451@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69386: [MAINTAINER] textproc/dbacl: update 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: Thu, 22 Jul 2004 01:32:37 -0000 Synopsis: [MAINTAINER] textproc/dbacl: update to 1.7 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:32:30 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69386 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:43: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 911ED16A4CE; Thu, 22 Jul 2004 01:43:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7013A43D1D; Thu, 22 Jul 2004 01:43:32 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1hWl5034883; Thu, 22 Jul 2004 01:43:32 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1hWCD034879; Thu, 22 Jul 2004 01:43:32 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:43:32 GMT From: Ying-Chieh Liao Message-Id: <200407220143.i6M1hWCD034879@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69402: [MAINTAINER] textproc/nltk: update to 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: Thu, 22 Jul 2004 01:43:32 -0000 Synopsis: [MAINTAINER] textproc/nltk: update to 1.4 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:43:25 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69402 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:49: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 212A016A4CE; Thu, 22 Jul 2004 01:49:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 019AD43D49; Thu, 22 Jul 2004 01:49:08 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1n7P6035053; Thu, 22 Jul 2004 01:49:07 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1n7wQ035048; Thu, 22 Jul 2004 01:49:07 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:49:07 GMT From: Ying-Chieh Liao Message-Id: <200407220149.i6M1n7wQ035048@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69370: New port: net-mgmt/nagiostat version 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: Thu, 22 Jul 2004 01:49:08 -0000 Synopsis: New port: net-mgmt/nagiostat version 1.0.0 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:49:00 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69370 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:52: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 CB61716A4CE; Thu, 22 Jul 2004 01:52:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9A6C43D3F; Thu, 22 Jul 2004 01:52:15 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1qFZj035280; Thu, 22 Jul 2004 01:52:15 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1qFOg035276; Thu, 22 Jul 2004 01:52:15 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:52:15 GMT From: Ying-Chieh Liao Message-Id: <200407220152.i6M1qFOg035276@freefall.freebsd.org> To: umeno@rr.iij4u.or.jp, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69363: Maintainer Update: graphics/zphoto to 1.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, 22 Jul 2004 01:52:16 -0000 Synopsis: Maintainer Update: graphics/zphoto to 1.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:52:04 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69363 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:54: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 43EC016A4CE; Thu, 22 Jul 2004 01:54:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 237DA43D2F; Thu, 22 Jul 2004 01:54:48 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1smc3035626; Thu, 22 Jul 2004 01:54:48 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1sl1o035622; Thu, 22 Jul 2004 01:54:47 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:54:47 GMT From: Ying-Chieh Liao Message-Id: <200407220154.i6M1sl1o035622@freefall.freebsd.org> To: tim@bishnet.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69353: [MAINTAINER] irc/pircbot: update to 1.4.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, 22 Jul 2004 01:54:48 -0000 Synopsis: [MAINTAINER] irc/pircbot: update to 1.4.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:54:41 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69353 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 01:56: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 9DA4016A4D0; Thu, 22 Jul 2004 01:56:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5795943D1D; Thu, 22 Jul 2004 01:56:43 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M1uhQf035717; Thu, 22 Jul 2004 01:56:43 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M1ug5j035713; Thu, 22 Jul 2004 01:56:42 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 01:56:42 GMT From: Ying-Chieh Liao Message-Id: <200407220156.i6M1ug5j035713@freefall.freebsd.org> To: bogorodskiy@inbox.ru, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69348: [ maintainer ] devel/phptags: update to 0.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: Thu, 22 Jul 2004 01:56:44 -0000 Synopsis: [ maintainer ] devel/phptags: update to 0.2.3 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 01:56:35 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69348 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02: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 0AA6816A522; Thu, 22 Jul 2004 02:00:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBE2943D48; Thu, 22 Jul 2004 02:00:22 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M20Mk1035814; Thu, 22 Jul 2004 02:00:22 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M20LgC035810; Thu, 22 Jul 2004 02:00:21 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 02:00:21 GMT From: Ying-Chieh Liao Message-Id: <200407220200.i6M20LgC035810@freefall.freebsd.org> To: simond@irrelevant.org, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69346: Mainainer port update: mail/squirrelmail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 02:00:51 -0000 Synopsis: Mainainer port update: mail/squirrelmail State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 02:00:13 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69346 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02:02: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 1875116A4D4; Thu, 22 Jul 2004 02:02:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED51D43D2F; Thu, 22 Jul 2004 02:02:03 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M223md036037; Thu, 22 Jul 2004 02:02:03 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M223Jv036033; Thu, 22 Jul 2004 02:02:03 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 02:02:03 GMT From: Ying-Chieh Liao Message-Id: <200407220202.i6M223Jv036033@freefall.freebsd.org> To: tux@pinguru.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69344: Update Port: irc/unreal X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 02:02:04 -0000 Synopsis: Update Port: irc/unreal State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 02:01:57 GMT 2004 State-Changed-Why: ommitted, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69344 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02:04: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 4A08F16A4CE; Thu, 22 Jul 2004 02:04:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20CF743D49; Thu, 22 Jul 2004 02:04:08 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M248JW036098; Thu, 22 Jul 2004 02:04:08 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M247t1036094; Thu, 22 Jul 2004 02:04:07 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 02:04:07 GMT From: Ying-Chieh Liao Message-Id: <200407220204.i6M247t1036094@freefall.freebsd.org> To: martin@tradex.sk, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69342: [UPDATE] www/pear-APC to 2.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: Thu, 22 Jul 2004 02:04:08 -0000 Synopsis: [UPDATE] www/pear-APC to 2.0.4 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 02:04:01 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69342 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02:06: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 C753016A4CE; Thu, 22 Jul 2004 02:06:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7BAB43D2F; Thu, 22 Jul 2004 02:06:34 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M26Yxw039866; Thu, 22 Jul 2004 02:06:34 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M26YfU039862; Thu, 22 Jul 2004 02:06:34 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 02:06:34 GMT From: Ying-Chieh Liao Message-Id: <200407220206.i6M26YfU039862@freefall.freebsd.org> To: martin@tradex.sk, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69341: [MAINTAINER UPDATE] databases/adodb to 4.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 02:06:34 -0000 Synopsis: [MAINTAINER UPDATE] databases/adodb to 4.50 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 02:06:27 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69341 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02: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 01C8916A4CE for ; Thu, 22 Jul 2004 02:10:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7CAA43D48 for ; Thu, 22 Jul 2004 02:10:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M2AIcA039966 for ; Thu, 22 Jul 2004 02:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M2AIGw039965; Thu, 22 Jul 2004 02:10:18 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 02:10:18 GMT Resent-Message-Id: <200407220210.i6M2AIGw039965@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F4E516A4CE for ; Thu, 22 Jul 2004 02:03:03 +0000 (GMT) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC17A43D2D for ; Thu, 22 Jul 2004 02:02:57 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf21aec.mail.bellsouth.netESMTP <20040722020256.BLYT1776.imf21aec.mail.bellsouth.net@gentoo.ahze.net> for ; Wed, 21 Jul 2004 22:02:56 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6M22uPb072751; Wed, 21 Jul 2004 22:02:56 -0400 (EDT) (envelope-from ahze) Message-Id: <200407220202.i6M22uPb072751@gentoo.ahze.net> Date: Wed, 21 Jul 2004 22:02:56 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69403: [NEW PORT] graphics/exifprobe: Probes JPEG or TIFF images and reports contents and structure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 02:10:19 -0000 >Number: 69403 >Category: ports >Synopsis: [NEW PORT] graphics/exifprobe: Probes JPEG or TIFF images and reports contents and structure >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 Jul 22 02:10:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: [From exifprobe(1)] Exifprobe examines and reports the contents and structure of JPEG and TIFF image files. It will recognize all standard JPEG markers (including APPn markers) and will report the contents of any properly structured TIFF IFD encountered, even when entry tags are not recognized. Recognized TIFF and TIFF/EP tags are expanded, including EXIF2.2 sections and camera MakerNotes which are found to be in TIFF IFD format. Location, size, and format of image data is reported by default. WWW: http://www.monroe.net/~dhh/exifprobe.d/exifprobe.html Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- exifprobe-1.2.4.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: # # exifprobe # exifprobe/pkg-descr # exifprobe/Makefile # exifprobe/distinfo # echo c - exifprobe mkdir -p exifprobe > /dev/null 2>&1 echo x - exifprobe/pkg-descr sed 's/^X//' >exifprobe/pkg-descr << 'END-of-exifprobe/pkg-descr' X[From exifprobe(1)] X XExifprobe examines and reports the contents and structure of JPEG and XTIFF image files. It will recognize all standard JPEG markers (including XAPPn markers) and will report the contents of any properly structured TIFF XIFD encountered, even when entry tags are not recognized. Recognized TIFF Xand TIFF/EP tags are expanded, including EXIF2.2 sections and camera MakerNotes Xwhich are found to be in TIFF IFD format. Location, size, and format of image Xdata is reported by default. X XWWW: http://www.monroe.net/~dhh/exifprobe.d/exifprobe.html END-of-exifprobe/pkg-descr echo x - exifprobe/Makefile sed 's/^X//' >exifprobe/Makefile << 'END-of-exifprobe/Makefile' X# New ports collection makefile for: exifprobe X# Date created: 2004-07-21 X# Whom: Michael Johnson X# X# $FreeBSD$ X# X XPORTNAME= exifprobe XPORTVERSION= 1.2.4 XCATEGORIES= graphics XMASTER_SITES= http://www.monroe.net/~dhh/exifprobe.d/ X XMAINTAINER= ahze@ahze.net XCOMMENT= Probes JPEG or TIFF images and reports contents and structure X XUSE_REINPLACE= yes X XMAN1= exifgrep.1 exifprobe.1 XPORTDOCS= DESCRIPTION exifprobe-rman.html XPLIST_FILES= bin/exifgrep bin/exifprobe X Xpost-patch: X @${REINPLACE_CMD} -e 's|cc|${CC}|; s|-DC|${CFLAGS} -DC|' \ X ${WRKSRC}/${MAKEFILE} X Xdo-install: X @${INSTALL_SCRIPT} ${WRKSRC}/exifgrep ${PREFIX}/bin X @${INSTALL_PROGRAM} ${WRKSRC}/exifprobe ${PREFIX}/bin X.for i in ${MAN1} X @${INSTALL_MAN} ${WRKSRC}/${i} ${MANPREFIX}/man/man1 X.endfor 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-exifprobe/Makefile echo x - exifprobe/distinfo sed 's/^X//' >exifprobe/distinfo << 'END-of-exifprobe/distinfo' XMD5 (exifprobe-1.2.4.tar.gz) = e10f72205e805928102fdcf44c508a64 XSIZE (exifprobe-1.2.4.tar.gz) = 108720 END-of-exifprobe/distinfo exit --- exifprobe-1.2.4.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02: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 B5E4616A4CE for ; Thu, 22 Jul 2004 02:20:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA83F43D46 for ; Thu, 22 Jul 2004 02:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M2KSNK040220 for ; Thu, 22 Jul 2004 02:20:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M2KSEZ040219; Thu, 22 Jul 2004 02:20:28 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 02:20:28 GMT Message-Id: <200407220220.i6M2KSEZ040219@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Bob Melson Subject: Re: ports/68619: port science/gramps fails to configure on 4.10 box X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bob Melson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 02:20:28 -0000 The following reply was made to PR ports/68619; it has been noted by GNATS. From: Bob Melson To: freebsd-gnats-submit@FreeBSD.org, melsonr@earthlink.net Cc: Subject: Re: ports/68619: port science/gramps fails to configure on 4.10 box Date: Wed, 21 Jul 2004 20:10:16 -0600 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Still no joy recompiling or reinstalling from pre-compiled packages. Same series of error messages as previously reported. Have removed the options files for python and libxml2 in /var/db/ports, thinking on the basis of the error messages that threading might be at fault. No go. Gramps is not an absolute necessity but having it sit unusable because of something that crept in with a portupgrade of some other port is frustrating. - -- Robert G. Melson Nothing is more terrible than Rio Grande MicroSolutions ignorance in action. El Paso, Texas Goethe melsonr(at)earthlink(dot)net -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/yIIGX60pjRVDrMRAqUoAKC8aCI0qKb/oAFm2ZKkYcYPST5ekQCfa22/ 8V6i5kBh4EnqhEk6pV4RFlo= =SEn+ -----END PGP SIGNATURE----- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02:54: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 D4C7C16A4CE; Thu, 22 Jul 2004 02:54:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B89C543D1D; Thu, 22 Jul 2004 02:54:28 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6M2sSb2042394; Thu, 22 Jul 2004 02:54:28 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M2sSqF042390; Thu, 22 Jul 2004 02:54:28 GMT (envelope-from vanilla) Date: Thu, 22 Jul 2004 02:54:28 GMT From: "Vanilla I. Shu" Message-Id: <200407220254.i6M2sSqF042390@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/69400: [maintainer update] textproc/scim update to 0.99.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: Thu, 22 Jul 2004 02:54:28 -0000 Synopsis: [maintainer update] textproc/scim update to 0.99.4 Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Thu Jul 22 02:54:17 GMT 2004 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=69400 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 02:54: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 17AD116A4CE; Thu, 22 Jul 2004 02:54:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEFD143D41; Thu, 22 Jul 2004 02:54:45 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6M2sjxV042443; Thu, 22 Jul 2004 02:54:45 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M2sjpF042439; Thu, 22 Jul 2004 02:54:45 GMT (envelope-from vanilla) Date: Thu, 22 Jul 2004 02:54:45 GMT From: "Vanilla I. Shu" Message-Id: <200407220254.i6M2sjpF042439@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/69401: New port: textproc/skim -- An input method platform based on SCIM library and KDE/QT X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 02:54:46 -0000 Synopsis: New port: textproc/skim -- An input method platform based on SCIM library and KDE/QT Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Thu Jul 22 02:54:35 GMT 2004 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=69401 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 03:00: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 3B5AD16A4CE; Thu, 22 Jul 2004 03:00:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D58B43D46; Thu, 22 Jul 2004 03:00:16 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6M30GD5042577; Thu, 22 Jul 2004 03:00:16 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M30FuR042573; Thu, 22 Jul 2004 03:00:15 GMT (envelope-from vanilla) Date: Thu, 22 Jul 2004 03:00:15 GMT From: "Vanilla I. Shu" Message-Id: <200407220300.i6M30FuR042573@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/69251: [PATCH] chinese/xsim does not compile with coming GCC 3.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: Thu, 22 Jul 2004 03:00:16 -0000 Synopsis: [PATCH] chinese/xsim does not compile with coming GCC 3.4 Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Thu Jul 22 03:00:05 GMT 2004 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=69251 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 03:20: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 EED2916A4CE for ; Thu, 22 Jul 2004 03:20:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E036543D2D for ; Thu, 22 Jul 2004 03:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M3KGrD046975 for ; Thu, 22 Jul 2004 03:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M3KGv2046974; Thu, 22 Jul 2004 03:20:16 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 03:20:16 GMT Resent-Message-Id: <200407220320.i6M3KGv2046974@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jake Hamby Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D33A916A4CE for ; Thu, 22 Jul 2004 03:16:32 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD9043D1F for ; Thu, 22 Jul 2004 03:16:32 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6M3GWP5053508 for ; Thu, 22 Jul 2004 03:16:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6M3GWVv053507; Thu, 22 Jul 2004 03:16:32 GMT (envelope-from nobody) Message-Id: <200407220316.i6M3GWVv053507@www.freebsd.org> Date: Thu, 22 Jul 2004 03:16:32 GMT From: Jake Hamby To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 03:20:17 -0000 >Number: 69404 >Category: ports >Synopsis: mono compiler (mcs) crashes with assertion failure in libpthread >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 Jul 22 03:20:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jake Hamby >Release: FreeBSD-current >Organization: >Environment: FreeBSD myhost 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jul 21 19:38:42 PDT 2004 root@myhost:/usr/obj/ATHEROS i386 >Description: When I attempt to build MonoDoc 1.0 using Mono 1.0 from ports, I get this error at the very beginning of the build: Making all in browser mcs -debug -out:browser.exe ./browser.cs ./list.cs ./elabel.cs ./history.cs ./Contributions.cs ./XmlNodeWriter.cs -resource:./../monodoc.png,monodoc.png -resource:./browser.glade,browser.glade -pkg:gtkhtml-sharp -pkg:glade-sharp -r:System.Web.Services -r:./monodoc.dll Assertion failed: (lu->lu_myreq->lr_owner == lu), function _lock_acquire, file /usr/src/lib/libpthread/sys/lock.c, line 171. Abort trap (core dumped) *** Error code 134 >How-To-Repeat: This happens every time I attempt to build MonoDoc 1.0 using mono-1.0 from ports. I didn't have any problems building, for example, gtk-sharp. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 03: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 C9DC216A4CE for ; Thu, 22 Jul 2004 03:40:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3ECB43D3F for ; Thu, 22 Jul 2004 03:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M3eJtr048367 for ; Thu, 22 Jul 2004 03:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M3eJ0a048366; Thu, 22 Jul 2004 03:40:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 03:40:19 GMT Resent-Message-Id: <200407220340.i6M3eJ0a048366@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9AD316A4CE for ; Thu, 22 Jul 2004 03:31:32 +0000 (GMT) Received: from imf18aec.mail.bellsouth.net (imf18aec.mail.bellsouth.net [205.152.59.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA05443D2D for ; Thu, 22 Jul 2004 03:31:28 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf18aec.mail.bellsouth.netESMTP <20040722033127.PMEP1786.imf18aec.mail.bellsouth.net@gentoo.ahze.net> for ; Wed, 21 Jul 2004 23:31:27 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6M3VRbc097175; Wed, 21 Jul 2004 23:31:27 -0400 (EDT) (envelope-from ahze) Message-Id: <200407220331.i6M3VRbc097175@gentoo.ahze.net> Date: Wed, 21 Jul 2004 23:31:27 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69405: [PATCH] multimedia/libquicktime: update to 0.9.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: Thu, 22 Jul 2004 03:40:19 -0000 >Number: 69405 >Category: ports >Synopsis: [PATCH] multimedia/libquicktime: update to 0.9.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 03:40:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Update to 0.9.3 take maintainer if no complaints Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- libquicktime-0.9.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/libquicktime.orig/Makefile /usr/ports/multimedia/libquicktime/Makefile --- /usr/ports/multimedia/libquicktime.orig/Makefile Fri Jul 9 13:42:37 2004 +++ /usr/ports/multimedia/libquicktime/Makefile Wed Jul 21 23:19:15 2004 @@ -7,24 +7,26 @@ # PORTNAME= libquicktime -PORTVERSION= 0.9.2 -PORTREVISION= 3 +PORTVERSION= 0.9.3 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ahze@ahze.net COMMENT= A library for reading and writing quicktime files -LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis \ +LIB_DEPENDS= avcodec.0:${PORTSDIR}/multimedia/ffmpeg \ + mp3lame.0:${PORTSDIR}/audio/lame \ + vorbis.3:${PORTSDIR}/audio/libvorbis \ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ dv.4:${PORTSDIR}/multimedia/libdv +INSTALLS_SHLIB= yes USE_GL= yes USE_GNOME= gnometarget gtk12 USE_GMAKE= yes -USE_INC_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=15 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" CONFIGURE_ARGS= --disable-firewire diff -ruN --exclude=CVS /usr/ports/multimedia/libquicktime.orig/distinfo /usr/ports/multimedia/libquicktime/distinfo --- /usr/ports/multimedia/libquicktime.orig/distinfo Wed Mar 17 13:29:30 2004 +++ /usr/ports/multimedia/libquicktime/distinfo Wed Jul 21 22:21:49 2004 @@ -1,2 +1,2 @@ -MD5 (libquicktime-0.9.2.tar.gz) = 1b42ca12966526647fa9a1b14fb947a1 -SIZE (libquicktime-0.9.2.tar.gz) = 666586 +MD5 (libquicktime-0.9.3.tar.gz) = 38d9dbe8a75ea0be13ffa16b858502ae +SIZE (libquicktime-0.9.3.tar.gz) = 755988 diff -ruN --exclude=CVS /usr/ports/multimedia/libquicktime.orig/files/patch-configure /usr/ports/multimedia/libquicktime/files/patch-configure --- /usr/ports/multimedia/libquicktime.orig/files/patch-configure Sun Nov 16 10:08:44 2003 +++ /usr/ports/multimedia/libquicktime/files/patch-configure Wed Jul 21 22:57:09 2004 @@ -1,6 +1,6 @@ ---- configure.orig Sun Sep 7 02:15:25 2003 -+++ configure Thu Nov 13 00:07:40 2003 -@@ -7674,6 +7674,7 @@ +--- configure.orig Mon Jul 19 14:57:49 2004 ++++ configure Wed Jul 21 22:56:59 2004 +@@ -18443,6 +18443,7 @@ # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" @@ -8,7 +8,7 @@ # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' -@@ -8985,7 +8986,7 @@ +@@ -20113,7 +20114,7 @@ fi case $compile_mode in @@ -17,3 +17,56 @@ #define NDEBUG 1 _ACEOF ;; +@@ -24392,7 +24393,6 @@ + + have_libavcodec=false + +-AVCODEC_REQUIRED="0.4.8acl" + + + succeeded=no +@@ -24446,42 +24446,13 @@ + echo "*** to the full path to pkg-config." + echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." + else +- PKG_CONFIG_MIN_VERSION=0.9.0 +- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then +- echo "$as_me:$LINENO: checking for avcodec_acl = $AVCODEC_REQUIRED" >&5 +-echo $ECHO_N "checking for avcodec_acl = $AVCODEC_REQUIRED... $ECHO_C" >&6 +- +- if $PKG_CONFIG --exists "avcodec_acl = $AVCODEC_REQUIRED" ; then +- echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6 +- succeeded=yes +- +- echo "$as_me:$LINENO: checking AVCODEC_CFLAGS" >&5 +-echo $ECHO_N "checking AVCODEC_CFLAGS... $ECHO_C" >&6 +- AVCODEC_CFLAGS=`$PKG_CONFIG --cflags "avcodec_acl = $AVCODEC_REQUIRED"` +- echo "$as_me:$LINENO: result: $AVCODEC_CFLAGS" >&5 +-echo "${ECHO_T}$AVCODEC_CFLAGS" >&6 +- +- echo "$as_me:$LINENO: checking AVCODEC_LIBS" >&5 +-echo $ECHO_N "checking AVCODEC_LIBS... $ECHO_C" >&6 +- AVCODEC_LIBS=`$PKG_CONFIG --libs "avcodec_acl = $AVCODEC_REQUIRED"` +- echo "$as_me:$LINENO: result: $AVCODEC_LIBS" >&5 +-echo "${ECHO_T}$AVCODEC_LIBS" >&6 +- else + AVCODEC_CFLAGS="" +- AVCODEC_LIBS="" ++ AVCODEC_LIBS="-lavcodec" ++ succeeded="yes" + ## If we have a custom action on failure, don't print errors, but + ## do set a variable so people can do so. + AVCODEC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "avcodec_acl = $AVCODEC_REQUIRED"` + +- fi +- +- +- +- else +- echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." +- echo "*** See http://www.freedesktop.org/software/pkgconfig" +- fi + fi + + if test $succeeded = yes; then diff -ruN --exclude=CVS /usr/ports/multimedia/libquicktime.orig/files/patch-include::lqt_fseek.h /usr/ports/multimedia/libquicktime/files/patch-include::lqt_fseek.h --- /usr/ports/multimedia/libquicktime.orig/files/patch-include::lqt_fseek.h Sun Nov 16 10:08:44 2003 +++ /usr/ports/multimedia/libquicktime/files/patch-include::lqt_fseek.h Wed Jul 21 22:32:14 2004 @@ -1,14 +1 @@ ---- include/lqt_fseek.h.orig Thu Jan 23 03:04:20 2003 -+++ include/lqt_fseek.h Wed Nov 12 23:27:17 2003 -@@ -16,6 +16,11 @@ - #define ftello64(a) lqt_ftello64(a) - #endif - -+#ifdef __FreeBSD__ -+#define FTELL ftello -+#define FSEEK fseeko -+#else - #define FTELL ftello64 - #define FSEEK fseeko64 -+#endif - + diff -ruN --exclude=CVS /usr/ports/multimedia/libquicktime.orig/files/patch-ltmain.sh /usr/ports/multimedia/libquicktime/files/patch-ltmain.sh --- /usr/ports/multimedia/libquicktime.orig/files/patch-ltmain.sh Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/libquicktime/files/patch-ltmain.sh Wed Jul 21 23:07:21 2004 @@ -0,0 +1,15 @@ +--- ltmain.sh.orig Wed Jul 21 23:06:52 2004 ++++ ltmain.sh Wed Jul 21 23:07:10 2004 +@@ -5428,10 +5428,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff -ruN --exclude=CVS /usr/ports/multimedia/libquicktime.orig/pkg-plist /usr/ports/multimedia/libquicktime/pkg-plist --- /usr/ports/multimedia/libquicktime.orig/pkg-plist Sun Nov 16 10:08:44 2003 +++ /usr/ports/multimedia/libquicktime/pkg-plist Wed Jul 21 23:07:51 2004 @@ -1,16 +1,14 @@ bin/libquicktime_config bin/lqt-config +bin/lqt_transcode bin/lqtplay bin/qtdechunk bin/qtdump bin/qtinfo bin/qtrechunk -bin/qtrecover bin/qtstreamize bin/qtyuv4toyuv include/quicktime/colormodels.h -include/quicktime/jpeg.h -include/quicktime/libmjpeg.h include/quicktime/lqt.h include/quicktime/lqt1394_config.h include/quicktime/lqt_codecapi.h @@ -18,23 +16,17 @@ include/quicktime/lqt_version.h include/quicktime/qtprivate.h include/quicktime/quicktime.h +lib/libquicktime.so +lib/libquicktime.so.0 lib/libquicktime/lqt_audiocodec.so lib/libquicktime/lqt_dv.so -lib/libquicktime/lqt_ferguson.so +lib/libquicktime/lqt_lame.so lib/libquicktime/lqt_mjpeg.so lib/libquicktime/lqt_opendivx.so lib/libquicktime/lqt_png.so lib/libquicktime/lqt_rtjpeg.so -lib/libquicktime/lqt_svq.so lib/libquicktime/lqt_videocodec.so lib/libquicktime/lqt_vorbis.so -lib/libquicktime/lqt_xanim.so -lib/libquicktime.a -lib/libquicktime.so -lib/libquicktime.so.0 -lib/libquicktime_mjpeg.a -lib/libquicktime_mjpeg.so -lib/libquicktime_mjpeg.so.0 share/aclocal/lqt.m4 @dirrm lib/libquicktime @dirrm include/quicktime --- libquicktime-0.9.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 04:20: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 2A43916A4CE; Thu, 22 Jul 2004 04:20:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 092E243D1F; Thu, 22 Jul 2004 04:20:07 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6M4K6c5057404; Thu, 22 Jul 2004 04:20:06 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M4K6hx057400; Thu, 22 Jul 2004 04:20:06 GMT (envelope-from ijliao) Date: Thu, 22 Jul 2004 04:20:06 GMT From: Ying-Chieh Liao Message-Id: <200407220420.i6M4K6hx057400@freefall.freebsd.org> To: ahze@ahze.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69405: [PATCH] multimedia/libquicktime: update to 0.9.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: Thu, 22 Jul 2004 04:20:07 -0000 Synopsis: [PATCH] multimedia/libquicktime: update to 0.9.3 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Jul 22 04:20:00 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69405 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 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 A5DD016A4CE for ; Thu, 22 Jul 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 7F87043D55 for ; Thu, 22 Jul 2004 04:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M4eOue058881 for ; Thu, 22 Jul 2004 04:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M4eOol058880; Thu, 22 Jul 2004 04:40:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 04:40:24 GMT Resent-Message-Id: <200407220440.i6M4eOol058880@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DFEC16A4CE for ; Thu, 22 Jul 2004 04:39:28 +0000 (GMT) Received: from imf18aec.mail.bellsouth.net (imf18aec.mail.bellsouth.net [205.152.59.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10FA643D53 for ; Thu, 22 Jul 2004 04:39:28 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf18aec.mail.bellsouth.netESMTP <20040722043927.QDVJ1786.imf18aec.mail.bellsouth.net@gentoo.ahze.net>; Thu, 22 Jul 2004 00:39:27 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6M4dQcm005444; Thu, 22 Jul 2004 00:39:26 -0400 (EDT) (envelope-from ahze) Message-Id: <200407220439.i6M4dQcm005444@gentoo.ahze.net> Date: Thu, 22 Jul 2004 00:39:26 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hendrik@scholz.net Subject: ports/69406: [PATCH] multimedia/transcode: [Fix build with latest libdv] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 04:40:24 -0000 >Number: 69406 >Category: ports >Synopsis: [PATCH] multimedia/transcode: [Fix build with latest libdv] >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: Thu Jul 22 04:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Fix build with libdv-0.103 Port maintainer (hendrik@scholz.net) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- transcode-0.6.12_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/transcode.orig/files/patch-import::decode_dv.c /usr/ports/multimedia/transcode/files/patch-import::decode_dv.c --- /usr/ports/multimedia/transcode.orig/files/patch-import::decode_dv.c Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/transcode/files/patch-import::decode_dv.c Thu Jul 22 00:35:16 2004 @@ -0,0 +1,11 @@ +--- import/decode_dv.c.orig Thu Jul 22 00:30:32 2004 ++++ import/decode_dv.c Thu Jul 22 00:34:45 2004 +@@ -42,6 +42,8 @@ + #define DV_HEADER_SIZE header_size + + static int verbose=TC_QUIET; ++static const int frame_size_625_50 = 12 * 150 * 80; ++static const int frame_size_525_60 = 10 * 150 * 80; + + static unsigned char *bufalloc(size_t size) + { --- transcode-0.6.12_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 05:00: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 A6EC316A4CE for ; Thu, 22 Jul 2004 05:00:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82FE943D2F for ; Thu, 22 Jul 2004 05:00:44 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M50iPw060022 for ; Thu, 22 Jul 2004 05:00:44 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M50iXO060021; Thu, 22 Jul 2004 05:00:44 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 05:00:44 GMT Message-Id: <200407220500.i6M50iXO060021@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: John Merryweather Cooper Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John Merryweather Cooper List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 05:00:44 -0000 The following reply was made to PR ports/69404; it has been noted by GNATS. From: John Merryweather Cooper To: Jake Hamby Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread Date: Wed, 21 Jul 2004 21:58:31 -0700 --=-EWEv4E7D3ZhOj+1YmlWN Content-Type: text/plain Content-Transfer-Encoding: quoted-printable What is your __FREEBSD_version in ? Is there a configure script? What are the available options? Can you send me a full build log using: # script -a build log gmake What, if anything, do you have set for CFLAGS in /etc/make.conf? jmc On Wed, 2004-07-21 at 20:16, Jake Hamby wrote: > >Number: 69404 > >Category: ports > >Synopsis: mono compiler (mcs) crashes with assertion failure in li= bpthread > >Confidential: no > >Severity: serious > >Priority: medium > >Responsible: freebsd-ports-bugs > >State: open > >Quarter: =20 > >Keywords: =20 > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Thu Jul 22 03:20:16 GMT 2004 > >Closed-Date: > >Last-Modified: > >Originator: Jake Hamby > >Release: FreeBSD-current > >Organization: > >Environment: > FreeBSD myhost 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jul 21 19:38:42 PD= T 2004 root@myhost:/usr/obj/ATHEROS i386 > >Description: > When I attempt to build MonoDoc 1.0 using Mono 1.0 from ports, I get this= error at the very beginning of the build: >=20 > Making all in browser > mcs -debug -out:browser.exe ./browser.cs ./list.cs ./elab= el.cs ./history.cs ./Contributions.cs ./XmlNod= eWriter.cs -resource:./../monodoc.png,monodoc.png -resource:./browser.glade= ,browser.glade -pkg:gtkhtml-sharp -pkg:glade-sharp -r:System.Web.Services = -r:./monodoc.dll > Assertion failed: (lu->lu_myreq->lr_owner =3D=3D lu), function _lock_acqu= ire, file /usr/src/lib/libpthread/sys/lock.c, line 171. > Abort trap (core dumped) > *** Error code 134 >=20 > >How-To-Repeat: > This happens every time I attempt to build MonoDoc 1.0 using mono-1.0 fro= m ports. I didn't have any problems building, for example, gtk-sharp. > >Fix: > =20 > >Release-Note: > >Audit-Trail: > >Unformatted: > _______________________________________________ > freebsd-ports-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs > To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.= org" --=-EWEv4E7D3ZhOj+1YmlWN Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBA/0l3vBSBfjNhsrIRAoPPAJsGf/u04G/HhFVwM3f32HWL7AmFUgCeOVf1 pS9Yc2Bk8bngDNGhM8guFUc= =5TZg -----END PGP SIGNATURE----- --=-EWEv4E7D3ZhOj+1YmlWN-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 05:04: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 8E01B16A4CE; Thu, 22 Jul 2004 05:04:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ACD443D1F; Thu, 22 Jul 2004 05:04:46 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6M54kL9060713; Thu, 22 Jul 2004 05:04:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M54kxq060709; Thu, 22 Jul 2004 05:04:46 GMT (envelope-from linimon) Date: Thu, 22 Jul 2004 05:04:46 GMT From: Mark Linimon Message-Id: <200407220504.i6M54kxq060709@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/69390: [PATCH] multimedia/gstreamer-plugins: [faac 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: Thu, 22 Jul 2004 05:04:46 -0000 Synopsis: [PATCH] multimedia/gstreamer-plugins: [faac support] Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 22 05:04:37 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69390 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 05:08: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 1F31116A4CE; Thu, 22 Jul 2004 05:08:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F19F743D39; Thu, 22 Jul 2004 05:08:26 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6M58QPu064836; Thu, 22 Jul 2004 05:08:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M58QUE064832; Thu, 22 Jul 2004 05:08:26 GMT (envelope-from linimon) Date: Thu, 22 Jul 2004 05:08:26 GMT From: Mark Linimon Message-Id: <200407220508.i6M58QUE064832@freefall.freebsd.org> To: autrijus@autrijus.org, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69287: Re: Update Port: devel/svk to 0.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 05:08:27 -0000 Synopsis: Re: Update Port: devel/svk to 0.17 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jul 22 05:05:06 GMT 2004 State-Changed-Why: Misfiled followup. Apparently many of these are because people, when submitting PRs to GNATS, also Cc: freebsd-ports. Please don't do that, because what happens is that people followup to the freebsd-ports posting and Cc: GNATS, but since that posting does not have the category/PRnumber tag, GNATS creates one of these misfiled followups. (Posting a followup to the posting that GNATS makes to freebsd-ports-bugs does not have this problem). I am going to make myself a reminder to add this to the 'how to submit a PR' article. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jul 22 05:05:06 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=69287 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 05:09:10 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 4B93816A4CE; Thu, 22 Jul 2004 05:09:10 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id B53C543D45; Thu, 22 Jul 2004 05:09:09 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 47F8815236; Thu, 22 Jul 2004 13:10:36 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 39055-09; Thu, 22 Jul 2004 13:10:35 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 994F115235; Thu, 22 Jul 2004 13:10:35 +0800 (CST) Date: Thu, 22 Jul 2004 13:10:35 +0800 From: Cheng-Lung Sung To: Kirill Ponomarew Message-ID: <20040722051035.GA58807@sungsung.csie.nctu.edu.tw> References: <200407171915.i6HJFRls083473@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline In-Reply-To: <200407171915.i6HJFRls083473@freefall.freebsd.org> X-Fingerprint: E0BC 57F9 F44B 46C6 DB53 8462 F807 89F3 956E 8BC1 X-Public-Key: http://sungsung.dragon2.net/pubring.asc User-Agent: Mutt/1.5.6i cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69194: [maintainer-update] security/botan 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: Thu, 22 Jul 2004 05:09:10 -0000 --gKMricLos+KVdGMg Content-Type: text/plain; charset=big5 Content-Disposition: inline I've made another patch appended. begin 644 patch-botan M/3T]/B!'96YE&-L=61E/4-64R`O=7-R+W!O2]B;W1A;B]-86ME9FEL90E4:'4@ M1F5B("`U(#$Q.C0R.C0Q(#(P,#0**RLK("]H;VUE+V-LU!2149)6'TL9R`[(%P*+0D)U=22U-20WTO)'M#3TY&24=54D5?4T-225!4?0H@"B`N:6YC;'5D M92`\8G-D+G!O2]B;W1A;B]D:7-T:6YF;R`O:&]M92]C;'-U M;FBD@/2`Q,C0Y,S4X"BM-1#4@*$)O=&%N+3$N-"XP+G1G>BD@ M/2`S,34T8V1E96-D,F8V-69A,C(Q8V0Y8C4X-#AB,69B,@HK4TE:12`H0F]T M86XM,2XT+C`N=&=Z*2`](#$T,#,U,#<*9&EF9B`M2]B;W1A;B]F:6QE2]B;W1A;B]F:6QE2`Q,"`Q,#HS,CHQ."`R,#`R"BLK M*R`O:&]M92]C;'-U;F2`D;&EB("A`>R`D;&EB7VQIPHK*PD@("`@)&QI;FM?=&\@+CT@ M(B`M(B`N("1L:6(["BLK("`@("`@('T@96QS92!["BLK"2`@("`D;&EN:U]T M;R`N/2`B("UL(B`N("1L:6(["BLK("`@("`@('T**R`@("!]"B`@"BT@3U=. M15(@("`@("`@("`](')O;W0*+2U'4D]54"`@("`@("`@(#T@2`D;&EN:U]T;R`]("(M;&TB.PHK("`@("!F;W)E M86-H(&UY("1L:6(@*$!L:6)S*0HK("`@("!["BLM("`@("`@("`D;&EN:U]T M;R`N/2`B("UL(B`N("1L:6(["BLK"21L:6YK7W1O("X]("(@+6PB("X@)&QI M8CL**R`@("`@?0H@(`HK("`@("!M>2`D5D524TE/3B`]("1M86IO2]B;W1A;B]F:6QE"YC<'`@+VAO;64O8VQS=6YG+V)O=&%N+V9I;&5S M+W!A=&-H+6UO9'5L97,Z.G1M7W!O2]B;W1A;B]F:6QE"YC M<'`)5&AU($IA;B`@,2`P.#HP,#HP,"`Q.3"]T;5]P;W-I>"YC<'`N;W)I9PE3870@2G5N(#(V(#$T M.C,R.C4S(#(P,#0**RLK*R!M;V1U;&5S+W1M7W!O"YH/@HK("-I;F-L=61E(#QB;W1A;B]U=&EL+F@^"BLM M(VEN8VQU9&4@/'1I;64N:#X**RLC:6YC;'5D92`\2]B;W1A;B]P871C:"UB;W1A;B`O:&]M92]C;'-U;F&-L=61E/4-64R`O=7-R+W!O&-E<'1N+F@**VEN8VQU9&4O8F]T86XO9F1?=6YI>"YH"B!I M;F-L=61E+V)O=&%N+V9I;'1E%]H87-H+F@*(&EN8VQU9&4O8F]T86XO M;65M7V]P3$N:`HK:6YC;'5D92]B;W1A;B]M;6%P7VUE;2YH"B!I;F-L=61E M+V)O=&%N+VUO9%]E>'`N:`H@:6YC;'5D92]B;W1A;B]M;V1E7W!A9"YH"B!I M;F-L=61E+V)O=&%N+VUO9&5B87-E+F@*(&EN8VQU9&4O8F]T86XO;7!?8V]R M92YH"BUI;F-L=61E+V)O=&%N+VUP7VEM<&PN:`HM:6YC;'5D92]B;W1A;B]M M<%]M=6PN:`HK:6YC;'5D92]B;W1A;B]M<%]M861D+F@*(&EN8VQU9&4O8F]T M86XO;7!?='EP97,N:`H@:6YC;'5D92]B;W1A;B]M=71E>"YH"BMI;F-L=61E M+V)O=&%N+VUU>%]P=&AR+F@*(&EN8VQU9&4O8F]T86XO;G(N:`H@:6YC;'5D M92]B;W1A;B]N=6UT:')Y+F@*(&EN8VQU9&4O8F]T86XO;V9B+F@*(&EN8VQU M9&4O8F]T86XO;VED6UK97DN:`H@:6YC;'5D92]B;W1A M;B]T96$N:`HM:6YC;'5D92]B;W1A;B]T:')E97=A>2YH"B!I;F-L=61E+V)O M=&%N+W1I9V5R+F@*(&EN8VQU9&4O8F]T86XO=&EM97)S+F@**VEN8VQU9&4O M8F]T86XO=&U?<&]S:7@N:`HK:6YC;'5D92]B;W1A;B]T;5]U;FEX+F@*(&EN M8VQU9&4O8F]T86XO='=O9FES:"YH"B!I;F-L=61E+V)O=&%N+W1Y<&5S+F@* M*VEN8VQU9&4O8F]T86XO=6DN:`HK:6YC;'5D92]B;W1A;B]U;FEX7V-M9"YH M"B!I;F-L=61E+V)O=&%N+W5T:6PN:`H@:6YC;'5D92]B;W1A;B]V97)S:6]N M+F@*(&EN8VQU9&4O8F]T86XO=VAR;'!O;VPN:`I`0"`M,30X+#$W("LQ-3DL M,3D@0$`*(&EN8VQU9&4O8F]T86XO>#DQ-U]R;F`HM)2503U)41$]#4R4E`H@ M)2503U)41$]#4R4EHow-To-Repeat: >Fix: --- mplayer-gtk-esound-0.99.4_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/mplayer.orig/files/patch-libmpdemux-demux_rtp.cpp /usr/ports/multimedia/mplayer/files/patch-libmpdemux-demux_rtp.cpp --- /usr/ports/multimedia/mplayer.orig/files/patch-libmpdemux-demux_rtp.cpp Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/mplayer/files/patch-libmpdemux-demux_rtp.cpp Thu Jul 22 01:38:06 2004 @@ -0,0 +1,40 @@ +--- libmpdemux/demux_rtp.cpp.orig Fri Mar 19 05:15:41 2004 ++++ libmpdemux/demux_rtp.cpp Thu Jul 22 01:36:55 2004 +@@ -2,6 +2,10 @@ + ////////// and the "LIVE.COM Streaming Media" libraries: + + extern "C" { ++// on MinGW, we must include windows.h before the things it conflicts ++#ifdef __MINGW32__ // with. they are each protected from ++#include // windows.h, but not the other way around. ++#endif + #include "demux_rtp.h" + #include "stheader.h" + } +@@ -119,6 +123,7 @@ + + int rtspStreamOverTCP = 0; + ++extern "C" int audio_id, video_id, dvdsub_id; + extern "C" demuxer_t* demux_open_rtp(demuxer_t* demuxer) { + Boolean success = False; + do { +@@ -263,7 +268,8 @@ + // code to recognize this: + if (demux_is_multiplexed_rtp_stream(demuxer)) { + stream_t* s = new_ds_stream(demuxer->video); +- demuxer_t* od = demux_open(s, DEMUXER_TYPE_UNKNOWN, -1, -1, -1, NULL); ++ demuxer_t* od = demux_open(s, DEMUXER_TYPE_UNKNOWN, ++ audio_id, video_id, dvdsub_id, NULL); + demuxer = new_demuxers_demuxer(od, od, od); + } + +@@ -401,7 +407,7 @@ + delete rtpState->sdpDescription; + delete rtpState; + +- delete env; delete scheduler; ++ env->reclaim(); delete scheduler; + } + + ////////// Extra routines that help implement the above interface functions: --- mplayer-gtk-esound-0.99.4_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 05:58: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 DC03B16A4CE; Thu, 22 Jul 2004 05:58:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B636543D5D; Thu, 22 Jul 2004 05:58:54 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6M5wsRr087640; Thu, 22 Jul 2004 05:58:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M5wrNc087636; Thu, 22 Jul 2004 05:58:53 GMT (envelope-from linimon) Date: Thu, 22 Jul 2004 05:58:53 GMT From: Mark Linimon Message-Id: <200407220558.i6M5wrNc087636@freefall.freebsd.org> To: frank@exit.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68874: Update devel/kscope to 0.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, 22 Jul 2004 05:58:55 -0000 Synopsis: Update devel/kscope to 0.7 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jul 22 05:58:45 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=68874 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:00: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 DAC9816A4CE for ; Thu, 22 Jul 2004 06:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA30943D45 for ; Thu, 22 Jul 2004 06:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M60jdS087769 for ; Thu, 22 Jul 2004 06:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M60jhl087764; Thu, 22 Jul 2004 06:00:45 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 06:00:45 GMT Message-Id: <200407220600.i6M60jhl087764@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas-Martin Seck Subject: Re: ports/69408: [Maintainer] www/squid: chase rerolled ldap_helpers patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 06:00:46 -0000 The following reply was made to PR ports/69408; it has been noted by GNATS. From: Thomas-Martin Seck To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/69408: [Maintainer] www/squid: chase rerolled ldap_helpers patch Date: Thu, 22 Jul 2004 07:51:43 +0200 Oops, bump PORTREVISION, too: Index: Makefile =================================================================== --- Makefile (revision 125) +++ Makefile (revision 126) @@ -74,7 +74,7 @@ PORTNAME= squid PORTVERSION= 2.5.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= \ ftp://ftp.squid-cache.org/pub/%SUBDIR%/ \ From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:06: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 8B6CE16A4CE; Thu, 22 Jul 2004 06:06:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD1343D31; Thu, 22 Jul 2004 06:06:24 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M66OWI091783; Thu, 22 Jul 2004 06:06:24 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M66Obw091779; Thu, 22 Jul 2004 06:06:24 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 06:06:24 GMT From: Kirill Ponomarew Message-Id: <200407220606.i6M66Obw091779@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69408: [Maintainer] www/squid: chase rerolled ldap_helpers 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: Thu, 22 Jul 2004 06:06:24 -0000 Synopsis: [Maintainer] www/squid: chase rerolled ldap_helpers patch Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Thu Jul 22 06:06:21 GMT 2004 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=69408 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:10: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 D952516A4CE for ; Thu, 22 Jul 2004 06:10:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBC1D43D31 for ; Thu, 22 Jul 2004 06:10:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M6AALL091969 for ; Thu, 22 Jul 2004 06:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M6AAVD091968; Thu, 22 Jul 2004 06:10:10 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 06:10:10 GMT Resent-Message-Id: <200407220610.i6M6AAVD091968@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7577316A4CE; Thu, 22 Jul 2004 06:02:23 +0000 (GMT) Received: from imf19aec.mail.bellsouth.net (imf19aec.mail.bellsouth.net [205.152.59.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3F4E43D2D; Thu, 22 Jul 2004 06:02:22 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf19aec.mail.bellsouth.netESMTP <20040722060222.TZRC1792.imf19aec.mail.bellsouth.net@gentoo.ahze.net>; Thu, 22 Jul 2004 02:02:22 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6M62L9W040468; Thu, 22 Jul 2004 02:02:21 -0400 (EDT) (envelope-from ahze) Message-Id: <200407220602.i6M62L9W040468@gentoo.ahze.net> Date: Thu, 22 Jul 2004 02:02:21 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dinoex@FreeBSD.org Subject: ports/69410: [PATCH] multimedia/vlc: [Fix build with net/liveMedia] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 06:10:11 -0000 >Number: 69410 >Category: ports >Synopsis: [PATCH] multimedia/vlc: [Fix build with net/liveMedia] >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 Jul 22 06:10:10 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - fix build with net/liveMedia (patch partly obtained from vlc cvs) Port maintainer (dinoex@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- vlc-0.7.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/vlc.orig/files/patch-modules::demux::livedotcom.cpp /usr/ports/multimedia/vlc/files/patch-modules::demux::livedotcom.cpp --- /usr/ports/multimedia/vlc.orig/files/patch-modules::demux::livedotcom.cpp Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/vlc/files/patch-modules::demux::livedotcom.cpp Thu Jul 22 01:59:22 2004 @@ -0,0 +1,73 @@ +--- modules/demux/livedotcom.cpp.orig Thu Jul 22 01:54:30 2004 ++++ modules/demux/livedotcom.cpp Thu Jul 22 01:58:50 2004 +@@ -39,6 +39,12 @@ + #include "GroupsockHelper.hh" + #include "liveMedia.hh" + ++#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1089936000) ++#define RECLAIM_ENV(env) delete (env) ++#else ++#define RECLAIM_ENV(env) (env)->reclaim() ++#endif ++ + using namespace std; + + /***************************************************************************** +@@ -132,8 +138,7 @@ + } + if( ( rtsp = RTSPClient::createNew(*env, 1/*verbose*/, "VLC Media Player" ) ) == NULL ) + { +- delete env; +- delete scheduler; ++ env->reclaim(); delete scheduler; + msg_Err( p_input, "RTSPClient::createNew failed" ); + return VLC_EGENERIC; + } +@@ -149,8 +154,7 @@ + msg_Err( p_input, "describeURL failed (%s)", env->getResultMsg() ); + + free( psz_url ); +- delete env; +- delete scheduler; ++ env->reclaim(); delete scheduler; + free( p_sys ); + return VLC_EGENERIC; + } +@@ -160,8 +164,7 @@ + + //fprintf( stderr, "sdp=%s\n", p_sys->p_sdp ); + +- delete env; +- delete scheduler; ++ env->reclaim(); delete scheduler; + + var_Create( p_input, "rtsp-tcp", VLC_VAR_BOOL|VLC_VAR_DOINHERIT ); + var_Get( p_input, "rtsp-tcp", &val ); +@@ -670,11 +673,11 @@ + } + if( p_sys->env ) + { +- delete p_sys->env; ++ RECLAIM_ENV(p_sys->env); + } + if( p_sys->scheduler ) + { +- delete p_sys->scheduler; ++ RECLAIM_ENV(p_sys->env); + } + if( p_sys->p_sdp ) + { +@@ -724,11 +727,11 @@ + + if( p_sys->env ) + { +- delete p_sys->env; ++ RECLAIM_ENV(p_sys->env); + } + if( p_sys->scheduler ) + { +- delete p_sys->scheduler; ++ RECLAIM_ENV(p_sys->env); + } + if( p_sys->p_sdp ) + { --- vlc-0.7.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:11: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 8364616A4CE; Thu, 22 Jul 2004 06:11:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 652E943D1D; Thu, 22 Jul 2004 06:11:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M6BsZo092166; Thu, 22 Jul 2004 06:11:54 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M6Bsfd092162; Thu, 22 Jul 2004 06:11:54 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 06:11:54 GMT From: Kirill Ponomarew Message-Id: <200407220611.i6M6Bsfd092162@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Subject: Re: ports/69410: [PATCH] multimedia/vlc: [Fix build with net/liveMedia] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 06:11:54 -0000 Synopsis: [PATCH] multimedia/vlc: [Fix build with net/liveMedia] Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: krion Responsible-Changed-When: Thu Jul 22 06:11:41 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69410 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:12: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 22F1216A4CE; Thu, 22 Jul 2004 06:12:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F375543D1F; Thu, 22 Jul 2004 06:12:10 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6M6CAgJ092204; Thu, 22 Jul 2004 06:12:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M6CAvR092200; Thu, 22 Jul 2004 06:12:10 GMT (envelope-from linimon) Date: Thu, 22 Jul 2004 06:12:10 GMT From: Mark Linimon Message-Id: <200407220612.i6M6CAvR092200@freefall.freebsd.org> To: bugghy@phenix.rootshell.be, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68660: New port: sysutils/jailuser Builds a chrooted environment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 06:12:11 -0000 Synopsis: New port: sysutils/jailuser Builds a chrooted environment State-Changed-From-To: suspended->closed State-Changed-By: linimon State-Changed-When: Thu Jul 22 06:10:23 GMT 2004 State-Changed-Why: Duplicate of PR 67900, which has already been committed (although I would have preferred the name 'sysutils/jailuser' as used in this port, instead of 'sysutils/jail' which was used in that one, because IMHO we are going to continually have to explain that 'sysutils/jail' is not the same as a FreeBSD jail. If I undertand correctly). http://www.freebsd.org/cgi/query-pr.cgi?pr=68660 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:17: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 1A32316A4CE; Thu, 22 Jul 2004 06:17:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E984B43D46; Thu, 22 Jul 2004 06:17:18 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6M6HIoG093666; Thu, 22 Jul 2004 06:17:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M6HI2o093662; Thu, 22 Jul 2004 06:17:18 GMT (envelope-from linimon) Date: Thu, 22 Jul 2004 06:17:18 GMT From: Mark Linimon Message-Id: <200407220617.i6M6HI2o093662@freefall.freebsd.org> To: girgen@banan.pingpong.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68980: [PATCH] www/rt: pkg-plist incomelete X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 06:17:19 -0000 Synopsis: [PATCH] www/rt: pkg-plist incomelete State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Thu Jul 22 06:16:53 GMT 2004 State-Changed-Why: To maintainer: have you had an opportunity to review this patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=68980 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06:20: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 67AC316A4CE; Thu, 22 Jul 2004 06:20:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 473F243D2F; Thu, 22 Jul 2004 06:20:36 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6M6Kai7093893; Thu, 22 Jul 2004 06:20:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M6Kac4093889; Thu, 22 Jul 2004 06:20:36 GMT (envelope-from linimon) Date: Thu, 22 Jul 2004 06:20:36 GMT From: Mark Linimon Message-Id: <200407220620.i6M6Kac4093889@freefall.freebsd.org> To: darius@inchoate.dons.net.au, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68724: Fix nvidia-driver port to work with -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: Thu, 22 Jul 2004 06:20:36 -0000 Synopsis: Fix nvidia-driver port to work with -current State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Thu Jul 22 06:19:58 GMT 2004 State-Changed-Why: Note that the submitter has been asked for feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=68724 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 06: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 BEEB516A4CE for ; Thu, 22 Jul 2004 06:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE70C43D31 for ; Thu, 22 Jul 2004 06:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M6eJPh018914 for ; Thu, 22 Jul 2004 06:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M6eJHp018909; Thu, 22 Jul 2004 06:40:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 06:40:19 GMT Resent-Message-Id: <200407220640.i6M6eJHp018909@freefall.freebsd.org> 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 841EE16A4CE for ; Thu, 22 Jul 2004 06:36:47 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5598643D3F for ; Thu, 22 Jul 2004 06:36:47 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id E606E15238; Thu, 22 Jul 2004 14:38:13 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 74334-03; Thu, 22 Jul 2004 14:38:13 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 56D4515236; Thu, 22 Jul 2004 14:38:13 +0800 (CST) Message-Id: <20040722063813.56D4515236@mail.dragon2.net> Date: Thu, 22 Jul 2004 14:38:13 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ports@oven.org Subject: ports/69411: [PATCH] archivers/Archive-Tar: update to 1.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: Thu, 22 Jul 2004 06:40:23 -0000 >Number: 69411 >Category: ports >Synopsis: [PATCH] archivers/Archive-Tar: update to 1.10 >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 Jul 22 06:40:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.10 - add dependency of Test-Simple Port maintainer (ports@oven.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Archive-Tar-1.10.patch begins here --- diff -ruN --exclude=CVS /usr/ports/archivers/p5-Archive-Tar/Makefile /home/clsung/p5-Archive-Tar/Makefile --- /usr/ports/archivers/p5-Archive-Tar/Makefile Sun May 30 12:03:16 2004 +++ /home/clsung/p5-Archive-Tar/Makefile Thu Jul 22 14:37:16 2004 @@ -6,7 +6,7 @@ # PORTNAME= Archive-Tar -PORTVERSION= 1.09 +PORTVERSION= 1.10 CATEGORIES= archivers perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Archive @@ -15,7 +15,8 @@ MAINTAINER= ports@oven.org COMMENT= Perl module for creation and manipulation of tar files -RUN_DEPENDS= ${SITE_PERL}/IO/Zlib.pm:${PORTSDIR}/archivers/p5-IO-Zlib +RUN_DEPENDS= ${SITE_PERL}/IO/Zlib.pm:${PORTSDIR}/archivers/p5-IO-Zlib \ + ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= YES diff -ruN --exclude=CVS /usr/ports/archivers/p5-Archive-Tar/distinfo /home/clsung/p5-Archive-Tar/distinfo --- /usr/ports/archivers/p5-Archive-Tar/distinfo Sun May 30 12:03:16 2004 +++ /home/clsung/p5-Archive-Tar/distinfo Thu Jul 22 14:33:28 2004 @@ -1,2 +1,2 @@ -MD5 (Archive-Tar-1.09.tar.gz) = 37a9283fc0feec04b43c8f8ee2580f15 -SIZE (Archive-Tar-1.09.tar.gz) = 27299 +MD5 (Archive-Tar-1.10.tar.gz) = 8cd1fd60e1a5a85936284329b0560d94 +SIZE (Archive-Tar-1.10.tar.gz) = 27452 Binary files /usr/ports/archivers/p5-Archive-Tar/p5-Archive-Tar-1.10.tgz and /home/clsung/p5-Archive-Tar/p5-Archive-Tar-1.10.tgz differ --- p5-Archive-Tar-1.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:00: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 8FE5016A4CE for ; Thu, 22 Jul 2004 07:00:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 729EF43D2F for ; Thu, 22 Jul 2004 07:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M70dtd077878 for ; Thu, 22 Jul 2004 07:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M70dsY077875; Thu, 22 Jul 2004 07:00:39 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 07:00:39 GMT Resent-Message-Id: <200407220700.i6M70dsY077875@freefall.freebsd.org> 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 A568416A4CE for ; Thu, 22 Jul 2004 06:50:26 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77E5E43D1D for ; Thu, 22 Jul 2004 06:50:26 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 398C915238 for ; Thu, 22 Jul 2004 14:51:53 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 74334-06 for ; Thu, 22 Jul 2004 14:51:52 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id A40CB15236; Thu, 22 Jul 2004 14:51:52 +0800 (CST) Message-Id: <20040722065152.A40CB15236@mail.dragon2.net> Date: Thu, 22 Jul 2004 14:51:52 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69412: [PATCH] chinese/Encode-HanConvert: update to 0.31, 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: Thu, 22 Jul 2004 07:00:40 -0000 >Number: 69412 >Category: ports >Synopsis: [PATCH] chinese/Encode-HanConvert: update to 0.31, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 07:00:39 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.31 - Take maintainership Port maintainer (ports@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Encode-HanConvert-0.31.patch begins here --- diff -ruN --exclude=CVS /usr/ports/chinese/p5-Encode-HanConvert/Makefile /home/clsung/p5-Encode-HanConvert/Makefile --- /usr/ports/chinese/p5-Encode-HanConvert/Makefile Mon Apr 12 13:42:25 2004 +++ /home/clsung/p5-Encode-HanConvert/Makefile Thu Jul 22 14:51:26 2004 @@ -6,13 +6,13 @@ # PORTNAME= Encode-HanConvert -PORTVERSION= 0.28 +PORTVERSION= 0.31 CATEGORIES= chinese perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Encode PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= clsung@dragon2.net COMMENT= Traditional and Simplified Chinese mappings PERL_CONFIGURE= yes diff -ruN --exclude=CVS /usr/ports/chinese/p5-Encode-HanConvert/distinfo /home/clsung/p5-Encode-HanConvert/distinfo --- /usr/ports/chinese/p5-Encode-HanConvert/distinfo Sat Jan 31 14:16:20 2004 +++ /home/clsung/p5-Encode-HanConvert/distinfo Sun Jul 18 12:02:11 2004 @@ -1,2 +1,2 @@ -MD5 (Encode-HanConvert-0.28.tar.gz) = 88e27506a5a5b29612bdfb0d9c61be7e -SIZE (Encode-HanConvert-0.28.tar.gz) = 350647 +MD5 (Encode-HanConvert-0.31.tar.gz) = 91d9a77355aa022958ce349ad11d95a7 +SIZE (Encode-HanConvert-0.31.tar.gz) = 350871 --- p5-Encode-HanConvert-0.31.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:04: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 77A6C16A4CE; Thu, 22 Jul 2004 07:04:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5531143D1F; Thu, 22 Jul 2004 07:04:24 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M74AP0078236; Thu, 22 Jul 2004 07:04:10 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M74ASD078232; Thu, 22 Jul 2004 07:04:10 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 07:04:10 GMT From: Volker Stolz Message-Id: <200407220704.i6M74ASD078232@freefall.freebsd.org> To: oli@isnic.is, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69385: dns/nsd: Changing signals used for bind8 stats X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:04:24 -0000 Synopsis: dns/nsd: Changing signals used for bind8 stats State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 07:03:59 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69385 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:10: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 8FC6916A4CF for ; Thu, 22 Jul 2004 07:10:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A0F043D55 for ; Thu, 22 Jul 2004 07:10:39 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M7AOMP082523 for ; Thu, 22 Jul 2004 07:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7AO1e082522; Thu, 22 Jul 2004 07:10:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 07:10:24 GMT Resent-Message-Id: <200407220710.i6M7AO1e082522@freefall.freebsd.org> 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 6B83716A4CE; Thu, 22 Jul 2004 07:09:02 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D02943D1F; Thu, 22 Jul 2004 07:09:02 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 3EF3A15238; Thu, 22 Jul 2004 15:10:15 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 79782-04; Thu, 22 Jul 2004 15:10:14 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id AE78715236; Thu, 22 Jul 2004 15:10:14 +0800 (CST) Message-Id: <20040722071014.AE78715236@mail.dragon2.net> Date: Thu, 22 Jul 2004 15:10:14 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: demon@FreeBSD.org Subject: ports/69413: [PATCH] misc/I18N-LangTags: update to 0.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:10:39 -0000 >Number: 69413 >Category: ports >Synopsis: [PATCH] misc/I18N-LangTags: update to 0.33 >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 Jul 22 07:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.33 - no major bugfixs Port maintainer (demon@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-I18N-LangTags-0.33.patch begins here --- diff -ruN --exclude=CVS /usr/ports/misc/p5-I18N-LangTags/Makefile /home/clsung/p5-I18N-LangTags/Makefile --- /usr/ports/misc/p5-I18N-LangTags/Makefile Sun Apr 4 23:16:50 2004 +++ /home/clsung/p5-I18N-LangTags/Makefile Thu Jul 22 15:08:37 2004 @@ -6,7 +6,7 @@ # PORTNAME= I18N-LangTags -PORTVERSION= 0.30 +PORTVERSION= 0.33 CATEGORIES= misc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= I18N diff -ruN --exclude=CVS /usr/ports/misc/p5-I18N-LangTags/distinfo /home/clsung/p5-I18N-LangTags/distinfo --- /usr/ports/misc/p5-I18N-LangTags/distinfo Sun Apr 4 23:16:50 2004 +++ /home/clsung/p5-I18N-LangTags/distinfo Thu Jul 22 15:08:57 2004 @@ -1,2 +1,2 @@ -MD5 (I18N-LangTags-0.30.tar.gz) = 1c915817f640bb4191bdd80bd61aa75c -SIZE (I18N-LangTags-0.30.tar.gz) = 29230 +MD5 (I18N-LangTags-0.33.tar.gz) = 2f262af20b18815e312344c587708f70 +SIZE (I18N-LangTags-0.33.tar.gz) = 30178 --- p5-I18N-LangTags-0.33.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:17: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 306A416A4CF; Thu, 22 Jul 2004 07:17:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FE3243D2D; Thu, 22 Jul 2004 07:17:57 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M7HkTd083156; Thu, 22 Jul 2004 07:17:46 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7Hg0t083151; Thu, 22 Jul 2004 07:17:42 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 07:17:42 GMT From: Volker Stolz Message-Id: <200407220717.i6M7Hg0t083151@freefall.freebsd.org> To: laszlof@vonostingroup.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69352: Fix for ports/61297 (readline 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, 22 Jul 2004 07:17:57 -0000 Synopsis: Fix for ports/61297 (readline port) State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 07:17:30 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69352 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:19: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 CE42416A4CE; Thu, 22 Jul 2004 07:19:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFA1843D31; Thu, 22 Jul 2004 07:19:42 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M7JXEk083309; Thu, 22 Jul 2004 07:19:33 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7JXAe083305; Thu, 22 Jul 2004 07:19:33 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 07:19:33 GMT From: Volker Stolz Message-Id: <200407220719.i6M7JXAe083305@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69299: [PATCH] missing dependency for www/linux-flashplugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:19:42 -0000 Synopsis: [PATCH] missing dependency for www/linux-flashplugin Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Thu Jul 22 07:18:55 GMT 2004 Responsible-Changed-Why: I'll see this PR through. http://www.freebsd.org/cgi/query-pr.cgi?pr=69299 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07: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 DD9DC16A4CE for ; Thu, 22 Jul 2004 07:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF29B43D31 for ; Thu, 22 Jul 2004 07:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M7KLqb083450 for ; Thu, 22 Jul 2004 07:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7KLlx083449; Thu, 22 Jul 2004 07:20:21 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 07:20:21 GMT Resent-Message-Id: <200407220720.i6M7KLlx083449@freefall.freebsd.org> 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 5008416A4CE; Thu, 22 Jul 2004 07:13:14 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2271643D45; Thu, 22 Jul 2004 07:13:14 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 1124A15238; Thu, 22 Jul 2004 15:14:39 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 79782-05; Thu, 22 Jul 2004 15:14:38 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 5FEF215236; Thu, 22 Jul 2004 15:14:38 +0800 (CST) Message-Id: <20040722071438.5FEF215236@mail.dragon2.net> Date: Thu, 22 Jul 2004 15:14:38 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: demon@FreeBSD.org Subject: ports/69414: [PATCH] misc/Locale-Codes: update to 2.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:20:31 -0000 >Number: 69414 >Category: ports >Synopsis: [PATCH] misc/Locale-Codes: update to 2.07 >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 Jul 22 07:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 2.07 - Copy from ChangeLog * made $_ local in the initialisation code for each module change back-propagated from Perl distribution * removed two non ISO-8859-1 characters from language names change back-propagated from Perl distribution * added the following aliases, with a test case for each - Burma added to Myanmar - French Southern and Antarctic Lands to French Southern Territories patch from TJ Mather * "Canadian Dollar" was mis-spelled as "Candian Dollar" - noted by Nick Cabatoff, patch from Michael Hennecke * Changes to Locale::Country reflecting changes in ISO 3166 - added Aland Islands (ax, ala, 248) - YUGOSLAVIA is now SERBIA AND MONTENEGRO YU => CS YUG => SCG 891 => 891 (unchanged) (YUGOSLAVIA retained as an alias) - EAST TIMOR changed to TIMOR-LESTE (old name retained as an alias) - three letter code for Romania changed from ROM to ROU * ZAIRE is now CONGO, THE DEMOCRATIC REPUBLIC OF THE ZR => CD ZAR => COD 180 => 180 (unchanged) (ZAIRE retained as alias) Port maintainer (demon@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Locale-Codes-2.07.patch begins here --- diff -ruN --exclude=CVS /usr/ports/misc/p5-Locale-Codes/Makefile /home/clsung/p5-Locale-Codes/Makefile --- /usr/ports/misc/p5-Locale-Codes/Makefile Fri Oct 24 23:14:48 2003 +++ /home/clsung/p5-Locale-Codes/Makefile Thu Jul 22 15:12:11 2004 @@ -6,7 +6,7 @@ # PORTNAME= Locale-Codes -PORTVERSION= 2.06 +PORTVERSION= 2.07 CATEGORIES= misc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Locale diff -ruN --exclude=CVS /usr/ports/misc/p5-Locale-Codes/distinfo /home/clsung/p5-Locale-Codes/distinfo --- /usr/ports/misc/p5-Locale-Codes/distinfo Sat Mar 27 16:30:02 2004 +++ /home/clsung/p5-Locale-Codes/distinfo Thu Jul 22 15:12:19 2004 @@ -1,2 +1,2 @@ -MD5 (Locale-Codes-2.06.tar.gz) = 930a08e152a2fc2ccbfb2303fb45f43d -SIZE (Locale-Codes-2.06.tar.gz) = 24931 +MD5 (Locale-Codes-2.07.tar.gz) = af0537cc4a882096d0320612c440df6d +SIZE (Locale-Codes-2.07.tar.gz) = 25886 --- p5-Locale-Codes-2.07.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07: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 06C6616A4D0 for ; Thu, 22 Jul 2004 07:20:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC45F43D58 for ; Thu, 22 Jul 2004 07:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M7KOCE083463 for ; Thu, 22 Jul 2004 07:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7KOjk083462; Thu, 22 Jul 2004 07:20:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 07:20:24 GMT Resent-Message-Id: <200407220720.i6M7KOjk083462@freefall.freebsd.org> 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 C343016A4CE; Thu, 22 Jul 2004 07:18:54 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 597A043D4C; Thu, 22 Jul 2004 07:18:54 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 16F4715238; Thu, 22 Jul 2004 15:20:16 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 83318-01; Thu, 22 Jul 2004 15:20:15 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 6CB0015236; Thu, 22 Jul 2004 15:20:15 +0800 (CST) Message-Id: <20040722072015.6CB0015236@mail.dragon2.net> Date: Thu, 22 Jul 2004 15:20:15 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: petef@FreeBSD.org Subject: ports/69415: [PATCH] net/File-Rsync: update to 0.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:20:31 -0000 >Number: 69415 >Category: ports >Synopsis: [PATCH] net/File-Rsync: update to 0.33 >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 Jul 22 07:20:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.33 - Copy from Chagelog * version 0.33: Fixed a type-o in parsing of quote-dst tag. Peter teStrake (peter dot testrake at tradingscreen dot com) pointed out that the exec method did not protect itself from a user-defined SIGCHLD handler and could miss the exit of rsync and report a false error. A local reset of the handler should protect it and still leave the handler in place for the rest of the user code. Port maintainer (petef@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-File-Rsync-0.33.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-File-Rsync/Makefile /home/clsung/p5-File-Rsync/Makefile --- /usr/ports/net/p5-File-Rsync/Makefile Sun Jan 11 22:47:19 2004 +++ /home/clsung/p5-File-Rsync/Makefile Thu Jul 22 15:16:54 2004 @@ -6,7 +6,7 @@ # PORTNAME= File-Rsync -PORTVERSION= 0.32 +PORTVERSION= 0.33 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= File diff -ruN --exclude=CVS /usr/ports/net/p5-File-Rsync/distinfo /home/clsung/p5-File-Rsync/distinfo --- /usr/ports/net/p5-File-Rsync/distinfo Thu Apr 1 16:40:28 2004 +++ /home/clsung/p5-File-Rsync/distinfo Thu Jul 22 15:17:08 2004 @@ -1,2 +1,2 @@ -MD5 (File-Rsync-0.32.tar.gz) = 171e3626d928d08d58c83a3fe6928bc3 -SIZE (File-Rsync-0.32.tar.gz) = 17142 +MD5 (File-Rsync-0.33.tar.gz) = a7dd8d50fd42910333917280f39f670e +SIZE (File-Rsync-0.33.tar.gz) = 17520 --- p5-File-Rsync-0.33.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:25: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 AEA1A16A4CE; Thu, 22 Jul 2004 07:25:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D58D43D31; Thu, 22 Jul 2004 07:25:39 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M7PbWJ084269; Thu, 22 Jul 2004 07:25:37 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7PblB084265; Thu, 22 Jul 2004 07:25:37 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 07:25:37 GMT From: Volker Stolz Message-Id: <200407220725.i6M7PblB084265@freefall.freebsd.org> To: hsn@netmag.cz, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69392: [PATCH] net/fspclient: update to 0.0.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, 22 Jul 2004 07:25:39 -0000 Synopsis: [PATCH] net/fspclient: update to 0.0.7 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 07:23:38 GMT 2004 State-Changed-Why: Committed, thanks! Radim, one of these days you really should try to use porttools correctly ;) Please also state in the subject that it's a maintainer-update, that makes them easier to spot. Also, please don't touch the CVS-tag $FreeBSD. http://www.freebsd.org/cgi/query-pr.cgi?pr=69392 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:30: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 21D5F16A4CE for ; Thu, 22 Jul 2004 07:30:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1B3043D2D for ; Thu, 22 Jul 2004 07:30:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M7UJ2I084409 for ; Thu, 22 Jul 2004 07:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7UJOE084403; Thu, 22 Jul 2004 07:30:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 07:30:19 GMT Resent-Message-Id: <200407220730.i6M7UJOE084403@freefall.freebsd.org> 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 26E2816A4CE for ; Thu, 22 Jul 2004 07:25:21 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id C445243D55 for ; Thu, 22 Jul 2004 07:25:20 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 67A9E156C9; Thu, 22 Jul 2004 15:26:47 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 83318-03; Thu, 22 Jul 2004 15:26:47 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id C9A4215635; Thu, 22 Jul 2004 15:26:46 +0800 (CST) Message-Id: <20040722072646.C9A4215635@mail.dragon2.net> Date: Thu, 22 Jul 2004 15:26:46 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: erich@tacni.net Subject: ports/69416: [PATCH] net/p5-Net-SCP: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:30:20 -0000 >Number: 69416 >Category: ports >Synopsis: [PATCH] net/p5-Net-SCP: update to 0.07 >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 Jul 22 07:30:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.07 - Copy from Changes - get and put methods use OO-style scp to avoid clobbering errstr, thanks to paguerlais@airfrance.fr - remove extraneous warn Port maintainer (erich@tacni.net) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Net-SCP-0.07.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-Net-SCP/Makefile /home/clsung/p5-Net-SCP/Makefile --- /usr/ports/net/p5-Net-SCP/Makefile Fri Oct 24 23:14:56 2003 +++ /home/clsung/p5-Net-SCP/Makefile Thu Jul 22 15:24:20 2004 @@ -6,7 +6,7 @@ # PORTNAME= Net-SCP -PORTVERSION= 0.06 +PORTVERSION= 0.07 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net diff -ruN --exclude=CVS /usr/ports/net/p5-Net-SCP/distinfo /home/clsung/p5-Net-SCP/distinfo --- /usr/ports/net/p5-Net-SCP/distinfo Thu Apr 1 16:40:29 2004 +++ /home/clsung/p5-Net-SCP/distinfo Thu Jul 22 15:24:30 2004 @@ -1,2 +1,2 @@ -MD5 (Net-SCP-0.06.tar.gz) = 3404c8013df8eb19e08a3d179b30a4a7 -SIZE (Net-SCP-0.06.tar.gz) = 4811 +MD5 (Net-SCP-0.07.tar.gz) = bf7e89b5741b98f4a9e40896f0baf230 +SIZE (Net-SCP-0.07.tar.gz) = 4918 --- p5-Net-SCP-0.07.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:33: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 A1F7116A4CE; Thu, 22 Jul 2004 07:33:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81F2843D58; Thu, 22 Jul 2004 07:33:57 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M7XvQI085598; Thu, 22 Jul 2004 07:33:57 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7XvEE085594; Thu, 22 Jul 2004 07:33:57 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 07:33:57 GMT From: Kirill Ponomarew Message-Id: <200407220733.i6M7XvEE085594@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org Subject: Re: ports/69413: [PATCH] misc/I18N-LangTags: update to 0.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:33:57 -0000 Synopsis: [PATCH] misc/I18N-LangTags: update to 0.33 Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: krion Responsible-Changed-When: Thu Jul 22 07:33:46 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69413 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:34: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 E799316A4CE; Thu, 22 Jul 2004 07:34:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7D4843D58; Thu, 22 Jul 2004 07:34:14 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M7YEpM085653; Thu, 22 Jul 2004 07:34:14 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7YEln085649; Thu, 22 Jul 2004 07:34:14 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 07:34:14 GMT From: Kirill Ponomarew Message-Id: <200407220734.i6M7YEln085649@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org Subject: Re: ports/69414: [PATCH] misc/Locale-Codes: update to 2.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:34:15 -0000 Synopsis: [PATCH] misc/Locale-Codes: update to 2.07 Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: krion Responsible-Changed-When: Thu Jul 22 07:34:05 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69414 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:34: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 133D916A4CE; Thu, 22 Jul 2004 07:34:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8CA343D4C; Thu, 22 Jul 2004 07:34:32 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M7YW0g085700; Thu, 22 Jul 2004 07:34:32 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7YWtm085696; Thu, 22 Jul 2004 07:34:32 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 07:34:32 GMT From: Kirill Ponomarew Message-Id: <200407220734.i6M7YWtm085696@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, petef@FreeBSD.org Subject: Re: ports/69415: [PATCH] net/File-Rsync: update to 0.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:34:33 -0000 Synopsis: [PATCH] net/File-Rsync: update to 0.33 Responsible-Changed-From-To: freebsd-ports-bugs->petef Responsible-Changed-By: krion Responsible-Changed-When: Thu Jul 22 07:34:22 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69415 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:38: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 3C54316A4CE; Thu, 22 Jul 2004 07:38:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AB2C43D5D; Thu, 22 Jul 2004 07:38:23 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M7cMVI085900; Thu, 22 Jul 2004 07:38:23 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7cMR5085896; Thu, 22 Jul 2004 07:38:22 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 07:38:22 GMT From: Kirill Ponomarew Message-Id: <200407220738.i6M7cMR5085896@freefall.freebsd.org> To: ahze@ahze.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69403: [NEW PORT] graphics/exifprobe: Probes JPEG or TIFF images and reports contents and structure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:38:23 -0000 Synopsis: [NEW PORT] graphics/exifprobe: Probes JPEG or TIFF images and reports contents and structure State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 07:38:17 GMT 2004 State-Changed-Why: New port added, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69403 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:40: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 30EDE16A4CF; Thu, 22 Jul 2004 07:40:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1156243D1D; Thu, 22 Jul 2004 07:40:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M7egcT086132; Thu, 22 Jul 2004 07:40:42 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7egbF086128; Thu, 22 Jul 2004 07:40:42 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 07:40:42 GMT From: Volker Stolz Message-Id: <200407220740.i6M7egbF086128@freefall.freebsd.org> To: lx@redundancy.redundancy.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69387: Update: security/samhain 1.8.9 -> 1.8.10b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:40:43 -0000 Synopsis: Update: security/samhain 1.8.9 -> 1.8.10b State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Jul 22 07:38:50 GMT 2004 State-Changed-Why: Please note that due to a bug, the automatic packages will be build with all options set to OFF! You can work around this by e.g. using .if undefined(WITHOUT_FOO) || defined(WITH_FOO) -- Volker http://www.freebsd.org/cgi/query-pr.cgi?pr=69387 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:44: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 A3DE616A4CE; Thu, 22 Jul 2004 07:44:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83F6843D2D; Thu, 22 Jul 2004 07:44:46 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M7ikK0086378; Thu, 22 Jul 2004 07:44:46 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7ifwd086360; Thu, 22 Jul 2004 07:44:41 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 07:44:41 GMT From: Kirill Ponomarew Message-Id: <200407220744.i6M7ifwd086360@freefall.freebsd.org> To: yonatan@xpert.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69382: new port: security/pft X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:44:46 -0000 Synopsis: new port: security/pft State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 07:44:12 GMT 2004 State-Changed-Why: Doesn't build on 5-x pjlsession.cpp:24:8: warning: extra tokens at end of #endif directive In file included from pjlsession.h:8, from pjlsession.cpp:27: tcpcon.h:12:8: warning: extra tokens at end of #endif directive In file included from rawmem.h:9, from tcpcon.h:14, from pjlsession.h:8, from pjlsession.cpp:27: http://www.freebsd.org/cgi/query-pr.cgi?pr=69382 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:50: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 9A7DB16A4CE for ; Thu, 22 Jul 2004 07:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C16743D49 for ; Thu, 22 Jul 2004 07:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M7oMJk086730 for ; Thu, 22 Jul 2004 07:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7oMEY086729; Thu, 22 Jul 2004 07:50:22 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 07:50:22 GMT Resent-Message-Id: <200407220750.i6M7oMEY086729@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F198D16A4CE; Thu, 22 Jul 2004 07:49:46 +0000 (GMT) Received: from rusunix.org (rusunix.org [195.162.56.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EA2443D1F; Thu, 22 Jul 2004 07:49:46 +0000 (GMT) (envelope-from aquatique@rusunix.org) Received: by rusunix.org (Postfix, from userid 1111) id 74B681CC81B; Thu, 22 Jul 2004 14:49:43 +0700 (OMSST) Message-Id: <20040722074943.74B681CC81B@rusunix.org> Date: Thu, 22 Jul 2004 14:49:43 +0700 (OMSST) From: To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: krion@FreeBSD.org cc: ports@oven.org Subject: ports/69418: update audio/lopster to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: aquatique-ports@rambler.ru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 07:50:22 -0000 >Number: 69418 >Category: ports >Synopsis: update audio/lopster to 1.2.1 >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 Jul 22 07:50:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Evgueni V. Gavrilov >Release: FreeBSD 4.10-RELEASE i386 >Organization: rusunix.org on behalf of Mr. Colonel >Environment: System: FreeBSD rusunix.org 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Thu May 27 18:47:13 OMSST 2004 root@rusunix.org:/usr/obj/usr/src/sys/NEWMONSTER i386 >Description: update audio/lopster to 1.2.1 >How-To-Repeat: patch < >Fix: file files/patch-src::transfer.c should be removed at all diff -ruN lopster.orig/Makefile lopster/Makefile --- lopster.orig/Makefile Thu Jul 22 13:55:31 2004 +++ lopster/Makefile Thu Jul 22 13:56:18 2004 @@ -6,8 +6,8 @@ # PORTNAME= lopster -PORTVERSION= 1.2.0 -PORTREVISION= 3 +PORTVERSION= 1.2.1 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN lopster.orig/distinfo lopster/distinfo --- lopster.orig/distinfo Thu Jul 22 13:55:31 2004 +++ lopster/distinfo Thu Jul 22 14:00:13 2004 @@ -1,2 +1,2 @@ -MD5 (lopster-1.2.0.tar.gz) = fedbe6b5c7944a4a21bc4554358a057d -SIZE (lopster-1.2.0.tar.gz) = 606295 +MD5 (lopster-1.2.1.tar.gz) = c6b192a4c62b50999fa1117924204156 +SIZE (lopster-1.2.1.tar.gz) = 632376 diff -ruN lopster.orig/files/patch-src::global.c lopster/files/patch-src::global.c --- lopster.orig/files/patch-src::global.c Thu Jul 22 13:55:31 2004 +++ lopster/files/patch-src::global.c Thu Jul 22 14:03:34 2004 @@ -1,11 +1,11 @@ ---- src/global.c.orig Sun Nov 4 13:30:19 2001 -+++ src/global.c Sat Jan 26 22:15:50 2002 -@@ -3096,7 +3096,7 @@ +--- src/global.c.orig Sat Jul 3 19:19:19 2004 ++++ src/global.c Thu Jul 22 14:03:01 2004 +@@ -3588,7 +3588,7 @@ global.allowed_ports = NULL; global.auto_save = NULL; -- global.ping_command = l_strdup("/bin/ping -c 3 $IP"); -+ global.ping_command = l_strdup("/sbin/ping -c 3 $IP"); +- global.ping_command = g_strdup("/bin/ping -c 3 $IP"); ++ global.ping_command = g_strdup("/sbin/ping -c 3 $IP"); global.browse_width[0] = 369; global.browse_width[1] = 80; diff -ruN lopster.orig/files/patch-src::transfer.c lopster/files/patch-src::transfer.c --- lopster.orig/files/patch-src::transfer.c Thu Jul 22 13:55:31 2004 +++ lopster/files/patch-src::transfer.c Thu Jan 1 06:00:00 1970 @@ -1,30 +0,0 @@ ---- src/transfer.c.orig Tue Mar 4 21:08:57 2003 -+++ src/transfer.c Wed Mar 5 23:23:53 2003 -@@ -5907,6 +5907,7 @@ - GtkCList *clist; - socket_t *socket; - upload_t *upload; -+ share_t *share; - int i1; - - if (!userinfo) return; -@@ -5915,10 +5916,15 @@ - gtk_clist_freeze(clist); - for (i1 = 0; i1 < clist->rows; i1++) { - socket = gtk_clist_get_row_data(clist, i1); -- upload = socket->data; -- if (upload->data->user_info != userinfo) continue; -- -- upload_update(socket); -+ if (socket->type == S_UPLOAD) { -+ upload = socket->data; -+ if (upload->data->user_info != userinfo) continue; -+ upload_update(socket); -+ } else if (socket->type == S_SHARE) { -+ share = socket->data; -+ if (share->data->user_info != userinfo) continue; -+ share_update(socket); -+ } - } - gtk_clist_thaw(clist); - } diff -ruN lopster.orig/pkg-plist lopster/pkg-plist --- lopster.orig/pkg-plist Thu Jul 22 13:55:31 2004 +++ lopster/pkg-plist Thu Jul 22 14:09:54 2004 @@ -26,6 +26,10 @@ share/lopster/pixmaps/search.xpm share/lopster/pixmaps/server.xpm share/lopster/pixmaps/server_con.xpm +share/lopster/pixmaps/server_deact.xpm +share/lopster/pixmaps/server_napi.xpm +share/lopster/pixmaps/server_nnapi.xpm +share/lopster/pixmaps/server_perm.xpm share/lopster/pixmaps/share_all.xpm share/lopster/pixmaps/share_none.xpm share/lopster/pixmaps/share_part.xpm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:57: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 E11D816A4DC; Thu, 22 Jul 2004 07:57:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE8B243D46; Thu, 22 Jul 2004 07:57:45 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M7vjqs087282; Thu, 22 Jul 2004 07:57:45 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7vjhc087278; Thu, 22 Jul 2004 07:57:45 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 07:57:45 GMT From: Kirill Ponomarew Message-Id: <200407220757.i6M7vjhc087278@freefall.freebsd.org> To: chris@e-easy.com.au, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69320: [MAINTAINER UPDATE] databases/firebird: Update to 1.5.1 Release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 07:57:46 -0000 Synopsis: [MAINTAINER UPDATE] databases/firebird: Update to 1.5.1 Release State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 07:57:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69320 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 07:59: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 8C5F116A4CF; Thu, 22 Jul 2004 07:59:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8E243D48; Thu, 22 Jul 2004 07:59:24 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6M7xOTc087409; Thu, 22 Jul 2004 07:59:24 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M7xOrJ087405; Thu, 22 Jul 2004 07:59:24 GMT (envelope-from vanilla) Date: Thu, 22 Jul 2004 07:59:24 GMT From: "Vanilla I. Shu" Message-Id: <200407220759.i6M7xOrJ087405@freefall.freebsd.org> To: clsung@dragon2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69412: [PATCH] chinese/Encode-HanConvert: update to 0.31, 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: Thu, 22 Jul 2004 07:59:24 -0000 Synopsis: [PATCH] chinese/Encode-HanConvert: update to 0.31, take maintainership State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Thu Jul 22 07:59:18 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69412 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:36: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 D20F916A4CE for ; Thu, 22 Jul 2004 08:36:59 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7545443D41 for ; Thu, 22 Jul 2004 08:36:59 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.40 (FreeBSD)) id 1BnZ4Y-0007Pu-6R; Thu, 22 Jul 2004 10:37:02 +0200 Date: Thu, 22 Jul 2004 10:37:02 +0200 From: Kirill Ponomarew To: ports@oven.org Message-ID: <20040722083702.GA28367@voodoo.oberon.net> References: <20040722074943.74B681CC81B@rusunix.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline In-Reply-To: <20040722074943.74B681CC81B@rusunix.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: update audio/lopster to 1.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: Thu, 22 Jul 2004 08:36:59 -0000 --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Thu, Jul 22, 2004 at 02:49:43PM +0700, aquatique-ports@rambler.ru wrote: >=20 > >Submitter-Id: current-users > >Originator: Evgueni V. Gavrilov > >Organization: rusunix.org on behalf of Mr. Colonel > >Confidential: no > >Synopsis: update audio/lopster to 1.2.1 > >Severity: non-critical > >Priority: medium > >Category: ports > >Class: update > >Release: FreeBSD 4.10-RELEASE i386 > >Environment: > System: FreeBSD rusunix.org 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Thu May= 27 18:47:13 OMSST 2004 root@rusunix.org:/usr/obj/usr/src/sys/NEWMONSTER i3= 86 Could you please review this patch ? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/69418 =20 -Kirill --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/3yuQC1G6a60JuURAtDbAKDTYh0zTftJYBBs3mpGa5oxfTzQVwCgpVpS zW/hNV1hZZiUt9HDsYh2BSM= =hRni -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:37: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 45B5016A4CE; Thu, 22 Jul 2004 08:37:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2524043D58; Thu, 22 Jul 2004 08:37:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8bTxH093507; Thu, 22 Jul 2004 08:37:29 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8bSlr093503; Thu, 22 Jul 2004 08:37:28 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:37:28 GMT From: Kirill Ponomarew Message-Id: <200407220837.i6M8bSlr093503@freefall.freebsd.org> To: aquatique-ports@rambler.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69418: update audio/lopster to 1.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: Thu, 22 Jul 2004 08:37:29 -0000 Synopsis: update audio/lopster to 1.2.1 State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 08:37:09 GMT 2004 State-Changed-Why: Asked for maintainer's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=69418 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:39: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 1A4A216A4CF; Thu, 22 Jul 2004 08:39:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDEB243D53; Thu, 22 Jul 2004 08:39:33 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8dXxJ093573; Thu, 22 Jul 2004 08:39:33 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8dXng093569; Thu, 22 Jul 2004 08:39:33 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:39:33 GMT From: Kirill Ponomarew Message-Id: <200407220839.i6M8dXng093569@freefall.freebsd.org> To: ahze@ahze.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69389: [PATCH] audio/speex [update 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: Thu, 22 Jul 2004 08:39:34 -0000 Synopsis: [PATCH] audio/speex [update to 1.0.4] State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 08:39:18 GMT 2004 State-Changed-Why: Asked for maintainer's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=69389 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08: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 90EF316A4CE for ; Thu, 22 Jul 2004 08:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8807243D46 for ; Thu, 22 Jul 2004 08:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M8eN4M093679 for ; Thu, 22 Jul 2004 08:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8eNYe093678; Thu, 22 Jul 2004 08:40:23 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 08:40:23 GMT Message-Id: <200407220840.i6M8eNYe093678@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kirill Ponomarew Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kirill Ponomarew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 08:40:23 -0000 The following reply was made to PR ports/69389; it has been noted by GNATS. From: Kirill Ponomarew To: jre@vineyard.net Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] Date: Thu, 22 Jul 2004 10:39:17 +0200 --IiVenqGWf+H9Y6IX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Jul 21, 2004 at 07:09:06PM +0000, Michael Johnson wrote: >=20 > >Number: 69389 > >Category: ports > >Synopsis: [PATCH] audio/speex [update to 1.0.4] > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports-bugs > >State: open Could you please review this PR ? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/69389 -Kirill --IiVenqGWf+H9Y6IX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/301QC1G6a60JuURAsUEAJwINhzjVKYwjg6ociS0RswjxBCUrwCff1Nb LIKMm/2O277lKA6VtjIJ6lE= =RK8x -----END PGP SIGNATURE----- --IiVenqGWf+H9Y6IX-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08: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 0C77E16A4CF for ; Thu, 22 Jul 2004 08:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCEF143D48 for ; Thu, 22 Jul 2004 08:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M8eNoD093692 for ; Thu, 22 Jul 2004 08:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8eNp2093691; Thu, 22 Jul 2004 08:40:23 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 08:40:23 GMT Resent-Message-Id: <200407220840.i6M8eNp2093691@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Patrick Dung Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD0E416A4CE for ; Thu, 22 Jul 2004 08:39:32 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4ECA43D49 for ; Thu, 22 Jul 2004 08:39:32 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6M8dWJx003161 for ; Thu, 22 Jul 2004 08:39:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6M8dWZm003160; Thu, 22 Jul 2004 08:39:32 GMT (envelope-from nobody) Message-Id: <200407220839.i6M8dWZm003160@www.freebsd.org> Date: Thu, 22 Jul 2004 08:39:32 GMT From: Patrick Dung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69419: print/pdftk: update to 0.941 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 08:40:24 -0000 >Number: 69419 >Category: ports >Synopsis: print/pdftk: update to 0.941 >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 Jul 22 08:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Patrick Dung >Release: FreeBSD -current >Organization: N/A >Environment: FreeBSD piii.nodomain 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sat July 17 22:52:21 HKT 2004 root@piii.nodomain:/usr/src/sys/i386/compile/17072004.cvs i386 >Description: Update to 0.941 Changes: Upgrade from 0.94 to 0.941 Author of pdftk now uses CXXFLAGS instead of CC_OPTS Fix a problem with make deinstall or pkg_delete (I had used both PLIST_FILES and pkg-plist) The attached patch has only tested on FreeBSD-current, not FreeBSD -stable. >How-To-Repeat: N/A >Fix: --- ./Makefile.orig Tue May 11 15:56:46 2004 +++ ./Makefile Mon Jul 19 00:11:32 2004 @@ -6,7 +6,7 @@ # PORTNAME= pdftk -PORTVERSION= 0.94 +PORTVERSION= 0.941 CATEGORIES= print MASTER_SITES= http://www.accesspdf.com/pdftk/ @@ -30,10 +30,9 @@ MAKE_ENV= CXX=g++33 GCJ=gcj33 GCJH=gcjh33 MAN1= ${PORTNAME}.1 -PLIST_FILES= bin/pdftk post-extract: - @${REINPLACE_CMD} -e "s|CC_OPTS \+\=|CC_OPTS \+\= ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} -liconv -lz|g" ${WRKSRC}/Makefile.Base + @${REINPLACE_CMD} -e "s|CXXFLAGS \+\=|CXXFLAGS \+\= ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} -liconv -lz|g" ${WRKSRC}/Makefile.Base @${REINPLACE_CMD} -e "s|g\+\+|g\+\+33|g" ${WRKSRC}/Makefile.Generic @${REINPLACE_CMD} -e "s|MAKE)|MAKE) GXX=g++33 GCJ=gcj33 GCJH=gcjh33| " ${WRKSRC}/Makefile.Base >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:42: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 95F6116A4CF; Thu, 22 Jul 2004 08:42:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7736043D41; Thu, 22 Jul 2004 08:42:31 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8gVSc093842; Thu, 22 Jul 2004 08:42:31 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8gVq3093838; Thu, 22 Jul 2004 08:42:31 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:42:31 GMT From: Kirill Ponomarew Message-Id: <200407220842.i6M8gVq3093838@freefall.freebsd.org> To: ahze@ahze.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69409: [PATCH] multimedia/mplayer: [fix build with net/liveMedia] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 08:42:31 -0000 Synopsis: [PATCH] multimedia/mplayer: [fix build with net/liveMedia] State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 08:42:12 GMT 2004 State-Changed-Why: Asked for maintainer's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=69409 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:41: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 97F1216A4CF; Thu, 22 Jul 2004 08:41:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F0B43D5A; Thu, 22 Jul 2004 08:41:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8fCGa093764; Thu, 22 Jul 2004 08:41:12 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8fCJf093760; Thu, 22 Jul 2004 08:41:12 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:41:12 GMT From: Kirill Ponomarew Message-Id: <200407220841.i6M8fCJf093760@freefall.freebsd.org> To: ahze@ahze.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69406: [PATCH] multimedia/transcode: [Fix build with latest libdv] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 08:41:12 -0000 Synopsis: [PATCH] multimedia/transcode: [Fix build with latest libdv] State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 08:40:59 GMT 2004 State-Changed-Why: Asked for maintainer's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=69406 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:43: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 198D416A4CE; Thu, 22 Jul 2004 08:43:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8ED143D66; Thu, 22 Jul 2004 08:43:42 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8hgsn093901; Thu, 22 Jul 2004 08:43:42 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8hgFa093897; Thu, 22 Jul 2004 08:43:42 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:43:42 GMT From: Kirill Ponomarew Message-Id: <200407220843.i6M8hgFa093897@freefall.freebsd.org> To: clsung@dragon2.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69411: [PATCH] archivers/Archive-Tar: update to 1.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: Thu, 22 Jul 2004 08:43:43 -0000 Synopsis: [PATCH] archivers/Archive-Tar: update to 1.10 State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 08:43:29 GMT 2004 State-Changed-Why: Asked for maintainer's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=69411 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:44: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 3A32916A4CF; Thu, 22 Jul 2004 08:44:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15B3443D5D; Thu, 22 Jul 2004 08:44:40 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8idYm093965; Thu, 22 Jul 2004 08:44:39 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8idYR093961; Thu, 22 Jul 2004 08:44:39 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:44:39 GMT From: Kirill Ponomarew Message-Id: <200407220844.i6M8idYR093961@freefall.freebsd.org> To: clsung@dragon2.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69416: [PATCH] net/p5-Net-SCP: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 08:44:40 -0000 Synopsis: [PATCH] net/p5-Net-SCP: update to 0.07 State-Changed-From-To: open->feedback State-Changed-By: krion State-Changed-When: Thu Jul 22 08:44:27 GMT 2004 State-Changed-Why: Asked for maintainer's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=69416 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:47: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 B846C16A4CF; Thu, 22 Jul 2004 08:47:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9809043D1D; Thu, 22 Jul 2004 08:47:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8lC83094083; Thu, 22 Jul 2004 08:47:12 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8lCZo094079; Thu, 22 Jul 2004 08:47:12 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:47:12 GMT From: Kirill Ponomarew Message-Id: <200407220847.i6M8lCZo094079@freefall.freebsd.org> To: fuyuki@hadaly.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69396: Update port: misc/ossp-uuid to 1.0.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: Thu, 22 Jul 2004 08:47:12 -0000 Synopsis: Update port: misc/ossp-uuid to 1.0.1 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 08:47:07 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69396 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08: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 8C98416A4CE for ; Thu, 22 Jul 2004 08:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84BB643D4C for ; Thu, 22 Jul 2004 08:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M8oOv8094248 for ; Thu, 22 Jul 2004 08:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8oOnT094247; Thu, 22 Jul 2004 08:50:24 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 08:50:24 GMT Message-Id: <200407220850.i6M8oOnT094247@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kirill Ponomarew Subject: Re: ports/69406: [PATCH] multimedia/transcode: [Fix build with latest libdv] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kirill Ponomarew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 08:50:24 -0000 The following reply was made to PR ports/69406; it has been noted by GNATS. From: Kirill Ponomarew To: hendrik@scholz.net Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69406: [PATCH] multimedia/transcode: [Fix build with latest libdv] Date: Thu, 22 Jul 2004 10:40:58 +0200 --ABTtc+pdwF7KHXCz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Thu, Jul 22, 2004 at 12:39:26AM -0400, Michael Johnson wrote: >=20 > >Number: 69406 > >Category: ports > >Synopsis: [PATCH] multimedia/transcode: [Fix build with latest lib= dv] > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-ports-bugs > >State: open Could you please review this PR ? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/69406 -Kirill --ABTtc+pdwF7KHXCz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/32aQC1G6a60JuURAg2kAJ4+SEBUFRG+Qu3cLqZauytXTruwkwCgmXbi txqFmC9FDGMcSQSmazni1eM= =ULR1 -----END PGP SIGNATURE----- --ABTtc+pdwF7KHXCz-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08: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 77E4F16A4CE for ; Thu, 22 Jul 2004 08:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F88B43D5A for ; Thu, 22 Jul 2004 08:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M8oRmD094280 for ; Thu, 22 Jul 2004 08:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8oR5m094279; Thu, 22 Jul 2004 08:50:27 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 08:50:27 GMT Message-Id: <200407220850.i6M8oR5m094279@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kirill Ponomarew Subject: Re: ports/69409: [PATCH] multimedia/mplayer: [fix build with net/liveMedia] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kirill Ponomarew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 08:50:27 -0000 The following reply was made to PR ports/69409; it has been noted by GNATS. From: Kirill Ponomarew To: riggs@rrr.de Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69409: [PATCH] multimedia/mplayer: [fix build with net/liveMedia] Date: Thu, 22 Jul 2004 10:42:13 +0200 --gE7i1rD7pdK0Ng3j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Thu, Jul 22, 2004 at 01:42:36AM -0400, Michael Johnson wrote: >=20 > >Number: 69409 > >Category: ports > >Synopsis: [PATCH] multimedia/mplayer: [fix build with net/liveMedi= a] > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports-bugs > >State: open Could you please review this PR ? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/69409 -Kirill --gE7i1rD7pdK0Ng3j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/33lQC1G6a60JuURAmYUAKCQTjNSBTpEjj9Mdm5cfd6b5A1HWQCdHBo0 ueGEmCgAwB3tIvj6olLkKtI= =8fIu -----END PGP SIGNATURE----- --gE7i1rD7pdK0Ng3j-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08: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 9168016A4CE for ; Thu, 22 Jul 2004 08:50:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 865BE43D5A for ; Thu, 22 Jul 2004 08:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M8oVYl094320 for ; Thu, 22 Jul 2004 08:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8oVbC094319; Thu, 22 Jul 2004 08:50:31 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 08:50:31 GMT Message-Id: <200407220850.i6M8oVbC094319@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kirill Ponomarew Subject: Re: ports/69411: [PATCH] archivers/Archive-Tar: update to 1.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kirill Ponomarew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 08:50:31 -0000 The following reply was made to PR ports/69411; it has been noted by GNATS. From: Kirill Ponomarew To: ports@oven.org Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69411: [PATCH] archivers/Archive-Tar: update to 1.10 Date: Thu, 22 Jul 2004 10:43:29 +0200 --PPYy/fEw/8QCHSq3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Thu, Jul 22, 2004 at 02:38:13PM +0800, Cheng-Lung Sung wrote: >=20 > >Number: 69411 > >Category: ports > >Synopsis: [PATCH] archivers/Archive-Tar: update to 1.10 > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports-bugs > >State: open Could you please review this PR ? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/69411 -Kirill --PPYy/fEw/8QCHSq3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/34xQC1G6a60JuURAg6XAJ0SknJwmEifvAjMxkzrRTLww79OsgCfQ+29 W5x5ChTFRt5BaZF1Uz1Axjw= =3WU2 -----END PGP SIGNATURE----- --PPYy/fEw/8QCHSq3-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:50: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 9C35216A4D2 for ; Thu, 22 Jul 2004 08:50:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 903FE43D45 for ; Thu, 22 Jul 2004 08:50:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M8oXw6094348 for ; Thu, 22 Jul 2004 08:50:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8oXSm094347; Thu, 22 Jul 2004 08:50:33 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 08:50:33 GMT Message-Id: <200407220850.i6M8oXSm094347@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kirill Ponomarew Subject: Re: ports/69416: [PATCH] net/p5-Net-SCP: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kirill Ponomarew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 08:50:37 -0000 The following reply was made to PR ports/69416; it has been noted by GNATS. From: Kirill Ponomarew To: erich@tacni.net Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69416: [PATCH] net/p5-Net-SCP: update to 0.07 Date: Thu, 22 Jul 2004 10:44:24 +0200 --SnV5plBeK2Ge1I9g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Thu, Jul 22, 2004 at 03:26:46PM +0800, Cheng-Lung Sung wrote: >=20 > >Number: 69416 > >Category: ports > >Synopsis: [PATCH] net/p5-Net-SCP: update to 0.07 > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports-bugs > >State: open Could you please review this PR ? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/69416 -Kirill --SnV5plBeK2Ge1I9g Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA/35oQC1G6a60JuURAr4LAKDIt2f8jGbhLfEydvRCjkzRuSPmDwCeOciL 1LLbMaAkKUOxW2gz8zqsmYE= =osC9 -----END PGP SIGNATURE----- --SnV5plBeK2Ge1I9g-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 08:50: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 A99C416A523; Thu, 22 Jul 2004 08:50:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8608E43D1D; Thu, 22 Jul 2004 08:50:45 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M8oj5e094415; Thu, 22 Jul 2004 08:50:45 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M8ojok094411; Thu, 22 Jul 2004 08:50:45 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 08:50:45 GMT From: Kirill Ponomarew Message-Id: <200407220850.i6M8ojok094411@freefall.freebsd.org> To: clsung@dragon2.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69407: [MAINTAINER] textproc/dbacl: update to 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: Thu, 22 Jul 2004 08:50:45 -0000 Synopsis: [MAINTAINER] textproc/dbacl: update to 1.8 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 08:50:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69407 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09:02: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 A6D5616A4CE; Thu, 22 Jul 2004 09:02:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D6E943D48; Thu, 22 Jul 2004 09:02:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M92ujV094941; Thu, 22 Jul 2004 09:02:56 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M92ufg094937; Thu, 22 Jul 2004 09:02:56 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 09:02:56 GMT From: Volker Stolz Message-Id: <200407220902.i6M92ufg094937@freefall.freebsd.org> To: mad@madpilot.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69340: [maintainer-update] fix bluetooth stack detection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 09:02:56 -0000 Synopsis: [maintainer-update] fix bluetooth stack detection State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Jul 22 09:01:41 GMT 2004 State-Changed-Why: Problem packaging: ... gmake[2]: Entering directory `/usr/ports/comms/openobex/work/openobex-1.0.1' /bin/sh ./mkinstalldirs /usr/local/bin install -c -o root -g wheel -m 555 openobex-config /usr/local/bin/i386-portbld-freebsd4.10-openobex-config ... ===> Building package for openobex-1.0.1 Creating package /usr/ports/packages/All/openobex-1.0.1.tgz Registering depends:. Creating gzip'd tar ball in '/usr/ports/packages/All/openobex-1.0.1.tgz' tar: bin/openobex-config: Cannot stat: No such file or directory IIRC, this has something to do with CONFIGURE_ARGS. http://www.freebsd.org/cgi/query-pr.cgi?pr=69340 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09:24:14 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 8CAF816A4CE; Thu, 22 Jul 2004 09:24:14 +0000 (GMT) Received: from muse.csie.ntu.edu.tw (muse.csie.ntu.edu.tw [140.112.28.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E7B543D1F; Thu, 22 Jul 2004 09:24:14 +0000 (GMT) (envelope-from rafan@muse.csie.ntu.edu.tw) Received: by muse.csie.ntu.edu.tw (Postfix, from userid 1001) id 3702B52528; Thu, 22 Jul 2004 17:24:13 +0800 (CST) Date: Thu, 22 Jul 2004 17:24:13 +0800 From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040722092413.GA26960@muse.csie.ntu.edu.tw> References: <20040717163243.5B8A952095@muse.csie.ntu.edu.tw> <200407171640.i6HGe39X063669@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <200407171640.i6HGe39X063669@freefall.freebsd.org> User-Agent: Mutt/1.5.6i cc: ale@freebsd.org Subject: Re: ports/69199: New Port: sysutils/pecl-Fileinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 09:24:14 -0000 Please close this pr. ale@ just commit PECL fileinfo 24hours ago. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09:26: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 28C3416A4CE; Thu, 22 Jul 2004 09:26:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0998243D39; Thu, 22 Jul 2004 09:26:46 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6M9QjTr099643; Thu, 22 Jul 2004 09:26:45 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M9QjFa099639; Thu, 22 Jul 2004 09:26:45 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 09:26:45 GMT From: Kirill Ponomarew Message-Id: <200407220926.i6M9QjFa099639@freefall.freebsd.org> To: rafan@infor.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69199: New Port: sysutils/pecl-Fileinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 09:26:46 -0000 Synopsis: New Port: sysutils/pecl-Fileinfo State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 09:26:38 GMT 2004 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=69199 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09: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 C76B116A4CF for ; Thu, 22 Jul 2004 09:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A690F43D1D for ; Thu, 22 Jul 2004 09:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M9UOPT099860 for ; Thu, 22 Jul 2004 09:30:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M9UO9W099859; Thu, 22 Jul 2004 09:30:24 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 09:30:24 GMT Message-Id: <200407220930.i6M9UO9W099859@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rong-En Fan Subject: Re: ports/69199: New Port: sysutils/pecl-Fileinfo 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: Thu, 22 Jul 2004 09:30:24 -0000 The following reply was made to PR ports/69199; it has been noted by GNATS. From: Rong-En Fan To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: ale@freebsd.org Subject: Re: ports/69199: New Port: sysutils/pecl-Fileinfo Date: Thu, 22 Jul 2004 17:24:13 +0800 Please close this pr. ale@ just commit PECL fileinfo 24hours ago. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09:40: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 E020C16A4CE for ; Thu, 22 Jul 2004 09:40:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB1FE43D5C for ; Thu, 22 Jul 2004 09:40:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M9e7HK001489 for ; Thu, 22 Jul 2004 09:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M9e7wd001488; Thu, 22 Jul 2004 09:40:07 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 09:40:07 GMT Resent-Message-Id: <200407220940.i6M9e7wd001488@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Seva Gluschenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E534D16A4CE for ; Thu, 22 Jul 2004 09:33:35 +0000 (GMT) Received: from road.yandex.ru (road.yandex.ru [213.180.193.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 268D143D54 for ; Thu, 22 Jul 2004 09:33:35 +0000 (GMT) (envelope-from gvs@road.yandex.ru) Received: from road.yandex.ru (localhost.yandex.net [127.0.0.1] (may be forged)) by road.yandex.ru (8.12.11/8.12.11) with ESMTP id i6M9ZN7x052368 for ; Thu, 22 Jul 2004 13:35:23 +0400 (MSD) (envelope-from gvs@road.yandex.ru) Received: (from gvs@localhost) by road.yandex.ru (8.12.11/8.12.11/Submit) id i6M9ZNnC052367; Thu, 22 Jul 2004 13:35:23 +0400 (MSD) (envelope-from gvs) Message-Id: <200407220935.i6M9ZNnC052367@road.yandex.ru> Date: Thu, 22 Jul 2004 13:35:23 +0400 (MSD) From: Seva Gluschenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69421: perl5-related distfiles are in common distfiles directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 09:40:09 -0000 >Number: 69421 >Category: ports >Synopsis: perl5-related distfiles are in common distfiles directory >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 Jul 22 09:40:06 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Seva Gluschenko >Release: FreeBSD 5.2-CURRENT i386 >Organization: Yandex LLC >Environment: System: FreeBSD road.yandex.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #8: Fri Jun 4 13:37:30 MSD 2004 gvs@road.yandex.ru:/local/obj/local/usr/src/sys/ROAD i386 >Description: Keeping p5-* distfiles in common /usr/ports/distfiles directory makes it difficult to maintain sometimes (for those who keep their distfiles, of course). It would be appreciated much to move perl5 distfiles to /usr/ports/distfiles/perl5 directory. >How-To-Repeat: >Fix: adjust Makefiles and distinfos of p5-* ports to use /usr/ports/distfiles/perl5 directory. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09:50: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 A6E9D16A4CE for ; Thu, 22 Jul 2004 09:50:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 932C843D2D for ; Thu, 22 Jul 2004 09:50:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6M9o8Wt002069 for ; Thu, 22 Jul 2004 09:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M9o87P002068; Thu, 22 Jul 2004 09:50:08 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 09:50:08 GMT Resent-Message-Id: <200407220950.i6M9o87P002068@freefall.freebsd.org> 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 JULIEN Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5398616A4CE for ; Thu, 22 Jul 2004 09:48:04 +0000 (GMT) Received: from isis.lip6.fr (isis.lip6.fr [132.227.60.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 612DE43D39 for ; Thu, 22 Jul 2004 09:48:03 +0000 (GMT) (envelope-from julien@goliath.lip6.fr) Received: from poleia.lip6.fr (poleia.lip6.fr [132.227.205.24]) i6M9m1aM015026 for ; Thu, 22 Jul 2004 11:48:01 +0200 Received: from goliath.lip6.fr (goliath.lip6.fr [132.227.205.202]) i6M9lja4028867 for ; Thu, 22 Jul 2004 11:47:45 +0200 Received: by goliath.lip6.fr (Postfix, from userid 1001) id D96E072B; Thu, 22 Jul 2004 11:49:38 +0200 (CEST) Message-Id: <20040722094938.D96E072B@goliath.lip6.fr> Date: Thu, 22 Jul 2004 11:49:38 +0200 (CEST) From: David JULIEN To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69422: New port: the Equeue OCaml library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David JULIEN List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 09:50:08 -0000 >Number: 69422 >Category: ports >Synopsis: New port: the Equeue OCaml library >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 Jul 22 09:50:08 GMT 2004 >Closed-Date: >Last-Modified: >Originator: David JULIEN >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD goliath.lip6.fr 4.10-STABLE FreeBSD 4.10-STABLE #1: Fri May 28 09:35:56 CEST 2004 root@goliath.lip6.fr:/usr/obj/usr/src/sys/GOLIATH i386 >Description: Equeue contains a generic implementation of queues of events of any type, and a specific implementation of queues of file descriptor events. The generic module allows to associate an event queue with an event source, and one or several event handlers. The event source generates new events that are triggered from the outer world. The handlers consume events, but it is allowed that handlers also generate events. The module for file descriptor events already defines an event source; this source watches registered file descriptors and produces events if a descriptor wants to deliver data, or if a descriptor is ready to accept data. As in the generic module, the handlers consume the events. The concept of engines is suggested to construct event-driven programs in a systematic way. There are already a number of basic engines (polling, copying, connecting with a network service, accepting connections, SOCKS), and a number of operations for engines (sequential execution, synchronization). It is possible to let Equeue cooperate with the event queue implementation of Tcl. Now, also the Shell library is included in the Equeue distribution. >How-To-Repeat: >Fix: --- port-equeue.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: # # port-equeue # port-equeue/Makefile # port-equeue/distinfo # port-equeue/pkg-descr # port-equeue/pkg-plist # port-equeue/pkg-install # port-equeue/pkg-deinstall # echo c - port-equeue mkdir -p port-equeue > /dev/null 2>&1 echo x - port-equeue/Makefile sed 's/^X//' >port-equeue/Makefile << 'END-of-port-equeue/Makefile' X# New ports collection makefile for: ocaml-equeue X# Date created: 21 July 2004 X# Whom: David JULIEN X# X# $FreeBSD$ X# X XPORTNAME= equeue XPORTVERSION= 2.0.1 XCATEGORIES= devel XMASTER_SITES= http://www.ocaml-programming.de/packages/ XPKGNAMEPREFIX= ocaml- XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= david.julien@gmail.com XCOMMENT= The Equeue library for OCaml X XBUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml \ X ocamlfind:${PORTSDIR}/devel/ocaml-findlib X XWRKSRC= ${WRKDIR}/${DISTNAME} X XUSE_GMAKE= yes X XHAS_CONFIGURE= yes X XALL_TARGET= all opt X X.if defined(WITH_EQUEUE_TCL) XBUILD_DEPENDS+= ${LOCALBASE}/include/tcl8.4:${PORTSDIR}/lang/tcl84 XCONFIGURE_ARGS+= -with-equeue-tcl -equeue-tcl-defs "-I${LOCALBASE}/include/tcl8.4" -equeue-tcl-libs "-L${LOCALBASE}/lib -ltcl84" XPLIST_SUB+= TCL="" X.else XPLIST_SUB+= TCL="@comment " X.endif X X.if !defined(NOPORTDOCS) XDOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} XEXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} X.endif X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X ${CP} -R ${WRKSRC}/doc/ ${DOCSDIR} X @${MKDIR} ${EXAMPLESDIR} X ${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR} X.endif X X.include END-of-port-equeue/Makefile echo x - port-equeue/distinfo sed 's/^X//' >port-equeue/distinfo << 'END-of-port-equeue/distinfo' XMD5 (equeue-2.0.1.tar.gz) = 2c0f9b9aa6de7bb1a3471027e3f915e8 XSIZE (equeue-2.0.1.tar.gz) = 248867 END-of-port-equeue/distinfo echo x - port-equeue/pkg-descr sed 's/^X//' >port-equeue/pkg-descr << 'END-of-port-equeue/pkg-descr' XEqueue contains a generic implementation of queues of events of any type, and a Xspecific implementation of queues of file descriptor events. X XThe generic module allows to associate an event queue with an event source, and Xone or several event handlers. The event source generates new events that are Xtriggered from the outer world. The handlers consume events, but it is allowed Xthat handlers also generate events. XThe module for file descriptor events already defines an event source; this Xsource watches registered file descriptors and produces events if a descriptor Xwants to deliver data, or if a descriptor is ready to accept data. As in the Xgeneric module, the handlers consume the events. X XThe concept of engines is suggested to construct event-driven programs in a Xsystematic way. There are already a number of basic engines (polling, copying, Xconnecting with a network service, accepting connections, SOCKS), and a number Xof operations for engines (sequential execution, synchronization). X XIt is possible to let Equeue cooperate with the event queue implementation of XTcl. Now, also the Shell library is included in the Equeue distribution. X XWWW: http://www.ocaml-programming.de/programming/equeue.html X X- David X END-of-port-equeue/pkg-descr echo x - port-equeue/pkg-plist sed 's/^X//' >port-equeue/pkg-plist << 'END-of-port-equeue/pkg-plist' Xlib/ocaml/site-lib/equeue/META Xlib/ocaml/site-lib/equeue-core/META Xlib/ocaml/site-lib/equeue-core/equeue.a Xlib/ocaml/site-lib/equeue-core/equeue.cma Xlib/ocaml/site-lib/equeue-core/equeue.cmi Xlib/ocaml/site-lib/equeue-core/equeue.cmxa Xlib/ocaml/site-lib/equeue-core/equeue.mli Xlib/ocaml/site-lib/equeue-core/unixqueue.cmi Xlib/ocaml/site-lib/equeue-core/unixqueue.mli Xlib/ocaml/site-lib/equeue-core/unixqueue_mt.cmi Xlib/ocaml/site-lib/equeue-core/unixqueue_mt.o Xlib/ocaml/site-lib/equeue-core/unixqueue_mt.cmx Xlib/ocaml/site-lib/equeue-core/unixqueue_mt.cmo Xlib/ocaml/site-lib/equeue-core/unixqueue_mt.mli Xlib/ocaml/site-lib/equeue-core/uq_engines.cmi Xlib/ocaml/site-lib/equeue-core/uq_engines.mli Xlib/ocaml/site-lib/equeue-core/uq_socks5.cmi Xlib/ocaml/site-lib/equeue-core/uq_socks5.mli Xlib/ocaml/site-lib/shell/META Xlib/ocaml/site-lib/shell/dllshell.so Xlib/ocaml/site-lib/shell/libshell.a Xlib/ocaml/site-lib/shell/shell.a Xlib/ocaml/site-lib/shell/shell.cma Xlib/ocaml/site-lib/shell/shell.cmi Xlib/ocaml/site-lib/shell/shell.cmxa Xlib/ocaml/site-lib/shell/shell.mli Xlib/ocaml/site-lib/shell/shell_mt.mli Xlib/ocaml/site-lib/shell/shell_sys.cmi Xlib/ocaml/site-lib/shell/shell_sys.mli Xlib/ocaml/site-lib/shell/shell_uq.cmi Xlib/ocaml/site-lib/shell/shell_uq.mli Xlib/ocaml/site-lib/shell/unix_exts.cmi Xlib/ocaml/site-lib/shell/unix_exts.mli X@dirrm lib/ocaml/site-lib/equeue X@dirrm lib/ocaml/site-lib/equeue-core X@dirrm lib/ocaml/site-lib/shell X@unexec ocamlfind remove equeue 2>/dev/null || true X@unexec ocamlfind remove equeue-core 2>/dev/null || true X@unexec ocamlfind remove shell 2>/dev/null || true X%%TCL%%lib/ocaml/site-lib/equeue-tcl/META X%%TCL%%lib/ocaml/site-lib/equeue-tcl/dlltclqueue.so X%%TCL%%lib/ocaml/site-lib/equeue-tcl/equeue.a X%%TCL%%lib/ocaml/site-lib/equeue-tcl/equeue.cma X%%TCL%%lib/ocaml/site-lib/equeue-tcl/equeue.cmi X%%TCL%%lib/ocaml/site-lib/equeue-tcl/equeue.cmxa X%%TCL%%lib/ocaml/site-lib/equeue-tcl/equeue.mli X%%TCL%%lib/ocaml/site-lib/equeue-tcl/libtclqueue.a X%%TCL%%lib/ocaml/site-lib/equeue-tcl/unixqueue.cmi X%%TCL%%lib/ocaml/site-lib/equeue-tcl/unixqueue.mli X%%TCL%%lib/ocaml/site-lib/equeue-tcl/uq_engines.cmi X%%TCL%%lib/ocaml/site-lib/equeue-tcl/uq_engines.mli X%%TCL%%lib/ocaml/site-lib/equeue-tcl/uq_socks5.cmi X%%TCL%%lib/ocaml/site-lib/equeue-tcl/uq_socks5.mli X%%TCL%%@dirrm lib/ocaml/site-lib/equeue-tcl X%%TCL%%@unexec ocamlfind remove equeue-tcl 2>/dev/null || true X%%PORTDOCS%%%%DOCSDIR%%/ABOUT-FINDLIB X%%PORTDOCS%%%%DOCSDIR%%/INSTALL X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/SHELL X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Equeue.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Unixqueue.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Unixqueue_mt.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.async_out_channel.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.client_socket_connector.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.const_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.copier.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.datagram_socket_provider.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.map_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.output_async_descr.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.poll_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.poll_process_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.receiver.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.seq_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.server_socket_acceptor.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.server_socket_listener.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.sync_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.watchdog.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_engines.wrapped_datagram_socket.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_socks5.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/Uq_socks5.proxy_client.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_attributes.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_class_types.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_classes.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_exceptions.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_methods.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_module_types.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_modules.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_types.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/index_values.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/style.css X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Equeue.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Unixqueue.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Unixqueue_mt.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.async_out_channel.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.client_socket_connector.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.const_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.copier.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.datagram_socket_provider.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.map_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.output_async_descr.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.poll_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.poll_process_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.receiver.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.seq_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.server_socket_acceptor.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.server_socket_listener.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.sync_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.watchdog.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_engines.wrapped_datagram_socket.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_socks5.html X%%PORTDOCS%%%%DOCSDIR%%/refman-equeue/html/type_Uq_socks5.proxy_client.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_mt.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_sys.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_uq.call_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_uq.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_uq.job_handler_engine_type.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_uq.system_handler_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Shell_uq.system_handler_engine_type.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/Unix_exts.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_attributes.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_class_types.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_classes.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_exceptions.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_methods.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_module_types.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_modules.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_types.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/index_values.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/style.css X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_mt.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_sys.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_uq.call_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_uq.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_uq.job_handler_engine_type.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_uq.system_handler_engine.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Shell_uq.system_handler_engine_type.html X%%PORTDOCS%%%%DOCSDIR%%/refman-shell/html/type_Unix_exts.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/TIMESTAMP X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c140.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c310.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c34.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c483.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c504.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c517.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/c83.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/equeue.css X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/index.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x130.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x236.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x338.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x364.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x384.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x446.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/html/x458.html X%%PORTDOCS%%%%DOCSDIR%%/users-guide/ps/equeue.ps X%%PORTDOCS%%%%DOCSDIR%%/users-guide/src/equeue.css X%%PORTDOCS%%%%DOCSDIR%%/users-guide/src/equeue.dsl X%%PORTDOCS%%%%DOCSDIR%%/users-guide/src/equeue.sgml X%%PORTDOCS%%%%DOCSDIR%%/users-guide/src/getcode.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/engines/funny_async_buffer.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/engines/http_client.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/filecopy/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/filecopy/filecopy.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/filecopy_labltk/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/filecopy_labltk/README X%%PORTDOCS%%%%EXAMPLESDIR%%/filecopy_labltk/filecopy.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/multi-threaded/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/multi-threaded/sample.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/preliminary/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/preliminary/pipe-through-conventional.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/preliminary/pipe-through-eventdriven.ml X%%PORTDOCS%%%%EXAMPLESDIR%%/simple/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/simple/a-and-b.ml X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/simple X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/preliminary X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/multi-threaded X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/filecopy_labltk X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/filecopy X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/engines X%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% X%%PORTDOCS%%@dirrm %%DOCSDIR%%/users-guide/src X%%PORTDOCS%%@dirrm %%DOCSDIR%%/users-guide/ps X%%PORTDOCS%%@dirrm %%DOCSDIR%%/users-guide/html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/users-guide X%%PORTDOCS%%@dirrm %%DOCSDIR%%/refman-shell/html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/refman-shell X%%PORTDOCS%%@dirrm %%DOCSDIR%%/refman-equeue/html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/refman-equeue X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-port-equeue/pkg-plist echo x - port-equeue/pkg-install sed 's/^X//' >port-equeue/pkg-install << 'END-of-port-equeue/pkg-install' X#!/bin/sh X Xif [ "$2" = "POST-INSTALL" ]; then X echo "${PKG_PREFIX}/lib/ocaml/site-lib/shell" >> ${PKG_PREFIX}/lib/ocaml/ld.conf X if test -d ${PKG_PREFIX}/lib/ocaml/site-lib/equeue-tcl; then X echo "${PKG_PREFIX}/lib/ocaml/site-lib/equeue-tcl" >> ${PKG_PREFIX}/lib/ocaml/ld.conf X fi Xfi END-of-port-equeue/pkg-install echo x - port-equeue/pkg-deinstall sed 's/^X//' >port-equeue/pkg-deinstall << 'END-of-port-equeue/pkg-deinstall' Xif [ "$2" = "DEINSTALL" ]; then X TMPFILE=`mktemp ${PKG_PREFIX}/lib/ocaml/ld.conf.XXX` || exit 1 X cp ${PKG_PREFIX}/lib/ocaml/ld.conf ${TMPFILE} X grep -v "shell" ${TMPFILE} | grep -v "equeue-tcl" > ${PKG_PREFIX}/lib/ocaml/ld.conf X rm -f ${TMPFILE} Xfi END-of-port-equeue/pkg-deinstall exit --- port-equeue.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 09: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 6B5F716A4CE; Thu, 22 Jul 2004 09:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BEEB43D4C; Thu, 22 Jul 2004 09:50:24 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6M9oOGb002203; Thu, 22 Jul 2004 09:50:24 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6M9oNsK002195; Thu, 22 Jul 2004 09:50:23 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 09:50:23 GMT From: Volker Stolz Message-Id: <200407220950.i6M9oNsK002195@freefall.freebsd.org> To: vs@FreeBSD.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69055: [PATCH] textproc/xml4j: update to 4.3.0 and fix 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, 22 Jul 2004 09:50:24 -0000 Synopsis: [PATCH] textproc/xml4j: update to 4.3.0 and fix port Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Thu Jul 22 09:49:08 GMT 2004 Responsible-Changed-Why: Committed, thanks! I'll track the residue: Please check if moving from xml4j to xerces is required for textproc/xt (which is a bit outdated). http://www.freebsd.org/cgi/query-pr.cgi?pr=69055 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 10:03: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 41C1E16A4CE; Thu, 22 Jul 2004 10:03:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22C5943D2F; Thu, 22 Jul 2004 10:03:46 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from freefall.freebsd.org (tobez@localhost [127.0.0.1]) i6MA3ksN002916; Thu, 22 Jul 2004 10:03:46 GMT (envelope-from tobez@freefall.freebsd.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MA3jYC002912; Thu, 22 Jul 2004 12:03:45 +0200 (CEST) (envelope-from tobez) Date: Thu, 22 Jul 2004 12:03:45 +0200 (CEST) From: Anton Berezin Message-Id: <200407221003.i6MA3jYC002912@freefall.freebsd.org> To: tobez@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org Subject: Re: ports/69421: perl5-related distfiles are in common distfiles directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 10:03:46 -0000 Synopsis: perl5-related distfiles are in common distfiles directory Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: tobez Responsible-Changed-When: Thu Jul 22 12:03:09 CEST 2004 Responsible-Changed-Why: That's a bikeshed for perl@ to decide upon. http://www.freebsd.org/cgi/query-pr.cgi?pr=69421 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 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 E66D216A4CF for ; Thu, 22 Jul 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 C47BD43D1D for ; Thu, 22 Jul 2004 10:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MAoNef009659 for ; Thu, 22 Jul 2004 10:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MAoN2Y009658; Thu, 22 Jul 2004 10:50:23 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 10:50:23 GMT Resent-Message-Id: <200407221050.i6MAoN2Y009658@freefall.freebsd.org> 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 Deniau Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0433816A4CE for ; Thu, 22 Jul 2004 10:44:26 +0000 (GMT) Received: from anduril.nousoft.org (nousoft.org [81.56.170.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EB2943D1D for ; Thu, 22 Jul 2004 10:44:25 +0000 (GMT) (envelope-from thomas@anduril.nousoft.org) Received: by anduril.nousoft.org (Postfix, from userid 1001) id 02FBC518; Thu, 22 Jul 2004 12:44:22 +0200 (CEST) Message-Id: <20040722104422.02FBC518@anduril.nousoft.org> Date: Thu, 22 Jul 2004 12:44:22 +0200 (CEST) From: Thomas Deniau To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69424: databases/php5-mysqli - quote problem making the build fail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas Deniau List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 10:50:24 -0000 >Number: 69424 >Category: ports >Synopsis: databases/php5-mysqli - quote problem making the build fail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 10:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Thomas Deniau >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD anduril.nousoft.org 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #2: Tue Jul 20 23:41:19 CEST 2004 root@anduril.nousoft.org:/usr/obj/usr/src/sys/ANDURIL i386. MySQL version 4.0.14 >Description: When building the php5 mysqli extension with a 4.0.14 server (which should fail, mysqli requires 4.1) the error message is bogus, as the following logs show : --8<--- [anduril:databases/php5-mysqli] thomas% sudo make Syntax error: ")" unexpected *** Error code 2 Stop in /usr/ports/databases/php5-mysqli. --8<--- In fact if we try a make -n we can see the syntax error : --8<-- [anduril:databases/php5-mysqli] thomas% make -n echo "===> php5-mysqli-5.0.0_1 "Doesn't work with MySQL version : 323 (Doesn't support MySQL 323 40)"." --8<-- There is clearly a quote problem here... The quotes inside the message make the shell try to interpret the parenthesis (at least I think) >How-To-Repeat: Install a 4.0.x MySQL Try to build databases/php5-mysqli >Fix: Fix the message displayed when building against 4.0. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 11: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 3304E16A4CF for ; Thu, 22 Jul 2004 11:30:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 103FF43D58 for ; Thu, 22 Jul 2004 11:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MBUKDl014816 for ; Thu, 22 Jul 2004 11:30:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MBUKcA014815; Thu, 22 Jul 2004 11:30:20 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 11:30:20 GMT Resent-Message-Id: <200407221130.i6MBUKcA014815@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sebastian Schulze Struchtrup Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 660B816A4CE for ; Thu, 22 Jul 2004 11:25:30 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCBB43D49 for ; Thu, 22 Jul 2004 11:25:30 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6MBPUxB061683 for ; Thu, 22 Jul 2004 11:25:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6MBPUON061682; Thu, 22 Jul 2004 11:25:30 GMT (envelope-from nobody) Message-Id: <200407221125.i6MBPUON061682@www.freebsd.org> Date: Thu, 22 Jul 2004 11:25:30 GMT From: Sebastian Schulze Struchtrup To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69425: Duplicated port? devel/arch vs. devel/tla X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 11:30:21 -0000 >Number: 69425 >Category: ports >Synopsis: Duplicated port? devel/arch vs. devel/tla >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 Jul 22 11:30:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sebastian Schulze Struchtrup >Release: >Organization: >Environment: general problem >Description: devel/arch and devel/tla are both ports for the gnu arch rcs. devel/arch is quite old, but devel/tla seems to be up to date. The command line interface of devel/arch is different, so it is probably desired to keep both of them in the tree. I heard of gnu arch, and installed the port, but it was the old one which was inconsistent to the documentation. Please correct me if I am mixing something up or if I misunderstood something. >How-To-Repeat: >Fix: Probably the devel/arch port should be removed or a hint should be placed into the pkg-descr (pointing out that this is an old version). The current situation is somewhat confusing. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 11:32: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 675BB16A4CE; Thu, 22 Jul 2004 11:32:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47F8E43D45; Thu, 22 Jul 2004 11:32:14 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MBWE8O015089; Thu, 22 Jul 2004 11:32:14 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MBWEq0015085; Thu, 22 Jul 2004 11:32:14 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 11:32:14 GMT From: Volker Stolz Message-Id: <200407221132.i6MBWEq0015085@freefall.freebsd.org> To: patrick_dkt@yahoo.com.hk, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69419: print/pdftk: update to 0.941 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 11:32:14 -0000 Synopsis: print/pdftk: update to 0.941 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Jul 22 11:30:44 GMT 2004 State-Changed-Why: Your version-number is begging for trouble on subsequent updates: pdftk@menelaos [13:30:21]> pkg_version -t 0.941 0.95 > That is, 0.95 will be considered older than 0.941. If you don't mind I'd like to change this to 0.94.1 on the fly. http://www.freebsd.org/cgi/query-pr.cgi?pr=69419 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 11: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 961B216A4CE for ; Thu, 22 Jul 2004 11:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AF5F43D41 for ; Thu, 22 Jul 2004 11:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MBoOWA016093 for ; Thu, 22 Jul 2004 11:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MBoOEi016091; Thu, 22 Jul 2004 11:50:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 11:50:24 GMT Resent-Message-Id: <200407221150.i6MBoOEi016091@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimura Fuyuki Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E78C616A4CE for ; Thu, 22 Jul 2004 11:40:21 +0000 (GMT) Received: from mgate12.so-net.ne.jp (mgate12.so-net.ne.jp [210.139.254.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE5A843D39 for ; Thu, 22 Jul 2004 11:40:18 +0000 (GMT) (envelope-from fuyuki@hadaly.org) Received: from mail.dg8.so-net.ne.jp (mspool12.so-net.ne.jp [210.139.248.12]) by mgate12.so-net.ne.jp with ESMTP id i6MBeHL02364 for ; Thu, 22 Jul 2004 20:40:17 +0900 (JST) Received: from ns.nigredo.org (pd33871.spprac00.ap.so-net.ne.jp [61.211.56.113]) by mail.dg8.so-net.ne.jp with ESMTP id i6MBeGE05245 for ; Thu, 22 Jul 2004 20:40:16 +0900 (JST) Message-Id: <86bri82rtw.wl%fuyuki@hadaly.org> Date: Thu, 22 Jul 2004 20:40:11 +0900 From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69426: Update port: lang/chicken to 1.56 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 11:50:24 -0000 >Number: 69426 >Category: ports >Synopsis: Update port: lang/chicken to 1.56 >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 Jul 22 11:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: FreeBSD ns.nigredo.org 5.2.1-RELEASE-p9 i386 >Description: Update to 1.56 latest snapshot to fix build on -current. http://pointyhat.freebsd.org/errorlogs/i386-5-latest/chicken-1.50.log >How-To-Repeat: >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/lang/chicken/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 16 Jul 2004 16:08:17 -0000 1.14 +++ Makefile 22 Jul 2004 10:36:28 -0000 @@ -6,7 +6,7 @@ # PORTNAME= chicken -PORTVERSION= 1.50 +PORTVERSION= 1.56 CATEGORIES= lang scheme MASTER_SITES= http://www.call-with-current-continuation.org/ @@ -18,7 +18,7 @@ INSTALLS_SHLIB= yes MAN1= chicken-config.1 chicken-profile.1 chicken-setup.1 chicken.1 \ - csc.1 csi.1 rcsi.1 + csc.1 csi.1 .if !defined(NOPORTDOCS) PORTDOCS= FAQ.html format.txt README LICENSE chicken.html chicken.pdf @@ -35,6 +35,8 @@ .if defined(WITH_PCRE) LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +.else +CONFIGURE_ENV+= ac_cv_header_pcre_h=no .endif post-patch: Index: distinfo =================================================================== RCS file: /cvs/FreeBSD/ports/lang/chicken/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- distinfo 16 Jul 2004 16:08:17 -0000 1.8 +++ distinfo 21 Jul 2004 23:31:50 -0000 @@ -1,2 +1,2 @@ -MD5 (chicken-1.50.tar.gz) = 35984df61df73f7156c1f9095cd409f3 -SIZE (chicken-1.50.tar.gz) = 3580008 +MD5 (chicken-1.56.tar.gz) = 53b81a6d354ee6fc156fea8b8d46bc95 +SIZE (chicken-1.56.tar.gz) = 3591651 Index: pkg-plist =================================================================== RCS file: /cvs/FreeBSD/ports/lang/chicken/pkg-plist,v retrieving revision 1.9 diff -u -r1.9 pkg-plist --- pkg-plist 16 Jul 2004 16:08:17 -0000 1.9 +++ pkg-plist 22 Jul 2004 10:31:42 -0000 @@ -6,15 +6,6 @@ bin/csc bin/csi bin/csi-static -bin/rcsi -bin/rcsi-static -bin/scheme-chicken -bin/scheme-chicken-hygienic -bin/scheme-ieee-1178-1990 -bin/scheme-r4rs -bin/scheme-r5rs -bin/scheme-srfi-0 -bin/scheme-srfi-7 include/c_defaults.h include/chicken-config.h include/chicken.h @@ -60,7 +51,6 @@ %%PORTDOCS%%%%EXAMPLESDIR%%/makefile %%PORTDOCS%%%%EXAMPLESDIR%%/makefile.vc %%PORTDOCS%%%%EXAMPLESDIR%%/mandelbrot.scm -%%PORTDOCS%%%%EXAMPLESDIR%%/mmcp.scm %%PORTDOCS%%%%EXAMPLESDIR%%/nqueens.prolog %%PORTDOCS%%%%EXAMPLESDIR%%/prolog.scm %%PORTDOCS%%%%EXAMPLESDIR%%/schelog-macros.scm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 11: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 1C43E16A4CE for ; Thu, 22 Jul 2004 11:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EA0543D3F for ; Thu, 22 Jul 2004 11:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MBoO1s016114 for ; Thu, 22 Jul 2004 11:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MBoODx016113; Thu, 22 Jul 2004 11:50:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 11:50:24 GMT Resent-Message-Id: <200407221150.i6MBoODx016113@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Panagiotis Astithas Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36B1416A4CF; Thu, 22 Jul 2004 11:41:14 +0000 (GMT) Received: from fly.ebs.gr (fly.ebs.gr [62.103.84.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDB7743D2F; Thu, 22 Jul 2004 11:41:11 +0000 (GMT) (envelope-from past@edgar.ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id i6MBf9Jq001091; Thu, 22 Jul 2004 14:41:09 +0300 (EEST) (envelope-from past@edgar.ebs.gr) Received: from edgar.ebs.gr (edgar.ebs.gr [10.1.1.52]) by ebs.gr (8.12.11/8.12.11) with ESMTP id i6MBf93Q082663; Thu, 22 Jul 2004 14:41:09 +0300 (EEST) (envelope-from past@edgar.ebs.gr) Received: from edgar.ebs.gr (localhost [127.0.0.1]) by edgar.ebs.gr (8.12.11/8.12.11) with ESMTP id i6MBf0w1008170; Thu, 22 Jul 2004 14:41:00 +0300 (EEST) (envelope-from past@edgar.ebs.gr) Received: (from past@localhost) by edgar.ebs.gr (8.12.11/8.12.11/Submit) id i6MBexcO008167; Thu, 22 Jul 2004 14:40:59 +0300 (EEST) (envelope-from past) Message-Id: <200407221140.i6MBexcO008167@edgar.ebs.gr> Date: Thu, 22 Jul 2004 14:40:59 +0300 (EEST) From: Panagiotis Astithas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: java@FreeBSD.org Subject: ports/69427: New port: java/eclipseme X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Panagiotis Astithas List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 11:50:25 -0000 >Number: 69427 >Category: ports >Synopsis: New port: java/eclipseme >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: Thu Jul 22 11:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Panagiotis Astithas >Release: FreeBSD 5.2-CURRENT i386 >Organization: EBS Ltd. >Environment: System: FreeBSD edgar.ebs.gr 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sat Jul 10 00:49:40 EEST 2004 root@edgar.noc.ntua.gr:/usr/obj/usr/src/sys/EDGAR i386 >Description: A new Eclipse J2ME plugin port. >How-To-Repeat: >Fix: Install the following port skeleton. Since this plugin works against the Eclipse 3.0 version, it should presumably be committed after the imminent upgrade of the java/eclipse port. --- eclipseme.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: # # eclipseme # eclipseme/Makefile # eclipseme/distinfo # eclipseme/pkg-descr # eclipseme/pkg-plist # eclipseme/pkg-message # echo c - eclipseme mkdir -p eclipseme > /dev/null 2>&1 echo x - eclipseme/Makefile sed 's/^X//' >eclipseme/Makefile << 'END-of-eclipseme/Makefile' X# New ports collection makefile for: eclipseme X# Date created: July 22, 2004 X# Whom: past@ebs.gr X# X# $FreeBSD$ X# X XPORTNAME= eclipseme XPORTVERSION= 0.4.5 XCATEGORIES= java devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XDISTNAME= ${PORTNAME}-${PORTVERSION} XDIST_SUBDIR= eclipse X XMAINTAINER= past@ebs.gr XCOMMENT= Eclipse J2ME Plugin X XRUN_DEPENDS= ${LOCALBASE}/bin/eclipse:${PORTSDIR}/java/eclipse \ X ${LOCALBASE}/bin/ktoolbar:${PORTSDIR}/java/sun-wtk X XNO_BUILD= yes XUSE_ZIP= yes XNO_WRKSUBDIR= yes XPKGMESSAGE= ${WRKDIR}/pkg-message XAPP_HOME= ${PREFIX}/eclipse/plugins/${PORTNAME}_${PORTVERSION} X X.if defined(WITH_PROGUARD) XRUN_DEPENDS+= ${LOCALBASE}/share/proguard/lib/proguard.jar:${PORTSDIR}/java/proguard X.endif X Xdo-install: X @${CP} -r ${WRKSRC}/${PORTNAME}_${PORTVERSION} ${PREFIX}/eclipse/plugins/ X Xpost-install: X @${SED} -e 's,%%PREFIX%%,${APP_HOME},' \ X < ${.CURDIR}/pkg-message > ${PKGMESSAGE} X @${CAT} ${PKGMESSAGE} X X.include END-of-eclipseme/Makefile echo x - eclipseme/distinfo sed 's/^X//' >eclipseme/distinfo << 'END-of-eclipseme/distinfo' XMD5 (eclipse/eclipseme-0.4.5.zip) = 688ce72f56312b2c04220cb7d0324c64 XSIZE (eclipse/eclipseme-0.4.5.zip) = 1368053 END-of-eclipseme/distinfo echo x - eclipseme/pkg-descr sed 's/^X//' >eclipseme/pkg-descr << 'END-of-eclipseme/pkg-descr' XThis port provides an Eclipse plugin to help develop J2ME code. XWith the help of a J2ME Wireless Toolkit, users may develop MIDP Xmidlets within the Eclipse development environment. Future version Xmay provide supprt for other profiles and configurations. X XWWW: http://eclipseme.sourceforge.net/ END-of-eclipseme/pkg-descr echo x - eclipseme/pkg-plist sed 's/^X//' >eclipseme/pkg-plist << 'END-of-eclipseme/pkg-plist' Xeclipse/plugins/eclipseme_0.4.5/CHANGES.txt Xeclipse/plugins/eclipseme_0.4.5/CREDITS.txt Xeclipse/plugins/eclipseme_0.4.5/JETTY-LICENSE.html Xeclipse/plugins/eclipseme_0.4.5/LICENSE.txt Xeclipse/plugins/eclipseme_0.4.5/README.txt Xeclipse/plugins/eclipseme_0.4.5/about.html Xeclipse/plugins/eclipseme_0.4.5/docs/addtoolkit.png Xeclipse/plugins/eclipseme_0.4.5/docs/advanced.html Xeclipse/plugins/eclipseme_0.4.5/docs/advancedPlatform1.png Xeclipse/plugins/eclipseme_0.4.5/docs/advancedPlatform2.png Xeclipse/plugins/eclipseme_0.4.5/docs/advancedProfile1.png Xeclipse/plugins/eclipseme_0.4.5/docs/advancedProfile2.png Xeclipse/plugins/eclipseme_0.4.5/docs/advancedProfile3.png Xeclipse/plugins/eclipseme_0.4.5/docs/advancedProfile4.png Xeclipse/plugins/eclipseme_0.4.5/docs/advancedProfile5.png Xeclipse/plugins/eclipseme_0.4.5/docs/convert_project.png Xeclipse/plugins/eclipseme_0.4.5/docs/cp_container.png Xeclipse/plugins/eclipseme_0.4.5/docs/createMidlet.html Xeclipse/plugins/eclipseme_0.4.5/docs/createProject.html Xeclipse/plugins/eclipseme_0.4.5/docs/crtpkg.png Xeclipse/plugins/eclipseme_0.4.5/docs/docs.css Xeclipse/plugins/eclipseme_0.4.5/docs/faq.html Xeclipse/plugins/eclipseme_0.4.5/docs/index.html Xeclipse/plugins/eclipseme_0.4.5/docs/installation.html Xeclipse/plugins/eclipseme_0.4.5/docs/jadEditor1.png Xeclipse/plugins/eclipseme_0.4.5/docs/jadEditor2.png Xeclipse/plugins/eclipseme_0.4.5/docs/jadEditor3.png Xeclipse/plugins/eclipseme_0.4.5/docs/jadEditor4.png Xeclipse/plugins/eclipseme_0.4.5/docs/jadeditor.html Xeclipse/plugins/eclipseme_0.4.5/docs/launchConfig.png Xeclipse/plugins/eclipseme_0.4.5/docs/launchConfig2.png Xeclipse/plugins/eclipseme_0.4.5/docs/menuDebug.png Xeclipse/plugins/eclipseme_0.4.5/docs/migration.html Xeclipse/plugins/eclipseme_0.4.5/docs/newProject.png Xeclipse/plugins/eclipseme_0.4.5/docs/newProjectWizard1.png Xeclipse/plugins/eclipseme_0.4.5/docs/newProjectWizard2.png Xeclipse/plugins/eclipseme_0.4.5/docs/newProjectWizard3.png Xeclipse/plugins/eclipseme_0.4.5/docs/newProjectWizard4.png Xeclipse/plugins/eclipseme_0.4.5/docs/newmidlet1.png Xeclipse/plugins/eclipseme_0.4.5/docs/newmidlet2.png Xeclipse/plugins/eclipseme_0.4.5/docs/news.html Xeclipse/plugins/eclipseme_0.4.5/docs/obf_problems.png Xeclipse/plugins/eclipseme_0.4.5/docs/packaging.html Xeclipse/plugins/eclipseme_0.4.5/docs/prefsBasic.png Xeclipse/plugins/eclipseme_0.4.5/docs/prefsObfuscation.png Xeclipse/plugins/eclipseme_0.4.5/docs/prefsOta.png Xeclipse/plugins/eclipseme_0.4.5/docs/prefs_java_debug.png Xeclipse/plugins/eclipseme_0.4.5/docs/prefs_platform.png Xeclipse/plugins/eclipseme_0.4.5/docs/prefs_platform_installed.png Xeclipse/plugins/eclipseme_0.4.5/docs/prereqs.html Xeclipse/plugins/eclipseme_0.4.5/docs/propProject.png Xeclipse/plugins/eclipseme_0.4.5/docs/ref.html Xeclipse/plugins/eclipseme_0.4.5/docs/refLaunchConfig.html Xeclipse/plugins/eclipseme_0.4.5/docs/refPrefJ2ME.html Xeclipse/plugins/eclipseme_0.4.5/docs/refPropProject.html Xeclipse/plugins/eclipseme_0.4.5/docs/run.html Xeclipse/plugins/eclipseme_0.4.5/docs/src_exclusions.png Xeclipse/plugins/eclipseme_0.4.5/docs/src_project.png Xeclipse/plugins/eclipseme_0.4.5/docs/support_wtk.html Xeclipse/plugins/eclipseme_0.4.5/docs/unspecified_platform.png Xeclipse/plugins/eclipseme_0.4.5/docs/wtk_dirs.png Xeclipse/plugins/eclipseme_0.4.5/eclipseme.jar Xeclipse/plugins/eclipseme_0.4.5/icons/compview.gif Xeclipse/plugins/eclipseme_0.4.5/icons/emulator_launch.gif Xeclipse/plugins/eclipseme_0.4.5/icons/launch_device.gif Xeclipse/plugins/eclipseme_0.4.5/icons/newmidlet_wiz.gif Xeclipse/plugins/eclipseme_0.4.5/icons/newprj_wiz.gif Xeclipse/plugins/eclipseme_0.4.5/lib/org.mortbay.http.jar Xeclipse/plugins/eclipseme_0.4.5/plugin.properties Xeclipse/plugins/eclipseme_0.4.5/plugin.xml Xeclipse/plugins/eclipseme_0.4.5/toc.xml X X@dirrm eclipse/plugins/eclipseme_0.4.5/lib X@dirrm eclipse/plugins/eclipseme_0.4.5/icons X@dirrm eclipse/plugins/eclipseme_0.4.5/docs X@dirrm eclipse/plugins/eclipseme_0.4.5 END-of-eclipseme/pkg-plist echo x - eclipseme/pkg-message sed 's/^X//' >eclipseme/pkg-message << 'END-of-eclipseme/pkg-message' X================================================================ XInitial configuration instructions for the Eclipse J2ME plugin Xare in the file: X%%PREFIX%%/doc/index.html X================================================================ X END-of-eclipseme/pkg-message exit --- eclipseme.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12:00: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 ECB5216A4E1 for ; Thu, 22 Jul 2004 12:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9723143D2D for ; Thu, 22 Jul 2004 12:00:44 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MC0iE7017211 for ; Thu, 22 Jul 2004 12:00:44 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MC0iVc017210; Thu, 22 Jul 2004 12:00:44 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 12:00:44 GMT Resent-Message-Id: <200407221200.i6MC0iVc017210@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eugene Grosbein Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E3A016A4CE; Thu, 22 Jul 2004 11:58:24 +0000 (GMT) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB05943D53; Thu, 22 Jul 2004 11:58:22 +0000 (GMT) (envelope-from eugen@www.svzserv.kemerovo.su) Received: from www.svzserv.kemerovo.su (eugen@localhost [127.0.0.1]) i6MBwJBh043898; Thu, 22 Jul 2004 19:58:19 +0800 (KRAST) (envelope-from eugen@www.svzserv.kemerovo.su) Received: (from eugen@localhost) by www.svzserv.kemerovo.su (8.12.11/8.12.11/Submit) id i6MBwJmN043897; Thu, 22 Jul 2004 19:58:19 +0800 (KRAST) (envelope-from eugen) Message-Id: <200407221158.i6MBwJmN043897@www.svzserv.kemerovo.su> Date: Thu, 22 Jul 2004 19:58:19 +0800 (KRAST) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: krion@FreeBSD.org Subject: ports/69429: Upgrade port net/AquaGatekeeper to 1.22build131 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 12:00:46 -0000 >Number: 69429 >Category: ports >Synopsis: Upgrade port net/AquaGatekeeper to 1.22build131 >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 Jul 22 12:00:44 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 4.10-STABLE i386 >Organization: Svyaz Service JSC >Environment: System: FreeBSD www.svzserv.kemerovo.su 4.10-STABLE FreeBSD 4.10-STABLE #1: Thu Jun 17 13:32:02 KRAST 2004 eu@www.svzserv.kemerovo.su:/home4/obj/home/src/sys/WWW i386 >Description: This is bugfix upgrade recommenden by the vendor. Also, this version includes the Administrator Guide in PDF format. PORTREVISION is bumped as the version number has not changed. >How-To-Repeat: N/A >Fix: diff -urN AquaGatekeeper.orig/Makefile AquaGatekeeper/Makefile --- AquaGatekeeper.orig/Makefile Thu Jul 22 19:33:27 2004 +++ AquaGatekeeper/Makefile Thu Jul 22 19:26:25 2004 @@ -7,6 +7,7 @@ PORTNAME= AquaGatekeeper PORTVERSION= 1.22 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.aqua.comptek.ru/pub/GateKeeper/ \ ftp://www.kuzbass.ru/pub/FreeBSD/ports/distfiles/ @@ -57,9 +58,9 @@ .endif .if ${ARCH} == "amd64" -DISTNAME= AquaGatekeeper122FreeBSDamd64 +DISTNAME= AquaGatekeeper122FreeBSDamd64Build131 .else -DISTNAME= AquaGatekeeper122FreeBSD +DISTNAME= AquaGatekeeper122FreeBSDBuild131 .endif .include diff -urN AquaGatekeeper.orig/distinfo.amd64 AquaGatekeeper/distinfo.amd64 --- AquaGatekeeper.orig/distinfo.amd64 Wed Apr 14 14:46:29 2004 +++ AquaGatekeeper/distinfo.amd64 Thu Jul 22 19:33:58 2004 @@ -1,2 +1,2 @@ -MD5 (AquaGatekeeper122FreeBSDamd64.tgz) = bf08f20bd78185d201bf1093648e4769 -SIZE (AquaGatekeeper122FreeBSDamd64.tgz) = 676023 +MD5 (AquaGatekeeper122FreeBSDamd64Build131.tgz) = 3ae343325e21fd49ef71c865bc5e22dc +SIZE (AquaGatekeeper122FreeBSDamd64Build131.tgz) = 2926031 diff -urN AquaGatekeeper.orig/distinfo.i386 AquaGatekeeper/distinfo.i386 --- AquaGatekeeper.orig/distinfo.i386 Wed Apr 14 14:44:59 2004 +++ AquaGatekeeper/distinfo.i386 Thu Jul 22 19:33:50 2004 @@ -1,2 +1,2 @@ -MD5 (AquaGatekeeper122FreeBSD.tgz) = 0a176b6581f8b393e75466d350ba1551 -SIZE (AquaGatekeeper122FreeBSD.tgz) = 761278 +MD5 (AquaGatekeeper122FreeBSDBuild131.tgz) = e5dede37d29462641f214a5076eb4766 +SIZE (AquaGatekeeper122FreeBSDBuild131.tgz) = 3011253 diff -urN AquaGatekeeper.orig/pkg-plist AquaGatekeeper/pkg-plist --- AquaGatekeeper.orig/pkg-plist Wed Apr 14 13:28:30 2004 +++ AquaGatekeeper/pkg-plist Thu Jul 22 19:35:55 2004 @@ -1,6 +1,7 @@ sbin/AquaGatekeeper etc/rc.d/agk.sh.sample etc/AquaGatekeeper.cfg.sample +%%PORTDOCS%%%%DOCSDIR%%/AdministratorGuide.pdf %%PORTDOCS%%%%DOCSDIR%%/AquaGatekeeper.htm %%PORTDOCS%%%%DOCSDIR%%/CommandLineOptions.htm %%PORTDOCS%%%%DOCSDIR%%/ConfigSyntax.htm @@ -9,6 +10,7 @@ %%PORTDOCS%%%%DOCSDIR%%/OperationPrinciples.htm %%PORTDOCS%%%%DOCSDIR%%/RevisionHistory.htm %%PORTDOCS%%%%DOCSDIR%%/default.css +%%PORTDOCS%%%%DOCSDIR%%/Rus/AdministratorGuideRus.pdf %%PORTDOCS%%%%DOCSDIR%%/Rus/AquaGatekeeper.htm %%PORTDOCS%%%%DOCSDIR%%/Rus/CommandLineOptions.htm %%PORTDOCS%%%%DOCSDIR%%/Rus/ConfigSyntax.htm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12:17: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 2D2B216A4CF; Thu, 22 Jul 2004 12:17:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D94443D1D; Thu, 22 Jul 2004 12:17:05 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from freefall.freebsd.org (eik@localhost [127.0.0.1]) i6MCH42d021433; Thu, 22 Jul 2004 12:17:04 GMT (envelope-from eik@freefall.freebsd.org) Received: (from eik@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MCH4gY021429; Thu, 22 Jul 2004 12:17:04 GMT (envelope-from eik) Date: Thu, 22 Jul 2004 12:17:04 GMT From: Oliver Eikemeier Message-Id: <200407221217.i6MCH4gY021429@freefall.freebsd.org> To: joshua@roughtrade.net, eik@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69095: [MAINTAINER UPDATE] New versions of net/spread & net/spread-j X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 12:17:05 -0000 Synopsis: [MAINTAINER UPDATE] New versions of net/spread & net/spread-j State-Changed-From-To: open->closed State-Changed-By: eik State-Changed-When: Thu Jul 22 14:15:52 CEST 2004 State-Changed-Why: Committed with small modifications, thanks! Also thanks to Herve Quiroz for the review. http://www.freebsd.org/cgi/query-pr.cgi?pr=69095 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12:23: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 5519D16A4E6; Thu, 22 Jul 2004 12:23:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA42643D39; Thu, 22 Jul 2004 12:23:33 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MCNXrr021667; Thu, 22 Jul 2004 12:23:33 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MCNXkL021663; Thu, 22 Jul 2004 12:23:33 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 12:23:33 GMT From: Volker Stolz Message-Id: <200407221223.i6MCNXkL021663@freefall.freebsd.org> To: pdseniura@techie.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68872: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 12:23:34 -0000 Synopsis: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 12:23:18 GMT 2004 State-Changed-Why: Closed on maintainer's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=68872 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12: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 8559016A4DD for ; Thu, 22 Jul 2004 12:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0690143D5A for ; Thu, 22 Jul 2004 12:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MCeMeB022612 for ; Thu, 22 Jul 2004 12:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MCeMs8022611; Thu, 22 Jul 2004 12:40:22 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 12:40:22 GMT Resent-Message-Id: <200407221240.i6MCeMs8022611@freefall.freebsd.org> 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 140DB16A4CE for ; Thu, 22 Jul 2004 12:35:37 +0000 (GMT) Received: from srv1.galle.com.br (srv1.galle.com.br [200.246.25.2]) by mx1.FreeBSD.org (Postfix) with SMTP id C6B1F43D39 for ; Thu, 22 Jul 2004 12:35:35 +0000 (GMT) (envelope-from root@srv1.galle.com.br) Received: (qmail 56767 invoked by uid 0); 22 Jul 2004 09:35:33 -0300 Message-Id: <20040722123533.56766.qmail@srv1.galle.com.br> Date: 22 Jul 2004 09:35:33 -0300 From: Renato Botelho To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: chris@e-easy.com.au Subject: ports/69430: [PATCH] databases/firebird: patch to fix broken 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: Thu, 22 Jul 2004 12:40:34 -0000 >Number: 69430 >Category: ports >Synopsis: [PATCH] databases/firebird: patch to fix broken build >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 12:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Renato Botelho >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD srv1.galle.com.br 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #27: Wed May 26 10:21:14 BRT 2004 >Description: - Patch to fix an error on generation of fcns.h, it´s broke build. - BUMP PORTREVISION Port maintainer (chris@e-easy.com.au) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- firebird-1.5.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/firebird.orig/Makefile /usr/ports/databases/firebird/Makefile --- /usr/ports/databases/firebird.orig/Makefile Thu Jul 22 05:30:46 2004 +++ /usr/ports/databases/firebird/Makefile Thu Jul 22 09:29:51 2004 @@ -7,6 +7,7 @@ PORTNAME= firebird PORTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=firebird diff -ruN --exclude=CVS /usr/ports/databases/firebird.orig/files/patch-makelist /usr/ports/databases/firebird/files/patch-makelist --- /usr/ports/databases/firebird.orig/files/patch-makelist Wed Dec 31 21:00:00 1969 +++ /usr/ports/databases/firebird/files/patch-makelist Thu Jul 22 09:19:02 2004 @@ -0,0 +1,11 @@ +--- src/extern/editline/makelist.orig Sun May 23 15:24:25 2004 ++++ src/extern/editline/makelist Thu Jul 22 09:17:53 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"); --- firebird-1.5.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12:44: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 887D516A4CE; Thu, 22 Jul 2004 12:44:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68A8F43D58; Thu, 22 Jul 2004 12:44:00 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MCi0C9022943; Thu, 22 Jul 2004 12:44:00 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MCi0S2022939; Thu, 22 Jul 2004 12:44:00 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 12:44:00 GMT From: Volker Stolz Message-Id: <200407221244.i6MCi0S2022939@freefall.freebsd.org> To: yssu@CCCA.Net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/66266: ports/net/yptransitd: support FreeBSD NIS Map (master.passwd.*) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 12:44:00 -0000 Synopsis: ports/net/yptransitd: support FreeBSD NIS Map (master.passwd.*) State-Changed-From-To: feedback->open State-Changed-By: vs State-Changed-When: Thu Jul 22 12:43:25 GMT 2004 State-Changed-Why: Maintainer timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=66266 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12:51: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 961A116A4CE; Thu, 22 Jul 2004 12:51:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7858D43D41; Thu, 22 Jul 2004 12:51:52 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MCpqEg023639; Thu, 22 Jul 2004 12:51:52 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MCpqeK023635; Thu, 22 Jul 2004 12:51:52 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 12:51:52 GMT From: Volker Stolz Message-Id: <200407221251.i6MCpqeK023635@freefall.freebsd.org> To: udo.schweigert@siemens.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 12:51:52 -0000 Synopsis: maintainer-update of security/nessus-* State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Jul 22 12:51:22 GMT 2004 State-Changed-Why: Does this update address the issue in PR ports/65935 "security/nessus: error in generated .nessusrc for server certificate path"? http://www.freebsd.org/cgi/query-pr.cgi?pr=69333 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 12:56: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 2FE0516A4CF; Thu, 22 Jul 2004 12:56:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FDBC43D45; Thu, 22 Jul 2004 12:56:04 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6MCu3BQ024064; Thu, 22 Jul 2004 12:56:03 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MCu3XN024060; Thu, 22 Jul 2004 12:56:03 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 12:56:03 GMT From: Kirill Ponomarew Message-Id: <200407221256.i6MCu3XN024060@freefall.freebsd.org> To: fuyuki@hadaly.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69426: Update port: lang/chicken to 1.56 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 12:56:04 -0000 Synopsis: Update port: lang/chicken to 1.56 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 12:55:59 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69426 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:00: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 4892016A4CE for ; Thu, 22 Jul 2004 13:00:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C9543D58 for ; Thu, 22 Jul 2004 13:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MD0dO0024199 for ; Thu, 22 Jul 2004 13:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MD0dEI024194; Thu, 22 Jul 2004 13:00:39 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 13:00:39 GMT Resent-Message-Id: <200407221300.i6MD0dEI024194@freefall.freebsd.org> 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 BCC5216A4CF for ; Thu, 22 Jul 2004 12:56:28 +0000 (GMT) Received: from mx5.kent.ac.uk (mx5.ukc.ac.uk [129.12.21.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id B119243D1D for ; Thu, 22 Jul 2004 12:56:27 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by mx5.kent.ac.uk with esmtp (Exim 4.24) id 1Bnd7S-0006M6-Jx; Thu, 22 Jul 2004 13:56:18 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1Bnd7S-0008TJ-Ip; Thu, 22 Jul 2004 13:56:18 +0100 Message-Id: Date: Thu, 22 Jul 2004 13:56:18 +0100 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/69431: [MAINTAINER] news/rawdog: update to 1.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: Thu, 22 Jul 2004 13:00:40 -0000 >Number: 69431 >Category: ports >Synopsis: [MAINTAINER] news/rawdog: update to 1.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 13:00:39 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 1.13 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- rawdog-1.13.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/news/rawdog/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 25 May 2004 07:24:21 -0000 1.10 +++ Makefile 22 Jul 2004 12:55:09 -0000 @@ -6,7 +6,7 @@ # PORTNAME= rawdog -PORTVERSION= 1.12 +PORTVERSION= 1.13 CATEGORIES= news python MASTER_SITES= http://offog.org/files/ Index: distinfo =================================================================== RCS file: /u1/freebsd/cvs/ports/news/rawdog/distinfo,v retrieving revision 1.11 diff -u -r1.11 distinfo --- distinfo 25 May 2004 07:24:21 -0000 1.11 +++ distinfo 22 Jul 2004 12:55:26 -0000 @@ -1,2 +1,2 @@ -MD5 (rawdog-1.12.tar.gz) = 364ea2e4c6db60d73965984885c7b8e7 -SIZE (rawdog-1.12.tar.gz) = 49363 +MD5 (rawdog-1.13.tar.gz) = 0c7d64292dd0b4cb73edb75234571279 +SIZE (rawdog-1.13.tar.gz) = 49415 --- rawdog-1.13.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:00: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 675CE16A4E6 for ; Thu, 22 Jul 2004 13:00:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DFF743D1D for ; Thu, 22 Jul 2004 13:00:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MD0fVd024247 for ; Thu, 22 Jul 2004 13:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MD0fj1024246; Thu, 22 Jul 2004 13:00:41 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 13:00:41 GMT Resent-Message-Id: <200407221300.i6MD0fj1024246@freefall.freebsd.org> 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 4914816A4CF for ; Thu, 22 Jul 2004 12:58:21 +0000 (GMT) Received: from mx5.kent.ac.uk (mx5.ukc.ac.uk [129.12.21.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 105A843D5C for ; Thu, 22 Jul 2004 12:58:21 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by mx5.kent.ac.uk with esmtp (Exim 4.24) id 1Bnd9L-0006R6-G9; Thu, 22 Jul 2004 13:58:15 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1Bnd9L-0008ft-FA; Thu, 22 Jul 2004 13:58:15 +0100 Message-Id: Date: Thu, 22 Jul 2004 13:58:15 +0100 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/69433: [MAINTAINER] devel/libstatgrab: Update master sites X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 13:00:43 -0000 >Number: 69433 >Category: ports >Synopsis: [MAINTAINER] devel/libstatgrab: Update master sites >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 13:00:41 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 master sites - mirror.ac.uk -> mirrorservice.org Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- libstatgrab-0.10.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/libstatgrab/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- Makefile 9 Jul 2004 17:42:16 -0000 1.16 +++ Makefile 22 Jul 2004 12:57:38 -0000 @@ -8,8 +8,8 @@ PORTNAME= libstatgrab PORTVERSION= 0.10 CATEGORIES= devel -MASTER_SITES= ftp://ftp.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ - http://www.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ +MASTER_SITES= ftp://ftp.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ + http://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ ftp://ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ http://www.i-scream.org/pub/i-scream/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTNAME} --- libstatgrab-0.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:00: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 5CC5116A4E4 for ; Thu, 22 Jul 2004 13:00:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0248243D5C for ; Thu, 22 Jul 2004 13:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MD0eXB024233 for ; Thu, 22 Jul 2004 13:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MD0e3u024232; Thu, 22 Jul 2004 13:00:40 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 13:00:40 GMT Resent-Message-Id: <200407221300.i6MD0e3u024232@freefall.freebsd.org> 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 EE99D16A4CE for ; Thu, 22 Jul 2004 12:57:32 +0000 (GMT) Received: from mx5.kent.ac.uk (mx5.ukc.ac.uk [129.12.21.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9DA243D58 for ; Thu, 22 Jul 2004 12:57:32 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by mx5.kent.ac.uk with esmtp (Exim 4.24) id 1Bnd8X-0006PH-WD; Thu, 22 Jul 2004 13:57:26 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1Bnd8X-0008Zb-V2; Thu, 22 Jul 2004 13:57:25 +0100 Message-Id: Date: Thu, 22 Jul 2004 13:57:25 +0100 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/69432: [MAINTAINER] devel/libukcprog: Update master sites X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 13:00:43 -0000 >Number: 69432 >Category: ports >Synopsis: [MAINTAINER] devel/libukcprog: Update master sites >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 13:00:40 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 master sites - mirror.ac.uk -> mirrorservice.org Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- libukcprog-1.0.2_3.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/libukcprog/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 9 Jul 2004 17:42:16 -0000 1.9 +++ Makefile 22 Jul 2004 12:56:40 -0000 @@ -9,8 +9,8 @@ PORTVERSION= 1.0.2 PORTREVISION= 3 CATEGORIES= devel -MASTER_SITES= ftp://ftp.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ - http://www.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ +MASTER_SITES= ftp://ftp.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ + http://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ ftp://ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ http://www.i-scream.org/pub/i-scream/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTNAME} --- libukcprog-1.0.2_3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:20: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 6300316A4CE for ; Thu, 22 Jul 2004 13:20:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5600243D55 for ; Thu, 22 Jul 2004 13:20:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MDK85n028521 for ; Thu, 22 Jul 2004 13:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MDK8Bx028486; Thu, 22 Jul 2004 13:20:08 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 13:20:08 GMT Resent-Message-Id: <200407221320.i6MDK8Bx028486@freefall.freebsd.org> 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 J. Laszlo" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB69916A4CF for ; Thu, 22 Jul 2004 13:12:41 +0000 (GMT) Received: from mail.vonostingroup.com (ip209-154.digitalrealm.net [216.144.209.154]) by mx1.FreeBSD.org (Postfix) with SMTP id DB4F843D53 for ; Thu, 22 Jul 2004 13:12:40 +0000 (GMT) (envelope-from laszlof@ritamari.vonostingroup.com) Received: (qmail 62813 invoked by uid 89); 22 Jul 2004 13:13:50 -0000 Received: from unknown (HELO ritamari.vonostingroup.com) (127.0.0.1) by localhost with SMTP; 22 Jul 2004 13:13:50 -0000 Received: (from laszlof@localhost)i6MDDnPY062811; Thu, 22 Jul 2004 09:13:49 -0400 (EDT) (envelope-from laszlof) Message-Id: <200407221313.i6MDDnPY062811@ritamari.vonostingroup.com> Date: Thu, 22 Jul 2004 09:13:49 -0400 (EDT) From: "Frank J. Laszlo" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: vs@FreeBSD.org Subject: ports/69434: Added vendor patches to readline port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Frank J. Laszlo" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 13:20:08 -0000 >Number: 69434 >Category: ports >Synopsis: Added vendor patches to readline port >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 Jul 22 13:20:07 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Frank J. Laszlo >Release: FreeBSD 4.9-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD ritamari.vonostingroup.com 4.9-RELEASE-p3 FreeBSD 4.9-RELEASE-p3 #2: Mon Mar 8 18:14:29 EST 2004 root@ritamari.vonostingroup.com:/usr/obj/usr/src/sys/RITAMARI i386 >Description: This patch will add vendor patches 002-005 from https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=98229 per PR ports/69352 and ports/61297 >How-To-Repeat: See PR ports/61297 >Fix: --- readline.patch begins here --- diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Sun Dec 28 05:32:48 2003 +++ readline/Makefile Thu Jul 22 08:58:27 2004 @@ -7,6 +7,7 @@ PORTNAME= readline PORTVERSION= 4.3 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ diff -rNU3 readline.old/files/patch-aa readline/files/patch-aa --- readline.old/files/patch-aa Wed Dec 31 19:00:00 1969 +++ readline/files/patch-aa Tue Jul 20 13:28:09 2004 @@ -0,0 +1,16 @@ +*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 +--- bind.c Wed Jul 31 09:11:18 2002 +*************** +*** 312,316 **** + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function /* && k.type == ISFUNC */) + { + map[ANYOTHERKEY] = k; +--- 312,316 ---- + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) + { + map[ANYOTHERKEY] = k; + diff -rNU3 readline.old/files/patch-ab readline/files/patch-ab --- readline.old/files/patch-ab Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ab Thu Jul 22 08:57:27 2004 @@ -0,0 +1,10 @@ +*** readline-4.3/readline.c Wed Mar 13 17:10:46 2002 +--- readline.c Tue Jul 30 17:46:44 2002 +*************** +*** 685,688 **** +--- 685,689 ---- + #if defined (VI_MODE) + if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap && ++ key != ANYOTHERKEY && + _rl_vi_textmod_command (key)) + _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign); diff -rNU3 readline.old/files/patch-ac readline/files/patch-ac --- readline.old/files/patch-ac Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ac Thu Jul 22 08:57:27 2004 @@ -0,0 +1,68 @@ +*** readline-4.3/mbutil.c Tue Jun 4 11:54:29 2002 +--- mbutil.c Mon Aug 5 11:20:39 2002 +*************** +*** 206,210 **** + { + /* shorted to compose multibyte char */ +! memset (ps, 0, sizeof(mbstate_t)); + return -2; + } +--- 206,211 ---- + { + /* shorted to compose multibyte char */ +! if (ps) +! memset (ps, 0, sizeof(mbstate_t)); + return -2; + } +*************** +*** 213,217 **** + /* invalid to compose multibyte char */ + /* initialize the conversion state */ +! memset (ps, 0, sizeof(mbstate_t)); + return -1; + } +--- 214,219 ---- + /* invalid to compose multibyte char */ + /* initialize the conversion state */ +! if (ps) +! memset (ps, 0, sizeof(mbstate_t)); + return -1; + } +*************** +*** 226,232 **** + int + _rl_compare_chars (buf1, pos1, ps1, buf2, pos2, ps2) +! char *buf1, *buf2; +! mbstate_t *ps1, *ps2; +! int pos1, pos2; + { + int i, w1, w2; +--- 228,237 ---- + int + _rl_compare_chars (buf1, pos1, ps1, buf2, pos2, ps2) +! char *buf1; +! int pos1; +! mbstate_t *ps1; +! char *buf2; +! int pos2; +! mbstate_t *ps2; + { + int i, w1, w2; +*************** +*** 277,282 **** + /* clear the state of the byte sequence, because + in this case effect of mbstate is undefined */ +! memset (ps, 0, sizeof (mbstate_t)); + } + else + pos += tmp; +--- 282,290 ---- + /* clear the state of the byte sequence, because + in this case effect of mbstate is undefined */ +! if (ps) +! memset (ps, 0, sizeof (mbstate_t)); + } ++ else if (tmp == 0) ++ pos++; + else + pos += tmp; diff -rNU3 readline.old/files/patch-ad readline/files/patch-ad --- readline.old/files/patch-ad Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ad Thu Jul 22 08:57:27 2004 @@ -0,0 +1,90 @@ +*** readline-4.3/display.c Tue Jun 4 10:54:47 2002 +--- display.c Fri Sep 13 16:22:57 2002 +*************** +*** 71,75 **** + + #if defined (HANDLE_MULTIBYTE) +! static int _rl_col_width PARAMS((char *, int, int)); + static int *_rl_wrapped_line; + #else +--- 71,75 ---- + + #if defined (HANDLE_MULTIBYTE) +! static int _rl_col_width PARAMS((const char *, int, int)); + static int *_rl_wrapped_line; + #else +*************** +*** 1349,1355 **** + _rl_output_some_chars (nfd + lendiff, temp - lendiff); + #if 0 +- _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff) - col_lendiff; +- #else + _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); + #endif + } +--- 1349,1355 ---- + _rl_output_some_chars (nfd + lendiff, temp - lendiff); + #if 0 + _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); ++ #else ++ _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff); + #endif + } +*************** +*** 1511,1516 **** + /* If we have multibyte characters, NEW is indexed by the buffer point in + a multibyte string, but _rl_last_c_pos is the display position. In +! this case, NEW's display position is not obvious. */ +! if ((MB_CUR_MAX == 1 || rl_byte_oriented ) && _rl_last_c_pos == new) return; + #else + if (_rl_last_c_pos == new) return; +--- 1511,1523 ---- + /* If we have multibyte characters, NEW is indexed by the buffer point in + a multibyte string, but _rl_last_c_pos is the display position. In +! this case, NEW's display position is not obvious and must be +! calculated. */ +! if (MB_CUR_MAX == 1 || rl_byte_oriented) +! { +! if (_rl_last_c_pos == new) +! return; +! } +! else if (_rl_last_c_pos == _rl_col_width (data, 0, new)) +! return; + #else + if (_rl_last_c_pos == new) return; +*************** +*** 1595,1603 **** + { + if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) +! { +! tputs (_rl_term_cr, 1, _rl_output_character_function); +! for (i = 0; i < new; i++) +! putc (data[i], rl_outstream); +! } + else + _rl_backspace (_rl_last_c_pos - new); +--- 1602,1606 ---- + { + if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) +! _rl_backspace (_rl_last_c_pos - _rl_col_width (data, 0, new)); + else + _rl_backspace (_rl_last_c_pos - new); +*************** +*** 2118,2122 **** + static int + _rl_col_width (str, start, end) +! char *str; + int start, end; + { +--- 2121,2125 ---- + static int + _rl_col_width (str, start, end) +! const char *str; + int start, end; + { +*************** +*** 2194,2196 **** + } + #endif /* HANDLE_MULTIBYTE */ +- +--- 2197,2198 ---- diff -rNU3 readline.old/files/patch-ae readline/files/patch-ae --- readline.old/files/patch-ae Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ae Thu Jul 22 08:57:27 2004 @@ -0,0 +1,31 @@ +*** readline-4.3/vi_mode.c Thu May 23 13:27:58 2002 +--- vi_mode.c Tue Feb 4 15:11:07 2003 +*************** +*** 681,685 **** + { + wchar_t wc; +! char mb[MB_LEN_MAX]; + mbstate_t ps; + +--- 681,686 ---- + { + wchar_t wc; +! char mb[MB_LEN_MAX+1]; +! int mblen; + mbstate_t ps; + +*************** +*** 704,708 **** + if (wc) + { +! wctomb (mb, wc); + rl_begin_undo_group (); + rl_delete (1, 0); +--- 705,711 ---- + if (wc) + { +! mblen = wctomb (mb, wc); +! if (mblen >= 0) +! mb[mblen] = '\0'; + rl_begin_undo_group (); + rl_delete (1, 0); --- readline.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:20: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 3795816A4CE for ; Thu, 22 Jul 2004 13:20:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BAEC43D1D for ; Thu, 22 Jul 2004 13:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MDKBmF028543 for ; Thu, 22 Jul 2004 13:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MDKBj9028542; Thu, 22 Jul 2004 13:20:11 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 13:20:11 GMT Message-Id: <200407221320.i6MDKBj9028542@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Josh Elsasser Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Josh Elsasser List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 13:20:12 -0000 The following reply was made to PR ports/69389; it has been noted by GNATS. From: Josh Elsasser To: Kirill Ponomarew Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] Date: Thu, 22 Jul 2004 09:14:11 -0400 Why is the shared library version being bumped? I didn't see anything to indicate an ABI change in this version. -jre From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:31:10 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 81D8416A4CE; Thu, 22 Jul 2004 13:31:10 +0000 (GMT) Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4AC143D2F; Thu, 22 Jul 2004 13:31:09 +0000 (GMT) (envelope-from udo.schweigert@siemens.com) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by thoth.sbs.de (8.12.6/8.12.6) with ESMTP id i6MDV81j021290; Thu, 22 Jul 2004 15:31:08 +0200 Received: from mars.cert.siemens.com (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.7/8.11.7) with ESMTP id i6MDV8G28345; Thu, 22 Jul 2004 15:31:08 +0200 (MEST) Received: from alaska.cert.siemens.com (reims.mchp.siemens.de [139.23.202.134]) mail/cert.mc.pre,v 1.61 2004/06/20 16:46:46 mailadm Exp $) with ESMTP id i6MDV8fQ004809; Thu, 22 Jul 2004 15:31:08 +0200 (CEST) Received: from alaska.cert.siemens.com (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.17 2004/05/08 20:26:28 ust Exp $) with ESMTP id i6MDV77u068057; Thu, 22 Jul 2004 15:31:07 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.com) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id i6MDV746036020; Thu, 22 Jul 2004 15:31:07 +0200 (CEST) (envelope-from ust) Date: Thu, 22 Jul 2004 15:31:07 +0200 From: Udo Schweigert To: Volker Stolz Message-ID: <20040722133107.GA42438@alaska.cert.siemens.com> Mail-Followup-To: Volker Stolz , freebsd-ports-bugs@FreeBSD.org References: <200407221251.i6MCpqeK023635@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200407221251.i6MCpqeK023635@freefall.freebsd.org> X-Operating-System: FreeBSD 4.10-RELEASE-p2 User-Agent: Mutt/1.5.6i cc: udo.schweigert@siemens.com cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 13:31:10 -0000 On Thu, Jul 22, 2004 at 12:51:52 +0000, Volker Stolz wrote: > Synopsis: maintainer-update of security/nessus-* > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Thu Jul 22 12:51:22 GMT 2004 > State-Changed-Why: > Does this update address the issue in PR ports/65935 > "security/nessus: error in generated .nessusrc for server certificate path"? Oops, that PR should have been closed, as that behavior resulted from a leftover of a previous installation and also (even with a leftover) wasn't reproducable here. I'm sure I sent some emails on this (perhaps also to gnats) but I can't find them now, so please close the PR. -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 München / Germany | email : Udo.Schweigert@siemens.com From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:36: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 C13BA16A4CE; Thu, 22 Jul 2004 13:36:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3A0E43D3F; Thu, 22 Jul 2004 13:36:16 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6MDaGgV029996; Thu, 22 Jul 2004 13:36:16 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MDaGpb029992; Thu, 22 Jul 2004 13:36:16 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 13:36:16 GMT From: Kirill Ponomarew Message-Id: <200407221336.i6MDaGpb029992@freefall.freebsd.org> To: eugen@grosbein.pp.ru, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69429: Upgrade port net/AquaGatekeeper to 1.22build131 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 13:36:16 -0000 Synopsis: Upgrade port net/AquaGatekeeper to 1.22build131 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 13:36:11 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69429 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:38: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 6E28716A4CE; Thu, 22 Jul 2004 13:38:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F54E43D31; Thu, 22 Jul 2004 13:38:08 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6MDc8F6030196; Thu, 22 Jul 2004 13:38:08 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MDc89G030192; Thu, 22 Jul 2004 13:38:08 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 13:38:08 GMT From: Kirill Ponomarew Message-Id: <200407221338.i6MDc89G030192@freefall.freebsd.org> To: tim@bishnet.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69431: [MAINTAINER] news/rawdog: update to 1.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: Thu, 22 Jul 2004 13:38:08 -0000 Synopsis: [MAINTAINER] news/rawdog: update to 1.13 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 13:38:03 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69431 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:39: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 8E46116A4D1; Thu, 22 Jul 2004 13:39:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F9EB43D31; Thu, 22 Jul 2004 13:39:06 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6MDd6bc030352; Thu, 22 Jul 2004 13:39:06 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MDd6KM030348; Thu, 22 Jul 2004 13:39:06 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 13:39:06 GMT From: Kirill Ponomarew Message-Id: <200407221339.i6MDd6KM030348@freefall.freebsd.org> To: tim@bishnet.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69432: [MAINTAINER] devel/libukcprog: Update master sites X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 13:39:06 -0000 Synopsis: [MAINTAINER] devel/libukcprog: Update master sites State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 13:39:01 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69432 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 13:39: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 BD12316A4CF; Thu, 22 Jul 2004 13:39:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C0B943D31; Thu, 22 Jul 2004 13:39:51 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6MDdpH0030461; Thu, 22 Jul 2004 13:39:51 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MDdpee030457; Thu, 22 Jul 2004 13:39:51 GMT (envelope-from krion) Date: Thu, 22 Jul 2004 13:39:51 GMT From: Kirill Ponomarew Message-Id: <200407221339.i6MDdpee030457@freefall.freebsd.org> To: tim@bishnet.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69433: [MAINTAINER] devel/libstatgrab: Update master sites X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 13:39:51 -0000 Synopsis: [MAINTAINER] devel/libstatgrab: Update master sites State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Thu Jul 22 13:39:46 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69433 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14: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 692BD16A4CE; Thu, 22 Jul 2004 14:15:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D59643D48; Thu, 22 Jul 2004 14:15:25 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) i6MEFPSY036196; Thu, 22 Jul 2004 14:15:25 GMT (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEFPXU036192; Thu, 22 Jul 2004 14:15:25 GMT (envelope-from nork) Date: Thu, 22 Jul 2004 14:15:25 GMT From: Norikatsu Shigemura Message-Id: <200407221415.i6MEFPXU036192@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/69427: New port: java/eclipseme X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:15:25 -0000 Synopsis: New port: java/eclipseme Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: nork Responsible-Changed-When: Thu Jul 22 14:15:08 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69427 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14: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 829AF16A4CF for ; Thu, 22 Jul 2004 14:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7697F43D6D for ; Thu, 22 Jul 2004 14:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MEKKCg036331 for ; Thu, 22 Jul 2004 14:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEKKBq036330; Thu, 22 Jul 2004 14:20:20 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 14:20:20 GMT Resent-Message-Id: <200407221420.i6MEKKBq036330@freefall.freebsd.org> 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 568D516A4CE for ; Thu, 22 Jul 2004 14:16:35 +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 080E443D46 for ; Thu, 22 Jul 2004 14:16:35 +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 20289106C48 for ; Thu, 22 Jul 2004 22:16:31 +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 41363-10 for ; Thu, 22 Jul 2004 22:16:30 +0800 (CST) Received: by FreeBSD.csie.NCTU.edu.tw (Postfix, from userid 1038) id 94AE8106C47; Thu, 22 Jul 2004 22:16:30 +0800 (CST) Message-Id: <20040722141630.94AE8106C47@FreeBSD.csie.NCTU.edu.tw> Date: Thu, 22 Jul 2004 22:16:30 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69436: [NEW PORT] devel/p5-OOTools: A Perl module collection to easily create constructors methods X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:20:20 -0000 >Number: 69436 >Category: ports >Synopsis: [NEW PORT] devel/p5-OOTools: A Perl module collection to easily create constructors methods >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 Jul 22 14:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-STABLE i386 >Organization: FreeBSD in Taiwan >Environment: System: FreeBSD FreeBSD.csie.NCTU.edu.tw 4.10-STABLE FreeBSD 4.10-STABLE #0: Sat May 29 08:18:00 CST 2004 >Description: - required by Template-Magic, successor of Text-MagicTemplate. - description from pkg-descr: OOTools is a collection of pragmas to easily create constructors methods and lvalue accessor methods at compile time. OOTools distribution includes: Class::constr Pragma to implement constructor methods Class::props Pragma to implement lvalue accessors with options Class::group Pragma to implement group of properties accessors with options Object::props Pragma to implement lvalue accessors with options Object::group Pragma to implement group of properties accessors with options WWW: http://search.cpan.org/~domizio/OOTools/ Author: Domizio Demichelis Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-OOTools-1.75.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-OOTools # p5-OOTools/Makefile # p5-OOTools/distinfo # p5-OOTools/pkg-descr # p5-OOTools/pkg-plist # echo c - p5-OOTools mkdir -p p5-OOTools > /dev/null 2>&1 echo x - p5-OOTools/Makefile sed 's/^X//' >p5-OOTools/Makefile << 'END-of-p5-OOTools/Makefile' X# New ports collection makefile for: OOTools X# Date created: July 22 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= OOTools XPORTVERSION= 1.75 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= ../../authors/id/D/DO/DOMIZIO XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= A Perl module collection to easily create constructors methods X XPERL_CONFIGURE= YES X XMAN3= Class::constr.3 \ X Class::groups.3 \ X Class::props.3 \ X Object::groups.3 \ X Object::props.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.1 or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-OOTools/Makefile echo x - p5-OOTools/distinfo sed 's/^X//' >p5-OOTools/distinfo << 'END-of-p5-OOTools/distinfo' XMD5 (OOTools-1.75.tar.gz) = bc8bf4a42e6bd8d78ee71e759955cf96 XSIZE (OOTools-1.75.tar.gz) = 12540 END-of-p5-OOTools/distinfo echo x - p5-OOTools/pkg-descr sed 's/^X//' >p5-OOTools/pkg-descr << 'END-of-p5-OOTools/pkg-descr' XOOTools is a collection of pragmas to easily create constructors methods and Xlvalue accessor methods at compile time. OOTools distribution includes: X XClass::constr Pragma to implement constructor methods XClass::props Pragma to implement lvalue accessors with options XClass::group Pragma to implement group of properties accessors with options XObject::props Pragma to implement lvalue accessors with options XObject::group Pragma to implement group of properties accessors with options X XWWW: http://search.cpan.org/~domizio/OOTools/ X XAuthor: Domizio Demichelis END-of-p5-OOTools/pkg-descr echo x - p5-OOTools/pkg-plist sed 's/^X//' >p5-OOTools/pkg-plist << 'END-of-p5-OOTools/pkg-plist' X%%SITE_PERL%%/Class/props.pm X%%SITE_PERL%%/Class/constr.pm X%%SITE_PERL%%/Class/groups.pm X%%SITE_PERL%%/Object/groups.pm X%%SITE_PERL%%/Object/props.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/OOTools/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/OOTools X@unexec rmdir %D/%%SITE_PERL%%/Class 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/Object 2>/dev/null || true END-of-p5-OOTools/pkg-plist exit --- p5-OOTools-1.75.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:29: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 E786916A4CE; Thu, 22 Jul 2004 14:29:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA8DD43D41; Thu, 22 Jul 2004 14:29:38 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) i6METc5l036617; Thu, 22 Jul 2004 14:29:38 GMT (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6METcCN036613; Thu, 22 Jul 2004 14:29:38 GMT (envelope-from vanilla) Date: Thu, 22 Jul 2004 14:29:38 GMT From: "Vanilla I. Shu" Message-Id: <200407221429.i6METcCN036613@freefall.freebsd.org> To: clsung@tiger2.net, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69436: [NEW PORT] devel/p5-OOTools: A Perl module collection to easily create constructors methods X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:29:39 -0000 Synopsis: [NEW PORT] devel/p5-OOTools: A Perl module collection to easily create constructors methods State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Thu Jul 22 14:29:26 GMT 2004 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69436 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:30: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 544C916A4CE; Thu, 22 Jul 2004 14:30:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 379B643D66; Thu, 22 Jul 2004 14:30:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MEU7bO036651; Thu, 22 Jul 2004 14:30:07 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEU7tO036647; Thu, 22 Jul 2004 14:30:07 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 14:30:07 GMT From: Volker Stolz Message-Id: <200407221430.i6MEU7tO036647@freefall.freebsd.org> To: sellis@telus.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/65935: security/nessus: error in generated .nessusrc for server certificate 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: Thu, 22 Jul 2004 14:30:16 -0000 Synopsis: security/nessus: error in generated .nessusrc for server certificate path State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 14:29:21 GMT 2004 State-Changed-Why: Maintainer believes that behavior resulted from a leftover of a previous installation and also (even with a leftover) wasn't reproducable here. http://www.freebsd.org/cgi/query-pr.cgi?pr=65935 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 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 8366D16A4D1 for ; Thu, 22 Jul 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 781D243D41 for ; Thu, 22 Jul 2004 14:30:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MEUUmU036762 for ; Thu, 22 Jul 2004 14:30:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEUUSw036760; Thu, 22 Jul 2004 14:30:30 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 14:30:30 GMT Message-Id: <200407221430.i6MEUUSw036760@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Frank Laszlo Subject: Re: ports/69434: Added vendor patches to readline port 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: Thu, 22 Jul 2004 14:30:30 -0000 The following reply was made to PR ports/69434; it has been noted by GNATS. From: Frank Laszlo To: freebsd-gnats-submit@FreeBSD.org, laszlof@vonostingroup.com Cc: Subject: Re: ports/69434: Added vendor patches to readline port Date: Thu, 22 Jul 2004 10:21:31 -0500 This is a multi-part message in MIME format. --------------080002060008030805060408 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit After submitting this PR, I realized the patch I made was BEFORE the vendor patch 001 was commited. Here is a diff of the most current ports tree. -Frank Laszlo --------------080002060008030805060408 Content-Type: text/plain; name="readline.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="readline.patch" diff -rNU3 readline.old/CVS/Entries readline/CVS/Entries --- readline.old/CVS/Entries Thu Jul 22 10:17:32 2004 +++ readline/CVS/Entries Wed Dec 31 19:00:00 1969 @@ -1,5 +0,0 @@ -/Makefile/1.2/Thu Jul 22 07:17:14 2004// -/distinfo/1.2/Thu Mar 18 18:00:19 2004// -/pkg-descr/1.1/Sun Dec 28 10:32:48 2003// -/pkg-plist/1.1/Sun Dec 28 10:32:48 2003// -D/files//// diff -rNU3 readline.old/CVS/Repository readline/CVS/Repository --- readline.old/CVS/Repository Thu Jul 22 10:17:32 2004 +++ readline/CVS/Repository Wed Dec 31 19:00:00 1969 @@ -1 +0,0 @@ -ports/devel/readline diff -rNU3 readline.old/CVS/Root readline/CVS/Root --- readline.old/CVS/Root Thu Jul 22 10:17:32 2004 +++ readline/CVS/Root Wed Dec 31 19:00:00 1969 @@ -1 +0,0 @@ -/usr/cvs diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Thu Jul 22 03:17:14 2004 +++ readline/Makefile Thu Jul 22 08:58:27 2004 @@ -7,7 +7,7 @@ PORTNAME= readline PORTVERSION= 4.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ diff -rNU3 readline.old/files/CVS/Entries readline/files/CVS/Entries --- readline.old/files/CVS/Entries Thu Jul 22 10:17:32 2004 +++ readline/files/CVS/Entries Wed Dec 31 19:00:00 1969 @@ -1,2 +0,0 @@ -/patch-aa/1.1/Thu Jul 22 07:17:14 2004// -D diff -rNU3 readline.old/files/CVS/Repository readline/files/CVS/Repository --- readline.old/files/CVS/Repository Thu Jul 22 10:17:32 2004 +++ readline/files/CVS/Repository Wed Dec 31 19:00:00 1969 @@ -1 +0,0 @@ -ports/devel/readline/files diff -rNU3 readline.old/files/CVS/Root readline/files/CVS/Root --- readline.old/files/CVS/Root Thu Jul 22 10:17:32 2004 +++ readline/files/CVS/Root Wed Dec 31 19:00:00 1969 @@ -1 +0,0 @@ -/usr/cvs diff -rNU3 readline.old/files/patch-ab readline/files/patch-ab --- readline.old/files/patch-ab Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ab Thu Jul 22 08:57:27 2004 @@ -0,0 +1,10 @@ +*** readline-4.3/readline.c Wed Mar 13 17:10:46 2002 +--- readline.c Tue Jul 30 17:46:44 2002 +*************** +*** 685,688 **** +--- 685,689 ---- + #if defined (VI_MODE) + if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap && ++ key != ANYOTHERKEY && + _rl_vi_textmod_command (key)) + _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign); diff -rNU3 readline.old/files/patch-ac readline/files/patch-ac --- readline.old/files/patch-ac Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ac Thu Jul 22 08:57:27 2004 @@ -0,0 +1,68 @@ +*** readline-4.3/mbutil.c Tue Jun 4 11:54:29 2002 +--- mbutil.c Mon Aug 5 11:20:39 2002 +*************** +*** 206,210 **** + { + /* shorted to compose multibyte char */ +! memset (ps, 0, sizeof(mbstate_t)); + return -2; + } +--- 206,211 ---- + { + /* shorted to compose multibyte char */ +! if (ps) +! memset (ps, 0, sizeof(mbstate_t)); + return -2; + } +*************** +*** 213,217 **** + /* invalid to compose multibyte char */ + /* initialize the conversion state */ +! memset (ps, 0, sizeof(mbstate_t)); + return -1; + } +--- 214,219 ---- + /* invalid to compose multibyte char */ + /* initialize the conversion state */ +! if (ps) +! memset (ps, 0, sizeof(mbstate_t)); + return -1; + } +*************** +*** 226,232 **** + int + _rl_compare_chars (buf1, pos1, ps1, buf2, pos2, ps2) +! char *buf1, *buf2; +! mbstate_t *ps1, *ps2; +! int pos1, pos2; + { + int i, w1, w2; +--- 228,237 ---- + int + _rl_compare_chars (buf1, pos1, ps1, buf2, pos2, ps2) +! char *buf1; +! int pos1; +! mbstate_t *ps1; +! char *buf2; +! int pos2; +! mbstate_t *ps2; + { + int i, w1, w2; +*************** +*** 277,282 **** + /* clear the state of the byte sequence, because + in this case effect of mbstate is undefined */ +! memset (ps, 0, sizeof (mbstate_t)); + } + else + pos += tmp; +--- 282,290 ---- + /* clear the state of the byte sequence, because + in this case effect of mbstate is undefined */ +! if (ps) +! memset (ps, 0, sizeof (mbstate_t)); + } ++ else if (tmp == 0) ++ pos++; + else + pos += tmp; diff -rNU3 readline.old/files/patch-ad readline/files/patch-ad --- readline.old/files/patch-ad Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ad Thu Jul 22 08:57:27 2004 @@ -0,0 +1,90 @@ +*** readline-4.3/display.c Tue Jun 4 10:54:47 2002 +--- display.c Fri Sep 13 16:22:57 2002 +*************** +*** 71,75 **** + + #if defined (HANDLE_MULTIBYTE) +! static int _rl_col_width PARAMS((char *, int, int)); + static int *_rl_wrapped_line; + #else +--- 71,75 ---- + + #if defined (HANDLE_MULTIBYTE) +! static int _rl_col_width PARAMS((const char *, int, int)); + static int *_rl_wrapped_line; + #else +*************** +*** 1349,1355 **** + _rl_output_some_chars (nfd + lendiff, temp - lendiff); + #if 0 +- _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff) - col_lendiff; +- #else + _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); + #endif + } +--- 1349,1355 ---- + _rl_output_some_chars (nfd + lendiff, temp - lendiff); + #if 0 + _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); ++ #else ++ _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff); + #endif + } +*************** +*** 1511,1516 **** + /* If we have multibyte characters, NEW is indexed by the buffer point in + a multibyte string, but _rl_last_c_pos is the display position. In +! this case, NEW's display position is not obvious. */ +! if ((MB_CUR_MAX == 1 || rl_byte_oriented ) && _rl_last_c_pos == new) return; + #else + if (_rl_last_c_pos == new) return; +--- 1511,1523 ---- + /* If we have multibyte characters, NEW is indexed by the buffer point in + a multibyte string, but _rl_last_c_pos is the display position. In +! this case, NEW's display position is not obvious and must be +! calculated. */ +! if (MB_CUR_MAX == 1 || rl_byte_oriented) +! { +! if (_rl_last_c_pos == new) +! return; +! } +! else if (_rl_last_c_pos == _rl_col_width (data, 0, new)) +! return; + #else + if (_rl_last_c_pos == new) return; +*************** +*** 1595,1603 **** + { + if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) +! { +! tputs (_rl_term_cr, 1, _rl_output_character_function); +! for (i = 0; i < new; i++) +! putc (data[i], rl_outstream); +! } + else + _rl_backspace (_rl_last_c_pos - new); +--- 1602,1606 ---- + { + if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) +! _rl_backspace (_rl_last_c_pos - _rl_col_width (data, 0, new)); + else + _rl_backspace (_rl_last_c_pos - new); +*************** +*** 2118,2122 **** + static int + _rl_col_width (str, start, end) +! char *str; + int start, end; + { +--- 2121,2125 ---- + static int + _rl_col_width (str, start, end) +! const char *str; + int start, end; + { +*************** +*** 2194,2196 **** + } + #endif /* HANDLE_MULTIBYTE */ +- +--- 2197,2198 ---- diff -rNU3 readline.old/files/patch-ae readline/files/patch-ae --- readline.old/files/patch-ae Wed Dec 31 19:00:00 1969 +++ readline/files/patch-ae Thu Jul 22 08:57:27 2004 @@ -0,0 +1,31 @@ +*** readline-4.3/vi_mode.c Thu May 23 13:27:58 2002 +--- vi_mode.c Tue Feb 4 15:11:07 2003 +*************** +*** 681,685 **** + { + wchar_t wc; +! char mb[MB_LEN_MAX]; + mbstate_t ps; + +--- 681,686 ---- + { + wchar_t wc; +! char mb[MB_LEN_MAX+1]; +! int mblen; + mbstate_t ps; + +*************** +*** 704,708 **** + if (wc) + { +! wctomb (mb, wc); + rl_begin_undo_group (); + rl_delete (1, 0); +--- 705,711 ---- + if (wc) + { +! mblen = wctomb (mb, wc); +! if (mblen >= 0) +! mb[mblen] = '\0'; + rl_begin_undo_group (); + rl_delete (1, 0); --------------080002060008030805060408-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:30: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 3264F16A4CF; Thu, 22 Jul 2004 14:30:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 157D343D46; Thu, 22 Jul 2004 14:30:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MEUiPv036852; Thu, 22 Jul 2004 14:30:44 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEUirT036847; Thu, 22 Jul 2004 14:30:44 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 14:30:44 GMT From: Volker Stolz Message-Id: <200407221430.i6MEUirT036847@freefall.freebsd.org> To: udo.schweigert@siemens.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:30:45 -0000 Synopsis: maintainer-update of security/nessus-* State-Changed-From-To: feedback->open State-Changed-By: vs State-Changed-When: Thu Jul 22 14:30:29 GMT 2004 State-Changed-Why: Feedback received, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=69333 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:33: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 8C8D316A4CE; Thu, 22 Jul 2004 14:33:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F5DD43D49; Thu, 22 Jul 2004 14:33:04 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MEX4ZQ037120; Thu, 22 Jul 2004 14:33:04 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEX402037116; Thu, 22 Jul 2004 14:33:04 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 14:33:04 GMT From: Volker Stolz Message-Id: <200407221433.i6MEX402037116@freefall.freebsd.org> To: vs@FreeBSD.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69419: print/pdftk: update to 0.941 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:33:04 -0000 Synopsis: print/pdftk: update to 0.941 Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Thu Jul 22 14:32:12 GMT 2004 Responsible-Changed-Why: I might as well track this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69419 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:35: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 1200D16A4CE; Thu, 22 Jul 2004 14:35:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E995443D41; Thu, 22 Jul 2004 14:35:07 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MEZ7n4037258; Thu, 22 Jul 2004 14:35:07 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEZ786037254; Thu, 22 Jul 2004 14:35:07 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 14:35:07 GMT From: Volker Stolz Message-Id: <200407221435.i6MEZ786037254@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wjv@FreeBSD.org Subject: Re: ports/69425: Duplicated port? devel/arch vs. devel/tla X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:35:08 -0000 Synopsis: Duplicated port? devel/arch vs. devel/tla Responsible-Changed-From-To: freebsd-ports-bugs->wjv Responsible-Changed-By: vs Responsible-Changed-When: Thu Jul 22 14:34:49 GMT 2004 Responsible-Changed-Why: Over to devel/arch maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69425 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:44:06 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 7311D16A4CF for ; Thu, 22 Jul 2004 14:44:06 +0000 (GMT) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69A043D54 for ; Thu, 22 Jul 2004 14:44:05 +0000 (GMT) (envelope-from pdseniura@techie.com) Received: from wfilter.us4.outblaze.com (wfilter.us4.outblaze.com [205.158.62.180])98E0918007CF for ; Thu, 22 Jul 2004 14:44:05 +0000 (GMT) X-OB-Received: from unknown (205.158.62.178) by wfilter.us4.outblaze.com; 22 Jul 2004 14:42:04 -0000 Received: by ws1-14.us4.outblaze.com (Postfix, from userid 1001) id 5347E79004B; Thu, 22 Jul 2004 14:44:05 +0000 (GMT) Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Mailer: MIME-tools 5.41 (Entity 5.404) Received: from [192.149.244.9] by ws1-14.us4.outblaze.com with http for pdseniura@techie.com; Thu, 22 Jul 2004 08:44:05 -0600 From: "P.D. Seniura" To: "Volker Stolz" , freebsd-ports-bugs@FreeBSD.org Date: Thu, 22 Jul 2004 08:44:05 -0600 Importance: high X-Originating-Ip: 192.149.244.9 X-Originating-Server: ws1-14.us4.outblaze.com Message-Id: <20040722144405.5347E79004B@ws1-14.us4.outblaze.com> Subject: Re: ports/68872: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:44:06 -0000 Hey - I did not authorize this PR to be closed! I opened it for discussion! I am the one who needs to discuss it! The matter is not resolved! It hasn't been answered in so long a time and then _whoosh_ it is closed without enough time for _me_ to look at it!! Now open this PR back up please!!!! Now for the discussion to be inserted into this same PR: We need to be able to use the current code otherwise we will not have any way to test it. Let's think about having a port named (lib)mikmod-current like several other apps (mozilla, mozilla-devel). We then need some way to have the depending apps to know which one to use for linking etc. That means we need LIB_DEPENDS in the other apps to be a variable mikmod.# where # is {0|1|2|3} at the present. Sort-of like a WANT_LIBMIKMOD=version variable. There are many apps that are hard-coded in this manner, to the point that we cannot keep in sync with the ports tree if we do not have a way to WANT_* a certain version like this. Do you see now why I must have this PR re-opened? I am needing to propose a way to do this WANT_* stuff for libmikmod without patching everything that depends on it. Thank you for reopening this PR and allowing these ideas to be discussed. ----- Original Message ----- From: Volker Stolz Date: Thu, 22 Jul 2004 12:23:33 GMT To: pdseniura@techie.com, vs@FreeBSD.org,freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68872: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 Synopsis: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 12:23:18 GMT 2004 State-Changed-Why: Closed on maintainer's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=68872 -- ___________________________________________________________ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:50: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 1CD9516A4CF for ; Thu, 22 Jul 2004 14:50:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEC6643D46 for ; Thu, 22 Jul 2004 14:50:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MEoEtn038362 for ; Thu, 22 Jul 2004 14:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEoE45038330; Thu, 22 Jul 2004 14:50:14 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 14:50:14 GMT Resent-Message-Id: <200407221450.i6MEoE45038330@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcel Prisi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7249016A4D0 for ; Thu, 22 Jul 2004 14:47:21 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C0CB43D54 for ; Thu, 22 Jul 2004 14:47:21 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6MElLqO094672 for ; Thu, 22 Jul 2004 14:47:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6MElLMD094670; Thu, 22 Jul 2004 14:47:21 GMT (envelope-from nobody) Message-Id: <200407221447.i6MElLMD094670@www.freebsd.org> Date: Thu, 22 Jul 2004 14:47:21 GMT From: Marcel Prisi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69437: "zlib.output_compression = On" dies with php4-4.3.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: Thu, 22 Jul 2004 14:50:15 -0000 >Number: 69437 >Category: ports >Synopsis: "zlib.output_compression = On" dies with php4-4.3.8_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: Thu Jul 22 14:50:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Marcel Prisi >Release: 4.8-p24 >Organization: Virtua SA >Environment: FreeBSD forget.it.ch 4.8-RELEASE-p24 FreeBSD 4.8-RELEASE-p24 #1: Fri Jul 16 10:45:42 CEST 2004 root@forget.it.ch:/usr/obj/usr/src/sys/VIRTUA-OPT i386 >Description: After updating to lang/php4-4.3.8_1 & most lang/php4-extensions, including zlib, zlib.output_compression = On doesn't work anymore. >How-To-Repeat: Just install lang/php4-4.3.8_1 & php4-zlib, edit /usr/local/etc/php.ini and modify the line "zlib.output_compression = Off" to "zlib.output_compression = On", restart apache, and load a .php file. >Fix: Recompile lang/php4-4.3.8_1 with zlib included (add --with-zlib in the CONFIGURE_ARGS), and deinstall php4-zlib if installed. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:52:31 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 5332116A4CE for ; Thu, 22 Jul 2004 14:52:31 +0000 (GMT) Received: from mail.dada.it (mail2.dada.it [195.110.100.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 3D32E43D39 for ; Thu, 22 Jul 2004 14:52:30 +0000 (GMT) (envelope-from mad@madpilot.net) Received: (qmail 5749 invoked from network); 22 Jul 2004 14:52:26 -0000 Received: from unknown (HELO madpilot.net) (195.110.114.197) by mail.dada.it with SMTP; 22 Jul 2004 14:52:26 -0000 Received: (qmail 88576 invoked from network); 22 Jul 2004 14:52:27 -0000 Received: from wedge.madpilot.net (192.168.13.11) by 0 with SMTP; 22 Jul 2004 14:52:27 -0000 Received: from wedge.madpilot.net (localhost.madpilot.net [127.0.0.1]) by wedge.madpilot.net (8.12.11/8.12.11) with ESMTP id i6MEqRCL027136; Thu, 22 Jul 2004 16:52:27 +0200 (CEST) (envelope-from mad@wedge.madpilot.net) Received: (from mad@localhost) by wedge.madpilot.net (8.12.11/8.12.11/Submit) id i6MEqR86027135; Thu, 22 Jul 2004 16:52:27 +0200 (CEST) (envelope-from mad) Date: Thu, 22 Jul 2004 16:52:27 +0200 From: Guido Falsi To: Volker Stolz Message-ID: <20040722145227.GA8532@wedge.madpilot.net> References: <200407220902.i6M92ufg094937@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <200407220902.i6M92ufg094937@freefall.freebsd.org> X-Operating-System: FreeBSD 5.2-CURRENT X-PGP-Key: http://www.madpilot.net/~mad/PGP-public-key.asc User-Agent: Mutt/1.5.6i cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69340: [maintainer-update] fix bluetooth stack detection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 14:52:31 -0000 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jul 22, 2004 at 09:02:56AM +0000, Volker Stolz wrote: > Synopsis: [maintainer-update] fix bluetooth stack detection > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Thu Jul 22 09:01:41 GMT 2004 > State-Changed-Why: > Problem packaging: > > ... > > IIRC, this has something to do with CONFIGURE_ARGS. Fixed. Attaching corrected update. Sorry it was my error :( -- Guido Falsi --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="openobex.diff" diff -ruN openobex.old/Makefile openobex/Makefile --- openobex.old/Makefile Sat Jul 17 19:52:16 2004 +++ openobex/Makefile Thu Jul 22 16:01:07 2004 @@ -14,7 +14,7 @@ MAINTAINER= mad@madpilot.net COMMENT= Open source implementation of the OBEX protocol -WANT_AUTOCONF_VER= 253 +USE_AUTOCONF_VER= 253 WANT_AUTOMAKE_VER= 14 WANT_LIBTOOL_VER= 15 USE_GMAKE= yes diff -ruN openobex.old/files/patch-aclocal.m4 openobex/files/patch-aclocal.m4 --- openobex.old/files/patch-aclocal.m4 Sat Jul 17 19:52:16 2004 +++ openobex/files/patch-aclocal.m4 Sat Jul 17 19:52:47 2004 @@ -1,6 +1,6 @@ ---- aclocal.m4.orig Mon Mar 22 16:19:39 2004 -+++ aclocal.m4 Mon Mar 22 16:22:51 2004 -@@ -67,6 +67,35 @@ +--- aclocal.m4.orig Wed Jun 16 19:59:04 2004 ++++ aclocal.m4 Wed Jun 16 20:26:17 2004 +@@ -67,6 +67,36 @@ BLUETOOTH_HOOK([],failure) ]) @@ -9,7 +9,8 @@ +AC_DEFUN([FREEBSD_BLUETOOTH_HOOK],[ + AC_MSG_CHECKING([for the FreeBSD/netgraph bluetooth support]) + echo -+ AC_CACHE_CHECK(for the struct sockaddr_rfcomm in , ac_cv_have_sockaddr_rfcomm, ++ AC_CHECK_LIB(bluetooth, bt_aton, ++ [AC_CACHE_CHECK(for the struct sockaddr_rfcomm in , ac_cv_have_sockaddr_rfcomm, + [AC_TRY_COMPILE([#include + #include + #include @@ -24,10 +25,10 @@ + AC_DEFINE(HAVE_BLUETOOTH) + AC_DEFINE(HAVE_BLUETOOTH_NETGRAPH,1,[Compile on FreeBSD]) + USE_BLUETOOTH="yes" -+ AC_CHECK_LIB(bluetooth, bt_aton, -+ [LIBS="$LIBS -lbluetooth" AC_DEFINE(HAVE_BT_ATON,1,[Define to 1 if you have the \`bt_aton' function.])]) ++ LIBS="$LIBS -lbluetooth" ++ AC_DEFINE(HAVE_BT_ATON,1,[Define to 1 if you have the \`bt_aton' function.]) + fi -+]) ++])]) + +AC_DEFUN([FREEBSD_BLUETOOTH_CHECK], [ + FREEBSD_BLUETOOTH_HOOK([],failure) --bp/iNruPH9dso1Pn-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 14:52: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 2218516A4CE; Thu, 22 Jul 2004 14:52:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A6D43D41; Thu, 22 Jul 2004 14:52:47 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MEqkEK038643; Thu, 22 Jul 2004 14:52:46 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MEqk5l038639; Thu, 22 Jul 2004 14:52:46 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 14:52:46 GMT From: Volker Stolz Message-Id: <200407221452.i6MEqk5l038639@freefall.freebsd.org> To: kwm@rainbow-runner.nl, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69351: Maintainer update gstreamer ffmpeg 0.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: Thu, 22 Jul 2004 14:52:47 -0000 Synopsis: Maintainer update gstreamer ffmpeg 0.8.1 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Thu Jul 22 14:49:01 GMT 2004 State-Changed-Why: - Creates file in /root during install: ... added plugin avi with 2 feature(s) rebuilding user_registry (/root/.gstreamer-0.8/registry.xml) loaded 126 plugins with 397 features ... Maybe gst-register should be called per user? - Sets INSTALLS_SHLIB, but doesn't point LDCONFIG_DIRS to the correct place: ===> Running ldconfig /sbin/ldconfig -m /usr/X11R6/lib ===> Registering installation for gstreamer-ffmpeg-0.8.1 lib is at: lib/gstreamer-%%VERSION%%/libgstffmpeg.so http://www.freebsd.org/cgi/query-pr.cgi?pr=69351 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 15: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 3535B16A4CE for ; Thu, 22 Jul 2004 15:10:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 287C243D58 for ; Thu, 22 Jul 2004 15:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MFAJ1p043016 for ; Thu, 22 Jul 2004 15:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MFAJ75043015; Thu, 22 Jul 2004 15:10:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 15:10:19 GMT Resent-Message-Id: <200407221510.i6MFAJ75043015@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vivek Khera Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D00D16A4CE for ; Thu, 22 Jul 2004 15:04:11 +0000 (GMT) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id C870B43D54 for ; Thu, 22 Jul 2004 15:04:10 +0000 (GMT) (envelope-from khera@kcilink.com) Received: from crash.int.kcilink.com (crash.int.kcilink.com [192.168.7.8]) by yertle.kcilink.com (Postfix) with ESMTP id 037072178A for ; Thu, 22 Jul 2004 11:04:09 -0400 (EDT) Received: by crash.int.kcilink.com (Postfix, from userid 100) id E97CA25046F; Thu, 22 Jul 2004 11:03:55 -0400 (EDT) Message-Id: <20040722150355.E97CA25046F@crash.int.kcilink.com> Date: Thu, 22 Jul 2004 11:03:55 -0400 (EDT) From: Vivek Khera To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69438: update postfix-current to latest 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: Thu, 22 Jul 2004 15:10:19 -0000 >Number: 69438 >Category: ports >Synopsis: update postfix-current to latest >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 Jul 22 15:10:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Vivek Khera >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD crash.int.kcilink.com 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #5: Thu May 27 16:14:00 EDT 2004 khera@crash.int.kcilink.com:/var/usr.obj/usr/src/sys/CRASH i386 >Description: update mail/postfix-current to 20040721 release. patches for TLS and SSL have not yet been issued for this release. >How-To-Repeat: >Fix: diff -Pru postfix-current.old/Makefile postfix-current/Makefile --- postfix-current.old/Makefile Mon May 24 10:47:51 2004 +++ postfix-current/Makefile Thu Jul 22 10:56:02 2004 @@ -15,7 +15,7 @@ # NOTE: PCRE is enabled by default unless you specifically disable it. PORTNAME= postfix -PORTVERSIONRAW= 2.2-20040504 +PORTVERSIONRAW= 2.2-20040721 PORTVERSION= ${PORTVERSIONRAW:S/-/./} PORTEPOCH= 2 CATEGORIES= mail ipv6 @@ -48,7 +48,8 @@ MAN8= anvil.8 bounce.8 cleanup.8 defer.8 error.8 flush.8 lmtp.8 local.8 \ master.8 oqmgr.8 pickup.8 pipe.8 proxymap.8 qmgr.8 qmqpd.8 showq.8 \ - smtp.8 smtpd.8 spawn.8 trace.8 trivial-rewrite.8 verify.8 virtual.8 + smtp.8 smtpd.8 spawn.8 trace.8 trivial-rewrite.8 verify.8 virtual.8 \ + scache.8 # TLS patch adds to MAN8 but doesn't have .html file, so avoid trying to # patch it. diff -Pru postfix-current.old/distinfo postfix-current/distinfo --- postfix-current.old/distinfo Mon May 24 10:47:51 2004 +++ postfix-current/distinfo Thu Jul 22 10:54:45 2004 @@ -1,8 +1,2 @@ -MD5 (postfix/postfix-2.2-20040504.tar.gz) = dc353d0d6deea643a73577fb00d4e3c6 -SIZE (postfix/postfix-2.2-20040504.tar.gz) = 1989111 -MD5 (postfix/pfixtls-0.8.18-2.1.0-0.9.7d.tar.gz) = 01785d9636bdae51a906320e581b1e6b -SIZE (postfix/pfixtls-0.8.18-2.1.0-0.9.7d.tar.gz) = 239141 -MD5 (postfix/ipv6-1.24-pf-2.2-20040504.patch.gz) = 143c5d714b7584206e2291bfd7b445d2 -SIZE (postfix/ipv6-1.24-pf-2.2-20040504.patch.gz) = 52121 -MD5 (postfix/tls+ipv6-1.24-pf-2.2-20040504.patch.gz) = 85011af2c207f9036a75e57a4bab9fd5 -SIZE (postfix/tls+ipv6-1.24-pf-2.2-20040504.patch.gz) = 256490 +MD5 (postfix/postfix-2.2-20040721.tar.gz) = 2dcc0b5418fb4a386a9e7896883153b5 +SIZE (postfix/postfix-2.2-20040721.tar.gz) = 2048452 diff -Pru postfix-current.old/pkg-plist postfix-current/pkg-plist --- postfix-current.old/pkg-plist Wed May 5 10:24:36 2004 +++ postfix-current/pkg-plist Thu Jul 22 11:00:02 2004 @@ -37,6 +37,7 @@ libexec/postfix/proxymap libexec/postfix/qmgr libexec/postfix/qmqpd +libexec/postfix/scache libexec/postfix/showq libexec/postfix/smtp libexec/postfix/smtpd @@ -195,6 +196,7 @@ %%PORTDOCS%%%%DOCSDIR%%/regexp_table.5.html %%PORTDOCS%%%%DOCSDIR%%/relocated.5.html %%PORTDOCS%%%%DOCSDIR%%/sendmail.1.html +%%PORTDOCS%%%%DOCSDIR%%/scache.8.html %%PORTDOCS%%%%DOCSDIR%%/showq.8.html %%PORTDOCS%%%%DOCSDIR%%/smtp-sink.1.html %%PORTDOCS%%%%DOCSDIR%%/smtp-source.1.html diff -Pru postfix-current.old/scripts/configure.postfix postfix-current/scripts/configure.postfix --- postfix-current.old/scripts/configure.postfix Mon May 24 10:47:51 2004 +++ postfix-current/scripts/configure.postfix Thu Jul 22 10:54:11 2004 @@ -24,8 +24,8 @@ SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \ SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \ TLS "SSL and TLS (BROKEN)" "$status_TLS" \ -IPv6 "IPv6 support" "$status_IPv6" \ -IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \ +IPv6 "IPv6 support (BROKEN)" "$status_IPv6" \ +IPv6TLS "IPv6 support with SSL and TLS (BROKEN)" "$status_IPv6TLS" \ DB3 "Berkeley DB3 (required if SASL also built with DB3)" "$status_DB3" \ DB40 "Berkeley DB4.0 (required if SASL also built with DB4.0)" "$status_DB40" \ DB41 "Berkeley DB4.1 (required if SASL also built with DB4.1)" "$status_DB41" \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 15:20: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 8E3D816A4CE; Thu, 22 Jul 2004 15:20:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 704CC43D31; Thu, 22 Jul 2004 15:20:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MFK3I1044146; Thu, 22 Jul 2004 15:20:03 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MFK3o9044142; Thu, 22 Jul 2004 15:20:03 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 15:20:03 GMT From: Volker Stolz Message-Id: <200407221520.i6MFK3o9044142@freefall.freebsd.org> To: pdseniura@techie.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68872: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 15:20:03 -0000 Synopsis: audio/libmikmod update to 3.2.0-beta2 ; audio/mikmod update to 3.2.2-beta1 State-Changed-From-To: closed->open State-Changed-By: vs State-Changed-When: Thu Jul 22 15:19:13 GMT 2004 State-Changed-Why: Submitter disagrees and requests the item to be reopened. http://www.freebsd.org/cgi/query-pr.cgi?pr=68872 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 15: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 1ACCD16A4CE; Thu, 22 Jul 2004 15:29:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F05BF43D5A; Thu, 22 Jul 2004 15:29:46 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6MFTkX7044545; Thu, 22 Jul 2004 15:29:46 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MFTkJQ044541; Thu, 22 Jul 2004 15:29:46 GMT (envelope-from vs) Date: Thu, 22 Jul 2004 15:29:46 GMT From: Volker Stolz Message-Id: <200407221529.i6MFTkJQ044541@freefall.freebsd.org> To: mad@madpilot.net, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69340: [maintainer-update] fix bluetooth stack detection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 15:29:47 -0000 Synopsis: [maintainer-update] fix bluetooth stack detection State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Thu Jul 22 15:29:36 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69340 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 15: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 2827016A4CF for ; Thu, 22 Jul 2004 15:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0538C43D48 for ; Thu, 22 Jul 2004 15:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MFoJON046046 for ; Thu, 22 Jul 2004 15:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MFoJvT046044; Thu, 22 Jul 2004 15:50:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 15:50:19 GMT Resent-Message-Id: <200407221550.i6MFoJvT046044@freefall.freebsd.org> 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 6FB5816A4CE for ; Thu, 22 Jul 2004 15:42:29 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31D2B43D41 for ; Thu, 22 Jul 2004 15:42:29 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.104] (port=50521 helo=inbox.ru) by mx2.mail.ru with esmtp id 1BnfiF-000NG9-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 22 Jul 2004 19:42:27 +0400 Message-Id: Date: Thu, 22 Jul 2004 19:42:27 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69439: x11-wm/fluxconf: update to 0.9.7 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: Thu, 22 Jul 2004 15:50:20 -0000 >Number: 69439 >Category: ports >Synopsis: x11-wm/fluxconf: update to 0.9.7 >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 Jul 22 15:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #6: Tue Jul 20 17:04:20 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: Update to 0.9.7. PS Maybe fluxconf should RUN_DEPEND on fluxbox-devel? On the one hand fluxconf doesn't really need fluxbox to work and on the another hand I don't thing fluxconf is needed without fluxbox. >How-To-Repeat: >Fix: diff -ruN fluxconf.orig/Makefile fluxconf/Makefile --- fluxconf.orig/Makefile Thu Jul 22 19:13:59 2004 +++ fluxconf/Makefile Thu Jul 22 19:14:13 2004 @@ -6,8 +6,7 @@ # PORTNAME= fluxconf -PORTVERSION= 0.9.4 -PORTREVISION= 2 +PORTVERSION= 0.9.7 CATEGORIES= x11-wm MASTER_SITES= http://devaux.fabien.free.fr/flux/ diff -ruN fluxconf.orig/distinfo fluxconf/distinfo --- fluxconf.orig/distinfo Thu Jul 22 19:13:59 2004 +++ fluxconf/distinfo Thu Jul 22 19:15:34 2004 @@ -1,2 +1,2 @@ -MD5 (fluxconf-0.9.4.tar.gz) = 48ec06a6fa0644ccd213fb79e7be151b -SIZE (fluxconf-0.9.4.tar.gz) = 193081 +MD5 (fluxconf-0.9.7.tar.gz) = 207faf932e07642c779e54aba549c804 +SIZE (fluxconf-0.9.7.tar.gz) = 197481 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 16: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 78C9716A4D1 for ; Thu, 22 Jul 2004 16:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DD0B43D39 for ; Thu, 22 Jul 2004 16:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MG0l2Z046832 for ; Thu, 22 Jul 2004 16:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MG0llU046828; Thu, 22 Jul 2004 16:00:47 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 16:00:47 GMT Resent-Message-Id: <200407221600.i6MG0llU046828@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Charles Swiger Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 103E116A4CE; Thu, 22 Jul 2004 15:56:40 +0000 (GMT) Received: from mail.pkix.net (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 807C543D2D; Thu, 22 Jul 2004 15:56:39 +0000 (GMT) (envelope-from chuck@pkix.net) Received: from localhost (localhost [127.0.0.1]) by ns1.pkix.net (Postfix) with ESMTP id 7511D54F3; Thu, 22 Jul 2004 11:56:38 -0400 (EDT) Received: from mail.pkix.net ([127.0.0.1]) by localhost (ns1.pkix.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00452-05; Thu, 22 Jul 2004 11:56:36 -0400 (EDT) Received: by mail.pkix.net (Postfix, from userid 1003) id 9B43154D9; Thu, 22 Jul 2004 11:56:36 -0400 (EDT) Message-Id: <20040722155636.9B43154D9@mail.pkix.net> Date: Thu, 22 Jul 2004 11:56:36 -0400 (EDT) From: Charles Swiger To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: pav@FreeBSD.org Subject: ports/69440: Update port: sysutils/dvd+rw-tools to 5.20... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Charles Swiger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 16:00:47 -0000 >Number: 69440 >Category: ports >Synopsis: Update port: sysutils/dvd+rw-tools to 5.20... >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 Jul 22 16:00:46 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Charles Swiger >Release: FreeBSD 4.10-STABLE i386 >Organization: PKIx >Environment: System: FreeBSD ns1.pkix.net 4.10-STABLE >Description: Update dvd+rw-tools port to latest version... >How-To-Repeat: N/A. >Fix: --- dvd+rw-tools_old/Makefile Thu Jul 22 11:52:07 2004 +++ dvd+rw-tools/Makefile Thu Jul 22 11:48:59 2004 @@ -5,8 +5,7 @@ # $FreeBSD: ports/sysutils/dvd+rw-tools/Makefile,v 1.14 2004/06/14 20:48:28 pav Exp $ PORTNAME= dvd+rw-tools -PORTVERSION= 5.19.4.9.7 -PORTREVISION= 2 +PORTVERSION= 5.20.4.10.8 CATEGORIES= sysutils MASTER_SITES= http://www.pkix.net/mirror/fy.chalmers.se/ \ http://fy.chalmers.se/~appro/linux/DVD+RW/tools/ --- dvd+rw-tools_old/distinfo Thu Jul 22 11:52:08 2004 +++ dvd+rw-tools/distinfo Thu Jul 22 11:49:19 2004 @@ -1,2 +1,2 @@ -MD5 (dvd+rw-tools-5.19.4.9.7.tar.gz) = 786a07de9ddef73aba441c821dccc87b -SIZE (dvd+rw-tools-5.19.4.9.7.tar.gz) = 97618 +MD5 (dvd+rw-tools-5.20.4.10.8.tar.gz) = 9e4333454ef7cfcbe69b7009e903d23d +SIZE (dvd+rw-tools-5.20.4.10.8.tar.gz) = 106056 Only in dvd+rw-tools_old/files: patch-growisofs.c Only in dvd+rw-tools_old/files: patch-transport.hxx >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 16: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 924B116A4CE for ; Thu, 22 Jul 2004 16:20:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7053043D39 for ; Thu, 22 Jul 2004 16:20:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MGK9qk051330 for ; Thu, 22 Jul 2004 16:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MGK9GB051329; Thu, 22 Jul 2004 16:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 16:20:09 GMT Resent-Message-Id: <200407221620.i6MGK9GB051329@freefall.freebsd.org> 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 8DCEE16A4F6 for ; Thu, 22 Jul 2004 16:13:06 +0000 (GMT) Received: from mx5.kent.ac.uk (mx5.ukc.ac.uk [129.12.21.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA4D643D46 for ; Thu, 22 Jul 2004 16:13:05 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by mx5.kent.ac.uk with esmtp (Exim 4.24) id 1BngBo-0001IE-8t; Thu, 22 Jul 2004 17:13:00 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1BngBo-0008wR-5D; Thu, 22 Jul 2004 17:13:00 +0100 Message-Id: Date: Thu, 22 Jul 2004 17:13:00 +0100 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/69441: [MAINTAINER] devel/py23-statgrab: Change master sites X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 16:20:09 -0000 >Number: 69441 >Category: ports >Synopsis: [MAINTAINER] devel/py23-statgrab: Change master sites >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 16:20:08 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: Change master sites - mirror.ac.uk becomes mirrorservice.org. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- py23-statgrab-0.2.patch begins here --- Index: Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/py-statgrab/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 31 May 2004 23:09:28 -0000 1.4 +++ Makefile 22 Jul 2004 16:11:20 -0000 @@ -8,8 +8,8 @@ PORTNAME= statgrab PORTVERSION= 0.2 CATEGORIES= devel python -MASTER_SITES= ftp://ftp.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ - http://www.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ +MASTER_SITES= ftp://ftp.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ + http://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ ftp://ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \ http://www.i-scream.org/pub/i-scream/%SUBDIR%/ MASTER_SITE_SUBDIR= py${PORTNAME} --- py23-statgrab-0.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 16:30: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 C099716A4CE for ; Thu, 22 Jul 2004 16:30:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6C7543D2D for ; Thu, 22 Jul 2004 16:30:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MGUJiQ051611 for ; Thu, 22 Jul 2004 16:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MGUJZo051610; Thu, 22 Jul 2004 16:30:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 16:30:19 GMT Resent-Message-Id: <200407221630.i6MGUJZo051610@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stephane Legrand Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB62B16A4CE for ; Thu, 22 Jul 2004 16:23:12 +0000 (GMT) Received: from postfix4-1.free.fr (postfix4-1.free.fr [213.228.0.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90FC543D68 for ; Thu, 22 Jul 2004 16:23:12 +0000 (GMT) (envelope-from stephane@free.fr) Received: from sequoia.mondomaineamoi.megalo (unknown [81.56.170.180]) by postfix4-1.free.fr (Postfix) with ESMTP id CE315167B16 for ; Thu, 22 Jul 2004 18:23:10 +0200 (CEST) Received: from sequoia.mondomaineamoi.megalo (localhost.mondomaineamoi.megalo [127.0.0.1])i6MGNAJb059801 for ; Thu, 22 Jul 2004 18:23:10 +0200 (CEST) (envelope-from stephane@sequoia.mondomaineamoi.megalo) Received: (from stephane@localhost)i6MGN8NH059796; Thu, 22 Jul 2004 18:23:08 +0200 (CEST) (envelope-from stephane) Message-Id: <200407221623.i6MGN8NH059796@sequoia.mondomaineamoi.megalo> Date: Thu, 22 Jul 2004 18:23:08 +0200 (CEST) From: Stephane Legrand To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69442: [maintainer update] Update x11-toolkits/gnocl to 0.5.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stephane Legrand List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 16:30:20 -0000 >Number: 69442 >Category: ports >Synopsis: [maintainer update] Update x11-toolkits/gnocl to 0.5.17 >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 Jul 22 16:30:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Stephane Legrand >Release: FreeBSD 4.10-BETA i386 >Organization: >Environment: System: FreeBSD 4.10-BETA >Description: Update x11-toolkits/gnocl to 0.5.17 >How-To-Repeat: >Fix: diff -ruN gnocl-orig/Makefile gnocl/Makefile --- gnocl-orig/Makefile Wed Jul 21 14:31:19 2004 +++ gnocl/Makefile Wed Jul 21 14:44:32 2004 @@ -6,10 +6,11 @@ # PORTNAME= gnocl -PORTVERSION= 0.5.16 +PORTVERSION= 0.5.17 PORTREVISION= 2 CATEGORIES= x11-toolkits devel -MASTER_SITES= http://www.dr-baum.net/gnocl/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= gnocl MAINTAINER= stephane@FreeBSD.org COMMENT= GTK+ and Gnome extension for Tcl diff -ruN gnocl-orig/distinfo gnocl/distinfo --- gnocl-orig/distinfo Wed Jul 21 14:31:19 2004 +++ gnocl/distinfo Wed Jul 21 14:45:01 2004 @@ -1,2 +1,2 @@ -MD5 (gnocl-0.5.16.tar.bz2) = fc54925e553a0998d96e812ec57cd843 -SIZE (gnocl-0.5.16.tar.bz2) = 341170 +MD5 (gnocl-0.5.17.tar.bz2) = 7bf93edbdd3a2de2e0f92a9aecb662ce +SIZE (gnocl-0.5.17.tar.bz2) = 346878 diff -ruN gnocl-orig/files/patch-Makefile gnocl/files/patch-Makefile --- gnocl-orig/files/patch-Makefile Wed Jul 21 14:31:19 2004 +++ gnocl/files/patch-Makefile Wed Jul 21 17:58:06 2004 @@ -1,14 +1,11 @@ ---- src/Makefile.orig Tue Jun 15 14:05:05 2004 -+++ src/Makefile Tue Jun 15 14:05:49 2004 -@@ -18,9 +18,9 @@ +--- src/Makefile.orig Wed Jul 21 17:54:38 2004 ++++ src/Makefile Wed Jul 21 17:55:11 2004 +@@ -18,7 +18,7 @@ # for releases use -Os, this makes the lib 15% smaller - CFLAGS += -Wall + CFLAGS += -Wall -pedantic -TCL_VERSION := $(shell echo 'puts $$tcl_version' | tclsh) +TCL_VERSION := 84 --export ADDCFLAGS := -DVERSION=\"$(VERSION)\" -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DUSE_TCL_STUBS $(shell pkg-config --cflags gtk+-2.0) -+export ADDCFLAGS := -DVERSION=\"$(VERSION)\" -DUSE_TCL_STUBS $(shell pkg-config --cflags gtk+-2.0) - - export LIBS := $(shell pkg-config --libs gtk+-2.0) -ltclstub$(TCL_VERSION) - + # this breaks build on GTK 2.4 + # -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 16:30: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 B675516A4CE for ; Thu, 22 Jul 2004 16:30:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E0AC43D2F for ; Thu, 22 Jul 2004 16:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MGUJDp051632 for ; Thu, 22 Jul 2004 16:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MGUJC9051631; Thu, 22 Jul 2004 16:30:19 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 16:30:19 GMT Resent-Message-Id: <200407221630.i6MGUJC9051631@freefall.freebsd.org> 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 11BD716A4CE for ; Thu, 22 Jul 2004 16:29:50 +0000 (GMT) Received: from skye.ki.iif.hu (skye.ki.iif.hu [193.225.13.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7198E43D31 for ; Thu, 22 Jul 2004 16:29:49 +0000 (GMT) (envelope-from mohacsi@skye.ki.iif.hu) Received: (from mohacsi@localhost) by skye.ki.iif.hu (8.12.11/8.12.11) id i6MGT1d5035273; Thu, 22 Jul 2004 18:29:01 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200407221629.i6MGT1d5035273@skye.ki.iif.hu> Date: Thu, 22 Jul 2004 18:29:01 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69443: maintainer update: comms/scmxx to version 0.7.2 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: Thu, 22 Jul 2004 16:30:20 -0000 >Number: 69443 >Category: ports >Synopsis: maintainer update: comms/scmxx to version 0.7.2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 16:30:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 4.10-PRERELEASE i386 >Organization: NIIF >Environment: System: FreeBSD skye.ki.iif.hu 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #7: Thu May 20 13:27:41 CEST 2004 root@skye.ki.iif.hu:/usr/obj/mirror/src/sys/SKYE i386 >Description: maintainer update: comms/scmxx to version 0.7.2 changes: - multipart sms decoding - internal unicode cleanup >How-To-Repeat: Apply this diff. >Fix: diff -ruN scmxx.bak/Makefile scmxx/Makefile --- scmxx.bak/Makefile Wed May 26 12:52:59 2004 +++ scmxx/Makefile Thu Jul 22 18:06:52 2004 @@ -6,7 +6,7 @@ # PORTNAME= scmxx -PORTVERSION= 0.7.1 +PORTVERSION= 0.7.2 CATEGORIES= comms MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= scmxx diff -ruN scmxx.bak/distinfo scmxx/distinfo --- scmxx.bak/distinfo Wed May 26 12:52:59 2004 +++ scmxx/distinfo Thu Jul 22 18:07:18 2004 @@ -1,2 +1,2 @@ -MD5 (scmxx-0.7.1.tar.bz2) = e2147adbeeeeea806c6cc30a7b35c099 -SIZE (scmxx-0.7.1.tar.bz2) = 92605 +MD5 (scmxx-0.7.2.tar.bz2) = a3b7fe5c95a70997d24d3a2798f86b45 +SIZE (scmxx-0.7.2.tar.bz2) = 100818 diff -ruN scmxx.bak/files/patch-src-unicode.c scmxx/files/patch-src-unicode.c --- scmxx.bak/files/patch-src-unicode.c Wed Apr 28 18:39:31 2004 +++ scmxx/files/patch-src-unicode.c Thu Jan 1 01:00:00 1970 @@ -1,15 +0,0 @@ ---- src/unicode.c.orig Wed Feb 25 16:44:19 2004 -+++ src/unicode.c Wed Apr 21 00:00:39 2004 -@@ -36,6 +36,12 @@ - # define INTERNAL_CHARSET "UCS-4LE" - #endif - -+#include -+#if __FreeBSD_version < 500000 -+#include -+#define UINT16_MAX USHRT_MAX -+#endif -+ - ucs4char_t* convert_to_internal (char* from_code, - char* input, - size_t insize) diff -ruN scmxx.bak/files/patch-src_charsets_ucs4__dec.c scmxx/files/patch-src_charsets_ucs4__dec.c --- scmxx.bak/files/patch-src_charsets_ucs4__dec.c Thu Jan 1 01:00:00 1970 +++ scmxx/files/patch-src_charsets_ucs4__dec.c Thu Jul 22 18:21:12 2004 @@ -0,0 +1,18 @@ + +$FreeBSD$ + +--- src/charsets/ucs4_dec.c.orig Thu Jul 22 18:16:40 2004 ++++ src/charsets/ucs4_dec.c Thu Jul 22 18:20:04 2004 +@@ -19,6 +19,12 @@ + #include + #include + ++#include ++#if __FreeBSD_version < 500000 ++#include ++#define UINT16_MAX USHRT_MAX ++#endif ++ + #include + #ifndef ICONV_CAST + # define ICONV_CAST char** >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 16:39:14 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 7C4E216A4CE for ; Thu, 22 Jul 2004 16:39:14 +0000 (GMT) Received: from imf23aec.mail.bellsouth.net (imf23aec.mail.bellsouth.net [205.152.59.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id F181043D46 for ; Thu, 22 Jul 2004 16:39:13 +0000 (GMT) (envelope-from ahze@ahze.net) Received: from [192.168.1.5] ([68.209.163.3]) by imf23aec.mail.bellsouth.netESMTP <20040722163910.BDKV1779.imf23aec.mail.bellsouth.net@[192.168.1.5]>; Thu, 22 Jul 2004 12:39:10 -0400 In-Reply-To: <200407221320.i6MDKBj9028542@freefall.freebsd.org> References: <200407221320.i6MDKBj9028542@freefall.freebsd.org> Mime-Version: 1.0 (Apple Message framework v618) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Johnson Date: Thu, 22 Jul 2004 12:39:09 -0400 To: Josh Elsasser X-Mailer: Apple Mail (2.618) cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69389: [PATCH] audio/speex [update 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: Thu, 22 Jul 2004 16:39:14 -0000 I didn't do it speex did =x On Jul 22, 2004, at 9:20 AM, Josh Elsasser wrote: > The following reply was made to PR ports/69389; it has been noted by > GNATS. > > From: Josh Elsasser > To: Kirill Ponomarew > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] > Date: Thu, 22 Jul 2004 09:14:11 -0400 > > Why is the shared library version being bumped? I didn't see anything > to indicate an ABI change in this version. > > -jre > _______________________________________________ > freebsd-ports-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs > To unsubscribe, send any mail to > "freebsd-ports-bugs-unsubscribe@freebsd.org" > From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 17: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 90E0F16A4D0 for ; Thu, 22 Jul 2004 17:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 706C943D2D for ; Thu, 22 Jul 2004 17:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MHKOXc058087 for ; Thu, 22 Jul 2004 17:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MHKOth058086; Thu, 22 Jul 2004 17:20:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 17:20:24 GMT Resent-Message-Id: <200407221720.i6MHKOth058086@freefall.freebsd.org> 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 Lancereau Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 857EB16A51A; Thu, 22 Jul 2004 17:15:34 +0000 (GMT) Received: from fly.mos.bsdfly.org (mos.bsdfly.org [213.41.136.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 756C043D2D; Thu, 22 Jul 2004 17:15:33 +0000 (GMT) (envelope-from matt@fly.mos.bsdfly.org) Received: from fly.mos.bsdfly.org (localhost [127.0.0.1]) by fly.mos.bsdfly.org (8.12.10/8.12.10) with ESMTP id i6MHKDIT092538; Thu, 22 Jul 2004 19:20:13 +0200 (CEST) (envelope-from matt@fly.mos.bsdfly.org) Received: (from matt@localhost) by fly.mos.bsdfly.org (8.12.10/8.12.10/Submit) id i6MHKDcD092537; Thu, 22 Jul 2004 19:20:13 +0200 (CEST) (envelope-from matt) Message-Id: <200407221720.i6MHKDcD092537@fly.mos.bsdfly.org> Date: Thu, 22 Jul 2004 19:20:13 +0200 (CEST) From: Matt Lancereau To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ale@FreeBSD.org Subject: ports/69444: [maintainer update] deskutils/xfce4-calendar X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matt Lancereau List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 17:20:24 -0000 >Number: 69444 >Category: ports >Synopsis: [maintainer update] deskutils/xfce4-calendar >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 Jul 22 17:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matt Lancereau >Release: FreeBSD 5.2.1-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD fly.mos.bsdfly.org 5.2.1-RELEASE-p7 FreeBSD 5.2.1-RELEASE-p7 #2: Sat Jun 19 13:28:16 CEST 2004 root@fly.mos.bsd-blax.org:/usr/obj/usr/src/sys/FLY i386 >Description: Update to 0.1.9 release. >How-To-Repeat: >Fix: --- xfce4-calendar.diff begins here --- --- deskutils/xfce4-calendar/Makefile.orig Thu Jul 22 18:49:28 2004 +++ deskutils/xfce4-calendar/Makefile Thu Jul 22 19:02:27 2004 @@ -6,10 +6,10 @@ # PORTNAME= xfce4-calendar -PORTVERSION= 0.1.8 +PORTVERSION= 0.1.9 CATEGORIES= deskutils xfce -MASTER_SITES= ftp://ftp.berlios.de/pub/xfce-goodies/4.0.5/ \ - http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-4.0.5/src/ +MASTER_SITES= ftp://ftp.berlios.de/pub/xfce-goodies/4.0.6/ \ + http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-4.0.6/src/ DISTNAME= xfcalendar-${PORTVERSION} DIST_SUBDIR= xfce4 @@ -24,7 +24,7 @@ USE_GNOME= gtk20 libxml2 USE_X_PREFIX= yes GNU_CONFIGURE= yes -USE_INC_LIBTOOL_VER= 13 +USE_INC_LIBTOOL_VER= 15 CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} .include --- deskutils/xfce4-calendar/distinfo.orig Thu Jul 22 18:49:35 2004 +++ deskutils/xfce4-calendar/distinfo Thu Jul 22 19:02:33 2004 @@ -1,2 +1,2 @@ -MD5 (xfce4/xfcalendar-0.1.8.tar.gz) = 83c615bb78d1782ff3589451bf30c8a7 -SIZE (xfce4/xfcalendar-0.1.8.tar.gz) = 384450 +MD5 (xfce4/xfcalendar-0.1.9.tar.gz) = 93ad9b27101c7a4ea22c7ace7d993f9e +SIZE (xfce4/xfcalendar-0.1.9.tar.gz) = 391058 --- xfce4-calendar.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 17:25:08 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 3ACAF16A4CF for ; Thu, 22 Jul 2004 17:25:08 +0000 (GMT) Received: from redundancy.redundancy.org (redundancy.redundancy.org [198.144.201.242]) by mx1.FreeBSD.org (Postfix) with SMTP id E345C43D31 for ; Thu, 22 Jul 2004 17:25:07 +0000 (GMT) (envelope-from lx@redundancy.redundancy.org) Received: (qmail 4417 invoked by uid 1000); 22 Jul 2004 17:25:24 -0000 Date: Thu, 22 Jul 2004 10:25:24 -0700 From: David Thiel To: Volker Stolz Message-ID: <20040722172501.GA4379@redundancy.redundancy.org> Mail-Followup-To: Volker Stolz , freebsd-ports-bugs@FreeBSD.org References: <200407220740.i6M7egbF086128@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407220740.i6M7egbF086128@freefall.freebsd.org> X-OpenPGP-Key-fingerprint: 482A 8C46 C844 7E7C 8CBC 2313 96EE BEE5 1F4B CA13 X-OpenPGP-Key-available: http://redundancy.redundancy.org/lx.gpg User-Agent: Mutt/1.5.6i cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69387: Update: security/samhain 1.8.9 -> 1.8.10b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 17:25:08 -0000 On Thu, Jul 22, 2004 at 07:40:20AM +0000, Volker Stolz wrote: > Please note that due to a bug, the automatic packages will be build > with all options set to OFF! You can work around this by e.g. using > .if undefined(WITHOUT_FOO) || defined(WITH_FOO) For this port, all options off should be fine, and probably desirable. Thanks! david From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 17: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 4ACAF16A4CE for ; Thu, 22 Jul 2004 17:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31D0143D41 for ; Thu, 22 Jul 2004 17:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MHeOpM059514 for ; Thu, 22 Jul 2004 17:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MHeO27059513; Thu, 22 Jul 2004 17:40:24 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 17:40:24 GMT Resent-Message-Id: <200407221740.i6MHeO27059513@freefall.freebsd.org> 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 Hunter Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E51DB16A4CE for ; Thu, 22 Jul 2004 17:34:43 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8D1E43D53 for ; Thu, 22 Jul 2004 17:34:43 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6MHYhMV021749 for ; Thu, 22 Jul 2004 17:34:43 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6MHYh9E021748; Thu, 22 Jul 2004 17:34:43 GMT (envelope-from nobody) Message-Id: <200407221734.i6MHYh9E021748@www.freebsd.org> Date: Thu, 22 Jul 2004 17:34:43 GMT From: Mike Hunter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69445: Cannot build firefox 0.9.1 with fbsd 5.2-cur X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 17:40:24 -0000 >Number: 69445 >Category: ports >Synopsis: Cannot build firefox 0.9.1 with fbsd 5.2-cur >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 22 17:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mike Hunter >Release: 5.2-CURRENT >Organization: UC Berkeley >Environment: FreeBSD celeste.net.berkeley.edu 5.2-CURRENT FreeBSD 5.2-CURRENT #2: Wed Jul 21 17:17:10 PDT 2004 root@celeste.net.berkeley.edu:/usr/obj/usr/src/sys/dorine i386 >Description: Firefox is giving me a hard time: gmake[4]: Leaving directory `/usr/ports/www/firefox/work/mozilla/security/nss/cmd/shlibsign/mangle' FreeBSD5.2_DBG.OBJ/shlibsign -v -i /usr/ports/www/firefox/work/mozilla/dist/lib/libsoftokn3.so Assertion failure: _PT_PTHREAD_MUTEX_IS_LOCKED(lock->mutex), at ptsynch.c:207 Abort trap (core dumped) gmake[3]: *** [/usr/ports/www/firefox/work/mozilla/dist/lib/libsoftokn3.chk] Error 134 gmake[3]: Leaving directory `/usr/ports/www/firefox/work/mozilla/security/nss/cmd/shlibsign' gmake[2]: *** [libs] Error 2 gmake[2]: Leaving directory `/usr/ports/www/firefox/work/mozilla/security/manager' gmake[1]: *** [tier_40] Error 2 gmake[1]: Leaving directory `/usr/ports/www/firefox/work/mozilla' gmake: *** [default] Error 2 *** Error code 2 Stop in /usr/ports/www/firefox. I saw this post http://lists.freebsd.org/pipermail/freebsd-gnome/2004-March/005812.html And tried applying the provided patch, but it didn't seem to make a difference. >How-To-Repeat: cd /usr/ports/www/firefox && make >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 17:48: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 9391916A4CE; Thu, 22 Jul 2004 17:48:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F7243D2F; Thu, 22 Jul 2004 17:48:22 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) i6MHmMSe059992; Thu, 22 Jul 2004 17:48:22 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MHmMoT059988; Thu, 22 Jul 2004 17:48:22 GMT (envelope-from marcus) Date: Thu, 22 Jul 2004 17:48:22 GMT From: Joe Marcus Clarke Message-Id: <200407221748.i6MHmMoT059988@freefall.freebsd.org> To: mhunter@ack.berkeley.edu, marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69445: Cannot build firefox 0.9.1 with fbsd 5.2-cur X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 17:48:22 -0000 Synopsis: Cannot build firefox 0.9.1 with fbsd 5.2-cur State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Thu Jul 22 17:47:56 GMT 2004 State-Changed-Why: This is a pthread problem. Try with a blank libmap.conf, and build without debugging mode enabled. http://www.freebsd.org/cgi/query-pr.cgi?pr=69445 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 17: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 05E8416A4CE for ; Thu, 22 Jul 2004 17:50:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA61343D31 for ; Thu, 22 Jul 2004 17:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MHoPqO060117 for ; Thu, 22 Jul 2004 17:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MHoPAH060115; Thu, 22 Jul 2004 17:50:25 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 17:50:25 GMT Message-Id: <200407221750.i6MHoPAH060115@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Josh Elsasser Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Josh Elsasser List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 17:50:26 -0000 The following reply was made to PR ports/69389; it has been noted by GNATS. From: Josh Elsasser To: Michael Johnson Cc: Kirill Ponomarew , freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69389: [PATCH] audio/speex [update to 1.0.4] Date: Thu, 22 Jul 2004 13:41:57 -0400 On Thu, Jul 22, 2004 at 12:39:09PM -0400, Michael Johnson wrote: > I didn't do it speex did =x Oh, well in that case I'm fine with this. -jre From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 18:15: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 013D216A4CE; Thu, 22 Jul 2004 18:15:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9CB343D3F; Thu, 22 Jul 2004 18:15:27 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from freefall.freebsd.org (eik@localhost [127.0.0.1]) i6MIFRXg064781; Thu, 22 Jul 2004 18:15:27 GMT (envelope-from eik@freefall.freebsd.org) Received: (from eik@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MIFRcr064777; Thu, 22 Jul 2004 18:15:27 GMT (envelope-from eik) Date: Thu, 22 Jul 2004 18:15:27 GMT From: Oliver Eikemeier Message-Id: <200407221815.i6MIFRcr064777@freefall.freebsd.org> To: eik@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69424: databases/php5-mysqli - quote problem making the build fail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 18:15:28 -0000 Synopsis: databases/php5-mysqli - quote problem making the build fail Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: eik Responsible-Changed-When: Thu Jul 22 20:13:39 CEST 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69424 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 18:16: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 885D916A4CE; Thu, 22 Jul 2004 18:16:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BCEB43D48; Thu, 22 Jul 2004 18:16:01 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from freefall.freebsd.org (eik@localhost [127.0.0.1]) i6MIG1sF064825; Thu, 22 Jul 2004 18:16:01 GMT (envelope-from eik@freefall.freebsd.org) Received: (from eik@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MIG15h064821; Thu, 22 Jul 2004 18:16:01 GMT (envelope-from eik) Date: Thu, 22 Jul 2004 18:16:01 GMT From: Oliver Eikemeier Message-Id: <200407221816.i6MIG15h064821@freefall.freebsd.org> To: eik@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69437: "zlib.output_compression = On" dies with php4-4.3.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: Thu, 22 Jul 2004 18:16:01 -0000 Synopsis: "zlib.output_compression = On" dies with php4-4.3.8_1 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: eik Responsible-Changed-When: Thu Jul 22 20:13:39 CEST 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69424 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: eik Responsible-Changed-When: Thu Jul 22 20:13:39 CEST 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69437 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 19: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 63CC416A4CE for ; Thu, 22 Jul 2004 19:10:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44B3D43D31 for ; Thu, 22 Jul 2004 19:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MJAKIB072634 for ; Thu, 22 Jul 2004 19:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MJAKlj072633; Thu, 22 Jul 2004 19:10:20 GMT (envelope-from gnats) Date: Thu, 22 Jul 2004 19:10:20 GMT Message-Id: <200407221910.i6MJAKlj072633@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: David Thiel Subject: Re: ports/69387: Update: security/samhain 1.8.9 -> 1.8.10b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Thiel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 19:10:21 -0000 The following reply was made to PR ports/69387; it has been noted by GNATS. From: David Thiel To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/69387: Update: security/samhain 1.8.9 -> 1.8.10b Date: Thu, 22 Jul 2004 12:02:47 -0700 On Thu, Jul 22, 2004 at 07:40:20AM +0000, Volker Stolz wrote: > Please note that due to a bug, the automatic packages will be build > with all options set to OFF! You can work around this by e.g. using > .if undefined(WITHOUT_FOO) || defined(WITH_FOO) For this port, all options off should be fine, and probably desirable. Thanks! david From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 20:20: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 501B416A4CF for ; Thu, 22 Jul 2004 20:20:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A9643D58 for ; Thu, 22 Jul 2004 20:20:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MKKWJj079359 for ; Thu, 22 Jul 2004 20:20:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MKKWWw079358; Thu, 22 Jul 2004 20:20:32 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 20:20:32 GMT Resent-Message-Id: <200407222020.i6MKKWWw079358@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCE8316A4CF; Thu, 22 Jul 2004 20:16:47 +0000 (GMT) Received: from mail.tiscali.cz (stateless2.tiscali.cz [213.235.135.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 909A943D58; Thu, 22 Jul 2004 20:16:47 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (212.90.236.175) by mail.tiscali.cz (6.7.021) id 40E84FD100786005; Thu, 22 Jul 2004 22:16:46 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1Bni2x-0006GA-BY ; Thu, 22 Jul 2004 20:11:59 +0200 Message-Id: Date: Thu, 22 Jul 2004 20:11:59 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: knu@FreeBSD.org Subject: ports/69447: portupgrade: py-musicbrain - unbroke port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Radim Kolar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2004 20:20:32 -0000 >Number: 69447 >Category: ports >Synopsis: portupgrade: py-musicbrain - unbroke port >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 Jul 22 20:20:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: Sanatana >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #8: Tue Jul 20 20:32:29 CEST 2004 root@sanatana.dharma:/usr/src/sys/i386/compile/UP i386 >Description: the old python musicbrain binding seems to be dead and removed from main web site. This is a new different project. pkg-plist file axed. p.s. port tools generates diff against incorrect port - audio/musicbrain ! >How-To-Repeat: >Fix: diff -Naur /usr/ports/audio/py-musicbrainz/Makefile py-musicbrainz/Makefile --- /usr/ports/audio/py-musicbrainz/Makefile Tue Jun 22 19:20:11 2004 +++ py-musicbrainz/Makefile Thu Jul 22 20:01:45 2004 @@ -6,33 +6,47 @@ # PORTNAME= musicbrainz -PORTVERSION= 1.0 -PORTREVISION= 2 +PORTVERSION= 1.0.b1 +PORTEPOCH= 1 CATEGORIES= audio python -MASTER_SITES= # none +MASTER_SITES= http://icepick.info/projects/python-musicbrainz/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTFILES= # none +DISTNAME= python-${PORTNAME}-${PORTVERSION} MAINTAINER= knu@FreeBSD.org COMMENT= MusicBrainz bindings for Python -EXTRACT_DEPENDS= ${NONEXISTENT}:${LIBMUSICBRAINZ_PORTDIR}:patch +BUILD_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/ctypes/__init__.py:${PORTSDIR}/devel/py-ctypes +RUN_DEPENDS= ${BUILD_DEPENDS} LIB_DEPENDS= musicbrainz.4:${LIBMUSICBRAINZ_PORTDIR} LIBMUSICBRAINZ_PORTDIR= ${PORTSDIR}/audio/libmusicbrainz +EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} +EXAMPLES= cd2trm.py findartist.py getcdtracklengths.py cdid.py \ + findtrack.py gettrm.py cdlookup.py generatetrm.py \ + fileinfolookup.py getalbum.py USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_BUILDARGS= build_ext -I${LOCALBASE}/include -L${LOCALBASE}/lib -IGNORE= Distfile needs to catch up with libmusicbrainz -DEPRECATED= ${IGNORE} -EXPIRATION_DATE=2004-08-20 +PLIST_FILES= %%PYTHON_SITELIBDIR%%/musicbrainz.py \ + %%PYTHON_SITELIBDIR%%/musicbrainz.pyc \ + %%PYTHON_SITELIBDIR%%/musicbrainz.pyo + +.ifndef(NOPORTDOCS) +.for i in ${EXAMPLES} +PLIST_FILES+=%%EXAMPLESDIR%%/${i} +.endfor +PLIST_DIRS= %%EXAMPLESDIR%% +.endif + +post-install: +.ifndef(NOPORTDOCS) + ${MKDIR} ${EXAMPLESDIR} +.for i in ${EXAMPLES} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/${i} ${EXAMPLESDIR} +.endfor +.endif -.include - -do-extract: - ${MKDIR} ${WRKDIR} - ${LN} -fs `cd ${LIBMUSICBRAINZ_PORTDIR}; ${MAKE} -V WRKSRC`/python ${WRKSRC} - -.include +.include diff -Naur /usr/ports/audio/py-musicbrainz/distinfo py-musicbrainz/distinfo --- /usr/ports/audio/py-musicbrainz/distinfo Mon Mar 24 03:47:16 2003 +++ py-musicbrainz/distinfo Wed Jul 21 22:23:52 2004 @@ -1 +1,2 @@ -MD5 (pyvorbis-1.0.tar.gz) = 158e38785543f2d945e20f67f77299b9 +MD5 (python-musicbrainz-1.0b1.tar.gz) = 8f07d75e67f3b2f1de89327126c0f418 +SIZE (python-musicbrainz-1.0b1.tar.gz) = 21029 diff -Naur /usr/ports/audio/py-musicbrainz/pkg-plist py-musicbrainz/pkg-plist --- /usr/ports/audio/py-musicbrainz/pkg-plist Mon Mar 24 03:47:16 2003 +++ py-musicbrainz/pkg-plist Thu Jan 1 01:00:00 1970 @@ -1,8 +0,0 @@ -%%PYTHON_SITELIBDIR%%/musicbrainz/__init__.py -%%PYTHON_SITELIBDIR%%/musicbrainz/__init__.pyc -%%PYTHON_SITELIBDIR%%/musicbrainz/__init__.pyo -%%PYTHON_SITELIBDIR%%/musicbrainz/_musicbrainz.so -%%PYTHON_SITELIBDIR%%/musicbrainz/queries.py -%%PYTHON_SITELIBDIR%%/musicbrainz/queries.pyc -%%PYTHON_SITELIBDIR%%/musicbrainz/queries.pyo -@dirrm %%PYTHON_SITELIBDIR%%/musicbrainz >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 21:23: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 183AF16A4CE; Thu, 22 Jul 2004 21:23:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEAB843D3F; Thu, 22 Jul 2004 21:23:24 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6MLNORc086695; Thu, 22 Jul 2004 21:23:24 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MLNOWI086691; Thu, 22 Jul 2004 21:23:24 GMT (envelope-from pav) Date: Thu, 22 Jul 2004 21:23:24 GMT From: Pav Lucistnik Message-Id: <200407222123.i6MLNOWI086691@freefall.freebsd.org> To: chuck@pkix.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69440: Update port: sysutils/dvd+rw-tools to 5.20... X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 21:23:25 -0000 Synopsis: Update port: sysutils/dvd+rw-tools to 5.20... State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Thu Jul 22 21:23:12 GMT 2004 State-Changed-Why: Committed, thanks! I added installation of new tool, dvd-ram-control. http://www.freebsd.org/cgi/query-pr.cgi?pr=69440 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 21:33: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 3F95B16A4CE; Thu, 22 Jul 2004 21:33:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 232E043D39; Thu, 22 Jul 2004 21:33:37 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6MLXbwP088196; Thu, 22 Jul 2004 21:33:37 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MLXbfe088192; Thu, 22 Jul 2004 21:33:37 GMT (envelope-from pav) Date: Thu, 22 Jul 2004 21:33:37 GMT From: Pav Lucistnik Message-Id: <200407222133.i6MLXbfe088192@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69399: mysql-server ports use ridiculous layout X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 21:33:37 -0000 Synopsis: mysql-server ports use ridiculous layout Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: pav Responsible-Changed-When: Thu Jul 22 21:33:17 GMT 2004 Responsible-Changed-Why: Over to maintainer, but I think this PR is bogus. http://www.freebsd.org/cgi/query-pr.cgi?pr=69399 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 21:46: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 ACB6B16A4CE; Thu, 22 Jul 2004 21:46:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E6E043D5A; Thu, 22 Jul 2004 21:46:13 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6MLkDlO088784; Thu, 22 Jul 2004 21:46:13 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MLkD5Y088780; Thu, 22 Jul 2004 21:46:13 GMT (envelope-from pav) Date: Thu, 22 Jul 2004 21:46:13 GMT From: Pav Lucistnik Message-Id: <200407222146.i6MLkD5Y088780@freefall.freebsd.org> To: bogorodskiy@inbox.ru, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69330: [ maintainer ] astro/xplanet: update 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: Thu, 22 Jul 2004 21:46:13 -0000 Synopsis: [ maintainer ] astro/xplanet: update to 1.1.0 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Thu Jul 22 21:46:05 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69330 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 21: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 EBA4416A4D0 for ; Thu, 22 Jul 2004 21:50:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9D3643D3F for ; Thu, 22 Jul 2004 21:50:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MLoUqS089010 for ; Thu, 22 Jul 2004 21:50:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MLoUcw089009; Thu, 22 Jul 2004 21:50:30 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 21:50:30 GMT Resent-Message-Id: <200407222150.i6MLoUcw089009@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Travis Poppe Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F0C216A4CE for ; Thu, 22 Jul 2004 21:42:46 +0000 (GMT) Received: from mail.cableone.net (scanmail2.cableone.net [24.116.0.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id B687443D39 for ; Thu, 22 Jul 2004 21:42:45 +0000 (GMT) (envelope-from tlp@LiquidX.org) Received: from maya.liquidx.org (unverified [24.119.12.184]) by smail2.cableone.net (SurgeMail 1.9b) with ESMTP id 10091551 for ; Thu, 22 Jul 2004 14:28:39 -0700 Message-Id: <20040722154300.5bf20e5f@maya.liquidx.org> Date: Thu, 22 Jul 2004 15:43:00 -0600 From: Travis Poppe To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69449: [MAINTAINER UPDATE]: Update net/naim to naim 0.11.7.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, 22 Jul 2004 21:50:31 -0000 >Number: 69449 >Category: ports >Synopsis: [MAINTAINER UPDATE] Update net/naim to naim 0.11.7.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 Jul 22 21:50:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Travis Poppe >Release: >Organization: >Environment: >Description: Update naim to naim 0.11.7.2 >How-To-Repeat: >Fix: diff -ruN naim.orig/Makefile naim/Makefile --- naim.orig/Makefile Thu Jul 22 15:40:18 2004 +++ naim/Makefile Thu Jul 22 15:40:28 2004 @@ -6,7 +6,7 @@ # PORTNAME= naim -PORTVERSION= 0.11.7.1 +PORTVERSION= 0.11.7.2 CATEGORIES= net irc MASTER_SITES= http://shell.n.ml.org/n/naim/ diff -ruN naim.orig/distinfo naim/distinfo --- naim.orig/distinfo Thu Jul 22 15:40:18 2004 +++ naim/distinfo Thu Jul 22 15:41:27 2004 @@ -1,2 +1,2 @@ -MD5 (naim-0.11.7.1.tar.bz2) = 38a4b57083872c1f45ae8a36e6b2ccb9 -SIZE (naim-0.11.7.1.tar.bz2) = 540856 +MD5 (naim-0.11.7.2.tar.bz2) = e9bb25dfe0a29e382627099c1f1c3792 +SIZE (naim-0.11.7.2.tar.bz2) = 541033 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 22:30: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 BE70616A4CE for ; Thu, 22 Jul 2004 22:30:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADC9443D48 for ; Thu, 22 Jul 2004 22:30:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MMUGv6094105 for ; Thu, 22 Jul 2004 22:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MMUGxN094095; Thu, 22 Jul 2004 22:30:16 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 22:30:16 GMT Resent-Message-Id: <200407222230.i6MMUGxN094095@freefall.freebsd.org> 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 E. Zander" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6998B16A4D4 for ; Thu, 22 Jul 2004 22:20:26 +0000 (GMT) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id C15D643D3F for ; Thu, 22 Jul 2004 22:20:25 +0000 (GMT) (envelope-from riggs@rrr.de) Received: from mail.m-online.net (svr14.m-online.net [192.168.3.144]) by svr8.m-online.net (Postfix) with ESMTP id 6722859D01; Fri, 23 Jul 2004 00:20:24 +0200 (CEST) Received: from marvin.riggiland.au (ppp-82-135-10-81.mnet-online.de [82.135.10.81]) by mail.m-online.net (Postfix) with ESMTP id EDDF8EED15; Fri, 23 Jul 2004 00:20:23 +0200 (CEST) Received: from marvin.riggiland.au (localhost [127.0.0.1]) by marvin.riggiland.au (8.12.11/8.12.11) with ESMTP id i6MMKN4Z003146; Fri, 23 Jul 2004 00:20:23 +0200 (CEST) (envelope-from riggs@marvin.riggiland.au) Received: (from riggs@localhost) by marvin.riggiland.au (8.12.11/8.12.11/Submit) id i6MMKNi9003145; Fri, 23 Jul 2004 00:20:23 +0200 (CEST) (envelope-from riggs) Message-Id: <200407222220.i6MMKNi9003145@marvin.riggiland.au> Date: Fri, 23 Jul 2004 00:20:23 +0200 (CEST) From: "Thomas E. Zander" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69450: Update of multimedia/mplayer to pre5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 22:30:16 -0000 >Number: 69450 >Category: ports >Synopsis: Update of multimedia/mplayer to pre5 >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 Jul 22 22:30:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Thomas E. Zander >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD marvin.riggiland.au 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sat Jul 17 01:25:43 CEST 2004 root@marvin.riggiland.au:/usr/obj/usr/src/sys/MARVIN i386 >Description: This pr updates mplayer to the latest version, 1.0pre5: o Remove of patch-libmpdemux-tvi_bsdbt848 as it's included now o Introduce patch-libmpdemux-demux_rtp.cpp for live media compat, submitted by Michael Johnson >How-To-Repeat: >Fix: Patch: diff -ruN mplayer-old/Makefile mplayer/Makefile --- mplayer-old/Makefile Fri Jul 16 23:41:00 2004 +++ mplayer/Makefile Thu Jul 22 22:05:08 2004 @@ -206,8 +206,7 @@ # to be installed. PORTNAME= mplayer -PORTVERSION= 0.99.4 -PORTREVISION= 2 +PORTVERSION= 0.99.5 CATEGORIES= multimedia audio ipv6 MASTER_SITES= http://www1.mplayerhq.hu/MPlayer/releases/ \ http://www2.mplayerhq.hu/MPlayer/releases/ \ @@ -219,13 +218,7 @@ ftp://ftp.lug.udel.edu/MPlayer/releases/ \ ftp://mirrors.xmission.com/MPlayer/releases/ \ http://www.rrr.de/~riggs/mplayer/ -DISTNAME= MPlayer-1.0pre4 - -PATCH_SITES= http://www.mplayerhq.hu/MPlayer/patches/ \ - http://www4.mplayerhq.hu/MPlayer/patches/ \ - http://www7.mplayerhq.hu/MPlayer/patches/ -PATCHFILES= vuln04-fix.diff -PATCH_DIST_STRIP= -p0 +DISTNAME= MPlayer-1.0pre5 MAINTAINER= riggs@rrr.de COMMENT= High performance media player/encoder supporting many formats diff -ruN mplayer-old/distinfo mplayer/distinfo --- mplayer-old/distinfo Fri Jul 16 23:41:00 2004 +++ mplayer/distinfo Fri Jul 23 00:14:36 2004 @@ -1,4 +1,2 @@ -MD5 (MPlayer-1.0pre4.tar.bz2) = 83ebac0f05b192516a41fca2350ca01a -SIZE (MPlayer-1.0pre4.tar.bz2) = 4913390 -MD5 (vuln04-fix.diff) = 4e5c1984d56d2c5f3bfd3a086df4f80c -SIZE (vuln04-fix.diff) = 23440 +MD5 (MPlayer-1.0pre5.tar.bz2) = fbe6919eb025526e8ed129cd61a49969 +SIZE (MPlayer-1.0pre5.tar.bz2) = 5072836 diff -ruN mplayer-old/files/patch-ad mplayer/files/patch-ad --- mplayer-old/files/patch-ad Fri Jul 16 23:41:00 2004 +++ mplayer/files/patch-ad Thu Jul 22 22:13:42 2004 @@ -1,6 +1,6 @@ ---- configure.orig Mon Apr 26 05:44:06 2004 -+++ configure Sun Jun 27 03:30:21 2004 -@@ -339,7 +339,7 @@ +--- configure.orig Thu Jul 15 00:04:42 2004 ++++ configure Thu Jul 22 22:13:22 2004 +@@ -344,7 +344,7 @@ # 1st pass checking for vital options @@ -9,7 +9,7 @@ _ranlib=ranlib _cc=cc test "$CC" && _cc="$CC" -@@ -594,22 +594,10 @@ +@@ -601,22 +601,10 @@ _cpuinfo="echo" # Cygwin has /proc/cpuinfo, but only supports Intel CPUs # FIXME: Remove the cygwin check once AMD CPUs are supported @@ -32,7 +32,7 @@ case "$host_arch" in i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) -@@ -1656,8 +1644,8 @@ +@@ -1687,8 +1675,8 @@ ;; *) @@ -43,7 +43,7 @@ ;; esac -@@ -1667,7 +1655,7 @@ +@@ -1698,7 +1686,7 @@ test -z "$_bindir" && _bindir="$_prefix/bin" test -z "$_datadir" && _datadir="$_prefix/share/mplayer" test -z "$_mandir" && _mandir="$_prefix/man" @@ -52,7 +52,7 @@ test -z "$_libdir" && _libdir="$_prefix/lib" test -z "$_mlibdir" && _mlibdir="$MLIBHOME" -@@ -2258,13 +2246,7 @@ +@@ -2371,13 +2359,7 @@ echocheck "memalign()" @@ -66,7 +66,7 @@ if test "$_memalign" = yes ; then _def_memalign='#define HAVE_MEMALIGN 1' else -@@ -2352,40 +2334,8 @@ +@@ -2465,45 +2447,10 @@ echocheck "pthread" @@ -100,16 +100,20 @@ - fi -fi -if test "$_ld_pthread" != '' ; then -- echores "yes (using $_ld_pthread)" ++_ld_pthread="${PTHREAD_LIBS}" + echores "yes (using $_ld_pthread)" + _pthreads='yes' + _def_pthreads='#define HAVE_PTHREADS 1' -else - echores "no" +- _pthreads='' +- _def_pthreads='#undef HAVE_PTHREADS' -fi -+_ld_pthread="${PTHREAD_LIBS}" -+echores "yes (using $_ld_pthread)" - +- echocheck "sys/soundcard.h" -@@ -4458,11 +4408,11 @@ + cat > $TMPC << EOF +@@ -4670,11 +4617,11 @@ echocheck "RTC" @@ -123,7 +127,7 @@ int main(void) { return RTC_IRQP_READ; } EOF _rtc=no -@@ -5736,7 +5686,7 @@ +@@ -5909,7 +5856,7 @@ _stripbinaries=no elif test -z "$CFLAGS" ; then if test "$host_arch" != "mips" ; then @@ -132,7 +136,7 @@ else CFLAGS="-O4 $_march $_mcpu -ffast-math -fomit-frame-pointer" fi -@@ -5746,6 +5696,9 @@ +@@ -5919,6 +5866,9 @@ _stripbinaries=no fi else @@ -142,7 +146,7 @@ cat <sdpDescription; + delete rtpState; + +- delete env; delete scheduler; ++ env->reclaim(); delete scheduler; + } + + ////////// Extra routines that help implement the above interface functions: diff -ruN mplayer-old/files/patch-libmpdemux-tvi_bsdbt848 mplayer/files/patch-libmpdemux-tvi_bsdbt848 --- mplayer-old/files/patch-libmpdemux-tvi_bsdbt848 Fri Jun 18 21:03:11 2004 +++ mplayer/files/patch-libmpdemux-tvi_bsdbt848 Thu Jan 1 01:00:00 1970 @@ -1,18 +0,0 @@ -Index: libmpdemux/tvi_bsdbt848.c -=================================================================== -RCS file: /cvsroot/mplayer/main/libmpdemux/tvi_bsdbt848.c,v -retrieving revision 1.13 -diff -u -r1.13 tvi_bsdbt848.c ---- libmpdemux/tvi_bsdbt848.c 6 Apr 2004 12:23:09 -0000 1.13 -+++ libmpdemux/tvi_bsdbt848.c 18 Jun 2004 02:28:40 -0000 -@@ -366,8 +366,8 @@ - } - - #ifdef BT848_SAUDIO -- if((priv->tunerready == TRUE) && -- ioctl(priv->btfd, BT848_SAUDIO, &tv_param_audio_id) < 0) -+ if(priv->tunerready == TRUE && -+ ioctl(priv->tunerfd, BT848_SAUDIO, &tv_param_audio_id) < 0) - { - perror("audioid:ioctl"); - } diff -ruN mplayer-old/files/patch-vidix-drivers-Makefile mplayer/files/patch-vidix-drivers-Makefile --- mplayer-old/files/patch-vidix-drivers-Makefile Mon Jun 14 16:47:12 2004 +++ mplayer/files/patch-vidix-drivers-Makefile Thu Jul 22 22:32:57 2004 @@ -1,5 +1,5 @@ ---- vidix/drivers/Makefile.orig Wed Oct 22 18:45:33 2003 -+++ vidix/drivers/Makefile Mon Jun 14 15:23:29 2004 +--- vidix/drivers/Makefile.orig Mon May 31 16:15:35 2004 ++++ vidix/drivers/Makefile Thu Jul 22 22:30:40 2004 @@ -8,55 +8,55 @@ CYBERBLADE_SRCS=cyberblade_vid.c CYBERBLADE_OBJS=cyberblade_vid.o @@ -10,14 +10,14 @@ RADEON_VID=radeon_vid.so RADEON_SRCS=radeon_vid.c RADEON_OBJS=radeon_vid.o - RADEON_LIBS=-L../../libdha -ldha -lm + RADEON_LIBS=-L../../libdha -ldha -lm $(X_LIB) -RADEON_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. +RADEON_CFLAGS=$(OPTFLAGS) $(X11_INC) -fPIC -I. -I.. RAGE128_VID=rage128_vid.so RAGE128_SRCS=radeon_vid.c RAGE128_OBJS=rage128_vid.o - RAGE128_LIBS=-L../../libdha -ldha + RAGE128_LIBS=-L../../libdha -ldha -lm $(X_LIB) -RAGE128_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -DRAGE128 +RAGE128_CFLAGS=$(OPTFLAGS) $(X11_INC) -fPIC -I. -I.. -DRAGE128 @@ -54,7 +54,7 @@ NVIDIA_OBJS=nvidia_vid.o NVIDIA_LIBS=-L../../libdha -ldha -lm -NVIDIA_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -+NVIDIA_CFLAGS=$(OPTFLAGS) $(X11_INC) -fPIC -I. -I.. ++NVIDIA_CFLAGS=$(OPTFLAGS) $(X11_INC) -fPIC -I. -I.. SIS_VID=sis_vid.so SIS_SRCS=sis_vid.c sis_bridge.c diff -ruN mplayer-old/pkg-plist mplayer/pkg-plist --- mplayer-old/pkg-plist Fri Jul 16 23:41:00 2004 +++ mplayer/pkg-plist Thu Jul 22 23:45:40 2004 @@ -30,7 +30,7 @@ %%PORTDOCS%%share/doc/mplayer/gui.html %%PORTDOCS%%share/doc/mplayer/history.html %%PORTDOCS%%share/doc/mplayer/howtoread.html -%%PORTDOCS%%share/doc/mplayer/hpux.html +%%PORTDOCS%%share/doc/mplayer/hp-ux.html %%PORTDOCS%%share/doc/mplayer/index.html %%PORTDOCS%%share/doc/mplayer/install.html %%PORTDOCS%%share/doc/mplayer/intro.html @@ -39,12 +39,12 @@ %%PORTDOCS%%share/doc/mplayer/linux.html %%PORTDOCS%%share/doc/mplayer/macos.html %%PORTDOCS%%share/doc/mplayer/mailinglists.html -%%PORTDOCS%%share/doc/mplayer/menc-feat-divx4.html %%PORTDOCS%%share/doc/mplayer/menc-feat-dvd-mpeg4.html %%PORTDOCS%%share/doc/mplayer/menc-feat-enc-images.html %%PORTDOCS%%share/doc/mplayer/menc-feat-enc-libavcodec.html %%PORTDOCS%%share/doc/mplayer/menc-feat-telecine.html %%PORTDOCS%%share/doc/mplayer/menc-feat-mpeg.html +%%PORTDOCS%%share/doc/mplayer/menc-feat-mpeg4.html %%PORTDOCS%%share/doc/mplayer/menc-feat-extractsub.html %%PORTDOCS%%share/doc/mplayer/menc-feat-fix-avi.html %%PORTDOCS%%share/doc/mplayer/menc-feat-rescale.html @@ -70,8 +70,8 @@ %%PORTDOCS%%share/doc/mplayer/users-vs-dev.html %%PORTDOCS%%share/doc/mplayer/vcd.html %%PORTDOCS%%share/doc/mplayer/windows.html -%%VIDIX%%lib/libdha.so.0 -%%VIDIX%%lib/libdha-0.so.1 +%%VIDIX%%lib/libdha.so.1 +%%VIDIX%%lib/libdha-1.so.0 %%VIDIX%%lib/mplayer/vidix/cyberblade_vid.so %%VIDIX%%lib/mplayer/vidix/mach64_vid.so %%VIDIX%%lib/mplayer/vidix/mga_crtc2_vid.so >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 22:38: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 BD55016A4CE; Thu, 22 Jul 2004 22:38:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DFE543D2D; Thu, 22 Jul 2004 22:38:45 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) i6MMcj9j095340; Thu, 22 Jul 2004 22:38:45 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MMcjv7095336; Thu, 22 Jul 2004 22:38:45 GMT (envelope-from glewis) Date: Thu, 22 Jul 2004 22:38:45 GMT From: Greg Lewis Message-Id: <200407222238.i6MMcjv7095336@freefall.freebsd.org> To: tlp@LiquidX.org, glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69449: [MAINTAINER UPDATE] Update net/naim to naim 0.11.7.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, 22 Jul 2004 22:38:45 -0000 Synopsis: [MAINTAINER UPDATE] Update net/naim to naim 0.11.7.2 State-Changed-From-To: open->closed State-Changed-By: glewis State-Changed-When: Thu Jul 22 22:38:36 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69449 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 23: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 70FEC16A4D9 for ; Thu, 22 Jul 2004 23:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5331A43D48 for ; Thu, 22 Jul 2004 23:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MNUQ0l000931 for ; Thu, 22 Jul 2004 23:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MNUQnl000930; Thu, 22 Jul 2004 23:30:26 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 23:30:26 GMT Resent-Message-Id: <200407222330.i6MNUQnl000930@freefall.freebsd.org> 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 A2E2616A4D0 for ; Thu, 22 Jul 2004 23:30:12 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC62543D2F for ; Thu, 22 Jul 2004 23:30:07 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 3C6491556A for ; Fri, 23 Jul 2004 07:31:37 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 29661-01 for ; Fri, 23 Jul 2004 07:31:36 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 404B015569; Fri, 23 Jul 2004 07:31:36 +0800 (CST) Message-Id: <20040722233136.404B015569@mail.dragon2.net> Date: Fri, 23 Jul 2004 07:31:36 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69451: [NEW PORT] textproc/p5-Template-Magic: A Perl Module with magic merger of runtime values with templates X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 23:30:26 -0000 >Number: 69451 >Category: ports >Synopsis: [NEW PORT] textproc/p5-Template-Magic: A Perl Module with magic merger of runtime values with templates >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 Jul 22 23:30:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - This port obsolete textproc/p5-Text-MagicTemplate Please also remove that port. - from pkg-descr Template-Magic is a "magic" interface between programming and design. It makes "magically" available all the runtime values - stored in your variables or returned by your subroutines - inside a static template file. Usually no need to assign values to the object. WWW: http://search.cpan.org/~domizio/Template-Magic/ Author: Domizio Demichelis Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Template-Magic-1.25.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Template-Magic # p5-Template-Magic/Makefile # p5-Template-Magic/distinfo # p5-Template-Magic/pkg-descr # p5-Template-Magic/pkg-plist # echo c - p5-Template-Magic mkdir -p p5-Template-Magic > /dev/null 2>&1 echo x - p5-Template-Magic/Makefile sed 's/^X//' >p5-Template-Magic/Makefile << 'END-of-p5-Template-Magic/Makefile' X# New ports collection makefile for: Template-Magic X# Date created: July 23 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Template-Magic XPORTVERSION= 1.25 XCATEGORIES= textproc perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Text XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= A Perl Module with magic merger of runtime values with templates X XBUILD_DEPENDS= ${SITE_PERL}/IO/Util.pm:${PORTSDIR}/devel/p5-IO-Util \ X ${SITE_PERL}/Class/constr.pm:${PORTSDIR}/devel/p5-OOTools XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= YES X XMAN3= Template::Magic.3 \ X Bundle::Template::Magic.3 \ X Template::Magic::HTML.3 \ X Template::Magic::Zone.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.1 or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Template-Magic/Makefile echo x - p5-Template-Magic/distinfo sed 's/^X//' >p5-Template-Magic/distinfo << 'END-of-p5-Template-Magic/distinfo' XMD5 (Template-Magic-1.25.tar.gz) = 5a44e758bdfa32f7a530d16d00720480 XSIZE (Template-Magic-1.25.tar.gz) = 40091 END-of-p5-Template-Magic/distinfo echo x - p5-Template-Magic/pkg-descr sed 's/^X//' >p5-Template-Magic/pkg-descr << 'END-of-p5-Template-Magic/pkg-descr' XTemplate-Magic is a "magic" interface between programming and design. It makes X"magically" available all the runtime values - stored in your variables or Xreturned by your subroutines - inside a static template file. Usually no need Xto assign values to the object. X XWWW: http://search.cpan.org/~domizio/Template-Magic/ X XAuthor: Domizio Demichelis END-of-p5-Template-Magic/pkg-descr echo x - p5-Template-Magic/pkg-plist sed 's/^X//' >p5-Template-Magic/pkg-plist << 'END-of-p5-Template-Magic/pkg-plist' X%%SITE_PERL%%/Bundle/Template/Magic.pm X%%SITE_PERL%%/Template/Magic.pm X%%SITE_PERL%%/Template/Magic/HTML.pm X%%SITE_PERL%%/Template/Magic/Zone.pm X%%SITE_PERL%%/auto/Template/Magic/_EVAL_.al X%%SITE_PERL%%/auto/Template/Magic/_EVAL_ATTRIBUTES_.al X%%SITE_PERL%%/auto/Template/Magic/TRACE_DELETIONS.al X%%SITE_PERL%%/auto/Template/Magic/INCLUDE_TEXT.al X%%SITE_PERL%%/auto/Template/Magic/TableTiler.al X%%SITE_PERL%%/auto/Template/Magic/FillInForm.al X%%SITE_PERL%%/auto/Template/Magic/autosplit.ix X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Magic/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Magic X@dirrm %%SITE_PERL%%/Template/Magic X@unexec rmdir %D/%%SITE_PERL%%/Template 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Template 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/Bundle/Template 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/Bundle 2>/dev/null || true END-of-p5-Template-Magic/pkg-plist exit --- p5-Template-Magic-1.25.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 22 23:50: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 4373E16A4CE for ; Thu, 22 Jul 2004 23:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 344D543D48 for ; Thu, 22 Jul 2004 23:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6MNoMZN002358 for ; Thu, 22 Jul 2004 23:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6MNoM0A002357; Thu, 22 Jul 2004 23:50:22 GMT (envelope-from gnats) Resent-Date: Thu, 22 Jul 2004 23:50:22 GMT Resent-Message-Id: <200407222350.i6MNoM0A002357@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 318C816A4CE; Thu, 22 Jul 2004 23:46:22 +0000 (GMT) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E72F43D48; Thu, 22 Jul 2004 23:46:21 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf21aec.mail.bellsouth.netESMTP <20040722234620.RDEI1792.imf21aec.mail.bellsouth.net@gentoo.ahze.net>; Thu, 22 Jul 2004 19:46:20 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6MNkKh9091831; Thu, 22 Jul 2004 19:46:20 -0400 (EDT) (envelope-from ahze) Message-Id: <200407222346.i6MNkKh9091831@gentoo.ahze.net> Date: Thu, 22 Jul 2004 19:46:20 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lioux@FreeBSD.org Subject: ports/69452: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 22 Jul 2004 23:50:22 -0000 >Number: 69452 >Category: ports >Synopsis: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] >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 Jul 22 23:50:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Fix build with gcc3.4 - Respect C[XX]FLAGS Port maintainer (lioux@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- mjpegtools-1.6.2_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/mjpegtools.orig/Makefile /usr/ports/multimedia/mjpegtools/Makefile --- /usr/ports/multimedia/mjpegtools.orig/Makefile Sat Jun 26 00:54:26 2004 +++ /usr/ports/multimedia/mjpegtools/Makefile Thu Jul 22 19:38:44 2004 @@ -21,14 +21,13 @@ USE_GNOME= glib12 lthack USE_GMAKE= yes -USE_LIBTOOL_VER=15 +USE_INC_LIBTOOL_VER=15 USE_REINPLACE= yes USE_XLIB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-transform-name="" CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" WANT_GNOME= yes WANT_SDL= yes @@ -155,7 +154,8 @@ s,-ldl([[:space:]]|"),\1,; \ s|-L/lib||g; \ s|(-L\$$with_dv)(\$$with_dv_l)|\1/lib|; \ - s|(-ldv)|-L${LOCALBASE}/lib \1 ${PTHREAD_LIBS:S/"//g}|' \ + s|(-ldv)|-L${LOCALBASE}/lib \1 ${PTHREAD_LIBS:S/"//g}|; \ + s|-pthread||' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's|SDL/|SDL11/|' \ ${WRKSRC}/lavtools/liblavplay.c \ diff -ruN --exclude=CVS /usr/ports/multimedia/mjpegtools.orig/files/patch-configure /usr/ports/multimedia/mjpegtools/files/patch-configure --- /usr/ports/multimedia/mjpegtools.orig/files/patch-configure Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/mjpegtools/files/patch-configure Thu Jul 22 18:16:48 2004 @@ -0,0 +1,23 @@ +--- configure.orig Thu Jul 22 18:15:58 2004 ++++ configure Thu Jul 22 18:16:36 2004 +@@ -25858,16 +25858,16 @@ + fi + have_cmov=false + case $arch in +- i786) ARCHFLAGS="-mcpu=i786 -march=$arch" ++ i786) ARCHFLAGS="" + have_cmov=true + ;; +- i686) ARCHFLAGS="-mcpu=i686 -march=$arch" ++ i686) ARCHFLAGS="" + have_cmov=true + ;; +- i586) ARCHFLAGS="-mcpu=i586 -march=$arch" ++ i586) ARCHFLAGS="" + have_cmov=false + ;; +- *) ARCHFLAGS="-mcpu=i686 -march=$arch" ++ *) ARCHFLAGS="" + have_cmov=true + ;; + esac diff -ruN --exclude=CVS /usr/ports/multimedia/mjpegtools.orig/files/patch-lavtools::lavpipe.c /usr/ports/multimedia/mjpegtools/files/patch-lavtools::lavpipe.c --- /usr/ports/multimedia/mjpegtools.orig/files/patch-lavtools::lavpipe.c Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/mjpegtools/files/patch-lavtools::lavpipe.c Thu Jul 22 19:39:55 2004 @@ -0,0 +1,10 @@ +--- lavtools/lavpipe.c.orig Thu Jul 22 18:17:47 2004 ++++ lavtools/lavpipe.c Thu Jul 22 18:18:08 2004 +@@ -582,6 +582,7 @@ + mjpeg_info( "closing input %d (source %d)", i, current_index); + decommission_pipe_source(source); + KEEP_SOURCE: ++ ; + } + } + } diff -ruN --exclude=CVS /usr/ports/multimedia/mjpegtools.orig/files/patch-mpeg2enc::picture.cc /usr/ports/multimedia/mjpegtools/files/patch-mpeg2enc::picture.cc --- /usr/ports/multimedia/mjpegtools.orig/files/patch-mpeg2enc::picture.cc Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/mjpegtools/files/patch-mpeg2enc::picture.cc Thu Jul 22 18:25:30 2004 @@ -0,0 +1,15 @@ +--- mpeg2enc/picture.cc.orig Thu Jul 22 18:23:54 2004 ++++ mpeg2enc/picture.cc Thu Jul 22 18:24:32 2004 +@@ -83,9 +83,9 @@ + } + + +- curref = new (uint8_t *)[5]; +- curorg = new (uint8_t *)[5]; +- pred = new (uint8_t *)[5]; ++ curref = new uint8_t * [5]; ++ curorg = new uint8_t * [5]; ++ pred = new uint8_t * [5]; + + for( i = 0 ; i<3; i++) + { --- mjpegtools-1.6.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 00: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 2F75C16A4CE for ; Fri, 23 Jul 2004 00:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CB0F43D31 for ; Fri, 23 Jul 2004 00:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N0UP4o008253 for ; Fri, 23 Jul 2004 00:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N0UPrK008252; Fri, 23 Jul 2004 00:30:25 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 00:30:25 GMT Message-Id: <200407230030.i6N0UPrK008252@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Johnson Subject: Re: ports/69452: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 00:30:26 -0000 The following reply was made to PR ports/69452; it has been noted by GNATS. From: Michael Johnson To: Mario Sergio Fujikawa Ferreira , michael johnson , FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69452: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] Date: Thu, 22 Jul 2004 20:21:59 -0400 --Apple-Mail-3-565769692 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Hi, Here is a patch that should be applied after the patch I already sent. mjpegtools wants libquicktime not openquicktime. Michael --Apple-Mail-3-565769692 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="mjpegtools.patch" Content-Disposition: attachment; filename=mjpegtools.patch diff -ruN mjpegtools.orig/Makefile mjpegtools/Makefile --- mjpegtools.orig/Makefile Thu Jul 22 20:15:50 2004 +++ mjpegtools/Makefile Thu Jul 22 20:16:16 2004 @@ -75,7 +75,7 @@ WITH_LIBMOVTAR= yes .endif # QUICKTIME -.if exists(${LOCALBASE}/lib/libopenquicktime.so.0) +.if exists(${LOCALBASE}/lib/libquicktime.so.0) WITH_QUICKTIME= yes .endif # SDL @@ -119,9 +119,9 @@ .endif # .ifdef(WITH_QUICKTIME) -LIB_DEPENDS+= openquicktime.0:${PORTSDIR}/multimedia/openquicktime +LIB_DEPENDS+= quicktime.0:${PORTSDIR}/multimedia/openquicktime -CONFIGURE_ARGS+= --with-quicktime=${LOCALBASE} +CONFIGURE_ARGS+= --with-quicktime .endif pre-everything:: diff -ruN mjpegtools.orig/pkg-plist mjpegtools/pkg-plist --- mjpegtools.orig/pkg-plist Thu Jul 22 20:15:50 2004 +++ mjpegtools/pkg-plist Thu Jul 22 20:18:57 2004 @@ -86,28 +86,23 @@ lib/liblavfile-1.6.so lib/liblavfile-1.6.so.2 lib/liblavfile.a -lib/liblavfile.la lib/liblavfile.so lib/liblavjpeg-1.6.so lib/liblavjpeg-1.6.so.2 lib/liblavjpeg.a -lib/liblavjpeg.la lib/liblavjpeg.so lib/liblavplay-1.6.so lib/liblavplay-1.6.so.2 lib/liblavplay.a -lib/liblavplay.la lib/liblavplay.so lib/libmjpegutils.a lib/libmpeg2encpp-1.6.so lib/libmpeg2encpp-1.6.so.2 lib/libmpeg2encpp.a -lib/libmpeg2encpp.la lib/libmpeg2encpp.so lib/libmplex2-1.6.so lib/libmplex2-1.6.so.2 lib/libmplex2.a -lib/libmplex2.la lib/libmplex2.so libdata/pkgconfig/mjpegtools.pc @unexec rmdir %D/libdata/pkgconfig 2>/dev/null || true --Apple-Mail-3-565769692-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 00: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 E855B16A4CE for ; Fri, 23 Jul 2004 00:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E144C43D45 for ; Fri, 23 Jul 2004 00:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N0USlK008280 for ; Fri, 23 Jul 2004 00:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N0USL4008279; Fri, 23 Jul 2004 00:30:28 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 00:30:28 GMT Message-Id: <200407230030.i6N0USL4008279@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: michael johnson Subject: Re: ports/69452: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: michael johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 00:30:29 -0000 The following reply was made to PR ports/69452; it has been noted by GNATS. From: michael johnson To: Mario Sergio Fujikawa Ferreira , michael johnson , FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69452: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] Date: Thu, 22 Jul 2004 20:23:44 -0400 typo Makefile -LIB_DEPENDS+= quicktime.0:${PORTSDIR}/multimedia/openquicktime +LIB_DEPENDS+= quicktime.0:${PORTSDIR}/multimedia/libquicktime On Jul 22, 2004, at 8:21 PM, Michael Johnson wrote: > Hi, > Here is a patch that should be applied after the patch I already > sent. mjpegtools wants libquicktime not openquicktime. > > Michael > > From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 01:20: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 D902A16A4CE for ; Fri, 23 Jul 2004 01:20:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA7D143D41 for ; Fri, 23 Jul 2004 01:20:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N1KHPt014744 for ; Fri, 23 Jul 2004 01:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N1KH1v014743; Fri, 23 Jul 2004 01:20:17 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 01:20:17 GMT Resent-Message-Id: <200407230120.i6N1KH1v014743@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D10116A4CE for ; Fri, 23 Jul 2004 01:12:54 +0000 (GMT) Received: from imf25aec.mail.bellsouth.net (imf25aec.mail.bellsouth.net [205.152.59.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id E509F43D2D for ; Fri, 23 Jul 2004 01:12:48 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf25aec.mail.bellsouth.netESMTP <20040723011244.IOFD1781.imf25aec.mail.bellsouth.net@gentoo.ahze.net> for ; Thu, 22 Jul 2004 21:12:44 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6N1CYos090844; Thu, 22 Jul 2004 21:12:34 -0400 (EDT) (envelope-from ahze) Message-Id: <200407230112.i6N1CYos090844@gentoo.ahze.net> Date: Thu, 22 Jul 2004 21:12:34 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69453: [MAINTAINER] multimedia/y4mscaler: [fix with gcc 3.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, 23 Jul 2004 01:20:18 -0000 >Number: 69453 >Category: ports >Synopsis: [MAINTAINER] multimedia/y4mscaler: [fix with gcc 3.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: Fri Jul 23 01:20:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Fix build with gcc 3.4 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- y4mscaler-0.6.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/y4mscaler.orig/files/patch-gcc34 /usr/ports/multimedia/y4mscaler/files/patch-gcc34 --- /usr/ports/multimedia/y4mscaler.orig/files/patch-gcc34 Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/y4mscaler/files/patch-gcc34 Thu Jul 22 21:10:33 2004 @@ -0,0 +1,158 @@ +--- graphics.H.orig Thu Jul 22 20:50:55 2004 ++++ graphics.H Thu Jul 22 21:00:44 2004 +@@ -338,7 +338,7 @@ + ysRatioPoint effective_sample_offset(Field field, Plane plane) const; + + const char *mode_to_string() const; +- void log_info(enum log_level_t level, const char *prefix) const; ++ void log_info(const log_level_t level, const char *prefix) const; + + int parse_mode(const char *s); + }; +--- kernels.C.orig Thu Jul 22 21:03:47 2004 ++++ kernels.C Thu Jul 22 21:03:59 2004 +@@ -316,7 +316,7 @@ + + ysKernelFactory::ysKernelFactory() + { +- _kernel_list = new (ysKernel*)[20]; ++ _kernel_list = new ysKernel* [20]; + _count = 0; + _kernel_list[_count++] = new BoxKernel; + _kernel_list[_count++] = new LinearKernel; +--- scaler-matto.C.orig Thu Jul 22 21:02:35 2004 ++++ scaler-matto.C Thu Jul 22 21:03:40 2004 +@@ -334,7 +334,7 @@ + DBG("setup kernel cache\n"); + DBG(" scale %f p0 %f\n", scale, p0); + +- KS = new (mattoScaler::kernelSet)[Dsize]; ++ KS = new mattoScaler::kernelSet [Dsize]; + minspot = Smax + 1; + maxspot = Smin - 1; + +@@ -348,7 +348,7 @@ + + int spot0 = (int)floor(Pq) - supp; + int spot1 = (int)floor(Pq) + supp + 1; +- KS[q].K = new (int)[spot1 - spot0 + 1]; ++ KS[q].K = new int [spot1 - spot0 + 1]; + KS[q].offset = 0; + KS[q].width = 0; + int valsum = 0; +@@ -477,7 +477,7 @@ + } else { + TframeX = Dx; + TframeY = _Ymaxspot - _Yminspot + 1; +- tempo = new (int)[TframeX * TframeY]; ++ tempo = new int [TframeX * TframeY]; + scaling_function = &mattoScaler::scale_x_then_y; + } + +@@ -573,7 +573,7 @@ + } else { + TframeY = Dy; + TframeX = _Xmaxspot - _Xminspot + 1; +- tempo = new (int)[TframeY * TframeX]; ++ tempo = new int [TframeY * TframeX]; + scaling_function = &mattoScaler::scale_y_then_x; + } + } +--- ysScaling.C.orig Thu Jul 22 21:04:17 2004 ++++ ysScaling.C Thu Jul 22 21:06:24 2004 +@@ -246,7 +246,7 @@ + _scaler_count = 1; + else + _scaler_count = 3; +- _scalers = new (ysScaler *)[_scaler_count]; ++ _scalers = new ysScaler *[_scaler_count]; + for (int i = 0; i < _scaler_count; i++) + _scalers[i] = _factory->new_scaler(); + +@@ -310,7 +310,7 @@ + _scaler_count = 1; + else + _scaler_count = 5; +- _scalers = new (ysScaler *)[_scaler_count]; ++ _scalers = new ysScaler *[_scaler_count]; + for (int i = 0; i < _scaler_count; i++) + _scalers[i] = _factory->new_scaler(); + +@@ -464,8 +464,8 @@ + y4m_init_frame_info(&frameinfo); + + for (int i = 0; i < 3; i++) { +- in_frame[i] = new (uint8_t)[source.stream().framedim(i).area()]; +- out_frame[i] = new (uint8_t)[target.stream().framedim(i).area()]; ++ in_frame[i] = new uint8_t[source.stream().framedim(i).area()]; ++ out_frame[i] = new uint8_t[target.stream().framedim(i).area()]; + if (_mono && (i != 0)) { + memset(out_frame[i], 128, + target.stream().framedim(i).area()); +@@ -530,9 +530,9 @@ + + y4m_init_frame_info(&frameinfo); + +- out_field_top[0] = new (uint8_t)[target.stream().fielddim(0).area()]; +- out_field_top[1] = new (uint8_t)[target.stream().fielddim(1).area()]; +- out_field_bottom[0] = new (uint8_t)[target.stream().fielddim(0).area()]; ++ out_field_top[0] = new uint8_t[target.stream().fielddim(0).area()]; ++ out_field_top[1] = new uint8_t[target.stream().fielddim(1).area()]; ++ out_field_bottom[0] = new uint8_t[target.stream().fielddim(0).area()]; + memset(out_field_top[0], + target.bgcolor().Y, target.stream().fielddim(0).area()); + memset(out_field_bottom[0], +@@ -543,9 +543,9 @@ + out_field_bottom[2] = out_field_top[1]; + memset(out_field_top[1], 128, target.stream().fielddim(1).area()); + } else { +- out_field_top[2] = new (uint8_t)[target.stream().fielddim(2).area()]; +- out_field_bottom[1] = new (uint8_t)[target.stream().fielddim(1).area()]; +- out_field_bottom[2] = new (uint8_t)[target.stream().fielddim(2).area()]; ++ out_field_top[2] = new uint8_t[target.stream().fielddim(2).area()]; ++ out_field_bottom[1] = new uint8_t[target.stream().fielddim(1).area()]; ++ out_field_bottom[2] = new uint8_t[target.stream().fielddim(2).area()]; + memset(out_field_top[1], + target.bgcolor().Cb, target.stream().fielddim(1).area()); + memset(out_field_bottom[1], +@@ -556,14 +556,14 @@ + target.bgcolor().Cr, target.stream().fielddim(2).area()); + } + +- in_field_top = new (uint8_t *)[3]; +- in_field_bottom = new (uint8_t *)[3]; +- in_field_other = new (uint8_t *)[3]; ++ in_field_top = new uint8_t *[3]; ++ in_field_bottom = new uint8_t *[3]; ++ in_field_other = new uint8_t *[3]; + + for (int i = 0; i < 3; i++) { +- in_field_top[i] = new (uint8_t)[source.stream().fielddim(i).area()]; +- in_field_bottom[i] = new (uint8_t)[source.stream().fielddim(i).area()]; +- in_field_other[i] = new (uint8_t)[source.stream().fielddim(i).area()]; ++ in_field_top[i] = new uint8_t[source.stream().fielddim(i).area()]; ++ in_field_bottom[i] = new uint8_t[source.stream().fielddim(i).area()]; ++ in_field_other[i] = new uint8_t[source.stream().fielddim(i).area()]; + } + + +--- ysStreamInfo.H.orig Thu Jul 22 21:01:43 2004 ++++ ysStreamInfo.H Thu Jul 22 21:02:25 2004 +@@ -86,7 +86,7 @@ + /* basic methods */ + int read_stream_header(int fdin); + int write_stream_header(int fdout); +- void log_info(enum log_level_t level, const char *prefix) const; ++ void log_info(const log_level_t level, const char *prefix) const; + + /* derivative methods */ + int parse_dimensions(const char *s); +@@ -97,7 +97,7 @@ + const char *ilace_to_string(int i); + + +-inline void ysStreamInfo::log_info(enum log_level_t level, ++inline void ysStreamInfo::log_info(const log_level_t level, + const char *prefix) const + { + y4m_log_stream_info(level, prefix, &_streaminfo); --- y4mscaler-0.6.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 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 7279C16A4CE; Fri, 23 Jul 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 5502A43D1F; Fri, 23 Jul 2004 01:55:25 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6N1tPCT016565; Fri, 23 Jul 2004 01:55:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N1tPIV016561; Fri, 23 Jul 2004 01:55:25 GMT (envelope-from linimon) Date: Fri, 23 Jul 2004 01:55:25 GMT From: Mark Linimon Message-Id: <200407230155.i6N1tPIV016561@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/69452: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 01:55:25 -0000 Synopsis: [PATCH] multimedia/mjpegtools: [Fix build with gcc3.4 & respect C[XX]FLAGS]] Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 23 01:55:16 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69452 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 02: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 60CA116A4CE for ; Fri, 23 Jul 2004 02:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4351543D2D for ; Fri, 23 Jul 2004 02:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N2APKS020692 for ; Fri, 23 Jul 2004 02:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N2APqW020690; Fri, 23 Jul 2004 02:10:25 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 02:10:25 GMT Resent-Message-Id: <200407230210.i6N2APqW020690@freefall.freebsd.org> 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 3B01816A4CE for ; Fri, 23 Jul 2004 02:01:32 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E6A843D55 for ; Fri, 23 Jul 2004 02:01:32 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 8F1831577F; Fri, 23 Jul 2004 10:03:01 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 59627-03; Fri, 23 Jul 2004 10:03:01 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id EC8D315755; Fri, 23 Jul 2004 10:03:00 +0800 (CST) Message-Id: <20040723020300.EC8D315755@mail.dragon2.net> Date: Fri, 23 Jul 2004 10:03:00 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: philip@p6m7g8.com Subject: ports/69454: [PATCH] graphics/GD: update to 2.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 02:10:25 -0000 >Number: 69454 >Category: ports >Synopsis: [PATCH] graphics/GD: update to 2.15 >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 Jul 23 02:10:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 2.15 - remove files/patch-GD.xs - perl5.6 is baseline now Port maintainer (philip@p6m7g8.com) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-GD-2.15.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/p5-GD/Makefile /home/clsung/p5-GD/Makefile --- /usr/ports/graphics/p5-GD/Makefile Tue Sep 9 20:58:37 2003 +++ /home/clsung/p5-GD/Makefile Fri Jul 23 10:00:21 2004 @@ -6,7 +6,7 @@ # PORTNAME= GD -PORTVERSION= 2.07 +PORTVERSION= 2.15 CATEGORIES= graphics perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= GD @@ -23,4 +23,10 @@ MAN3= GD.3 GD::Polyline.3 -.include +.include + +.if ${PERL_LEVEL} < 500601 +IGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again +.endif + +.include diff -ruN --exclude=CVS /usr/ports/graphics/p5-GD/distinfo /home/clsung/p5-GD/distinfo --- /usr/ports/graphics/p5-GD/distinfo Thu Apr 1 16:39:48 2004 +++ /home/clsung/p5-GD/distinfo Fri Jul 23 09:58:23 2004 @@ -1,2 +1,2 @@ -MD5 (GD-2.07.tar.gz) = 7a44d308e082471e824fcbff044d8300 -SIZE (GD-2.07.tar.gz) = 153759 +MD5 (GD-2.15.tar.gz) = 8afc6be5a7a5be545840ff11fb3b02cf +SIZE (GD-2.15.tar.gz) = 156948 diff -ruN --exclude=CVS /usr/ports/graphics/p5-GD/files/patch-GD.xs /home/clsung/p5-GD/files/patch-GD.xs --- /usr/ports/graphics/p5-GD/files/patch-GD.xs Tue Aug 19 00:15:07 2003 +++ /home/clsung/p5-GD/files/patch-GD.xs Thu Jan 1 08:00:00 1970 @@ -1,33 +0,0 @@ ---- GD.xs.orig Thu Apr 24 07:00:11 2003 -+++ GD.xs Wed May 14 17:33:13 2003 -@@ -18,6 +18,30 @@ - /* Copyright 1995 - 1998, Lincoln D. Stein. See accompanying README file for - usage restrictions */ - -+#ifndef PERL_REVISION -+# ifndef __PATCHLEVEL_H_INCLUDED__ -+# include "patchlevel.h" -+# endif -+# ifndef PERL_REVISION -+# define PERL_REVISION (5) -+ /* Replace: 1 */ -+# define PERL_VERSION PATCHLEVEL -+# define PERL_SUBVERSION SUBVERSION -+ /* Replace PERL_PATCHLEVEL with PERL_VERSION */ -+ /* Replace: 0 */ -+# endif -+#endif -+ -+#if (PERL_VERSION == 5) && (PERL_SUBVERSION==3) -+#ifndef PL_na -+# define PL_na na -+#endif -+ -+#ifndef SvPV_nolen -+# define SvPV_nolen(sv) SvPV(sv, PL_na) -+#endif -+#endif /* 5.00503 */ -+ - static int - not_here(char *s) - { --- p5-GD-2.15.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 02:20: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 E811316A4D1 for ; Fri, 23 Jul 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 CA61943D46 for ; Fri, 23 Jul 2004 02:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N2KK28020987 for ; Fri, 23 Jul 2004 02:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N2KKbQ020964; Fri, 23 Jul 2004 02:20:20 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 02:20:20 GMT Resent-Message-Id: <200407230220.i6N2KKbQ020964@freefall.freebsd.org> 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 ADDC816A4CE for ; Fri, 23 Jul 2004 02:14:38 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FD1843D1F for ; Fri, 23 Jul 2004 02:14:38 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 0D19715751 for ; Fri, 23 Jul 2004 10:16:08 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 63714-05 for ; Fri, 23 Jul 2004 10:16:07 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 6E9F415630; Fri, 23 Jul 2004 10:16:07 +0800 (CST) Message-Id: <20040723021607.6E9F415630@mail.dragon2.net> Date: Fri, 23 Jul 2004 10:16:07 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69455: [PATCH] devel/p5-File-Binary: update to 1.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, 23 Jul 2004 02:20:21 -0000 >Number: 69455 >Category: ports >Synopsis: [PATCH] devel/p5-File-Binary: update to 1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 02:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.2 - add new dependency of p5-IO-stringy, p5-Test-Simple - modify pkg-descr Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-File-Binary-1.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-File-Binary/Makefile /home/clsung/p5-File-Binary/Makefile --- /usr/ports/devel/p5-File-Binary/Makefile Tue Oct 14 23:00:22 2003 +++ /home/clsung/p5-File-Binary/Makefile Fri Jul 23 10:11:35 2004 @@ -6,7 +6,7 @@ # PORTNAME= File-Binary -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= File @@ -14,6 +14,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Perl interface to modify and read binary files + +BUILD_DEPENDS= ${SITE_PERL}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy \ + ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple +RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes diff -ruN --exclude=CVS /usr/ports/devel/p5-File-Binary/distinfo /home/clsung/p5-File-Binary/distinfo --- /usr/ports/devel/p5-File-Binary/distinfo Sat Jan 31 14:16:36 2004 +++ /home/clsung/p5-File-Binary/distinfo Fri Jul 23 10:09:27 2004 @@ -1,2 +1,2 @@ -MD5 (File-Binary-1.1.tar.gz) = 2b0e47b1b2297739e2f75c26bff249e4 -SIZE (File-Binary-1.1.tar.gz) = 19580 +MD5 (File-Binary-1.2.tar.gz) = 49f3e7d534facadb7714fe1ca0a02e87 +SIZE (File-Binary-1.2.tar.gz) = 19680 diff -ruN --exclude=CVS /usr/ports/devel/p5-File-Binary/pkg-descr /home/clsung/p5-File-Binary/pkg-descr --- /usr/ports/devel/p5-File-Binary/pkg-descr Thu Jan 4 07:49:29 2001 +++ /home/clsung/p5-File-Binary/pkg-descr Fri Jul 23 10:12:55 2004 @@ -1,6 +1,8 @@ File::Binary is a perl module that provides an interface to modify and read binary files. +WWW: http://search.cpan.org/dist/File-Binary/ + Author: Simon Wistow --will --- p5-File-Binary-1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 02: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 4E83A16A4D1 for ; Fri, 23 Jul 2004 02:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 330E643D5C for ; Fri, 23 Jul 2004 02:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N2KORb021018 for ; Fri, 23 Jul 2004 02:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N2KOdU021017; Fri, 23 Jul 2004 02:20:24 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 02:20:24 GMT Resent-Message-Id: <200407230220.i6N2KOdU021017@freefall.freebsd.org> 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 42D6416A4CE; Fri, 23 Jul 2004 02:19:54 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 149B443D5A; Fri, 23 Jul 2004 02:19:54 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id BCDED15751; Fri, 23 Jul 2004 10:21:23 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 59627-08; Fri, 23 Jul 2004 10:21:23 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 1784515630; Fri, 23 Jul 2004 10:21:23 +0800 (CST) Message-Id: <20040723022123.1784515630@mail.dragon2.net> Date: Fri, 23 Jul 2004 10:21:23 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: kevlo@FreeBSD.org Subject: ports/69456: [PATCH] devel/String-Similarity: update to 1.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 02:20:24 -0000 >Number: 69456 >Category: ports >Synopsis: [PATCH] devel/String-Similarity: update to 1.00 >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 Jul 23 02:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 1.00 - use 1.00 instead of 1 in case PORTEPOCH bumping. - perl5.8 required Port maintainer (kevlo@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-String-Similarity-1.00.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-String-Similarity/Makefile /home/clsung/p5-String-Similarity/Makefile --- /usr/ports/devel/p5-String-Similarity/Makefile Fri Oct 24 23:13:58 2003 +++ /home/clsung/p5-String-Similarity/Makefile Fri Jul 23 10:19:47 2004 @@ -6,11 +6,12 @@ # PORTNAME= String-Similarity -PORTVERSION= 0.02 +PORTVERSION= 1.00 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= String PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.0+$//} MAINTAINER= kevlo@FreeBSD.org COMMENT= Perl module that calculates the similarity of two strings @@ -19,4 +20,10 @@ MAN3= String::Similarity.3 -.include +.include + +.if ${PERL_LEVEL} < 500800 +IGNORE= This port requires perl 5.8.0 or later. Install lang/perl5.8 then try again +.endif + +.include diff -ruN --exclude=CVS /usr/ports/devel/p5-String-Similarity/distinfo /home/clsung/p5-String-Similarity/distinfo --- /usr/ports/devel/p5-String-Similarity/distinfo Thu Apr 1 16:39:24 2004 +++ /home/clsung/p5-String-Similarity/distinfo Fri Jul 23 10:18:21 2004 @@ -1,2 +1,2 @@ -MD5 (String-Similarity-0.02.tar.gz) = 0fe22428831653557c304489e08d17ec -SIZE (String-Similarity-0.02.tar.gz) = 13978 +MD5 (String-Similarity-1.tar.gz) = 6a57128e7d4365a89b57f243cb50b072 +SIZE (String-Similarity-1.tar.gz) = 14911 --- p5-String-Similarity-1.00.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 02: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 BC9F116A4CE for ; Fri, 23 Jul 2004 02:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F03C43D53 for ; Fri, 23 Jul 2004 02:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N2eNDu022513 for ; Fri, 23 Jul 2004 02:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N2eNu0022511; Fri, 23 Jul 2004 02:40:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 02:40:23 GMT Resent-Message-Id: <200407230240.i6N2eNu0022511@freefall.freebsd.org> 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 6B28316A4CE for ; Fri, 23 Jul 2004 02:31:13 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3674B43D41 for ; Fri, 23 Jul 2004 02:31:13 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 73DFF15751 for ; Fri, 23 Jul 2004 10:32:42 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 63714-08 for ; Fri, 23 Jul 2004 10:32:42 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id CF29615630; Fri, 23 Jul 2004 10:32:41 +0800 (CST) Message-Id: <20040723023241.CF29615630@mail.dragon2.net> Date: Fri, 23 Jul 2004 10:32:41 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69457: [PATCH] lang/Tcl: update to 0.81 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 02:40:24 -0000 >Number: 69457 >Category: ports >Synopsis: [PATCH] lang/Tcl: update to 0.81 >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 Jul 23 02:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - Update to 0.81 - force Tcl 8.4 as the minimum version - remove files/patch-aa Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Tcl-0.81.patch begins here --- diff -ruN --exclude=CVS /usr/ports/lang/p5-Tcl/Makefile /home/clsung/p5-Tcl/Makefile --- /usr/ports/lang/p5-Tcl/Makefile Fri Oct 24 23:14:31 2003 +++ /home/clsung/p5-Tcl/Makefile Fri Jul 23 10:29:44 2004 @@ -6,7 +6,7 @@ # PORTNAME= Tcl -PORTVERSION= b2 +PORTVERSION= 0.81 CATEGORIES= lang perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Tcl @@ -15,12 +15,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A Tcl extension module for Perl5 -LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 +LIB_DEPENDS= tcl84.1:${PORTSDIR}/lang/tcl84 PERL_CONFIGURE= yes -CONFIGURE_ARGS+= POLLUTE=1 -CONFIGURE_ENV+= PREFIX=${PREFIX} -WRKSRC= ${WRKDIR}/${PORTNAME} +CONFIGURE_ARGS+= --tclsh tclsh8.4 MAN3= Tcl.3 diff -ruN --exclude=CVS /usr/ports/lang/p5-Tcl/distinfo /home/clsung/p5-Tcl/distinfo --- /usr/ports/lang/p5-Tcl/distinfo Sat Jan 31 14:17:12 2004 +++ /home/clsung/p5-Tcl/distinfo Fri Jul 23 10:26:02 2004 @@ -1,2 +1,2 @@ -MD5 (Tcl-b2.tar.gz) = b0c8dab5b5cff9afec14bf8f18206a0a -SIZE (Tcl-b2.tar.gz) = 7935 +MD5 (Tcl-0.81.tar.gz) = 15adaeab4de147f7e90120592d4fa1e8 +SIZE (Tcl-0.81.tar.gz) = 26652 diff -ruN --exclude=CVS /usr/ports/lang/p5-Tcl/files/patch-aa /home/clsung/p5-Tcl/files/patch-aa --- /usr/ports/lang/p5-Tcl/files/patch-aa Mon Aug 20 23:48:58 2001 +++ /home/clsung/p5-Tcl/files/patch-aa Thu Jan 1 08:00:00 1970 @@ -1,11 +0,0 @@ ---- Makefile.PL.orig Sat Aug 29 12:25:14 1998 -+++ Makefile.PL Sat Aug 29 12:25:52 1998 -@@ -2,6 +2,6 @@ - WriteMakefile( - NAME => "Tcl", - VERSION => "b2", -- LIBS => ["-ltcl -lm"], -- INC => "-I/usr/local/include -I/usr/include/tcl" -+ LIBS => ["-L$ENV{PREFIX}/lib -ltcl82 -lm"], -+ INC => "-I\${PREFIX}/include -I\${PREFIX}/include/tcl8.2" - ); --- p5-Tcl-0.81.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 02: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 153C216A4CF for ; Fri, 23 Jul 2004 02:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2D2743D45 for ; Fri, 23 Jul 2004 02:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N2eNL9022526 for ; Fri, 23 Jul 2004 02:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N2eNZq022525; Fri, 23 Jul 2004 02:40:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 02:40:23 GMT Resent-Message-Id: <200407230240.i6N2eNZq022525@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Pelleg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6857516A4CE for ; Fri, 23 Jul 2004 02:33:25 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A91A43D46 for ; Fri, 23 Jul 2004 02:33:25 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6N2XONt065851 for ; Fri, 23 Jul 2004 02:33:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6N2XOEZ065850; Fri, 23 Jul 2004 02:33:24 GMT (envelope-from nobody) Message-Id: <200407230233.i6N2XOEZ065850@www.freebsd.org> Date: Fri, 23 Jul 2004 02:33:24 GMT From: Dan Pelleg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69458: dovecot: typo in sample conf 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, 23 Jul 2004 02:40:24 -0000 >Number: 69458 >Category: ports >Synopsis: dovecot: typo in sample conf file >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 Jul 23 02:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dan Pelleg >Release: 4.10 >Organization: >Environment: >Description: mail/dovecot 0.99.10.6 - the sample conf file contains names of the x.509 cert files as /var/dovecot/ssl/{certs,private}/dovecot.pem However the mkcert.sh script creats them as /var/dovecot/ssl/{certs,private}/imapd.pem >How-To-Repeat: uncomment ssl*file lines in PREFIX/etc/dovecot.conf follow instructions to create cert >Fix: Change the sample lines or the mkcert.sh script >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 02: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 59DD716A4CE for ; Fri, 23 Jul 2004 02:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E7C743D45 for ; Fri, 23 Jul 2004 02:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N2eO46022539 for ; Fri, 23 Jul 2004 02:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N2eO9U022538; Fri, 23 Jul 2004 02:40:24 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 02:40:24 GMT Resent-Message-Id: <200407230240.i6N2eO9U022538@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Luke Hollins Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D83A16A4CE for ; Fri, 23 Jul 2004 02:37:28 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F55343D2F for ; Fri, 23 Jul 2004 02:37:28 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6N2bRYc066371 for ; Fri, 23 Jul 2004 02:37:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6N2bRdi066370; Fri, 23 Jul 2004 02:37:27 GMT (envelope-from nobody) Message-Id: <200407230237.i6N2bRdi066370@www.freebsd.org> Date: Fri, 23 Jul 2004 02:37:27 GMT From: Luke Hollins To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69459: xfe port is outdated X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 02:40:24 -0000 >Number: 69459 >Category: ports >Synopsis: xfe port is outdated >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: Fri Jul 23 02:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Luke Hollins >Release: 5.2.1 >Organization: >Environment: FreeBSD phoenix.zer0.net 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #1: Wed May 26 11:14:01 EDT 2004 root@phoenix.zer0.net:/usr/obj/usr/src/sys/Phoenix i386 >Description: The port is out of date. >How-To-Repeat: >Fix: update PORTREVISION and the distinfo file >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 03:25: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 D73B816A4CE; Fri, 23 Jul 2004 03:25:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B751743D46; Fri, 23 Jul 2004 03:25:24 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6N3POPs028553; Fri, 23 Jul 2004 03:25:24 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N3POrP028549; Fri, 23 Jul 2004 03:25:24 GMT (envelope-from ijliao) Date: Fri, 23 Jul 2004 03:25:24 GMT From: Ying-Chieh Liao Message-Id: <200407230325.i6N3POrP028549@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69455: [PATCH] devel/p5-File-Binary: update to 1.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, 23 Jul 2004 03:25:25 -0000 Synopsis: [PATCH] devel/p5-File-Binary: update to 1.2 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Fri Jul 23 03:25:16 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69455 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 03:25: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 0B05116A4CE; Fri, 23 Jul 2004 03:25:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E18B343D3F; Fri, 23 Jul 2004 03:25:52 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6N3Pq3L028870; Fri, 23 Jul 2004 03:25:52 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N3PqOl028866; Fri, 23 Jul 2004 03:25:52 GMT (envelope-from ijliao) Date: Fri, 23 Jul 2004 03:25:52 GMT From: Ying-Chieh Liao Message-Id: <200407230325.i6N3PqOl028866@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kevlo@FreeBSD.org Subject: Re: ports/69456: [PATCH] devel/String-Similarity: update to 1.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 03:25:53 -0000 Synopsis: [PATCH] devel/String-Similarity: update to 1.00 Responsible-Changed-From-To: freebsd-ports-bugs->kevlo Responsible-Changed-By: ijliao Responsible-Changed-When: Fri Jul 23 03:25:41 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69456 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 03:28: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 B6D1C16A4CE; Fri, 23 Jul 2004 03:28:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 916E043D2D; Fri, 23 Jul 2004 03:28:07 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6N3S7nq028941; Fri, 23 Jul 2004 03:28:07 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N3S6ww028937; Fri, 23 Jul 2004 03:28:06 GMT (envelope-from ijliao) Date: Fri, 23 Jul 2004 03:28:06 GMT From: Ying-Chieh Liao Message-Id: <200407230328.i6N3S6ww028937@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69457: [PATCH] lang/Tcl: update to 0.81 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 03:28:07 -0000 Synopsis: [PATCH] lang/Tcl: update to 0.81 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Fri Jul 23 03:27:57 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69457 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 03:39: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 E206016A4CE; Fri, 23 Jul 2004 03:39:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3D0F43D1D; Fri, 23 Jul 2004 03:39:40 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6N3deGV030417; Fri, 23 Jul 2004 03:39:40 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N3deGb030413; Fri, 23 Jul 2004 03:39:40 GMT (envelope-from ijliao) Date: Fri, 23 Jul 2004 03:39:40 GMT From: Ying-Chieh Liao Message-Id: <200407230339.i6N3deGb030413@freefall.freebsd.org> To: ahze@ahze.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69453: [MAINTAINER] multimedia/y4mscaler: [fix with gcc 3.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, 23 Jul 2004 03:39:41 -0000 Synopsis: [MAINTAINER] multimedia/y4mscaler: [fix with gcc 3.4] State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Fri Jul 23 03:39:34 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69453 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 03: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 AA23016A4CE; Fri, 23 Jul 2004 03:42:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C23943D31; Fri, 23 Jul 2004 03:42:29 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6N3gTT0030653; Fri, 23 Jul 2004 03:42:29 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N3gTnK030649; Fri, 23 Jul 2004 03:42:29 GMT (envelope-from ijliao) Date: Fri, 23 Jul 2004 03:42:29 GMT From: Ying-Chieh Liao Message-Id: <200407230342.i6N3gTnK030649@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/69447: portupgrade: py-musicbrain - 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: Fri, 23 Jul 2004 03:42:29 -0000 Synopsis: portupgrade: py-musicbrain - unbroke port Responsible-Changed-From-To: freebsd-ports-bugs->knu Responsible-Changed-By: ijliao Responsible-Changed-When: Fri Jul 23 03:42:15 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69447 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 04:00: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 BCE5F16A4CE for ; Fri, 23 Jul 2004 04:00:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9CF443D5C for ; Fri, 23 Jul 2004 04:00:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N40gL1031176 for ; Fri, 23 Jul 2004 04:00:42 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N40gtO031171; Fri, 23 Jul 2004 04:00:42 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 04:00:42 GMT Resent-Message-Id: <200407230400.i6N40gtO031171@freefall.freebsd.org> 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 Yeske Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CAD316A4CE for ; Fri, 23 Jul 2004 03:55:33 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EED643D45 for ; Fri, 23 Jul 2004 03:55:33 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6N3tXhP043662 for ; Fri, 23 Jul 2004 03:55:33 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6N3tX1d043661; Fri, 23 Jul 2004 03:55:33 GMT (envelope-from nobody) Message-Id: <200407230355.i6N3tX1d043661@www.freebsd.org> Date: Fri, 23 Jul 2004 03:55:33 GMT From: David Yeske To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69461: devel/ode respect CC / CXX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 04:00:42 -0000 >Number: 69461 >Category: ports >Synopsis: devel/ode respect CC / CXX >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 Jul 23 04:00:42 GMT 2004 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: HEAD >Organization: >Environment: FreeBSD shuttle 5.2-CURRENT FreeBSD 5.2-CURRENT #3: Sat Jul 10 05:17:46 EDT 2004 root@shuttle:/usr/obj/usr/src/sys/SHUTTLE i386 >Description: respect compiler >How-To-Repeat: >Fix: http://futurebsd.sourceforge.net/freebsd/ports/patch-ode >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:00: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 318EF16A4CF for ; Fri, 23 Jul 2004 05:00:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A77843D1D for ; Fri, 23 Jul 2004 05:00:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N50bSq041581 for ; Fri, 23 Jul 2004 05:00:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N50ba5041580; Fri, 23 Jul 2004 05:00:37 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 05:00:37 GMT Message-Id: <200407230500.i6N50ba5041580@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Chris Knight" Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Chris Knight List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 05:00:38 -0000 The following reply was made to PR ports/69430; it has been noted by GNATS. From: "Chris Knight" To: , Cc: Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build Date: Fri, 23 Jul 2004 14:31:58 +1000 Howdy, tr in 5.2.1 and 5-CURRENT is buggy when LANG is set to some of the different ISO8859-x locales and using '[a-z]' '[A-Z]' transliteration. 'a-z' 'A-Z' and '[:lower:]' '[:upper:]' transliteration work as expected. Please commit the above patch without the PORTREVISION changes. Thanks! Regards, Chris Knight Systems Administrator E-Easy Tel: +61 3 6334 9995 Fax: +61 3 6331 7032 Mob: +61 419 528 795 Web: http://www.e-easy.com.au From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05: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 0D8C316A4CF for ; Fri, 23 Jul 2004 05:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00D4643D39 for ; Fri, 23 Jul 2004 05:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N5ALnE045478 for ; Fri, 23 Jul 2004 05:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5ALfc045477; Fri, 23 Jul 2004 05:10:21 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 05:10:21 GMT Resent-Message-Id: <200407230510.i6N5ALfc045477@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Tom McLaughlin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED71816A4CE for ; Fri, 23 Jul 2004 05:04:55 +0000 (GMT) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 5DCEB43D31 for ; Fri, 23 Jul 2004 05:04:53 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 10723 invoked from network); 23 Jul 2004 05:04:44 -0000 Received: from compass.straycat.dhs.org (192.168.1.32) by alexandria.straycat.dhs.org with SMTP; 23 Jul 2004 05:04:44 -0000 Message-Id: <1090559084.0@compass.straycat.dhs.org> Date: Fri, 23 Jul 2004 01:04:44 -0400 From: "Tom McLaughlin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 Subject: ports/69462: New port: audio/muine - Mono based Gnome audio player X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:10:22 -0000 >Number: 69462 >Category: ports >Synopsis: New port: audio/muine - Mono based Gnome audio player >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 Jul 23 05:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tom McLaughlin >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD 5.2-CURRENT #0: Tue Jul 20 02:50:04 EDT 2004 root@compass.straycat.dhs.org:/usr/obj/usr/src/sys/COMPASS >Description: Attached is a port for Muine which is a Gnome audio player using Mono. Muine has been tested and works fine on -CURRENT. >How-To-Repeat: >Fix: --- muine-0.6.3.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: # # muine # muine/Makefile # muine/distinfo # muine/pkg-descr # muine/files # muine/files/patch-src_muine.exe.config.in # muine/files/patch-ltmain.sh # muine/pkg-plist # echo c - muine mkdir -p muine > /dev/null 2>&1 echo x - muine/Makefile sed 's/^X//' >muine/Makefile << 'END-of-muine/Makefile' X# New ports collection makefile for: muine X# Date created: 20040615 X# Whom: Tom McLaughlin X# X# $FreeBSD$ X# X XPORTNAME= muine XPORTVERSION= 0.6.3 XCATEGORIES= audio gnome XMASTER_SITES= http://muine.gooeylinux.org/ X XMAINTAINER= tmclaugh@sdf.lonestar.org XCOMMENT= Mono based Gnome audio player X XUSE_X_PREFIX= yes XUSE_GNOME= gnomeprefix gnomehack intltool libgnomeui XGNU_CONFIGURE= yes XUSE_REINPLACE= yes X XLIB_DEPENDS= xine.9:${PORTSDIR}/multimedia/libxine \ X FLAC.5:${PORTSDIR}/audio/flac \ X id3tag.2:${PORTSDIR}/audio/libid3tag \ X mono.0:${PORTSDIR}/lang/mono \ X gdbm:${PORTSDIR}/databases/gdbm X XBUILD_DEPENDS= /usr/local/libdata/pkgconfig/gtk-sharp.pc:${PORTSDIR}/x11-toolkits/gtk-sharp X XRUN_DEPENDS= /usr/local/libdata/pkgconfig/gtk-sharp.pc:${PORTSDIR}/x11-toolkits/gtk-sharp X XCONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib" X XGLIB_MIVER= 400 X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%GLIB_MIVER%%|${GLIB_MIVER}|g' \ X ${WRKSRC}/src/muine.exe.config.in X X.include END-of-muine/Makefile echo x - muine/distinfo sed 's/^X//' >muine/distinfo << 'END-of-muine/distinfo' XMD5 (muine-0.6.3.tar.gz) = dc7923e1e0ba87f0303bc30f14f604e3 XSIZE (muine-0.6.3.tar.gz) = 624566 END-of-muine/distinfo echo x - muine/pkg-descr sed 's/^X//' >muine/pkg-descr << 'END-of-muine/pkg-descr' XMuine is a music player for GNOME using Mono. It features: X X* A simple, intuitive user interface X* Ogg Vorbis, FLAC and MP3 music playback support X* Automatic album-cover fetching X* Support for embedded ID3v2 album images X* ReplayGain support X* Support for multiple artist and performer tags per song X* A system tray icon X* Translations into many languages X XWWW: http://muine.gooeylinux.org/ END-of-muine/pkg-descr echo c - muine/files mkdir -p muine/files > /dev/null 2>&1 echo x - muine/files/patch-src_muine.exe.config.in sed 's/^X//' >muine/files/patch-src_muine.exe.config.in << 'END-of-muine/files/patch-src_muine.exe.config.in' X--- src/muine.exe.config.in.orig Sat Jun 5 12:48:33 2004 X+++ src/muine.exe.config.in Thu Jul 15 21:59:47 2004 X@@ -1,6 +1,6 @@ X X- X- X+ X+ X X X END-of-muine/files/patch-src_muine.exe.config.in echo x - muine/files/patch-ltmain.sh sed 's/^X//' >muine/files/patch-ltmain.sh << 'END-of-muine/files/patch-ltmain.sh' X--- ltmain.sh.orig Tue Sep 23 11:24:19 2003 X+++ ltmain.sh Thu Jul 15 23:01:53 2004 X@@ -1277,7 +1277,7 @@ X esac X elif test "X$arg" = "X-lc_r"; then X case $host in X- *-*-openbsd* | *-*-freebsd*) X+ *-*-openbsd* | *-*-freebsd4*) X # Do not include libc_r directly, use -pthread flag. X continue X ;; X@@ -1287,8 +1287,16 @@ X continue X ;; X X+ -pthread) X+ compile_command="$compile_command -pthread" X+ finalize_command="$finalize_command -pthread" X+ compiler_flags="$compiler_flags -pthread" X+ continue X+ ;; X+ X -module) X module=yes X+ build_old_libs=no X continue X ;; X X@@ -2997,6 +3005,9 @@ X # problems, so we reset it completely X verstring= X ;; X+ *-*-freebsd*) X+ # FreeBSD doesn't need this... X+ ;; X *) X verstring="0.0" X ;; X@@ -5425,10 +5436,12 @@ X fi X X # Install the pseudo-library for information purposes. X+ if /usr/bin/false; then X name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` X instname="$dir/$name"i X $show "$install_prog $instname $destdir/$name" X $run eval "$install_prog $instname $destdir/$name" || exit $? X+ fi X X # Maybe install the static library, too. X test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" END-of-muine/files/patch-ltmain.sh echo x - muine/pkg-plist sed 's/^X//' >muine/pkg-plist << 'END-of-muine/pkg-plist' Xbin/muine X@unexec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-uninstall-rule %D/etc/gconf/schemas/muine.schemas > /dev/null || /usr/bin/true X@exec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-install-rule %D/etc/gconf/schemas/muine.schemas > /dev/null || /usr/bin/true Xlib/muine/AmazonSearchService.dll Xlib/muine/libmuine.a Xlib/muine/libmuine.so Xlib/muine/libmuine.so.0 Xlib/muine/muine.exe Xlib/muine/muine.exe.config Xshare/gnome/application-registry/muine.applications Xshare/gnome/applications/muine.desktop Xshare/gnome/pixmaps/muine.png Xshare/locale/bg/LC_MESSAGES/muine.mo Xshare/locale/ca/LC_MESSAGES/muine.mo Xshare/locale/cs/LC_MESSAGES/muine.mo Xshare/locale/da/LC_MESSAGES/muine.mo Xshare/locale/de/LC_MESSAGES/muine.mo Xshare/locale/en_CA/LC_MESSAGES/muine.mo Xshare/locale/en_GB/LC_MESSAGES/muine.mo Xshare/locale/es/LC_MESSAGES/muine.mo Xshare/locale/eu/LC_MESSAGES/muine.mo Xshare/locale/fr/LC_MESSAGES/muine.mo Xshare/locale/hr/LC_MESSAGES/muine.mo Xshare/locale/hu/LC_MESSAGES/muine.mo Xshare/locale/is/LC_MESSAGES/muine.mo Xshare/locale/ja/LC_MESSAGES/muine.mo Xshare/locale/ko/LC_MESSAGES/muine.mo Xshare/locale/nl/LC_MESSAGES/muine.mo Xshare/locale/no/LC_MESSAGES/muine.mo Xshare/locale/pl/LC_MESSAGES/muine.mo Xshare/locale/pt/LC_MESSAGES/muine.mo Xshare/locale/pt_BR/LC_MESSAGES/muine.mo Xshare/locale/sr/LC_MESSAGES/muine.mo Xshare/locale/sr@Latn/LC_MESSAGES/muine.mo Xshare/locale/sv/LC_MESSAGES/muine.mo X@dirrm lib/muine END-of-muine/pkg-plist exit --- muine-0.6.3.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:20: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 F1E4616A4CF for ; Fri, 23 Jul 2004 05:20:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE25B43D5F for ; Fri, 23 Jul 2004 05:20:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N5KLg0045697 for ; Fri, 23 Jul 2004 05:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5KLRH045696; Fri, 23 Jul 2004 05:20:21 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 05:20:21 GMT Resent-Message-Id: <200407230520.i6N5KLRH045696@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5796516A4CE; Fri, 23 Jul 2004 05:13:42 +0000 (GMT) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFFE643D2D; Fri, 23 Jul 2004 05:13:41 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf21aec.mail.bellsouth.netESMTP <20040723051340.WAUH1792.imf21aec.mail.bellsouth.net@gentoo.ahze.net>; Fri, 23 Jul 2004 01:13:40 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6N5DeLQ091756; Fri, 23 Jul 2004 01:13:40 -0400 (EDT) (envelope-from ahze) Message-Id: <200407230513.i6N5DeLQ091756@gentoo.ahze.net> Date: Fri, 23 Jul 2004 01:13:40 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: arved@FreeBSD.org Subject: ports/69463: [PATCH] irc/BitchX: [gcc3.4 fix] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:20:22 -0000 >Number: 69463 >Category: ports >Synopsis: [PATCH] irc/BitchX: [gcc3.4 fix] >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 Jul 23 05:20:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - gcc3.4 fix Port maintainer (arved@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- BitchX-1.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/irc/bitchx.orig/files/patch-source_term_c /usr/ports/irc/bitchx/files/patch-source_term_c --- /usr/ports/irc/bitchx.orig/files/patch-source_term_c Wed Dec 31 19:00:00 1969 +++ /usr/ports/irc/bitchx/files/patch-source_term_c Fri Jul 23 01:11:21 2004 @@ -0,0 +1,10 @@ +--- source/term.c.orig Fri Jul 23 01:10:02 2004 ++++ source/term.c Fri Jul 23 01:11:02 2004 +@@ -92,7 +92,6 @@ + #endif + + extern char *getenv(); +-extern char *tparm(); + + /* + * The old code assumed termcap. termcap is almost always present, but on --- BitchX-1.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:30: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 669BA16A4CF for ; Fri, 23 Jul 2004 05:30:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F1F43D45 for ; Fri, 23 Jul 2004 05:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N5UKk7046474 for ; Fri, 23 Jul 2004 05:30:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5UKRP046473; Fri, 23 Jul 2004 05:30:20 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 05:30:20 GMT Resent-Message-Id: <200407230530.i6N5UKRP046473@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vadim Mikhailov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4F3C16A4CE for ; Fri, 23 Jul 2004 05:20:15 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD4E943D49 for ; Fri, 23 Jul 2004 05:20:15 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6N5KDx2051536 for ; Fri, 23 Jul 2004 05:20:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6N5KDXe051535; Fri, 23 Jul 2004 05:20:13 GMT (envelope-from nobody) Message-Id: <200407230520.i6N5KDXe051535@www.freebsd.org> Date: Fri, 23 Jul 2004 05:20:13 GMT From: Vadim Mikhailov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69464: php4-wddx broken - php4 cannot load wddx.so X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:30:20 -0000 >Number: 69464 >Category: ports >Synopsis: php4-wddx broken - php4 cannot load wddx.so >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 05:30:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Vadim Mikhailov >Release: 5.2.1-RELEASE-p9 >Organization: >Environment: FreeBSD vortex.xxx.com 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Tue Jul 6 14:50:30 PDT 2004 mvp@vortex.xxx.com:/usr/obj/usr/src/sys/VORTEX i386 >Description: After complete reinstall of apache2, php4 and php4-extensions as of July 22, 2004, PHP does not seem to be able to use new wddx.so. I moved all extension=xxx.so lines from the bottom of php.ini where they were errorneously put by php4-extensions installer to the correct section. Now my /usr/local/etc/php.ini looks like this: extension=ctype.so extension=imap.so extension=openssl.so extension=pgsql.so extension=pcre.so extension=posix.so extension=session.so extension=tokenizer.so extension=zlib.so extension=bcmath.so extension=calendar.so extension=exif.so extension=ftp.so extension=gd.so extension=gettext.so extension=imagick.so extension=ldap.so extension=mcrypt.so extension=mhash.so extension=mysql.so extension=overload.so extension=readline.so extension=shmop.so extension=xmlrpc.so extension=xml.so extension=wddx.so Now after I restart apache all modules work fine except wddx.so. PHP spits this in apache httpd-error.log: PHP Warning: Unknown(): Invalid library (maybe not a PHP library) 'wddx.so' in Unknown on line 0 [Thu Jul 22 19:33:23 2004] [notice] Apache/2.0.50 (FreeBSD) PHP/4.3.8 mod_ssl/2.0.50 OpenSSL/0.9.7d configured -- resuming normal operations WDDX also does not show up in phpinfo output. If I comment out wddx.so in php.ini, I don't see this warning, and phpinfo() confirms that all other PHP modules are loaded ok. >How-To-Repeat: cvsup ports as of July 22, 2004 on FreeBSD system, install apache2, php4 and php4-wddx ports. Start apache and see httpd-error.log that wddx.so cannot be properly loaded. Any other PHP module works. >Fix: I think compiling in WDDX statically should work, at least it used to work for me just week ago. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05: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 CF12116A4CF for ; Fri, 23 Jul 2004 05:30:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB6D043D39 for ; Fri, 23 Jul 2004 05:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N5ULW1046560 for ; Fri, 23 Jul 2004 05:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5ULwW046557; Fri, 23 Jul 2004 05:30:21 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 05:30:21 GMT Resent-Message-Id: <200407230530.i6N5ULwW046557@freefall.freebsd.org> 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-Martin Seck Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 059D716A519 for ; Fri, 23 Jul 2004 05:27:25 +0000 (GMT) Received: from smtp2.netcologne.de (smtp2.netcologne.de [194.8.194.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 629EC43D45 for ; Fri, 23 Jul 2004 05:27:24 +0000 (GMT) (envelope-from thomas@laurel.tmseck.homedns.org) Received: from laurel.tmseck.homedns.org (xdsl-213-196-251-181.netcologne.de [213.196.251.181]) by smtp2.netcologne.de (Postfix) with SMTP id 454844A49 for ; Fri, 23 Jul 2004 07:27:23 +0200 (MEST) Received: (qmail 927 invoked by uid 1001); 23 Jul 2004 05:27:07 -0000 Message-Id: <20040723052707.926.qmail@laurel.tmseck.homedns.org> Date: 23 Jul 2004 05:27:07 -0000 From: Thomas-Martin Seck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69465: [Maintainer] www/squid: use OpenLDAP 2.1 for authentication X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 05:30:22 -0000 >Number: 69465 >Category: ports >Synopsis: [Maintainer] www/squid: use OpenLDAP 2.1 for authentication >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 Jul 23 05:30:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Thomas-Martin Seck >Release: FreeBSD 4.10-STABLE i386 >Organization: a private site in Germany >Environment: FreeBSD ports collection as of July 23rd, 2004. >Description: The squid LDAP helpers do not yet work with OpenLDAP 2.2, see squid bug #1018. Use OpenLDAP 2.1 instead until this issue is resolved. >How-To-Repeat: >Fix: Apply this patch: Index: Makefile =================================================================== --- Makefile (revision 126) +++ Makefile (working copy) @@ -161,6 +161,7 @@ MAN8+= pam_auth.8 squid_unix_group.8 .if defined(WITH_SQUID_LDAP_AUTH) USE_OPENLDAP= yes +WANT_OPENLDAP_VER= 21 CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib MAN8+= squid_ldap_auth.8 squid_ldap_group.8 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:36: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 5BCB216A4CE; Fri, 23 Jul 2004 05:36:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E43F43D45; Fri, 23 Jul 2004 05:36:15 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N5aFm0047687; Fri, 23 Jul 2004 05:36:15 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5aFmF047683; Fri, 23 Jul 2004 05:36:15 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 05:36:15 GMT From: Kirill Ponomarew Message-Id: <200407230536.i6N5aFmF047683@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, arved@FreeBSD.org Subject: Re: ports/69463: [PATCH] irc/BitchX: [gcc3.4 fix] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:36:15 -0000 Synopsis: [PATCH] irc/BitchX: [gcc3.4 fix] Responsible-Changed-From-To: freebsd-ports-bugs->arved Responsible-Changed-By: krion Responsible-Changed-When: Fri Jul 23 05:36:02 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69463 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:36: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 0E42E16A4CE; Fri, 23 Jul 2004 05:36:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB68643D2D; Fri, 23 Jul 2004 05:36:33 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N5aXGM047746; Fri, 23 Jul 2004 05:36:33 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5aX9D047742; Fri, 23 Jul 2004 05:36:33 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 05:36:33 GMT From: Kirill Ponomarew Message-Id: <200407230536.i6N5aX9D047742@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69465: [Maintainer] www/squid: use OpenLDAP 2.1 for authentication X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:36:34 -0000 Synopsis: [Maintainer] www/squid: use OpenLDAP 2.1 for authentication Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Fri Jul 23 05:36:28 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=69465 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:38: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 7BEB116A4CE; Fri, 23 Jul 2004 05:38:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D75B43D45; Fri, 23 Jul 2004 05:38:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N5c2hl049813; Fri, 23 Jul 2004 05:38:02 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5c2J6049809; Fri, 23 Jul 2004 05:38:02 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 05:38:02 GMT From: Kirill Ponomarew Message-Id: <200407230538.i6N5c2J6049809@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69450: Update of multimedia/mplayer to pre5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:38:02 -0000 Synopsis: Update of multimedia/mplayer to pre5 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Fri Jul 23 05:37:58 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=69450 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:38: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 87C5316A4CE; Fri, 23 Jul 2004 05:38:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AFC043D4C; Fri, 23 Jul 2004 05:38:24 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N5cOpM049869; Fri, 23 Jul 2004 05:38:24 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5cOmw049865; Fri, 23 Jul 2004 05:38:24 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 05:38:24 GMT From: Kirill Ponomarew Message-Id: <200407230538.i6N5cOmw049865@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, krion@FreeBSD.org Subject: Re: ports/69418: update audio/lopster to 1.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: Fri, 23 Jul 2004 05:38:24 -0000 Synopsis: update audio/lopster to 1.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->krion Responsible-Changed-By: krion Responsible-Changed-When: Fri Jul 23 05:38:21 GMT 2004 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=69418 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05: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 6582916A4CE for ; Fri, 23 Jul 2004 05:50:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4938A43D55 for ; Fri, 23 Jul 2004 05:50:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N5oJXd066992 for ; Fri, 23 Jul 2004 05:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5oJCZ066990; Fri, 23 Jul 2004 05:50:19 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 05:50:19 GMT Resent-Message-Id: <200407230550.i6N5oJCZ066990@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, amistry Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C730E16A4CE for ; Fri, 23 Jul 2004 05:40:57 +0000 (GMT) Received: from smtp1.fuse.net (mail-out1.fuse.net [216.68.8.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3359F43D2D for ; Fri, 23 Jul 2004 05:40:57 +0000 (GMT) (envelope-from amistry@united-ware.com) Received: from gx4.fuse.net ([216.196.154.197]) by smtp1.fuse.net (InterMail vM.6.01.03.03 201-2131-111-105-20040624) with ESMTP id <20040723054056.MIEL7486.smtp1.fuse.net@gx4.fuse.net> for ; Fri, 23 Jul 2004 01:40:56 -0400 Received: from www.united-ware.com ([216.196.154.197]) by gx4.fuse.net (InterMail vG.1.00.00.00 201-2136-104-20040331) with ESMTP id <20040723054056.MCKH1052.gx4.fuse.net@www.united-ware.com> for ; Fri, 23 Jul 2004 01:40:56 -0400 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 i6N5V9lK040265 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 23 Jul 2004 01:31:09 -0400 (EDT) (envelope-from amistry@www.united-ware.com) Received: (from amistry@localhost) by www.united-ware.com (8.12.9p2/8.12.9/Submit) id i6N5V9iJ040264; Fri, 23 Jul 2004 01:31:09 -0400 (EDT) (envelope-from amistry) Message-Id: <200407230531.i6N5V9iJ040264@www.united-ware.com> Date: Fri, 23 Jul 2004 01:31:09 -0400 (EDT) From: amistry To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69466: MAINTAINER UPDATE - avidemux2 - 2.0.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: amistry List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 05:50:19 -0000 >Number: 69466 >Category: ports >Synopsis: MAINTAINER UPDATE - avidemux2 - 2.0.26 >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 Jul 23 05:50:18 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Anish Mistry >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: AM Productions >Environment: System: FreeBSD bigguy.am-productions.biz 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #0: Tue Jul 13 20:00:57 EDT 2004 amistry@bigguy.am-productions.biz:/usr/obj/usr/src/sys/BIGGUY i386 >Description: Update avidemux2 to 2.0.26. >How-To-Repeat: >Fix: --- avidemux-2.0.26.patch begins here --- diff -ruN avidemux2.orig/Makefile avidemux2/Makefile --- avidemux2.orig/Makefile Sat Jul 17 18:24:27 2004 +++ avidemux2/Makefile Thu Jul 22 16:06:09 2004 @@ -6,10 +6,10 @@ # PORTNAME= avidemux2 -PORTVERSION= 2.0.24 +PORTVERSION= 2.0.26 CATEGORIES= multimedia MASTER_SITES= http://fixounet.free.fr/avidemux/ -DISTNAME= avidemux-2.0.24 +DISTNAME= avidemux-2.0.26 MAINTAINER= amistry@am-productions.biz COMMENT= Simple GUI based video editor @@ -22,7 +22,7 @@ USE_REINPLACE= yes USE_X_PREFIX= yes -USE_LIBTOOL_VER=13 +USE_LIBTOOL_VER=15 USE_GNOME= gnomeprefix gnomehack gtk20 GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include \ diff -ruN avidemux2.orig/distinfo avidemux2/distinfo --- avidemux2.orig/distinfo Sat Jul 17 18:24:27 2004 +++ avidemux2/distinfo Thu Jul 22 16:06:44 2004 @@ -1,2 +1,2 @@ -MD5 (avidemux-2.0.24.tar.gz) = c4482219ede0f6e0be8ddc61bf753589 -SIZE (avidemux-2.0.24.tar.gz) = 2637501 +MD5 (avidemux-2.0.26.tar.gz) = d4697e3289b7db4b684a0cef6884db2f +SIZE (avidemux-2.0.26.tar.gz) = 2734668 --- avidemux-2.0.26.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:55:01 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 B3A0616A4CF for ; Fri, 23 Jul 2004 05:55:01 +0000 (GMT) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 0797A43D5A for ; Fri, 23 Jul 2004 05:55:01 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 29203 invoked from network); 23 Jul 2004 05:55:00 -0000 Received: from compass.straycat.dhs.org (HELO ?192.168.1.32?) (192.168.1.32) by alexandria.straycat.dhs.org with SMTP; 23 Jul 2004 05:55:00 -0000 From: Tom McLaughlin To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org In-Reply-To: <200407230510.i6N5AL8i045426@freefall.freebsd.org> References: <200407230510.i6N5AL8i045426@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="=-oORP/c+/rJPkD5KGY/aR" Message-Id: <1090562099.699.5.camel@compass.straycat.dhs.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 23 Jul 2004 01:55:00 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Re: ports/69462: New port: audio/muine - Mono based Gnome audio player X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:55:01 -0000 --=-oORP/c+/rJPkD5KGY/aR Content-Type: text/plain Content-Transfer-Encoding: 7bit Okay, attached is an updated port which removes the ltmain.sh patch and uses USE_LIBTOOL_VER=15 instead. Thanks. Tom --=-oORP/c+/rJPkD5KGY/aR-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:56: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 B001916A4CE; Fri, 23 Jul 2004 05:56:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CEFD43D46; Fri, 23 Jul 2004 05:56:01 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6N5u1nv067224; Fri, 23 Jul 2004 05:56:01 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N5u1lO067220; Fri, 23 Jul 2004 05:56:01 GMT (envelope-from linimon) Date: Fri, 23 Jul 2004 05:56:01 GMT From: Mark Linimon Message-Id: <200407230556.i6N5u1lO067220@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org Subject: Re: ports/69454: [PATCH] graphics/GD: update to 2.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:56:01 -0000 Synopsis: [PATCH] graphics/GD: update to 2.15 Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 23 05:55:49 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69454 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 06:00: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 8EB5D16A4CE for ; Fri, 23 Jul 2004 06:00:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 830E443D2F for ; Fri, 23 Jul 2004 06:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N60eZJ067359 for ; Fri, 23 Jul 2004 06:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N60edt067352; Fri, 23 Jul 2004 06:00:40 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 06:00:40 GMT Message-Id: <200407230600.i6N60edt067352@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tom McLaughlin Subject: Re: ports/69462: New port: audio/muine - Mono based Gnome audio player X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tom McLaughlin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 06:00:40 -0000 The following reply was made to PR ports/69462; it has been noted by GNATS. From: Tom McLaughlin To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/69462: New port: audio/muine - Mono based Gnome audio player Date: Fri, 23 Jul 2004 01:55:00 -0400 --=-oORP/c+/rJPkD5KGY/aR Content-Type: text/plain Content-Transfer-Encoding: 7bit Okay, attached is an updated port which removes the ltmain.sh patch and uses USE_LIBTOOL_VER=15 instead. Thanks. Tom --=-oORP/c+/rJPkD5KGY/aR Content-Disposition: attachment; filename=muine-0.6.3.shar Content-Type: application/x-shar; name=muine-0.6.3.shar Content-Transfer-Encoding: 7bit # 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: # # muine # muine/Makefile # muine/distinfo # muine/pkg-descr # muine/files # muine/files/patch-src_muine.exe.config.in # muine/pkg-plist # echo c - muine mkdir -p muine > /dev/null 2>&1 echo x - muine/Makefile sed 's/^X//' >muine/Makefile << 'END-of-muine/Makefile' X# New ports collection makefile for: muine X# Date created: 20040615 X# Whom: Tom McLaughlin X# X# $FreeBSD$ X# X XPORTNAME= muine XPORTVERSION= 0.6.3 XCATEGORIES= audio gnome XMASTER_SITES= http://muine.gooeylinux.org/ X XMAINTAINER= tmclaugh@sdf.lonestar.org XCOMMENT= Mono based Gnome audio player X XUSE_X_PREFIX= yes XUSE_GNOME= gnomeprefix gnomehack intltool libgnomeui XUSE_LIBTOOL_VER=15 XUSE_REINPLACE= yes X XLIB_DEPENDS= xine.9:${PORTSDIR}/multimedia/libxine \ X FLAC.5:${PORTSDIR}/audio/flac \ X id3tag.2:${PORTSDIR}/audio/libid3tag \ X mono.0:${PORTSDIR}/lang/mono \ X gdbm:${PORTSDIR}/databases/gdbm X XBUILD_DEPENDS= /usr/local/libdata/pkgconfig/gtk-sharp.pc:${PORTSDIR}/x11-toolkits/gtk-sharp X XRUN_DEPENDS= /usr/local/libdata/pkgconfig/gtk-sharp.pc:${PORTSDIR}/x11-toolkits/gtk-sharp X XCONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib" X XGLIB_MIVER= 400 X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%GLIB_MIVER%%|${GLIB_MIVER}|g' \ X ${WRKSRC}/src/muine.exe.config.in X X.include END-of-muine/Makefile echo x - muine/distinfo sed 's/^X//' >muine/distinfo << 'END-of-muine/distinfo' XMD5 (muine-0.6.3.tar.gz) = dc7923e1e0ba87f0303bc30f14f604e3 XSIZE (muine-0.6.3.tar.gz) = 624566 END-of-muine/distinfo echo x - muine/pkg-descr sed 's/^X//' >muine/pkg-descr << 'END-of-muine/pkg-descr' XMuine is a music player for GNOME using Mono. It features: X X* A simple, intuitive user interface X* Ogg Vorbis, FLAC and MP3 music playback support X* Automatic album-cover fetching X* Support for embedded ID3v2 album images X* ReplayGain support X* Support for multiple artist and performer tags per song X* A system tray icon X* Translations into many languages X XWWW: http://muine.gooeylinux.org/ END-of-muine/pkg-descr echo c - muine/files mkdir -p muine/files > /dev/null 2>&1 echo x - muine/files/patch-src_muine.exe.config.in sed 's/^X//' >muine/files/patch-src_muine.exe.config.in << 'END-of-muine/files/patch-src_muine.exe.config.in' X--- src/muine.exe.config.in.orig Sat Jun 5 12:48:33 2004 X+++ src/muine.exe.config.in Thu Jul 15 21:59:47 2004 X@@ -1,6 +1,6 @@ X X- X- X+ X+ X X X END-of-muine/files/patch-src_muine.exe.config.in echo x - muine/pkg-plist sed 's/^X//' >muine/pkg-plist << 'END-of-muine/pkg-plist' Xbin/muine X@unexec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-uninstall-rule %D/etc/gconf/schemas/muine.schemas > /dev/null || /usr/bin/true X@exec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-install-rule %D/etc/gconf/schemas/muine.schemas > /dev/null || /usr/bin/true Xlib/muine/AmazonSearchService.dll Xlib/muine/libmuine.a Xlib/muine/libmuine.so Xlib/muine/libmuine.so.0 Xlib/muine/muine.exe Xlib/muine/muine.exe.config Xshare/gnome/application-registry/muine.applications Xshare/gnome/applications/muine.desktop Xshare/gnome/pixmaps/muine.png Xshare/locale/bg/LC_MESSAGES/muine.mo Xshare/locale/ca/LC_MESSAGES/muine.mo Xshare/locale/cs/LC_MESSAGES/muine.mo Xshare/locale/da/LC_MESSAGES/muine.mo Xshare/locale/de/LC_MESSAGES/muine.mo Xshare/locale/en_CA/LC_MESSAGES/muine.mo Xshare/locale/en_GB/LC_MESSAGES/muine.mo Xshare/locale/es/LC_MESSAGES/muine.mo Xshare/locale/eu/LC_MESSAGES/muine.mo Xshare/locale/fr/LC_MESSAGES/muine.mo Xshare/locale/hr/LC_MESSAGES/muine.mo Xshare/locale/hu/LC_MESSAGES/muine.mo Xshare/locale/is/LC_MESSAGES/muine.mo Xshare/locale/ja/LC_MESSAGES/muine.mo Xshare/locale/ko/LC_MESSAGES/muine.mo Xshare/locale/nl/LC_MESSAGES/muine.mo Xshare/locale/no/LC_MESSAGES/muine.mo Xshare/locale/pl/LC_MESSAGES/muine.mo Xshare/locale/pt/LC_MESSAGES/muine.mo Xshare/locale/pt_BR/LC_MESSAGES/muine.mo Xshare/locale/sr/LC_MESSAGES/muine.mo Xshare/locale/sr@Latn/LC_MESSAGES/muine.mo Xshare/locale/sv/LC_MESSAGES/muine.mo X@dirrm lib/muine END-of-muine/pkg-plist exit --=-oORP/c+/rJPkD5KGY/aR-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 06:08: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 E7E4F16A4CE; Fri, 23 Jul 2004 06:08:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA7F443D2F; Fri, 23 Jul 2004 06:08:42 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N68gNS083640; Fri, 23 Jul 2004 06:08:42 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N68ght083636; Fri, 23 Jul 2004 06:08:42 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 06:08:42 GMT From: Tilman Linneweh Message-Id: <200407230608.i6N68ght083636@freefall.freebsd.org> To: rui@ruilopes.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69211: Update port: devel/aap to 1.068 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 06:08:43 -0000 Synopsis: Update port: devel/aap to 1.068 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 06:08:36 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69211 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 06:10: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 7D68016A4CF for ; Fri, 23 Jul 2004 06:10:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EE7043D31 for ; Fri, 23 Jul 2004 06:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N6ACDV083696 for ; Fri, 23 Jul 2004 06:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N6ACbq083695; Fri, 23 Jul 2004 06:10:12 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 06:10:12 GMT Resent-Message-Id: <200407230610.i6N6ACbq083695@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2898316A4CE; Fri, 23 Jul 2004 06:09:20 +0000 (GMT) Received: from imf22aec.mail.bellsouth.net (imf22aec.mail.bellsouth.net [205.152.59.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 885EA43D31; Fri, 23 Jul 2004 06:09:19 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf22aec.mail.bellsouth.netESMTP <20040723060919.AHE1788.imf22aec.mail.bellsouth.net@gentoo.ahze.net>; Fri, 23 Jul 2004 02:09:19 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6N69ImZ040691; Fri, 23 Jul 2004 02:09:18 -0400 (EDT) (envelope-from ahze) Message-Id: <200407230609.i6N69ImZ040691@gentoo.ahze.net> Date: Fri, 23 Jul 2004 02:09:18 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lioux@FreeBSD.org Subject: ports/69468: [PATCH] multimedia/mpeg4ip: [gcc3.4 fix] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 06:10:12 -0000 >Number: 69468 >Category: ports >Synopsis: [PATCH] multimedia/mpeg4ip: [gcc3.4 fix] >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 Jul 23 06:10:11 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - gcc3.4 fix Port maintainer (lioux@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- mpeg4ip-1.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/mpeg4ip.orig/files/patch-gcc34 /usr/ports/multimedia/mpeg4ip/files/patch-gcc34 --- /usr/ports/multimedia/mpeg4ip.orig/files/patch-gcc34 Wed Dec 31 19:00:00 1969 +++ /usr/ports/multimedia/mpeg4ip/files/patch-gcc34 Fri Jul 23 02:02:55 2004 @@ -0,0 +1,11 @@ +--- common/video/mpeg4-2000/idct/idct.hpp.orig Fri Jul 23 01:57:47 2004 ++++ common/video/mpeg4-2000/idct/idct.hpp Fri Jul 23 02:02:41 2004 +@@ -22,7 +22,7 @@ + #ifndef _INT_IDCT_ + #define _INT_IDCT_ 1 + +- ++#define BLOCK_SIZE 5 + #define IDCT_BLOCK_SIZE 8 + class idct{ + public: --- mpeg4ip-1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 06:17: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 54DDE16A4CE; Fri, 23 Jul 2004 06:17:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37A4743D39; Fri, 23 Jul 2004 06:17:18 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N6HIn1083995; Fri, 23 Jul 2004 06:17:18 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N6HIl0083991; Fri, 23 Jul 2004 06:17:18 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 06:17:18 GMT From: Tilman Linneweh Message-Id: <200407230617.i6N6HIl0083991@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69422: New port: the Equeue OCaml library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 06:17:18 -0000 Synopsis: New port: the Equeue OCaml library Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: arved Class-Changed-When: Fri Jul 23 06:16:48 GMT 2004 Class-Changed-Why: New ports are change-requests http://www.freebsd.org/cgi/query-pr.cgi?pr=69422 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 06:40: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 88B0116A4CE for ; Fri, 23 Jul 2004 06:40:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D42E43D2D for ; Fri, 23 Jul 2004 06:40:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N6e525055078 for ; Fri, 23 Jul 2004 06:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N6e5b5055077; Fri, 23 Jul 2004 06:40:05 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 06:40:05 GMT Resent-Message-Id: <200407230640.i6N6e5b5055077@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Seva Gluschenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4FF816A4CE for ; Fri, 23 Jul 2004 06:39:32 +0000 (GMT) Received: from road.yandex.ru (road.yandex.ru [213.180.193.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6A2F43D2D for ; Fri, 23 Jul 2004 06:39:31 +0000 (GMT) (envelope-from gvs@road.yandex.ru) Received: from road.yandex.ru (localhost.yandex.net [127.0.0.1] (may be forged)) by road.yandex.ru (8.12.11/8.12.11) with ESMTP id i6N6fSPc011745 for ; Fri, 23 Jul 2004 10:41:28 +0400 (MSD) (envelope-from gvs@road.yandex.ru) Received: (from gvs@localhost) by road.yandex.ru (8.12.11/8.12.11/Submit) id i6N6fSLE011744; Fri, 23 Jul 2004 10:41:28 +0400 (MSD) (envelope-from gvs) Message-Id: <200407230641.i6N6fSLE011744@road.yandex.ru> Date: Fri, 23 Jul 2004 10:41:28 +0400 (MSD) From: Seva Gluschenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 06:40:05 -0000 >Number: 69469 >Category: ports >Synopsis: multimedia/libxine fails to compile (ARTS and ESOUND enabled) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 06:40:05 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Seva Gluschenko >Release: FreeBSD 5.2-CURRENT i386 >Organization: Yandex LLC >Environment: System: FreeBSD road.yandex.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #8: Fri Jun 4 13:37:30 MSD 2004 gvs@road.yandex.ru:/local/obj/local/usr/src/sys/ROAD i386 >Description: Compilation fails: if /bin/sh ../../../libtool-nofpic --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../include -I../../../include -I../../../src -I../../../src/xine-engine -I../../../src/xine-engine -I../../../src/xine-utils -I../../../src/input -I../../../src/input -I/usr/local/include -DHAVE_MMX `echo -pipe -fomit-frame-pointer -falign-functions=4 -falign-loops=4 -falign-jumps=4 -mpreferred-stack-boundary=2 -fexpensive-optimizations -fschedule-insns2 -fno-strict-aliasing -ffast-math -finline-functions -Wall -DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -DENABLE_IPV6 -O2 -pipe -march=pentium4 -I/usr/local/include -I/usr/local/include/dvdread -I/usr/X11R6/include | sed -e 's/-fomit-frame-pointer//g;s/-Os//g'` -MT surf3d.lo -MD -MP -MF ".deps/surf3d.Tpo" \ -c -o surf3d.lo `test -f 'surf3d.c' || echo './'`surf3d.c; \ then mv -f ".deps/surf3d.Tpo" ".deps/surf3d.Plo"; \ else rm -f ".deps/surf3d.Tpo"; exit 1; \ fi cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../include -I../../../include -I../../../src -I../../../src/xine-engine -I../../../src/xine-engine -I../../../src/xine-utils -I../../../src/input -I../../../src/input -I/usr/local/include -DHAVE_MMX -pipe -falign-functions=4 -falign-loops=4 -falign-jumps=4 -mpreferred-stack-boundary=2 -fexpensive-optimizations -fschedule-insns2 -fno-strict-aliasing -ffast-math -finline-functions -Wall -DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -DENABLE_IPV6 -O2 -pipe -march=pentium4 -I/usr/local/include -I/usr/local/include/dvdread -I/usr/X11R6/include -MT surf3d.lo -MD -MP -MF .deps/surf3d.Tpo -c surf3d.c -o .libs/surf3d.o In file included from surf3d.c:36: drawmethods.h:79:9: warning: "/*" within comment drawmethods.h:90:9: warning: "/*" within comment drawmethods.h:101:9: warning: "/*" within comment {standard input}: Assembler messages: {standard input}:453: Error: suffix or operands invalid for `paddusb' {standard input}:516: Error: suffix or operands invalid for `paddusb' {standard input}:577: Error: suffix or operands invalid for `paddusb' {standard input}:599: Error: suffix or operands invalid for `paddusb' {standard input}:619: Error: suffix or operands invalid for `paddusb' {standard input}:653: Error: suffix or operands invalid for `paddusb' {standard input}:683: Error: suffix or operands invalid for `paddusb' {standard input}:722: Error: suffix or operands invalid for `paddusb' {standard input}:751: Error: suffix or operands invalid for `paddusb' {standard input}:773: Error: suffix or operands invalid for `paddusb' {standard input}:795: Error: suffix or operands invalid for `paddusb' {standard input}:815: Error: suffix or operands invalid for `paddusb' {standard input}:849: Error: suffix or operands invalid for `paddusb' {standard input}:879: Error: suffix or operands invalid for `paddusb' {standard input}:918: Error: suffix or operands invalid for `paddusb' {standard input}:947: Error: suffix or operands invalid for `paddusb' gmake[4]: *** [surf3d.lo] Error 1 gmake[4]: Leaving directory `/home/ports/multimedia/libxine/work/xine-lib-1-rc5/src/post/goom' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/home/ports/multimedia/libxine/work/xine-lib-1-rc5/src/post' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/home/ports/multimedia/libxine/work/xine-lib-1-rc5/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/home/ports/multimedia/libxine/work/xine-lib-1-rc5' gmake: *** [all] Error 2 *** Error code 2 Stop in /home/ports/multimedia/libxine. >How-To-Repeat: cvsup the fresh multimedia/libxine port and try to make it with ARTS and ESOUND enabled. >Fix: Sorry, don't know how to fix it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07: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 DF04F16A4CE for ; Fri, 23 Jul 2004 07:00:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDC0443D39 for ; Fri, 23 Jul 2004 07:00:51 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N70pon056185 for ; Fri, 23 Jul 2004 07:00:51 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N70pi6056184; Fri, 23 Jul 2004 07:00:51 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 07:00:51 GMT Message-Id: <200407230700.i6N70pi6056184@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Nottebrock Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Nottebrock List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 07:00:52 -0000 The following reply was made to PR ports/69469; it has been noted by GNATS. From: Michael Nottebrock To: freebsd-gnats-submit@FreeBSD.org, gvs@rinet.ru Cc: Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) Date: Fri, 23 Jul 2004 08:51:02 +0200 Try compiling without CPUTYPE?=p4/-march=pentium4. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:00: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 DBDD316A4CE for ; Fri, 23 Jul 2004 07:00:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB15343D49 for ; Fri, 23 Jul 2004 07:00:53 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N70rGo056204 for ; Fri, 23 Jul 2004 07:00:53 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N70q0d056203; Fri, 23 Jul 2004 07:00:53 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 07:00:53 GMT Resent-Message-Id: <200407230700.i6N70q0d056203@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Duncan Barclay Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED91816A4CE for ; Fri, 23 Jul 2004 06:57:18 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id E70B943D2F for ; Fri, 23 Jul 2004 06:57:18 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6N6vIQ2076786 for ; Fri, 23 Jul 2004 06:57:18 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6N6vIaP076785; Fri, 23 Jul 2004 06:57:18 GMT (envelope-from nobody) Message-Id: <200407230657.i6N6vIaP076785@www.freebsd.org> Date: Fri, 23 Jul 2004 06:57:18 GMT From: Duncan Barclay To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69470: required_files in rc.subr incorrectly 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: Fri, 23 Jul 2004 07:00:54 -0000 >Number: 69470 >Category: ports >Synopsis: required_files in rc.subr incorrectly used >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 07:00:51 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Duncan Barclay >Release: 4.10-RELEASE >Organization: >Environment: FreeBSD andomeda.ovus 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #2: Sun Jul 11 12:14:10 BST 2004 dmlb@andomeda.ovus:/usr/src/sys/compile/ANDROMEDA i386 >Description: Many ports allow a configuration file to be specified in /etc/rc.conf, e.g. isc-dhcpd3-server has dhcpd_conf. However the supplied rc.d scripts set the required_files variable before rc.conf is read in, often with the default configuration file. This is wrong as it causes the package not to start when the configuration file is not the default. >How-To-Repeat: pkg_add -r isc-dhcp3-server-3.0.1.r12_2 pkg_add -r rc_subr-1.16. echo dhcpd_enable="YES" >>/etc/rc.conf echo dhcpd_ifaces="fxp0" >>/etc/rc.conf echo dhcpd_conf="/etc/dhcpd.conf" >>/etc/rc.conf touch /etc/dhcpd.conf /usr/local/etc/rc.d/isc-dhcpd.sh start rc.d/isc-dhcpd.sh: WARNING: /usr/local/etc/dhcpd.conf is not readable. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07: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 4C8FA16A4CE for ; Fri, 23 Jul 2004 07:10:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D8AE43D45 for ; Fri, 23 Jul 2004 07:10:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N7AVC3060455 for ; Fri, 23 Jul 2004 07:10:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7AVeW060454; Fri, 23 Jul 2004 07:10:31 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 07:10:31 GMT Message-Id: <200407230710.i6N7AVeW060454@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Duncan Barclay" Subject: Re: ports/69470: required_files in rc.subr incorrectly used X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Duncan Barclay List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 07:10:31 -0000 The following reply was made to PR ports/69470; it has been noted by GNATS. From: "Duncan Barclay" To: , Cc: Subject: Re: ports/69470: required_files in rc.subr incorrectly used Date: Fri, 23 Jul 2004 08:09:14 +0100 Patch to fix against isc-dhcp3-server-3.0.1.r12_2 --- isc-dhcpd.sh~ Fri Jul 23 08:07:30 2004 +++ isc-dhcpd.sh Fri Jul 23 08:07:57 2004 @@ -41,9 +41,9 @@ rcvar=$(set_rcvar) command=/usr/local/sbin/${name} pidfile=/var/run/${name}.pid -required_files=${dhcpd_conf} start_precmd=${name}_precmd load_rc_config ${name} +required_files=${dhcpd_conf} run_rc_command "$1" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:10: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 DE85D16A4CE; Fri, 23 Jul 2004 07:10:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFF3843D41; Fri, 23 Jul 2004 07:10:51 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from freefall.freebsd.org (osa@localhost [127.0.0.1]) i6N7Ap64060488; Fri, 23 Jul 2004 07:10:51 GMT (envelope-from osa@freefall.freebsd.org) Received: (from osa@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7ApS2060484; Fri, 23 Jul 2004 07:10:51 GMT (envelope-from osa) Date: Fri, 23 Jul 2004 07:10:51 GMT From: "Sergey A. Osokin" Message-Id: <200407230710.i6N7ApS2060484@freefall.freebsd.org> To: vladimir@math.uic.edu, osa@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69168: Broken ltmdm port on recent -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: Fri, 23 Jul 2004 07:10:52 -0000 Synopsis: Broken ltmdm port on recent -current State-Changed-From-To: open->closed State-Changed-By: osa State-Changed-When: Fri Jul 23 07:10:18 GMT 2004 State-Changed-Why: Another fix committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69168 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:16: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 9276A16A4CF; Fri, 23 Jul 2004 07:16:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 720D943D39; Fri, 23 Jul 2004 07:16:04 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N7G4aM060950; Fri, 23 Jul 2004 07:16:04 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7G4wA060946; Fri, 23 Jul 2004 07:16:04 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 07:16:04 GMT From: Tilman Linneweh Message-Id: <200407230716.i6N7G4wA060946@freefall.freebsd.org> To: danfe@regency.nsu.ru, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69272: port games/fuhquake: better fix for r_part.c (files/patch-r_part.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: Fri, 23 Jul 2004 07:16:04 -0000 Synopsis: port games/fuhquake: better fix for r_part.c (files/patch-r_part.c) State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 07:15:53 GMT 2004 State-Changed-Why: comitted, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69272 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07: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 D0BEE16A4CE; Fri, 23 Jul 2004 07:28:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B18CE43D1F; Fri, 23 Jul 2004 07:28:52 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N7Sq5D061589; Fri, 23 Jul 2004 07:28:52 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7SqFH061585; Fri, 23 Jul 2004 07:28:52 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 07:28:52 GMT From: Kirill Ponomarew Message-Id: <200407230728.i6N7SqFH061585@freefall.freebsd.org> To: ahze@ahze.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69409: [PATCH] multimedia/mplayer: [fix build with net/liveMedia] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 07:28:53 -0000 Synopsis: [PATCH] multimedia/mplayer: [fix build with net/liveMedia] State-Changed-From-To: feedback->closed State-Changed-By: krion State-Changed-When: Fri Jul 23 07:28:28 GMT 2004 State-Changed-Why: Fixed in pre5 http://www.freebsd.org/cgi/query-pr.cgi?pr=69409 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:30: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 0731316A4CE; Fri, 23 Jul 2004 07:30:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAFB143D41; Fri, 23 Jul 2004 07:30:07 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N7U7Pc061667; Fri, 23 Jul 2004 07:30:07 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7U7MS061663; Fri, 23 Jul 2004 07:30:07 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 07:30:07 GMT From: Tilman Linneweh Message-Id: <200407230730.i6N7U7MS061663@freefall.freebsd.org> To: freebsd@jdc.parodius.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69334: Fix for /suphp.log (should be /var/log/suphp.log) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 07:30:08 -0000 Synopsis: Fix for /suphp.log (should be /var/log/suphp.log) State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 07:30:01 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69334 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07: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 D2FE316A4CE for ; Fri, 23 Jul 2004 07:30:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9F7843D4C for ; Fri, 23 Jul 2004 07:30:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N7UWn0061788 for ; Fri, 23 Jul 2004 07:30:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7UWvE061786; Fri, 23 Jul 2004 07:30:32 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 07:30:32 GMT Message-Id: <200407230730.i6N7UWvE061786@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: chris@e-easy.com.au Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: chris@e-easy.com.au List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 07:30:33 -0000 The following reply was made to PR ports/69430; it has been noted by GNATS. From: chris@e-easy.com.au To: freebsd-gnats-submit@FreeBSD.org, renato@galle.com.br Cc: chris@e-easy.com.au Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build Date: Fri, 23 Jul 2004 17:25:53 +1000 (EST) Howdy, Sorry, on further investigation, the correct patch to be committed should be the following. This will perform the correct transliteration regardless of locale. A pity that the 'a-z' 'A-Z' semantic of lower to upper doesn't work any more :-( Regards, Chris Knight Index: files/patch-src::extern::editline::makelist =================================================================== RCS file: files/patch-src::extern::editline::makelist diff -N files/patch-src::extern::editline::makelist --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src::extern::editline::makelist 23 Jul 2004 07:13:00 -0000 @@ -0,0 +1,11 @@ +--- src/extern/editline/makelist.orig Mon May 24 04:24:25 2004 ++++ src/extern/editline/makelist Fri Jul 23 17:09:43 2004 +@@ -145,7 +145,7 @@ + # + -fh) + cat $FILES | $AWK '/el_action_t/ { print $3 }' | \ +- sort | tr '[a-z]' '[A-Z]' | $AWK ' ++ sort | tr '[:lower:]' '[:upper:]' | $AWK ' + BEGIN { + printf("/* Automatically generated file, do not edit */\n"); + printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n"); From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07: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 8E5DD16A4CE for ; Fri, 23 Jul 2004 07:30:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 836C743D39 for ; Fri, 23 Jul 2004 07:30:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N7UZ5P061824 for ; Fri, 23 Jul 2004 07:30:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7UZ4h061823; Fri, 23 Jul 2004 07:30:35 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 07:30:35 GMT Message-Id: <200407230730.i6N7UZ4h061823@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Toomas Aas" Subject: Re: ports/69464:php4-wddx broken - php4 cannot load wddx.so X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Toomas Aas List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 07:30:35 -0000 The following reply was made to PR ports/69464; it has been noted by GNATS. From: "Toomas Aas" To: FreeBSD-gnats-submit@freebsd.org Cc: freebsd-bugs@mikhailov.org Subject: Re: ports/69464:php4-wddx broken - php4 cannot load wddx.so Date: Fri, 23 Jul 2004 10:28:54 +0300 Hello! I'm seeing the same problem on my server FreeBSD 4.9-RELEASE-p4 FreeBSD 4.9-RELEASE-p4 #1: Thu May 27 14:30:24 EEST 2004 toomas@:/usr/obj/usr/src/sys/HEEROLD i386 [Fri Jul 23 10:15:16 2004] [notice] Apache/1.3.31 (Unix) ApacheJServ/1.1.2 mod_ssl/2.8.17 OpenSSL/0.9.7c-p1 PHP/4.3.8 configured -- resuming normal operations Compiling wddx statically seems to work. At least I no longer get the error message from PHP. Note that I also needed to compile xml and xmlrpc extensions (which I am using) statically, otherwise I got the following errors from PHP: [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parser_create in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parser_create_ns in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_object in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_element_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_character_data_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_processing_instruction_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_default_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_unparsed_entity_decl_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_notation_decl_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_external_entity_ref_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_start_namespace_decl_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_set_end_namespace_decl_handler in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parse in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parse_into_struct in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_get_error_code in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_error_string in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_get_current_line_number in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_get_current_column_number in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_get_current_byte_index in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parser_free in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parser_set_option in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - xml_parser_get_option in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - utf8_encode in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: Function registration failed - duplicate name - utf8_decode in Unknown on line 0 [23-Jul-2004 10:02:09] PHP Warning: xml: Unable to register functions, unable to load in Unknown on line 0 To achieve this, I made the following changes to lang/php4/Makefile: --------------------------------------------------------------------- --- Makefile.orig Wed Jul 21 18:58:05 2004 +++ Makefile Fri Jul 23 10:08:40 2004 @@ -30,6 +30,11 @@ CONFIGURE_ARGS= --enable-versioning \ --enable-memory-limit \ --with-layout=GNU \ + --enable-xml \ + --with-expat-dir=${LOCALBASE} \ + --with-iconv-dir=${LOCALBASE} \ + --with-xmlrpc \ + --enable-wddx \ --disable-all .if !defined(WITH_REGEX_TYPE) || ${WITH_REGEX_TYPE} == "php" --------------------------------------------------------------------- -- Toomas Aas | toomas.aas@raad.tartu.ee | http://www.raad.tartu.ee/~toomas/ * Show respect to age. Drink good scotch. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 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 7088E16A4CE; Fri, 23 Jul 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 5032343D48; Fri, 23 Jul 2004 07:32:37 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N7WblF062949; Fri, 23 Jul 2004 07:32:37 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7WabG062945; Fri, 23 Jul 2004 07:32:36 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 07:32:36 GMT From: Tilman Linneweh Message-Id: <200407230732.i6N7WabG062945@freefall.freebsd.org> To: tim@bishnet.net, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69441: [MAINTAINER] devel/py23-statgrab: Change master sites X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 07:32:37 -0000 Synopsis: [MAINTAINER] devel/py23-statgrab: Change master sites State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 07:32:32 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69441 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:39: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 013B616A4CE; Fri, 23 Jul 2004 07:39:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7BC743D45; Fri, 23 Jul 2004 07:39:57 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N7dYbC063561; Fri, 23 Jul 2004 07:39:34 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7dYrP063557; Fri, 23 Jul 2004 07:39:34 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 07:39:34 GMT From: Tilman Linneweh Message-Id: <200407230739.i6N7dYrP063557@freefall.freebsd.org> To: stephane@freebsd.org, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69442: [maintainer update] Update x11-toolkits/gnocl to 0.5.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 07:39:58 -0000 Synopsis: [maintainer update] Update x11-toolkits/gnocl to 0.5.17 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 07:38:47 GMT 2004 State-Changed-Why: Committed, thanks. Please remember to reset PORTREVISION on a PORTVERSION update next time. http://www.freebsd.org/cgi/query-pr.cgi?pr=69442 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:40: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 0D47F16A4CE for ; Fri, 23 Jul 2004 07:40:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E342043D48 for ; Fri, 23 Jul 2004 07:40:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N7ePTg063638 for ; Fri, 23 Jul 2004 07:40:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7eP62063637; Fri, 23 Jul 2004 07:40:25 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 07:40:25 GMT Message-Id: <200407230740.i6N7eP62063637@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Seva Gluschenko Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS andESOUND enabled) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Seva Gluschenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 07:40:35 -0000 The following reply was made to PR ports/69469; it has been noted by GNATS. From: Seva Gluschenko To: Michael Nottebrock Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) Date: Fri, 23 Jul 2004 11:38:43 +0400 Michael Nottebrock wrote: > Try compiling without CPUTYPE?=p4/-march=pentium4. Damn! It works. Can't say I'm happy with the degraded performance of multimedia lib. After all, it compiled with CPUTYPE=p3. -gvs From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 07:50: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 A83BE16A4CE for ; Fri, 23 Jul 2004 07:50:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1D7B43D45 for ; Fri, 23 Jul 2004 07:50:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N7oQHu063823 for ; Fri, 23 Jul 2004 07:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N7oQwa063822; Fri, 23 Jul 2004 07:50:26 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 07:50:26 GMT Message-Id: <200407230750.i6N7oQwa063822@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Vadim Mikhailov Subject: Re: ports/69464: php4-wddx broken - php4 cannot load wddx.so X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vadim Mikhailov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 07:50:42 -0000 The following reply was made to PR ports/69464; it has been noted by GNATS. From: Vadim Mikhailov To: freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@mikhailov.org, toomas.aas@raad.tartu.ee Cc: Subject: Re: ports/69464: php4-wddx broken - php4 cannot load wddx.so Date: Fri, 23 Jul 2004 00:41:12 -0700 Compiling WDDX statically does indeed fix the problem. Since php_options with list of modules is not supported anymore for php4 port (my understanding that php4-extensions is designed for this purpose), I changed /usr/ports/lang/php4/Makefile by hand and added "--enable-wddx" to CONFIGURE_ARGS. Then I did "make deinstall", "make reinstall" and restarted apache2. phpinfo() now shows that WDDX is enabled. Other PHP modules (xml, openssl, zlib, etc) are still loaded dynamically through extension= in php.ini, and everything works fine. This proves that wddx.so is broken. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 08:04: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 0DB0216A4CE; Fri, 23 Jul 2004 08:04:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0FC543D2F; Fri, 23 Jul 2004 08:04:16 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N84GHJ064359; Fri, 23 Jul 2004 08:04:16 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N84Goq064355; Fri, 23 Jul 2004 08:04:16 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 08:04:16 GMT From: Tilman Linneweh Message-Id: <200407230804.i6N84Goq064355@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69443: maintainer update: comms/scmxx to version 0.7.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, 23 Jul 2004 08:04:17 -0000 Synopsis: maintainer update: comms/scmxx to version 0.7.2 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 08:04:11 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69443 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 08: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 0499F16A4CE for ; Fri, 23 Jul 2004 08:10:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7EAF43D49 for ; Fri, 23 Jul 2004 08:10:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N8AACs068525 for ; Fri, 23 Jul 2004 08:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N8AAII068524; Fri, 23 Jul 2004 08:10:10 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 08:10:10 GMT Resent-Message-Id: <200407230810.i6N8AAII068524@freefall.freebsd.org> 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 C8FF516A4CE; Fri, 23 Jul 2004 08:02:13 +0000 (GMT) Received: from scone.ki.iif.hu (dhcp1.ki.iif.hu [193.6.222.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id D752843D45; Fri, 23 Jul 2004 08:02:12 +0000 (GMT) (envelope-from mohacsi@scone.ki.iif.hu) Received: (from mohacsi@localhost) by scone.ki.iif.hu (8.12.11/8.12.11) id i6N81YZL055261; Fri, 23 Jul 2004 10:01:34 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200407230801.i6N81YZL055261@scone.ki.iif.hu> Date: Fri, 23 Jul 2004 10:01:34 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: antholt@FreeBSD.org Subject: ports/69472: bug in xorg-conv.diff 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, 23 Jul 2004 08:10:11 -0000 >Number: 69472 >Category: ports >Synopsis: bug in xorg-conv.diff >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 08:10:09 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.2-CURRENT i386 >Organization: NIIF >Environment: System: FreeBSD scone.ki.iif.hu 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Mon Jul 19 12:51:39 CEST 2004 mohacsi@scone.ki.iif.hu:/usr/obj/usr/src/sys/SCONE i386 >Description: The xorg-conv.diff does not handle correctly XFree dependency in multimedia/libxine. I found this bug when I tried to install kde3 from scratch with xorg-conv.diff. Apply small patch below. >How-To-Repeat: Try compiling with xorg-conv.diff multimedia/libxine. >Fix: --- Makefile.orig Fri Jul 23 09:09:39 2004 +++ Makefile Fri Jul 23 09:36:24 2004 @@ -60,7 +60,9 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src:input:input_cdda.c .endif -.if ${XFREE86_VERSION} >= 4 +.if ${X_WINDOW_SYSTEM} == xfree86-4 +PLIST_SUB+= WITH_LIBXV="" +.elif ${X_WINDOW_SYSTEM} == xorg PLIST_SUB+= WITH_LIBXV="" .else PLIST_SUB+= WITH_LIBXV="@comment " >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 08:31: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 836E116A4CE; Fri, 23 Jul 2004 08:31:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6648A43D58; Fri, 23 Jul 2004 08:31:11 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N8VB3H070813; Fri, 23 Jul 2004 08:31:11 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N8VBnB070809; Fri, 23 Jul 2004 08:31:11 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 08:31:11 GMT From: Tilman Linneweh Message-Id: <200407230831.i6N8VBnB070809@freefall.freebsd.org> To: matt@bsdfly.org, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69444: [maintainer update] deskutils/xfce4-calendar X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 08:31:11 -0000 Synopsis: [maintainer update] deskutils/xfce4-calendar State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 08:31:06 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69444 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 08:32: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 04BFB16A4CE; Fri, 23 Jul 2004 08:32:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05B443D48; Fri, 23 Jul 2004 08:32:03 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from freefall.freebsd.org (lofi@localhost [127.0.0.1]) i6N8W32a070936; Fri, 23 Jul 2004 08:32:03 GMT (envelope-from lofi@freefall.freebsd.org) Received: (from lofi@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N8W3US070932; Fri, 23 Jul 2004 08:32:03 GMT (envelope-from lofi) Date: Fri, 23 Jul 2004 08:32:03 GMT From: Michael Nottebrock Message-Id: <200407230832.i6N8W3US070932@freefall.freebsd.org> To: gvs@rinet.ru, lofi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 08:32:04 -0000 Synopsis: multimedia/libxine fails to compile (ARTS and ESOUND enabled) State-Changed-From-To: open->closed State-Changed-By: lofi State-Changed-When: Fri Jul 23 08:31:06 GMT 2004 State-Changed-Why: Not a libxine (port) bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=69469 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 08:38: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 4C8E716A4CE; Fri, 23 Jul 2004 08:38:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E68243D54; Fri, 23 Jul 2004 08:38:55 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N8ctIV071130; Fri, 23 Jul 2004 08:38:55 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N8ctc0071126; Fri, 23 Jul 2004 08:38:55 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 08:38:55 GMT From: Tilman Linneweh Message-Id: <200407230838.i6N8ctc0071126@freefall.freebsd.org> To: dyeske@yahoo.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69461: devel/ode respect CC / CXX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 08:38:55 -0000 Synopsis: devel/ode respect CC / CXX State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 08:38:48 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69461 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 08: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 1424216A4CF for ; Fri, 23 Jul 2004 08:40:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB1B743D2D for ; Fri, 23 Jul 2004 08:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N8eOPW071230 for ; Fri, 23 Jul 2004 08:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N8eOPw071229; Fri, 23 Jul 2004 08:40:24 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 08:40:24 GMT Message-Id: <200407230840.i6N8eOPw071229@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Nottebrock Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Nottebrock List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 08:40:25 -0000 The following reply was made to PR ports/69469; it has been noted by GNATS. From: Michael Nottebrock To: freebsd-gnats-submit@FreeBSD.org, gvs@rinet.ru Cc: Subject: Re: ports/69469: multimedia/libxine fails to compile (ARTS and ESOUND enabled) Date: Fri, 23 Jul 2004 10:30:04 +0200 I doubt there'll be much (noticable) degradation on a P4. You might want to investigate if the error also happens with the gcc34 port and if so, try to extract a test case and file a bug with gcc (see http://gcc.gnu.org/bugs.html). From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:06: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 44CB516A4CE; Fri, 23 Jul 2004 09:06:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25F7D43D1F; Fri, 23 Jul 2004 09:06:35 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6N96ZU6076351; Fri, 23 Jul 2004 09:06:35 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N96Y77076347; Fri, 23 Jul 2004 09:06:34 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 09:06:34 GMT From: Tilman Linneweh Message-Id: <200407230906.i6N96Y77076347@freefall.freebsd.org> To: amistry@am-productions.biz, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69466: MAINTAINER UPDATE - avidemux2 - 2.0.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 09:06:35 -0000 Synopsis: MAINTAINER UPDATE - avidemux2 - 2.0.26 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 09:06:30 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69466 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:10: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 8385116A4CE; Fri, 23 Jul 2004 09:10:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6426743D60; Fri, 23 Jul 2004 09:10:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N9A23v076473; Fri, 23 Jul 2004 09:10:02 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9A1xR076469; Fri, 23 Jul 2004 09:10:01 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 09:10:01 GMT From: Kirill Ponomarew Message-Id: <200407230910.i6N9A1xR076469@freefall.freebsd.org> To: ahze@ahze.net, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69389: [PATCH] audio/speex [update 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: Fri, 23 Jul 2004 09:10:02 -0000 Synopsis: [PATCH] audio/speex [update to 1.0.4] State-Changed-From-To: feedback->closed State-Changed-By: krion State-Changed-When: Fri Jul 23 09:09:57 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69389 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:23: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 2EFBF16A4CE; Fri, 23 Jul 2004 09:23:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 137D743D1D; Fri, 23 Jul 2004 09:23:31 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N9NUMd077214; Fri, 23 Jul 2004 09:23:30 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9NUOn077210; Fri, 23 Jul 2004 09:23:30 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 09:23:30 GMT From: Kirill Ponomarew Message-Id: <200407230923.i6N9NUOn077210@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/69468: [PATCH] multimedia/mpeg4ip: [gcc3.4 fix] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 09:23:31 -0000 Synopsis: [PATCH] multimedia/mpeg4ip: [gcc3.4 fix] Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: krion Responsible-Changed-When: Fri Jul 23 09:23:20 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69468 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:26: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 8F0A516A4CE; Fri, 23 Jul 2004 09:26:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72B9C43D2D; Fri, 23 Jul 2004 09:26:11 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N9QBqv077306; Fri, 23 Jul 2004 09:26:11 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9QBnx077302; Fri, 23 Jul 2004 09:26:11 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 09:26:11 GMT From: Kirill Ponomarew Message-Id: <200407230926.i6N9QBnx077302@freefall.freebsd.org> To: krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nobutaka@FreeBSD.org Subject: Re: ports/69472: bug in xorg-conv.diff X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 09:26:11 -0000 Synopsis: bug in xorg-conv.diff Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: krion Responsible-Changed-When: Fri Jul 23 09:26:01 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69472 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:27: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 B689F16A4CE; Fri, 23 Jul 2004 09:27:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9890743D45; Fri, 23 Jul 2004 09:27:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N9RsDu077399; Fri, 23 Jul 2004 09:27:54 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9Rsmo077395; Fri, 23 Jul 2004 09:27:54 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 09:27:54 GMT From: Kirill Ponomarew Message-Id: <200407230927.i6N9Rsmo077395@freefall.freebsd.org> To: lwh@pathcom.com, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69459: xfe port is outdated X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 09:27:54 -0000 Synopsis: xfe port is outdated State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Jul 23 09:27:09 GMT 2004 State-Changed-Why: Sorry, it's not useful PR, it doesn't contain any patches. If you want this port to be updated, contact maintainer please. http://www.freebsd.org/cgi/query-pr.cgi?pr=69459 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:33: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 D536A16A4CE; Fri, 23 Jul 2004 09:33:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B75C843D49; Fri, 23 Jul 2004 09:33:07 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6N9X7Sp078686; Fri, 23 Jul 2004 09:33:07 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9X7wR078682; Fri, 23 Jul 2004 09:33:07 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 09:33:07 GMT From: Kirill Ponomarew Message-Id: <200407230933.i6N9X7wR078682@freefall.freebsd.org> To: viek@khera.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69438: update postfix-current to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 09:33:07 -0000 Synopsis: update postfix-current to latest State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Jul 23 09:33:01 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69438 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:40: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 1569116A4CE; Fri, 23 Jul 2004 09:40:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA5E343D55; Fri, 23 Jul 2004 09:40:58 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6N9ewlK079494; Fri, 23 Jul 2004 09:40:58 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9ewGN079490; Fri, 23 Jul 2004 09:40:58 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 09:40:58 GMT From: Volker Stolz Message-Id: <200407230940.i6N9ewGN079490@freefall.freebsd.org> To: daniel+gnats@pelleg.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69458: dovecot: typo in sample conf 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, 23 Jul 2004 09:40:59 -0000 Synopsis: dovecot: typo in sample conf file State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Jul 23 09:40:44 GMT 2004 State-Changed-Why: Handle. Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Fri Jul 23 09:40:44 GMT 2004 Responsible-Changed-Why: Handle. http://www.freebsd.org/cgi/query-pr.cgi?pr=69458 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:42: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 235CD16A4CE; Fri, 23 Jul 2004 09:42:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04CB943D46; Fri, 23 Jul 2004 09:42:40 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6N9gdXE079567; Fri, 23 Jul 2004 09:42:39 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9gd3o079563; Fri, 23 Jul 2004 09:42:39 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 09:42:39 GMT From: Volker Stolz Message-Id: <200407230942.i6N9gd3o079563@freefall.freebsd.org> To: bogorodskiy@inbox.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69439: x11-wm/fluxconf: update to 0.9.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: Fri, 23 Jul 2004 09:42:40 -0000 Synopsis: x11-wm/fluxconf: update to 0.9.7 State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Jul 23 09:42:19 GMT 2004 State-Changed-Why: Forward PR to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69439 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09: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 5E27F16A4CE for ; Fri, 23 Jul 2004 09:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4299543D3F for ; Fri, 23 Jul 2004 09:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6N9oOH3079754 for ; Fri, 23 Jul 2004 09:50:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9oOmY079753; Fri, 23 Jul 2004 09:50:24 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 09:50:24 GMT Message-Id: <200407230950.i6N9oOmY079753@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69439: x11-wm/fluxconf: update to 0.9.7 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, 23 Jul 2004 09:50:24 -0000 The following reply was made to PR ports/69439; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, bogorodskiy@inbox.ru, hendrik@scholz.net Cc: Subject: Re: ports/69439: x11-wm/fluxconf: update to 0.9.7 Date: Fri, 23 Jul 2004 11:42:07 +0200 Dear maintainer, please review the proposed patch. Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 09:53: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 6450216A4CE; Fri, 23 Jul 2004 09:53:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 443ED43D2D; Fri, 23 Jul 2004 09:53:47 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6N9rlb2079930; Fri, 23 Jul 2004 09:53:47 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6N9ripW079926; Fri, 23 Jul 2004 09:53:44 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 09:53:44 GMT From: Volker Stolz Message-Id: <200407230953.i6N9ripW079926@freefall.freebsd.org> To: laszlof@vonostingroup.com, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/69434: Added vendor patches to readline 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: Fri, 23 Jul 2004 09:53:47 -0000 Synopsis: Added vendor patches to readline port State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Fri Jul 23 09:52:11 GMT 2004 State-Changed-Why: Can you please try fetching the patches automatically using PATCHFILES & PATCH_SITES? Then we could drop the first patch as well from /files -- Volker Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Fri Jul 23 09:52:11 GMT 2004 Responsible-Changed-Why: I'll track this http://www.freebsd.org/cgi/query-pr.cgi?pr=69434 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 10: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 71E8E16A4CE for ; Fri, 23 Jul 2004 10:00:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B4643D45 for ; Fri, 23 Jul 2004 10:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NA0kSj080120 for ; Fri, 23 Jul 2004 10:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NA0kQQ080119; Fri, 23 Jul 2004 10:00:46 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 10:00:46 GMT Resent-Message-Id: <200407231000.i6NA0kQQ080119@freefall.freebsd.org> 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 C320A16A4CE for ; Fri, 23 Jul 2004 09:53:39 +0000 (GMT) Received: from norfolk.ki.iif.hu (norfolk.ki.iif.hu [193.6.222.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE26543D2F for ; Fri, 23 Jul 2004 09:53:38 +0000 (GMT) (envelope-from mohacsi@norfolk.ki.iif.hu) Received: (from mohacsi@localhost) by norfolk.ki.iif.hu (8.12.11/8.12.11) id i6N9rRqp009981; Fri, 23 Jul 2004 11:53:27 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200407230953.i6N9rRqp009981@norfolk.ki.iif.hu> Date: Fri, 23 Jul 2004 11:53:27 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69474: Maintainer update: security/tinyca to version 0.6.4 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, 23 Jul 2004 10:00:46 -0000 >Number: 69474 >Category: ports >Synopsis: Maintainer update: security/tinyca to version 0.6.4 >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 Jul 23 10:00:45 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.2-CURRENT i386 >Organization: NIIF >Environment: System: FreeBSD norfolk.ki.iif.hu 5.2-CURRENT FreeBSD 5.2-CURRENT #12: Thu Jul 8 14:37:25 CEST 2004 root@norfolk.ki.iif.hu:/usr/obj/usr/src/sys/NORFOLK i386 >Description: maintainer update to: security/tinyca to version 0.6.4 port changes: cleanup pkg-descr additional URL for MASTER_SITES original package changes: fixed bug, showing wrong options for renewal of certificates fixed bug creating requests via rightclick directly after creating a new CA fixed bug which added ugly empty box to cert/req page fixed bug with wrong openssl.conf during startup (server-cert with ca-extensions) fixed ca-config dialog during creation of root-ca (drop-downs) revocation reason can be given with openssl 0.9.7 changed default exportdir to users home remeber exportdir from last export added possibility to set the extension extendedKeyUsage added possibility to leave email out of the subject dn (0.9.7) >How-To-Repeat: Apply this diff. >Fix: diff -ruN tinyca.bak/Makefile tinyca/Makefile --- tinyca.bak/Makefile Fri Jun 25 12:53:17 2004 +++ tinyca/Makefile Fri Jul 23 11:48:56 2004 @@ -6,9 +6,10 @@ # PORTNAME= tinyca -PORTVERSION= 0.6.3 +PORTVERSION= 0.6.4 CATEGORIES= security net -MASTER_SITES= http://tinyca.sm-zone.net/ +MASTER_SITES= http://tinyca.sm-zone.net/ \ + http://tinyca.sm-zone.net/old MAINTAINER= Janos.Mohacsi@bsd.hu COMMENT= Simple graphical interface to manage a small Certification Authority @@ -18,13 +19,12 @@ zip:${PORTSDIR}/archivers/zip \ ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 -WRKSRC= ${WRKDIR}/TinyCA USE_PERL5= yes USE_OPENSSL= yes NO_BUILD= yes DOC_FILES= INSTALL LIB_FILES= CA.pm CERT.pm GUI.pm HELPERS.pm KEY.pm OpenSSL.pm REQ.pm TCONFIG.pm -LIB2_FILES= TCONFIG.pm HELPERS.pm CALLBACK.pm X509_infobox.pm WORDS.pm +LIB2_FILES= CALLBACK.pm HELPERS.pm TCONFIG.pm WORDS.pm X509_browser.pm X509_infobox.pm do-install: @${MKDIR} ${SITE_PERL}/${PORTNAME}/ diff -ruN tinyca.bak/distinfo tinyca/distinfo --- tinyca.bak/distinfo Fri Jun 25 12:53:17 2004 +++ tinyca/distinfo Fri Jul 23 10:48:39 2004 @@ -1,2 +1,2 @@ -MD5 (tinyca-0.6.3.tar.gz) = 8cb4dd1159c9ff71fc3c27e677c2e4c7 -SIZE (tinyca-0.6.3.tar.gz) = 97016 +MD5 (tinyca-0.6.4.tar.gz) = f8de3f67a0eaf05d3450f7ee993ec51e +SIZE (tinyca-0.6.4.tar.gz) = 116533 diff -ruN tinyca.bak/pkg-descr tinyca/pkg-descr --- tinyca.bak/pkg-descr Sat May 15 16:46:52 2004 +++ tinyca/pkg-descr Fri Jul 23 11:03:04 2004 @@ -1,7 +1,5 @@ TinyCA is a simple graphical userinterface written in Perl/Tk to manage a small CA (Certification Authority). -Features: - Currently TinyCA supports the following features: * unlimited number of CAs diff -ruN tinyca.bak/pkg-plist tinyca/pkg-plist --- tinyca.bak/pkg-plist Fri Jun 25 12:53:17 2004 +++ tinyca/pkg-plist Fri Jul 23 11:43:46 2004 @@ -11,6 +11,7 @@ %%SITE_PERL%%/tinyca/GUI/HELPERS.pm %%SITE_PERL%%/tinyca/GUI/TCONFIG.pm %%SITE_PERL%%/tinyca/GUI/WORDS.pm +%%SITE_PERL%%/tinyca/GUI/X509_browser.pm %%SITE_PERL%%/tinyca/GUI/X509_infobox.pm @dirrm %%SITE_PERL%%/tinyca/GUI @dirrm %%SITE_PERL%%/tinyca/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 10: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 EE08216A4CF for ; Fri, 23 Jul 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 CA46C43D5D for ; Fri, 23 Jul 2004 10:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NAoNr8086767 for ; Fri, 23 Jul 2004 10:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NAoN79086766; Fri, 23 Jul 2004 10:50:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 10:50:23 GMT Resent-Message-Id: <200407231050.i6NAoN79086766@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Grebenschikov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C22D416A4CE for ; Fri, 23 Jul 2004 10:48:43 +0000 (GMT) Received: from vbook.fbsd.ru (asplinux.ru [195.133.213.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B7C443D49 for ; Fri, 23 Jul 2004 10:48:43 +0000 (GMT) (envelope-from vova@vbook.fbsd.ru) Received: from vova by vbook.fbsd.ru with local (Exim 4.34; FreeBSD) id 1BnxbV-0000i4-73 for FreeBSD-gnats-submit@freebsd.org; Fri, 23 Jul 2004 14:48:41 +0400 Message-Id: Date: Fri, 23 Jul 2004 14:48:41 +0400 From: Vladimir Grebenschikov Sender: Vladimir Grebenschikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69475: xemacs invalidly calls xargs (witj unexisting -e flag) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vladimir Grebenschikov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 10:50:24 -0000 >Number: 69475 >Category: ports >Synopsis: xemacs invalidly calls xargs (witj unexisting -e flag) >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 Jul 23 10:50:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Vladimir Grebenschikov >Release: FreeBSD 5.2-CURRENT i386 >Organization: SWsoft >Environment: System: FreeBSD vbook.fbsd.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #61: Mon Jul 5 07:58:03 MSD 2004 root@walder.sw.ru:/ext/obj/ext/current/src/sys/VBOOK i386 $ pkg_info -I xemacs\* xemacs-devel-mule-21.5.b16_1 XEmacs(beta version) text editor with mule(Only the executa xemacs-mule-packages-3.7 XEmacs elisp packages for Mule(mule-packages) xemacs-packages-10.0 Basic XEmacs elisp packages(xemacs-packages) $ >Description: When I call grep-find (or other functions using find... | xargs ...) xemacs substitute invalid command line: "find . -type f -print0 | xargs -0 -e grep -n search..." FreeBSD does bot handle -e xargs key, run failed. invistegation problem: $ find /usr/local/lib/xemacs* -name '*.el' | xargs fgrep -- '-0 -e' /usr/local/lib/xemacs/xemacs-packages/lisp/igrep/igrep.el: ind ... -print0 | xargs -0 -e grep ...; /usr/local/lib/xemacs/xemacs-packages/lisp/igrep/igrep.el: "%s %s %s %s %s -print0 | xargs -0 -e %s") /usr/local/lib/xemacs/xemacs-packages/lisp/xemacs-base/compile.el: (format "find . -type f -print0 | xargs -0 -e %s" grep-comm and)) /usr/local/lib/xemacs/xemacs-packages/lisp/xemacs-base/compile.el: (format "find . %s %s -type f -print0 | xargs -0 -e %s" /usr/local/lib/xemacs-21.5-b16/etc/sample.init.el: (format "find . %s %s -type f -print0 | xargs -0 -e %s" $ >How-To-Repeat: Just run xemacs and try something grep-find "M-x grep-find" >Fix: Workaround, but not fix, as root: FILES=`find /usr/local/lib/xemacs* -name '*.el'` perl -pi -e 's/xargs -0 -e/xargs -0/g' $FILES xemacs -batch -f batch-byte-compile $FILES >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 11: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 4D27316A4CE for ; Fri, 23 Jul 2004 11:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4125343D55 for ; Fri, 23 Jul 2004 11:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NBKQgh091652 for ; Fri, 23 Jul 2004 11:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NBKQ9R091651; Fri, 23 Jul 2004 11:20:26 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 11:20:26 GMT Resent-Message-Id: <200407231120.i6NBKQ9R091651@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, HAYASHI Yasushi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4272F16A4CE for ; Fri, 23 Jul 2004 11:15:45 +0000 (GMT) Received: from yasi.minidns.net (218-228-205-227.eonet.ne.jp [218.228.205.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79BB643D2F for ; Fri, 23 Jul 2004 11:15:44 +0000 (GMT) (envelope-from yasi@yasi.minidns.net) Received: from yasi.minidns.net (localhost.yasi.to [127.0.0.1]) by yasi.minidns.net (8.12.10/8.12.10) with ESMTP id i6NBFXAk088179; Fri, 23 Jul 2004 20:15:34 +0900 (JST) (envelope-from yasi@yasi.minidns.net) Received: (from root@localhost) by yasi.minidns.net (8.12.10/8.12.10/Submit) id i6NBFWXJ088178; Fri, 23 Jul 2004 20:15:32 +0900 (JST) (envelope-from yasi) Message-Id: <200407231115.i6NBFWXJ088178@yasi.minidns.net> Date: Fri, 23 Jul 2004 20:15:32 +0900 (JST) From: HAYASHI Yasushi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: estartu@augusta.de cc: yasi@yasi.to Subject: ports/69476: Update port: www/zope security update to zope-2.7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: HAYASHI Yasushi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 11:20:27 -0000 >Number: 69476 >Category: ports >Synopsis: Update port: www/zope security update to zope-2.7.2 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 11:20:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: HAYASHI Yasushi >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: personal >Environment: System: FreeBSD yasi.minidns.net 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Thu Jul 1 09:03:13 JST 2004 yasi@yasi.minidns.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Zope-2.7.1 had a security bug in Page Templates. ( See http://zope.org/Products/Zope/Hotfix_2004-07-14/security_alert ) Zope-2.7.2 fixes this problem. And this version will solve a problem that some files (.dtml, .gif ?) in ${ZOPEBASEDIR}/lib/python are installed with false permissions. ( PR ports/68408 which I met, and ports/68716 ) >How-To-Repeat: >Fix: diff -urN www/zope.old/Makefile www/zope/Makefile --- www/zope.old/Makefile Sat Jul 3 07:20:57 2004 +++ www/zope/Makefile Fri Jul 23 19:33:50 2004 @@ -6,10 +6,10 @@ # PORTNAME= zope -PORTVERSION= 2.7.1 +PORTVERSION= 2.7.2 CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION} +MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ +DISTNAME= Zope-${PORTVERSION}-0 EXTRACT_SUFX= .tgz MAINTAINER= estartu@augusta.de @@ -21,7 +21,6 @@ USE_RC_SUBR= yes USE_REINPLACE= yes DIST_SUBDIR= zope -WRKSRC= ${WRKDIR}/${DISTNAME}-0 # Note: the notes that follow reflect the decisions of prior maintainers # of this port. IOW, don't blame me if you don't like the way it's done. @@ -75,6 +74,7 @@ ${FILESDIR}/zope.sh > ${PREFIX}/etc/rc.d/zope.sh @${CHMOD} ${BINMODE} ${PREFIX}/etc/rc.d/zope.sh @${MKDIR} ${ZOPEBASEDIR}/Products + @${CP} ${FILESDIR}/Products_00readme-freebsd.txt ${ZOPEBASEDIR}/Products/00readme-freebsd.txt @${CAT} ${PKGMESSAGE} @${ECHO_MSG} @@ -86,5 +86,6 @@ @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/var @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/log @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${FILESDIR}/instance_message + @${RM} -f ${ZOPEBASEDIR}/bin/copyzopeskel.pyc .include diff -urN www/zope.old/distinfo www/zope/distinfo --- www/zope.old/distinfo Sat Jul 3 07:20:57 2004 +++ www/zope/distinfo Wed Jul 21 22:15:32 2004 @@ -1,2 +1,2 @@ -MD5 (zope/Zope-2.7.1.tgz) = ae9d4bb3f7220dfffb6e91b42503b16c -SIZE (zope/Zope-2.7.1.tgz) = 2754949 +MD5 (zope/Zope-2.7.2-0.tgz) = 08b3c4a119aa1ded2e7b1b3d5bc45425 +SIZE (zope/Zope-2.7.2-0.tgz) = 2754459 diff -urN www/zope.old/files/Products_00readme-freebsd.txt www/zope/files/Products_00readme-freebsd.txt --- www/zope.old/files/Products_00readme-freebsd.txt Thu Jan 1 09:00:00 1970 +++ www/zope/files/Products_00readme-freebsd.txt Fri Jul 23 18:55:36 2004 @@ -0,0 +1,2 @@ +This directory is used for install Zope products via ports/package. +All products in here are enabled on all Zope instances. diff -urN www/zope.old/pkg-plist www/zope/pkg-plist --- www/zope.old/pkg-plist Sat Jul 3 07:20:57 2004 +++ www/zope/pkg-plist Fri Jul 23 19:34:48 2004 @@ -1,9 +1,9 @@ etc/rc.d/zope.sh +%%ZOPEBASEDIR%%/Products/00readme-freebsd.txt %%ZOPEBASEDIR%%/bin/README.txt %%ZOPEBASEDIR%%/bin/check_catalog.py %%ZOPEBASEDIR%%/bin/compilezpy.py %%ZOPEBASEDIR%%/bin/copyzopeskel.py -@exec rm -f %%ZOPEBASEDIR%%/bin/copyzopeskel.pyc %%ZOPEBASEDIR%%/bin/decompilezpy.py %%ZOPEBASEDIR%%/bin/load_site.py %%ZOPEBASEDIR%%/bin/mkzeoinstance.py @@ -1432,6 +1432,8 @@ %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testBrains.pyc %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc +%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testLazySequences.py +%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testLazySequences.pyc %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif @@ -1786,8 +1788,6 @@ %%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.py %%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.pyc %%ZOPEBASEDIR%%/lib/python/TAL/HISTORY.txt -%%ZOPEBASEDIR%%/lib/python/TAL/HTMLParser.py -%%ZOPEBASEDIR%%/lib/python/TAL/HTMLParser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.py %%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/ITALES.py @@ -1883,6 +1883,7 @@ %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test20.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test29.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test34.html +%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test36.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_failed_attr_translation.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal1.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal2.html @@ -1927,6 +1928,7 @@ %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test20.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test29.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test34.html +%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test36.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_failed_attr_translation.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal1.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal2.html @@ -1939,8 +1941,6 @@ %%ZOPEBASEDIR%%/lib/python/TAL/tests/run.pyc %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.py %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmlparser.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmlparser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.py %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_sourcepos.py @@ -2670,6 +2670,8 @@ %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/sv.pyc %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roles.py %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roles.pyc +%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roman.py +%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roman.pyc %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/states.py %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/states.pyc %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/tableparser.py @@ -2680,8 +2682,6 @@ %%ZOPEBASEDIR%%/lib/python/docutils/readers/pep.pyc %%ZOPEBASEDIR%%/lib/python/docutils/readers/standalone.py %%ZOPEBASEDIR%%/lib/python/docutils/readers/standalone.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/roman.py -%%ZOPEBASEDIR%%/lib/python/docutils/roman.pyc %%ZOPEBASEDIR%%/lib/python/docutils/statemachine.py %%ZOPEBASEDIR%%/lib/python/docutils/statemachine.pyc %%ZOPEBASEDIR%%/lib/python/docutils/transforms/__init__.py >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 11: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 25C2616A4CE for ; Fri, 23 Jul 2004 11:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B0B43D67 for ; Fri, 23 Jul 2004 11:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NBUMk1091919 for ; Fri, 23 Jul 2004 11:30:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NBUMnd091917; Fri, 23 Jul 2004 11:30:22 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 11:30:22 GMT Resent-Message-Id: <200407231130.i6NBUMnd091917@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, guto Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1785416A4CE for ; Fri, 23 Jul 2004 11:23:06 +0000 (GMT) Received: from srv1.galle.com.br (srv1.galle.com.br [200.246.25.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 1430943D1F for ; Fri, 23 Jul 2004 11:23:05 +0000 (GMT) (envelope-from root@srv1.galle.com.br) Received: (qmail 41586 invoked by uid 0); 23 Jul 2004 08:23:03 -0300 Message-Id: <20040723112303.41585.qmail@srv1.galle.com.br> Date: 23 Jul 2004 08:23:03 -0300 From: guto To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: tmseck@netcologne.de Subject: ports/69477: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: guto List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 11:30:23 -0000 >Number: 69477 >Category: ports >Synopsis: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found >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: Fri Jul 23 11:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: guto >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: Galle (www.galle.com.br) >Environment: System: FreeBSD srv1.galle.com.br 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #27: Wed May 26 10:21:14 BRT 2004 root@srv1.galle.com.br:/usr/obj/usr/src/sys/GALLE i386 >Description: When I try do compile the last version of squid I've got file not found message for file squid-2.5.STABLE6-ldap_helpers.patch >How-To-Repeat: root@srv1:/usr/ports/www/squid# make ===> Found saved configuration for squid-2.5.4_8 ===> Extracting for squid-2.5.6_2 >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for squid2.5/squid-2.5.STABLE6.tar.bz2. >> Checksum OK for squid2.5/squid-2.5.STABLE6-ufs_no_valid_dir.patch. >> Checksum mismatch for squid2.5/squid-2.5.STABLE6-ldap_helpers.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-concurrent_dns_lookups.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-request_header_max_size.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-ntlm_challengereuse_leak.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-ntlm_noreuse_leak.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-partial_hit_is_miss.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-HEAD.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-ufs_create_error.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-basic_auth_caseinsensitive.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-active_requests_delaypool.patch. >> Checksum OK for squid2.5/squid-2.5.STABLE6-client_db_gc.patch. ===> Refetch for 1 more times files: squid2.5/squid-2.5.STABLE6-ldap_helpers.patch ===> Found saved configuration for squid-2.5.4_8 >> squid-2.5.STABLE6-ldap_helpers.patch doesn't seem to exist in /usr/ports/distfiles/squid2.5. >> Attempting to fetch from http://www.squid-cache.org/Versions/v2/2.5/bugs/. fetch: squid-2.5.STABLE6-ldap_helpers.patch: local modification time does not match remote >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/squid2.5/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/squid2.5/squid-2.5.STABLE6-ldap_helpers.patch: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/squid2.5 and try again. *** Error code 1 Stop in /usr/ports/www/squid. *** Error code 1 Stop in /usr/ports/www/squid. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 11:43: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 C642A16A4CE; Fri, 23 Jul 2004 11:43:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A616643D4C; Fri, 23 Jul 2004 11:43:32 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6NBhWvP093331; Fri, 23 Jul 2004 11:43:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NBhWUm093327; Fri, 23 Jul 2004 11:43:32 GMT (envelope-from edwin) Date: Fri, 23 Jul 2004 11:43:32 GMT From: Edwin Groothuis Message-Id: <200407231143.i6NBhWUm093327@freefall.freebsd.org> To: guto@galle.com.br, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69477: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 11:43:32 -0000 Synopsis: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Fri Jul 23 11:42:24 GMT 2004 State-Changed-Why: Remove /usr/ports/distfiles/squid2.5/squid-2.5.STABLE6-ldap_helpers.patch and try again. (or do "make distclean" and "make checksum") http://www.freebsd.org/cgi/query-pr.cgi?pr=69477 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 11: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 5373216A4DA for ; Fri, 23 Jul 2004 11:50:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3714C43D3F for ; Fri, 23 Jul 2004 11:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NBoQw6093478 for ; Fri, 23 Jul 2004 11:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NBoQ5r093477; Fri, 23 Jul 2004 11:50:26 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 11:50:26 GMT Resent-Message-Id: <200407231150.i6NBoQ5r093477@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Guto Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9252216A4CE for ; Fri, 23 Jul 2004 11:46:55 +0000 (GMT) Received: from srv1.galle.com.br (srv1.galle.com.br [200.246.25.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 67F5243D2F for ; Fri, 23 Jul 2004 11:46:54 +0000 (GMT) (envelope-from root@srv1.galle.com.br) Received: (qmail 47772 invoked by uid 0); 23 Jul 2004 08:46:53 -0300 Message-Id: <20040723114653.47769.qmail@srv1.galle.com.br> Date: 23 Jul 2004 08:46:53 -0300 From: Guto To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: j@pureftpd.org Subject: ports/69479: ERROR: fetch pure-ftpd-1.0.20.tar.bz2: File unavailable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Guto List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 11:50:27 -0000 >Number: 69479 >Category: ports >Synopsis: ERROR: fetch pure-ftpd-1.0.20.tar.bz2: File unavailable >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: Fri Jul 23 11:50:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Guto >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: Galle (www.galle.com.br) >Environment: System: FreeBSD srv1.galle.com.br 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #27: Wed May 26 10:21:14 BRT 2004 root@srv1.galle.com.br:/usr/obj/usr/src/sys/GALLE i386 >Description: When I try to compile Ive got file not found message for file pure-ftpd-1.0.20.tar.bz2 >How-To-Repeat: root@srv1:/usr/ports/ftp/pure-ftpd# make ===> Found saved configuration for pure-ftpd-1.0.19 You can use the following additional options: WITH_CERTFILE=/path - Set different location of certificate file for TLS WITH_LANG=lang - Enable compilation of language support, lang is one of english, german, romanian, french, french-funny, polish, spanish, dutch, italian, brazilian-portuguese, danish, slovak, korean, norwegian, swedish, russian, traditional-chinese, simplified-chinese, hungarian, catalan and czech. ===> Extracting for pure-ftpd-1.0.20_1 >> Checksum mismatch for pure-ftpd-1.0.20.tar.bz2. ===> Refetch for 1 more times files: pure-ftpd-1.0.20.tar.bz2 ===> Found saved configuration for pure-ftpd-1.0.19 You can use the following additional options: WITH_CERTFILE=/path - Set different location of certificate file for TLS WITH_LANG=lang - Enable compilation of language support, lang is one of english, german, romanian, french, french-funny, polish, spanish, dutch, italian, brazilian-portuguese, danish, slovak, korean, norwegian, swedish, russian, traditional-chinese, simplified-chinese, hungarian, catalan and czech. >> pure-ftpd-1.0.20.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/. fetch: pure-ftpd-1.0.20.tar.bz2: local modification time does not match remote >> Attempting to fetch from ftp://ftp2.fr.pureftpd.org/pub/mirrors/ftp.fr.pureftpd.org/pub/pure-ftpd/releases/. fetch: pure-ftpd-1.0.20.tar.bz2: local modification time does not match remote >> Attempting to fetch from ftp://ftp3.fr.pureftpd.org/pure-ftpd/releases/. fetch: pure-ftpd-1.0.20.tar.bz2: local modification time does not match remote >> Attempting to fetch from ftp://ftp.dk.pureftpd.org/mirrors/pure-ftpd/releases/. fetch: ftp://ftp.dk.pureftpd.org/mirrors/pure-ftpd/releases/pure-ftpd-1.0.20.tar.bz2: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.es.pureftpd.org/mirror/pureftpd/latest/releases/. fetch: ftp://ftp.es.pureftpd.org/mirror/pureftpd/latest/releases/pure-ftpd-1.0.20.tar.bz2: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.nl.pureftpd.org/pub/pure-ftpd/releases/. fetch: pure-ftpd-1.0.20.tar.bz2: local modification time does not match remote >> Attempting to fetch from ftp://ftp.fr.pureftpd.org/pub/pure-ftpd/releases/. fetch: pure-ftpd-1.0.20.tar.bz2: local modification time does not match remote >> Attempting to fetch from ftp://ftp.cn.pureftpd.org/pub/pureftpd/pure-ftpd/releases/. fetch: pure-ftpd-1.0.20.tar.bz2: local modification time does not match remote >> Attempting to fetch from http://heanet.dl.sourceforge.net/sourceforge/pureftpd/. fetch: http://heanet.dl.sourceforge.net/sourceforge/pureftpd/pure-ftpd-1.0.20.tar.bz2: Not Found >> Attempting to fetch from http://aleron.dl.sourceforge.net/sourceforge/pureftpd/. fetch: http://aleron.dl.sourceforge.net/sourceforge/pureftpd/pure-ftpd-1.0.20.tar.bz2: Moved Temporarily >> Attempting to fetch from http://umn.dl.sourceforge.net/sourceforge/pureftpd/. fetch: http://umn.dl.sourceforge.net/sourceforge/pureftpd/pure-ftpd-1.0.20.tar.bz2: Moved Temporarily >> Attempting to fetch from http://belnet.dl.sourceforge.net/sourceforge/pureftpd/. fetch: http://belnet.dl.sourceforge.net/sourceforge/pureftpd/pure-ftpd-1.0.20.tar.bz2: Moved Temporarily >> Attempting to fetch from http://voxel.dl.sourceforge.net/sourceforge/pureftpd/. fetch: http://voxel.dl.sourceforge.net/sourceforge/pureftpd/pure-ftpd-1.0.20.tar.bz2: Moved Temporarily >> Attempting to fetch from http://optusnet.dl.sourceforge.net/sourceforge/pureftpd/. fetch: http://optusnet.dl.sourceforge.net/sourceforge/pureftpd/pure-ftpd-1.0.20.tar.bz2: Moved Temporarily >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/pure-ftpd-1.0.20.tar.bz2: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/ftp/pure-ftpd. *** Error code 1 Stop in /usr/ports/ftp/pure-ftpd. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 11: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 4341316A4CE for ; Fri, 23 Jul 2004 11:50:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CA8B43D2D for ; Fri, 23 Jul 2004 11:50:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NBoUdm093498 for ; Fri, 23 Jul 2004 11:50:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NBoUNh093497; Fri, 23 Jul 2004 11:50:30 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 11:50:30 GMT Message-Id: <200407231150.i6NBoUNh093497@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Oliver Eikemeier Subject: Re: ports/69477: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oliver Eikemeier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 11:50:30 -0000 The following reply was made to PR ports/69477; it has been noted by GNATS. From: Oliver Eikemeier To: guto Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69477: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found Date: Fri, 23 Jul 2004 13:51:15 +0200 guto wrote: > When I try do compile the last version of squid I've got file not > found message for file squid-2.5.STABLE6-ldap_helpers.patch The distfile has been rerolled, see PR 69408 (sigh). Do rm /usr/ports/distfiles/squid2.5/squid-2.5.STABLE6-ldap_helpers.patch or make distclean and try again. Btw, currently ldap support is buggy. See PR 69465. -Oliver From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 12: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 46BAD16A4CE for ; Fri, 23 Jul 2004 12:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C7EA43D48 for ; Fri, 23 Jul 2004 12:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NCATgC098122 for ; Fri, 23 Jul 2004 12:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NCATcL098119; Fri, 23 Jul 2004 12:10:29 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 12:10:29 GMT Message-Id: <200407231210.i6NCATcL098119@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tsurutani Naoki Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 12:10:29 -0000 The following reply was made to PR ports/69266; it has been noted by GNATS. From: Tsurutani Naoki To: tmseck-lists@netcologne.de (Thomas-Martin Seck) Cc: bug-followup@freebsd.org Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" Date: Fri, 23 Jul 2004 21:00:42 +0900 tmseck-lists@netcologne.de (Thomas-Martin Seck) wrote: > >>Fix: > > I don't know, but I think the way of generating PLIST should be improved. > > I see the problem, but the only sure-fire way to avoid this would be to > stage a fake installation first, create the package list and then copy > this installation into the PREFIX dir, like firefox does. I am not > really fond of this and I would like to avoid it. Mind you that other > ports suffer from the same problem, e.g. vim. And while this will > preserve locally added files, it will still end in modified files being > overwritten on every update. I wonder why all files are not listed in Makefile. There are many compile options, indeed, but the content of icons directory does not differ, as I guess, and errors files are also same except the choice of language. The following patch will solve the problem (at least on my host). If you have another reason not to adopt the following way, please tell me. --- /usr/ports/www/squid/Makefile.orig Fri Jul 23 05:07:31 2004 +++ /usr/ports/www/squid/Makefile Fri Jul 23 20:45:13 2004 @@ -311,6 +311,29 @@ @${SETENV} squid_user=${SQUID_UID} squid_group=${SQUID_GID} \ PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL +# prepare for plist +ICON_FILES= anthony-binhex.gif anthony-bomb.gif anthony-box.gif \ + anthony-box2.gif anthony-c.gif anthony-compressed.gif \ + anthony-dir.gif anthony-dirup.gif anthony-dvi.gif \ + anthony-f.gif anthony-image.gif anthony-image2.gif \ + anthony-layout.gif anthony-link.gif anthony-movie.gif \ + anthony-pdf.gif anthony-portal.gif anthony-ps.gif \ + anthony-quill.gif anthony-script.gif anthony-sound.gif \ + anthony-tar.gif anthony-tex.gif anthony-text.gif \ + anthony-unknown.gif anthony-xbm.gif anthony-xpm.gif + +ERROR_FILES= ERR_ACCESS_DENIED ERR_CACHE_ACCESS_DENIED \ + ERR_CACHE_MGR_ACCESS_DENIED ERR_CANNOT_FORWARD \ + ERR_CONNECT_FAIL ERR_DNS_FAIL ERR_FORWARDING_DENIED \ + ERR_FTP_DISABLED ERR_FTP_FAILURE ERR_FTP_FORBIDDEN \ + ERR_FTP_NOT_FOUND ERR_FTP_PUT_CREATED \ + ERR_FTP_PUT_ERROR ERR_FTP_PUT_MODIFIED \ + ERR_FTP_UNAVAILABLE ERR_INVALID_REQ ERR_INVALID_URL \ + ERR_LIFETIME_EXP ERR_NO_RELAY ERR_ONLY_IF_CACHED_MISS \ + ERR_READ_ERROR ERR_READ_TIMEOUT ERR_SHUTTING_DOWN \ + ERR_SOCKET_FAILURE ERR_TOO_BIG ERR_UNSUP_REQ \ + ERR_URN_RESOLVE ERR_WRITE_ERROR ERR_ZERO_SIZE_OBJECT + post-install: .if defined(WITH_SQUID_PINGER) ${CHMOD} 4510 ${PREFIX}/libexec/squid/pinger; \ @@ -327,12 +350,14 @@ @cd ${PREFIX} && ${FIND} libexec/squid -type f -o -type l | ${SORT} \ >>${TMPPLIST} @${ECHO_CMD} "@dirrm libexec/squid" >>${TMPPLIST} - @cd ${PREFIX} && ${FIND} etc/squid/icons -type f -o -type l | ${SORT} \ - >>${TMPPLIST} +.for i in ${ICON_FILES} + @${ECHO_CMD} "etc/squid/icons/${i}" >>${TMPPLIST} +.endfor @${ECHO_CMD} "@dirrm etc/squid/icons" >>${TMPPLIST} .for d in ${SQUID_LANGUAGES} - @cd ${PREFIX} && ${FIND} etc/squid/errors/${d} -type f | ${SORT} \ - >>${TMPPLIST} +.for f in ${ERROR_FILES} + @${ECHO_CMD} "etc/squid/errors/${d}/${f}" >>${TMPPLIST} +.endfor @${ECHO_CMD} "@dirrm etc/squid/errors/${d}" >>${TMPPLIST} .endfor @${ECHO_CMD} "@unexec rmdir %D/etc/squid/errors 2>/dev/null || true" \ From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 05:22: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 8CD2716A4D1 for ; Fri, 23 Jul 2004 05:22:59 +0000 (GMT) Received: from web51801.mail.yahoo.com (web51801.mail.yahoo.com [206.190.38.232]) by mx1.FreeBSD.org (Postfix) with SMTP id 8E39843D46 for ; Fri, 23 Jul 2004 05:22:58 +0000 (GMT) (envelope-from patrick_dkt@yahoo.com.hk) Message-ID: <20040723052258.92056.qmail@web51801.mail.yahoo.com> Received: from [203.168.166.82] by web51801.mail.yahoo.com via HTTP; Fri, 23 Jul 2004 13:22:58 CST Date: Fri, 23 Jul 2004 13:22:58 +0800 (CST) From: =?big5?q?Patrick=20Dung?= To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports@freebsd.org In-Reply-To: <200407221132.i6MBWEq0015085@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Fri, 23 Jul 2004 12:19:14 +0000 Subject: Re: ports/69419: print/pdftk: update to 0.941 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 05:22:59 -0000 I don't mind changing it to 0.94.1 Actually, I am not aware about this problem. I just grab the version number from the author website. Thanks. Patrick --- Volker Stolz ¤º®e¡G> Synopsis: print/pdftk: update to 0.941 > > State-Changed-From-To: open->feedback > State-Changed-By: vs > State-Changed-When: Thu Jul 22 11:30:44 GMT 2004 > State-Changed-Why: > Your version-number is begging for trouble on > subsequent updates: > > pdftk@menelaos [13:30:21]> pkg_version -t 0.941 0.95 > > > > That is, 0.95 will be considered older than 0.941. > If you don't > mind I'd like to change this to 0.94.1 on the fly. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69419 > _________________________________________________________ ¥²±þ§Þ¡B¶¼ºq¡B¤p¬P¬P... ®öº©¹aÁn ±¡¤ß³sô http://us.rd.yahoo.com/evt=22281/*http://ringtone.yahoo.com.hk/ From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 12:18: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 DA78B16A4CE for ; Fri, 23 Jul 2004 12:18:59 +0000 (GMT) Received: from mail.vonostingroup.com (ip209-154.digitalrealm.net [216.144.209.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 2FC6543D31 for ; Fri, 23 Jul 2004 12:18:57 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: (qmail 93747 invoked by uid 0); 23 Jul 2004 12:19:01 -0000 Received: from laszlof@vonostingroup.com by ritamari.vonostingroup.com by uid 89 with qmail-scanner-1.20 (clamuko: 0.65. spamassassin: 2.63. Clear:RC:1(192.168.1.100):. Processed in 0.81205 secs); 23 Jul 2004 12:19:01 -0000 Received: from unknown (HELO vonostingroup.com) (laszlof@vonostingroup.com@192.168.1.100) by 192.168.1.5 with SMTP; 23 Jul 2004 12:19:01 -0000 Message-ID: <41011020.9080907@vonostingroup.com> Date: Fri, 23 Jul 2004 08:18:24 -0500 From: Frank Laszlo User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <200407230953.i6N9ripW079926@freefall.freebsd.org> In-Reply-To: <200407230953.i6N9ripW079926@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------000405050903010801000903" cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69434: Added vendor patches to readline 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: Fri, 23 Jul 2004 12:19:00 -0000 This is a multi-part message in MIME format. --------------000405050903010801000903 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit No Problem. That method is rather new to me, I did however take your advise and add PATCHFILES and PATCH_SITES to the Makefile, much cleaner now. Thanks. --------------000405050903010801000903 Content-Type: text/plain; name="readline.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="readline.patch" diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Thu Jul 22 03:17:14 2004 +++ readline/Makefile Fri Jul 23 08:18:00 2004 @@ -7,9 +7,13 @@ PORTNAME= readline PORTVERSION= 4.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ + +PATCHFILES= readline43-001 readline43-002 readline43-003 readline43-004 readline43-005 +PATCH_SITES= ${MASTER_SITE_GNU} +SUBDIR= ${PORTNAME} MAINTAINER= laszlof@vonostingroup.com COMMENT= A library for editing command lines as they are typed diff -rNU3 readline.old/distinfo readline/distinfo --- readline.old/distinfo Thu Mar 18 13:00:19 2004 +++ readline/distinfo Fri Jul 23 08:03:59 2004 @@ -1,2 +1,12 @@ MD5 (readline-4.3.tar.gz) = f86f7cb717ab321fe15f1bbcb058c11e SIZE (readline-4.3.tar.gz) = 961662 +MD5 (readline43-001) = aacf1c41717f305ab5ce45e9d028821d +SIZE (readline43-001) = 1126 +MD5 (readline43-002) = 8df4bf2c7e77e05c4ecd949b9b5dedf3 +SIZE (readline43-002) = 738 +MD5 (readline43-003) = 946ed64a306afadb981b294747578e95 +SIZE (readline43-003) = 2202 +MD5 (readline43-004) = 392705156b3054eaae2f2a28238592fb +SIZE (readline43-004) = 3140 +MD5 (readline43-005) = 0e4affc42a7bfc70f0a50529e7901954 +SIZE (readline43-005) = 1056 diff -rNU3 readline.old/files/patch-aa readline/files/patch-aa --- readline.old/files/patch-aa Thu Jul 22 03:17:14 2004 +++ readline/files/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,16 +0,0 @@ -*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 ---- bind.c Wed Jul 31 09:11:18 2002 -*************** -*** 312,316 **** - and the function bound to `a' to be executed when the user - types `abx', leaving `bx' in the input queue. */ -! if (k.function /* && k.type == ISFUNC */) - { - map[ANYOTHERKEY] = k; ---- 312,316 ---- - and the function bound to `a' to be executed when the user - types `abx', leaving `bx' in the input queue. */ -! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) - { - map[ANYOTHERKEY] = k; - --------------000405050903010801000903-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 12: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 A042616A4CE for ; Fri, 23 Jul 2004 12:20:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 999EF43D49 for ; Fri, 23 Jul 2004 12:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NCKSYn098579 for ; Fri, 23 Jul 2004 12:20:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NCKS9s098578; Fri, 23 Jul 2004 12:20:28 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 12:20:28 GMT Message-Id: <200407231220.i6NCKS9s098578@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas-Martin Seck Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 12:20:28 -0000 The following reply was made to PR ports/69266; it has been noted by GNATS. From: Thomas-Martin Seck To: Tsurutani Naoki Cc: bug-followup@freebsd.org Subject: Re: ports/69266: www/squid delete existing files when "make deinstall" Date: Fri, 23 Jul 2004 14:19:21 +0200 * Tsurutani Naoki (turutani@scphys.kyoto-u.ac.jp): > I wonder why all files are not listed in Makefile. ... Thanks for your input! I worked on this myself and my solution was to move all static parts of the package list back to pkg-plist. Adding the language specific error pages would be done in a loop over the selected languages using a hardcoded list of "official" file names, just like you propose. I'll submit an update soon. Thanks again for spotting the problem! From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 12:25:07 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 DA12916A4CE for ; Fri, 23 Jul 2004 12:25:07 +0000 (GMT) Received: from mail.vonostingroup.com (ip209-154.digitalrealm.net [216.144.209.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 416BD43D41 for ; Fri, 23 Jul 2004 12:25:07 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: (qmail 17113 invoked by uid 0); 23 Jul 2004 12:25:11 -0000 Received: from laszlof@vonostingroup.com by ritamari.vonostingroup.com by uid 89 with qmail-scanner-1.20 (clamuko: 0.65. spamassassin: 2.63. Clear:RC:1(192.168.1.100):. Processed in 1.296098 secs); 23 Jul 2004 12:25:11 -0000 Received: from unknown (HELO vonostingroup.com) (laszlof@vonostingroup.com@192.168.1.100) by 192.168.1.5 with SMTP; 23 Jul 2004 12:25:10 -0000 Message-ID: <41011192.7010702@vonostingroup.com> Date: Fri, 23 Jul 2004 08:24:34 -0500 From: Frank Laszlo User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <200407230953.i6N9ripW079926@freefall.freebsd.org> In-Reply-To: <200407230953.i6N9ripW079926@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------020102070702080601070308" cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69434: Added vendor patches to readline 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: Fri, 23 Jul 2004 12:25:08 -0000 This is a multi-part message in MIME format. --------------020102070702080601070308 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit I should really pay attention before I send a patch, Heres the right one. -Frank Laszlo --------------020102070702080601070308 Content-Type: text/plain; name="readline.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="readline.patch" diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Thu Jul 22 03:17:14 2004 +++ readline/Makefile Fri Jul 23 08:23:18 2004 @@ -7,9 +7,13 @@ PORTNAME= readline PORTVERSION= 4.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ + +PATCHFILES= readline43-001 readline43-002 readline43-003 readline43-004 readline43-005 +PATCH_SITES= ${MASTER_SITE_GNU}/${PORTNAME} +PATCH_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}-${PORTVERSION}-patches MAINTAINER= laszlof@vonostingroup.com COMMENT= A library for editing command lines as they are typed diff -rNU3 readline.old/distinfo readline/distinfo --- readline.old/distinfo Thu Mar 18 13:00:19 2004 +++ readline/distinfo Fri Jul 23 08:03:59 2004 @@ -1,2 +1,12 @@ MD5 (readline-4.3.tar.gz) = f86f7cb717ab321fe15f1bbcb058c11e SIZE (readline-4.3.tar.gz) = 961662 +MD5 (readline43-001) = aacf1c41717f305ab5ce45e9d028821d +SIZE (readline43-001) = 1126 +MD5 (readline43-002) = 8df4bf2c7e77e05c4ecd949b9b5dedf3 +SIZE (readline43-002) = 738 +MD5 (readline43-003) = 946ed64a306afadb981b294747578e95 +SIZE (readline43-003) = 2202 +MD5 (readline43-004) = 392705156b3054eaae2f2a28238592fb +SIZE (readline43-004) = 3140 +MD5 (readline43-005) = 0e4affc42a7bfc70f0a50529e7901954 +SIZE (readline43-005) = 1056 diff -rNU3 readline.old/files/patch-aa readline/files/patch-aa --- readline.old/files/patch-aa Thu Jul 22 03:17:14 2004 +++ readline/files/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,16 +0,0 @@ -*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 ---- bind.c Wed Jul 31 09:11:18 2002 -*************** -*** 312,316 **** - and the function bound to `a' to be executed when the user - types `abx', leaving `bx' in the input queue. */ -! if (k.function /* && k.type == ISFUNC */) - { - map[ANYOTHERKEY] = k; ---- 312,316 ---- - and the function bound to `a' to be executed when the user - types `abx', leaving `bx' in the input queue. */ -! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) - { - map[ANYOTHERKEY] = k; - --------------020102070702080601070308-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 12: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 B80DE16A4CE for ; Fri, 23 Jul 2004 12:30:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E58243D53 for ; Fri, 23 Jul 2004 12:30:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NCUP64098950 for ; Fri, 23 Jul 2004 12:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NCUPlr098949; Fri, 23 Jul 2004 12:30:25 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 12:30:25 GMT Resent-Message-Id: <200407231230.i6NCUPlr098949@freefall.freebsd.org> 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 9F4D516A4CE for ; Fri, 23 Jul 2004 12:30:07 +0000 (GMT) Received: from greendale.ukc.ac.uk (greendale.ukc.ac.uk [129.12.21.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A9B43D46 for ; Fri, 23 Jul 2004 12:30:06 +0000 (GMT) (envelope-from t.d.bishop@kent.ac.uk) Received: from pendennis.ukc.ac.uk ([129.12.3.232]) by greendale.ukc.ac.uk with esmtp (Exim 4.22) id 1BnzAw-0001fw-J7; Fri, 23 Jul 2004 13:29:22 +0100 Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.40 (FreeBSD)) id 1BnzAw-0009vs-FM; Fri, 23 Jul 2004 13:29:22 +0100 Message-Id: Date: Fri, 23 Jul 2004 13:29:22 +0100 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/69481: Changes to mirror.ac.uk mirror X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tim Bishop List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 12:30:25 -0000 >Number: 69481 >Category: ports >Synopsis: Changes to mirror.ac.uk mirror >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: Fri Jul 23 12:30:25 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 tdb@pendennis.ukc.ac.uk:/usr/obj/usr/src/sys/PENDENNIS i386 >Description: As of 1 August the mirror.ac.uk service will cease to exist in it's current form. The new people managing it will be running with a different namespace, so we can guarantee all ports that use it will break. They're also going to be mirroring a smaller set of mirrors. The sensible option for now seems to be to remove all links to it and allow maintainers to update their ports with a new URL if their package is mirrored by the new service in the coming months. >How-To-Repeat: >Fix: The patch below removes mirror.ac.uk across the ports tree, including bsd.sites.mk. --- mirror.ac.uk.diff begins here --- Index: Mk/bsd.sites.mk =================================================================== RCS file: /u1/freebsd/cvs/ports/Mk/bsd.sites.mk,v retrieving revision 1.254 diff -u -r1.254 bsd.sites.mk --- Mk/bsd.sites.mk 19 Jul 2004 13:53:49 -0000 1.254 +++ Mk/bsd.sites.mk 22 Jul 2004 16:03:06 -0000 @@ -187,7 +187,6 @@ ftp://ftp.is.co.za/networking/mail/mta/exim/%SUBDIR%/ \ ftp://ftp.reaper.org/pub/exim/%SUBDIR%/ \ ftp://sunsite.cnlab-switch.ch/mirror/exim/%SUBDIR%/ \ - http://www.mirror.ac.uk/sites/ftp.csx.cam.ac.uk/pub/software/email/exim/%SUBDIR%/ \ ftp://ftp.demon.co.uk/pub/mirrors/exim/%SUBDIR%/ \ http://www.us.exim.org/ftp/%SUBDIR%/ \ http://exim.stanford.edu/ftp/pub/exim/%SUBDIR%/ \ @@ -261,7 +260,6 @@ ftp://ftp.task.gda.pl/pub/gnu/gcc/%SUBDIR%/ \ ftp://sunsite.icm.edu.pl/pub/gnu/gcc/%SUBDIR%/ \ ftp://ftp.nctu.edu.tw/computer-languages/C/gcc/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/sources.redhat.com/pub/gcc/%SUBDIR%/ \ ftp://ftp.softaplic.com.br/pub/sourceware/gcc/%SUBDIR%/ \ ftp://linux.ihep.su/pub/cygnus/egcs/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/gnu/gcc/%SUBDIR%/ \ @@ -281,7 +279,6 @@ http://gentoo.ccccom.com/%SUBDIR%/ \ http://oss.redundant.com/pub/gentoo/%SUBDIR%/ \ http://mirrors.tds.net/gentoo/%SUBDIR%/ \ - http://www.mirror.ac.uk/sites/www.ibiblio.org/gentoo/%SUBDIR%/ \ http://ftp.gentoo.skynet.be/pub/gentoo/%SUBDIR%/ \ http://ftp.belnet.be/mirror/rsync.gentoo.org/gentoo/%SUBDIR%/ \ http://ftp.easynet.nl/mirror/gentoo/%SUBDIR%/ \ @@ -349,7 +346,6 @@ ftp://gentoo.kems.net/pub/mirrors/gentoo/%SUBDIR%/ MASTER_SITE_GNOME+= \ - ftp://ftp.mirror.ac.uk/sites/ftp.gnome.org/pub/GNOME/%SUBDIR%/ \ http://ftp.linux.org.uk/mirrors/ftp.gnome.org/%SUBDIR%/ \ http://www.gtlib.cc.gatech.edu/pub/gnome/%SUBDIR%/ \ http://public.planetmirror.com/pub/gnome/%SUBDIR%/ \ @@ -383,7 +379,6 @@ ftp://ftp.kddlabs.co.jp/GNU/%SUBDIR%/ \ ftp://ftp.dti.ad.jp/pub/GNU/%SUBDIR%/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,GNU/&,} \ - ftp://ftp.mirror.ac.uk/sites/ftp.gnu.org/gnu/%SUBDIR%/ \ ftp://ftp.sunsite.org.uk/package/gnu/%SUBDIR%/ \ ftp://ftp.informatik.hu-berlin.de/pub/gnu/%SUBDIR%/ \ ftp://ftp.informatik.rwth-aachen.de/pub/mirror/ftp.gnu.org/pub/gnu/%SUBDIR%/ \ @@ -403,7 +398,6 @@ ftp://ftp.jyu.fi/pub/crypt/gcrypt/%SUBDIR%/ \ ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://ftp.surfnet.nl/pub/security/gnupg/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://sunsite.cnlab-switch.ch/mirror/gcrypt/%SUBDIR%/ \ ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.gnupg.org/%SUBDIR%/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/gnupg/&,} \ @@ -432,7 +426,6 @@ ftp://ftp.linux.lv/pub/software/isc/%SUBDIR%/ \ ftp://ftp.task.gda.pl/mirror/ftp.isc.org/isc/%SUBDIR%/ \ ftp://ftp.sunet.se/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.isc.org/isc/%SUBDIR%/ \ ftp://ftp.epix.net/pub/isc/%SUBDIR%/ \ ftp://ftp.nominum.com/pub/isc/%SUBDIR%/ \ ftp://ftp.nerdc.ufl.edu/pub/mirrors/ftp.isc.org/isc/%SUBDIR%/ \ @@ -500,7 +493,6 @@ ftp://ftp.uni-bielefeld.de/pub/netscape/%SUBDIR%/ \ ftp://ftp.uniovi.es/pub/netscape/%SUBDIR%/ \ ftp://sunsite.cnlab-switch.ch/mirror/netscape/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.netscape.com/pub/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/www/Netscape/%SUBDIR%/ \ ftp://ftp.fct.unl.pt/pub/Netscape/%SUBDIR%/ \ ftp://sunsite.tut.fi/pub/Mirror/mirrorsite.netscape.com/pub/%SUBDIR%/ \ @@ -541,7 +533,6 @@ ftp://ftp.sunet.se/pub/lang/perl/CPAN/modules/by-module/%SUBDIR%/ \ ftp://mirror.hiwaay.net/CPAN/modules/by-module/%SUBDIR%/ \ ftp://ftp.bora.net/pub/CPAN/modules/by-module/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.funet.fi/pub/languages/perl/CPAN/modules/by-module/%SUBDIR%/ \ ftp://bioinfo.weizmann.ac.il/pub/software/perl/CPAN/modules/by-module/%SUBDIR%/ \ ftp://csociety-ftp.ecn.purdue.edu/pub/CPAN/modules/by-module/%SUBDIR%/ \ ftp://ftp.isu.net.sa/pub/CPAN/modules/by-module/%SUBDIR%/ \ @@ -645,7 +636,6 @@ http://python.holywar.net/%SUBDIR%/ \ http://python.unam.mx/%SUBDIR%/ \ http://python.cdpa.nsysu.edu.tw/%SUBDIR%/ \ - http://www.mirror.ac.uk/sites/ftp.python.org/pub/www.python.org/%SUBDIR%/ \ http://python.mirrors.pair.com/%SUBDIR%/ \ http://mirrors.ccs.neu.edu/Python/pub/www.python.org/%SUBDIR%/ \ http://shattered.teched.net/www.python.org/%SUBDIR%/ @@ -664,7 +654,6 @@ ftp://ftp.inet.it/pub/Linux/redhat/%SUBDIR%/ \ ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/linux/%SUBDIR%/ \ ftp://ftp.icm.edu.pl/vol/rzm9/linux-redhat/linux/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.redhat.com/pub/redhat/linux/%SUBDIR%/ \ ftp://ftp.cs.nott.ac.uk/Mirrors/ftp.redhat.com/pub/redhat/linux/%SUBDIR%/ \ ftp://ftp.carrier.kiev.ua/pub/Linux/RedHat/redhat/linux/%SUBDIR%/ \ ftp://ftp.kobe-u.ac.jp/pub/Linux/packages/RedHat/redhat/linux/%SUBDIR%/\ @@ -788,7 +777,6 @@ ftp://ftp.funet.fi/pub/languages/tcl/tcl/%SUBDIR%/ \ ftp://ftp.kddlabs.co.jp/lang/tcl/ftp.scriptics.com/%SUBDIR%/ \ ftp://ftp.srcc.msu.su/mirror/ftp.scriptics.com/pub/tcl/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.scriptics.com/pub/tcl/%SUBDIR%/ \ ftp://gd.tuwien.ac.at/languages/tcl/scriptics/%SUBDIR%/ \ ftp://sunsite.org.uk/Mirrors/ftp.scriptics.com/pub/tcl/%SUBDIR%/ @@ -812,7 +800,6 @@ ftp://ftp.vim.org/pub/vim/unix/ \ ftp://ftp.is.co.za/applications/editors/vim/unix/ \ ftp://ftp.prz.tu-berlin.de/pub/unix/editors/vim/unix/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.vim.org/pub/vim/unix/ \ ftp://ftp.jp.vim.org/pub/vim/unix/ MASTER_SITE_WINDOWMAKER+= \ @@ -840,7 +827,6 @@ ftp://gd.tuwien.ac.at/hci/x.org/contrib/%SUBDIR%/ \ ftp://ftp.sunet.se/pub/X11/contrib/%SUBDIR%/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,X/opengroup/contrib/&,} \ - ftp://ftp.mirror.ac.uk/sites/ftp.x.org/contrib/%SUBDIR%/ \ ftp://ftp.dl.ac.uk/src/X/contrib/%SUBDIR%/ \ ftp://sunsite.org.uk/sites/ftp.x.org/contrib/%SUBDIR%/ \ ftp://ftp.chg.ru/pub/X11/contrib/%SUBDIR%/ Index: archivers/rpm/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/archivers/rpm/Makefile,v retrieving revision 1.51 diff -u -r1.51 Makefile --- archivers/rpm/Makefile 9 Jul 2004 17:41:49 -0000 1.51 +++ archivers/rpm/Makefile 22 Jul 2004 16:08:14 -0000 @@ -9,8 +9,7 @@ PORTVERSION= 3.0.6 PORTREVISION= 9 CATEGORIES= archivers -MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/ +MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/ MAINTAINER= ports@FreeBSD.org COMMENT= The Red Hat Package Manager Index: archivers/rpm4/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/archivers/rpm4/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- archivers/rpm4/Makefile 9 Jun 2004 21:07:42 -0000 1.8 +++ archivers/rpm4/Makefile 22 Jul 2004 16:08:20 -0000 @@ -8,8 +8,7 @@ PORTVERSION= 4.0.4 PORTREVISION= 2 CATEGORIES= archivers -MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/ +MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/ MAINTAINER= glewis@FreeBSD.org COMMENT= The RPM Package Manager Index: archivers/unzip/pkg-descr =================================================================== RCS file: /u1/freebsd/cvs/ports/archivers/unzip/pkg-descr,v retrieving revision 1.8 diff -u -r1.8 pkg-descr --- archivers/unzip/pkg-descr 26 May 2004 17:57:29 -0000 1.8 +++ archivers/unzip/pkg-descr 22 Jul 2004 16:09:38 -0000 @@ -18,4 +18,4 @@ Unzipsfx may be used to create self-extracting ZIP archives from previously created ZIP archives. -WWW: http://www.mirror.ac.uk/sites/ftp.info-zip.org/pub/infozip/UnZip.html +WWW: http://www.info-zip.org/pub/infozip/UnZip.html Index: devel/hs-alex/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/hs-alex/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/hs-alex/Makefile 16 Jul 2004 15:44:17 -0000 1.11 +++ devel/hs-alex/Makefile 22 Jul 2004 16:09:46 -0000 @@ -8,8 +8,7 @@ PORTVERSION= 2.0 PORTREVISION= 2 CATEGORIES= devel haskell -MASTER_SITES= http://www.haskell.org/alex/dist/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/alex/dist/ +MASTER_SITES= http://www.haskell.org/alex/dist/ PKGNAMEPREFIX= hs- DISTNAME= ${PORTNAME}-${PORTVERSION}-src Index: devel/hs-crypto/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/hs-crypto/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- devel/hs-crypto/Makefile 11 May 2004 19:22:25 -0000 1.12 +++ devel/hs-crypto/Makefile 22 Jul 2004 16:09:52 -0000 @@ -9,8 +9,7 @@ PORTVERSION= 1.1.2 PORTREVISION= 1 CATEGORIES= devel haskell -MASTER_SITES= http://www.haskell.org/crypto/downloads/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/crypto/downloads/ +MASTER_SITES= http://www.haskell.org/crypto/downloads/ PKGNAMEPREFIX= hs- EXTRACT_SUFX= .tar Index: devel/hs-haddock/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/hs-haddock/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- devel/hs-haddock/Makefile 11 May 2004 19:22:26 -0000 1.16 +++ devel/hs-haddock/Makefile 22 Jul 2004 16:10:00 -0000 @@ -8,8 +8,7 @@ PORTVERSION= 0.6 PORTREVISION= 1 CATEGORIES= devel haskell -MASTER_SITES= http://www.haskell.org/haddock/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/haddock/ +MASTER_SITES= http://www.haskell.org/haddock/ PKGNAMEPREFIX= hs- DISTNAME= ${PORTNAME}-${PORTVERSION}-src Index: devel/hs-happy/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/hs-happy/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- devel/hs-happy/Makefile 16 Jul 2004 15:44:18 -0000 1.12 +++ devel/hs-happy/Makefile 22 Jul 2004 16:10:06 -0000 @@ -8,8 +8,7 @@ PORTVERSION= 1.13 PORTREVISION= 1 CATEGORIES= devel haskell -MASTER_SITES= http://www.haskell.org/happy/dist/${PORTVERSION}/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/happy/dist/${PORTVERSION}/ +MASTER_SITES= http://www.haskell.org/happy/dist/${PORTVERSION}/ PKGNAMEPREFIX= hs- DISTNAME= ${PORTNAME}-${PORTVERSION}-src Index: devel/hs-hmake/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/hs-hmake/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- devel/hs-hmake/Makefile 11 May 2004 19:22:26 -0000 1.13 +++ devel/hs-hmake/Makefile 22 Jul 2004 16:10:15 -0000 @@ -11,8 +11,7 @@ CATEGORIES= devel haskell MASTER_SITES= http://www.haskell.org/hmake/ \ ftp://ftp.cs.york.ac.uk/pub/haskell/hmake/ \ - http://www.cs.york.ac.uk/fp/hmake/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/hmake/ \ + http://www.cs.york.ac.uk/fp/hmake/ PKGNAMEPREFIX= hs- MAINTAINER= haskell@FreeBSD.org Index: devel/hs-popenhs/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/hs-popenhs/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- devel/hs-popenhs/Makefile 11 May 2004 19:22:26 -0000 1.12 +++ devel/hs-popenhs/Makefile 22 Jul 2004 16:10:21 -0000 @@ -9,8 +9,7 @@ PORTVERSION= 1.00.0 PORTREVISION= 1 CATEGORIES= devel haskell -MASTER_SITES= http://www.haskell.org/~petersen/haskell/popenhs/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/~petersen/haskell/popenhs/ +MASTER_SITES= http://www.haskell.org/~petersen/haskell/popenhs/ PKGNAMEPREFIX= hs- MAINTAINER= haskell@FreeBSD.org Index: devel/popt/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/devel/popt/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- devel/popt/Makefile 9 Jul 2004 17:42:19 -0000 1.25 +++ devel/popt/Makefile 22 Jul 2004 16:10:32 -0000 @@ -8,8 +8,7 @@ PORTNAME= popt PORTVERSION= 1.7 CATEGORIES= devel -MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/ +MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/ MAINTAINER= eik@FreeBSD.org COMMENT= A getopt(3) like library with a number of enhancements, from Redhat Index: graphics/hs-hgl/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/graphics/hs-hgl/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- graphics/hs-hgl/Makefile 11 May 2004 19:22:26 -0000 1.9 +++ graphics/hs-hgl/Makefile 22 Jul 2004 16:13:05 -0000 @@ -9,8 +9,7 @@ PORTVERSION= 2.0.4 PORTREVISION= 2 CATEGORIES= graphics haskell -MASTER_SITES= http://haskell.org/graphics/downloads/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/graphics/downloads/ +MASTER_SITES= http://haskell.org/graphics/downloads/ PKGNAMEPREFIX= hs- DISTNAME= graphics-${PORTVERSION}.src Index: graphics/linux-libmng/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/graphics/linux-libmng/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- graphics/linux-libmng/Makefile 2 Jun 2004 09:32:19 -0000 1.2 +++ graphics/linux-libmng/Makefile 22 Jul 2004 16:13:22 -0000 @@ -35,8 +35,7 @@ LANG?= en RPM_MIRRORS= \ ftp://ftp.redhat.com/pub/redhat/__DIR__/ \ - ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/__DIR__/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.redhat.com/pub/redhat/__DIR__/ + ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/__DIR__/ STDDIR= linux/${BASEVERSION}/${LANG}/os/${MACHINE_ARCH}/RedHat/RPMS UPDDIR= linux/updates/${BASEVERSION}/${LANG}/os/${MACHINE_ARCH} DBPATH= /var/lib/rpm Index: lang/ghc/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/lang/ghc/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- lang/ghc/Makefile 11 May 2004 19:22:25 -0000 1.24 +++ lang/ghc/Makefile 22 Jul 2004 16:13:37 -0000 @@ -8,9 +8,7 @@ PORTVERSION= 6.2.1 CATEGORIES= lang haskell MASTER_SITES= http://www.haskell.org/ghc/dist/${PORTVERSION}/:source \ - http://www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/dist/${PORTVERSION}/:source \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot + http://www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot ONLY_FOR_ARCHS= i386 Index: lang/ghc-doc/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/lang/ghc-doc/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- lang/ghc-doc/Makefile 11 May 2004 19:22:25 -0000 1.8 +++ lang/ghc-doc/Makefile 22 Jul 2004 16:13:31 -0000 @@ -9,9 +9,7 @@ PORTVERSION= 5.04.3 CATEGORIES= lang haskell MASTER_SITES= http://www.haskell.org/ghc/docs/${PORTVERSION}/ \ - http://www.haskell.org/ghc/docs/${PORTVERSION}/html/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/docs/${PORTVERSION}/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/docs/${PORTVERSION}/html/ + http://www.haskell.org/ghc/docs/${PORTVERSION}/html/ DISTFILES= building.html.tar.gz building.ps.gz hslibs.html.tar.gz \ hslibs.ps.gz libraries.html.tar.gz users_guide.html.tar.gz \ users_guide.ps.gz index.html Index: lang/ghc5/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/lang/ghc5/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- lang/ghc5/Makefile 11 May 2004 19:22:25 -0000 1.23 +++ lang/ghc5/Makefile 22 Jul 2004 16:13:42 -0000 @@ -9,9 +9,7 @@ PORTREVISION= 2 CATEGORIES= lang haskell MASTER_SITES= http://www.haskell.org/ghc/dist/${PORTVERSION}/:source \ - http://www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/dist/${PORTVERSION}/:source \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot + http://www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot ONLY_FOR_ARCHS= i386 Index: lang/ghc6-doc/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/lang/ghc6-doc/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- lang/ghc6-doc/Makefile 27 Jun 2004 18:32:33 -0000 1.13 +++ lang/ghc6-doc/Makefile 22 Jul 2004 16:13:46 -0000 @@ -9,9 +9,7 @@ PORTVERSION= 6.2.1 CATEGORIES= lang haskell MASTER_SITES= http://www.haskell.org/ghc/docs/${PORTVERSION}/ \ - http://www.haskell.org/ghc/docs/${PORTVERSION}/html/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/docs/${PORTVERSION}/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/ghc/docs/${PORTVERSION}/html/ + http://www.haskell.org/ghc/docs/${PORTVERSION}/html/ DISTFILES= building.html.tar.gz building.ps.gz hslibs.html.tar.gz \ hslibs.ps.gz libraries.html.tar.gz users_guide.html.tar.gz \ users_guide.ps.gz index.html Index: lang/haskell-mode.el/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/lang/haskell-mode.el/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- lang/haskell-mode.el/Makefile 11 May 2004 19:22:25 -0000 1.2 +++ lang/haskell-mode.el/Makefile 22 Jul 2004 16:13:50 -0000 @@ -8,8 +8,7 @@ PORTNAME= haskell-mode PORTVERSION= 1.44 CATEGORIES= lang elisp -MASTER_SITES= http://www.haskell.org/haskell-mode/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/haskell-mode/ +MASTER_SITES= http://www.haskell.org/haskell-mode/ MAINTAINER= jre@vineyard.net COMMENT= An Emacs lisp mode for editing haskell programs Index: lang/hugs/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/lang/hugs/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- lang/hugs/Makefile 11 May 2004 19:22:26 -0000 1.30 +++ lang/hugs/Makefile 22 Jul 2004 16:13:55 -0000 @@ -9,8 +9,7 @@ PORTVERSION= 200311 PORTREVISION= 1 CATEGORIES= lang haskell -MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/${HUGS_DATE}/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/Hugs/downloads/${HUGS_DATE}/ +MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/${HUGS_DATE}/ DISTNAME= ${PORTNAME}-${HUGS_DATE} MAINTAINER= haskell@FreeBSD.org Index: mail/procmail/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/mail/procmail/Makefile,v retrieving revision 1.47 diff -u -r1.47 Makefile --- mail/procmail/Makefile 30 Dec 2003 09:37:35 -0000 1.47 +++ mail/procmail/Makefile 22 Jul 2004 16:14:00 -0000 @@ -27,8 +27,7 @@ ftp://sunsite.cnlab-switch.ch/mirror/procmail/ \ ftp://ftp.gigabell.net/pub/procmail/ \ ftp://ftp.linja.net/pub/mirrors/procmail/ \ - ftp://ftp.stealth.net/pub/mirrors/ftp.procmail.org/pub/procmail/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.procmail.org/pub/procmail/ + ftp://ftp.stealth.net/pub/mirrors/ftp.procmail.org/pub/procmail/ MAINTAINER= ache@FreeBSD.org COMMENT= A local mail delivery agent Index: security/bjorb/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/security/bjorb/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- security/bjorb/Makefile 14 Mar 2004 06:17:17 -0000 1.23 +++ security/bjorb/Makefile 22 Jul 2004 16:14:20 -0000 @@ -8,8 +8,7 @@ PORTNAME= bjorb PORTVERSION= 0.5.5p1 CATEGORIES= security -MASTER_SITES= http://www.ukc.mirror.ac.uk/sites/ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ \ - http://people.FreeBSD.org/~foxfair/distfiles/ +MASTER_SITES= http://people.FreeBSD.org/~foxfair/distfiles/ MAINTAINER= ports@FreeBSD.org COMMENT= Secure TCP relay software with SSL Index: shells/esh/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/shells/esh/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- shells/esh/Makefile 19 May 2004 08:52:30 -0000 1.16 +++ shells/esh/Makefile 22 Jul 2004 16:14:31 -0000 @@ -8,8 +8,7 @@ PORTNAME= esh PORTVERSION= 0.8.5 CATEGORIES= shells -MASTER_SITES= http://www.ukc.mirror.ac.uk/sites/ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ \ - http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/ \ +MASTER_SITES= http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/ \ http://people.FreeBSD.org/~foxfair/distfiles/ MAINTAINER= ports@FreeBSD.org Index: sysutils/maint/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/sysutils/maint/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- sysutils/maint/Makefile 21 Dec 2003 00:22:26 -0000 1.6 +++ sysutils/maint/Makefile 22 Jul 2004 16:14:39 -0000 @@ -8,8 +8,7 @@ PORTNAME= maint PORTVERSION= 0.5.2 CATEGORIES= sysutils python -MASTER_SITES= http://www.ukc.mirror.ac.uk/sites/ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ \ - http://people.FreeBSD.org/~foxfair/distfiles/ +MASTER_SITES= http://people.FreeBSD.org/~foxfair/distfiles/ MAINTAINER= ports@FreeBSD.org COMMENT= System maintenance package written in Python and CSH Index: textproc/hs-haxml/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/textproc/hs-haxml/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- textproc/hs-haxml/Makefile 29 May 2004 14:13:10 -0000 1.27 +++ textproc/hs-haxml/Makefile 22 Jul 2004 16:14:44 -0000 @@ -8,8 +8,7 @@ PORTVERSION= 1.12 CATEGORIES= textproc haskell MASTER_SITES= http://www.haskell.org/HaXml/ \ - ftp://ftp.cs.york.ac.uk/pub/haskell/HaXml/ \ - http://www.mirror.ac.uk/sites/www.haskell.org/HaXml/ \ + ftp://ftp.cs.york.ac.uk/pub/haskell/HaXml/ PKGNAMEPREFIX= hs- DISTNAME= HaXml-${PORTVERSION} Index: textproc/htmltolatex/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/textproc/htmltolatex/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- textproc/htmltolatex/Makefile 4 Feb 2004 05:09:12 -0000 1.12 +++ textproc/htmltolatex/Makefile 22 Jul 2004 16:14:51 -0000 @@ -10,8 +10,7 @@ PORTVERSION= 1 PORTREVISION= 2 CATEGORIES= textproc -MASTER_SITES= http://www.ukc.mirror.ac.uk/sites/ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ \ - http://people.FreeBSD.org/~foxfair/distfiles/ +MASTER_SITES= http://people.FreeBSD.org/~foxfair/distfiles/ DISTNAME= ${PORTNAME} MAINTAINER= ports@FreeBSD.org Index: x11/chameleon/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/x11/chameleon/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- x11/chameleon/Makefile 4 Feb 2004 05:09:38 -0000 1.2 +++ x11/chameleon/Makefile 22 Jul 2004 16:15:07 -0000 @@ -11,7 +11,6 @@ CATEGORIES= x11 MASTER_SITES= http://ftp.us.debian.org/debian/pool/main/c/chameleon/ \ ftp://carroll.aset.psu.edu/pub/linux/distributions/debian/pool/main/c/chameleon/ \ - http://www.mirror.ac.uk/sites/ftp.debian.org/debian/pool/main/c/chameleon/ \ ftp://ftp.debian.org/debian/pool/main/c/chameleon/ PKGNAMEPREFIX= x11- DISTNAME= chameleon_${PORTVERSION}.orig Index: x11-toolkits/gtk20/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/x11-toolkits/gtk20/Makefile,v retrieving revision 1.130 diff -u -r1.130 Makefile --- x11-toolkits/gtk20/Makefile 10 Jul 2004 09:20:06 -0000 1.130 +++ x11-toolkits/gtk20/Makefile 22 Jul 2004 16:14:56 -0000 @@ -13,7 +13,6 @@ ftp://ftp.gimp.org/pub/%SUBDIR%/ \ ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \ http://www.ameth.org/gimp/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.gimp.org/pub/%SUBDIR%/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,} MASTER_SITE_SUBDIR= gtk/v${PORTVERSION:R} DISTNAME= gtk+-${PORTVERSION} Index: x11-toolkits/linux-gtk/Makefile =================================================================== RCS file: /u1/freebsd/cvs/ports/x11-toolkits/linux-gtk/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- x11-toolkits/linux-gtk/Makefile 11 Feb 2004 16:57:04 -0000 1.25 +++ x11-toolkits/linux-gtk/Makefile 22 Jul 2004 16:15:03 -0000 @@ -35,8 +35,7 @@ BASEVERSION?= 7.1 RPM_MIRRORS= \ ftp://ftp.redhat.com/pub/redhat/__DIR__/ \ - ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/__DIR__/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.redhat.com/pub/redhat/__DIR__/ + ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/__DIR__/ STDDIR= linux/${BASEVERSION}/${LANG}/os/${MACHINE_ARCH}/RedHat/RPMS UPDDIR= linux/updates/${BASEVERSION}/${LANG}/os/${MACHINE_ARCH} .if (${MACHINE_ARCH} == "i386") --- mirror.ac.uk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 12:32: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 CDFB716A4CF; Fri, 23 Jul 2004 12:32:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B08A143D3F; Fri, 23 Jul 2004 12:32:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6NCWZ2f000270; Fri, 23 Jul 2004 12:32:35 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NCWY1x000266; Fri, 23 Jul 2004 12:32:34 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 12:32:34 GMT From: Volker Stolz Message-Id: <200407231232.i6NCWY1x000266@freefall.freebsd.org> To: zaa@ulstu.ru, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69239: [MAINTAINER UPDATE] security/drweb-postfix up to 4.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: Fri, 23 Jul 2004 12:32:35 -0000 Synopsis: [MAINTAINER UPDATE] security/drweb-postfix up to 4.31 State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Fri Jul 23 12:30:48 GMT 2004 State-Changed-Why: Committed with modifications, thanks! - Leftover DOC_DIR in post-install fixed - I moved the docs from pkg-plist into the Makefile since you had them all listed there anyway. This will perhaps make packaging easier a bit, please take a look at it http://www.freebsd.org/cgi/query-pr.cgi?pr=69239 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 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 AA41F16A4CE for ; Fri, 23 Jul 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 900A043D1F for ; Fri, 23 Jul 2004 12:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NCeUMX000534 for ; Fri, 23 Jul 2004 12:40:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NCeU9B000533; Fri, 23 Jul 2004 12:40:30 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 12:40:30 GMT Resent-Message-Id: <200407231240.i6NCeU9B000533@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B173716A4CE for ; Fri, 23 Jul 2004 12:34:43 +0000 (GMT) Received: from phoenix.smluc.org (phoenix.smluc.org [12.28.48.23]) by mx1.FreeBSD.org (Postfix) with SMTP id 508F843D3F for ; Fri, 23 Jul 2004 12:34:43 +0000 (GMT) (envelope-from erik@phoenix.smluc.org) Received: (qmail 8252 invoked by uid 1000); 23 Jul 2004 12:34:56 -0000 Message-Id: <20040723123456.8251.qmail@phoenix.smluc.org> Date: 23 Jul 2004 12:34:56 -0000 From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: erik@math.smsu.edu Subject: ports/69482: [Maintainer Update] graphics/bugle 0.0.20040614 -> 0.0.20040719 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 12:40:30 -0000 >Number: 69482 >Category: ports >Synopsis: [Maintainer Update] graphics/bugle 0.0.20040614 -> 0.0.20040719 >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 Jul 23 12:40:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD fenris 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sun Jul 4 09:44:11 EDT 2004 root@fenris:/usr/obj/usr/src/sys/FENRIS i386 >Description: Freshmeat blurb: The big changes are improvements to the debugging facility, gldb. Pressing Ctrl-C will now stop the program (ala gdb), and it is possible to query OpenGL state. Refer to the gldb(1) manual page for details. This release also offers much better thread safety, and it should now be mostly possible to use bugle even with programs that render simultaneously from multiple threads. However, the debugger will not work on a multi-threaded program, and there are still a few known race conditions. Finally, there is also a preliminary video capture mode. It is still somewhat slow and experimental. >How-To-Repeat: >Fix: --- graphics_bugle.patch begins here --- diff -Nurb graphics/bugle.orig/Makefile graphics/bugle/Makefile --- graphics/bugle.orig/Makefile Fri Jul 23 08:18:53 2004 +++ graphics/bugle/Makefile Fri Jul 23 08:20:23 2004 @@ -6,7 +6,7 @@ # PORTNAME= bugle -PORTVERSION= 0.0.20040614 +PORTVERSION= 0.0.20040719 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bugle diff -Nurb graphics/bugle.orig/distinfo graphics/bugle/distinfo --- graphics/bugle.orig/distinfo Fri Jul 23 08:18:53 2004 +++ graphics/bugle/distinfo Fri Jul 23 08:20:30 2004 @@ -1,2 +1,2 @@ -MD5 (bugle-0.0.20040614.tar.gz) = 87b0c1ca04665245e61b71fa559a4ecd -SIZE (bugle-0.0.20040614.tar.gz) = 331750 +MD5 (bugle-0.0.20040719.tar.gz) = 40c66ce93aef47992906fee2f3d35d50 +SIZE (bugle-0.0.20040719.tar.gz) = 374384 diff -Nurb graphics/bugle.orig/pkg-plist graphics/bugle/pkg-plist --- graphics/bugle.orig/pkg-plist Fri Jul 23 08:18:53 2004 +++ graphics/bugle/pkg-plist Fri Jul 23 08:24:58 2004 @@ -8,6 +8,9 @@ lib/bugle/debugger.a lib/bugle/debugger.la lib/bugle/debugger.so +lib/bugle/log.a +lib/bugle/log.la +lib/bugle/log.so lib/bugle/modify.a lib/bugle/modify.la lib/bugle/modify.so --- graphics_bugle.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 13:10: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 EDFF216A4CE for ; Fri, 23 Jul 2004 13:10:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D408C43D39 for ; Fri, 23 Jul 2004 13:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NDACU4005415 for ; Fri, 23 Jul 2004 13:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NDACGs005407; Fri, 23 Jul 2004 13:10:12 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 13:10:12 GMT Resent-Message-Id: <200407231310.i6NDACGs005407@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erik Greenwald Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 012AF16A4CF for ; Fri, 23 Jul 2004 13:00:42 +0000 (GMT) Received: from phoenix.smluc.org (phoenix.smluc.org [12.28.48.23]) by mx1.FreeBSD.org (Postfix) with SMTP id 9097343D66 for ; Fri, 23 Jul 2004 13:00:19 +0000 (GMT) (envelope-from erik@phoenix.smluc.org) Received: (qmail 9205 invoked by uid 1000); 23 Jul 2004 13:00:32 -0000 Message-Id: <20040723130032.9204.qmail@phoenix.smluc.org> Date: 23 Jul 2004 13:00:32 -0000 From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: erik@math.smsu.edu Subject: ports/69483: [Maintainer Update] x11-toolkits/gauche-gtk 0.4 -> 0.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 13:10:13 -0000 >Number: 69483 >Category: ports >Synopsis: [Maintainer Update] x11-toolkits/gauche-gtk 0.4 -> 0.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 Jul 23 13:10:12 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD fenris 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sun Jul 4 09:44:11 EDT 2004 root@fenris:/usr/obj/usr/src/sys/FENRIS i386 >Description: addition of "package description" file more stuff for pango, pixbuf, etc "Make the tarball compilable with both Gtk-2.2 and Gtk-2.4." Please remove the files/patch-src_gtktextview.stub file. >How-To-Repeat: >Fix: --- x11-toolkits_gauche-gtk.patch begins here --- diff -Nur x11-toolkits/gauche-gtk.orig/Makefile x11-toolkits/gauche-gtk/Makefile --- x11-toolkits/gauche-gtk.orig/Makefile Fri Jul 23 08:22:36 2004 +++ x11-toolkits/gauche-gtk/Makefile Fri Jul 23 08:22:49 2004 @@ -6,7 +6,7 @@ # PORTNAME= gtk -PORTVERSION= 0.4 +PORTVERSION= 0.4.1 CATEGORIES= x11-toolkits scheme MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= gauche diff -Nur x11-toolkits/gauche-gtk.orig/distinfo x11-toolkits/gauche-gtk/distinfo --- x11-toolkits/gauche-gtk.orig/distinfo Fri Jul 23 08:22:36 2004 +++ x11-toolkits/gauche-gtk/distinfo Fri Jul 23 08:22:56 2004 @@ -1,2 +1,2 @@ -MD5 (Gauche-gtk-0.4.tgz) = 97efd5b663b683234b8e9986d823596d -SIZE (Gauche-gtk-0.4.tgz) = 324019 +MD5 (Gauche-gtk-0.4.1.tgz) = 18356efab446b9524be8371a3b852a6a +SIZE (Gauche-gtk-0.4.1.tgz) = 324945 diff -Nur x11-toolkits/gauche-gtk.orig/files/patch-src_gtktextview.stub x11-toolkits/gauche-gtk/files/patch-src_gtktextview.stub --- x11-toolkits/gauche-gtk.orig/files/patch-src_gtktextview.stub Fri Jul 23 08:22:36 2004 +++ x11-toolkits/gauche-gtk/files/patch-src_gtktextview.stub Wed Dec 31 19:00:00 1969 @@ -1,10 +0,0 @@ ---- src/gtktextview.stub.orig Wed Apr 7 17:06:44 2004 -+++ src/gtktextview.stub Wed Apr 7 17:07:55 2004 -@@ -34,7 +34,6 @@ - (overwrite-mode :type ) - (cursor-visible :type ) - (need-im-reset :type ) -- (just-selected-element :type ) - (onscreen-validated :type ) - (mouse-cursor-obscured :type ) - ;; text-window :type (UNKNOWN . GtkTextWindow*) diff -Nur x11-toolkits/gauche-gtk.orig/pkg-plist x11-toolkits/gauche-gtk/pkg-plist --- x11-toolkits/gauche-gtk.orig/pkg-plist Fri Jul 23 08:22:36 2004 +++ x11-toolkits/gauche-gtk/pkg-plist Fri Jul 23 08:44:12 2004 @@ -4,6 +4,7 @@ share/gauche/%%VERSION%%/lib/gtk/error-dialog.scm share/gauche/%%VERSION%%/lib/gtk/gdkkeysyms.scm share/gauche/%%VERSION%%/lib/gtk/gtkaux.scm +share/gauche/%%VERSION%%/lib/.packages/Gauche-gtk.gpd %%GTKGLEXT%%share/gauche/%%VERSION%%/lib/gtk/gtkgl.scm share/gauche/%%VERSION%%/lib/gtk/listener.scm @dirrm share/gauche/%%VERSION%%/lib/gtk --- x11-toolkits_gauche-gtk.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 13:33: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 7A28E16A4CE; Fri, 23 Jul 2004 13:33:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 710FE43D54; Fri, 23 Jul 2004 13:33:40 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6NDXerj008831; Fri, 23 Jul 2004 13:33:40 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NDXeFQ008827; Fri, 23 Jul 2004 13:33:40 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 13:33:40 GMT From: Volker Stolz Message-Id: <200407231333.i6NDXeFQ008827@freefall.freebsd.org> To: david@catwhisker.org, vs@FreeBSD.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68610: lcms upgrade from 1.12,1 -> 1.13,1 fails: "Coarse error! 16 on entry 1021" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 13:33:40 -0000 Synopsis: lcms upgrade from 1.12,1 -> 1.13,1 fails: "Coarse error! 16 on entry 1021" State-Changed-From-To: feedback->suspended State-Changed-By: vs State-Changed-When: Fri Jul 23 13:31:55 GMT 2004 State-Changed-Why: Suspend and return to pool. I'm really out of wits here, sorry. I'm glad the package fixed it, though. Maybe you should contact the lcms-authors. Responsible-Changed-From-To: vs->freebsd-ports-bugs Responsible-Changed-By: vs Responsible-Changed-When: Fri Jul 23 13:31:55 GMT 2004 Responsible-Changed-Why: Suspend and return to pool. I'm really out of wits here, sorry. I'm glad the package fixed it, though. Maybe you should contact the lcms-authors. http://www.freebsd.org/cgi/query-pr.cgi?pr=68610 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 13: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 7B04C16A4CE for ; Fri, 23 Jul 2004 13:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F83243D3F for ; Fri, 23 Jul 2004 13:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NDeLlA009256 for ; Fri, 23 Jul 2004 13:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NDeLtE009251; Fri, 23 Jul 2004 13:40:21 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 13:40:21 GMT Resent-Message-Id: <200407231340.i6NDeLtE009251@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Florent Thoumie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 886DF16A4CE for ; Fri, 23 Jul 2004 13:33:34 +0000 (GMT) Received: from gw.xbsd.org (xbsd.org [81.56.254.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB7A343D49 for ; Fri, 23 Jul 2004 13:33:32 +0000 (GMT) (envelope-from flz@xbsd.org) Received: by gw.xbsd.org (Postfix, from userid 201) id 6688525F; Fri, 23 Jul 2004 15:33:32 +0200 (CEST) Message-Id: <20040723133332.6688525F@gw.xbsd.org> Date: Fri, 23 Jul 2004 15:33:32 +0200 (CEST) From: Florent Thoumie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69484: Mk/bsd.gnome.mk - adds wxtgk/wxgtk2 components X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Florent Thoumie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 13:40:21 -0000 >Number: 69484 >Category: ports >Synopsis: Mk/bsd.gnome.mk - adds wxtgk/wxgtk2 components >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 Jul 23 13:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Florent Thoumie >Release: FreeBSD 4.9-RC i386 >Organization: Xbsd.org >Environment: System: FreeBSD gw 4.9-RC FreeBSD 4.9-RC #4: Sun Oct 5 14:25:09 CEST 2003 rf@gw:/usr/src/sys/compile/GW i386 >Description: This patch adds support for wxgtk and wxgtk2 components. I didn't add wxgtk2-devel. I introduced a (non-sexy) way to set/modify variables using ${component}_SET_VARS. This has been done because I had to set WX_CONFIG according to the version of wxgtk specified in USE_GNOME. Please note the following thing : innercity# cd /usr/ports/devel/py-orbit2 innercity# make -V ORBIT_CONFIG /usr/local/bin/orbit-config I may be wrong but that's not what I am expecting.. This can be corrected using orbit2_SET_VARS= ORBIT_CONFIG=${LOCALBASE}/bin/orbit2-config >How-To-Repeat: N/A >Fix: --- wxgtk.diff begins here --- --- bsd.gnome.mk.old Fri Jul 23 11:01:50 2004 +++ bsd.gnome.mk Fri Jul 23 15:17:18 2004 @@ -33,7 +33,7 @@ _USE_GNOME_ALL+=libghttp glib12 gtk12 libxml gdkpixbuf imlib orbit \ gnomelibs gnomecanvas oaf gconf gnomevfs libcapplet \ gnomeprint bonobo libgda gnomedb libglade gal glibwww \ - gtkhtml pygtk pygnome + gtkhtml pygtk pygnome wxgtk # GNOME 2 components _USE_GNOME_ALL+=glib20 atk pango gtk20 linc libidl orbit2 \ @@ -43,7 +43,7 @@ libgtkhtml gnomedesktop libwnck vte libzvt librsvg2 eel2 \ gnomepanel nautilus2 metacity gal2 gnomecontrolcenter2 libgda2 \ libgnomedb gtksourceview libgsf libgsf_gnome pygtk2 pygnome2 \ - gstreamerplugins gtkhtml3 gnomespeech + gstreamerplugins gtkhtml3 gnomespeech wxgtk2 SCROLLKEEPER_DIR= /var/db/scrollkeeper gnomehack_PRE_PATCH= ${FIND} ${WRKSRC} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \ @@ -223,6 +223,13 @@ pygnome_RUN_DEPENDS= ${pygnome_DETECT}:${PORTSDIR}/x11-toolkits/py-gnome pygnome_USE_GNOME_IMPL= gtkhtml pygtk +WXGTK_CONFIG?= ${X11BASE}/bin/wxgtk-2.4-config +wxgtk_LIB_DEPENDS= wx_gtk-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk +wxgtk_CONFIGURE_ENV= WX_CONFIG="${WXGTK_CONFIG}" +wxgtk_CONFIGURE_ARGS= --with-wx-config=${WXGTK_CONFIG} +wxgtk_DETECT= ${WXGTK_CONFIG} +wxgtk_SET_VARS= WX_CONFIG=${WXGTK_CONFIG} + glib20_LIB_DEPENDS= glib-2.0.400:${PORTSDIR}/devel/glib20 glib20_DETECT= ${LOCALBASE}/libdata/pkgconfig/glib-2.0.pc glib20_USE_GNOME_IMPL=gnometarget pkgconfig @@ -421,6 +428,13 @@ gnomespeech_DETECT= ${LOCALBASE}/libdata/pkgconfig/gnome-speech-1.0.pc gnomespeech_USE_GNOME_IMPL=libbonobo +WXGTK2_CONFIG?= ${X11BASE}/bin/wxgtk2-2.4-config +wxgtk2_LIB_DEPENDS= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 +wxgtk2_CONFIGURE_ENV= WX_CONFIG="${WXGTK2_CONFIG}" +wxgtk2_CONFIGURE_ARGS= --with-wx-config=${WXGTK2_CONFIG} +wxgtk2_DETECT= ${WXGTK2_CONFIG} +wxgtk2_SET_VARS= WX_CONFIG=${WXGTK2_CONFIG} + # End component definition section # This section defines tests for optional software. These work off four @@ -567,6 +581,12 @@ CONFIGURE_ARGS+=${${component}_CONFIGURE_ARGS} CONFIGURE_ENV+= ${${component}_CONFIGURE_ENV} MAKE_ENV+= ${${component}_MAKE_ENV} + +. if defined(${component}_SET_VARS) +. for i in ${${component}_SET_VARS} +${i} +. endfor +. endif . if !defined(CONFIGURE_TARGET) && defined(${component}_CONFIGURE_TARGET) CONFIGURE_TARGET= ${${component}_CONFIGURE_TARGET} --- wxgtk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 14:00: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 AC8FB16A4CE for ; Fri, 23 Jul 2004 14:00:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86E2D43D6B for ; Fri, 23 Jul 2004 14:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NE0frn010025 for ; Fri, 23 Jul 2004 14:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NE0fie010024; Fri, 23 Jul 2004 14:00:41 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 14:00:41 GMT Message-Id: <200407231400.i6NE0fie010024@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/67839: www/mod_jk2-apache2 2.0.2: uri /*.jsp matches all subdirs 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, 23 Jul 2004 14:00:42 -0000 The following reply was made to PR ports/67839; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, girgen@pingpong.net Cc: Subject: Re: ports/67839: www/mod_jk2-apache2 2.0.2: uri /*.jsp matches all subdirs Date: Fri, 23 Jul 2004 15:51:43 +0200 Can you please provide a patch or what the entry should look like? Note to the maintainer: The do-install-target of www/mod_jk2 looks fishy to me: Shouldn't this also be executed when installing the package? Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 14:02: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 EA5E416A4CE; Fri, 23 Jul 2004 14:02:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE8BF43D1D; Fri, 23 Jul 2004 14:02:13 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6NE2DTU010494; Fri, 23 Jul 2004 14:02:13 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NE2D4D010490; Fri, 23 Jul 2004 14:02:13 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 14:02:13 GMT From: Volker Stolz Message-Id: <200407231402.i6NE2D4D010490@freefall.freebsd.org> To: vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/69484: Mk/bsd.gnome.mk - adds wxtgk/wxgtk2 components X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 14:02:14 -0000 Synopsis: Mk/bsd.gnome.mk - adds wxtgk/wxgtk2 components Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: vs Responsible-Changed-When: Fri Jul 23 14:02:00 GMT 2004 Responsible-Changed-Why: Over to GNOME-team http://www.freebsd.org/cgi/query-pr.cgi?pr=69484 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:00: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 68BFB16A4CE for ; Fri, 23 Jul 2004 15:00:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F98743D39 for ; Fri, 23 Jul 2004 15:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NF0jLL018246 for ; Fri, 23 Jul 2004 15:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NF0jwY018243; Fri, 23 Jul 2004 15:00:45 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 15:00:45 GMT Message-Id: <200407231500.i6NF0jwY018243@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Gerhard Schmidt Subject: Re: ports/69476: Update port: www/zope security update to zope-2.7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gerhard Schmidt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 15:00:45 -0000 The following reply was made to PR ports/69476; it has been noted by GNATS. From: Gerhard Schmidt To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69476: Update port: www/zope security update to zope-2.7.2 Date: Fri, 23 Jul 2004 16:46:38 +0200 I Have added a different pkg-message for package users to give them instructions how to create an instance without the Makefile. Here the updated patch diff -urN www/zope.old/Makefile www/zope/Makefile --- www/zope.old/Makefile Fri Jul 2 22:41:00 2004 +++ www/zope/Makefile Fri Jul 23 16:17:59 2004 @@ -6,10 +6,10 @@ # PORTNAME= zope -PORTVERSION= 2.7.1 +PORTVERSION= 2.7.2 CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION} +MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ +DISTNAME= Zope-${PORTVERSION}-0 EXTRACT_SUFX= .tgz MAINTAINER= estartu@augusta.de @@ -21,7 +21,6 @@ USE_RC_SUBR= yes USE_REINPLACE= yes DIST_SUBDIR= zope -WRKSRC= ${WRKDIR}/${DISTNAME}-0 # Note: the notes that follow reflect the decisions of prior maintainers # of this port. IOW, don't blame me if you don't like the way it's done. @@ -75,6 +74,7 @@ ${FILESDIR}/zope.sh > ${PREFIX}/etc/rc.d/zope.sh @${CHMOD} ${BINMODE} ${PREFIX}/etc/rc.d/zope.sh @${MKDIR} ${ZOPEBASEDIR}/Products + @${CP} ${FILESDIR}/Products_00readme-freebsd.txt ${ZOPEBASEDIR}/Products/00readme-freebsd.txt @${CAT} ${PKGMESSAGE} @${ECHO_MSG} @@ -86,5 +86,10 @@ @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/var @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/log @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${FILESDIR}/instance_message + @${RM} -f ${ZOPEBASEDIR}/bin/copyzopeskel.pyc + +pre-package: + @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} < ${FILESDIR}/pkg-message.package.in \ + > ${PKGMESSAGE} .include diff -urN www/zope.old/distinfo zope/distinfo --- www/zope.old/distinfo Fri Jul 2 22:41:00 2004 +++ www/zope/distinfo Fri Jul 23 15:26:42 2004 @@ -1,2 +1,2 @@ -MD5 (zope/Zope-2.7.1.tgz) = ae9d4bb3f7220dfffb6e91b42503b16c -SIZE (zope/Zope-2.7.1.tgz) = 2754949 +MD5 (zope/Zope-2.7.2-0.tgz) = 08b3c4a119aa1ded2e7b1b3d5bc45425 +SIZE (zope/Zope-2.7.2-0.tgz) = 2754459 diff -urN www/zope.old/files/Products_00readme-freebsd.txt zope/files/Products_00readme-freebsd.txt --- www/zope.old/files/Products_00readme-freebsd.txt Thu Jan 1 01:00:00 1970 +++ www/zope/files/Products_00readme-freebsd.txt Fri Jul 23 15:26:42 2004 @@ -0,0 +1,2 @@ +This directory is used for install Zope products via ports/package. +All products in here are enabled on all Zope instances. diff -urN www/zope.old/files/pkg-message.in zope/files/pkg-message.in --- www/zope.old/files/pkg-message.in Fri Jul 2 22:41:00 2004 +++ www/zope/files/pkg-message.in Fri Jul 23 16:22:08 2004 @@ -15,6 +15,9 @@ If you want have multiple Zope you should run make instance INSTANCENAME= +The Instancefiles created by make instance will not be remove when the +port is deinstalled. You'll have to delete them yourself. + ********************************************************************** ****** ATTENTION ***** ATTENTION ***** ATTENTION ***** ATTENTION ***** diff -urN www/zope.old/files/pkg-message.package.in zope/files/pkg-message.package.in --- www/zope.old/files/pkg-message.package.in Thu Jan 1 01:00:00 1970 +++ www/zope/files/pkg-message.package.in Fri Jul 23 16:22:06 2004 @@ -0,0 +1,36 @@ +********************************************************************** + +Zope 2.7 Successfull installed. + +To create an instance of Zope please run +%%ZOPEBASEDIR%%/bin/mkzopeinstance.py -d + + is the directory where the instance files should + be installed. This can be %%ZOPEBASEDIR%% + +Command-line options to 'mkzopeinstance' are available, and can be +investigated by running 'mkzopeinstance.py --help'. + +The Instancefiles created by mkzopeinstance.py will not be remove +when the package is deinstalled. You`ll have to delete them yourself. + +If Zope should get started automatically when the system starts, +please add the following lines to /etc/rc.conf + +zope_enable="YES" +zope_instances="" + +If there is already a zope_instances entry please add + separated by a space. + + +********************************************************************** +****** ATTENTION ***** ATTENTION ***** ATTENTION ***** ATTENTION ***** + +The default installation directory for Zope Products has changed from +%%ZOPEBASEDIR%%/lib/python/Products +to %%ZOPEBASEDIR%%/Products. + +You might have to add the following lines to your zope.conf +products %%ZOPEBASEDIR%%/Products +products $INSTANCE/Products diff -urN www/zope.old/pkg-plist zope/pkg-plist --- www/zope.old/pkg-plist Fri Jul 2 22:41:00 2004 +++ www/zope/pkg-plist Fri Jul 23 16:23:59 2004 @@ -1,9 +1,9 @@ etc/rc.d/zope.sh +%%ZOPEBASEDIR%%/Products/00readme-freebsd.txt %%ZOPEBASEDIR%%/bin/README.txt %%ZOPEBASEDIR%%/bin/check_catalog.py %%ZOPEBASEDIR%%/bin/compilezpy.py %%ZOPEBASEDIR%%/bin/copyzopeskel.py -@exec rm -f %%ZOPEBASEDIR%%/bin/copyzopeskel.pyc %%ZOPEBASEDIR%%/bin/decompilezpy.py %%ZOPEBASEDIR%%/bin/load_site.py %%ZOPEBASEDIR%%/bin/mkzeoinstance.py @@ -1432,6 +1432,8 @@ %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testBrains.pyc %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc +%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testLazySequences.py +%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testLazySequences.pyc %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif @@ -1786,8 +1788,6 @@ %%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.py %%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.pyc %%ZOPEBASEDIR%%/lib/python/TAL/HISTORY.txt -%%ZOPEBASEDIR%%/lib/python/TAL/HTMLParser.py -%%ZOPEBASEDIR%%/lib/python/TAL/HTMLParser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.py %%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/ITALES.py @@ -1883,6 +1883,7 @@ %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test20.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test29.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test34.html +%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test36.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_failed_attr_translation.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal1.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal2.html @@ -1927,6 +1928,7 @@ %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test20.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test29.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test34.html +%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test36.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_failed_attr_translation.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal1.html %%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal2.html @@ -1939,8 +1941,6 @@ %%ZOPEBASEDIR%%/lib/python/TAL/tests/run.pyc %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.py %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmlparser.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmlparser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.py %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.pyc %%ZOPEBASEDIR%%/lib/python/TAL/tests/test_sourcepos.py @@ -2670,6 +2670,8 @@ %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/sv.pyc %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roles.py %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roles.pyc +%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roman.py +%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roman.pyc %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/states.py %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/states.pyc %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/tableparser.py @@ -2680,8 +2682,6 @@ %%ZOPEBASEDIR%%/lib/python/docutils/readers/pep.pyc %%ZOPEBASEDIR%%/lib/python/docutils/readers/standalone.py %%ZOPEBASEDIR%%/lib/python/docutils/readers/standalone.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/roman.py -%%ZOPEBASEDIR%%/lib/python/docutils/roman.pyc %%ZOPEBASEDIR%%/lib/python/docutils/statemachine.py %%ZOPEBASEDIR%%/lib/python/docutils/statemachine.pyc %%ZOPEBASEDIR%%/lib/python/docutils/transforms/__init__.py From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:04: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 C49FB16A4CE; Fri, 23 Jul 2004 15:04:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5FF143D45; Fri, 23 Jul 2004 15:04:53 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6NF4rRO018501; Fri, 23 Jul 2004 15:04:53 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NF4rda018497; Fri, 23 Jul 2004 15:04:53 GMT (envelope-from vs) Date: Fri, 23 Jul 2004 15:04:53 GMT From: Volker Stolz Message-Id: <200407231504.i6NF4rda018497@freefall.freebsd.org> To: hsn@netmag.cz, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/68106: category change: move freesci to games/ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 15:04:53 -0000 Synopsis: category change: move freesci to games/ State-Changed-From-To: open->repocopy State-Changed-By: vs State-Changed-When: Fri Jul 23 15:03:46 GMT 2004 State-Changed-Why: I'd go ahead on this: The move looks sensible to me. Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: vs Responsible-Changed-When: Fri Jul 23 15:03:46 GMT 2004 Responsible-Changed-Why: Request repocopy of unmaintained port. http://www.freebsd.org/cgi/query-pr.cgi?pr=68106 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 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 5712016A4D3 for ; Fri, 23 Jul 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 2D98D43D2F for ; Fri, 23 Jul 2004 15:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NFANL6022563 for ; Fri, 23 Jul 2004 15:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFANki022562; Fri, 23 Jul 2004 15:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 15:10:23 GMT Resent-Message-Id: <200407231510.i6NFANki022562@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tilman Linneweh Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57EF716A4CF for ; Fri, 23 Jul 2004 15:07:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 518F143D46 for ; Fri, 23 Jul 2004 15:07:02 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6NF72YL022391 for ; Fri, 23 Jul 2004 15:07:02 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NF72rr022390; Fri, 23 Jul 2004 15:07:02 GMT (envelope-from arved) Message-Id: <200407231507.i6NF72rr022390@freefall.freebsd.org> Date: Fri, 23 Jul 2004 15:07:02 GMT From: Tilman Linneweh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69486: Clean up after QT2 removal X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tilman Linneweh List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 15:10:23 -0000 >Number: 69486 >Category: ports >Synopsis: Clean up after QT2 removal >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 Jul 23 15:10:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tilman Linneweh >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 4.10-STABLE FreeBSD 4.10-STABLE #13: Fri May 28 21:29:54 PDT 2004 kensmith@freefall.freebsd.org:/c/src/sys/compile/FREEFALL i386 >Description: >How-To-Repeat: >Fix: --- bsd.port.mk.diff begins here --- Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.494 diff -u -r1.494 bsd.port.mk --- bsd.port.mk 22 Jul 2004 23:02:41 -0000 1.494 +++ bsd.port.mk 23 Jul 2004 15:05:20 -0000 @@ -320,9 +320,8 @@ # USE_KDELIBS_VER - Set to 3 to use the KDE libraries. # Implies inclusion # of bsd.kde.mk. Default: not set. -# USE_QT_VER - Set to either 2 or 3 to use the QT libraries. -# (Only 3 is currently supported). Implies inclusion -# of bsd.kde.mk. Default: not set. +# USE_QT_VER - Set to 3 to use the QT libraries. +# Implies inclusion of bsd.kde.mk. Default: not set. # # USE_LINUX - Set to yes to say the port needs emulators/linux_base. # Default: not set. @@ -1155,7 +1154,7 @@ .include "${PORTSDIR}/Mk/bsd.ruby.mk" .endif -.if defined(USE_QT) || defined(USE_QT2) || defined(USE_QT_VER) || defined(USE_KDELIBS_VER) || defined(USE_KDEBASE_VER) +.if defined(USE_QT_VER) || defined(USE_KDELIBS_VER) || defined(USE_KDEBASE_VER) .include "${PORTSDIR}/Mk/bsd.kde.mk" .endif --- bsd.port.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:12: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 E01DA16A4CE; Fri, 23 Jul 2004 15:12:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C300F43D3F; Fri, 23 Jul 2004 15:12:19 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from freefall.freebsd.org (krion@localhost [127.0.0.1]) i6NFCJK5022720; Fri, 23 Jul 2004 15:12:19 GMT (envelope-from krion@freefall.freebsd.org) Received: (from krion@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFCJ2J022716; Fri, 23 Jul 2004 15:12:19 GMT (envelope-from krion) Date: Fri, 23 Jul 2004 15:12:19 GMT From: Kirill Ponomarew Message-Id: <200407231512.i6NFCJ2J022716@freefall.freebsd.org> To: erik@smluc.org, krion@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69482: [Maintainer Update] graphics/bugle 0.0.20040614 -> 0.0.20040719 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 15:12:20 -0000 Synopsis: [Maintainer Update] graphics/bugle 0.0.20040614 -> 0.0.20040719 State-Changed-From-To: open->closed State-Changed-By: krion State-Changed-When: Fri Jul 23 15:12:09 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69482 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:13: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 8194A16A4CE; Fri, 23 Jul 2004 15:13:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6539743D4C; Fri, 23 Jul 2004 15:13:53 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6NFDrTF022801; Fri, 23 Jul 2004 15:13:53 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFDrlh022797; Fri, 23 Jul 2004 15:13:53 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 15:13:53 GMT From: Tilman Linneweh Message-Id: <200407231513.i6NFDrlh022797@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/69486: Clean up after QT2 removal X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 15:13:53 -0000 Synopsis: Clean up after QT2 removal Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: arved Responsible-Changed-When: Fri Jul 23 15:13:29 GMT 2004 Responsible-Changed-Why: Over to bsd.port.mk maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=69486 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:20: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 7F28016A4CF for ; Fri, 23 Jul 2004 15:20:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 626DF43D48 for ; Fri, 23 Jul 2004 15:20:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NFK26S022946 for ; Fri, 23 Jul 2004 15:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFK28Y022945; Fri, 23 Jul 2004 15:20:02 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 15:20:02 GMT Resent-Message-Id: <200407231520.i6NFK28Y022945@freefall.freebsd.org> 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-Martin Seck Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C777B16A4CF for ; Fri, 23 Jul 2004 15:10:29 +0000 (GMT) Received: from smtp1.netcologne.de (smtp1.netcologne.de [194.8.194.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A30243D3F for ; Fri, 23 Jul 2004 15:10:29 +0000 (GMT) (envelope-from thomas@laurel.tmseck.homedns.org) Received: from laurel.tmseck.homedns.org (xdsl-213-196-247-14.netcologne.de [213.196.247.14]) by smtp1.netcologne.de (Postfix) with SMTP id C630338AF0 for ; Fri, 23 Jul 2004 17:10:26 +0200 (MEST) Received: (qmail 12836 invoked by uid 1001); 23 Jul 2004 15:10:14 -0000 Message-Id: <20040723151014.12835.qmail@laurel.tmseck.homedns.org> Date: 23 Jul 2004 15:10:14 -0000 From: Thomas-Martin Seck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 15:20:02 -0000 >Number: 69487 >Category: ports >Synopsis: [Maintainer] www/squid: use OpenLDAP 2.1 >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 Jul 23 15:20:01 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Thomas-Martin Seck >Release: FreeBSD 4.10-STABLE i386 >Organization: a private site in Germany >Environment: FreeBSD ports collection as of July 23rd, 2004. >Description: There is at least one reported case of LDAP authentication not working with OpenLDAP 2.2 -- see squid bug #1018 -- so abort the build if 2.2 is the version of OpenLDAP squid is to be built against (thanks to Oliver Eikemeier for telling me how to do this correctly). This issue does not seem to be related to the vendor patch against the LDAP authentication helpers as I originally thought (see ports/69465) but until this issue is sorted out upstream, keep leaving this patch alone since I cannot test LDAP authentication myself yet. No PORTREVISION bump since this is merely a clarification of the status quo and LDAP auth is not built and installed by default. >How-To-Repeat: >Fix: Apply this patch: Index: distinfo =================================================================== --- distinfo (.../www/squid) (revision 131) +++ distinfo (.../local/squid) (revision 131) @@ -2,8 +2,6 @@ SIZE (squid2.5/squid-2.5.STABLE6.tar.bz2) = 1047199 MD5 (squid2.5/squid-2.5.STABLE6-ufs_no_valid_dir.patch) = 26a4ab522a2469f805f746bcdbe0109c SIZE (squid2.5/squid-2.5.STABLE6-ufs_no_valid_dir.patch) = 566 -MD5 (squid2.5/squid-2.5.STABLE6-ldap_helpers.patch) = 952d43265fd2a7755986b6c9191ed0fc -SIZE (squid2.5/squid-2.5.STABLE6-ldap_helpers.patch) = 25097 MD5 (squid2.5/squid-2.5.STABLE6-concurrent_dns_lookups.patch) = 2d6c81bd95659aa936281962b86e8a90 SIZE (squid2.5/squid-2.5.STABLE6-concurrent_dns_lookups.patch) = 6467 MD5 (squid2.5/squid-2.5.STABLE6-request_header_max_size.patch) = 1900043f6b73aa8a3cbd5004633a6c5c Index: Makefile =================================================================== --- Makefile (.../www/squid) (revision 131) +++ Makefile (.../local/squid) (revision 131) @@ -161,6 +160,9 @@ MAN8+= pam_auth.8 squid_unix_group.8 .if defined(WITH_SQUID_LDAP_AUTH) USE_OPENLDAP= yes +.if ${WANT_OPENLDAP_VER}==22 +IGNORE= Bugs in squid_ldap_auth with OpenLDAP 2.2, see +.endif CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib MAN8+= squid_ldap_auth.8 squid_ldap_group.8 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:36: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 1685116A4CE; Fri, 23 Jul 2004 15:36:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBEA343D31; Fri, 23 Jul 2004 15:36:53 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6NFarkd024522; Fri, 23 Jul 2004 15:36:53 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFarq8024518; Fri, 23 Jul 2004 15:36:53 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 15:36:53 GMT From: Tilman Linneweh Message-Id: <200407231536.i6NFarq8024518@freefall.freebsd.org> To: frank@dynamical-systems.org, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69279: multimedia/avidemux2-2.0.24 fails to build with libtool13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 15:36:54 -0000 Synopsis: multimedia/avidemux2-2.0.24 fails to build with libtool13 State-Changed-From-To: feedback->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 15:36:42 GMT 2004 State-Changed-Why: Should be fixed with recent update. http://www.freebsd.org/cgi/query-pr.cgi?pr=69279 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15:46: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 012C616A4CE; Fri, 23 Jul 2004 15:46:05 +0000 (GMT) Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FC9A43D1D; Fri, 23 Jul 2004 15:46:03 +0000 (GMT) (envelope-from udo.schweigert@siemens.com) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by thoth.sbs.de (8.12.6/8.12.6) with ESMTP id i6NFk11j024040; Fri, 23 Jul 2004 17:46:01 +0200 Received: from mars.cert.siemens.com (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.11.7/8.11.7) with ESMTP id i6NFk1420141; Fri, 23 Jul 2004 17:46:01 +0200 (MEST) Received: from alaska.cert.siemens.com (reims.mchp.siemens.de [139.23.202.134]) mail/cert.mc.pre,v 1.61 2004/06/20 16:46:46 mailadm Exp $) with ESMTP id i6NFk1aO099552; Fri, 23 Jul 2004 17:46:01 +0200 (CEST) Received: from alaska.cert.siemens.com (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.17 2004/05/08 20:26:28 ust Exp $) with ESMTP id i6NFk1cC069594; Fri, 23 Jul 2004 17:46:01 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.com) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id i6NFk0kb035501; Fri, 23 Jul 2004 17:46:00 +0200 (CEST) (envelope-from ust) Date: Fri, 23 Jul 2004 17:46:00 +0200 From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040723154600.GA32490@alaska.cert.siemens.com> Mail-Followup-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <200407200840.i6K8e38P040739@alaska.cert.siemens.com> <200407200840.i6K8eMlt013459@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407200840.i6K8eMlt013459@freefall.freebsd.org> X-Operating-System: FreeBSD 4.10-RELEASE-p2 User-Agent: Mutt/1.5.6i cc: Udo Schweigert Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 15:46:05 -0000 Here is the next update since the nessus developers already have released the version 2.0.12: Maintainer-update of the security/nessus-* ports: - Upgrade to nessus version 2.0.12 Committer: file removed (cvs rm) files/extra-patch-3com-hub-amd64 diff -ru /usr/ports/security/nessus/Makefile nessus/Makefile --- /usr/ports/security/nessus/Makefile Mon May 3 06:08:35 2004 +++ nessus/Makefile Fri Jul 23 17:01:58 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus/distinfo nessus/distinfo --- /usr/ports/security/nessus/distinfo Thu Apr 1 06:08:31 2004 +++ nessus/distinfo Fri Jul 23 17:02:35 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-core-2.0.10a.tar.gz) = bd9d62375adc5d6b9e38879a8cee108d -SIZE (nessus/nessus-core-2.0.10a.tar.gz) = 649493 +MD5 (nessus/nessus-core-2.0.12.tar.gz) = 23017718a25848d3629e57ea2b72a421 +SIZE (nessus/nessus-core-2.0.12.tar.gz) = 649412 diff -ru /usr/ports/security/nessus-libnasl/Makefile nessus-libnasl/Makefile --- /usr/ports/security/nessus-libnasl/Makefile Sun Apr 11 06:08:54 2004 +++ nessus-libnasl/Makefile Fri Jul 23 16:59:20 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus-libnasl -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libnasl/distinfo nessus-libnasl/distinfo --- /usr/ports/security/nessus-libnasl/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-libnasl/distinfo Fri Jul 23 16:59:32 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/libnasl-2.0.10a.tar.gz) = 59e0c0ed0fbe1fcf35cdfe004e32b37f -SIZE (nessus/libnasl-2.0.10a.tar.gz) = 343047 +MD5 (nessus/libnasl-2.0.12.tar.gz) = dff04c166d45270909ec94ff97140b44 +SIZE (nessus/libnasl-2.0.12.tar.gz) = 343144 diff -ru /usr/ports/security/nessus-libraries/Makefile nessus-libraries/Makefile --- /usr/ports/security/nessus-libraries/Makefile Sun Apr 11 06:08:54 2004 +++ nessus-libraries/Makefile Fri Jul 23 16:54:43 2004 @@ -9,8 +9,7 @@ # client. PORTNAME= nessus-libraries -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libraries/distinfo nessus-libraries/distinfo --- /usr/ports/security/nessus-libraries/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-libraries/distinfo Fri Jul 23 16:55:09 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-libraries-2.0.10a.tar.gz) = b0c1f429792b7517197bdeadb5f3ecb9 -SIZE (nessus/nessus-libraries-2.0.10a.tar.gz) = 418370 +MD5 (nessus/nessus-libraries-2.0.12.tar.gz) = 8f80ee53a2b73554b7ea5092d67f8426 +SIZE (nessus/nessus-libraries-2.0.12.tar.gz) = 418922 diff -ru /usr/ports/security/nessus-plugins/Makefile nessus-plugins/Makefile --- /usr/ports/security/nessus-plugins/Makefile Mon May 3 06:08:35 2004 +++ nessus-plugins/Makefile Fri Jul 23 17:06:47 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus-plugins -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ @@ -35,15 +34,6 @@ MAN8= nessus-update-plugins.8 .include - -.if ${ARCH} == "amd64" -PLIST_SUB+= AMD="@comment " -pre-configure: - ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-3com-hub-amd64 -.else -PLIST_SUB+= AMD="" -BUILD_DEPENDS+= libnet-config:${PORTSDIR}/net/libnet -.endif post-install: @${ECHO} "================================================================================" diff -ru /usr/ports/security/nessus-plugins/distinfo nessus-plugins/distinfo --- /usr/ports/security/nessus-plugins/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-plugins/distinfo Fri Jul 23 17:07:37 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-plugins-2.0.10a.tar.gz) = dda0829b6a70086edcec2c5000d06a21 -SIZE (nessus/nessus-plugins-2.0.10a.tar.gz) = 1443420 +MD5 (nessus/nessus-plugins-2.0.12.tar.gz) = 2519ffc5ececb0874350ecd32ea530cd +SIZE (nessus/nessus-plugins-2.0.12.tar.gz) = 1767376 diff -ru /usr/ports/security/nessus-plugins/files/extra-patch-3com-hub-amd64 nessus-plugins/files/extra-patch-3com-hub-amd64 --- /usr/ports/security/nessus-plugins/files/extra-patch-3com-hub-amd64 Sun May 2 20:18:08 2004 +++ nessus-plugins/files/extra-patch-3com-hub-amd64 Thu Jan 1 01:00:00 1970 @@ -1,18 +0,0 @@ ---- plugins/make_world.orig Sun Jun 9 13:07:06 2002 -+++ plugins/make_world Wed Apr 28 17:03:30 2004 -@@ -15,14 +15,7 @@ - do if [ -d $i -a $i != CVS ]; then - if [ "$i" = "3com_hub" ]; - then -- libnet-config && { -- cd $i -- ${MAKE:-make} $MAKEFLAG $1 -- if [ $? -ne 0 ];then -- BADPLUGINS="$BADPLUGINS $i" -- fi -- cd .. -- } -+ BADPLUGINS="$BADPLUGINS $i"; - else - cd $i - ${MAKE:-make} $MAKEFLAG $1 diff -ru /usr/ports/security/nessus-plugins/pkg-plist nessus-plugins/pkg-plist --- /usr/ports/security/nessus-plugins/pkg-plist Mon May 3 06:08:35 2004 +++ nessus-plugins/pkg-plist Fri Jul 23 17:13:42 2004 @@ -1,8 +1,9 @@ bin/nessus-build lib/nessus/plugins/12planet_chat_server_path_disclosure.nasl lib/nessus/plugins/12planet_chat_server_plaintext_password.nasl +lib/nessus/plugins/12planet_chat_server_xss.nasl lib/nessus/plugins/3com_config_disclosure.nasl -%%AMD%%lib/nessus/plugins/3com_hub.nes +lib/nessus/plugins/3com_nbx_voip_netset_detection.nasl lib/nessus/plugins/3com_ras_crash.nasl lib/nessus/plugins/3com_switches.nasl lib/nessus/plugins/404_path_disclosure.nasl @@ -42,12 +43,15 @@ lib/nessus/plugins/CSCdx54675.nasl lib/nessus/plugins/CSCdx92043.nasl lib/nessus/plugins/CSCdy03429.nasl +lib/nessus/plugins/CSCdy15598.nasl lib/nessus/plugins/CSCdy26428.nasl lib/nessus/plugins/CSCdy38035.nasl lib/nessus/plugins/CSCdz39284.nasl lib/nessus/plugins/CSCdz60229.nasl lib/nessus/plugins/CSCea42030.nasl lib/nessus/plugins/CSCea77143.nasl +lib/nessus/plugins/CSCec42751.nasl +lib/nessus/plugins/CSCed30113.nasl lib/nessus/plugins/ColdFusion.nasl lib/nessus/plugins/ColdFusion_path_disclosure.nasl lib/nessus/plugins/CuteNews_code_injection.nasl @@ -120,12 +124,14 @@ lib/nessus/plugins/SimpleBBS_users_disclosure.nasl lib/nessus/plugins/TLD_wildcard.nasl lib/nessus/plugins/TelSrv_DoS.nasl +lib/nessus/plugins/W32.Sasser.Worm.nasl lib/nessus/plugins/WebSite.nasl lib/nessus/plugins/X.nasl lib/nessus/plugins/Xeneo_Web_Server_2.2.9.0_DoS.nasl lib/nessus/plugins/Xerver_DoS.nasl lib/nessus/plugins/a1stats.nasl lib/nessus/plugins/aardvark_topsites_multiple.nasl +lib/nessus/plugins/aborior_cmd_exec.nasl lib/nessus/plugins/abyss_dos.nasl lib/nessus/plugins/abyss_overflow.nasl lib/nessus/plugins/acc.nasl @@ -157,6 +163,7 @@ lib/nessus/plugins/account_root_rootkit1.nasl lib/nessus/plugins/account_root_rootkit1bis.nasl lib/nessus/plugins/account_root_rootkit2.nasl +lib/nessus/plugins/account_swift_swift.nasl lib/nessus/plugins/account_sync.nasl lib/nessus/plugins/account_system_manager.nasl lib/nessus/plugins/account_toor.nasl @@ -171,6 +178,7 @@ lib/nessus/plugins/admentor_login_flaw.nasl lib/nessus/plugins/advanced_poll_phpinfo.nasl lib/nessus/plugins/afs_version.nasl +lib/nessus/plugins/agobot_fo.nasl lib/nessus/plugins/agora.nasl lib/nessus/plugins/airport_plaintext_credentials.nasl lib/nessus/plugins/aix_ftpd.nasl @@ -213,34 +221,44 @@ lib/nessus/plugins/apache_2_0_46.nasl lib/nessus/plugins/apache_2_0_47.nasl lib/nessus/plugins/apache_2_0_48.nasl +lib/nessus/plugins/apache_2_0_49_mod_ssl.nasl lib/nessus/plugins/apache_Tomcat_DOS_Device_XSS.nasl lib/nessus/plugins/apache_Tomcat_Servlet_XSS.nasl lib/nessus/plugins/apache_Tomcat_TroubleShooter.nasl lib/nessus/plugins/apache_auth_sql_insertion.nasl lib/nessus/plugins/apache_bat_exec.nasl lib/nessus/plugins/apache_chunked_encoding.nasl +lib/nessus/plugins/apache_conn_block.nasl lib/nessus/plugins/apache_dir_listing.nasl +lib/nessus/plugins/apache_input_header_folding_dos.nasl +lib/nessus/plugins/apache_log_injection.nasl lib/nessus/plugins/apache_server_info.nasl lib/nessus/plugins/apache_server_status.nasl lib/nessus/plugins/apache_slash.nasl lib/nessus/plugins/apache_source_asp.nasl +lib/nessus/plugins/apache_ssl_certificate_forging.nasl lib/nessus/plugins/apache_ssl_overflow.nasl lib/nessus/plugins/apache_username.nasl lib/nessus/plugins/apache_win32_devname.nasl lib/nessus/plugins/apache_win32_dir_trav.nasl lib/nessus/plugins/apache_win32_read_files.nasl +lib/nessus/plugins/apc_smartslot_factory_password.nasl lib/nessus/plugins/apcnisd_detect.nasl lib/nessus/plugins/apcupsd_overflows.nasl lib/nessus/plugins/appsocket_DoS.nasl +lib/nessus/plugins/aprox_portal_file_disclosure.nasl lib/nessus/plugins/arcserve_hidden_share.nasl lib/nessus/plugins/argosoft_dos.nasl lib/nessus/plugins/argosoft_multiple_flaws.nasl lib/nessus/plugins/args_bat.nasl lib/nessus/plugins/arkeia.nasl +lib/nessus/plugins/artmedic_kleinanzeigen_file_inclusion.nasl +lib/nessus/plugins/artmedic_links5_file_inclusion.nasl lib/nessus/plugins/ascend_kill.nasl lib/nessus/plugins/asip-status.nasl lib/nessus/plugins/asp_net_css.nasl lib/nessus/plugins/asp_net_path_disclosure.nasl +lib/nessus/plugins/asp_portal_xss.nasl lib/nessus/plugins/asp_source_data.nasl lib/nessus/plugins/asp_source_dot.nasl lib/nessus/plugins/asp_source_space.nasl @@ -267,6 +285,7 @@ lib/nessus/plugins/badblue_null_byte.nasl lib/nessus/plugins/badblue_remote_administrative_access.nasl lib/nessus/plugins/badblue_remote_administrative_access2.nasl +lib/nessus/plugins/bagel_b_detection.nasl lib/nessus/plugins/bagle_remover.nasl lib/nessus/plugins/bakfiles.nasl lib/nessus/plugins/bandmin_xss.nasl @@ -279,6 +298,7 @@ lib/nessus/plugins/bb-hist.nasl lib/nessus/plugins/bb-hostsvc.nasl lib/nessus/plugins/bboard.nasl +lib/nessus/plugins/bea_password.nasl lib/nessus/plugins/benhur_ftp_firewall.nasl lib/nessus/plugins/betterinternet_detection.nasl lib/nessus/plugins/bftelnet.nasl @@ -307,6 +327,7 @@ lib/nessus/plugins/bizdb1_search.nasl lib/nessus/plugins/biztalk_flaws.nasl lib/nessus/plugins/blackice_dos.nasl +lib/nessus/plugins/blackice_version_checker.nasl lib/nessus/plugins/blackmoon_ftp_users_database.nasl lib/nessus/plugins/blackmoon_ftp_users_enum.nasl lib/nessus/plugins/blnews_code_injection.nasl @@ -314,6 +335,7 @@ lib/nessus/plugins/bonsai_flaws.nasl lib/nessus/plugins/bonzi_buddy.nasl lib/nessus/plugins/bootparamd.nasl +lib/nessus/plugins/bootparamd_get_nis_domain.nasl lib/nessus/plugins/boozt_admin_overflow.nasl lib/nessus/plugins/brilliant_digital_detection.nasl lib/nessus/plugins/broadvision_path_disclosure.nasl @@ -325,6 +347,7 @@ lib/nessus/plugins/bugbear_b.nasl lib/nessus/plugins/bugbear_b_1080.nasl lib/nessus/plugins/bugzilla_detect.nasl +lib/nessus/plugins/bugzilla_multiple_vulns.nasl lib/nessus/plugins/bugzilla_sql_vulns.nasl lib/nessus/plugins/bugzilla_vulns.nasl lib/nessus/plugins/bugzilla_xss_and_tmp_files.nasl @@ -339,6 +362,7 @@ lib/nessus/plugins/campas.nasl lib/nessus/plugins/canna_overflow.nasl lib/nessus/plugins/carello.nasl +lib/nessus/plugins/cart32_xss.nasl lib/nessus/plugins/cassandra_nntp_dos.nasl lib/nessus/plugins/cayman_any_username.nasl lib/nessus/plugins/cc_guestbook.nasl @@ -350,6 +374,7 @@ lib/nessus/plugins/cfinger_format_bug.nasl lib/nessus/plugins/cfinger_search.nasl lib/nessus/plugins/cfinger_version.nasl +lib/nessus/plugins/cfwebstore_sql_injection.nasl lib/nessus/plugins/cgibin_browsable.nasl lib/nessus/plugins/cgibin_in_kb.nasl lib/nessus/plugins/cgicso_command_execution.nasl @@ -364,7 +389,9 @@ lib/nessus/plugins/chargen.nasl lib/nessus/plugins/check_ports.nasl lib/nessus/plugins/checkpoint.nasl +lib/nessus/plugins/checkpoint_format.nasl lib/nessus/plugins/checkpoint_open_web_admin.nasl +lib/nessus/plugins/chora_remote_code_execution.nasl lib/nessus/plugins/cifs445.nasl lib/nessus/plugins/cisco-view-source-dos.nasl lib/nessus/plugins/cisco_675.nasl @@ -387,6 +414,7 @@ lib/nessus/plugins/citrix.nasl lib/nessus/plugins/citrix_find.nasl lib/nessus/plugins/citrix_redirect.nasl +lib/nessus/plugins/citrix_web_xss.nasl lib/nessus/plugins/clarkconnectd.nasl lib/nessus/plugins/cleartrust_xss.nasl lib/nessus/plugins/cmail_overflow.nasl @@ -395,6 +423,7 @@ lib/nessus/plugins/cobalt_web_admin_server.nasl lib/nessus/plugins/codered_x.nasl lib/nessus/plugins/cold_fusion_admin_dos.nasl +lib/nessus/plugins/comersus_xss.nasl lib/nessus/plugins/commerce_cgi.nasl lib/nessus/plugins/communigatepro_overflow.nasl lib/nessus/plugins/communigatepro_referer_field.nasl @@ -407,13 +436,18 @@ lib/nessus/plugins/count_cgi.nasl lib/nessus/plugins/counter.nasl lib/nessus/plugins/counter_php_file_overwrite.nasl +lib/nessus/plugins/courier_imap_overflows.nasl +lib/nessus/plugins/courier_overflows.nasl lib/nessus/plugins/cp-firewall-auth.nasl lib/nessus/plugins/cp-firewall-webauth.nasl lib/nessus/plugins/cp_syslog_overflow.nasl lib/nessus/plugins/cpanel_cmd_exec.nasl +lib/nessus/plugins/cpanel_login_cmd_exec.nasl lib/nessus/plugins/crlinux_file_reading.nasl +lib/nessus/plugins/crobftp_buffer_overflow.nasl lib/nessus/plugins/crobftp_format_string.nasl lib/nessus/plugins/cross_site_scripting.nasl +lib/nessus/plugins/crystal_reports_directory_traversal.nasl lib/nessus/plugins/csSearch_cgi.nasl lib/nessus/plugins/csm_helo.nasl lib/nessus/plugins/csnews.nasl @@ -421,11 +455,15 @@ lib/nessus/plugins/cups_vulns.nasl lib/nessus/plugins/cuteftp_flaws.nasl lib/nessus/plugins/cutenews_phpinfo.nasl +lib/nessus/plugins/cutenews_show_news_xss.nasl lib/nessus/plugins/cvs_detect.nasl lib/nessus/plugins/cvs_dir_create.nasl lib/nessus/plugins/cvs_double_free.nasl lib/nessus/plugins/cvs_in_www.nasl +lib/nessus/plugins/cvs_malformed_entry_lines_flaw.nasl +lib/nessus/plugins/cvs_piped_co.nasl lib/nessus/plugins/cvs_pserver_cmd_exec.nasl +lib/nessus/plugins/cvs_pserver_heap_overflow.nasl lib/nessus/plugins/cvs_public_pserver.nasl lib/nessus/plugins/cvsweb_shell.nasl lib/nessus/plugins/cvsweb_version.nasl @@ -433,6 +471,7 @@ lib/nessus/plugins/cydoor_detection.nasl lib/nessus/plugins/cyrus_imap_prelogin_overflow.nasl lib/nessus/plugins/cyrus_imsp_overflow.nasl +lib/nessus/plugins/dabber_worm.nasl lib/nessus/plugins/dame.nasl lib/nessus/plugins/dameware_mini_remote_control_disclosure.nasl lib/nessus/plugins/dangerous_cgis.nasl @@ -454,7 +493,9 @@ lib/nessus/plugins/ddicgi.nasl lib/nessus/plugins/deep_throat.nasl lib/nessus/plugins/default_account.inc +lib/nessus/plugins/defaultnavcheck.nasl lib/nessus/plugins/delegate_overflow.nasl +lib/nessus/plugins/dell_openmanage.nasl lib/nessus/plugins/deltaups_detect.nasl lib/nessus/plugins/desktop_orbiter_detect.nasl lib/nessus/plugins/desktop_orbiter_reboot.nasl @@ -463,8 +504,10 @@ lib/nessus/plugins/directory_manager.nasl lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl +lib/nessus/plugins/distcc_detection.nasl lib/nessus/plugins/dlink_router_overflow.nasl lib/nessus/plugins/dmail_overflow.nasl +lib/nessus/plugins/dns_cache_sniffing.nasl lib/nessus/plugins/dns_fingerprint.nasl lib/nessus/plugins/dns_server.nasl lib/nessus/plugins/dns_xfer.nasl @@ -479,11 +522,14 @@ lib/nessus/plugins/domino_http_dos.nasl lib/nessus/plugins/domino_traversal.nasl lib/nessus/plugins/domino_xss.nasl +lib/nessus/plugins/dont_print_on_printers.nasl lib/nessus/plugins/dont_scan_printers.nasl +lib/nessus/plugins/download_ject.nasl lib/nessus/plugins/downloadware_detection.nasl lib/nessus/plugins/dragandzip_overflow.nasl lib/nessus/plugins/dragon_ftp.nasl lib/nessus/plugins/dragon_telnet.nasl +lib/nessus/plugins/dreamftp_format_string.nasl lib/nessus/plugins/drweb_overflow.nasl lib/nessus/plugins/dssagent_detection.nasl lib/nessus/plugins/dtspcd.nasl @@ -493,11 +539,15 @@ lib/nessus/plugins/dwhttp_format_string.nasl lib/nessus/plugins/e107_db_dump.nasl lib/nessus/plugins/eDonkey_detect.nasl +lib/nessus/plugins/eMuleWebServer_detect.nasl lib/nessus/plugins/eXtremail_format_strings.nasl lib/nessus/plugins/easydynamicpages_code_injection.nasl lib/nessus/plugins/ebola_overflow.nasl lib/nessus/plugins/ecartis_hidden_username.nasl +lib/nessus/plugins/ece_flag.nasl lib/nessus/plugins/echo.nasl +lib/nessus/plugins/ecommerce_corp_sql_injection.nasl +lib/nessus/plugins/edimax_ap_guest.nasl lib/nessus/plugins/eftp_bufferoverflow.nasl lib/nessus/plugins/eftp_directory_traversal.nasl lib/nessus/plugins/eftp_dos.nasl @@ -507,6 +557,7 @@ lib/nessus/plugins/eldapo_plaintext_passwords.nasl lib/nessus/plugins/empower_path.nasl lib/nessus/plugins/emule_dos.nasl +lib/nessus/plugins/emumail_multiple_vulns.nasl lib/nessus/plugins/epolicy_orchestrator_format_string.nasl lib/nessus/plugins/epolicy_orchestrator_multiple_issues.nasl lib/nessus/plugins/eserv.nasl @@ -522,6 +573,7 @@ lib/nessus/plugins/exchange_public_folders_information_leak.nasl lib/nessus/plugins/exchange_xexch50_overflow.nasl lib/nessus/plugins/exim_heap_overflow.nasl +lib/nessus/plugins/exim_mult_overflow.nasl lib/nessus/plugins/ezcontents_code_execution.nasl lib/nessus/plugins/ezpublish_config_disclosure.nasl lib/nessus/plugins/ezpublish_dir_xss.nasl @@ -545,11 +597,14 @@ lib/nessus/plugins/finger_freebsd.nasl lib/nessus/plugins/finger_redirection.nasl lib/nessus/plugins/finger_solaris_disclosure.nasl +lib/nessus/plugins/finjan_cmd_restart.nasl +lib/nessus/plugins/firebird_bo.nasl lib/nessus/plugins/firewall1_dos.nasl lib/nessus/plugins/flash_ftp_server_directory_traversal.nasl lib/nessus/plugins/flash_player_local_files.nasl lib/nessus/plugins/flash_player_overflows.nasl lib/nessus/plugins/flashfxp_overflow.nasl +lib/nessus/plugins/flexwatch_auth_bypass.nasl lib/nessus/plugins/formhandler.nasl lib/nessus/plugins/formmail_pl.nasl lib/nessus/plugins/formmail_version_disclosure.nasl @@ -557,6 +612,120 @@ lib/nessus/plugins/foxweb_dll.nasl lib/nessus/plugins/fp_fpcount.nasl lib/nessus/plugins/fp_htimage.nasl +lib/nessus/plugins/fqdn.nasl +lib/nessus/plugins/freebsd_DarwinStreamingServer_413g.nasl +lib/nessus/plugins/freebsd_anubis_362_1.nasl +lib/nessus/plugins/freebsd_apache+ssl_1329153.nasl +lib/nessus/plugins/freebsd_apache_2048_3.nasl +lib/nessus/plugins/freebsd_bind8_neg_poison.nasl +lib/nessus/plugins/freebsd_buffer_cache.nasl +lib/nessus/plugins/freebsd_clamav_065_7.nasl +lib/nessus/plugins/freebsd_contenttype_xss.nasl +lib/nessus/plugins/freebsd_cvs_heap_overflow.nasl +lib/nessus/plugins/freebsd_cvs_path_validation.nasl +lib/nessus/plugins/freebsd_cyrus_2017.nasl +lib/nessus/plugins/freebsd_cyrus_imspd_16a5.nasl +lib/nessus/plugins/freebsd_dhcp3_301r14.nasl +lib/nessus/plugins/freebsd_ecartis_100s20030814_1.nasl +lib/nessus/plugins/freebsd_emil_21b9.nasl +lib/nessus/plugins/freebsd_ethereal_0103.nasl +lib/nessus/plugins/freebsd_ethereal_0104.nasl +lib/nessus/plugins/freebsd_ethereal_0105.nasl +lib/nessus/plugins/freebsd_exim_433_20_1.nasl +lib/nessus/plugins/freebsd_ezbounce_104_a_1.nasl +lib/nessus/plugins/freebsd_fetchmail_620.nasl +lib/nessus/plugins/freebsd_fetchmail_625.nasl +lib/nessus/plugins/freebsd_fsp_28119.nasl +lib/nessus/plugins/freebsd_gaim_076.nasl +lib/nessus/plugins/freebsd_gallery_1432.nasl +lib/nessus/plugins/freebsd_gift_087.nasl +lib/nessus/plugins/freebsd_gnats_311319.nasl +lib/nessus/plugins/freebsd_gnupg_123_4.nasl +lib/nessus/plugins/freebsd_h323_bugs.nasl +lib/nessus/plugins/freebsd_heimdal_061.nasl +lib/nessus/plugins/freebsd_heimdal_061_1.nasl +lib/nessus/plugins/freebsd_hsftp_114.nasl +lib/nessus/plugins/freebsd_icecast_1312.nasl +lib/nessus/plugins/freebsd_ident2_104.nasl +lib/nessus/plugins/freebsd_inn_241.nasl +lib/nessus/plugins/freebsd_jail_route.nasl +lib/nessus/plugins/freebsd_jailed_processes.nasl +lib/nessus/plugins/freebsd_kdepim_314_1.nasl +lib/nessus/plugins/freebsd_lbreakout2_222_1.nasl +lib/nessus/plugins/freebsd_leafnode_1947.nasl +lib/nessus/plugins/freebsd_lftp_2610.nasl +lib/nessus/plugins/freebsd_lha_114_4.nasl +lib/nessus/plugins/freebsd_libmcrypt_256.nasl +lib/nessus/plugins/freebsd_libpng.nasl +lib/nessus/plugins/freebsd_libtool_temp_file.nasl +lib/nessus/plugins/freebsd_libxine_10r3_5.nasl +lib/nessus/plugins/freebsd_linux.nasl +lib/nessus/plugins/freebsd_mailman_21.nasl +lib/nessus/plugins/freebsd_mailman_211.nasl +lib/nessus/plugins/freebsd_mailman_213.nasl +lib/nessus/plugins/freebsd_mailman_214.nasl +lib/nessus/plugins/freebsd_mathopd_14p2.nasl +lib/nessus/plugins/freebsd_mc_460_10.nasl +lib/nessus/plugins/freebsd_mc_460_9.nasl +lib/nessus/plugins/freebsd_metamail_27_2.nasl +lib/nessus/plugins/freebsd_mksnap_ffs.nasl +lib/nessus/plugins/freebsd_mnogosearch_32.nasl +lib/nessus/plugins/freebsd_mod_python_2710.nasl +lib/nessus/plugins/freebsd_modsecurity_175.nasl +lib/nessus/plugins/freebsd_moinmoin_122.nasl +lib/nessus/plugins/freebsd_mpg123_059_12.nasl +lib/nessus/plugins/freebsd_mplayer_0921.nasl +lib/nessus/plugins/freebsd_mutt_142.nasl +lib/nessus/plugins/freebsd_mysql_client_4020.nasl +lib/nessus/plugins/freebsd_nap_145.nasl +lib/nessus/plugins/freebsd_neon_0245.nasl +lib/nessus/plugins/freebsd_neon_0245_1.nasl +lib/nessus/plugins/freebsd_oftpd_037.nasl +lib/nessus/plugins/freebsd_openssl_changecipherspec.nasl +lib/nessus/plugins/freebsd_outofseq_tcp_packets_dos.nasl +lib/nessus/plugins/freebsd_package.inc +lib/nessus/plugins/freebsd_pam_smb_199_3.nasl +lib/nessus/plugins/freebsd_pavuk_0928_5.nasl +lib/nessus/plugins/freebsd_phpBB_208.nasl +lib/nessus/plugins/freebsd_phpBB_208_1.nasl +lib/nessus/plugins/freebsd_phpBB_208_2.nasl +lib/nessus/plugins/freebsd_phpMyAdmin_254.nasl +lib/nessus/plugins/freebsd_phpMyAdmin_2571.nasl +lib/nessus/plugins/freebsd_php_438.nasl +lib/nessus/plugins/freebsd_phpnuke_69.nasl +lib/nessus/plugins/freebsd_phpnuke_73.nasl +lib/nessus/plugins/freebsd_pine_421.nasl +lib/nessus/plugins/freebsd_pine_444.nasl +lib/nessus/plugins/freebsd_pine_450.nasl +lib/nessus/plugins/freebsd_pine_458.nasl +lib/nessus/plugins/freebsd_pound_16.nasl +lib/nessus/plugins/freebsd_proftpd_1210_r1.nasl +lib/nessus/plugins/freebsd_proftpd_128_1.nasl +lib/nessus/plugins/freebsd_qpopper_253_1.nasl +lib/nessus/plugins/freebsd_racoon_20040116a.nasl +lib/nessus/plugins/freebsd_racoon_20040407b.nasl +lib/nessus/plugins/freebsd_rsync_257.nasl +lib/nessus/plugins/freebsd_rsync_261.nasl +lib/nessus/plugins/freebsd_samba_301_2.nasl +lib/nessus/plugins/freebsd_setiathome_308.nasl +lib/nessus/plugins/freebsd_setsockopt_521_4.nasl +lib/nessus/plugins/freebsd_shmat.nasl +lib/nessus/plugins/freebsd_squid_255.nasl +lib/nessus/plugins/freebsd_squid_255_9.nasl +lib/nessus/plugins/freebsd_ssltelnet_0131.nasl +lib/nessus/plugins/freebsd_subversion_102_1.nasl +lib/nessus/plugins/freebsd_tcpdump_381_351.nasl +lib/nessus/plugins/freebsd_uri_vulns.nasl +lib/nessus/plugins/freebsd_uudeview_0520.nasl +lib/nessus/plugins/freebsd_wuftpd_262_3.nasl +lib/nessus/plugins/freebsd_xboing_24_2.nasl +lib/nessus/plugins/freebsd_xchat_208_2.nasl +lib/nessus/plugins/freebsd_xfree86_server_430_13.nasl +lib/nessus/plugins/freebsd_xine_0923_3.nasl +lib/nessus/plugins/freebsd_xml2_266.nasl +lib/nessus/plugins/freebsd_xorgs_clients_670.nasl +lib/nessus/plugins/freebsd_zebra_093b_7.nasl +lib/nessus/plugins/freebsd_zh_cce_040.nasl lib/nessus/plugins/freecmty_detection.nasl lib/nessus/plugins/frontpage.nasl lib/nessus/plugins/frontpage_authors.nasl @@ -568,6 +737,7 @@ lib/nessus/plugins/frontpage_shtml.nasl lib/nessus/plugins/frontpage_shtml_overflow.nasl lib/nessus/plugins/frontpage_xss.nasl +lib/nessus/plugins/fsecure_ssh_pass_pol_evasion.nasl lib/nessus/plugins/fsp_detection.nasl lib/nessus/plugins/fspd_directory_traversal.nasl lib/nessus/plugins/ftgate_pro_dos.nasl @@ -593,6 +763,8 @@ lib/nessus/plugins/ftp_root.nasl lib/nessus/plugins/ftp_servu_dos.nasl lib/nessus/plugins/ftp_servu_dos2.nasl +lib/nessus/plugins/ftp_servu_mdtm_overflow.nasl +lib/nessus/plugins/ftp_servu_overflow.nasl lib/nessus/plugins/ftp_servu_path_disclosure.nasl lib/nessus/plugins/ftp_servu_traversal.nasl lib/nessus/plugins/ftp_setproctitle.nasl @@ -601,6 +773,7 @@ lib/nessus/plugins/ftp_traversal.nasl lib/nessus/plugins/ftp_w98_devname_dos.nasl lib/nessus/plugins/ftp_write_dirs.nes +lib/nessus/plugins/ftp_xlight_overflow.nasl lib/nessus/plugins/ftp_zaurus.nasl lib/nessus/plugins/ftpd_1byte_overflow.nasl lib/nessus/plugins/ftpgate.nasl @@ -608,18 +781,24 @@ lib/nessus/plugins/ftpserver_detect_type_nd_version.nasl lib/nessus/plugins/ftpvoyager_overflow.nasl lib/nessus/plugins/fw1_udp_DoS.nasl +lib/nessus/plugins/gallery_auth_bypass.nasl lib/nessus/plugins/gallery_injection.nasl lib/nessus/plugins/gallery_injection2.nasl +lib/nessus/plugins/gallery_injection3.nasl lib/nessus/plugins/gallery_xss.nasl +lib/nessus/plugins/gamespy_denial.nasl lib/nessus/plugins/gamespy_detect.nasl lib/nessus/plugins/gatecrasher.nasl lib/nessus/plugins/gator.nasl lib/nessus/plugins/gator_detection.nasl lib/nessus/plugins/gauntlet_overflow.nasl lib/nessus/plugins/geeklog_admin_access.nasl +lib/nessus/plugins/gemitel_file_inclusion.nasl lib/nessus/plugins/generic_WEB-INF.nasl lib/nessus/plugins/girlfriend.nasl lib/nessus/plugins/glimpse.nasl +lib/nessus/plugins/global_settings.inc +lib/nessus/plugins/global_settings.nasl lib/nessus/plugins/gnapster_get_file.nasl lib/nessus/plugins/gnocatan_overflow.nasl lib/nessus/plugins/gnu_cfserv.nasl @@ -636,9 +815,12 @@ lib/nessus/plugins/guestbook_tr3_passwd.nasl lib/nessus/plugins/guild_ftp.nasl lib/nessus/plugins/gupta_sqlbase_overflows.nasl +lib/nessus/plugins/h323_detection.nasl +lib/nessus/plugins/halo_detection.nasl lib/nessus/plugins/handler.nasl lib/nessus/plugins/happymall_cmd_exec.nasl lib/nessus/plugins/healthd_detect.nasl +lib/nessus/plugins/helix_dos.nasl lib/nessus/plugins/helix_overflow.nasl lib/nessus/plugins/hello_detect.nasl lib/nessus/plugins/homefree.nasl @@ -646,8 +828,10 @@ lib/nessus/plugins/horde_turba_path_disclosure.nasl lib/nessus/plugins/hosting_controller.nasl lib/nessus/plugins/hotnews_code_injection.nasl +lib/nessus/plugins/hotopentickets_unspecified_flaw.nasl lib/nessus/plugins/hotsync.nasl lib/nessus/plugins/hp_instant_toptools_dos.nasl +lib/nessus/plugins/hp_jadm_vuln.nasl lib/nessus/plugins/hp_jetdirect_vulns.nasl lib/nessus/plugins/hp_printer_display.nasl lib/nessus/plugins/hp_remote_print.nasl @@ -662,6 +846,7 @@ lib/nessus/plugins/htsearch_config_switch.nasl lib/nessus/plugins/htsearch_location.nasl lib/nessus/plugins/http-rpc-epmap.nasl +lib/nessus/plugins/http_asn1_decoding.nasl lib/nessus/plugins/http_func.inc lib/nessus/plugins/http_ids_evasion.nasl lib/nessus/plugins/http_keepalive.inc @@ -748,9 +933,12 @@ lib/nessus/plugins/imail_imonitor_overflow.nasl lib/nessus/plugins/imap4_banner.nasl lib/nessus/plugins/imap4_rev1_overflow.nasl +lib/nessus/plugins/imap_arbitrary_file_retrieval.nasl lib/nessus/plugins/imap_body_overflow.nasl lib/nessus/plugins/imap_overflow.nasl lib/nessus/plugins/imate_overflow.nasl +lib/nessus/plugins/imp_content_type_xss.nasl +lib/nessus/plugins/imp_detect.nasl lib/nessus/plugins/imp_mime_viewer_html_xss.nasl lib/nessus/plugins/imp_session_hijacking.nasl lib/nessus/plugins/imp_sql_injection.nasl @@ -759,6 +947,7 @@ lib/nessus/plugins/info2www.nasl lib/nessus/plugins/informix_traversal.nasl lib/nessus/plugins/infosrch.nasl +lib/nessus/plugins/inktomi_path_disclosure.nasl lib/nessus/plugins/inn.nasl lib/nessus/plugins/inn_control_message_overflow.nasl lib/nessus/plugins/innd_overflow.nasl @@ -768,8 +957,11 @@ lib/nessus/plugins/interscan_vw_cgi.nasl lib/nessus/plugins/invision_power_board.nasl lib/nessus/plugins/invision_power_board_calendar_sql_injection.nasl +lib/nessus/plugins/invision_power_board_ssi_sql_injection.nasl +lib/nessus/plugins/invision_power_board_xss.nasl lib/nessus/plugins/invision_power_top_site_sql_injection.nasl lib/nessus/plugins/ion_p.nasl +lib/nessus/plugins/ipb_sql_disclosure.nasl lib/nessus/plugins/ipinsight_detection.nasl lib/nessus/plugins/iplanet_app_server_detection.nasl lib/nessus/plugins/iplanet_app_server_overflow.nasl @@ -793,17 +985,25 @@ lib/nessus/plugins/iws_shtml.nasl lib/nessus/plugins/ixmail_arbitrary_file_upload.nasl lib/nessus/plugins/ixmail_sql_injection.nasl +lib/nessus/plugins/java_jre_jdk_dos.nasl +lib/nessus/plugins/java_source_retrieval.nasl lib/nessus/plugins/jboss_source.nasl +lib/nessus/plugins/jbrowser_multiple_vulns.nasl +lib/nessus/plugins/jelsoft_vbulletin_xss.nasl +lib/nessus/plugins/jetroot.nasl lib/nessus/plugins/jeus_url_xss.nasl +lib/nessus/plugins/jigsaw_2_2_4.nasl lib/nessus/plugins/jigsaw_msdos_dev_DoS.nasl lib/nessus/plugins/jj.nasl lib/nessus/plugins/jmf_privs_escalation.nasl lib/nessus/plugins/jolt.nasl lib/nessus/plugins/jolt2.nasl lib/nessus/plugins/jordan_telnet_overflow.nasl +lib/nessus/plugins/jportal_sql_injection.nasl lib/nessus/plugins/jrun.nasl lib/nessus/plugins/jrun_dir_listing.nasl lib/nessus/plugins/jrun_getdir.nasl +lib/nessus/plugins/js.scob.trojan.nasl lib/nessus/plugins/jserv_execute.nasl lib/nessus/plugins/jwalk_traversal.nasl lib/nessus/plugins/kazaa_installed.nasl @@ -820,6 +1020,7 @@ lib/nessus/plugins/kietu_code_injection.nasl lib/nessus/plugins/knfs_dos.nasl lib/nessus/plugins/knowledge_builder_code_execution.nasl +lib/nessus/plugins/korgo.nasl lib/nessus/plugins/kpym_telnet_overflow.nasl lib/nessus/plugins/krb_pingpong.nasl lib/nessus/plugins/kuang2_the_virus.nasl @@ -837,15 +1038,17 @@ lib/nessus/plugins/leafnode_version.nasl lib/nessus/plugins/leapftp_overflow.nasl lib/nessus/plugins/lednews_xss.nasl +lib/nessus/plugins/leifwright_blog_cmd_execution.nasl lib/nessus/plugins/les_visiteurs.nasl lib/nessus/plugins/libgtop_daemon.nasl -lib/nessus/plugins/libwhisker_settings.nasl lib/nessus/plugins/limewire_installed.nasl lib/nessus/plugins/line_overflow.nasl lib/nessus/plugins/linksys_ap_default_password.nasl lib/nessus/plugins/linksys_dos.nasl lib/nessus/plugins/linksys_empty_GET_DoS.nasl lib/nessus/plugins/linksys_gozila_cgi_DoS.nasl +lib/nessus/plugins/linksys_next_file_file_disclosure.nasl +lib/nessus/plugins/linux26_tcpopt_dos.nasl lib/nessus/plugins/linux_tftp.nes lib/nessus/plugins/linux_zero_len_fragment.nasl lib/nessus/plugins/linuxconf_detect.nasl @@ -868,7 +1071,19 @@ lib/nessus/plugins/lpd_overflow.nasl lib/nessus/plugins/lsh_overflow.nasl lib/nessus/plugins/macos_x_directory_svc_dos.nasl +lib/nessus/plugins/macosx_SecUpd20031104.nasl +lib/nessus/plugins/macosx_SecUpd20031205.nasl +lib/nessus/plugins/macosx_SecUpd20031219.nasl +lib/nessus/plugins/macosx_SecUpd20040126.nasl +lib/nessus/plugins/macosx_SecUpd20040503.nasl +lib/nessus/plugins/macosx_SecUpd20040524.nasl +lib/nessus/plugins/macosx_SecUpd20040607.nasl +lib/nessus/plugins/macosx_multiple_vulns.nasl +lib/nessus/plugins/macosx_server_default_password.nasl +lib/nessus/plugins/macosx_version.nasl lib/nessus/plugins/magic_winmail_pop_format_string.nasl +lib/nessus/plugins/mail_asn1_decoding.nasl +lib/nessus/plugins/mailman_password_retrieval.nasl lib/nessus/plugins/mailman_webmail.nasl lib/nessus/plugins/mailmax_imap_overflows.nasl lib/nessus/plugins/mailmax_imap_overflows2.nasl @@ -879,11 +1094,13 @@ lib/nessus/plugins/mambo.nasl lib/nessus/plugins/mambo_code_injection.nasl lib/nessus/plugins/mambo_xss.nasl +lib/nessus/plugins/mambo_xss2.nasl lib/nessus/plugins/manpage_file_disclosure.nasl lib/nessus/plugins/mantis_detect.nasl lib/nessus/plugins/mantis_multiple_vulns.nasl lib/nessus/plugins/marconi_dos.nasl lib/nessus/plugins/master_index_search.nasl +lib/nessus/plugins/mcafee_installed.nasl lib/nessus/plugins/mcms_overflow.nasl lib/nessus/plugins/mdaemon.nasl lib/nessus/plugins/mdaemon_create_overflow.nasl @@ -892,6 +1109,7 @@ lib/nessus/plugins/mdaemon_webconfig.nasl lib/nessus/plugins/mdaemon_worldclient.nasl lib/nessus/plugins/mdbms_overflow.nasl +lib/nessus/plugins/mdns.nasl lib/nessus/plugins/mediahouse_statistics_server.nasl lib/nessus/plugins/mediahouse_statistics_web_server.nasl lib/nessus/plugins/mercur_auth_overflow.nasl @@ -922,16 +1140,23 @@ lib/nessus/plugins/mod_ntlm.nasl lib/nessus/plugins/mod_python_handle.nasl lib/nessus/plugins/mod_python_malformed_query.nasl +lib/nessus/plugins/mod_rootme_backdoor.nasl +lib/nessus/plugins/mod_ssl_hook_functions_format_string_vuln.nasl lib/nessus/plugins/mod_ssl_offby1.nasl lib/nessus/plugins/mod_ssl_overflow.nasl +lib/nessus/plugins/mod_ssl_uuencode_binary.nasl lib/nessus/plugins/mod_ssl_wildcard_dns_xss.nasl lib/nessus/plugins/mod_survey_sql_injection.nasl lib/nessus/plugins/monkeyweb_post_DoS.nasl lib/nessus/plugins/monkeyweb_too_big_post.nasl +lib/nessus/plugins/moodle_xss.nasl lib/nessus/plugins/mountd_overflow.nasl +lib/nessus/plugins/mozilla_firefox_code_exec.nasl lib/nessus/plugins/mpcsw_guestbook_database.nasl lib/nessus/plugins/mq_toolbar_detection.nasl lib/nessus/plugins/ms_index_server.nasl +lib/nessus/plugins/ms_invalid_cookie.nasl +lib/nessus/plugins/ms_kb835732_ssl.nasl lib/nessus/plugins/ms_siteserver_info_disclosure.nasl lib/nessus/plugins/ms_telnet_overflow.nasl lib/nessus/plugins/msadcs_dll.nasl @@ -965,12 +1190,14 @@ lib/nessus/plugins/my_little_forum_xss.nasl lib/nessus/plugins/mycio_detect.nasl lib/nessus/plugins/mycio_directory_traversal.nasl +lib/nessus/plugins/mydoom_virus.nasl lib/nessus/plugins/myguestbk_admin_access.nasl lib/nessus/plugins/myphpPageTool_code_injection.nasl lib/nessus/plugins/myphpcalendar_injection.nasl lib/nessus/plugins/myphpnuke_code_injection.nasl lib/nessus/plugins/myserver_dos.nasl lib/nessus/plugins/myserver_traversal.nasl +lib/nessus/plugins/mysql_auth_bypass_zeropass.nasl lib/nessus/plugins/mysql_bad_password.nasl lib/nessus/plugins/mysql_double_free.nasl lib/nessus/plugins/mysql_flaws.nasl @@ -981,6 +1208,7 @@ lib/nessus/plugins/nai_webshield_info.nasl lib/nessus/plugins/nai_webshield_overflow.nasl lib/nessus/plugins/napster_detect.nasl +lib/nessus/plugins/nav_installed.nasl lib/nessus/plugins/ncacn_http.nasl lib/nessus/plugins/ncase_detection.nasl lib/nessus/plugins/ncbook_cgi.nasl @@ -1000,6 +1228,7 @@ lib/nessus/plugins/netcharts_default_password.nasl lib/nessus/plugins/netcommerce_sql.nasl lib/nessus/plugins/netgear_default_password.nasl +lib/nessus/plugins/netgear_hidden_password.nasl lib/nessus/plugins/netgear_password_disclosure.nasl lib/nessus/plugins/netgear_prosafe_dos.nasl lib/nessus/plugins/netinfo_detect.nasl @@ -1016,11 +1245,15 @@ lib/nessus/plugins/netscape_imap_overflow.nasl lib/nessus/plugins/netscape_pop_auth.nasl lib/nessus/plugins/netscape_publishing_expert_psuser.nasl +lib/nessus/plugins/netscape_rev_proxy.nasl +lib/nessus/plugins/netscape_server_default_files.nasl lib/nessus/plugins/netscape_wp_tag.nasl lib/nessus/plugins/netstat.nasl lib/nessus/plugins/nettools_cmd_exec.nasl +lib/nessus/plugins/netware_ldap_search_request.nasl lib/nessus/plugins/netware_perl_overflow.nasl lib/nessus/plugins/netware_post_perl.nasl +lib/nessus/plugins/netware_tomcat_sourcecode_viewer.nasl lib/nessus/plugins/network_func.inc lib/nessus/plugins/newdsn.nasl lib/nessus/plugins/newsdesk.nasl @@ -1033,6 +1266,7 @@ lib/nessus/plugins/nikto_wrapper.nes lib/nessus/plugins/nimda.nasl lib/nessus/plugins/niprint_dos.nasl +lib/nessus/plugins/nis_get_passwd_map.nasl lib/nessus/plugins/nis_server.nasl lib/nessus/plugins/nisd_overflow.nasl lib/nessus/plugins/niteserver_ftp_dir_trav.nasl @@ -1050,19 +1284,27 @@ lib/nessus/plugins/nortel_pwdless2.nasl lib/nessus/plugins/notes_detection.nasl lib/nessus/plugins/notes_mta_dos.nasl +lib/nessus/plugins/notesinicheck.nasl lib/nessus/plugins/novell_border_manager.nasl +lib/nessus/plugins/novell_groupwise_servletmanager_default_password.nasl lib/nessus/plugins/novell_groupwise_webacc_information_disclosure.nasl +lib/nessus/plugins/novell_netbasic_directory_traversal.nasl +lib/nessus/plugins/novell_novonyx_default_files.nasl +lib/nessus/plugins/novell_viewcode.nasl lib/nessus/plugins/nph-exploitscanget.nasl lib/nessus/plugins/nph-publish.nasl lib/nessus/plugins/nph-test-cgi.nasl +lib/nessus/plugins/nqt_xss.nasl lib/nessus/plugins/nsiislog_dll.nasl lib/nessus/plugins/nsm_format_strings.nasl lib/nessus/plugins/nt_ftp_guest.nasl lib/nessus/plugins/nt_spam.nasl lib/nessus/plugins/ntalk_detect.nasl +lib/nessus/plugins/ntds_get_info.nasl lib/nessus/plugins/ntp_open.nasl lib/nessus/plugins/ntp_overflow.nasl lib/nessus/plugins/nuked_clan_cmd_exec.nasl +lib/nessus/plugins/nuked_klan_file_include.nasl lib/nessus/plugins/nuked_klan_xss.nasl lib/nessus/plugins/nullhttpd_content_length.nasl lib/nessus/plugins/nx_web_content_file_include.nasl @@ -1073,6 +1315,7 @@ lib/nessus/plugins/odbc_tools_check.nasl lib/nessus/plugins/office_files.nasl lib/nessus/plugins/officescan_disclosure.nasl +lib/nessus/plugins/oftpd_dos.nasl lib/nessus/plugins/oneorzero_flaws.nasl lib/nessus/plugins/oops_overflow.nasl lib/nessus/plugins/openbb_sql_injection.nasl @@ -1090,9 +1333,13 @@ lib/nessus/plugins/openssh_rev_dns_lookup_bypass.nasl lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/openssh_uselogin_environment.nasl +lib/nessus/plugins/openssl_denial.nasl lib/nessus/plugins/openssl_overflow_generic_test.nasl lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/openwebmail_cmd_exec.nasl +lib/nessus/plugins/openwebmail_content_type_xss.nasl +lib/nessus/plugins/openwebmail_detect.nasl +lib/nessus/plugins/openwebmail_vacation_input_validation.nasl lib/nessus/plugins/opera_arbitrary_file_dropping.nasl lib/nessus/plugins/opera_heap_corruption.nasl lib/nessus/plugins/opera_href_overflow.nasl @@ -1103,6 +1350,7 @@ lib/nessus/plugins/oracle9i_apache_dms.nasl lib/nessus/plugins/oracle9i_dad_admin.nasl lib/nessus/plugins/oracle9i_globals_dot_jsa.nasl +lib/nessus/plugins/oracle9i_isqlplus_xss.nasl lib/nessus/plugins/oracle9i_java_process_manager.nasl lib/nessus/plugins/oracle9i_jsp_source.nasl lib/nessus/plugins/oracle9i_jspdefaulterror.nasl @@ -1118,9 +1366,12 @@ lib/nessus/plugins/oracle_dos.nasl lib/nessus/plugins/oracle_link_overflow.nasl lib/nessus/plugins/oracle_one_hour_install.nasl +lib/nessus/plugins/oracle_soap_vulns.nasl +lib/nessus/plugins/oracle_timezone_overflow.nasl lib/nessus/plugins/oracle_tnslsnr_security.nasl lib/nessus/plugins/oracle_tnslsnr_version.nasl lib/nessus/plugins/oracle_web_admin_server.nasl +lib/nessus/plugins/oracle_web_cache_multiple_vulns.nasl lib/nessus/plugins/oracle_xsql.nasl lib/nessus/plugins/oracle_xsql_query.nasl lib/nessus/plugins/orange_dos.nasl @@ -1128,12 +1379,19 @@ lib/nessus/plugins/osX_apache_finder.nasl lib/nessus/plugins/osX_apache_finder_content.nasl lib/nessus/plugins/os_fingerprint.nasl +lib/nessus/plugins/oscommerce_file_manager_disclosure.nasl lib/nessus/plugins/oscommerce_session_id_xss.nasl lib/nessus/plugins/oshare.nasl lib/nessus/plugins/ospf_detect.nasl +lib/nessus/plugins/osticket_attachment_code_execution.nasl +lib/nessus/plugins/osticket_backdoored.nasl +lib/nessus/plugins/osticket_large_attachment_upload.nasl +lib/nessus/plugins/osticket_setup_php_accessible.nasl +lib/nessus/plugins/osticket_view_attachments.nasl lib/nessus/plugins/overnet.nasl lib/nessus/plugins/owa-anonymous.nasl lib/nessus/plugins/owl_browse.nasl +lib/nessus/plugins/owls_file_disclosure.nasl lib/nessus/plugins/ows_bin_cgi.nasl lib/nessus/plugins/ows_overflow.nasl lib/nessus/plugins/p-news_priv_escalation.nasl @@ -1146,6 +1404,7 @@ lib/nessus/plugins/pam_smb.nasl lib/nessus/plugins/passwordless_cayman_router.nasl lib/nessus/plugins/passwordless_hp_printer.nasl +lib/nessus/plugins/passwordless_lexmark_printer.nasl lib/nessus/plugins/paypal_store_front_injection.nasl lib/nessus/plugins/pccsmysqladm.nasl lib/nessus/plugins/perlIS_dll_bufferoverflow.nasl @@ -1157,6 +1416,7 @@ lib/nessus/plugins/pftp_cleartext_passwords.nasl lib/nessus/plugins/pgpmail.nasl lib/nessus/plugins/pgpnet_detect.nasl +lib/nessus/plugins/phatbot_detection.nasl lib/nessus/plugins/phf.nasl lib/nessus/plugins/philboard_auth_bypass.nasl lib/nessus/plugins/philboard_db_access.nasl @@ -1167,6 +1427,7 @@ lib/nessus/plugins/php4_multiple_flaws.nasl lib/nessus/plugins/php4_path_disclosure.nasl lib/nessus/plugins/phpMyAdmin_file_reading.nasl +lib/nessus/plugins/phpMyAdmin_file_reading2.nasl lib/nessus/plugins/phpMyAdmin_multiple_flaws.nasl lib/nessus/plugins/phpMyExplorer.nasl lib/nessus/plugins/phpPgAdmin_file_reading.nasl @@ -1190,11 +1451,15 @@ lib/nessus/plugins/php_safe_mode.nasl lib/nessus/plugins/php_socket_iovec_alloc_overflow.nasl lib/nessus/plugins/php_split_mime.nasl +lib/nessus/plugins/php_strip_tags_memory_limit_vuln.nasl lib/nessus/plugins/phpay_info_disclosure.nasl lib/nessus/plugins/phpbb_sql_injection.nasl lib/nessus/plugins/phpbb_sql_injection2.nasl +lib/nessus/plugins/phpbb_sql_injection3.nasl +lib/nessus/plugins/phpbb_xss.nasl lib/nessus/plugins/phpcatalog_sql_injection.nasl lib/nessus/plugins/phpdig_code_injection.nasl +lib/nessus/plugins/phpgedview_directory_traversal.nasl lib/nessus/plugins/phpgedview_multiple_flaws.nasl lib/nessus/plugins/phpgroupware_file_include.nasl lib/nessus/plugins/phpinfo.nasl @@ -1213,6 +1478,9 @@ lib/nessus/plugins/ping_host.nasl lib/nessus/plugins/pingpong.inc lib/nessus/plugins/piranha.nasl +lib/nessus/plugins/pirelli_router_default_password.nasl +lib/nessus/plugins/pivot_file_inclusion.nasl +lib/nessus/plugins/pjreview_neo_file_reading.nasl lib/nessus/plugins/platinum_ftp.nasl lib/nessus/plugins/plusmail.nasl lib/nessus/plugins/pmachine_code_injection.nasl @@ -1239,7 +1507,9 @@ lib/nessus/plugins/postnuke_multiple_xss.nasl lib/nessus/plugins/postnuke_rating_dos.nasl lib/nessus/plugins/postnuke_sql_injection.nasl +lib/nessus/plugins/pound_format_strings.nasl lib/nessus/plugins/powerplay.nasl +lib/nessus/plugins/powerportal_path_disclosure.nasl lib/nessus/plugins/powerup_information_disclosure.nasl lib/nessus/plugins/pptp_detect.nasl lib/nessus/plugins/printenv.nasl @@ -1254,6 +1524,7 @@ lib/nessus/plugins/proftpd_pgsql_insertion.nasl lib/nessus/plugins/proftpd_pre10.nasl lib/nessus/plugins/proftpd_pre6_exploit.nasl +lib/nessus/plugins/propfind_internal_ip.nasl lib/nessus/plugins/proxomitron_dos.nasl lib/nessus/plugins/proxy_connect.nasl lib/nessus/plugins/proxy_cross_site_scripting.nasl @@ -1273,12 +1544,16 @@ lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl lib/nessus/plugins/qpopper_qvsnprinf_overflow.nasl +lib/nessus/plugins/qpopper_user_disclosure.nasl lib/nessus/plugins/quake3_dos.nasl +lib/nessus/plugins/qualiteam_xcart_cmd_exec.nasl lib/nessus/plugins/quickstore.nasl lib/nessus/plugins/quickstore2.nasl lib/nessus/plugins/quicktime_admin.nasl +lib/nessus/plugins/quicktime_heap_overflow.nasl lib/nessus/plugins/quicktime_player_overflow.nasl lib/nessus/plugins/quote.nasl +lib/nessus/plugins/racoon_cookie_malloc_dos.nasl lib/nessus/plugins/radiate_detection.nasl lib/nessus/plugins/radius_detect.nasl lib/nessus/plugins/radmin_detect.nasl @@ -1286,17 +1561,240 @@ lib/nessus/plugins/raptor_detect.nasl lib/nessus/plugins/raptor_isn.nasl lib/nessus/plugins/rbs.nasl +lib/nessus/plugins/readdesigncheck.nasl +lib/nessus/plugins/realplayer_file_handler_overflow.nasl lib/nessus/plugins/realplayer_png_heap_corruption.nasl +lib/nessus/plugins/realserver_defaultcfg.nasl lib/nessus/plugins/realserver_disclosure.nasl lib/nessus/plugins/realserver_malformed_request_dos.nasl lib/nessus/plugins/realserver_ussr_dos.nasl lib/nessus/plugins/realserverg2.nasl +lib/nessus/plugins/record_route.nasl +lib/nessus/plugins/redhat-RHSA-2002-119.nasl +lib/nessus/plugins/redhat-RHSA-2002-120.nasl +lib/nessus/plugins/redhat-RHSA-2002-121.nasl +lib/nessus/plugins/redhat-RHSA-2002-122.nasl +lib/nessus/plugins/redhat-RHSA-2002-123.nasl +lib/nessus/plugins/redhat-RHSA-2002-124.nasl +lib/nessus/plugins/redhat-RHSA-2002-125.nasl +lib/nessus/plugins/redhat-RHSA-2002-126.nasl +lib/nessus/plugins/redhat-RHSA-2002-128.nasl +lib/nessus/plugins/redhat-RHSA-2002-129.nasl +lib/nessus/plugins/redhat-RHSA-2002-130.nasl +lib/nessus/plugins/redhat-RHSA-2002-131.nasl +lib/nessus/plugins/redhat-RHSA-2002-136.nasl +lib/nessus/plugins/redhat-RHSA-2002-137.nasl +lib/nessus/plugins/redhat-RHSA-2002-138.nasl +lib/nessus/plugins/redhat-RHSA-2002-152.nasl +lib/nessus/plugins/redhat-RHSA-2002-154.nasl +lib/nessus/plugins/redhat-RHSA-2002-157.nasl +lib/nessus/plugins/redhat-RHSA-2002-161.nasl +lib/nessus/plugins/redhat-RHSA-2002-165.nasl +lib/nessus/plugins/redhat-RHSA-2002-167.nasl +lib/nessus/plugins/redhat-RHSA-2002-170.nasl +lib/nessus/plugins/redhat-RHSA-2002-173.nasl +lib/nessus/plugins/redhat-RHSA-2002-180.nasl +lib/nessus/plugins/redhat-RHSA-2002-181.nasl +lib/nessus/plugins/redhat-RHSA-2002-191.nasl +lib/nessus/plugins/redhat-RHSA-2002-195.nasl +lib/nessus/plugins/redhat-RHSA-2002-211.nasl +lib/nessus/plugins/redhat-RHSA-2002-214.nasl +lib/nessus/plugins/redhat-RHSA-2002-216.nasl +lib/nessus/plugins/redhat-RHSA-2002-221.nasl +lib/nessus/plugins/redhat-RHSA-2002-224.nasl +lib/nessus/plugins/redhat-RHSA-2002-227.nasl +lib/nessus/plugins/redhat-RHSA-2002-250.nasl +lib/nessus/plugins/redhat-RHSA-2002-251.nasl +lib/nessus/plugins/redhat-RHSA-2002-255.nasl +lib/nessus/plugins/redhat-RHSA-2002-256.nasl +lib/nessus/plugins/redhat-RHSA-2002-259.nasl +lib/nessus/plugins/redhat-RHSA-2002-261.nasl +lib/nessus/plugins/redhat-RHSA-2002-263.nasl +lib/nessus/plugins/redhat-RHSA-2002-271.nasl +lib/nessus/plugins/redhat-RHSA-2002-287.nasl +lib/nessus/plugins/redhat-RHSA-2002-289.nasl +lib/nessus/plugins/redhat-RHSA-2002-291.nasl +lib/nessus/plugins/redhat-RHSA-2002-294.nasl +lib/nessus/plugins/redhat-RHSA-2002-301.nasl +lib/nessus/plugins/redhat-RHSA-2002-302.nasl +lib/nessus/plugins/redhat-RHSA-2002-307.nasl +lib/nessus/plugins/redhat-RHSA-2002-312.nasl +lib/nessus/plugins/redhat-RHSA-2003-003.nasl +lib/nessus/plugins/redhat-RHSA-2003-007.nasl +lib/nessus/plugins/redhat-RHSA-2003-008.nasl +lib/nessus/plugins/redhat-RHSA-2003-009.nasl +lib/nessus/plugins/redhat-RHSA-2003-013.nasl +lib/nessus/plugins/redhat-RHSA-2003-016.nasl +lib/nessus/plugins/redhat-RHSA-2003-021.nasl +lib/nessus/plugins/redhat-RHSA-2003-022.nasl +lib/nessus/plugins/redhat-RHSA-2003-027.nasl +lib/nessus/plugins/redhat-RHSA-2003-028.nasl +lib/nessus/plugins/redhat-RHSA-2003-030.nasl +lib/nessus/plugins/redhat-RHSA-2003-033.nasl +lib/nessus/plugins/redhat-RHSA-2003-038.nasl +lib/nessus/plugins/redhat-RHSA-2003-045.nasl +lib/nessus/plugins/redhat-RHSA-2003-046.nasl +lib/nessus/plugins/redhat-RHSA-2003-048.nasl +lib/nessus/plugins/redhat-RHSA-2003-050.nasl +lib/nessus/plugins/redhat-RHSA-2003-052.nasl +lib/nessus/plugins/redhat-RHSA-2003-055.nasl +lib/nessus/plugins/redhat-RHSA-2003-058.nasl +lib/nessus/plugins/redhat-RHSA-2003-061.nasl +lib/nessus/plugins/redhat-RHSA-2003-063.nasl +lib/nessus/plugins/redhat-RHSA-2003-065.nasl +lib/nessus/plugins/redhat-RHSA-2003-068.nasl +lib/nessus/plugins/redhat-RHSA-2003-071.nasl +lib/nessus/plugins/redhat-RHSA-2003-074.nasl +lib/nessus/plugins/redhat-RHSA-2003-077.nasl +lib/nessus/plugins/redhat-RHSA-2003-081.nasl +lib/nessus/plugins/redhat-RHSA-2003-085.nasl +lib/nessus/plugins/redhat-RHSA-2003-087.nasl +lib/nessus/plugins/redhat-RHSA-2003-090.nasl +lib/nessus/plugins/redhat-RHSA-2003-094.nasl +lib/nessus/plugins/redhat-RHSA-2003-096.nasl +lib/nessus/plugins/redhat-RHSA-2003-102.nasl +lib/nessus/plugins/redhat-RHSA-2003-103.nasl +lib/nessus/plugins/redhat-RHSA-2003-111.nasl +lib/nessus/plugins/redhat-RHSA-2003-114.nasl +lib/nessus/plugins/redhat-RHSA-2003-119.nasl +lib/nessus/plugins/redhat-RHSA-2003-121.nasl +lib/nessus/plugins/redhat-RHSA-2003-134.nasl +lib/nessus/plugins/redhat-RHSA-2003-138.nasl +lib/nessus/plugins/redhat-RHSA-2003-145.nasl +lib/nessus/plugins/redhat-RHSA-2003-146.nasl +lib/nessus/plugins/redhat-RHSA-2003-147.nasl +lib/nessus/plugins/redhat-RHSA-2003-150.nasl +lib/nessus/plugins/redhat-RHSA-2003-151.nasl +lib/nessus/plugins/redhat-RHSA-2003-161.nasl +lib/nessus/plugins/redhat-RHSA-2003-163.nasl +lib/nessus/plugins/redhat-RHSA-2003-167.nasl +lib/nessus/plugins/redhat-RHSA-2003-176.nasl +lib/nessus/plugins/redhat-RHSA-2003-177.nasl +lib/nessus/plugins/redhat-RHSA-2003-180.nasl +lib/nessus/plugins/redhat-RHSA-2003-182.nasl +lib/nessus/plugins/redhat-RHSA-2003-193.nasl +lib/nessus/plugins/redhat-RHSA-2003-195.nasl +lib/nessus/plugins/redhat-RHSA-2003-197.nasl +lib/nessus/plugins/redhat-RHSA-2003-200.nasl +lib/nessus/plugins/redhat-RHSA-2003-201.nasl +lib/nessus/plugins/redhat-RHSA-2003-207.nasl +lib/nessus/plugins/redhat-RHSA-2003-223.nasl +lib/nessus/plugins/redhat-RHSA-2003-224.nasl +lib/nessus/plugins/redhat-RHSA-2003-231.nasl +lib/nessus/plugins/redhat-RHSA-2003-236.nasl +lib/nessus/plugins/redhat-RHSA-2003-239.nasl +lib/nessus/plugins/redhat-RHSA-2003-242.nasl +lib/nessus/plugins/redhat-RHSA-2003-244.nasl +lib/nessus/plugins/redhat-RHSA-2003-246.nasl +lib/nessus/plugins/redhat-RHSA-2003-249.nasl +lib/nessus/plugins/redhat-RHSA-2003-257.nasl +lib/nessus/plugins/redhat-RHSA-2003-259.nasl +lib/nessus/plugins/redhat-RHSA-2003-262.nasl +lib/nessus/plugins/redhat-RHSA-2003-268.nasl +lib/nessus/plugins/redhat-RHSA-2003-270.nasl +lib/nessus/plugins/redhat-RHSA-2003-274.nasl +lib/nessus/plugins/redhat-RHSA-2003-280.nasl +lib/nessus/plugins/redhat-RHSA-2003-284.nasl +lib/nessus/plugins/redhat-RHSA-2003-285.nasl +lib/nessus/plugins/redhat-RHSA-2003-289.nasl +lib/nessus/plugins/redhat-RHSA-2003-293.nasl +lib/nessus/plugins/redhat-RHSA-2003-297.nasl +lib/nessus/plugins/redhat-RHSA-2003-305.nasl +lib/nessus/plugins/redhat-RHSA-2003-310.nasl +lib/nessus/plugins/redhat-RHSA-2003-312.nasl +lib/nessus/plugins/redhat-RHSA-2003-314.nasl +lib/nessus/plugins/redhat-RHSA-2003-315.nasl +lib/nessus/plugins/redhat-RHSA-2003-317.nasl +lib/nessus/plugins/redhat-RHSA-2003-324.nasl +lib/nessus/plugins/redhat-RHSA-2003-334.nasl +lib/nessus/plugins/redhat-RHSA-2003-360.nasl +lib/nessus/plugins/redhat-RHSA-2003-372.nasl +lib/nessus/plugins/redhat-RHSA-2003-386.nasl +lib/nessus/plugins/redhat-RHSA-2003-389.nasl +lib/nessus/plugins/redhat-RHSA-2003-395.nasl +lib/nessus/plugins/redhat-RHSA-2003-399.nasl +lib/nessus/plugins/redhat-RHSA-2003-404.nasl +lib/nessus/plugins/redhat-RHSA-2003-408.nasl +lib/nessus/plugins/redhat-RHSA-2003-416.nasl +lib/nessus/plugins/redhat-RHSA-2003-419.nasl +lib/nessus/plugins/redhat-RHSA-2004-002.nasl +lib/nessus/plugins/redhat-RHSA-2004-004.nasl +lib/nessus/plugins/redhat-RHSA-2004-005.nasl +lib/nessus/plugins/redhat-RHSA-2004-008.nasl +lib/nessus/plugins/redhat-RHSA-2004-009.nasl +lib/nessus/plugins/redhat-RHSA-2004-015.nasl +lib/nessus/plugins/redhat-RHSA-2004-017.nasl +lib/nessus/plugins/redhat-RHSA-2004-019.nasl +lib/nessus/plugins/redhat-RHSA-2004-023.nasl +lib/nessus/plugins/redhat-RHSA-2004-031.nasl +lib/nessus/plugins/redhat-RHSA-2004-033.nasl +lib/nessus/plugins/redhat-RHSA-2004-035.nasl +lib/nessus/plugins/redhat-RHSA-2004-041.nasl +lib/nessus/plugins/redhat-RHSA-2004-044.nasl +lib/nessus/plugins/redhat-RHSA-2004-045.nasl +lib/nessus/plugins/redhat-RHSA-2004-047.nasl +lib/nessus/plugins/redhat-RHSA-2004-050.nasl +lib/nessus/plugins/redhat-RHSA-2004-053.nasl +lib/nessus/plugins/redhat-RHSA-2004-056.nasl +lib/nessus/plugins/redhat-RHSA-2004-058.nasl +lib/nessus/plugins/redhat-RHSA-2004-060.nasl +lib/nessus/plugins/redhat-RHSA-2004-061.nasl +lib/nessus/plugins/redhat-RHSA-2004-064.nasl +lib/nessus/plugins/redhat-RHSA-2004-066.nasl +lib/nessus/plugins/redhat-RHSA-2004-069.nasl +lib/nessus/plugins/redhat-RHSA-2004-072.nasl +lib/nessus/plugins/redhat-RHSA-2004-073.nasl +lib/nessus/plugins/redhat-RHSA-2004-074.nasl +lib/nessus/plugins/redhat-RHSA-2004-084.nasl +lib/nessus/plugins/redhat-RHSA-2004-090.nasl +lib/nessus/plugins/redhat-RHSA-2004-096.nasl +lib/nessus/plugins/redhat-RHSA-2004-103.nasl +lib/nessus/plugins/redhat-RHSA-2004-105.nasl +lib/nessus/plugins/redhat-RHSA-2004-110.nasl +lib/nessus/plugins/redhat-RHSA-2004-119.nasl +lib/nessus/plugins/redhat-RHSA-2004-120.nasl +lib/nessus/plugins/redhat-RHSA-2004-133.nasl +lib/nessus/plugins/redhat-RHSA-2004-136.nasl +lib/nessus/plugins/redhat-RHSA-2004-152.nasl +lib/nessus/plugins/redhat-RHSA-2004-153.nasl +lib/nessus/plugins/redhat-RHSA-2004-156.nasl +lib/nessus/plugins/redhat-RHSA-2004-157.nasl +lib/nessus/plugins/redhat-RHSA-2004-160.nasl +lib/nessus/plugins/redhat-RHSA-2004-165.nasl +lib/nessus/plugins/redhat-RHSA-2004-172.nasl +lib/nessus/plugins/redhat-RHSA-2004-174.nasl +lib/nessus/plugins/redhat-RHSA-2004-178.nasl +lib/nessus/plugins/redhat-RHSA-2004-180.nasl +lib/nessus/plugins/redhat-RHSA-2004-183.nasl +lib/nessus/plugins/redhat-RHSA-2004-188.nasl +lib/nessus/plugins/redhat-RHSA-2004-190.nasl +lib/nessus/plugins/redhat-RHSA-2004-191.nasl +lib/nessus/plugins/redhat-RHSA-2004-192.nasl +lib/nessus/plugins/redhat-RHSA-2004-219.nasl +lib/nessus/plugins/redhat-RHSA-2004-222.nasl +lib/nessus/plugins/redhat-RHSA-2004-233.nasl +lib/nessus/plugins/redhat-RHSA-2004-234.nasl +lib/nessus/plugins/redhat-RHSA-2004-236.nasl +lib/nessus/plugins/redhat-RHSA-2004-240.nasl +lib/nessus/plugins/redhat-RHSA-2004-242.nasl +lib/nessus/plugins/redhat-RHSA-2004-244.nasl +lib/nessus/plugins/redhat-RHSA-2004-245.nasl +lib/nessus/plugins/redhat-RHSA-2004-249.nasl +lib/nessus/plugins/redhat-RHSA-2004-255.nasl +lib/nessus/plugins/redhat-RHSA-2004-260.nasl +lib/nessus/plugins/redhat-RHSA-2004-342.nasl +lib/nessus/plugins/redhat-RHSA-2004-354.nasl +lib/nessus/plugins/redhat-RHSA-2004-360.nasl +lib/nessus/plugins/redhat-RHSA-2004-392.nasl +lib/nessus/plugins/redhat-RHSA-2004-395.nasl +lib/nessus/plugins/redhat_fixes.nasl lib/nessus/plugins/relative_field_vulnerability.nasl lib/nessus/plugins/remote_pc_detect.nasl lib/nessus/plugins/remwatch.nasl lib/nessus/plugins/resin_path_disclosure.nasl lib/nessus/plugins/resin_server_status.nasl lib/nessus/plugins/resin_traversal.nasl +lib/nessus/plugins/reviewpost_sql.nasl lib/nessus/plugins/rexecd.nasl lib/nessus/plugins/rfparalyze.nasl lib/nessus/plugins/rfpoison.nasl @@ -1304,9 +1802,11 @@ lib/nessus/plugins/rich_media_ecommerce_stores_sensitive_information_insecurely.nasl lib/nessus/plugins/rip_detect.nasl lib/nessus/plugins/rip_poison.nasl +lib/nessus/plugins/ris_detect.nasl lib/nessus/plugins/rlogin.nasl lib/nessus/plugins/rlogin_froot.nasl lib/nessus/plugins/roads_cgi.nasl +lib/nessus/plugins/robotftp.nasl lib/nessus/plugins/rockliffe_mailsite_overflow.nasl lib/nessus/plugins/rot13sj.nasl lib/nessus/plugins/rover_pop3_overflow.nasl @@ -1356,6 +1856,7 @@ lib/nessus/plugins/rpc_ypupated.nasl lib/nessus/plugins/rpc_ypxfrd.nasl lib/nessus/plugins/rpcinfo.nasl +lib/nessus/plugins/rpm.inc lib/nessus/plugins/rpm_query.nasl lib/nessus/plugins/rsh.nasl lib/nessus/plugins/rsh_null.nasl @@ -1363,6 +1864,7 @@ lib/nessus/plugins/rsync_array_overflow.nasl lib/nessus/plugins/rsync_heap_overflow.nasl lib/nessus/plugins/rsync_modules.nasl +lib/nessus/plugins/rsync_path_traversal.nasl lib/nessus/plugins/rtsp_detect.nasl lib/nessus/plugins/rusers_output.nasl lib/nessus/plugins/rwalld_format_string.nasl @@ -1387,7 +1889,12 @@ lib/nessus/plugins/sambar_sendmail.nasl lib/nessus/plugins/sambar_sysadmin.nasl lib/nessus/plugins/sambar_xss.nasl +lib/nessus/plugins/sami_ftp.nasl +lib/nessus/plugins/samihttp_1_0_4.nasl +lib/nessus/plugins/sandsurfer_user_auth.nasl +lib/nessus/plugins/sandsurfer_xss.nasl lib/nessus/plugins/sapdb_detect.nasl +lib/nessus/plugins/sasser_virus.nasl lib/nessus/plugins/savant_cgi_download.nasl lib/nessus/plugins/savant_cgitest.nasl lib/nessus/plugins/savant_content_length_DoS.nasl @@ -1444,6 +1951,7 @@ lib/nessus/plugins/shells.nasl lib/nessus/plugins/shiva_default_pass.nasl lib/nessus/plugins/shlwapi_dll_dos.nasl +lib/nessus/plugins/shopcartcgi_traversal.nasl lib/nessus/plugins/shopping_cart_information_disclosure.nasl lib/nessus/plugins/shopplus_information_disclosure.nasl lib/nessus/plugins/shopsearch_sql_injection.nasl @@ -1451,12 +1959,14 @@ lib/nessus/plugins/shoutcast_log_xss.nasl lib/nessus/plugins/shoutcast_version.nasl lib/nessus/plugins/showmount.nasl +lib/nessus/plugins/showphoto_sql_injection.nasl lib/nessus/plugins/shttp_detect.nasl lib/nessus/plugins/silverstream_database.nasl lib/nessus/plugins/silverstream_dirlisting.nasl lib/nessus/plugins/simple_chat_user_disclosure.nasl lib/nessus/plugins/simpleserverwww_dos.nasl lib/nessus/plugins/simplewww.nasl +lib/nessus/plugins/singapore_file_disclosure.nasl lib/nessus/plugins/sip_detection.nasl lib/nessus/plugins/sip_status_server.nasl lib/nessus/plugins/siteUserMod.nasl @@ -1471,6 +1981,7 @@ lib/nessus/plugins/slmail_webmail_flaws.nasl lib/nessus/plugins/smad.nes lib/nessus/plugins/small_ftp_traversal.nasl +lib/nessus/plugins/smallftpd_1_0_3.nasl lib/nessus/plugins/smartftp_overflow.nasl lib/nessus/plugins/smartserver_pop_overflow.nasl lib/nessus/plugins/smb2www_cmd_exec.nasl @@ -1482,6 +1993,7 @@ lib/nessus/plugins/smb_dom2sid.nasl lib/nessus/plugins/smb_enum_services.nasl lib/nessus/plugins/smb_enum_shares.nasl +lib/nessus/plugins/smb_file_funcs.inc lib/nessus/plugins/smb_group_account_op.nasl lib/nessus/plugins/smb_group_admin.nasl lib/nessus/plugins/smb_group_backup_op.nasl @@ -1491,6 +2003,7 @@ lib/nessus/plugins/smb_group_system_op.nasl lib/nessus/plugins/smb_groups_guest.nasl lib/nessus/plugins/smb_host2sid.nasl +lib/nessus/plugins/smb_kb835732.nasl lib/nessus/plugins/smb_lanman_browse_list.nasl lib/nessus/plugins/smb_localusers_autodisabled.nasl lib/nessus/plugins/smb_localusers_changepw.nasl @@ -1510,6 +2023,7 @@ lib/nessus/plugins/smb_netusergetinfo.nasl lib/nessus/plugins/smb_netusergetinfo_local.nasl lib/nessus/plugins/smb_nt.inc +lib/nessus/plugins/smb_nt_kb870669.nasl lib/nessus/plugins/smb_nt_ms00-029.nasl lib/nessus/plugins/smb_nt_ms00-035.nasl lib/nessus/plugins/smb_nt_ms00-036.nasl @@ -1597,6 +2111,24 @@ lib/nessus/plugins/smb_nt_ms04-001.nasl lib/nessus/plugins/smb_nt_ms04-002.nasl lib/nessus/plugins/smb_nt_ms04-003.nasl +lib/nessus/plugins/smb_nt_ms04-006.nasl +lib/nessus/plugins/smb_nt_ms04-007.nasl +lib/nessus/plugins/smb_nt_ms04-008.nasl +lib/nessus/plugins/smb_nt_ms04-009.nasl +lib/nessus/plugins/smb_nt_ms04-010.nasl +lib/nessus/plugins/smb_nt_ms04-011.nasl +lib/nessus/plugins/smb_nt_ms04-012.nasl +lib/nessus/plugins/smb_nt_ms04-013.nasl +lib/nessus/plugins/smb_nt_ms04-014.nasl +lib/nessus/plugins/smb_nt_ms04-015.nasl +lib/nessus/plugins/smb_nt_ms04-016.nasl +lib/nessus/plugins/smb_nt_ms04-018.nasl +lib/nessus/plugins/smb_nt_ms04-019.nasl +lib/nessus/plugins/smb_nt_ms04-020.nasl +lib/nessus/plugins/smb_nt_ms04-021.nasl +lib/nessus/plugins/smb_nt_ms04-022.nasl +lib/nessus/plugins/smb_nt_ms04-023.nasl +lib/nessus/plugins/smb_nt_ms04-024.nasl lib/nessus/plugins/smb_null_params_dos.nasl lib/nessus/plugins/smb_reg_MTS_access.nasl lib/nessus/plugins/smb_reg_autologon.nasl @@ -1616,6 +2148,7 @@ lib/nessus/plugins/smb_reg_sfcdisable.nasl lib/nessus/plugins/smb_reg_snmp_access.nasl lib/nessus/plugins/smb_reg_trojan_paths.nasl +lib/nessus/plugins/smb_reg_windowsautoupdate.nasl lib/nessus/plugins/smb_reg_winlogon_permissions.nasl lib/nessus/plugins/smb_reg_winvnc_perms.nasl lib/nessus/plugins/smb_registry_access.nasl @@ -1634,6 +2167,7 @@ lib/nessus/plugins/smb_users_pwexpiry.nasl lib/nessus/plugins/smb_virii.nasl lib/nessus/plugins/smb_xp_ms01-059.nasl +lib/nessus/plugins/smc2804wbr_default_password.nasl lib/nessus/plugins/smc_www_dos.nasl lib/nessus/plugins/smtp_AV_42zip_DoS.nasl lib/nessus/plugins/smtp_bounce.nasl @@ -1677,15 +2211,1007 @@ lib/nessus/plugins/socks4_username_overflow.nasl lib/nessus/plugins/socks4a_hostname_overflow.nasl lib/nessus/plugins/sojourn.nasl +lib/nessus/plugins/solaris.inc +lib/nessus/plugins/solaris251_103558.nasl +lib/nessus/plugins/solaris251_103566.nasl +lib/nessus/plugins/solaris251_103582.nasl +lib/nessus/plugins/solaris251_103594.nasl +lib/nessus/plugins/solaris251_103603.nasl +lib/nessus/plugins/solaris251_103627.nasl +lib/nessus/plugins/solaris251_103630.nasl +lib/nessus/plugins/solaris251_103640.nasl +lib/nessus/plugins/solaris251_103663.nasl +lib/nessus/plugins/solaris251_103670.nasl +lib/nessus/plugins/solaris251_103680.nasl +lib/nessus/plugins/solaris251_103686.nasl +lib/nessus/plugins/solaris251_103690.nasl +lib/nessus/plugins/solaris251_103699.nasl +lib/nessus/plugins/solaris251_103738.nasl +lib/nessus/plugins/solaris251_103743.nasl +lib/nessus/plugins/solaris251_103817.nasl +lib/nessus/plugins/solaris251_103866.nasl +lib/nessus/plugins/solaris251_103867.nasl +lib/nessus/plugins/solaris251_103879.nasl +lib/nessus/plugins/solaris251_103882.nasl +lib/nessus/plugins/solaris251_103891.nasl +lib/nessus/plugins/solaris251_103901.nasl +lib/nessus/plugins/solaris251_103959.nasl +lib/nessus/plugins/solaris251_103995.nasl +lib/nessus/plugins/solaris251_104010.nasl +lib/nessus/plugins/solaris251_104093.nasl +lib/nessus/plugins/solaris251_104166.nasl +lib/nessus/plugins/solaris251_104178.nasl +lib/nessus/plugins/solaris251_104212.nasl +lib/nessus/plugins/solaris251_104220.nasl +lib/nessus/plugins/solaris251_104266.nasl +lib/nessus/plugins/solaris251_104283.nasl +lib/nessus/plugins/solaris251_104331.nasl +lib/nessus/plugins/solaris251_104334.nasl +lib/nessus/plugins/solaris251_104338.nasl +lib/nessus/plugins/solaris251_104471.nasl +lib/nessus/plugins/solaris251_104489.nasl +lib/nessus/plugins/solaris251_104498.nasl +lib/nessus/plugins/solaris251_104516.nasl +lib/nessus/plugins/solaris251_104533.nasl +lib/nessus/plugins/solaris251_104552.nasl +lib/nessus/plugins/solaris251_104578.nasl +lib/nessus/plugins/solaris251_104613.nasl +lib/nessus/plugins/solaris251_104637.nasl +lib/nessus/plugins/solaris251_104650.nasl +lib/nessus/plugins/solaris251_104654.nasl +lib/nessus/plugins/solaris251_104661.nasl +lib/nessus/plugins/solaris251_104692.nasl +lib/nessus/plugins/solaris251_104736.nasl +lib/nessus/plugins/solaris251_104776.nasl +lib/nessus/plugins/solaris251_104795.nasl +lib/nessus/plugins/solaris251_104818.nasl +lib/nessus/plugins/solaris251_104841.nasl +lib/nessus/plugins/solaris251_104849.nasl +lib/nessus/plugins/solaris251_104873.nasl +lib/nessus/plugins/solaris251_104893.nasl +lib/nessus/plugins/solaris251_104935.nasl +lib/nessus/plugins/solaris251_104960.nasl +lib/nessus/plugins/solaris251_104968.nasl +lib/nessus/plugins/solaris251_104976.nasl +lib/nessus/plugins/solaris251_105050.nasl +lib/nessus/plugins/solaris251_105076.nasl +lib/nessus/plugins/solaris251_105092.nasl +lib/nessus/plugins/solaris251_105133.nasl +lib/nessus/plugins/solaris251_105165.nasl +lib/nessus/plugins/solaris251_105203.nasl +lib/nessus/plugins/solaris251_105251.nasl +lib/nessus/plugins/solaris251_105299.nasl +lib/nessus/plugins/solaris251_105784.nasl +lib/nessus/plugins/solaris251_105962.nasl +lib/nessus/plugins/solaris251_105998.nasl +lib/nessus/plugins/solaris251_106160.nasl +lib/nessus/plugins/solaris251_106224.nasl +lib/nessus/plugins/solaris251_106382.nasl +lib/nessus/plugins/solaris251_106396.nasl +lib/nessus/plugins/solaris251_106411.nasl +lib/nessus/plugins/solaris251_106441.nasl +lib/nessus/plugins/solaris251_106602.nasl +lib/nessus/plugins/solaris251_106662.nasl +lib/nessus/plugins/solaris251_106663.nasl +lib/nessus/plugins/solaris251_106689.nasl +lib/nessus/plugins/solaris251_106905.nasl +lib/nessus/plugins/solaris251_106909.nasl +lib/nessus/plugins/solaris251_107020.nasl +lib/nessus/plugins/solaris251_107756.nasl +lib/nessus/plugins/solaris251_108194.nasl +lib/nessus/plugins/solaris251_108205.nasl +lib/nessus/plugins/solaris251_108289.nasl +lib/nessus/plugins/solaris251_108363.nasl +lib/nessus/plugins/solaris251_108470.nasl +lib/nessus/plugins/solaris251_108497.nasl +lib/nessus/plugins/solaris251_108658.nasl +lib/nessus/plugins/solaris251_108802.nasl +lib/nessus/plugins/solaris251_108928.nasl +lib/nessus/plugins/solaris251_109275.nasl +lib/nessus/plugins/solaris251_109392.nasl +lib/nessus/plugins/solaris251_109721.nasl +lib/nessus/plugins/solaris251_111025.nasl +lib/nessus/plugins/solaris251_111279.nasl +lib/nessus/plugins/solaris251_111281.nasl +lib/nessus/plugins/solaris251_111499.nasl +lib/nessus/plugins/solaris251_111576.nasl +lib/nessus/plugins/solaris251_111840.nasl +lib/nessus/plugins/solaris251_111916.nasl +lib/nessus/plugins/solaris251_112086.nasl +lib/nessus/plugins/solaris251_112454.nasl +lib/nessus/plugins/solaris251_112770.nasl +lib/nessus/plugins/solaris251_112891.nasl +lib/nessus/plugins/solaris251_x86_103559.nasl +lib/nessus/plugins/solaris251_x86_103581.nasl +lib/nessus/plugins/solaris251_x86_103595.nasl +lib/nessus/plugins/solaris251_x86_103604.nasl +lib/nessus/plugins/solaris251_x86_103628.nasl +lib/nessus/plugins/solaris251_x86_103631.nasl +lib/nessus/plugins/solaris251_x86_103641.nasl +lib/nessus/plugins/solaris251_x86_103664.nasl +lib/nessus/plugins/solaris251_x86_103681.nasl +lib/nessus/plugins/solaris251_x86_103687.nasl +lib/nessus/plugins/solaris251_x86_103691.nasl +lib/nessus/plugins/solaris251_x86_103700.nasl +lib/nessus/plugins/solaris251_x86_103717.nasl +lib/nessus/plugins/solaris251_x86_103739.nasl +lib/nessus/plugins/solaris251_x86_103744.nasl +lib/nessus/plugins/solaris251_x86_103818.nasl +lib/nessus/plugins/solaris251_x86_103868.nasl +lib/nessus/plugins/solaris251_x86_103881.nasl +lib/nessus/plugins/solaris251_x86_103886.nasl +lib/nessus/plugins/solaris251_x86_103892.nasl +lib/nessus/plugins/solaris251_x86_103960.nasl +lib/nessus/plugins/solaris251_x86_103996.nasl +lib/nessus/plugins/solaris251_x86_104011.nasl +lib/nessus/plugins/solaris251_x86_104167.nasl +lib/nessus/plugins/solaris251_x86_104185.nasl +lib/nessus/plugins/solaris251_x86_104221.nasl +lib/nessus/plugins/solaris251_x86_104241.nasl +lib/nessus/plugins/solaris251_x86_104267.nasl +lib/nessus/plugins/solaris251_x86_104284.nasl +lib/nessus/plugins/solaris251_x86_104332.nasl +lib/nessus/plugins/solaris251_x86_104335.nasl +lib/nessus/plugins/solaris251_x86_104472.nasl +lib/nessus/plugins/solaris251_x86_104500.nasl +lib/nessus/plugins/solaris251_x86_104517.nasl +lib/nessus/plugins/solaris251_x86_104554.nasl +lib/nessus/plugins/solaris251_x86_104557.nasl +lib/nessus/plugins/solaris251_x86_104579.nasl +lib/nessus/plugins/solaris251_x86_104614.nasl +lib/nessus/plugins/solaris251_x86_104638.nasl +lib/nessus/plugins/solaris251_x86_104641.nasl +lib/nessus/plugins/solaris251_x86_104651.nasl +lib/nessus/plugins/solaris251_x86_104655.nasl +lib/nessus/plugins/solaris251_x86_104663.nasl +lib/nessus/plugins/solaris251_x86_104693.nasl +lib/nessus/plugins/solaris251_x86_104737.nasl +lib/nessus/plugins/solaris251_x86_104777.nasl +lib/nessus/plugins/solaris251_x86_104819.nasl +lib/nessus/plugins/solaris251_x86_104842.nasl +lib/nessus/plugins/solaris251_x86_104848.nasl +lib/nessus/plugins/solaris251_x86_104874.nasl +lib/nessus/plugins/solaris251_x86_104894.nasl +lib/nessus/plugins/solaris251_x86_104936.nasl +lib/nessus/plugins/solaris251_x86_104961.nasl +lib/nessus/plugins/solaris251_x86_104969.nasl +lib/nessus/plugins/solaris251_x86_105051.nasl +lib/nessus/plugins/solaris251_x86_105093.nasl +lib/nessus/plugins/solaris251_x86_105105.nasl +lib/nessus/plugins/solaris251_x86_105124.nasl +lib/nessus/plugins/solaris251_x86_105127.nasl +lib/nessus/plugins/solaris251_x86_105134.nasl +lib/nessus/plugins/solaris251_x86_105166.nasl +lib/nessus/plugins/solaris251_x86_105207.nasl +lib/nessus/plugins/solaris251_x86_105300.nasl +lib/nessus/plugins/solaris251_x86_105354.nasl +lib/nessus/plugins/solaris251_x86_105496.nasl +lib/nessus/plugins/solaris251_x86_105638.nasl +lib/nessus/plugins/solaris251_x86_105785.nasl +lib/nessus/plugins/solaris251_x86_105963.nasl +lib/nessus/plugins/solaris251_x86_105999.nasl +lib/nessus/plugins/solaris251_x86_106161.nasl +lib/nessus/plugins/solaris251_x86_106225.nasl +lib/nessus/plugins/solaris251_x86_106397.nasl +lib/nessus/plugins/solaris251_x86_106412.nasl +lib/nessus/plugins/solaris251_x86_106442.nasl +lib/nessus/plugins/solaris251_x86_106603.nasl +lib/nessus/plugins/solaris251_x86_106664.nasl +lib/nessus/plugins/solaris251_x86_106665.nasl +lib/nessus/plugins/solaris251_x86_106690.nasl +lib/nessus/plugins/solaris251_x86_106906.nasl +lib/nessus/plugins/solaris251_x86_106910.nasl +lib/nessus/plugins/solaris251_x86_107021.nasl +lib/nessus/plugins/solaris251_x86_107757.nasl +lib/nessus/plugins/solaris251_x86_108196.nasl +lib/nessus/plugins/solaris251_x86_108206.nasl +lib/nessus/plugins/solaris251_x86_108290.nasl +lib/nessus/plugins/solaris251_x86_108364.nasl +lib/nessus/plugins/solaris251_x86_108471.nasl +lib/nessus/plugins/solaris251_x86_108498.nasl +lib/nessus/plugins/solaris251_x86_108659.nasl +lib/nessus/plugins/solaris251_x86_108803.nasl +lib/nessus/plugins/solaris251_x86_108929.nasl +lib/nessus/plugins/solaris251_x86_109276.nasl +lib/nessus/plugins/solaris251_x86_109393.nasl +lib/nessus/plugins/solaris251_x86_109722.nasl +lib/nessus/plugins/solaris251_x86_111026.nasl +lib/nessus/plugins/solaris251_x86_111280.nasl +lib/nessus/plugins/solaris251_x86_111282.nasl +lib/nessus/plugins/solaris251_x86_111518.nasl +lib/nessus/plugins/solaris251_x86_111577.nasl +lib/nessus/plugins/solaris251_x86_111841.nasl +lib/nessus/plugins/solaris251_x86_111917.nasl +lib/nessus/plugins/solaris251_x86_112087.nasl +lib/nessus/plugins/solaris251_x86_112455.nasl +lib/nessus/plugins/solaris251_x86_112892.nasl +lib/nessus/plugins/solaris26_105181.nasl +lib/nessus/plugins/solaris26_105210.nasl +lib/nessus/plugins/solaris26_105216.nasl +lib/nessus/plugins/solaris26_105338.nasl +lib/nessus/plugins/solaris26_105377.nasl +lib/nessus/plugins/solaris26_105379.nasl +lib/nessus/plugins/solaris26_105395.nasl +lib/nessus/plugins/solaris26_105401.nasl +lib/nessus/plugins/solaris26_105405.nasl +lib/nessus/plugins/solaris26_105407.nasl +lib/nessus/plugins/solaris26_105528.nasl +lib/nessus/plugins/solaris26_105529.nasl +lib/nessus/plugins/solaris26_105552.nasl +lib/nessus/plugins/solaris26_105558.nasl +lib/nessus/plugins/solaris26_105562.nasl +lib/nessus/plugins/solaris26_105564.nasl +lib/nessus/plugins/solaris26_105566.nasl +lib/nessus/plugins/solaris26_105615.nasl +lib/nessus/plugins/solaris26_105633.nasl +lib/nessus/plugins/solaris26_105665.nasl +lib/nessus/plugins/solaris26_105667.nasl +lib/nessus/plugins/solaris26_105669.nasl +lib/nessus/plugins/solaris26_105693.nasl +lib/nessus/plugins/solaris26_105703.nasl +lib/nessus/plugins/solaris26_105722.nasl +lib/nessus/plugins/solaris26_105755.nasl +lib/nessus/plugins/solaris26_105780.nasl +lib/nessus/plugins/solaris26_105786.nasl +lib/nessus/plugins/solaris26_105800.nasl +lib/nessus/plugins/solaris26_105802.nasl +lib/nessus/plugins/solaris26_105837.nasl +lib/nessus/plugins/solaris26_105924.nasl +lib/nessus/plugins/solaris26_105990.nasl +lib/nessus/plugins/solaris26_106027.nasl +lib/nessus/plugins/solaris26_106040.nasl +lib/nessus/plugins/solaris26_106049.nasl +lib/nessus/plugins/solaris26_106112.nasl +lib/nessus/plugins/solaris26_106123.nasl +lib/nessus/plugins/solaris26_106125.nasl +lib/nessus/plugins/solaris26_106193.nasl +lib/nessus/plugins/solaris26_106222.nasl +lib/nessus/plugins/solaris26_106235.nasl +lib/nessus/plugins/solaris26_106242.nasl +lib/nessus/plugins/solaris26_106257.nasl +lib/nessus/plugins/solaris26_106292.nasl +lib/nessus/plugins/solaris26_106301.nasl +lib/nessus/plugins/solaris26_106303.nasl +lib/nessus/plugins/solaris26_106331.nasl +lib/nessus/plugins/solaris26_106361.nasl +lib/nessus/plugins/solaris26_106415.nasl +lib/nessus/plugins/solaris26_106437.nasl +lib/nessus/plugins/solaris26_106439.nasl +lib/nessus/plugins/solaris26_106448.nasl +lib/nessus/plugins/solaris26_106468.nasl +lib/nessus/plugins/solaris26_106522.nasl +lib/nessus/plugins/solaris26_106569.nasl +lib/nessus/plugins/solaris26_106592.nasl +lib/nessus/plugins/solaris26_106625.nasl +lib/nessus/plugins/solaris26_106629.nasl +lib/nessus/plugins/solaris26_106639.nasl +lib/nessus/plugins/solaris26_106648.nasl +lib/nessus/plugins/solaris26_106649.nasl +lib/nessus/plugins/solaris26_106650.nasl +lib/nessus/plugins/solaris26_106834.nasl +lib/nessus/plugins/solaris26_107298.nasl +lib/nessus/plugins/solaris26_107326.nasl +lib/nessus/plugins/solaris26_107336.nasl +lib/nessus/plugins/solaris26_107565.nasl +lib/nessus/plugins/solaris26_107618.nasl +lib/nessus/plugins/solaris26_107733.nasl +lib/nessus/plugins/solaris26_107758.nasl +lib/nessus/plugins/solaris26_107766.nasl +lib/nessus/plugins/solaris26_107774.nasl +lib/nessus/plugins/solaris26_107991.nasl +lib/nessus/plugins/solaris26_108129.nasl +lib/nessus/plugins/solaris26_108199.nasl +lib/nessus/plugins/solaris26_108201.nasl +lib/nessus/plugins/solaris26_108307.nasl +lib/nessus/plugins/solaris26_108333.nasl +lib/nessus/plugins/solaris26_108346.nasl +lib/nessus/plugins/solaris26_108388.nasl +lib/nessus/plugins/solaris26_108468.nasl +lib/nessus/plugins/solaris26_108492.nasl +lib/nessus/plugins/solaris26_108499.nasl +lib/nessus/plugins/solaris26_108660.nasl +lib/nessus/plugins/solaris26_108804.nasl +lib/nessus/plugins/solaris26_108890.nasl +lib/nessus/plugins/solaris26_108893.nasl +lib/nessus/plugins/solaris26_108895.nasl +lib/nessus/plugins/solaris26_109100.nasl +lib/nessus/plugins/solaris26_109266.nasl +lib/nessus/plugins/solaris26_109339.nasl +lib/nessus/plugins/solaris26_109388.nasl +lib/nessus/plugins/solaris26_109719.nasl +lib/nessus/plugins/solaris26_110128.nasl +lib/nessus/plugins/solaris26_110883.nasl +lib/nessus/plugins/solaris26_110990.nasl +lib/nessus/plugins/solaris26_111039.nasl +lib/nessus/plugins/solaris26_111236.nasl +lib/nessus/plugins/solaris26_111240.nasl +lib/nessus/plugins/solaris26_111560.nasl +lib/nessus/plugins/solaris26_111645.nasl +lib/nessus/plugins/solaris26_111859.nasl +lib/nessus/plugins/solaris26_111973.nasl +lib/nessus/plugins/solaris26_112073.nasl +lib/nessus/plugins/solaris26_112456.nasl +lib/nessus/plugins/solaris26_112765.nasl +lib/nessus/plugins/solaris26_112814.nasl +lib/nessus/plugins/solaris26_112893.nasl +lib/nessus/plugins/solaris26_113754.nasl +lib/nessus/plugins/solaris26_114889.nasl +lib/nessus/plugins/solaris26_114941.nasl +lib/nessus/plugins/solaris26_115563.nasl +lib/nessus/plugins/solaris26_x86_105182.nasl +lib/nessus/plugins/solaris26_x86_105211.nasl +lib/nessus/plugins/solaris26_x86_105217.nasl +lib/nessus/plugins/solaris26_x86_105339.nasl +lib/nessus/plugins/solaris26_x86_105380.nasl +lib/nessus/plugins/solaris26_x86_105396.nasl +lib/nessus/plugins/solaris26_x86_105402.nasl +lib/nessus/plugins/solaris26_x86_105406.nasl +lib/nessus/plugins/solaris26_x86_105408.nasl +lib/nessus/plugins/solaris26_x86_105530.nasl +lib/nessus/plugins/solaris26_x86_105553.nasl +lib/nessus/plugins/solaris26_x86_105559.nasl +lib/nessus/plugins/solaris26_x86_105563.nasl +lib/nessus/plugins/solaris26_x86_105565.nasl +lib/nessus/plugins/solaris26_x86_105567.nasl +lib/nessus/plugins/solaris26_x86_105601.nasl +lib/nessus/plugins/solaris26_x86_105616.nasl +lib/nessus/plugins/solaris26_x86_105617.nasl +lib/nessus/plugins/solaris26_x86_105639.nasl +lib/nessus/plugins/solaris26_x86_105666.nasl +lib/nessus/plugins/solaris26_x86_105668.nasl +lib/nessus/plugins/solaris26_x86_105670.nasl +lib/nessus/plugins/solaris26_x86_105694.nasl +lib/nessus/plugins/solaris26_x86_105704.nasl +lib/nessus/plugins/solaris26_x86_105723.nasl +lib/nessus/plugins/solaris26_x86_105756.nasl +lib/nessus/plugins/solaris26_x86_105781.nasl +lib/nessus/plugins/solaris26_x86_105787.nasl +lib/nessus/plugins/solaris26_x86_105801.nasl +lib/nessus/plugins/solaris26_x86_105803.nasl +lib/nessus/plugins/solaris26_x86_105838.nasl +lib/nessus/plugins/solaris26_x86_105991.nasl +lib/nessus/plugins/solaris26_x86_106028.nasl +lib/nessus/plugins/solaris26_x86_106041.nasl +lib/nessus/plugins/solaris26_x86_106050.nasl +lib/nessus/plugins/solaris26_x86_106113.nasl +lib/nessus/plugins/solaris26_x86_106124.nasl +lib/nessus/plugins/solaris26_x86_106126.nasl +lib/nessus/plugins/solaris26_x86_106194.nasl +lib/nessus/plugins/solaris26_x86_106223.nasl +lib/nessus/plugins/solaris26_x86_106236.nasl +lib/nessus/plugins/solaris26_x86_106243.nasl +lib/nessus/plugins/solaris26_x86_106248.nasl +lib/nessus/plugins/solaris26_x86_106258.nasl +lib/nessus/plugins/solaris26_x86_106293.nasl +lib/nessus/plugins/solaris26_x86_106302.nasl +lib/nessus/plugins/solaris26_x86_106304.nasl +lib/nessus/plugins/solaris26_x86_106353.nasl +lib/nessus/plugins/solaris26_x86_106362.nasl +lib/nessus/plugins/solaris26_x86_106416.nasl +lib/nessus/plugins/solaris26_x86_106438.nasl +lib/nessus/plugins/solaris26_x86_106440.nasl +lib/nessus/plugins/solaris26_x86_106449.nasl +lib/nessus/plugins/solaris26_x86_106469.nasl +lib/nessus/plugins/solaris26_x86_106523.nasl +lib/nessus/plugins/solaris26_x86_106570.nasl +lib/nessus/plugins/solaris26_x86_106593.nasl +lib/nessus/plugins/solaris26_x86_106626.nasl +lib/nessus/plugins/solaris26_x86_106640.nasl +lib/nessus/plugins/solaris26_x86_106657.nasl +lib/nessus/plugins/solaris26_x86_106658.nasl +lib/nessus/plugins/solaris26_x86_106659.nasl +lib/nessus/plugins/solaris26_x86_106835.nasl +lib/nessus/plugins/solaris26_x86_107299.nasl +lib/nessus/plugins/solaris26_x86_107327.nasl +lib/nessus/plugins/solaris26_x86_107338.nasl +lib/nessus/plugins/solaris26_x86_107566.nasl +lib/nessus/plugins/solaris26_x86_107619.nasl +lib/nessus/plugins/solaris26_x86_107734.nasl +lib/nessus/plugins/solaris26_x86_107759.nasl +lib/nessus/plugins/solaris26_x86_107767.nasl +lib/nessus/plugins/solaris26_x86_107775.nasl +lib/nessus/plugins/solaris26_x86_107992.nasl +lib/nessus/plugins/solaris26_x86_108130.nasl +lib/nessus/plugins/solaris26_x86_108200.nasl +lib/nessus/plugins/solaris26_x86_108202.nasl +lib/nessus/plugins/solaris26_x86_108308.nasl +lib/nessus/plugins/solaris26_x86_108334.nasl +lib/nessus/plugins/solaris26_x86_108389.nasl +lib/nessus/plugins/solaris26_x86_108469.nasl +lib/nessus/plugins/solaris26_x86_108493.nasl +lib/nessus/plugins/solaris26_x86_108500.nasl +lib/nessus/plugins/solaris26_x86_108661.nasl +lib/nessus/plugins/solaris26_x86_108805.nasl +lib/nessus/plugins/solaris26_x86_108891.nasl +lib/nessus/plugins/solaris26_x86_108894.nasl +lib/nessus/plugins/solaris26_x86_108896.nasl +lib/nessus/plugins/solaris26_x86_109101.nasl +lib/nessus/plugins/solaris26_x86_109267.nasl +lib/nessus/plugins/solaris26_x86_109340.nasl +lib/nessus/plugins/solaris26_x86_109389.nasl +lib/nessus/plugins/solaris26_x86_109720.nasl +lib/nessus/plugins/solaris26_x86_110884.nasl +lib/nessus/plugins/solaris26_x86_110991.nasl +lib/nessus/plugins/solaris26_x86_111040.nasl +lib/nessus/plugins/solaris26_x86_111237.nasl +lib/nessus/plugins/solaris26_x86_111241.nasl +lib/nessus/plugins/solaris26_x86_111561.nasl +lib/nessus/plugins/solaris26_x86_111860.nasl +lib/nessus/plugins/solaris26_x86_111974.nasl +lib/nessus/plugins/solaris26_x86_112074.nasl +lib/nessus/plugins/solaris26_x86_112457.nasl +lib/nessus/plugins/solaris26_x86_112766.nasl +lib/nessus/plugins/solaris26_x86_112815.nasl +lib/nessus/plugins/solaris26_x86_112894.nasl +lib/nessus/plugins/solaris26_x86_113755.nasl +lib/nessus/plugins/solaris26_x86_114890.nasl +lib/nessus/plugins/solaris26_x86_114942.nasl +lib/nessus/plugins/solaris26_x86_115428.nasl +lib/nessus/plugins/solaris26_x86_115564.nasl +lib/nessus/plugins/solaris7_106541.nasl +lib/nessus/plugins/solaris7_106725.nasl +lib/nessus/plugins/solaris7_106793.nasl +lib/nessus/plugins/solaris7_106934.nasl +lib/nessus/plugins/solaris7_106938.nasl +lib/nessus/plugins/solaris7_106942.nasl +lib/nessus/plugins/solaris7_106944.nasl +lib/nessus/plugins/solaris7_106949.nasl +lib/nessus/plugins/solaris7_106950.nasl +lib/nessus/plugins/solaris7_106952.nasl +lib/nessus/plugins/solaris7_106978.nasl +lib/nessus/plugins/solaris7_107022.nasl +lib/nessus/plugins/solaris7_107038.nasl +lib/nessus/plugins/solaris7_107058.nasl +lib/nessus/plugins/solaris7_107115.nasl +lib/nessus/plugins/solaris7_107171.nasl +lib/nessus/plugins/solaris7_107178.nasl +lib/nessus/plugins/solaris7_107180.nasl +lib/nessus/plugins/solaris7_107200.nasl +lib/nessus/plugins/solaris7_107259.nasl +lib/nessus/plugins/solaris7_107285.nasl +lib/nessus/plugins/solaris7_107337.nasl +lib/nessus/plugins/solaris7_107374.nasl +lib/nessus/plugins/solaris7_107403.nasl +lib/nessus/plugins/solaris7_107441.nasl +lib/nessus/plugins/solaris7_107443.nasl +lib/nessus/plugins/solaris7_107451.nasl +lib/nessus/plugins/solaris7_107454.nasl +lib/nessus/plugins/solaris7_107456.nasl +lib/nessus/plugins/solaris7_107475.nasl +lib/nessus/plugins/solaris7_107477.nasl +lib/nessus/plugins/solaris7_107589.nasl +lib/nessus/plugins/solaris7_107636.nasl +lib/nessus/plugins/solaris7_107650.nasl +lib/nessus/plugins/solaris7_107654.nasl +lib/nessus/plugins/solaris7_107684.nasl +lib/nessus/plugins/solaris7_107702.nasl +lib/nessus/plugins/solaris7_107709.nasl +lib/nessus/plugins/solaris7_107716.nasl +lib/nessus/plugins/solaris7_107792.nasl +lib/nessus/plugins/solaris7_107794.nasl +lib/nessus/plugins/solaris7_107885.nasl +lib/nessus/plugins/solaris7_107887.nasl +lib/nessus/plugins/solaris7_107893.nasl +lib/nessus/plugins/solaris7_107972.nasl +lib/nessus/plugins/solaris7_108117.nasl +lib/nessus/plugins/solaris7_108162.nasl +lib/nessus/plugins/solaris7_108219.nasl +lib/nessus/plugins/solaris7_108221.nasl +lib/nessus/plugins/solaris7_108263.nasl +lib/nessus/plugins/solaris7_108301.nasl +lib/nessus/plugins/solaris7_108317.nasl +lib/nessus/plugins/solaris7_108319.nasl +lib/nessus/plugins/solaris7_108327.nasl +lib/nessus/plugins/solaris7_108376.nasl +lib/nessus/plugins/solaris7_108381.nasl +lib/nessus/plugins/solaris7_108451.nasl +lib/nessus/plugins/solaris7_108482.nasl +lib/nessus/plugins/solaris7_108484.nasl +lib/nessus/plugins/solaris7_108551.nasl +lib/nessus/plugins/solaris7_108574.nasl +lib/nessus/plugins/solaris7_108585.nasl +lib/nessus/plugins/solaris7_108662.nasl +lib/nessus/plugins/solaris7_108721.nasl +lib/nessus/plugins/solaris7_108748.nasl +lib/nessus/plugins/solaris7_108750.nasl +lib/nessus/plugins/solaris7_108756.nasl +lib/nessus/plugins/solaris7_108758.nasl +lib/nessus/plugins/solaris7_108760.nasl +lib/nessus/plugins/solaris7_108762.nasl +lib/nessus/plugins/solaris7_108764.nasl +lib/nessus/plugins/solaris7_108798.nasl +lib/nessus/plugins/solaris7_108800.nasl +lib/nessus/plugins/solaris7_108838.nasl +lib/nessus/plugins/solaris7_109203.nasl +lib/nessus/plugins/solaris7_109253.nasl +lib/nessus/plugins/solaris7_109372.nasl +lib/nessus/plugins/solaris7_109404.nasl +lib/nessus/plugins/solaris7_109409.nasl +lib/nessus/plugins/solaris7_109709.nasl +lib/nessus/plugins/solaris7_109744.nasl +lib/nessus/plugins/solaris7_109797.nasl +lib/nessus/plugins/solaris7_109949.nasl +lib/nessus/plugins/solaris7_110070.nasl +lib/nessus/plugins/solaris7_110646.nasl +lib/nessus/plugins/solaris7_110869.nasl +lib/nessus/plugins/solaris7_111093.nasl +lib/nessus/plugins/solaris7_111238.nasl +lib/nessus/plugins/solaris7_111242.nasl +lib/nessus/plugins/solaris7_111350.nasl +lib/nessus/plugins/solaris7_111590.nasl +lib/nessus/plugins/solaris7_111600.nasl +lib/nessus/plugins/solaris7_111646.nasl +lib/nessus/plugins/solaris7_111931.nasl +lib/nessus/plugins/solaris7_111980.nasl +lib/nessus/plugins/solaris7_112300.nasl +lib/nessus/plugins/solaris7_112448.nasl +lib/nessus/plugins/solaris7_112604.nasl +lib/nessus/plugins/solaris7_112672.nasl +lib/nessus/plugins/solaris7_112820.nasl +lib/nessus/plugins/solaris7_112899.nasl +lib/nessus/plugins/solaris7_113752.nasl +lib/nessus/plugins/solaris7_114891.nasl +lib/nessus/plugins/solaris7_114944.nasl +lib/nessus/plugins/solaris7_115565.nasl +lib/nessus/plugins/solaris7_116456.nasl +lib/nessus/plugins/solaris7_116858.nasl +lib/nessus/plugins/solaris7_x86_106542.nasl +lib/nessus/plugins/solaris7_x86_106737.nasl +lib/nessus/plugins/solaris7_x86_106794.nasl +lib/nessus/plugins/solaris7_x86_106935.nasl +lib/nessus/plugins/solaris7_x86_106939.nasl +lib/nessus/plugins/solaris7_x86_106943.nasl +lib/nessus/plugins/solaris7_x86_106945.nasl +lib/nessus/plugins/solaris7_x86_106951.nasl +lib/nessus/plugins/solaris7_x86_106953.nasl +lib/nessus/plugins/solaris7_x86_106979.nasl +lib/nessus/plugins/solaris7_x86_107023.nasl +lib/nessus/plugins/solaris7_x86_107039.nasl +lib/nessus/plugins/solaris7_x86_107116.nasl +lib/nessus/plugins/solaris7_x86_107172.nasl +lib/nessus/plugins/solaris7_x86_107179.nasl +lib/nessus/plugins/solaris7_x86_107181.nasl +lib/nessus/plugins/solaris7_x86_107201.nasl +lib/nessus/plugins/solaris7_x86_107260.nasl +lib/nessus/plugins/solaris7_x86_107286.nasl +lib/nessus/plugins/solaris7_x86_107339.nasl +lib/nessus/plugins/solaris7_x86_107375.nasl +lib/nessus/plugins/solaris7_x86_107404.nasl +lib/nessus/plugins/solaris7_x86_107442.nasl +lib/nessus/plugins/solaris7_x86_107444.nasl +lib/nessus/plugins/solaris7_x86_107452.nasl +lib/nessus/plugins/solaris7_x86_107455.nasl +lib/nessus/plugins/solaris7_x86_107457.nasl +lib/nessus/plugins/solaris7_x86_107476.nasl +lib/nessus/plugins/solaris7_x86_107478.nasl +lib/nessus/plugins/solaris7_x86_107637.nasl +lib/nessus/plugins/solaris7_x86_107651.nasl +lib/nessus/plugins/solaris7_x86_107655.nasl +lib/nessus/plugins/solaris7_x86_107685.nasl +lib/nessus/plugins/solaris7_x86_107703.nasl +lib/nessus/plugins/solaris7_x86_107710.nasl +lib/nessus/plugins/solaris7_x86_107793.nasl +lib/nessus/plugins/solaris7_x86_107795.nasl +lib/nessus/plugins/solaris7_x86_107886.nasl +lib/nessus/plugins/solaris7_x86_107888.nasl +lib/nessus/plugins/solaris7_x86_107894.nasl +lib/nessus/plugins/solaris7_x86_107973.nasl +lib/nessus/plugins/solaris7_x86_108088.nasl +lib/nessus/plugins/solaris7_x86_108092.nasl +lib/nessus/plugins/solaris7_x86_108118.nasl +lib/nessus/plugins/solaris7_x86_108163.nasl +lib/nessus/plugins/solaris7_x86_108220.nasl +lib/nessus/plugins/solaris7_x86_108222.nasl +lib/nessus/plugins/solaris7_x86_108302.nasl +lib/nessus/plugins/solaris7_x86_108320.nasl +lib/nessus/plugins/solaris7_x86_108328.nasl +lib/nessus/plugins/solaris7_x86_108377.nasl +lib/nessus/plugins/solaris7_x86_108382.nasl +lib/nessus/plugins/solaris7_x86_108452.nasl +lib/nessus/plugins/solaris7_x86_108483.nasl +lib/nessus/plugins/solaris7_x86_108485.nasl +lib/nessus/plugins/solaris7_x86_108552.nasl +lib/nessus/plugins/solaris7_x86_108575.nasl +lib/nessus/plugins/solaris7_x86_108663.nasl +lib/nessus/plugins/solaris7_x86_108722.nasl +lib/nessus/plugins/solaris7_x86_108749.nasl +lib/nessus/plugins/solaris7_x86_108751.nasl +lib/nessus/plugins/solaris7_x86_108757.nasl +lib/nessus/plugins/solaris7_x86_108759.nasl +lib/nessus/plugins/solaris7_x86_108761.nasl +lib/nessus/plugins/solaris7_x86_108763.nasl +lib/nessus/plugins/solaris7_x86_108765.nasl +lib/nessus/plugins/solaris7_x86_108799.nasl +lib/nessus/plugins/solaris7_x86_108801.nasl +lib/nessus/plugins/solaris7_x86_108839.nasl +lib/nessus/plugins/solaris7_x86_109204.nasl +lib/nessus/plugins/solaris7_x86_109252.nasl +lib/nessus/plugins/solaris7_x86_109254.nasl +lib/nessus/plugins/solaris7_x86_109373.nasl +lib/nessus/plugins/solaris7_x86_109402.nasl +lib/nessus/plugins/solaris7_x86_109405.nasl +lib/nessus/plugins/solaris7_x86_109410.nasl +lib/nessus/plugins/solaris7_x86_109710.nasl +lib/nessus/plugins/solaris7_x86_109745.nasl +lib/nessus/plugins/solaris7_x86_109950.nasl +lib/nessus/plugins/solaris7_x86_110071.nasl +lib/nessus/plugins/solaris7_x86_110647.nasl +lib/nessus/plugins/solaris7_x86_110808.nasl +lib/nessus/plugins/solaris7_x86_110870.nasl +lib/nessus/plugins/solaris7_x86_111094.nasl +lib/nessus/plugins/solaris7_x86_111239.nasl +lib/nessus/plugins/solaris7_x86_111243.nasl +lib/nessus/plugins/solaris7_x86_111351.nasl +lib/nessus/plugins/solaris7_x86_111591.nasl +lib/nessus/plugins/solaris7_x86_111601.nasl +lib/nessus/plugins/solaris7_x86_111932.nasl +lib/nessus/plugins/solaris7_x86_111981.nasl +lib/nessus/plugins/solaris7_x86_112301.nasl +lib/nessus/plugins/solaris7_x86_112449.nasl +lib/nessus/plugins/solaris7_x86_112673.nasl +lib/nessus/plugins/solaris7_x86_112821.nasl +lib/nessus/plugins/solaris7_x86_112900.nasl +lib/nessus/plugins/solaris7_x86_113753.nasl +lib/nessus/plugins/solaris7_x86_114892.nasl +lib/nessus/plugins/solaris7_x86_114945.nasl +lib/nessus/plugins/solaris7_x86_115429.nasl +lib/nessus/plugins/solaris7_x86_115566.nasl +lib/nessus/plugins/solaris7_x86_116457.nasl +lib/nessus/plugins/solaris8_108528.nasl +lib/nessus/plugins/solaris8_108773.nasl +lib/nessus/plugins/solaris8_108835.nasl +lib/nessus/plugins/solaris8_108869.nasl +lib/nessus/plugins/solaris8_108899.nasl +lib/nessus/plugins/solaris8_108909.nasl +lib/nessus/plugins/solaris8_108919.nasl +lib/nessus/plugins/solaris8_108949.nasl +lib/nessus/plugins/solaris8_108968.nasl +lib/nessus/plugins/solaris8_108975.nasl +lib/nessus/plugins/solaris8_108981.nasl +lib/nessus/plugins/solaris8_108985.nasl +lib/nessus/plugins/solaris8_108987.nasl +lib/nessus/plugins/solaris8_108993.nasl +lib/nessus/plugins/solaris8_109007.nasl +lib/nessus/plugins/solaris8_109077.nasl +lib/nessus/plugins/solaris8_109091.nasl +lib/nessus/plugins/solaris8_109134.nasl +lib/nessus/plugins/solaris8_109147.nasl +lib/nessus/plugins/solaris8_109149.nasl +lib/nessus/plugins/solaris8_109152.nasl +lib/nessus/plugins/solaris8_109154.nasl +lib/nessus/plugins/solaris8_109202.nasl +lib/nessus/plugins/solaris8_109238.nasl +lib/nessus/plugins/solaris8_109320.nasl +lib/nessus/plugins/solaris8_109324.nasl +lib/nessus/plugins/solaris8_109326.nasl +lib/nessus/plugins/solaris8_109328.nasl +lib/nessus/plugins/solaris8_109354.nasl +lib/nessus/plugins/solaris8_109458.nasl +lib/nessus/plugins/solaris8_109667.nasl +lib/nessus/plugins/solaris8_109695.nasl +lib/nessus/plugins/solaris8_109783.nasl +lib/nessus/plugins/solaris8_109793.nasl +lib/nessus/plugins/solaris8_109805.nasl +lib/nessus/plugins/solaris8_109815.nasl +lib/nessus/plugins/solaris8_109887.nasl +lib/nessus/plugins/solaris8_109893.nasl +lib/nessus/plugins/solaris8_109894.nasl +lib/nessus/plugins/solaris8_109896.nasl +lib/nessus/plugins/solaris8_109898.nasl +lib/nessus/plugins/solaris8_109922.nasl +lib/nessus/plugins/solaris8_109951.nasl +lib/nessus/plugins/solaris8_110068.nasl +lib/nessus/plugins/solaris8_110075.nasl +lib/nessus/plugins/solaris8_110286.nasl +lib/nessus/plugins/solaris8_110322.nasl +lib/nessus/plugins/solaris8_110335.nasl +lib/nessus/plugins/solaris8_110386.nasl +lib/nessus/plugins/solaris8_110387.nasl +lib/nessus/plugins/solaris8_110389.nasl +lib/nessus/plugins/solaris8_110416.nasl +lib/nessus/plugins/solaris8_110453.nasl +lib/nessus/plugins/solaris8_110458.nasl +lib/nessus/plugins/solaris8_110461.nasl +lib/nessus/plugins/solaris8_110615.nasl +lib/nessus/plugins/solaris8_110668.nasl +lib/nessus/plugins/solaris8_110670.nasl +lib/nessus/plugins/solaris8_110820.nasl +lib/nessus/plugins/solaris8_110896.nasl +lib/nessus/plugins/solaris8_110898.nasl +lib/nessus/plugins/solaris8_110903.nasl +lib/nessus/plugins/solaris8_110916.nasl +lib/nessus/plugins/solaris8_110934.nasl +lib/nessus/plugins/solaris8_110943.nasl +lib/nessus/plugins/solaris8_110945.nasl +lib/nessus/plugins/solaris8_110953.nasl +lib/nessus/plugins/solaris8_110955.nasl +lib/nessus/plugins/solaris8_110957.nasl +lib/nessus/plugins/solaris8_111069.nasl +lib/nessus/plugins/solaris8_111071.nasl +lib/nessus/plugins/solaris8_111232.nasl +lib/nessus/plugins/solaris8_111234.nasl +lib/nessus/plugins/solaris8_111313.nasl +lib/nessus/plugins/solaris8_111321.nasl +lib/nessus/plugins/solaris8_111325.nasl +lib/nessus/plugins/solaris8_111332.nasl +lib/nessus/plugins/solaris8_111400.nasl +lib/nessus/plugins/solaris8_111504.nasl +lib/nessus/plugins/solaris8_111548.nasl +lib/nessus/plugins/solaris8_111570.nasl +lib/nessus/plugins/solaris8_111588.nasl +lib/nessus/plugins/solaris8_111596.nasl +lib/nessus/plugins/solaris8_111606.nasl +lib/nessus/plugins/solaris8_111624.nasl +lib/nessus/plugins/solaris8_111626.nasl +lib/nessus/plugins/solaris8_111647.nasl +lib/nessus/plugins/solaris8_111826.nasl +lib/nessus/plugins/solaris8_111874.nasl +lib/nessus/plugins/solaris8_111881.nasl +lib/nessus/plugins/solaris8_111883.nasl +lib/nessus/plugins/solaris8_112039.nasl +lib/nessus/plugins/solaris8_112237.nasl +lib/nessus/plugins/solaris8_112390.nasl +lib/nessus/plugins/solaris8_112459.nasl +lib/nessus/plugins/solaris8_112609.nasl +lib/nessus/plugins/solaris8_112611.nasl +lib/nessus/plugins/solaris8_112668.nasl +lib/nessus/plugins/solaris8_112792.nasl +lib/nessus/plugins/solaris8_112796.nasl +lib/nessus/plugins/solaris8_112846.nasl +lib/nessus/plugins/solaris8_113650.nasl +lib/nessus/plugins/solaris8_113685.nasl +lib/nessus/plugins/solaris8_113687.nasl +lib/nessus/plugins/solaris8_113792.nasl +lib/nessus/plugins/solaris8_114162.nasl +lib/nessus/plugins/solaris8_114673.nasl +lib/nessus/plugins/solaris8_114802.nasl +lib/nessus/plugins/solaris8_114984.nasl +lib/nessus/plugins/solaris8_115797.nasl +lib/nessus/plugins/solaris8_116455.nasl +lib/nessus/plugins/solaris8_117000.nasl +lib/nessus/plugins/solaris8_x86_108529.nasl +lib/nessus/plugins/solaris8_x86_108774.nasl +lib/nessus/plugins/solaris8_x86_108836.nasl +lib/nessus/plugins/solaris8_x86_108870.nasl +lib/nessus/plugins/solaris8_x86_108900.nasl +lib/nessus/plugins/solaris8_x86_108920.nasl +lib/nessus/plugins/solaris8_x86_108950.nasl +lib/nessus/plugins/solaris8_x86_108969.nasl +lib/nessus/plugins/solaris8_x86_108976.nasl +lib/nessus/plugins/solaris8_x86_108986.nasl +lib/nessus/plugins/solaris8_x86_108988.nasl +lib/nessus/plugins/solaris8_x86_108994.nasl +lib/nessus/plugins/solaris8_x86_109008.nasl +lib/nessus/plugins/solaris8_x86_109078.nasl +lib/nessus/plugins/solaris8_x86_109092.nasl +lib/nessus/plugins/solaris8_x86_109135.nasl +lib/nessus/plugins/solaris8_x86_109148.nasl +lib/nessus/plugins/solaris8_x86_109150.nasl +lib/nessus/plugins/solaris8_x86_109155.nasl +lib/nessus/plugins/solaris8_x86_109239.nasl +lib/nessus/plugins/solaris8_x86_109321.nasl +lib/nessus/plugins/solaris8_x86_109325.nasl +lib/nessus/plugins/solaris8_x86_109327.nasl +lib/nessus/plugins/solaris8_x86_109329.nasl +lib/nessus/plugins/solaris8_x86_109355.nasl +lib/nessus/plugins/solaris8_x86_109401.nasl +lib/nessus/plugins/solaris8_x86_109459.nasl +lib/nessus/plugins/solaris8_x86_109668.nasl +lib/nessus/plugins/solaris8_x86_109784.nasl +lib/nessus/plugins/solaris8_x86_109806.nasl +lib/nessus/plugins/solaris8_x86_109895.nasl +lib/nessus/plugins/solaris8_x86_109897.nasl +lib/nessus/plugins/solaris8_x86_109899.nasl +lib/nessus/plugins/solaris8_x86_109923.nasl +lib/nessus/plugins/solaris8_x86_109952.nasl +lib/nessus/plugins/solaris8_x86_110069.nasl +lib/nessus/plugins/solaris8_x86_110076.nasl +lib/nessus/plugins/solaris8_x86_110287.nasl +lib/nessus/plugins/solaris8_x86_110323.nasl +lib/nessus/plugins/solaris8_x86_110325.nasl +lib/nessus/plugins/solaris8_x86_110336.nasl +lib/nessus/plugins/solaris8_x86_110400.nasl +lib/nessus/plugins/solaris8_x86_110402.nasl +lib/nessus/plugins/solaris8_x86_110417.nasl +lib/nessus/plugins/solaris8_x86_110454.nasl +lib/nessus/plugins/solaris8_x86_110459.nasl +lib/nessus/plugins/solaris8_x86_110462.nasl +lib/nessus/plugins/solaris8_x86_110616.nasl +lib/nessus/plugins/solaris8_x86_110669.nasl +lib/nessus/plugins/solaris8_x86_110671.nasl +lib/nessus/plugins/solaris8_x86_110672.nasl +lib/nessus/plugins/solaris8_x86_110897.nasl +lib/nessus/plugins/solaris8_x86_110899.nasl +lib/nessus/plugins/solaris8_x86_110904.nasl +lib/nessus/plugins/solaris8_x86_110917.nasl +lib/nessus/plugins/solaris8_x86_110935.nasl +lib/nessus/plugins/solaris8_x86_110944.nasl +lib/nessus/plugins/solaris8_x86_110946.nasl +lib/nessus/plugins/solaris8_x86_110954.nasl +lib/nessus/plugins/solaris8_x86_110956.nasl +lib/nessus/plugins/solaris8_x86_110958.nasl +lib/nessus/plugins/solaris8_x86_111070.nasl +lib/nessus/plugins/solaris8_x86_111072.nasl +lib/nessus/plugins/solaris8_x86_111233.nasl +lib/nessus/plugins/solaris8_x86_111235.nasl +lib/nessus/plugins/solaris8_x86_111314.nasl +lib/nessus/plugins/solaris8_x86_111322.nasl +lib/nessus/plugins/solaris8_x86_111326.nasl +lib/nessus/plugins/solaris8_x86_111401.nasl +lib/nessus/plugins/solaris8_x86_111505.nasl +lib/nessus/plugins/solaris8_x86_111549.nasl +lib/nessus/plugins/solaris8_x86_111571.nasl +lib/nessus/plugins/solaris8_x86_111589.nasl +lib/nessus/plugins/solaris8_x86_111597.nasl +lib/nessus/plugins/solaris8_x86_111607.nasl +lib/nessus/plugins/solaris8_x86_111625.nasl +lib/nessus/plugins/solaris8_x86_111627.nasl +lib/nessus/plugins/solaris8_x86_111827.nasl +lib/nessus/plugins/solaris8_x86_111875.nasl +lib/nessus/plugins/solaris8_x86_111882.nasl +lib/nessus/plugins/solaris8_x86_112040.nasl +lib/nessus/plugins/solaris8_x86_112238.nasl +lib/nessus/plugins/solaris8_x86_112240.nasl +lib/nessus/plugins/solaris8_x86_112352.nasl +lib/nessus/plugins/solaris8_x86_112460.nasl +lib/nessus/plugins/solaris8_x86_112612.nasl +lib/nessus/plugins/solaris8_x86_112669.nasl +lib/nessus/plugins/solaris8_x86_112793.nasl +lib/nessus/plugins/solaris8_x86_112797.nasl +lib/nessus/plugins/solaris8_x86_112847.nasl +lib/nessus/plugins/solaris8_x86_113651.nasl +lib/nessus/plugins/solaris8_x86_113686.nasl +lib/nessus/plugins/solaris8_x86_113688.nasl +lib/nessus/plugins/solaris8_x86_113793.nasl +lib/nessus/plugins/solaris8_x86_114046.nasl +lib/nessus/plugins/solaris8_x86_114154.nasl +lib/nessus/plugins/solaris8_x86_114163.nasl +lib/nessus/plugins/solaris8_x86_114617.nasl +lib/nessus/plugins/solaris8_x86_114674.nasl +lib/nessus/plugins/solaris8_x86_114985.nasl +lib/nessus/plugins/solaris8_x86_115798.nasl +lib/nessus/plugins/solaris8_x86_116442.nasl +lib/nessus/plugins/solaris8_x86_117001.nasl +lib/nessus/plugins/solaris9_112233.nasl +lib/nessus/plugins/solaris9_112601.nasl +lib/nessus/plugins/solaris9_112617.nasl +lib/nessus/plugins/solaris9_112661.nasl +lib/nessus/plugins/solaris9_112807.nasl +lib/nessus/plugins/solaris9_112808.nasl +lib/nessus/plugins/solaris9_112810.nasl +lib/nessus/plugins/solaris9_112817.nasl +lib/nessus/plugins/solaris9_112874.nasl +lib/nessus/plugins/solaris9_112875.nasl +lib/nessus/plugins/solaris9_112908.nasl +lib/nessus/plugins/solaris9_112921.nasl +lib/nessus/plugins/solaris9_112922.nasl +lib/nessus/plugins/solaris9_112923.nasl +lib/nessus/plugins/solaris9_112925.nasl +lib/nessus/plugins/solaris9_112926.nasl +lib/nessus/plugins/solaris9_112960.nasl +lib/nessus/plugins/solaris9_112963.nasl +lib/nessus/plugins/solaris9_112970.nasl +lib/nessus/plugins/solaris9_112998.nasl +lib/nessus/plugins/solaris9_113146.nasl +lib/nessus/plugins/solaris9_113240.nasl +lib/nessus/plugins/solaris9_113273.nasl +lib/nessus/plugins/solaris9_113278.nasl +lib/nessus/plugins/solaris9_113279.nasl +lib/nessus/plugins/solaris9_113319.nasl +lib/nessus/plugins/solaris9_113322.nasl +lib/nessus/plugins/solaris9_113329.nasl +lib/nessus/plugins/solaris9_113451.nasl +lib/nessus/plugins/solaris9_113475.nasl +lib/nessus/plugins/solaris9_113492.nasl +lib/nessus/plugins/solaris9_113575.nasl +lib/nessus/plugins/solaris9_113579.nasl +lib/nessus/plugins/solaris9_113713.nasl +lib/nessus/plugins/solaris9_113718.nasl +lib/nessus/plugins/solaris9_114008.nasl +lib/nessus/plugins/solaris9_114014.nasl +lib/nessus/plugins/solaris9_114016.nasl +lib/nessus/plugins/solaris9_114049.nasl +lib/nessus/plugins/solaris9_114125.nasl +lib/nessus/plugins/solaris9_114133.nasl +lib/nessus/plugins/solaris9_114135.nasl +lib/nessus/plugins/solaris9_114332.nasl +lib/nessus/plugins/solaris9_114361.nasl +lib/nessus/plugins/solaris9_114495.nasl +lib/nessus/plugins/solaris9_114564.nasl +lib/nessus/plugins/solaris9_114569.nasl +lib/nessus/plugins/solaris9_114571.nasl +lib/nessus/plugins/solaris9_114636.nasl +lib/nessus/plugins/solaris9_114684.nasl +lib/nessus/plugins/solaris9_114713.nasl +lib/nessus/plugins/solaris9_114729.nasl +lib/nessus/plugins/solaris9_114861.nasl +lib/nessus/plugins/solaris9_114875.nasl +lib/nessus/plugins/solaris9_114971.nasl +lib/nessus/plugins/solaris9_115172.nasl +lib/nessus/plugins/solaris9_115553.nasl +lib/nessus/plugins/solaris9_115754.nasl +lib/nessus/plugins/solaris9_115926.nasl +lib/nessus/plugins/solaris9_116237.nasl +lib/nessus/plugins/solaris9_116243.nasl +lib/nessus/plugins/solaris9_116247.nasl +lib/nessus/plugins/solaris9_116308.nasl +lib/nessus/plugins/solaris9_116453.nasl +lib/nessus/plugins/solaris9_116489.nasl +lib/nessus/plugins/solaris9_116494.nasl +lib/nessus/plugins/solaris9_116807.nasl +lib/nessus/plugins/solaris9_117071.nasl +lib/nessus/plugins/solaris9_x86_112234.nasl +lib/nessus/plugins/solaris9_x86_112662.nasl +lib/nessus/plugins/solaris9_x86_113112.nasl +lib/nessus/plugins/solaris9_x86_113241.nasl +lib/nessus/plugins/solaris9_x86_113719.nasl +lib/nessus/plugins/solaris9_x86_113870.nasl +lib/nessus/plugins/solaris9_x86_113986.nasl +lib/nessus/plugins/solaris9_x86_113996.nasl +lib/nessus/plugins/solaris9_x86_114009.nasl +lib/nessus/plugins/solaris9_x86_114015.nasl +lib/nessus/plugins/solaris9_x86_114017.nasl +lib/nessus/plugins/solaris9_x86_114050.nasl +lib/nessus/plugins/solaris9_x86_114134.nasl +lib/nessus/plugins/solaris9_x86_114136.nasl +lib/nessus/plugins/solaris9_x86_114137.nasl +lib/nessus/plugins/solaris9_x86_114145.nasl +lib/nessus/plugins/solaris9_x86_114210.nasl +lib/nessus/plugins/solaris9_x86_114242.nasl +lib/nessus/plugins/solaris9_x86_114273.nasl +lib/nessus/plugins/solaris9_x86_114328.nasl +lib/nessus/plugins/solaris9_x86_114342.nasl +lib/nessus/plugins/solaris9_x86_114354.nasl +lib/nessus/plugins/solaris9_x86_114362.nasl +lib/nessus/plugins/solaris9_x86_114432.nasl +lib/nessus/plugins/solaris9_x86_114435.nasl +lib/nessus/plugins/solaris9_x86_114436.nasl +lib/nessus/plugins/solaris9_x86_114496.nasl +lib/nessus/plugins/solaris9_x86_114565.nasl +lib/nessus/plugins/solaris9_x86_114568.nasl +lib/nessus/plugins/solaris9_x86_114570.nasl +lib/nessus/plugins/solaris9_x86_114637.nasl +lib/nessus/plugins/solaris9_x86_114685.nasl +lib/nessus/plugins/solaris9_x86_114714.nasl +lib/nessus/plugins/solaris9_x86_114715.nasl +lib/nessus/plugins/solaris9_x86_114730.nasl +lib/nessus/plugins/solaris9_x86_114733.nasl +lib/nessus/plugins/solaris9_x86_114858.nasl +lib/nessus/plugins/solaris9_x86_114862.nasl +lib/nessus/plugins/solaris9_x86_114876.nasl +lib/nessus/plugins/solaris9_x86_114932.nasl +lib/nessus/plugins/solaris9_x86_114972.nasl +lib/nessus/plugins/solaris9_x86_114980.nasl +lib/nessus/plugins/solaris9_x86_115168.nasl +lib/nessus/plugins/solaris9_x86_115755.nasl +lib/nessus/plugins/solaris9_x86_115880.nasl +lib/nessus/plugins/solaris9_x86_115927.nasl +lib/nessus/plugins/solaris9_x86_116044.nasl +lib/nessus/plugins/solaris9_x86_116045.nasl +lib/nessus/plugins/solaris9_x86_116046.nasl +lib/nessus/plugins/solaris9_x86_116238.nasl +lib/nessus/plugins/solaris9_x86_116244.nasl +lib/nessus/plugins/solaris9_x86_116248.nasl +lib/nessus/plugins/solaris9_x86_116309.nasl +lib/nessus/plugins/solaris9_x86_116454.nasl +lib/nessus/plugins/solaris9_x86_116558.nasl +lib/nessus/plugins/solaris9_x86_116808.nasl +lib/nessus/plugins/solaris9_x86_117072.nasl lib/nessus/plugins/solaris_lpd_env_cmd_exec.nasl +lib/nessus/plugins/sophos_installed.nasl lib/nessus/plugins/source_routed.nasl lib/nessus/plugins/spank.nasl +lib/nessus/plugins/spidersales_sql_injection.nasl lib/nessus/plugins/spinclient.nasl lib/nessus/plugins/spyke_flaws.nasl lib/nessus/plugins/sql_injection.nasl lib/nessus/plugins/sqlqhit_information_disclosure.nasl lib/nessus/plugins/squid_dos.nasl +lib/nessus/plugins/squid_ntlm.nasl +lib/nessus/plugins/squid_null_url_auth_bypass.nasl lib/nessus/plugins/squid_overflows.nasl +lib/nessus/plugins/squirrelmail_143.nasl +lib/nessus/plugins/squirrelmail_detect.nasl lib/nessus/plugins/squirremail_cross_site_scripting.nasl lib/nessus/plugins/squirremail_multiple_flaws.nasl lib/nessus/plugins/sscd_input.nasl @@ -1697,6 +3223,8 @@ lib/nessus/plugins/ssh_detect.nasl lib/nessus/plugins/ssh_dropbear.nasl lib/nessus/plugins/ssh_forwarding.nasl +lib/nessus/plugins/ssh_func.inc +lib/nessus/plugins/ssh_get_info.nasl lib/nessus/plugins/ssh_insertion.nasl lib/nessus/plugins/ssh_kerberos.nasl lib/nessus/plugins/ssh_keygen.nasl @@ -1723,6 +3251,10 @@ lib/nessus/plugins/stronghold_swish.nasl lib/nessus/plugins/stun_detection.nasl lib/nessus/plugins/subseven.nasl +lib/nessus/plugins/subversion_1_0_3.nasl +lib/nessus/plugins/subversion_1_0_4.nasl +lib/nessus/plugins/subversion_1_0_5.nasl +lib/nessus/plugins/subversion_detection.nasl lib/nessus/plugins/sun_cobalt_adaptive_firewall_detect.nasl lib/nessus/plugins/sun_one_jsp_source.nasl lib/nessus/plugins/sunftpd_overflow.nasl @@ -1730,6 +3262,7 @@ lib/nessus/plugins/sunkill.nasl lib/nessus/plugins/superguestbook_config_disclosure.nasl lib/nessus/plugins/superm_son_hserver_traversal.nasl +lib/nessus/plugins/surgeldap_file_disclosure.nasl lib/nessus/plugins/suse_cgi_bin_sdb.nasl lib/nessus/plugins/suse_identd.nasl lib/nessus/plugins/swat_detect.nasl @@ -1741,7 +3274,9 @@ lib/nessus/plugins/systat.nasl lib/nessus/plugins/tanned_format_string.nasl lib/nessus/plugins/tcp_chorusing.nasl +lib/nessus/plugins/tcp_options_dos.nasl lib/nessus/plugins/tcp_seq.nasl +lib/nessus/plugins/tcp_seq_window.nasl lib/nessus/plugins/tcpip_ambiguities.nasl lib/nessus/plugins/teardrop.nasl lib/nessus/plugins/technote.nasl @@ -1774,19 +3309,23 @@ lib/nessus/plugins/tomcat_devname_DoS.nasl lib/nessus/plugins/tomcat_directory_listing_and_file_disclosure.nasl lib/nessus/plugins/tomcat_path_disclosure.nasl +lib/nessus/plugins/tomcat_server_default_files.nasl lib/nessus/plugins/tomcat_snoop.nasl lib/nessus/plugins/tomcat_source_exposure.nasl +lib/nessus/plugins/tomcat_srcjsp_malformed_request.nasl lib/nessus/plugins/tomcat_status.nasl lib/nessus/plugins/torturecgis.nasl lib/nessus/plugins/traceroute.nasl lib/nessus/plugins/translate_f.nasl lib/nessus/plugins/trendmicro_emanager.nasl lib/nessus/plugins/trillian_installed.nasl +lib/nessus/plugins/trillian_patchg.nasl lib/nessus/plugins/trinity.nasl lib/nessus/plugins/trinoo.nasl lib/nessus/plugins/tripwire_webpage.nasl lib/nessus/plugins/trojan_horses.nasl lib/nessus/plugins/truegalerie_admin_bypass.nasl +lib/nessus/plugins/tsweb_detect.nasl lib/nessus/plugins/ttawebtop.nasl lib/nessus/plugins/ttcms_code_injection.nasl lib/nessus/plugins/ttforum_code_injection.nasl @@ -1794,14 +3333,19 @@ lib/nessus/plugins/ttyprompt.nasl lib/nessus/plugins/typo3_dev_read.nasl lib/nessus/plugins/typsoft_ftp_DoS.nasl +lib/nessus/plugins/typsoftftp_1_10.nasl lib/nessus/plugins/uddi.inc lib/nessus/plugins/uddi.nasl lib/nessus/plugins/ultraseek_detect.nasl lib/nessus/plugins/ultraseek_dos.nasl lib/nessus/plugins/unicast_dos.nasl lib/nessus/plugins/unknown_services.nasl +lib/nessus/plugins/unreal_detection.nasl +lib/nessus/plugins/unreal_dos.nasl lib/nessus/plugins/unreal_game_engine.nasl +lib/nessus/plugins/unreal_ircd_cloaking.nasl lib/nessus/plugins/upb_code_injection.nasl +lib/nessus/plugins/upb_info_leak.nasl lib/nessus/plugins/upload_cgi.nasl lib/nessus/plugins/upload_lite_cgi.nasl lib/nessus/plugins/uploader_exe.nasl @@ -1810,6 +3354,7 @@ lib/nessus/plugins/upnp_xp_tcp.nasl lib/nessus/plugins/urlscan_detect.nasl lib/nessus/plugins/usermin_session_id.nasl +lib/nessus/plugins/usrobotics_disclosed_password.nasl lib/nessus/plugins/ustorekeeper.nasl lib/nessus/plugins/uw_imap_overflow.nasl lib/nessus/plugins/uw_imap_overflow_two.nasl @@ -1818,6 +3363,7 @@ lib/nessus/plugins/vcatch_detection.nasl lib/nessus/plugins/vchat_logs.nasl lib/nessus/plugins/vftpd_overflow.nasl +lib/nessus/plugins/vhost_xss.nasl lib/nessus/plugins/view_source_cgi.nasl lib/nessus/plugins/viewpage_file_reading.nasl lib/nessus/plugins/vignette_info_leak.nasl @@ -1842,6 +3388,7 @@ lib/nessus/plugins/wayboard.nasl lib/nessus/plugins/web3000_detection.nasl lib/nessus/plugins/web_chat_xss.nasl +lib/nessus/plugins/web_loadbalancer.nasl lib/nessus/plugins/web_traversal.nasl lib/nessus/plugins/webactive_log.nasl lib/nessus/plugins/webadmin.nasl @@ -1874,6 +3421,7 @@ lib/nessus/plugins/webmirror.nasl lib/nessus/plugins/webnews.nasl lib/nessus/plugins/webplus.nasl +lib/nessus/plugins/webplus_install_path.nasl lib/nessus/plugins/webplus_version.nasl lib/nessus/plugins/webseal_DoS.nasl lib/nessus/plugins/websendmail.nasl @@ -1895,6 +3443,7 @@ lib/nessus/plugins/wfchat_user_disclosure.nasl lib/nessus/plugins/wftp.nasl lib/nessus/plugins/wftp_241_dos.nasl +lib/nessus/plugins/wftp_321_overflow.nasl lib/nessus/plugins/wftp_dos.nasl lib/nessus/plugins/whois_raw.nasl lib/nessus/plugins/wihphoto_file_read.nasl @@ -1902,6 +3451,7 @@ lib/nessus/plugins/win_trinoo.nasl lib/nessus/plugins/winamp_buffer_overflow.nasl lib/nessus/plugins/windmail.nasl +lib/nessus/plugins/windows_asn1_vuln_ntlm.nasl lib/nessus/plugins/windows_terminal_services.nasl lib/nessus/plugins/wingate.nasl lib/nessus/plugins/wingate_denial.nasl @@ -1920,27 +3470,31 @@ lib/nessus/plugins/wordit_logbook.nasl lib/nessus/plugins/wordpress_flaws.nasl lib/nessus/plugins/worldclient_server_detection.nasl -lib/nessus/plugins/worldflash_detection.nasl lib/nessus/plugins/worldspan_gw_DoS.nasl +lib/nessus/plugins/worm_netsky_b.nasl lib/nessus/plugins/wrap.nasl lib/nessus/plugins/writesrv.nasl lib/nessus/plugins/ws4d_overflow.nasl lib/nessus/plugins/ws4e_too_long_url.nasl +lib/nessus/plugins/ws_ftp_client_overflows.nasl lib/nessus/plugins/wsftp_overflows.nasl lib/nessus/plugins/wsmp3d_cmd_exec.nasl lib/nessus/plugins/wu_ftpd_fb_realpath_offby1.nasl lib/nessus/plugins/wu_ftpd_glob.nasl lib/nessus/plugins/wu_ftpd_overflow.nasl lib/nessus/plugins/wu_ftpd_pasv_format_string.nasl +lib/nessus/plugins/wu_ftpd_restricted_gid_bypass.nasl lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl lib/nessus/plugins/wuftpd_ls_DoS.nasl lib/nessus/plugins/www_default_page.nasl lib/nessus/plugins/www_fingerprinting_hmap.nasl lib/nessus/plugins/www_hosting_copyrighted_material.nasl +lib/nessus/plugins/www_incomplete_auth_DoS.nasl lib/nessus/plugins/www_infinite_request_DoS.nasl lib/nessus/plugins/www_server_name.nasl lib/nessus/plugins/www_too_long_auth.nasl +lib/nessus/plugins/www_too_long_auth_DoS.nasl lib/nessus/plugins/www_too_long_cookie.nasl lib/nessus/plugins/www_too_long_header.nasl lib/nessus/plugins/www_too_long_header10.nasl @@ -1962,6 +3516,8 @@ lib/nessus/plugins/xmail_overflow.nasl lib/nessus/plugins/xmb_sql_injection.nasl lib/nessus/plugins/xmb_xss.nasl +lib/nessus/plugins/xmicro_default_password.nasl +lib/nessus/plugins/xnews.nasl lib/nessus/plugins/xolox_installed.nasl lib/nessus/plugins/xoops_myheader_url_xss.nasl lib/nessus/plugins/xoops_path_disclosure.nasl From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15: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 931D716A4D0 for ; Fri, 23 Jul 2004 15:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86A0043D2F for ; Fri, 23 Jul 2004 15:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NFoL8P024892 for ; Fri, 23 Jul 2004 15:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFoLi3024891; Fri, 23 Jul 2004 15:50:21 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 15:50:21 GMT Message-Id: <200407231550.i6NFoLi3024891@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Udo Schweigert Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Udo Schweigert List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 15:50:23 -0000 The following reply was made to PR ports/69333; it has been noted by GNATS. From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Udo Schweigert Subject: Re: ports/69333: maintainer-update of security/nessus-* Date: Fri, 23 Jul 2004 17:46:00 +0200 Here is the next update since the nessus developers already have released the version 2.0.12: Maintainer-update of the security/nessus-* ports: - Upgrade to nessus version 2.0.12 Committer: file removed (cvs rm) files/extra-patch-3com-hub-amd64 diff -ru /usr/ports/security/nessus/Makefile nessus/Makefile --- /usr/ports/security/nessus/Makefile Mon May 3 06:08:35 2004 +++ nessus/Makefile Fri Jul 23 17:01:58 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus/distinfo nessus/distinfo --- /usr/ports/security/nessus/distinfo Thu Apr 1 06:08:31 2004 +++ nessus/distinfo Fri Jul 23 17:02:35 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-core-2.0.10a.tar.gz) = bd9d62375adc5d6b9e38879a8cee108d -SIZE (nessus/nessus-core-2.0.10a.tar.gz) = 649493 +MD5 (nessus/nessus-core-2.0.12.tar.gz) = 23017718a25848d3629e57ea2b72a421 +SIZE (nessus/nessus-core-2.0.12.tar.gz) = 649412 diff -ru /usr/ports/security/nessus-libnasl/Makefile nessus-libnasl/Makefile --- /usr/ports/security/nessus-libnasl/Makefile Sun Apr 11 06:08:54 2004 +++ nessus-libnasl/Makefile Fri Jul 23 16:59:20 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus-libnasl -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libnasl/distinfo nessus-libnasl/distinfo --- /usr/ports/security/nessus-libnasl/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-libnasl/distinfo Fri Jul 23 16:59:32 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/libnasl-2.0.10a.tar.gz) = 59e0c0ed0fbe1fcf35cdfe004e32b37f -SIZE (nessus/libnasl-2.0.10a.tar.gz) = 343047 +MD5 (nessus/libnasl-2.0.12.tar.gz) = dff04c166d45270909ec94ff97140b44 +SIZE (nessus/libnasl-2.0.12.tar.gz) = 343144 diff -ru /usr/ports/security/nessus-libraries/Makefile nessus-libraries/Makefile --- /usr/ports/security/nessus-libraries/Makefile Sun Apr 11 06:08:54 2004 +++ nessus-libraries/Makefile Fri Jul 23 16:54:43 2004 @@ -9,8 +9,7 @@ # client. PORTNAME= nessus-libraries -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libraries/distinfo nessus-libraries/distinfo --- /usr/ports/security/nessus-libraries/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-libraries/distinfo Fri Jul 23 16:55:09 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-libraries-2.0.10a.tar.gz) = b0c1f429792b7517197bdeadb5f3ecb9 -SIZE (nessus/nessus-libraries-2.0.10a.tar.gz) = 418370 +MD5 (nessus/nessus-libraries-2.0.12.tar.gz) = 8f80ee53a2b73554b7ea5092d67f8426 +SIZE (nessus/nessus-libraries-2.0.12.tar.gz) = 418922 diff -ru /usr/ports/security/nessus-plugins/Makefile nessus-plugins/Makefile --- /usr/ports/security/nessus-plugins/Makefile Mon May 3 06:08:35 2004 +++ nessus-plugins/Makefile Fri Jul 23 17:06:47 2004 @@ -6,8 +6,7 @@ # PORTNAME= nessus-plugins -PORTVERSION= 2.0.10a -PORTREVISION= 2 +PORTVERSION= 2.0.12 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ @@ -35,15 +34,6 @@ MAN8= nessus-update-plugins.8 .include - -.if ${ARCH} == "amd64" -PLIST_SUB+= AMD="@comment " -pre-configure: - ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-3com-hub-amd64 -.else -PLIST_SUB+= AMD="" -BUILD_DEPENDS+= libnet-config:${PORTSDIR}/net/libnet -.endif post-install: @${ECHO} "================================================================================" diff -ru /usr/ports/security/nessus-plugins/distinfo nessus-plugins/distinfo --- /usr/ports/security/nessus-plugins/distinfo Thu Apr 1 06:08:31 2004 +++ nessus-plugins/distinfo Fri Jul 23 17:07:37 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-plugins-2.0.10a.tar.gz) = dda0829b6a70086edcec2c5000d06a21 -SIZE (nessus/nessus-plugins-2.0.10a.tar.gz) = 1443420 +MD5 (nessus/nessus-plugins-2.0.12.tar.gz) = 2519ffc5ececb0874350ecd32ea530cd +SIZE (nessus/nessus-plugins-2.0.12.tar.gz) = 1767376 diff -ru /usr/ports/security/nessus-plugins/files/extra-patch-3com-hub-amd64 nessus-plugins/files/extra-patch-3com-hub-amd64 --- /usr/ports/security/nessus-plugins/files/extra-patch-3com-hub-amd64 Sun May 2 20:18:08 2004 +++ nessus-plugins/files/extra-patch-3com-hub-amd64 Thu Jan 1 01:00:00 1970 @@ -1,18 +0,0 @@ ---- plugins/make_world.orig Sun Jun 9 13:07:06 2002 -+++ plugins/make_world Wed Apr 28 17:03:30 2004 -@@ -15,14 +15,7 @@ - do if [ -d $i -a $i != CVS ]; then - if [ "$i" = "3com_hub" ]; - then -- libnet-config && { -- cd $i -- ${MAKE:-make} $MAKEFLAG $1 -- if [ $? -ne 0 ];then -- BADPLUGINS="$BADPLUGINS $i" -- fi -- cd .. -- } -+ BADPLUGINS="$BADPLUGINS $i"; - else - cd $i - ${MAKE:-make} $MAKEFLAG $1 diff -ru /usr/ports/security/nessus-plugins/pkg-plist nessus-plugins/pkg-plist --- /usr/ports/security/nessus-plugins/pkg-plist Mon May 3 06:08:35 2004 +++ nessus-plugins/pkg-plist Fri Jul 23 17:13:42 2004 @@ -1,8 +1,9 @@ bin/nessus-build lib/nessus/plugins/12planet_chat_server_path_disclosure.nasl lib/nessus/plugins/12planet_chat_server_plaintext_password.nasl +lib/nessus/plugins/12planet_chat_server_xss.nasl lib/nessus/plugins/3com_config_disclosure.nasl -%%AMD%%lib/nessus/plugins/3com_hub.nes +lib/nessus/plugins/3com_nbx_voip_netset_detection.nasl lib/nessus/plugins/3com_ras_crash.nasl lib/nessus/plugins/3com_switches.nasl lib/nessus/plugins/404_path_disclosure.nasl @@ -42,12 +43,15 @@ lib/nessus/plugins/CSCdx54675.nasl lib/nessus/plugins/CSCdx92043.nasl lib/nessus/plugins/CSCdy03429.nasl +lib/nessus/plugins/CSCdy15598.nasl lib/nessus/plugins/CSCdy26428.nasl lib/nessus/plugins/CSCdy38035.nasl lib/nessus/plugins/CSCdz39284.nasl lib/nessus/plugins/CSCdz60229.nasl lib/nessus/plugins/CSCea42030.nasl lib/nessus/plugins/CSCea77143.nasl +lib/nessus/plugins/CSCec42751.nasl +lib/nessus/plugins/CSCed30113.nasl lib/nessus/plugins/ColdFusion.nasl lib/nessus/plugins/ColdFusion_path_disclosure.nasl lib/nessus/plugins/CuteNews_code_injection.nasl @@ -120,12 +124,14 @@ lib/nessus/plugins/SimpleBBS_users_disclosure.nasl lib/nessus/plugins/TLD_wildcard.nasl lib/nessus/plugins/TelSrv_DoS.nasl +lib/nessus/plugins/W32.Sasser.Worm.nasl lib/nessus/plugins/WebSite.nasl lib/nessus/plugins/X.nasl lib/nessus/plugins/Xeneo_Web_Server_2.2.9.0_DoS.nasl lib/nessus/plugins/Xerver_DoS.nasl lib/nessus/plugins/a1stats.nasl lib/nessus/plugins/aardvark_topsites_multiple.nasl +lib/nessus/plugins/aborior_cmd_exec.nasl lib/nessus/plugins/abyss_dos.nasl lib/nessus/plugins/abyss_overflow.nasl lib/nessus/plugins/acc.nasl @@ -157,6 +163,7 @@ lib/nessus/plugins/account_root_rootkit1.nasl lib/nessus/plugins/account_root_rootkit1bis.nasl lib/nessus/plugins/account_root_rootkit2.nasl +lib/nessus/plugins/account_swift_swift.nasl lib/nessus/plugins/account_sync.nasl lib/nessus/plugins/account_system_manager.nasl lib/nessus/plugins/account_toor.nasl @@ -171,6 +178,7 @@ lib/nessus/plugins/admentor_login_flaw.nasl lib/nessus/plugins/advanced_poll_phpinfo.nasl lib/nessus/plugins/afs_version.nasl +lib/nessus/plugins/agobot_fo.nasl lib/nessus/plugins/agora.nasl lib/nessus/plugins/airport_plaintext_credentials.nasl lib/nessus/plugins/aix_ftpd.nasl @@ -213,34 +221,44 @@ lib/nessus/plugins/apache_2_0_46.nasl lib/nessus/plugins/apache_2_0_47.nasl lib/nessus/plugins/apache_2_0_48.nasl +lib/nessus/plugins/apache_2_0_49_mod_ssl.nasl lib/nessus/plugins/apache_Tomcat_DOS_Device_XSS.nasl lib/nessus/plugins/apache_Tomcat_Servlet_XSS.nasl lib/nessus/plugins/apache_Tomcat_TroubleShooter.nasl lib/nessus/plugins/apache_auth_sql_insertion.nasl lib/nessus/plugins/apache_bat_exec.nasl lib/nessus/plugins/apache_chunked_encoding.nasl +lib/nessus/plugins/apache_conn_block.nasl lib/nessus/plugins/apache_dir_listing.nasl +lib/nessus/plugins/apache_input_header_folding_dos.nasl +lib/nessus/plugins/apache_log_injection.nasl lib/nessus/plugins/apache_server_info.nasl lib/nessus/plugins/apache_server_status.nasl lib/nessus/plugins/apache_slash.nasl lib/nessus/plugins/apache_source_asp.nasl +lib/nessus/plugins/apache_ssl_certificate_forging.nasl lib/nessus/plugins/apache_ssl_overflow.nasl lib/nessus/plugins/apache_username.nasl lib/nessus/plugins/apache_win32_devname.nasl lib/nessus/plugins/apache_win32_dir_trav.nasl lib/nessus/plugins/apache_win32_read_files.nasl +lib/nessus/plugins/apc_smartslot_factory_password.nasl lib/nessus/plugins/apcnisd_detect.nasl lib/nessus/plugins/apcupsd_overflows.nasl lib/nessus/plugins/appsocket_DoS.nasl +lib/nessus/plugins/aprox_portal_file_disclosure.nasl lib/nessus/plugins/arcserve_hidden_share.nasl lib/nessus/plugins/argosoft_dos.nasl lib/nessus/plugins/argosoft_multiple_flaws.nasl lib/nessus/plugins/args_bat.nasl lib/nessus/plugins/arkeia.nasl +lib/nessus/plugins/artmedic_kleinanzeigen_file_inclusion.nasl +lib/nessus/plugins/artmedic_links5_file_inclusion.nasl lib/nessus/plugins/ascend_kill.nasl lib/nessus/plugins/asip-status.nasl lib/nessus/plugins/asp_net_css.nasl lib/nessus/plugins/asp_net_path_disclosure.nasl +lib/nessus/plugins/asp_portal_xss.nasl lib/nessus/plugins/asp_source_data.nasl lib/nessus/plugins/asp_source_dot.nasl lib/nessus/plugins/asp_source_space.nasl @@ -267,6 +285,7 @@ lib/nessus/plugins/badblue_null_byte.nasl lib/nessus/plugins/badblue_remote_administrative_access.nasl lib/nessus/plugins/badblue_remote_administrative_access2.nasl +lib/nessus/plugins/bagel_b_detection.nasl lib/nessus/plugins/bagle_remover.nasl lib/nessus/plugins/bakfiles.nasl lib/nessus/plugins/bandmin_xss.nasl @@ -279,6 +298,7 @@ lib/nessus/plugins/bb-hist.nasl lib/nessus/plugins/bb-hostsvc.nasl lib/nessus/plugins/bboard.nasl +lib/nessus/plugins/bea_password.nasl lib/nessus/plugins/benhur_ftp_firewall.nasl lib/nessus/plugins/betterinternet_detection.nasl lib/nessus/plugins/bftelnet.nasl @@ -307,6 +327,7 @@ lib/nessus/plugins/bizdb1_search.nasl lib/nessus/plugins/biztalk_flaws.nasl lib/nessus/plugins/blackice_dos.nasl +lib/nessus/plugins/blackice_version_checker.nasl lib/nessus/plugins/blackmoon_ftp_users_database.nasl lib/nessus/plugins/blackmoon_ftp_users_enum.nasl lib/nessus/plugins/blnews_code_injection.nasl @@ -314,6 +335,7 @@ lib/nessus/plugins/bonsai_flaws.nasl lib/nessus/plugins/bonzi_buddy.nasl lib/nessus/plugins/bootparamd.nasl +lib/nessus/plugins/bootparamd_get_nis_domain.nasl lib/nessus/plugins/boozt_admin_overflow.nasl lib/nessus/plugins/brilliant_digital_detection.nasl lib/nessus/plugins/broadvision_path_disclosure.nasl @@ -325,6 +347,7 @@ lib/nessus/plugins/bugbear_b.nasl lib/nessus/plugins/bugbear_b_1080.nasl lib/nessus/plugins/bugzilla_detect.nasl +lib/nessus/plugins/bugzilla_multiple_vulns.nasl lib/nessus/plugins/bugzilla_sql_vulns.nasl lib/nessus/plugins/bugzilla_vulns.nasl lib/nessus/plugins/bugzilla_xss_and_tmp_files.nasl @@ -339,6 +362,7 @@ lib/nessus/plugins/campas.nasl lib/nessus/plugins/canna_overflow.nasl lib/nessus/plugins/carello.nasl +lib/nessus/plugins/cart32_xss.nasl lib/nessus/plugins/cassandra_nntp_dos.nasl lib/nessus/plugins/cayman_any_username.nasl lib/nessus/plugins/cc_guestbook.nasl @@ -350,6 +374,7 @@ lib/nessus/plugins/cfinger_format_bug.nasl lib/nessus/plugins/cfinger_search.nasl lib/nessus/plugins/cfinger_version.nasl +lib/nessus/plugins/cfwebstore_sql_injection.nasl lib/nessus/plugins/cgibin_browsable.nasl lib/nessus/plugins/cgibin_in_kb.nasl lib/nessus/plugins/cgicso_command_execution.nasl @@ -364,7 +389,9 @@ lib/nessus/plugins/chargen.nasl lib/nessus/plugins/check_ports.nasl lib/nessus/plugins/checkpoint.nasl +lib/nessus/plugins/checkpoint_format.nasl lib/nessus/plugins/checkpoint_open_web_admin.nasl +lib/nessus/plugins/chora_remote_code_execution.nasl lib/nessus/plugins/cifs445.nasl lib/nessus/plugins/cisco-view-source-dos.nasl lib/nessus/plugins/cisco_675.nasl @@ -387,6 +414,7 @@ lib/nessus/plugins/citrix.nasl lib/nessus/plugins/citrix_find.nasl lib/nessus/plugins/citrix_redirect.nasl +lib/nessus/plugins/citrix_web_xss.nasl lib/nessus/plugins/clarkconnectd.nasl lib/nessus/plugins/cleartrust_xss.nasl lib/nessus/plugins/cmail_overflow.nasl @@ -395,6 +423,7 @@ lib/nessus/plugins/cobalt_web_admin_server.nasl lib/nessus/plugins/codered_x.nasl lib/nessus/plugins/cold_fusion_admin_dos.nasl +lib/nessus/plugins/comersus_xss.nasl lib/nessus/plugins/commerce_cgi.nasl lib/nessus/plugins/communigatepro_overflow.nasl lib/nessus/plugins/communigatepro_referer_field.nasl @@ -407,13 +436,18 @@ lib/nessus/plugins/count_cgi.nasl lib/nessus/plugins/counter.nasl lib/nessus/plugins/counter_php_file_overwrite.nasl +lib/nessus/plugins/courier_imap_overflows.nasl +lib/nessus/plugins/courier_overflows.nasl lib/nessus/plugins/cp-firewall-auth.nasl lib/nessus/plugins/cp-firewall-webauth.nasl lib/nessus/plugins/cp_syslog_overflow.nasl lib/nessus/plugins/cpanel_cmd_exec.nasl +lib/nessus/plugins/cpanel_login_cmd_exec.nasl lib/nessus/plugins/crlinux_file_reading.nasl +lib/nessus/plugins/crobftp_buffer_overflow.nasl lib/nessus/plugins/crobftp_format_string.nasl lib/nessus/plugins/cross_site_scripting.nasl +lib/nessus/plugins/crystal_reports_directory_traversal.nasl lib/nessus/plugins/csSearch_cgi.nasl lib/nessus/plugins/csm_helo.nasl lib/nessus/plugins/csnews.nasl @@ -421,11 +455,15 @@ lib/nessus/plugins/cups_vulns.nasl lib/nessus/plugins/cuteftp_flaws.nasl lib/nessus/plugins/cutenews_phpinfo.nasl +lib/nessus/plugins/cutenews_show_news_xss.nasl lib/nessus/plugins/cvs_detect.nasl lib/nessus/plugins/cvs_dir_create.nasl lib/nessus/plugins/cvs_double_free.nasl lib/nessus/plugins/cvs_in_www.nasl +lib/nessus/plugins/cvs_malformed_entry_lines_flaw.nasl +lib/nessus/plugins/cvs_piped_co.nasl lib/nessus/plugins/cvs_pserver_cmd_exec.nasl +lib/nessus/plugins/cvs_pserver_heap_overflow.nasl lib/nessus/plugins/cvs_public_pserver.nasl lib/nessus/plugins/cvsweb_shell.nasl lib/nessus/plugins/cvsweb_version.nasl @@ -433,6 +471,7 @@ lib/nessus/plugins/cydoor_detection.nasl lib/nessus/plugins/cyrus_imap_prelogin_overflow.nasl lib/nessus/plugins/cyrus_imsp_overflow.nasl +lib/nessus/plugins/dabber_worm.nasl lib/nessus/plugins/dame.nasl lib/nessus/plugins/dameware_mini_remote_control_disclosure.nasl lib/nessus/plugins/dangerous_cgis.nasl @@ -454,7 +493,9 @@ lib/nessus/plugins/ddicgi.nasl lib/nessus/plugins/deep_throat.nasl lib/nessus/plugins/default_account.inc +lib/nessus/plugins/defaultnavcheck.nasl lib/nessus/plugins/delegate_overflow.nasl +lib/nessus/plugins/dell_openmanage.nasl lib/nessus/plugins/deltaups_detect.nasl lib/nessus/plugins/desktop_orbiter_detect.nasl lib/nessus/plugins/desktop_orbiter_reboot.nasl @@ -463,8 +504,10 @@ lib/nessus/plugins/directory_manager.nasl lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl +lib/nessus/plugins/distcc_detection.nasl lib/nessus/plugins/dlink_router_overflow.nasl lib/nessus/plugins/dmail_overflow.nasl +lib/nessus/plugins/dns_cache_sniffing.nasl lib/nessus/plugins/dns_fingerprint.nasl lib/nessus/plugins/dns_server.nasl lib/nessus/plugins/dns_xfer.nasl @@ -479,11 +522,14 @@ lib/nessus/plugins/domino_http_dos.nasl lib/nessus/plugins/domino_traversal.nasl lib/nessus/plugins/domino_xss.nasl +lib/nessus/plugins/dont_print_on_printers.nasl lib/nessus/plugins/dont_scan_printers.nasl +lib/nessus/plugins/download_ject.nasl lib/nessus/plugins/downloadware_detection.nasl lib/nessus/plugins/dragandzip_overflow.nasl lib/nessus/plugins/dragon_ftp.nasl lib/nessus/plugins/dragon_telnet.nasl +lib/nessus/plugins/dreamftp_format_string.nasl lib/nessus/plugins/drweb_overflow.nasl lib/nessus/plugins/dssagent_detection.nasl lib/nessus/plugins/dtspcd.nasl @@ -493,11 +539,15 @@ lib/nessus/plugins/dwhttp_format_string.nasl lib/nessus/plugins/e107_db_dump.nasl lib/nessus/plugins/eDonkey_detect.nasl +lib/nessus/plugins/eMuleWebServer_detect.nasl lib/nessus/plugins/eXtremail_format_strings.nasl lib/nessus/plugins/easydynamicpages_code_injection.nasl lib/nessus/plugins/ebola_overflow.nasl lib/nessus/plugins/ecartis_hidden_username.nasl +lib/nessus/plugins/ece_flag.nasl lib/nessus/plugins/echo.nasl +lib/nessus/plugins/ecommerce_corp_sql_injection.nasl +lib/nessus/plugins/edimax_ap_guest.nasl lib/nessus/plugins/eftp_bufferoverflow.nasl lib/nessus/plugins/eftp_directory_traversal.nasl lib/nessus/plugins/eftp_dos.nasl @@ -507,6 +557,7 @@ lib/nessus/plugins/eldapo_plaintext_passwords.nasl lib/nessus/plugins/empower_path.nasl lib/nessus/plugins/emule_dos.nasl +lib/nessus/plugins/emumail_multiple_vulns.nasl lib/nessus/plugins/epolicy_orchestrator_format_string.nasl lib/nessus/plugins/epolicy_orchestrator_multiple_issues.nasl lib/nessus/plugins/eserv.nasl @@ -522,6 +573,7 @@ lib/nessus/plugins/exchange_public_folders_information_leak.nasl lib/nessus/plugins/exchange_xexch50_overflow.nasl lib/nessus/plugins/exim_heap_overflow.nasl +lib/nessus/plugins/exim_mult_overflow.nasl lib/nessus/plugins/ezcontents_code_execution.nasl lib/nessus/plugins/ezpublish_config_disclosure.nasl lib/nessus/plugins/ezpublish_dir_xss.nasl @@ -545,11 +597,14 @@ lib/nessus/plugins/finger_freebsd.nasl lib/nessus/plugins/finger_redirection.nasl lib/nessus/plugins/finger_solaris_disclosure.nasl +lib/nessus/plugins/finjan_cmd_restart.nasl +lib/nessus/plugins/firebird_bo.nasl lib/nessus/plugins/firewall1_dos.nasl lib/nessus/plugins/flash_ftp_server_directory_traversal.nasl lib/nessus/plugins/flash_player_local_files.nasl lib/nessus/plugins/flash_player_overflows.nasl lib/nessus/plugins/flashfxp_overflow.nasl +lib/nessus/plugins/flexwatch_auth_bypass.nasl lib/nessus/plugins/formhandler.nasl lib/nessus/plugins/formmail_pl.nasl lib/nessus/plugins/formmail_version_disclosure.nasl @@ -557,6 +612,120 @@ lib/nessus/plugins/foxweb_dll.nasl lib/nessus/plugins/fp_fpcount.nasl lib/nessus/plugins/fp_htimage.nasl +lib/nessus/plugins/fqdn.nasl +lib/nessus/plugins/freebsd_DarwinStreamingServer_413g.nasl +lib/nessus/plugins/freebsd_anubis_362_1.nasl +lib/nessus/plugins/freebsd_apache+ssl_1329153.nasl +lib/nessus/plugins/freebsd_apache_2048_3.nasl +lib/nessus/plugins/freebsd_bind8_neg_poison.nasl +lib/nessus/plugins/freebsd_buffer_cache.nasl +lib/nessus/plugins/freebsd_clamav_065_7.nasl +lib/nessus/plugins/freebsd_contenttype_xss.nasl +lib/nessus/plugins/freebsd_cvs_heap_overflow.nasl +lib/nessus/plugins/freebsd_cvs_path_validation.nasl +lib/nessus/plugins/freebsd_cyrus_2017.nasl +lib/nessus/plugins/freebsd_cyrus_imspd_16a5.nasl +lib/nessus/plugins/freebsd_dhcp3_301r14.nasl +lib/nessus/plugins/freebsd_ecartis_100s20030814_1.nasl +lib/nessus/plugins/freebsd_emil_21b9.nasl +lib/nessus/plugins/freebsd_ethereal_0103.nasl +lib/nessus/plugins/freebsd_ethereal_0104.nasl +lib/nessus/plugins/freebsd_ethereal_0105.nasl +lib/nessus/plugins/freebsd_exim_433_20_1.nasl +lib/nessus/plugins/freebsd_ezbounce_104_a_1.nasl +lib/nessus/plugins/freebsd_fetchmail_620.nasl +lib/nessus/plugins/freebsd_fetchmail_625.nasl +lib/nessus/plugins/freebsd_fsp_28119.nasl +lib/nessus/plugins/freebsd_gaim_076.nasl +lib/nessus/plugins/freebsd_gallery_1432.nasl +lib/nessus/plugins/freebsd_gift_087.nasl +lib/nessus/plugins/freebsd_gnats_311319.nasl +lib/nessus/plugins/freebsd_gnupg_123_4.nasl +lib/nessus/plugins/freebsd_h323_bugs.nasl +lib/nessus/plugins/freebsd_heimdal_061.nasl +lib/nessus/plugins/freebsd_heimdal_061_1.nasl +lib/nessus/plugins/freebsd_hsftp_114.nasl +lib/nessus/plugins/freebsd_icecast_1312.nasl +lib/nessus/plugins/freebsd_ident2_104.nasl +lib/nessus/plugins/freebsd_inn_241.nasl +lib/nessus/plugins/freebsd_jail_route.nasl +lib/nessus/plugins/freebsd_jailed_processes.nasl +lib/nessus/plugins/freebsd_kdepim_314_1.nasl +lib/nessus/plugins/freebsd_lbreakout2_222_1.nasl +lib/nessus/plugins/freebsd_leafnode_1947.nasl +lib/nessus/plugins/freebsd_lftp_2610.nasl +lib/nessus/plugins/freebsd_lha_114_4.nasl +lib/nessus/plugins/freebsd_libmcrypt_256.nasl +lib/nessus/plugins/freebsd_libpng.nasl +lib/nessus/plugins/freebsd_libtool_temp_file.nasl +lib/nessus/plugins/freebsd_libxine_10r3_5.nasl +lib/nessus/plugins/freebsd_linux.nasl +lib/nessus/plugins/freebsd_mailman_21.nasl +lib/nessus/plugins/freebsd_mailman_211.nasl +lib/nessus/plugins/freebsd_mailman_213.nasl +lib/nessus/plugins/freebsd_mailman_214.nasl +lib/nessus/plugins/freebsd_mathopd_14p2.nasl +lib/nessus/plugins/freebsd_mc_460_10.nasl +lib/nessus/plugins/freebsd_mc_460_9.nasl +lib/nessus/plugins/freebsd_metamail_27_2.nasl +lib/nessus/plugins/freebsd_mksnap_ffs.nasl +lib/nessus/plugins/freebsd_mnogosearch_32.nasl +lib/nessus/plugins/freebsd_mod_python_2710.nasl +lib/nessus/plugins/freebsd_modsecurity_175.nasl +lib/nessus/plugins/freebsd_moinmoin_122.nasl +lib/nessus/plugins/freebsd_mpg123_059_12.nasl +lib/nessus/plugins/freebsd_mplayer_0921.nasl +lib/nessus/plugins/freebsd_mutt_142.nasl +lib/nessus/plugins/freebsd_mysql_client_4020.nasl +lib/nessus/plugins/freebsd_nap_145.nasl +lib/nessus/plugins/freebsd_neon_0245.nasl +lib/nessus/plugins/freebsd_neon_0245_1.nasl +lib/nessus/plugins/freebsd_oftpd_037.nasl +lib/nessus/plugins/freebsd_openssl_changecipherspec.nasl +lib/nessus/plugins/freebsd_outofseq_tcp_packets_dos.nasl +lib/nessus/plugins/freebsd_package.inc +lib/nessus/plugins/freebsd_pam_smb_199_3.nasl +lib/nessus/plugins/freebsd_pavuk_0928_5.nasl +lib/nessus/plugins/freebsd_phpBB_208.nasl +lib/nessus/plugins/freebsd_phpBB_208_1.nasl +lib/nessus/plugins/freebsd_phpBB_208_2.nasl +lib/nessus/plugins/freebsd_phpMyAdmin_254.nasl +lib/nessus/plugins/freebsd_phpMyAdmin_2571.nasl +lib/nessus/plugins/freebsd_php_438.nasl +lib/nessus/plugins/freebsd_phpnuke_69.nasl +lib/nessus/plugins/freebsd_phpnuke_73.nasl +lib/nessus/plugins/freebsd_pine_421.nasl +lib/nessus/plugins/freebsd_pine_444.nasl +lib/nessus/plugins/freebsd_pine_450.nasl +lib/nessus/plugins/freebsd_pine_458.nasl +lib/nessus/plugins/freebsd_pound_16.nasl +lib/nessus/plugins/freebsd_proftpd_1210_r1.nasl +lib/nessus/plugins/freebsd_proftpd_128_1.nasl +lib/nessus/plugins/freebsd_qpopper_253_1.nasl +lib/nessus/plugins/freebsd_racoon_20040116a.nasl +lib/nessus/plugins/freebsd_racoon_20040407b.nasl +lib/nessus/plugins/freebsd_rsync_257.nasl +lib/nessus/plugins/freebsd_rsync_261.nasl +lib/nessus/plugins/freebsd_samba_301_2.nasl +lib/nessus/plugins/freebsd_setiathome_308.nasl +lib/nessus/plugins/freebsd_setsockopt_521_4.nasl +lib/nessus/plugins/freebsd_shmat.nasl +lib/nessus/plugins/freebsd_squid_255.nasl +lib/nessus/plugins/freebsd_squid_255_9.nasl +lib/nessus/plugins/freebsd_ssltelnet_0131.nasl +lib/nessus/plugins/freebsd_subversion_102_1.nasl +lib/nessus/plugins/freebsd_tcpdump_381_351.nasl +lib/nessus/plugins/freebsd_uri_vulns.nasl +lib/nessus/plugins/freebsd_uudeview_0520.nasl +lib/nessus/plugins/freebsd_wuftpd_262_3.nasl +lib/nessus/plugins/freebsd_xboing_24_2.nasl +lib/nessus/plugins/freebsd_xchat_208_2.nasl +lib/nessus/plugins/freebsd_xfree86_server_430_13.nasl +lib/nessus/plugins/freebsd_xine_0923_3.nasl +lib/nessus/plugins/freebsd_xml2_266.nasl +lib/nessus/plugins/freebsd_xorgs_clients_670.nasl +lib/nessus/plugins/freebsd_zebra_093b_7.nasl +lib/nessus/plugins/freebsd_zh_cce_040.nasl lib/nessus/plugins/freecmty_detection.nasl lib/nessus/plugins/frontpage.nasl lib/nessus/plugins/frontpage_authors.nasl @@ -568,6 +737,7 @@ lib/nessus/plugins/frontpage_shtml.nasl lib/nessus/plugins/frontpage_shtml_overflow.nasl lib/nessus/plugins/frontpage_xss.nasl +lib/nessus/plugins/fsecure_ssh_pass_pol_evasion.nasl lib/nessus/plugins/fsp_detection.nasl lib/nessus/plugins/fspd_directory_traversal.nasl lib/nessus/plugins/ftgate_pro_dos.nasl @@ -593,6 +763,8 @@ lib/nessus/plugins/ftp_root.nasl lib/nessus/plugins/ftp_servu_dos.nasl lib/nessus/plugins/ftp_servu_dos2.nasl +lib/nessus/plugins/ftp_servu_mdtm_overflow.nasl +lib/nessus/plugins/ftp_servu_overflow.nasl lib/nessus/plugins/ftp_servu_path_disclosure.nasl lib/nessus/plugins/ftp_servu_traversal.nasl lib/nessus/plugins/ftp_setproctitle.nasl @@ -601,6 +773,7 @@ lib/nessus/plugins/ftp_traversal.nasl lib/nessus/plugins/ftp_w98_devname_dos.nasl lib/nessus/plugins/ftp_write_dirs.nes +lib/nessus/plugins/ftp_xlight_overflow.nasl lib/nessus/plugins/ftp_zaurus.nasl lib/nessus/plugins/ftpd_1byte_overflow.nasl lib/nessus/plugins/ftpgate.nasl @@ -608,18 +781,24 @@ lib/nessus/plugins/ftpserver_detect_type_nd_version.nasl lib/nessus/plugins/ftpvoyager_overflow.nasl lib/nessus/plugins/fw1_udp_DoS.nasl +lib/nessus/plugins/gallery_auth_bypass.nasl lib/nessus/plugins/gallery_injection.nasl lib/nessus/plugins/gallery_injection2.nasl +lib/nessus/plugins/gallery_injection3.nasl lib/nessus/plugins/gallery_xss.nasl +lib/nessus/plugins/gamespy_denial.nasl lib/nessus/plugins/gamespy_detect.nasl lib/nessus/plugins/gatecrasher.nasl lib/nessus/plugins/gator.nasl lib/nessus/plugins/gator_detection.nasl lib/nessus/plugins/gauntlet_overflow.nasl lib/nessus/plugins/geeklog_admin_access.nasl +lib/nessus/plugins/gemitel_file_inclusion.nasl lib/nessus/plugins/generic_WEB-INF.nasl lib/nessus/plugins/girlfriend.nasl lib/nessus/plugins/glimpse.nasl +lib/nessus/plugins/global_settings.inc +lib/nessus/plugins/global_settings.nasl lib/nessus/plugins/gnapster_get_file.nasl lib/nessus/plugins/gnocatan_overflow.nasl lib/nessus/plugins/gnu_cfserv.nasl @@ -636,9 +815,12 @@ lib/nessus/plugins/guestbook_tr3_passwd.nasl lib/nessus/plugins/guild_ftp.nasl lib/nessus/plugins/gupta_sqlbase_overflows.nasl +lib/nessus/plugins/h323_detection.nasl +lib/nessus/plugins/halo_detection.nasl lib/nessus/plugins/handler.nasl lib/nessus/plugins/happymall_cmd_exec.nasl lib/nessus/plugins/healthd_detect.nasl +lib/nessus/plugins/helix_dos.nasl lib/nessus/plugins/helix_overflow.nasl lib/nessus/plugins/hello_detect.nasl lib/nessus/plugins/homefree.nasl @@ -646,8 +828,10 @@ lib/nessus/plugins/horde_turba_path_disclosure.nasl lib/nessus/plugins/hosting_controller.nasl lib/nessus/plugins/hotnews_code_injection.nasl +lib/nessus/plugins/hotopentickets_unspecified_flaw.nasl lib/nessus/plugins/hotsync.nasl lib/nessus/plugins/hp_instant_toptools_dos.nasl +lib/nessus/plugins/hp_jadm_vuln.nasl lib/nessus/plugins/hp_jetdirect_vulns.nasl lib/nessus/plugins/hp_printer_display.nasl lib/nessus/plugins/hp_remote_print.nasl @@ -662,6 +846,7 @@ lib/nessus/plugins/htsearch_config_switch.nasl lib/nessus/plugins/htsearch_location.nasl lib/nessus/plugins/http-rpc-epmap.nasl +lib/nessus/plugins/http_asn1_decoding.nasl lib/nessus/plugins/http_func.inc lib/nessus/plugins/http_ids_evasion.nasl lib/nessus/plugins/http_keepalive.inc @@ -748,9 +933,12 @@ lib/nessus/plugins/imail_imonitor_overflow.nasl lib/nessus/plugins/imap4_banner.nasl lib/nessus/plugins/imap4_rev1_overflow.nasl +lib/nessus/plugins/imap_arbitrary_file_retrieval.nasl lib/nessus/plugins/imap_body_overflow.nasl lib/nessus/plugins/imap_overflow.nasl lib/nessus/plugins/imate_overflow.nasl +lib/nessus/plugins/imp_content_type_xss.nasl +lib/nessus/plugins/imp_detect.nasl lib/nessus/plugins/imp_mime_viewer_html_xss.nasl lib/nessus/plugins/imp_session_hijacking.nasl lib/nessus/plugins/imp_sql_injection.nasl @@ -759,6 +947,7 @@ lib/nessus/plugins/info2www.nasl lib/nessus/plugins/informix_traversal.nasl lib/nessus/plugins/infosrch.nasl +lib/nessus/plugins/inktomi_path_disclosure.nasl lib/nessus/plugins/inn.nasl lib/nessus/plugins/inn_control_message_overflow.nasl lib/nessus/plugins/innd_overflow.nasl @@ -768,8 +957,11 @@ lib/nessus/plugins/interscan_vw_cgi.nasl lib/nessus/plugins/invision_power_board.nasl lib/nessus/plugins/invision_power_board_calendar_sql_injection.nasl +lib/nessus/plugins/invision_power_board_ssi_sql_injection.nasl +lib/nessus/plugins/invision_power_board_xss.nasl lib/nessus/plugins/invision_power_top_site_sql_injection.nasl lib/nessus/plugins/ion_p.nasl +lib/nessus/plugins/ipb_sql_disclosure.nasl lib/nessus/plugins/ipinsight_detection.nasl lib/nessus/plugins/iplanet_app_server_detection.nasl lib/nessus/plugins/iplanet_app_server_overflow.nasl @@ -793,17 +985,25 @@ lib/nessus/plugins/iws_shtml.nasl lib/nessus/plugins/ixmail_arbitrary_file_upload.nasl lib/nessus/plugins/ixmail_sql_injection.nasl +lib/nessus/plugins/java_jre_jdk_dos.nasl +lib/nessus/plugins/java_source_retrieval.nasl lib/nessus/plugins/jboss_source.nasl +lib/nessus/plugins/jbrowser_multiple_vulns.nasl +lib/nessus/plugins/jelsoft_vbulletin_xss.nasl +lib/nessus/plugins/jetroot.nasl lib/nessus/plugins/jeus_url_xss.nasl +lib/nessus/plugins/jigsaw_2_2_4.nasl lib/nessus/plugins/jigsaw_msdos_dev_DoS.nasl lib/nessus/plugins/jj.nasl lib/nessus/plugins/jmf_privs_escalation.nasl lib/nessus/plugins/jolt.nasl lib/nessus/plugins/jolt2.nasl lib/nessus/plugins/jordan_telnet_overflow.nasl +lib/nessus/plugins/jportal_sql_injection.nasl lib/nessus/plugins/jrun.nasl lib/nessus/plugins/jrun_dir_listing.nasl lib/nessus/plugins/jrun_getdir.nasl +lib/nessus/plugins/js.scob.trojan.nasl lib/nessus/plugins/jserv_execute.nasl lib/nessus/plugins/jwalk_traversal.nasl lib/nessus/plugins/kazaa_installed.nasl @@ -820,6 +1020,7 @@ lib/nessus/plugins/kietu_code_injection.nasl lib/nessus/plugins/knfs_dos.nasl lib/nessus/plugins/knowledge_builder_code_execution.nasl +lib/nessus/plugins/korgo.nasl lib/nessus/plugins/kpym_telnet_overflow.nasl lib/nessus/plugins/krb_pingpong.nasl lib/nessus/plugins/kuang2_the_virus.nasl @@ -837,15 +1038,17 @@ lib/nessus/plugins/leafnode_version.nasl lib/nessus/plugins/leapftp_overflow.nasl lib/nessus/plugins/lednews_xss.nasl +lib/nessus/plugins/leifwright_blog_cmd_execution.nasl lib/nessus/plugins/les_visiteurs.nasl lib/nessus/plugins/libgtop_daemon.nasl -lib/nessus/plugins/libwhisker_settings.nasl lib/nessus/plugins/limewire_installed.nasl lib/nessus/plugins/line_overflow.nasl lib/nessus/plugins/linksys_ap_default_password.nasl lib/nessus/plugins/linksys_dos.nasl lib/nessus/plugins/linksys_empty_GET_DoS.nasl lib/nessus/plugins/linksys_gozila_cgi_DoS.nasl +lib/nessus/plugins/linksys_next_file_file_disclosure.nasl +lib/nessus/plugins/linux26_tcpopt_dos.nasl lib/nessus/plugins/linux_tftp.nes lib/nessus/plugins/linux_zero_len_fragment.nasl lib/nessus/plugins/linuxconf_detect.nasl @@ -868,7 +1071,19 @@ lib/nessus/plugins/lpd_overflow.nasl lib/nessus/plugins/lsh_overflow.nasl lib/nessus/plugins/macos_x_directory_svc_dos.nasl +lib/nessus/plugins/macosx_SecUpd20031104.nasl +lib/nessus/plugins/macosx_SecUpd20031205.nasl +lib/nessus/plugins/macosx_SecUpd20031219.nasl +lib/nessus/plugins/macosx_SecUpd20040126.nasl +lib/nessus/plugins/macosx_SecUpd20040503.nasl +lib/nessus/plugins/macosx_SecUpd20040524.nasl +lib/nessus/plugins/macosx_SecUpd20040607.nasl +lib/nessus/plugins/macosx_multiple_vulns.nasl +lib/nessus/plugins/macosx_server_default_password.nasl +lib/nessus/plugins/macosx_version.nasl lib/nessus/plugins/magic_winmail_pop_format_string.nasl +lib/nessus/plugins/mail_asn1_decoding.nasl +lib/nessus/plugins/mailman_password_retrieval.nasl lib/nessus/plugins/mailman_webmail.nasl lib/nessus/plugins/mailmax_imap_overflows.nasl lib/nessus/plugins/mailmax_imap_overflows2.nasl @@ -879,11 +1094,13 @@ lib/nessus/plugins/mambo.nasl lib/nessus/plugins/mambo_code_injection.nasl lib/nessus/plugins/mambo_xss.nasl +lib/nessus/plugins/mambo_xss2.nasl lib/nessus/plugins/manpage_file_disclosure.nasl lib/nessus/plugins/mantis_detect.nasl lib/nessus/plugins/mantis_multiple_vulns.nasl lib/nessus/plugins/marconi_dos.nasl lib/nessus/plugins/master_index_search.nasl +lib/nessus/plugins/mcafee_installed.nasl lib/nessus/plugins/mcms_overflow.nasl lib/nessus/plugins/mdaemon.nasl lib/nessus/plugins/mdaemon_create_overflow.nasl @@ -892,6 +1109,7 @@ lib/nessus/plugins/mdaemon_webconfig.nasl lib/nessus/plugins/mdaemon_worldclient.nasl lib/nessus/plugins/mdbms_overflow.nasl +lib/nessus/plugins/mdns.nasl lib/nessus/plugins/mediahouse_statistics_server.nasl lib/nessus/plugins/mediahouse_statistics_web_server.nasl lib/nessus/plugins/mercur_auth_overflow.nasl @@ -922,16 +1140,23 @@ lib/nessus/plugins/mod_ntlm.nasl lib/nessus/plugins/mod_python_handle.nasl lib/nessus/plugins/mod_python_malformed_query.nasl +lib/nessus/plugins/mod_rootme_backdoor.nasl +lib/nessus/plugins/mod_ssl_hook_functions_format_string_vuln.nasl lib/nessus/plugins/mod_ssl_offby1.nasl lib/nessus/plugins/mod_ssl_overflow.nasl +lib/nessus/plugins/mod_ssl_uuencode_binary.nasl lib/nessus/plugins/mod_ssl_wildcard_dns_xss.nasl lib/nessus/plugins/mod_survey_sql_injection.nasl lib/nessus/plugins/monkeyweb_post_DoS.nasl lib/nessus/plugins/monkeyweb_too_big_post.nasl +lib/nessus/plugins/moodle_xss.nasl lib/nessus/plugins/mountd_overflow.nasl +lib/nessus/plugins/mozilla_firefox_code_exec.nasl lib/nessus/plugins/mpcsw_guestbook_database.nasl lib/nessus/plugins/mq_toolbar_detection.nasl lib/nessus/plugins/ms_index_server.nasl +lib/nessus/plugins/ms_invalid_cookie.nasl +lib/nessus/plugins/ms_kb835732_ssl.nasl lib/nessus/plugins/ms_siteserver_info_disclosure.nasl lib/nessus/plugins/ms_telnet_overflow.nasl lib/nessus/plugins/msadcs_dll.nasl @@ -965,12 +1190,14 @@ lib/nessus/plugins/my_little_forum_xss.nasl lib/nessus/plugins/mycio_detect.nasl lib/nessus/plugins/mycio_directory_traversal.nasl +lib/nessus/plugins/mydoom_virus.nasl lib/nessus/plugins/myguestbk_admin_access.nasl lib/nessus/plugins/myphpPageTool_code_injection.nasl lib/nessus/plugins/myphpcalendar_injection.nasl lib/nessus/plugins/myphpnuke_code_injection.nasl lib/nessus/plugins/myserver_dos.nasl lib/nessus/plugins/myserver_traversal.nasl +lib/nessus/plugins/mysql_auth_bypass_zeropass.nasl lib/nessus/plugins/mysql_bad_password.nasl lib/nessus/plugins/mysql_double_free.nasl lib/nessus/plugins/mysql_flaws.nasl @@ -981,6 +1208,7 @@ lib/nessus/plugins/nai_webshield_info.nasl lib/nessus/plugins/nai_webshield_overflow.nasl lib/nessus/plugins/napster_detect.nasl +lib/nessus/plugins/nav_installed.nasl lib/nessus/plugins/ncacn_http.nasl lib/nessus/plugins/ncase_detection.nasl lib/nessus/plugins/ncbook_cgi.nasl @@ -1000,6 +1228,7 @@ lib/nessus/plugins/netcharts_default_password.nasl lib/nessus/plugins/netcommerce_sql.nasl lib/nessus/plugins/netgear_default_password.nasl +lib/nessus/plugins/netgear_hidden_password.nasl lib/nessus/plugins/netgear_password_disclosure.nasl lib/nessus/plugins/netgear_prosafe_dos.nasl lib/nessus/plugins/netinfo_detect.nasl @@ -1016,11 +1245,15 @@ lib/nessus/plugins/netscape_imap_overflow.nasl lib/nessus/plugins/netscape_pop_auth.nasl lib/nessus/plugins/netscape_publishing_expert_psuser.nasl +lib/nessus/plugins/netscape_rev_proxy.nasl +lib/nessus/plugins/netscape_server_default_files.nasl lib/nessus/plugins/netscape_wp_tag.nasl lib/nessus/plugins/netstat.nasl lib/nessus/plugins/nettools_cmd_exec.nasl +lib/nessus/plugins/netware_ldap_search_request.nasl lib/nessus/plugins/netware_perl_overflow.nasl lib/nessus/plugins/netware_post_perl.nasl +lib/nessus/plugins/netware_tomcat_sourcecode_viewer.nasl lib/nessus/plugins/network_func.inc lib/nessus/plugins/newdsn.nasl lib/nessus/plugins/newsdesk.nasl @@ -1033,6 +1266,7 @@ lib/nessus/plugins/nikto_wrapper.nes lib/nessus/plugins/nimda.nasl lib/nessus/plugins/niprint_dos.nasl +lib/nessus/plugins/nis_get_passwd_map.nasl lib/nessus/plugins/nis_server.nasl lib/nessus/plugins/nisd_overflow.nasl lib/nessus/plugins/niteserver_ftp_dir_trav.nasl @@ -1050,19 +1284,27 @@ lib/nessus/plugins/nortel_pwdless2.nasl lib/nessus/plugins/notes_detection.nasl lib/nessus/plugins/notes_mta_dos.nasl +lib/nessus/plugins/notesinicheck.nasl lib/nessus/plugins/novell_border_manager.nasl +lib/nessus/plugins/novell_groupwise_servletmanager_default_password.nasl lib/nessus/plugins/novell_groupwise_webacc_information_disclosure.nasl +lib/nessus/plugins/novell_netbasic_directory_traversal.nasl +lib/nessus/plugins/novell_novonyx_default_files.nasl +lib/nessus/plugins/novell_viewcode.nasl lib/nessus/plugins/nph-exploitscanget.nasl lib/nessus/plugins/nph-publish.nasl lib/nessus/plugins/nph-test-cgi.nasl +lib/nessus/plugins/nqt_xss.nasl lib/nessus/plugins/nsiislog_dll.nasl lib/nessus/plugins/nsm_format_strings.nasl lib/nessus/plugins/nt_ftp_guest.nasl lib/nessus/plugins/nt_spam.nasl lib/nessus/plugins/ntalk_detect.nasl +lib/nessus/plugins/ntds_get_info.nasl lib/nessus/plugins/ntp_open.nasl lib/nessus/plugins/ntp_overflow.nasl lib/nessus/plugins/nuked_clan_cmd_exec.nasl +lib/nessus/plugins/nuked_klan_file_include.nasl lib/nessus/plugins/nuked_klan_xss.nasl lib/nessus/plugins/nullhttpd_content_length.nasl lib/nessus/plugins/nx_web_content_file_include.nasl @@ -1073,6 +1315,7 @@ lib/nessus/plugins/odbc_tools_check.nasl lib/nessus/plugins/office_files.nasl lib/nessus/plugins/officescan_disclosure.nasl +lib/nessus/plugins/oftpd_dos.nasl lib/nessus/plugins/oneorzero_flaws.nasl lib/nessus/plugins/oops_overflow.nasl lib/nessus/plugins/openbb_sql_injection.nasl @@ -1090,9 +1333,13 @@ lib/nessus/plugins/openssh_rev_dns_lookup_bypass.nasl lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/openssh_uselogin_environment.nasl +lib/nessus/plugins/openssl_denial.nasl lib/nessus/plugins/openssl_overflow_generic_test.nasl lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/openwebmail_cmd_exec.nasl +lib/nessus/plugins/openwebmail_content_type_xss.nasl +lib/nessus/plugins/openwebmail_detect.nasl +lib/nessus/plugins/openwebmail_vacation_input_validation.nasl lib/nessus/plugins/opera_arbitrary_file_dropping.nasl lib/nessus/plugins/opera_heap_corruption.nasl lib/nessus/plugins/opera_href_overflow.nasl @@ -1103,6 +1350,7 @@ lib/nessus/plugins/oracle9i_apache_dms.nasl lib/nessus/plugins/oracle9i_dad_admin.nasl lib/nessus/plugins/oracle9i_globals_dot_jsa.nasl +lib/nessus/plugins/oracle9i_isqlplus_xss.nasl lib/nessus/plugins/oracle9i_java_process_manager.nasl lib/nessus/plugins/oracle9i_jsp_source.nasl lib/nessus/plugins/oracle9i_jspdefaulterror.nasl @@ -1118,9 +1366,12 @@ lib/nessus/plugins/oracle_dos.nasl lib/nessus/plugins/oracle_link_overflow.nasl lib/nessus/plugins/oracle_one_hour_install.nasl +lib/nessus/plugins/oracle_soap_vulns.nasl +lib/nessus/plugins/oracle_timezone_overflow.nasl lib/nessus/plugins/oracle_tnslsnr_security.nasl lib/nessus/plugins/oracle_tnslsnr_version.nasl lib/nessus/plugins/oracle_web_admin_server.nasl +lib/nessus/plugins/oracle_web_cache_multiple_vulns.nasl lib/nessus/plugins/oracle_xsql.nasl lib/nessus/plugins/oracle_xsql_query.nasl lib/nessus/plugins/orange_dos.nasl @@ -1128,12 +1379,19 @@ lib/nessus/plugins/osX_apache_finder.nasl lib/nessus/plugins/osX_apache_finder_content.nasl lib/nessus/plugins/os_fingerprint.nasl +lib/nessus/plugins/oscommerce_file_manager_disclosure.nasl lib/nessus/plugins/oscommerce_session_id_xss.nasl lib/nessus/plugins/oshare.nasl lib/nessus/plugins/ospf_detect.nasl +lib/nessus/plugins/osticket_attachment_code_execution.nasl +lib/nessus/plugins/osticket_backdoored.nasl +lib/nessus/plugins/osticket_large_attachment_upload.nasl +lib/nessus/plugins/osticket_setup_php_accessible.nasl +lib/nessus/plugins/osticket_view_attachments.nasl lib/nessus/plugins/overnet.nasl lib/nessus/plugins/owa-anonymous.nasl lib/nessus/plugins/owl_browse.nasl +lib/nessus/plugins/owls_file_disclosure.nasl lib/nessus/plugins/ows_bin_cgi.nasl lib/nessus/plugins/ows_overflow.nasl lib/nessus/plugins/p-news_priv_escalation.nasl @@ -1146,6 +1404,7 @@ lib/nessus/plugins/pam_smb.nasl lib/nessus/plugins/passwordless_cayman_router.nasl lib/nessus/plugins/passwordless_hp_printer.nasl +lib/nessus/plugins/passwordless_lexmark_printer.nasl lib/nessus/plugins/paypal_store_front_injection.nasl lib/nessus/plugins/pccsmysqladm.nasl lib/nessus/plugins/perlIS_dll_bufferoverflow.nasl @@ -1157,6 +1416,7 @@ lib/nessus/plugins/pftp_cleartext_passwords.nasl lib/nessus/plugins/pgpmail.nasl lib/nessus/plugins/pgpnet_detect.nasl +lib/nessus/plugins/phatbot_detection.nasl lib/nessus/plugins/phf.nasl lib/nessus/plugins/philboard_auth_bypass.nasl lib/nessus/plugins/philboard_db_access.nasl @@ -1167,6 +1427,7 @@ lib/nessus/plugins/php4_multiple_flaws.nasl lib/nessus/plugins/php4_path_disclosure.nasl lib/nessus/plugins/phpMyAdmin_file_reading.nasl +lib/nessus/plugins/phpMyAdmin_file_reading2.nasl lib/nessus/plugins/phpMyAdmin_multiple_flaws.nasl lib/nessus/plugins/phpMyExplorer.nasl lib/nessus/plugins/phpPgAdmin_file_reading.nasl @@ -1190,11 +1451,15 @@ lib/nessus/plugins/php_safe_mode.nasl lib/nessus/plugins/php_socket_iovec_alloc_overflow.nasl lib/nessus/plugins/php_split_mime.nasl +lib/nessus/plugins/php_strip_tags_memory_limit_vuln.nasl lib/nessus/plugins/phpay_info_disclosure.nasl lib/nessus/plugins/phpbb_sql_injection.nasl lib/nessus/plugins/phpbb_sql_injection2.nasl +lib/nessus/plugins/phpbb_sql_injection3.nasl +lib/nessus/plugins/phpbb_xss.nasl lib/nessus/plugins/phpcatalog_sql_injection.nasl lib/nessus/plugins/phpdig_code_injection.nasl +lib/nessus/plugins/phpgedview_directory_traversal.nasl lib/nessus/plugins/phpgedview_multiple_flaws.nasl lib/nessus/plugins/phpgroupware_file_include.nasl lib/nessus/plugins/phpinfo.nasl @@ -1213,6 +1478,9 @@ lib/nessus/plugins/ping_host.nasl lib/nessus/plugins/pingpong.inc lib/nessus/plugins/piranha.nasl +lib/nessus/plugins/pirelli_router_default_password.nasl +lib/nessus/plugins/pivot_file_inclusion.nasl +lib/nessus/plugins/pjreview_neo_file_reading.nasl lib/nessus/plugins/platinum_ftp.nasl lib/nessus/plugins/plusmail.nasl lib/nessus/plugins/pmachine_code_injection.nasl @@ -1239,7 +1507,9 @@ lib/nessus/plugins/postnuke_multiple_xss.nasl lib/nessus/plugins/postnuke_rating_dos.nasl lib/nessus/plugins/postnuke_sql_injection.nasl +lib/nessus/plugins/pound_format_strings.nasl lib/nessus/plugins/powerplay.nasl +lib/nessus/plugins/powerportal_path_disclosure.nasl lib/nessus/plugins/powerup_information_disclosure.nasl lib/nessus/plugins/pptp_detect.nasl lib/nessus/plugins/printenv.nasl @@ -1254,6 +1524,7 @@ lib/nessus/plugins/proftpd_pgsql_insertion.nasl lib/nessus/plugins/proftpd_pre10.nasl lib/nessus/plugins/proftpd_pre6_exploit.nasl +lib/nessus/plugins/propfind_internal_ip.nasl lib/nessus/plugins/proxomitron_dos.nasl lib/nessus/plugins/proxy_connect.nasl lib/nessus/plugins/proxy_cross_site_scripting.nasl @@ -1273,12 +1544,16 @@ lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl lib/nessus/plugins/qpopper_qvsnprinf_overflow.nasl +lib/nessus/plugins/qpopper_user_disclosure.nasl lib/nessus/plugins/quake3_dos.nasl +lib/nessus/plugins/qualiteam_xcart_cmd_exec.nasl lib/nessus/plugins/quickstore.nasl lib/nessus/plugins/quickstore2.nasl lib/nessus/plugins/quicktime_admin.nasl +lib/nessus/plugins/quicktime_heap_overflow.nasl lib/nessus/plugins/quicktime_player_overflow.nasl lib/nessus/plugins/quote.nasl +lib/nessus/plugins/racoon_cookie_malloc_dos.nasl lib/nessus/plugins/radiate_detection.nasl lib/nessus/plugins/radius_detect.nasl lib/nessus/plugins/radmin_detect.nasl @@ -1286,17 +1561,240 @@ lib/nessus/plugins/raptor_detect.nasl lib/nessus/plugins/raptor_isn.nasl lib/nessus/plugins/rbs.nasl +lib/nessus/plugins/readdesigncheck.nasl +lib/nessus/plugins/realplayer_file_handler_overflow.nasl lib/nessus/plugins/realplayer_png_heap_corruption.nasl +lib/nessus/plugins/realserver_defaultcfg.nasl lib/nessus/plugins/realserver_disclosure.nasl lib/nessus/plugins/realserver_malformed_request_dos.nasl lib/nessus/plugins/realserver_ussr_dos.nasl lib/nessus/plugins/realserverg2.nasl +lib/nessus/plugins/record_route.nasl +lib/nessus/plugins/redhat-RHSA-2002-119.nasl +lib/nessus/plugins/redhat-RHSA-2002-120.nasl +lib/nessus/plugins/redhat-RHSA-2002-121.nasl +lib/nessus/plugins/redhat-RHSA-2002-122.nasl +lib/nessus/plugins/redhat-RHSA-2002-123.nasl +lib/nessus/plugins/redhat-RHSA-2002-124.nasl +lib/nessus/plugins/redhat-RHSA-2002-125.nasl +lib/nessus/plugins/redhat-RHSA-2002-126.nasl +lib/nessus/plugins/redhat-RHSA-2002-128.nasl +lib/nessus/plugins/redhat-RHSA-2002-129.nasl +lib/nessus/plugins/redhat-RHSA-2002-130.nasl +lib/nessus/plugins/redhat-RHSA-2002-131.nasl +lib/nessus/plugins/redhat-RHSA-2002-136.nasl +lib/nessus/plugins/redhat-RHSA-2002-137.nasl +lib/nessus/plugins/redhat-RHSA-2002-138.nasl +lib/nessus/plugins/redhat-RHSA-2002-152.nasl +lib/nessus/plugins/redhat-RHSA-2002-154.nasl +lib/nessus/plugins/redhat-RHSA-2002-157.nasl +lib/nessus/plugins/redhat-RHSA-2002-161.nasl +lib/nessus/plugins/redhat-RHSA-2002-165.nasl +lib/nessus/plugins/redhat-RHSA-2002-167.nasl +lib/nessus/plugins/redhat-RHSA-2002-170.nasl +lib/nessus/plugins/redhat-RHSA-2002-173.nasl +lib/nessus/plugins/redhat-RHSA-2002-180.nasl +lib/nessus/plugins/redhat-RHSA-2002-181.nasl +lib/nessus/plugins/redhat-RHSA-2002-191.nasl +lib/nessus/plugins/redhat-RHSA-2002-195.nasl +lib/nessus/plugins/redhat-RHSA-2002-211.nasl +lib/nessus/plugins/redhat-RHSA-2002-214.nasl +lib/nessus/plugins/redhat-RHSA-2002-216.nasl +lib/nessus/plugins/redhat-RHSA-2002-221.nasl +lib/nessus/plugins/redhat-RHSA-2002-224.nasl +lib/nessus/plugins/redhat-RHSA-2002-227.nasl +lib/nessus/plugins/redhat-RHSA-2002-250.nasl +lib/nessus/plugins/redhat-RHSA-2002-251.nasl +lib/nessus/plugins/redhat-RHSA-2002-255.nasl +lib/nessus/plugins/redhat-RHSA-2002-256.nasl +lib/nessus/plugins/redhat-RHSA-2002-259.nasl +lib/nessus/plugins/redhat-RHSA-2002-261.nasl +lib/nessus/plugins/redhat-RHSA-2002-263.nasl +lib/nessus/plugins/redhat-RHSA-2002-271.nasl +lib/nessus/plugins/redhat-RHSA-2002-287.nasl +lib/nessus/plugins/redhat-RHSA-2002-289.nasl +lib/nessus/plugins/redhat-RHSA-2002-291.nasl +lib/nessus/plugins/redhat-RHSA-2002-294.nasl +lib/nessus/plugins/redhat-RHSA-2002-301.nasl +lib/nessus/plugins/redhat-RHSA-2002-302.nasl +lib/nessus/plugins/redhat-RHSA-2002-307.nasl +lib/nessus/plugins/redhat-RHSA-2002-312.nasl +lib/nessus/plugins/redhat-RHSA-2003-003.nasl +lib/nessus/plugins/redhat-RHSA-2003-007.nasl +lib/nessus/plugins/redhat-RHSA-2003-008.nasl +lib/nessus/plugins/redhat-RHSA-2003-009.nasl +lib/nessus/plugins/redhat-RHSA-2003-013.nasl +lib/nessus/plugins/redhat-RHSA-2003-016.nasl +lib/nessus/plugins/redhat-RHSA-2003-021.nasl +lib/nessus/plugins/redhat-RHSA-2003-022.nasl +lib/nessus/plugins/redhat-RHSA-2003-027.nasl +lib/nessus/plugins/redhat-RHSA-2003-028.nasl +lib/nessus/plugins/redhat-RHSA-2003-030.nasl +lib/nessus/plugins/redhat-RHSA-2003-033.nasl +lib/nessus/plugins/redhat-RHSA-2003-038.nasl +lib/nessus/plugins/redhat-RHSA-2003-045.nasl +lib/nessus/plugins/redhat-RHSA-2003-046.nasl +lib/nessus/plugins/redhat-RHSA-2003-048.nasl +lib/nessus/plugins/redhat-RHSA-2003-050.nasl +lib/nessus/plugins/redhat-RHSA-2003-052.nasl +lib/nessus/plugins/redhat-RHSA-2003-055.nasl +lib/nessus/plugins/redhat-RHSA-2003-058.nasl +lib/nessus/plugins/redhat-RHSA-2003-061.nasl +lib/nessus/plugins/redhat-RHSA-2003-063.nasl +lib/nessus/plugins/redhat-RHSA-2003-065.nasl +lib/nessus/plugins/redhat-RHSA-2003-068.nasl +lib/nessus/plugins/redhat-RHSA-2003-071.nasl +lib/nessus/plugins/redhat-RHSA-2003-074.nasl +lib/nessus/plugins/redhat-RHSA-2003-077.nasl +lib/nessus/plugins/redhat-RHSA-2003-081.nasl +lib/nessus/plugins/redhat-RHSA-2003-085.nasl +lib/nessus/plugins/redhat-RHSA-2003-087.nasl +lib/nessus/plugins/redhat-RHSA-2003-090.nasl +lib/nessus/plugins/redhat-RHSA-2003-094.nasl +lib/nessus/plugins/redhat-RHSA-2003-096.nasl +lib/nessus/plugins/redhat-RHSA-2003-102.nasl +lib/nessus/plugins/redhat-RHSA-2003-103.nasl +lib/nessus/plugins/redhat-RHSA-2003-111.nasl +lib/nessus/plugins/redhat-RHSA-2003-114.nasl +lib/nessus/plugins/redhat-RHSA-2003-119.nasl +lib/nessus/plugins/redhat-RHSA-2003-121.nasl +lib/nessus/plugins/redhat-RHSA-2003-134.nasl +lib/nessus/plugins/redhat-RHSA-2003-138.nasl +lib/nessus/plugins/redhat-RHSA-2003-145.nasl +lib/nessus/plugins/redhat-RHSA-2003-146.nasl +lib/nessus/plugins/redhat-RHSA-2003-147.nasl +lib/nessus/plugins/redhat-RHSA-2003-150.nasl +lib/nessus/plugins/redhat-RHSA-2003-151.nasl +lib/nessus/plugins/redhat-RHSA-2003-161.nasl +lib/nessus/plugins/redhat-RHSA-2003-163.nasl +lib/nessus/plugins/redhat-RHSA-2003-167.nasl +lib/nessus/plugins/redhat-RHSA-2003-176.nasl +lib/nessus/plugins/redhat-RHSA-2003-177.nasl +lib/nessus/plugins/redhat-RHSA-2003-180.nasl +lib/nessus/plugins/redhat-RHSA-2003-182.nasl +lib/nessus/plugins/redhat-RHSA-2003-193.nasl +lib/nessus/plugins/redhat-RHSA-2003-195.nasl +lib/nessus/plugins/redhat-RHSA-2003-197.nasl +lib/nessus/plugins/redhat-RHSA-2003-200.nasl +lib/nessus/plugins/redhat-RHSA-2003-201.nasl +lib/nessus/plugins/redhat-RHSA-2003-207.nasl +lib/nessus/plugins/redhat-RHSA-2003-223.nasl +lib/nessus/plugins/redhat-RHSA-2003-224.nasl +lib/nessus/plugins/redhat-RHSA-2003-231.nasl +lib/nessus/plugins/redhat-RHSA-2003-236.nasl +lib/nessus/plugins/redhat-RHSA-2003-239.nasl +lib/nessus/plugins/redhat-RHSA-2003-242.nasl +lib/nessus/plugins/redhat-RHSA-2003-244.nasl +lib/nessus/plugins/redhat-RHSA-2003-246.nasl +lib/nessus/plugins/redhat-RHSA-2003-249.nasl +lib/nessus/plugins/redhat-RHSA-2003-257.nasl +lib/nessus/plugins/redhat-RHSA-2003-259.nasl +lib/nessus/plugins/redhat-RHSA-2003-262.nasl +lib/nessus/plugins/redhat-RHSA-2003-268.nasl +lib/nessus/plugins/redhat-RHSA-2003-270.nasl +lib/nessus/plugins/redhat-RHSA-2003-274.nasl +lib/nessus/plugins/redhat-RHSA-2003-280.nasl +lib/nessus/plugins/redhat-RHSA-2003-284.nasl +lib/nessus/plugins/redhat-RHSA-2003-285.nasl +lib/nessus/plugins/redhat-RHSA-2003-289.nasl +lib/nessus/plugins/redhat-RHSA-2003-293.nasl +lib/nessus/plugins/redhat-RHSA-2003-297.nasl +lib/nessus/plugins/redhat-RHSA-2003-305.nasl +lib/nessus/plugins/redhat-RHSA-2003-310.nasl +lib/nessus/plugins/redhat-RHSA-2003-312.nasl +lib/nessus/plugins/redhat-RHSA-2003-314.nasl +lib/nessus/plugins/redhat-RHSA-2003-315.nasl +lib/nessus/plugins/redhat-RHSA-2003-317.nasl +lib/nessus/plugins/redhat-RHSA-2003-324.nasl +lib/nessus/plugins/redhat-RHSA-2003-334.nasl +lib/nessus/plugins/redhat-RHSA-2003-360.nasl +lib/nessus/plugins/redhat-RHSA-2003-372.nasl +lib/nessus/plugins/redhat-RHSA-2003-386.nasl +lib/nessus/plugins/redhat-RHSA-2003-389.nasl +lib/nessus/plugins/redhat-RHSA-2003-395.nasl +lib/nessus/plugins/redhat-RHSA-2003-399.nasl +lib/nessus/plugins/redhat-RHSA-2003-404.nasl +lib/nessus/plugins/redhat-RHSA-2003-408.nasl +lib/nessus/plugins/redhat-RHSA-2003-416.nasl +lib/nessus/plugins/redhat-RHSA-2003-419.nasl +lib/nessus/plugins/redhat-RHSA-2004-002.nasl +lib/nessus/plugins/redhat-RHSA-2004-004.nasl +lib/nessus/plugins/redhat-RHSA-2004-005.nasl +lib/nessus/plugins/redhat-RHSA-2004-008.nasl +lib/nessus/plugins/redhat-RHSA-2004-009.nasl +lib/nessus/plugins/redhat-RHSA-2004-015.nasl +lib/nessus/plugins/redhat-RHSA-2004-017.nasl +lib/nessus/plugins/redhat-RHSA-2004-019.nasl +lib/nessus/plugins/redhat-RHSA-2004-023.nasl +lib/nessus/plugins/redhat-RHSA-2004-031.nasl +lib/nessus/plugins/redhat-RHSA-2004-033.nasl +lib/nessus/plugins/redhat-RHSA-2004-035.nasl +lib/nessus/plugins/redhat-RHSA-2004-041.nasl +lib/nessus/plugins/redhat-RHSA-2004-044.nasl +lib/nessus/plugins/redhat-RHSA-2004-045.nasl +lib/nessus/plugins/redhat-RHSA-2004-047.nasl +lib/nessus/plugins/redhat-RHSA-2004-050.nasl +lib/nessus/plugins/redhat-RHSA-2004-053.nasl +lib/nessus/plugins/redhat-RHSA-2004-056.nasl +lib/nessus/plugins/redhat-RHSA-2004-058.nasl +lib/nessus/plugins/redhat-RHSA-2004-060.nasl +lib/nessus/plugins/redhat-RHSA-2004-061.nasl +lib/nessus/plugins/redhat-RHSA-2004-064.nasl +lib/nessus/plugins/redhat-RHSA-2004-066.nasl +lib/nessus/plugins/redhat-RHSA-2004-069.nasl +lib/nessus/plugins/redhat-RHSA-2004-072.nasl +lib/nessus/plugins/redhat-RHSA-2004-073.nasl +lib/nessus/plugins/redhat-RHSA-2004-074.nasl +lib/nessus/plugins/redhat-RHSA-2004-084.nasl +lib/nessus/plugins/redhat-RHSA-2004-090.nasl +lib/nessus/plugins/redhat-RHSA-2004-096.nasl +lib/nessus/plugins/redhat-RHSA-2004-103.nasl +lib/nessus/plugins/redhat-RHSA-2004-105.nasl +lib/nessus/plugins/redhat-RHSA-2004-110.nasl +lib/nessus/plugins/redhat-RHSA-2004-119.nasl +lib/nessus/plugins/redhat-RHSA-2004-120.nasl +lib/nessus/plugins/redhat-RHSA-2004-133.nasl +lib/nessus/plugins/redhat-RHSA-2004-136.nasl +lib/nessus/plugins/redhat-RHSA-2004-152.nasl +lib/nessus/plugins/redhat-RHSA-2004-153.nasl +lib/nessus/plugins/redhat-RHSA-2004-156.nasl +lib/nessus/plugins/redhat-RHSA-2004-157.nasl +lib/nessus/plugins/redhat-RHSA-2004-160.nasl +lib/nessus/plugins/redhat-RHSA-2004-165.nasl +lib/nessus/plugins/redhat-RHSA-2004-172.nasl +lib/nessus/plugins/redhat-RHSA-2004-174.nasl +lib/nessus/plugins/redhat-RHSA-2004-178.nasl +lib/nessus/plugins/redhat-RHSA-2004-180.nasl +lib/nessus/plugins/redhat-RHSA-2004-183.nasl +lib/nessus/plugins/redhat-RHSA-2004-188.nasl +lib/nessus/plugins/redhat-RHSA-2004-190.nasl +lib/nessus/plugins/redhat-RHSA-2004-191.nasl +lib/nessus/plugins/redhat-RHSA-2004-192.nasl +lib/nessus/plugins/redhat-RHSA-2004-219.nasl +lib/nessus/plugins/redhat-RHSA-2004-222.nasl +lib/nessus/plugins/redhat-RHSA-2004-233.nasl +lib/nessus/plugins/redhat-RHSA-2004-234.nasl +lib/nessus/plugins/redhat-RHSA-2004-236.nasl +lib/nessus/plugins/redhat-RHSA-2004-240.nasl +lib/nessus/plugins/redhat-RHSA-2004-242.nasl +lib/nessus/plugins/redhat-RHSA-2004-244.nasl +lib/nessus/plugins/redhat-RHSA-2004-245.nasl +lib/nessus/plugins/redhat-RHSA-2004-249.nasl +lib/nessus/plugins/redhat-RHSA-2004-255.nasl +lib/nessus/plugins/redhat-RHSA-2004-260.nasl +lib/nessus/plugins/redhat-RHSA-2004-342.nasl +lib/nessus/plugins/redhat-RHSA-2004-354.nasl +lib/nessus/plugins/redhat-RHSA-2004-360.nasl +lib/nessus/plugins/redhat-RHSA-2004-392.nasl +lib/nessus/plugins/redhat-RHSA-2004-395.nasl +lib/nessus/plugins/redhat_fixes.nasl lib/nessus/plugins/relative_field_vulnerability.nasl lib/nessus/plugins/remote_pc_detect.nasl lib/nessus/plugins/remwatch.nasl lib/nessus/plugins/resin_path_disclosure.nasl lib/nessus/plugins/resin_server_status.nasl lib/nessus/plugins/resin_traversal.nasl +lib/nessus/plugins/reviewpost_sql.nasl lib/nessus/plugins/rexecd.nasl lib/nessus/plugins/rfparalyze.nasl lib/nessus/plugins/rfpoison.nasl @@ -1304,9 +1802,11 @@ lib/nessus/plugins/rich_media_ecommerce_stores_sensitive_information_insecurely.nasl lib/nessus/plugins/rip_detect.nasl lib/nessus/plugins/rip_poison.nasl +lib/nessus/plugins/ris_detect.nasl lib/nessus/plugins/rlogin.nasl lib/nessus/plugins/rlogin_froot.nasl lib/nessus/plugins/roads_cgi.nasl +lib/nessus/plugins/robotftp.nasl lib/nessus/plugins/rockliffe_mailsite_overflow.nasl lib/nessus/plugins/rot13sj.nasl lib/nessus/plugins/rover_pop3_overflow.nasl @@ -1356,6 +1856,7 @@ lib/nessus/plugins/rpc_ypupated.nasl lib/nessus/plugins/rpc_ypxfrd.nasl lib/nessus/plugins/rpcinfo.nasl +lib/nessus/plugins/rpm.inc lib/nessus/plugins/rpm_query.nasl lib/nessus/plugins/rsh.nasl lib/nessus/plugins/rsh_null.nasl @@ -1363,6 +1864,7 @@ lib/nessus/plugins/rsync_array_overflow.nasl lib/nessus/plugins/rsync_heap_overflow.nasl lib/nessus/plugins/rsync_modules.nasl +lib/nessus/plugins/rsync_path_traversal.nasl lib/nessus/plugins/rtsp_detect.nasl lib/nessus/plugins/rusers_output.nasl lib/nessus/plugins/rwalld_format_string.nasl @@ -1387,7 +1889,12 @@ lib/nessus/plugins/sambar_sendmail.nasl lib/nessus/plugins/sambar_sysadmin.nasl lib/nessus/plugins/sambar_xss.nasl +lib/nessus/plugins/sami_ftp.nasl +lib/nessus/plugins/samihttp_1_0_4.nasl +lib/nessus/plugins/sandsurfer_user_auth.nasl +lib/nessus/plugins/sandsurfer_xss.nasl lib/nessus/plugins/sapdb_detect.nasl +lib/nessus/plugins/sasser_virus.nasl lib/nessus/plugins/savant_cgi_download.nasl lib/nessus/plugins/savant_cgitest.nasl lib/nessus/plugins/savant_content_length_DoS.nasl @@ -1444,6 +1951,7 @@ lib/nessus/plugins/shells.nasl lib/nessus/plugins/shiva_default_pass.nasl lib/nessus/plugins/shlwapi_dll_dos.nasl +lib/nessus/plugins/shopcartcgi_traversal.nasl lib/nessus/plugins/shopping_cart_information_disclosure.nasl lib/nessus/plugins/shopplus_information_disclosure.nasl lib/nessus/plugins/shopsearch_sql_injection.nasl @@ -1451,12 +1959,14 @@ lib/nessus/plugins/shoutcast_log_xss.nasl lib/nessus/plugins/shoutcast_version.nasl lib/nessus/plugins/showmount.nasl +lib/nessus/plugins/showphoto_sql_injection.nasl lib/nessus/plugins/shttp_detect.nasl lib/nessus/plugins/silverstream_database.nasl lib/nessus/plugins/silverstream_dirlisting.nasl lib/nessus/plugins/simple_chat_user_disclosure.nasl lib/nessus/plugins/simpleserverwww_dos.nasl lib/nessus/plugins/simplewww.nasl +lib/nessus/plugins/singapore_file_disclosure.nasl lib/nessus/plugins/sip_detection.nasl lib/nessus/plugins/sip_status_server.nasl lib/nessus/plugins/siteUserMod.nasl @@ -1471,6 +1981,7 @@ lib/nessus/plugins/slmail_webmail_flaws.nasl lib/nessus/plugins/smad.nes lib/nessus/plugins/small_ftp_traversal.nasl +lib/nessus/plugins/smallftpd_1_0_3.nasl lib/nessus/plugins/smartftp_overflow.nasl lib/nessus/plugins/smartserver_pop_overflow.nasl lib/nessus/plugins/smb2www_cmd_exec.nasl @@ -1482,6 +1993,7 @@ lib/nessus/plugins/smb_dom2sid.nasl lib/nessus/plugins/smb_enum_services.nasl lib/nessus/plugins/smb_enum_shares.nasl +lib/nessus/plugins/smb_file_funcs.inc lib/nessus/plugins/smb_group_account_op.nasl lib/nessus/plugins/smb_group_admin.nasl lib/nessus/plugins/smb_group_backup_op.nasl @@ -1491,6 +2003,7 @@ lib/nessus/plugins/smb_group_system_op.nasl lib/nessus/plugins/smb_groups_guest.nasl lib/nessus/plugins/smb_host2sid.nasl +lib/nessus/plugins/smb_kb835732.nasl lib/nessus/plugins/smb_lanman_browse_list.nasl lib/nessus/plugins/smb_localusers_autodisabled.nasl lib/nessus/plugins/smb_localusers_changepw.nasl @@ -1510,6 +2023,7 @@ lib/nessus/plugins/smb_netusergetinfo.nasl lib/nessus/plugins/smb_netusergetinfo_local.nasl lib/nessus/plugins/smb_nt.inc +lib/nessus/plugins/smb_nt_kb870669.nasl lib/nessus/plugins/smb_nt_ms00-029.nasl lib/nessus/plugins/smb_nt_ms00-035.nasl lib/nessus/plugins/smb_nt_ms00-036.nasl @@ -1597,6 +2111,24 @@ lib/nessus/plugins/smb_nt_ms04-001.nasl lib/nessus/plugins/smb_nt_ms04-002.nasl lib/nessus/plugins/smb_nt_ms04-003.nasl +lib/nessus/plugins/smb_nt_ms04-006.nasl +lib/nessus/plugins/smb_nt_ms04-007.nasl +lib/nessus/plugins/smb_nt_ms04-008.nasl +lib/nessus/plugins/smb_nt_ms04-009.nasl +lib/nessus/plugins/smb_nt_ms04-010.nasl +lib/nessus/plugins/smb_nt_ms04-011.nasl +lib/nessus/plugins/smb_nt_ms04-012.nasl +lib/nessus/plugins/smb_nt_ms04-013.nasl +lib/nessus/plugins/smb_nt_ms04-014.nasl +lib/nessus/plugins/smb_nt_ms04-015.nasl +lib/nessus/plugins/smb_nt_ms04-016.nasl +lib/nessus/plugins/smb_nt_ms04-018.nasl +lib/nessus/plugins/smb_nt_ms04-019.nasl +lib/nessus/plugins/smb_nt_ms04-020.nasl +lib/nessus/plugins/smb_nt_ms04-021.nasl +lib/nessus/plugins/smb_nt_ms04-022.nasl +lib/nessus/plugins/smb_nt_ms04-023.nasl +lib/nessus/plugins/smb_nt_ms04-024.nasl lib/nessus/plugins/smb_null_params_dos.nasl lib/nessus/plugins/smb_reg_MTS_access.nasl lib/nessus/plugins/smb_reg_autologon.nasl @@ -1616,6 +2148,7 @@ lib/nessus/plugins/smb_reg_sfcdisable.nasl lib/nessus/plugins/smb_reg_snmp_access.nasl lib/nessus/plugins/smb_reg_trojan_paths.nasl +lib/nessus/plugins/smb_reg_windowsautoupdate.nasl lib/nessus/plugins/smb_reg_winlogon_permissions.nasl lib/nessus/plugins/smb_reg_winvnc_perms.nasl lib/nessus/plugins/smb_registry_access.nasl @@ -1634,6 +2167,7 @@ lib/nessus/plugins/smb_users_pwexpiry.nasl lib/nessus/plugins/smb_virii.nasl lib/nessus/plugins/smb_xp_ms01-059.nasl +lib/nessus/plugins/smc2804wbr_default_password.nasl lib/nessus/plugins/smc_www_dos.nasl lib/nessus/plugins/smtp_AV_42zip_DoS.nasl lib/nessus/plugins/smtp_bounce.nasl @@ -1677,15 +2211,1007 @@ lib/nessus/plugins/socks4_username_overflow.nasl lib/nessus/plugins/socks4a_hostname_overflow.nasl lib/nessus/plugins/sojourn.nasl +lib/nessus/plugins/solaris.inc +lib/nessus/plugins/solaris251_103558.nasl +lib/nessus/plugins/solaris251_103566.nasl +lib/nessus/plugins/solaris251_103582.nasl +lib/nessus/plugins/solaris251_103594.nasl +lib/nessus/plugins/solaris251_103603.nasl +lib/nessus/plugins/solaris251_103627.nasl +lib/nessus/plugins/solaris251_103630.nasl +lib/nessus/plugins/solaris251_103640.nasl +lib/nessus/plugins/solaris251_103663.nasl +lib/nessus/plugins/solaris251_103670.nasl +lib/nessus/plugins/solaris251_103680.nasl +lib/nessus/plugins/solaris251_103686.nasl +lib/nessus/plugins/solaris251_103690.nasl +lib/nessus/plugins/solaris251_103699.nasl +lib/nessus/plugins/solaris251_103738.nasl +lib/nessus/plugins/solaris251_103743.nasl +lib/nessus/plugins/solaris251_103817.nasl +lib/nessus/plugins/solaris251_103866.nasl +lib/nessus/plugins/solaris251_103867.nasl +lib/nessus/plugins/solaris251_103879.nasl +lib/nessus/plugins/solaris251_103882.nasl +lib/nessus/plugins/solaris251_103891.nasl +lib/nessus/plugins/solaris251_103901.nasl +lib/nessus/plugins/solaris251_103959.nasl +lib/nessus/plugins/solaris251_103995.nasl +lib/nessus/plugins/solaris251_104010.nasl +lib/nessus/plugins/solaris251_104093.nasl +lib/nessus/plugins/solaris251_104166.nasl +lib/nessus/plugins/solaris251_104178.nasl +lib/nessus/plugins/solaris251_104212.nasl +lib/nessus/plugins/solaris251_104220.nasl +lib/nessus/plugins/solaris251_104266.nasl +lib/nessus/plugins/solaris251_104283.nasl +lib/nessus/plugins/solaris251_104331.nasl +lib/nessus/plugins/solaris251_104334.nasl +lib/nessus/plugins/solaris251_104338.nasl +lib/nessus/plugins/solaris251_104471.nasl +lib/nessus/plugins/solaris251_104489.nasl +lib/nessus/plugins/solaris251_104498.nasl +lib/nessus/plugins/solaris251_104516.nasl +lib/nessus/plugins/solaris251_104533.nasl +lib/nessus/plugins/solaris251_104552.nasl +lib/nessus/plugins/solaris251_104578.nasl +lib/nessus/plugins/solaris251_104613.nasl +lib/nessus/plugins/solaris251_104637.nasl +lib/nessus/plugins/solaris251_104650.nasl +lib/nessus/plugins/solaris251_104654.nasl +lib/nessus/plugins/solaris251_104661.nasl +lib/nessus/plugins/solaris251_104692.nasl +lib/nessus/plugins/solaris251_104736.nasl +lib/nessus/plugins/solaris251_104776.nasl +lib/nessus/plugins/solaris251_104795.nasl +lib/nessus/plugins/solaris251_104818.nasl +lib/nessus/plugins/solaris251_104841.nasl +lib/nessus/plugins/solaris251_104849.nasl +lib/nessus/plugins/solaris251_104873.nasl +lib/nessus/plugins/solaris251_104893.nasl +lib/nessus/plugins/solaris251_104935.nasl +lib/nessus/plugins/solaris251_104960.nasl +lib/nessus/plugins/solaris251_104968.nasl +lib/nessus/plugins/solaris251_104976.nasl +lib/nessus/plugins/solaris251_105050.nasl +lib/nessus/plugins/solaris251_105076.nasl +lib/nessus/plugins/solaris251_105092.nasl +lib/nessus/plugins/solaris251_105133.nasl +lib/nessus/plugins/solaris251_105165.nasl +lib/nessus/plugins/solaris251_105203.nasl +lib/nessus/plugins/solaris251_105251.nasl +lib/nessus/plugins/solaris251_105299.nasl +lib/nessus/plugins/solaris251_105784.nasl +lib/nessus/plugins/solaris251_105962.nasl +lib/nessus/plugins/solaris251_105998.nasl +lib/nessus/plugins/solaris251_106160.nasl +lib/nessus/plugins/solaris251_106224.nasl +lib/nessus/plugins/solaris251_106382.nasl +lib/nessus/plugins/solaris251_106396.nasl +lib/nessus/plugins/solaris251_106411.nasl +lib/nessus/plugins/solaris251_106441.nasl +lib/nessus/plugins/solaris251_106602.nasl +lib/nessus/plugins/solaris251_106662.nasl +lib/nessus/plugins/solaris251_106663.nasl +lib/nessus/plugins/solaris251_106689.nasl +lib/nessus/plugins/solaris251_106905.nasl +lib/nessus/plugins/solaris251_106909.nasl +lib/nessus/plugins/solaris251_107020.nasl +lib/nessus/plugins/solaris251_107756.nasl +lib/nessus/plugins/solaris251_108194.nasl +lib/nessus/plugins/solaris251_108205.nasl +lib/nessus/plugins/solaris251_108289.nasl +lib/nessus/plugins/solaris251_108363.nasl +lib/nessus/plugins/solaris251_108470.nasl +lib/nessus/plugins/solaris251_108497.nasl +lib/nessus/plugins/solaris251_108658.nasl +lib/nessus/plugins/solaris251_108802.nasl +lib/nessus/plugins/solaris251_108928.nasl +lib/nessus/plugins/solaris251_109275.nasl +lib/nessus/plugins/solaris251_109392.nasl +lib/nessus/plugins/solaris251_109721.nasl +lib/nessus/plugins/solaris251_111025.nasl +lib/nessus/plugins/solaris251_111279.nasl +lib/nessus/plugins/solaris251_111281.nasl +lib/nessus/plugins/solaris251_111499.nasl +lib/nessus/plugins/solaris251_111576.nasl +lib/nessus/plugins/solaris251_111840.nasl +lib/nessus/plugins/solaris251_111916.nasl +lib/nessus/plugins/solaris251_112086.nasl +lib/nessus/plugins/solaris251_112454.nasl +lib/nessus/plugins/solaris251_112770.nasl +lib/nessus/plugins/solaris251_112891.nasl +lib/nessus/plugins/solaris251_x86_103559.nasl +lib/nessus/plugins/solaris251_x86_103581.nasl +lib/nessus/plugins/solaris251_x86_103595.nasl +lib/nessus/plugins/solaris251_x86_103604.nasl +lib/nessus/plugins/solaris251_x86_103628.nasl +lib/nessus/plugins/solaris251_x86_103631.nasl +lib/nessus/plugins/solaris251_x86_103641.nasl +lib/nessus/plugins/solaris251_x86_103664.nasl +lib/nessus/plugins/solaris251_x86_103681.nasl +lib/nessus/plugins/solaris251_x86_103687.nasl +lib/nessus/plugins/solaris251_x86_103691.nasl +lib/nessus/plugins/solaris251_x86_103700.nasl +lib/nessus/plugins/solaris251_x86_103717.nasl +lib/nessus/plugins/solaris251_x86_103739.nasl +lib/nessus/plugins/solaris251_x86_103744.nasl +lib/nessus/plugins/solaris251_x86_103818.nasl +lib/nessus/plugins/solaris251_x86_103868.nasl +lib/nessus/plugins/solaris251_x86_103881.nasl +lib/nessus/plugins/solaris251_x86_103886.nasl +lib/nessus/plugins/solaris251_x86_103892.nasl +lib/nessus/plugins/solaris251_x86_103960.nasl +lib/nessus/plugins/solaris251_x86_103996.nasl +lib/nessus/plugins/solaris251_x86_104011.nasl +lib/nessus/plugins/solaris251_x86_104167.nasl +lib/nessus/plugins/solaris251_x86_104185.nasl +lib/nessus/plugins/solaris251_x86_104221.nasl +lib/nessus/plugins/solaris251_x86_104241.nasl +lib/nessus/plugins/solaris251_x86_104267.nasl +lib/nessus/plugins/solaris251_x86_104284.nasl +lib/nessus/plugins/solaris251_x86_104332.nasl +lib/nessus/plugins/solaris251_x86_104335.nasl +lib/nessus/plugins/solaris251_x86_104472.nasl +lib/nessus/plugins/solaris251_x86_104500.nasl +lib/nessus/plugins/solaris251_x86_104517.nasl +lib/nessus/plugins/solaris251_x86_104554.nasl +lib/nessus/plugins/solaris251_x86_104557.nasl +lib/nessus/plugins/solaris251_x86_104579.nasl +lib/nessus/plugins/solaris251_x86_104614.nasl +lib/nessus/plugins/solaris251_x86_104638.nasl +lib/nessus/plugins/solaris251_x86_104641.nasl +lib/nessus/plugins/solaris251_x86_104651.nasl +lib/nessus/plugins/solaris251_x86_104655.nasl +lib/nessus/plugins/solaris251_x86_104663.nasl +lib/nessus/plugins/solaris251_x86_104693.nasl +lib/nessus/plugins/solaris251_x86_104737.nasl +lib/nessus/plugins/solaris251_x86_104777.nasl +lib/nessus/plugins/solaris251_x86_104819.nasl +lib/nessus/plugins/solaris251_x86_104842.nasl +lib/nessus/plugins/solaris251_x86_104848.nasl +lib/nessus/plugins/solaris251_x86_104874.nasl +lib/nessus/plugins/solaris251_x86_104894.nasl +lib/nessus/plugins/solaris251_x86_104936.nasl +lib/nessus/plugins/solaris251_x86_104961.nasl +lib/nessus/plugins/solaris251_x86_104969.nasl +lib/nessus/plugins/solaris251_x86_105051.nasl +lib/nessus/plugins/solaris251_x86_105093.nasl +lib/nessus/plugins/solaris251_x86_105105.nasl +lib/nessus/plugins/solaris251_x86_105124.nasl +lib/nessus/plugins/solaris251_x86_105127.nasl +lib/nessus/plugins/solaris251_x86_105134.nasl +lib/nessus/plugins/solaris251_x86_105166.nasl +lib/nessus/plugins/solaris251_x86_105207.nasl +lib/nessus/plugins/solaris251_x86_105300.nasl +lib/nessus/plugins/solaris251_x86_105354.nasl +lib/nessus/plugins/solaris251_x86_105496.nasl +lib/nessus/plugins/solaris251_x86_105638.nasl +lib/nessus/plugins/solaris251_x86_105785.nasl +lib/nessus/plugins/solaris251_x86_105963.nasl +lib/nessus/plugins/solaris251_x86_105999.nasl +lib/nessus/plugins/solaris251_x86_106161.nasl +lib/nessus/plugins/solaris251_x86_106225.nasl +lib/nessus/plugins/solaris251_x86_106397.nasl +lib/nessus/plugins/solaris251_x86_106412.nasl +lib/nessus/plugins/solaris251_x86_106442.nasl +lib/nessus/plugins/solaris251_x86_106603.nasl +lib/nessus/plugins/solaris251_x86_106664.nasl +lib/nessus/plugins/solaris251_x86_106665.nasl +lib/nessus/plugins/solaris251_x86_106690.nasl +lib/nessus/plugins/solaris251_x86_106906.nasl +lib/nessus/plugins/solaris251_x86_106910.nasl +lib/nessus/plugins/solaris251_x86_107021.nasl +lib/nessus/plugins/solaris251_x86_107757.nasl +lib/nessus/plugins/solaris251_x86_108196.nasl +lib/nessus/plugins/solaris251_x86_108206.nasl +lib/nessus/plugins/solaris251_x86_108290.nasl +lib/nessus/plugins/solaris251_x86_108364.nasl +lib/nessus/plugins/solaris251_x86_108471.nasl +lib/nessus/plugins/solaris251_x86_108498.nasl +lib/nessus/plugins/solaris251_x86_108659.nasl +lib/nessus/plugins/solaris251_x86_108803.nasl +lib/nessus/plugins/solaris251_x86_108929.nasl +lib/nessus/plugins/solaris251_x86_109276.nasl +lib/nessus/plugins/solaris251_x86_109393.nasl +lib/nessus/plugins/solaris251_x86_109722.nasl +lib/nessus/plugins/solaris251_x86_111026.nasl +lib/nessus/plugins/solaris251_x86_111280.nasl +lib/nessus/plugins/solaris251_x86_111282.nasl +lib/nessus/plugins/solaris251_x86_111518.nasl +lib/nessus/plugins/solaris251_x86_111577.nasl +lib/nessus/plugins/solaris251_x86_111841.nasl +lib/nessus/plugins/solaris251_x86_111917.nasl +lib/nessus/plugins/solaris251_x86_112087.nasl +lib/nessus/plugins/solaris251_x86_112455.nasl +lib/nessus/plugins/solaris251_x86_112892.nasl +lib/nessus/plugins/solaris26_105181.nasl +lib/nessus/plugins/solaris26_105210.nasl +lib/nessus/plugins/solaris26_105216.nasl +lib/nessus/plugins/solaris26_105338.nasl +lib/nessus/plugins/solaris26_105377.nasl +lib/nessus/plugins/solaris26_105379.nasl +lib/nessus/plugins/solaris26_105395.nasl +lib/nessus/plugins/solaris26_105401.nasl +lib/nessus/plugins/solaris26_105405.nasl +lib/nessus/plugins/solaris26_105407.nasl +lib/nessus/plugins/solaris26_105528.nasl +lib/nessus/plugins/solaris26_105529.nasl +lib/nessus/plugins/solaris26_105552.nasl +lib/nessus/plugins/solaris26_105558.nasl +lib/nessus/plugins/solaris26_105562.nasl +lib/nessus/plugins/solaris26_105564.nasl +lib/nessus/plugins/solaris26_105566.nasl +lib/nessus/plugins/solaris26_105615.nasl +lib/nessus/plugins/solaris26_105633.nasl +lib/nessus/plugins/solaris26_105665.nasl +lib/nessus/plugins/solaris26_105667.nasl +lib/nessus/plugins/solaris26_105669.nasl +lib/nessus/plugins/solaris26_105693.nasl +lib/nessus/plugins/solaris26_105703.nasl +lib/nessus/plugins/solaris26_105722.nasl +lib/nessus/plugins/solaris26_105755.nasl +lib/nessus/plugins/solaris26_105780.nasl +lib/nessus/plugins/solaris26_105786.nasl +lib/nessus/plugins/solaris26_105800.nasl +lib/nessus/plugins/solaris26_105802.nasl +lib/nessus/plugins/solaris26_105837.nasl +lib/nessus/plugins/solaris26_105924.nasl +lib/nessus/plugins/solaris26_105990.nasl +lib/nessus/plugins/solaris26_106027.nasl +lib/nessus/plugins/solaris26_106040.nasl +lib/nessus/plugins/solaris26_106049.nasl +lib/nessus/plugins/solaris26_106112.nasl +lib/nessus/plugins/solaris26_106123.nasl +lib/nessus/plugins/solaris26_106125.nasl +lib/nessus/plugins/solaris26_106193.nasl +lib/nessus/plugins/solaris26_106222.nasl +lib/nessus/plugins/solaris26_106235.nasl +lib/nessus/plugins/solaris26_106242.nasl +lib/nessus/plugins/solaris26_106257.nasl +lib/nessus/plugins/solaris26_106292.nasl +lib/nessus/plugins/solaris26_106301.nasl +lib/nessus/plugins/solaris26_106303.nasl +lib/nessus/plugins/solaris26_106331.nasl +lib/nessus/plugins/solaris26_106361.nasl +lib/nessus/plugins/solaris26_106415.nasl +lib/nessus/plugins/solaris26_106437.nasl +lib/nessus/plugins/solaris26_106439.nasl +lib/nessus/plugins/solaris26_106448.nasl +lib/nessus/plugins/solaris26_106468.nasl +lib/nessus/plugins/solaris26_106522.nasl +lib/nessus/plugins/solaris26_106569.nasl +lib/nessus/plugins/solaris26_106592.nasl +lib/nessus/plugins/solaris26_106625.nasl +lib/nessus/plugins/solaris26_106629.nasl +lib/nessus/plugins/solaris26_106639.nasl +lib/nessus/plugins/solaris26_106648.nasl +lib/nessus/plugins/solaris26_106649.nasl +lib/nessus/plugins/solaris26_106650.nasl +lib/nessus/plugins/solaris26_106834.nasl +lib/nessus/plugins/solaris26_107298.nasl +lib/nessus/plugins/solaris26_107326.nasl +lib/nessus/plugins/solaris26_107336.nasl +lib/nessus/plugins/solaris26_107565.nasl +lib/nessus/plugins/solaris26_107618.nasl +lib/nessus/plugins/solaris26_107733.nasl +lib/nessus/plugins/solaris26_107758.nasl +lib/nessus/plugins/solaris26_107766.nasl +lib/nessus/plugins/solaris26_107774.nasl +lib/nessus/plugins/solaris26_107991.nasl +lib/nessus/plugins/solaris26_108129.nasl +lib/nessus/plugins/solaris26_108199.nasl +lib/nessus/plugins/solaris26_108201.nasl +lib/nessus/plugins/solaris26_108307.nasl +lib/nessus/plugins/solaris26_108333.nasl +lib/nessus/plugins/solaris26_108346.nasl +lib/nessus/plugins/solaris26_108388.nasl +lib/nessus/plugins/solaris26_108468.nasl +lib/nessus/plugins/solaris26_108492.nasl +lib/nessus/plugins/solaris26_108499.nasl +lib/nessus/plugins/solaris26_108660.nasl +lib/nessus/plugins/solaris26_108804.nasl +lib/nessus/plugins/solaris26_108890.nasl +lib/nessus/plugins/solaris26_108893.nasl +lib/nessus/plugins/solaris26_108895.nasl +lib/nessus/plugins/solaris26_109100.nasl +lib/nessus/plugins/solaris26_109266.nasl +lib/nessus/plugins/solaris26_109339.nasl +lib/nessus/plugins/solaris26_109388.nasl +lib/nessus/plugins/solaris26_109719.nasl +lib/nessus/plugins/solaris26_110128.nasl +lib/nessus/plugins/solaris26_110883.nasl +lib/nessus/plugins/solaris26_110990.nasl +lib/nessus/plugins/solaris26_111039.nasl +lib/nessus/plugins/solaris26_111236.nasl +lib/nessus/plugins/solaris26_111240.nasl +lib/nessus/plugins/solaris26_111560.nasl +lib/nessus/plugins/solaris26_111645.nasl +lib/nessus/plugins/solaris26_111859.nasl +lib/nessus/plugins/solaris26_111973.nasl +lib/nessus/plugins/solaris26_112073.nasl +lib/nessus/plugins/solaris26_112456.nasl +lib/nessus/plugins/solaris26_112765.nasl +lib/nessus/plugins/solaris26_112814.nasl +lib/nessus/plugins/solaris26_112893.nasl +lib/nessus/plugins/solaris26_113754.nasl +lib/nessus/plugins/solaris26_114889.nasl +lib/nessus/plugins/solaris26_114941.nasl +lib/nessus/plugins/solaris26_115563.nasl +lib/nessus/plugins/solaris26_x86_105182.nasl +lib/nessus/plugins/solaris26_x86_105211.nasl +lib/nessus/plugins/solaris26_x86_105217.nasl +lib/nessus/plugins/solaris26_x86_105339.nasl +lib/nessus/plugins/solaris26_x86_105380.nasl +lib/nessus/plugins/solaris26_x86_105396.nasl +lib/nessus/plugins/solaris26_x86_105402.nasl +lib/nessus/plugins/solaris26_x86_105406.nasl +lib/nessus/plugins/solaris26_x86_105408.nasl +lib/nessus/plugins/solaris26_x86_105530.nasl +lib/nessus/plugins/solaris26_x86_105553.nasl +lib/nessus/plugins/solaris26_x86_105559.nasl +lib/nessus/plugins/solaris26_x86_105563.nasl +lib/nessus/plugins/solaris26_x86_105565.nasl +lib/nessus/plugins/solaris26_x86_105567.nasl +lib/nessus/plugins/solaris26_x86_105601.nasl +lib/nessus/plugins/solaris26_x86_105616.nasl +lib/nessus/plugins/solaris26_x86_105617.nasl +lib/nessus/plugins/solaris26_x86_105639.nasl +lib/nessus/plugins/solaris26_x86_105666.nasl +lib/nessus/plugins/solaris26_x86_105668.nasl +lib/nessus/plugins/solaris26_x86_105670.nasl +lib/nessus/plugins/solaris26_x86_105694.nasl +lib/nessus/plugins/solaris26_x86_105704.nasl +lib/nessus/plugins/solaris26_x86_105723.nasl +lib/nessus/plugins/solaris26_x86_105756.nasl +lib/nessus/plugins/solaris26_x86_105781.nasl +lib/nessus/plugins/solaris26_x86_105787.nasl +lib/nessus/plugins/solaris26_x86_105801.nasl +lib/nessus/plugins/solaris26_x86_105803.nasl +lib/nessus/plugins/solaris26_x86_105838.nasl +lib/nessus/plugins/solaris26_x86_105991.nasl +lib/nessus/plugins/solaris26_x86_106028.nasl +lib/nessus/plugins/solaris26_x86_106041.nasl +lib/nessus/plugins/solaris26_x86_106050.nasl +lib/nessus/plugins/solaris26_x86_106113.nasl +lib/nessus/plugins/solaris26_x86_106124.nasl +lib/nessus/plugins/solaris26_x86_106126.nasl +lib/nessus/plugins/solaris26_x86_106194.nasl +lib/nessus/plugins/solaris26_x86_106223.nasl +lib/nessus/plugins/solaris26_x86_106236.nasl +lib/nessus/plugins/solaris26_x86_106243.nasl +lib/nessus/plugins/solaris26_x86_106248.nasl +lib/nessus/plugins/solaris26_x86_106258.nasl +lib/nessus/plugins/solaris26_x86_106293.nasl +lib/nessus/plugins/solaris26_x86_106302.nasl +lib/nessus/plugins/solaris26_x86_106304.nasl +lib/nessus/plugins/solaris26_x86_106353.nasl +lib/nessus/plugins/solaris26_x86_106362.nasl +lib/nessus/plugins/solaris26_x86_106416.nasl +lib/nessus/plugins/solaris26_x86_106438.nasl +lib/nessus/plugins/solaris26_x86_106440.nasl +lib/nessus/plugins/solaris26_x86_106449.nasl +lib/nessus/plugins/solaris26_x86_106469.nasl +lib/nessus/plugins/solaris26_x86_106523.nasl +lib/nessus/plugins/solaris26_x86_106570.nasl +lib/nessus/plugins/solaris26_x86_106593.nasl +lib/nessus/plugins/solaris26_x86_106626.nasl +lib/nessus/plugins/solaris26_x86_106640.nasl +lib/nessus/plugins/solaris26_x86_106657.nasl +lib/nessus/plugins/solaris26_x86_106658.nasl +lib/nessus/plugins/solaris26_x86_106659.nasl +lib/nessus/plugins/solaris26_x86_106835.nasl +lib/nessus/plugins/solaris26_x86_107299.nasl +lib/nessus/plugins/solaris26_x86_107327.nasl +lib/nessus/plugins/solaris26_x86_107338.nasl +lib/nessus/plugins/solaris26_x86_107566.nasl +lib/nessus/plugins/solaris26_x86_107619.nasl +lib/nessus/plugins/solaris26_x86_107734.nasl +lib/nessus/plugins/solaris26_x86_107759.nasl +lib/nessus/plugins/solaris26_x86_107767.nasl +lib/nessus/plugins/solaris26_x86_107775.nasl +lib/nessus/plugins/solaris26_x86_107992.nasl +lib/nessus/plugins/solaris26_x86_108130.nasl +lib/nessus/plugins/solaris26_x86_108200.nasl +lib/nessus/plugins/solaris26_x86_108202.nasl +lib/nessus/plugins/solaris26_x86_108308.nasl +lib/nessus/plugins/solaris26_x86_108334.nasl +lib/nessus/plugins/solaris26_x86_108389.nasl +lib/nessus/plugins/solaris26_x86_108469.nasl +lib/nessus/plugins/solaris26_x86_108493.nasl +lib/nessus/plugins/solaris26_x86_108500.nasl +lib/nessus/plugins/solaris26_x86_108661.nasl +lib/nessus/plugins/solaris26_x86_108805.nasl +lib/nessus/plugins/solaris26_x86_108891.nasl +lib/nessus/plugins/solaris26_x86_108894.nasl +lib/nessus/plugins/solaris26_x86_108896.nasl +lib/nessus/plugins/solaris26_x86_109101.nasl +lib/nessus/plugins/solaris26_x86_109267.nasl +lib/nessus/plugins/solaris26_x86_109340.nasl +lib/nessus/plugins/solaris26_x86_109389.nasl +lib/nessus/plugins/solaris26_x86_109720.nasl +lib/nessus/plugins/solaris26_x86_110884.nasl +lib/nessus/plugins/solaris26_x86_110991.nasl +lib/nessus/plugins/solaris26_x86_111040.nasl +lib/nessus/plugins/solaris26_x86_111237.nasl +lib/nessus/plugins/solaris26_x86_111241.nasl +lib/nessus/plugins/solaris26_x86_111561.nasl +lib/nessus/plugins/solaris26_x86_111860.nasl +lib/nessus/plugins/solaris26_x86_111974.nasl +lib/nessus/plugins/solaris26_x86_112074.nasl +lib/nessus/plugins/solaris26_x86_112457.nasl +lib/nessus/plugins/solaris26_x86_112766.nasl +lib/nessus/plugins/solaris26_x86_112815.nasl +lib/nessus/plugins/solaris26_x86_112894.nasl +lib/nessus/plugins/solaris26_x86_113755.nasl +lib/nessus/plugins/solaris26_x86_114890.nasl +lib/nessus/plugins/solaris26_x86_114942.nasl +lib/nessus/plugins/solaris26_x86_115428.nasl +lib/nessus/plugins/solaris26_x86_115564.nasl +lib/nessus/plugins/solaris7_106541.nasl +lib/nessus/plugins/solaris7_106725.nasl +lib/nessus/plugins/solaris7_106793.nasl +lib/nessus/plugins/solaris7_106934.nasl +lib/nessus/plugins/solaris7_106938.nasl +lib/nessus/plugins/solaris7_106942.nasl +lib/nessus/plugins/solaris7_106944.nasl +lib/nessus/plugins/solaris7_106949.nasl +lib/nessus/plugins/solaris7_106950.nasl +lib/nessus/plugins/solaris7_106952.nasl +lib/nessus/plugins/solaris7_106978.nasl +lib/nessus/plugins/solaris7_107022.nasl +lib/nessus/plugins/solaris7_107038.nasl +lib/nessus/plugins/solaris7_107058.nasl +lib/nessus/plugins/solaris7_107115.nasl +lib/nessus/plugins/solaris7_107171.nasl +lib/nessus/plugins/solaris7_107178.nasl +lib/nessus/plugins/solaris7_107180.nasl +lib/nessus/plugins/solaris7_107200.nasl +lib/nessus/plugins/solaris7_107259.nasl +lib/nessus/plugins/solaris7_107285.nasl +lib/nessus/plugins/solaris7_107337.nasl +lib/nessus/plugins/solaris7_107374.nasl +lib/nessus/plugins/solaris7_107403.nasl +lib/nessus/plugins/solaris7_107441.nasl +lib/nessus/plugins/solaris7_107443.nasl +lib/nessus/plugins/solaris7_107451.nasl +lib/nessus/plugins/solaris7_107454.nasl +lib/nessus/plugins/solaris7_107456.nasl +lib/nessus/plugins/solaris7_107475.nasl +lib/nessus/plugins/solaris7_107477.nasl +lib/nessus/plugins/solaris7_107589.nasl +lib/nessus/plugins/solaris7_107636.nasl +lib/nessus/plugins/solaris7_107650.nasl +lib/nessus/plugins/solaris7_107654.nasl +lib/nessus/plugins/solaris7_107684.nasl +lib/nessus/plugins/solaris7_107702.nasl +lib/nessus/plugins/solaris7_107709.nasl +lib/nessus/plugins/solaris7_107716.nasl +lib/nessus/plugins/solaris7_107792.nasl +lib/nessus/plugins/solaris7_107794.nasl +lib/nessus/plugins/solaris7_107885.nasl +lib/nessus/plugins/solaris7_107887.nasl +lib/nessus/plugins/solaris7_107893.nasl +lib/nessus/plugins/solaris7_107972.nasl +lib/nessus/plugins/solaris7_108117.nasl +lib/nessus/plugins/solaris7_108162.nasl +lib/nessus/plugins/solaris7_108219.nasl +lib/nessus/plugins/solaris7_108221.nasl +lib/nessus/plugins/solaris7_108263.nasl +lib/nessus/plugins/solaris7_108301.nasl +lib/nessus/plugins/solaris7_108317.nasl +lib/nessus/plugins/solaris7_108319.nasl +lib/nessus/plugins/solaris7_108327.nasl +lib/nessus/plugins/solaris7_108376.nasl +lib/nessus/plugins/solaris7_108381.nasl +lib/nessus/plugins/solaris7_108451.nasl +lib/nessus/plugins/solaris7_108482.nasl +lib/nessus/plugins/solaris7_108484.nasl +lib/nessus/plugins/solaris7_108551.nasl +lib/nessus/plugins/solaris7_108574.nasl +lib/nessus/plugins/solaris7_108585.nasl +lib/nessus/plugins/solaris7_108662.nasl +lib/nessus/plugins/solaris7_108721.nasl +lib/nessus/plugins/solaris7_108748.nasl +lib/nessus/plugins/solaris7_108750.nasl +lib/nessus/plugins/solaris7_108756.nasl +lib/nessus/plugins/solaris7_108758.nasl +lib/nessus/plugins/solaris7_108760.nasl +lib/nessus/plugins/solaris7_108762.nasl +lib/nessus/plugins/solaris7_108764.nasl +lib/nessus/plugins/solaris7_108798.nasl +lib/nessus/plugins/solaris7_108800.nasl +lib/nessus/plugins/solaris7_108838.nasl +lib/nessus/plugins/solaris7_109203.nasl +lib/nessus/plugins/solaris7_109253.nasl +lib/nessus/plugins/solaris7_109372.nasl +lib/nessus/plugins/solaris7_109404.nasl +lib/nessus/plugins/solaris7_109409.nasl +lib/nessus/plugins/solaris7_109709.nasl +lib/nessus/plugins/solaris7_109744.nasl +lib/nessus/plugins/solaris7_109797.nasl +lib/nessus/plugins/solaris7_109949.nasl +lib/nessus/plugins/solaris7_110070.nasl +lib/nessus/plugins/solaris7_110646.nasl +lib/nessus/plugins/solaris7_110869.nasl +lib/nessus/plugins/solaris7_111093.nasl +lib/nessus/plugins/solaris7_111238.nasl +lib/nessus/plugins/solaris7_111242.nasl +lib/nessus/plugins/solaris7_111350.nasl +lib/nessus/plugins/solaris7_111590.nasl +lib/nessus/plugins/solaris7_111600.nasl +lib/nessus/plugins/solaris7_111646.nasl +lib/nessus/plugins/solaris7_111931.nasl +lib/nessus/plugins/solaris7_111980.nasl +lib/nessus/plugins/solaris7_112300.nasl +lib/nessus/plugins/solaris7_112448.nasl +lib/nessus/plugins/solaris7_112604.nasl +lib/nessus/plugins/solaris7_112672.nasl +lib/nessus/plugins/solaris7_112820.nasl +lib/nessus/plugins/solaris7_112899.nasl +lib/nessus/plugins/solaris7_113752.nasl +lib/nessus/plugins/solaris7_114891.nasl +lib/nessus/plugins/solaris7_114944.nasl +lib/nessus/plugins/solaris7_115565.nasl +lib/nessus/plugins/solaris7_116456.nasl +lib/nessus/plugins/solaris7_116858.nasl +lib/nessus/plugins/solaris7_x86_106542.nasl +lib/nessus/plugins/solaris7_x86_106737.nasl +lib/nessus/plugins/solaris7_x86_106794.nasl +lib/nessus/plugins/solaris7_x86_106935.nasl +lib/nessus/plugins/solaris7_x86_106939.nasl +lib/nessus/plugins/solaris7_x86_106943.nasl +lib/nessus/plugins/solaris7_x86_106945.nasl +lib/nessus/plugins/solaris7_x86_106951.nasl +lib/nessus/plugins/solaris7_x86_106953.nasl +lib/nessus/plugins/solaris7_x86_106979.nasl +lib/nessus/plugins/solaris7_x86_107023.nasl +lib/nessus/plugins/solaris7_x86_107039.nasl +lib/nessus/plugins/solaris7_x86_107116.nasl +lib/nessus/plugins/solaris7_x86_107172.nasl +lib/nessus/plugins/solaris7_x86_107179.nasl +lib/nessus/plugins/solaris7_x86_107181.nasl +lib/nessus/plugins/solaris7_x86_107201.nasl +lib/nessus/plugins/solaris7_x86_107260.nasl +lib/nessus/plugins/solaris7_x86_107286.nasl +lib/nessus/plugins/solaris7_x86_107339.nasl +lib/nessus/plugins/solaris7_x86_107375.nasl +lib/nessus/plugins/solaris7_x86_107404.nasl +lib/nessus/plugins/solaris7_x86_107442.nasl +lib/nessus/plugins/solaris7_x86_107444.nasl +lib/nessus/plugins/solaris7_x86_107452.nasl +lib/nessus/plugins/solaris7_x86_107455.nasl +lib/nessus/plugins/solaris7_x86_107457.nasl +lib/nessus/plugins/solaris7_x86_107476.nasl +lib/nessus/plugins/solaris7_x86_107478.nasl +lib/nessus/plugins/solaris7_x86_107637.nasl +lib/nessus/plugins/solaris7_x86_107651.nasl +lib/nessus/plugins/solaris7_x86_107655.nasl +lib/nessus/plugins/solaris7_x86_107685.nasl +lib/nessus/plugins/solaris7_x86_107703.nasl +lib/nessus/plugins/solaris7_x86_107710.nasl +lib/nessus/plugins/solaris7_x86_107793.nasl +lib/nessus/plugins/solaris7_x86_107795.nasl +lib/nessus/plugins/solaris7_x86_107886.nasl +lib/nessus/plugins/solaris7_x86_107888.nasl +lib/nessus/plugins/solaris7_x86_107894.nasl +lib/nessus/plugins/solaris7_x86_107973.nasl +lib/nessus/plugins/solaris7_x86_108088.nasl +lib/nessus/plugins/solaris7_x86_108092.nasl +lib/nessus/plugins/solaris7_x86_108118.nasl +lib/nessus/plugins/solaris7_x86_108163.nasl +lib/nessus/plugins/solaris7_x86_108220.nasl +lib/nessus/plugins/solaris7_x86_108222.nasl +lib/nessus/plugins/solaris7_x86_108302.nasl +lib/nessus/plugins/solaris7_x86_108320.nasl +lib/nessus/plugins/solaris7_x86_108328.nasl +lib/nessus/plugins/solaris7_x86_108377.nasl +lib/nessus/plugins/solaris7_x86_108382.nasl +lib/nessus/plugins/solaris7_x86_108452.nasl +lib/nessus/plugins/solaris7_x86_108483.nasl +lib/nessus/plugins/solaris7_x86_108485.nasl +lib/nessus/plugins/solaris7_x86_108552.nasl +lib/nessus/plugins/solaris7_x86_108575.nasl +lib/nessus/plugins/solaris7_x86_108663.nasl +lib/nessus/plugins/solaris7_x86_108722.nasl +lib/nessus/plugins/solaris7_x86_108749.nasl +lib/nessus/plugins/solaris7_x86_108751.nasl +lib/nessus/plugins/solaris7_x86_108757.nasl +lib/nessus/plugins/solaris7_x86_108759.nasl +lib/nessus/plugins/solaris7_x86_108761.nasl +lib/nessus/plugins/solaris7_x86_108763.nasl +lib/nessus/plugins/solaris7_x86_108765.nasl +lib/nessus/plugins/solaris7_x86_108799.nasl +lib/nessus/plugins/solaris7_x86_108801.nasl +lib/nessus/plugins/solaris7_x86_108839.nasl +lib/nessus/plugins/solaris7_x86_109204.nasl +lib/nessus/plugins/solaris7_x86_109252.nasl +lib/nessus/plugins/solaris7_x86_109254.nasl +lib/nessus/plugins/solaris7_x86_109373.nasl +lib/nessus/plugins/solaris7_x86_109402.nasl +lib/nessus/plugins/solaris7_x86_109405.nasl +lib/nessus/plugins/solaris7_x86_109410.nasl +lib/nessus/plugins/solaris7_x86_109710.nasl +lib/nessus/plugins/solaris7_x86_109745.nasl +lib/nessus/plugins/solaris7_x86_109950.nasl +lib/nessus/plugins/solaris7_x86_110071.nasl +lib/nessus/plugins/solaris7_x86_110647.nasl +lib/nessus/plugins/solaris7_x86_110808.nasl +lib/nessus/plugins/solaris7_x86_110870.nasl +lib/nessus/plugins/solaris7_x86_111094.nasl +lib/nessus/plugins/solaris7_x86_111239.nasl +lib/nessus/plugins/solaris7_x86_111243.nasl +lib/nessus/plugins/solaris7_x86_111351.nasl +lib/nessus/plugins/solaris7_x86_111591.nasl +lib/nessus/plugins/solaris7_x86_111601.nasl +lib/nessus/plugins/solaris7_x86_111932.nasl +lib/nessus/plugins/solaris7_x86_111981.nasl +lib/nessus/plugins/solaris7_x86_112301.nasl +lib/nessus/plugins/solaris7_x86_112449.nasl +lib/nessus/plugins/solaris7_x86_112673.nasl +lib/nessus/plugins/solaris7_x86_112821.nasl +lib/nessus/plugins/solaris7_x86_112900.nasl +lib/nessus/plugins/solaris7_x86_113753.nasl +lib/nessus/plugins/solaris7_x86_114892.nasl +lib/nessus/plugins/solaris7_x86_114945.nasl +lib/nessus/plugins/solaris7_x86_115429.nasl +lib/nessus/plugins/solaris7_x86_115566.nasl +lib/nessus/plugins/solaris7_x86_116457.nasl +lib/nessus/plugins/solaris8_108528.nasl +lib/nessus/plugins/solaris8_108773.nasl +lib/nessus/plugins/solaris8_108835.nasl +lib/nessus/plugins/solaris8_108869.nasl +lib/nessus/plugins/solaris8_108899.nasl +lib/nessus/plugins/solaris8_108909.nasl +lib/nessus/plugins/solaris8_108919.nasl +lib/nessus/plugins/solaris8_108949.nasl +lib/nessus/plugins/solaris8_108968.nasl +lib/nessus/plugins/solaris8_108975.nasl +lib/nessus/plugins/solaris8_108981.nasl +lib/nessus/plugins/solaris8_108985.nasl +lib/nessus/plugins/solaris8_108987.nasl +lib/nessus/plugins/solaris8_108993.nasl +lib/nessus/plugins/solaris8_109007.nasl +lib/nessus/plugins/solaris8_109077.nasl +lib/nessus/plugins/solaris8_109091.nasl +lib/nessus/plugins/solaris8_109134.nasl +lib/nessus/plugins/solaris8_109147.nasl +lib/nessus/plugins/solaris8_109149.nasl +lib/nessus/plugins/solaris8_109152.nasl +lib/nessus/plugins/solaris8_109154.nasl +lib/nessus/plugins/solaris8_109202.nasl +lib/nessus/plugins/solaris8_109238.nasl +lib/nessus/plugins/solaris8_109320.nasl +lib/nessus/plugins/solaris8_109324.nasl +lib/nessus/plugins/solaris8_109326.nasl +lib/nessus/plugins/solaris8_109328.nasl +lib/nessus/plugins/solaris8_109354.nasl +lib/nessus/plugins/solaris8_109458.nasl +lib/nessus/plugins/solaris8_109667.nasl +lib/nessus/plugins/solaris8_109695.nasl +lib/nessus/plugins/solaris8_109783.nasl +lib/nessus/plugins/solaris8_109793.nasl +lib/nessus/plugins/solaris8_109805.nasl +lib/nessus/plugins/solaris8_109815.nasl +lib/nessus/plugins/solaris8_109887.nasl +lib/nessus/plugins/solaris8_109893.nasl +lib/nessus/plugins/solaris8_109894.nasl +lib/nessus/plugins/solaris8_109896.nasl +lib/nessus/plugins/solaris8_109898.nasl +lib/nessus/plugins/solaris8_109922.nasl +lib/nessus/plugins/solaris8_109951.nasl +lib/nessus/plugins/solaris8_110068.nasl +lib/nessus/plugins/solaris8_110075.nasl +lib/nessus/plugins/solaris8_110286.nasl +lib/nessus/plugins/solaris8_110322.nasl +lib/nessus/plugins/solaris8_110335.nasl +lib/nessus/plugins/solaris8_110386.nasl +lib/nessus/plugins/solaris8_110387.nasl +lib/nessus/plugins/solaris8_110389.nasl +lib/nessus/plugins/solaris8_110416.nasl +lib/nessus/plugins/solaris8_110453.nasl +lib/nessus/plugins/solaris8_110458.nasl +lib/nessus/plugins/solaris8_110461.nasl +lib/nessus/plugins/solaris8_110615.nasl +lib/nessus/plugins/solaris8_110668.nasl +lib/nessus/plugins/solaris8_110670.nasl +lib/nessus/plugins/solaris8_110820.nasl +lib/nessus/plugins/solaris8_110896.nasl +lib/nessus/plugins/solaris8_110898.nasl +lib/nessus/plugins/solaris8_110903.nasl +lib/nessus/plugins/solaris8_110916.nasl +lib/nessus/plugins/solaris8_110934.nasl +lib/nessus/plugins/solaris8_110943.nasl +lib/nessus/plugins/solaris8_110945.nasl +lib/nessus/plugins/solaris8_110953.nasl +lib/nessus/plugins/solaris8_110955.nasl +lib/nessus/plugins/solaris8_110957.nasl +lib/nessus/plugins/solaris8_111069.nasl +lib/nessus/plugins/solaris8_111071.nasl +lib/nessus/plugins/solaris8_111232.nasl +lib/nessus/plugins/solaris8_111234.nasl +lib/nessus/plugins/solaris8_111313.nasl +lib/nessus/plugins/solaris8_111321.nasl +lib/nessus/plugins/solaris8_111325.nasl +lib/nessus/plugins/solaris8_111332.nasl +lib/nessus/plugins/solaris8_111400.nasl +lib/nessus/plugins/solaris8_111504.nasl +lib/nessus/plugins/solaris8_111548.nasl +lib/nessus/plugins/solaris8_111570.nasl +lib/nessus/plugins/solaris8_111588.nasl +lib/nessus/plugins/solaris8_111596.nasl +lib/nessus/plugins/solaris8_111606.nasl +lib/nessus/plugins/solaris8_111624.nasl +lib/nessus/plugins/solaris8_111626.nasl +lib/nessus/plugins/solaris8_111647.nasl +lib/nessus/plugins/solaris8_111826.nasl +lib/nessus/plugins/solaris8_111874.nasl +lib/nessus/plugins/solaris8_111881.nasl +lib/nessus/plugins/solaris8_111883.nasl +lib/nessus/plugins/solaris8_112039.nasl +lib/nessus/plugins/solaris8_112237.nasl +lib/nessus/plugins/solaris8_112390.nasl +lib/nessus/plugins/solaris8_112459.nasl +lib/nessus/plugins/solaris8_112609.nasl +lib/nessus/plugins/solaris8_112611.nasl +lib/nessus/plugins/solaris8_112668.nasl +lib/nessus/plugins/solaris8_112792.nasl +lib/nessus/plugins/solaris8_112796.nasl +lib/nessus/plugins/solaris8_112846.nasl +lib/nessus/plugins/solaris8_113650.nasl +lib/nessus/plugins/solaris8_113685.nasl +lib/nessus/plugins/solaris8_113687.nasl +lib/nessus/plugins/solaris8_113792.nasl +lib/nessus/plugins/solaris8_114162.nasl +lib/nessus/plugins/solaris8_114673.nasl +lib/nessus/plugins/solaris8_114802.nasl +lib/nessus/plugins/solaris8_114984.nasl +lib/nessus/plugins/solaris8_115797.nasl +lib/nessus/plugins/solaris8_116455.nasl +lib/nessus/plugins/solaris8_117000.nasl +lib/nessus/plugins/solaris8_x86_108529.nasl +lib/nessus/plugins/solaris8_x86_108774.nasl +lib/nessus/plugins/solaris8_x86_108836.nasl +lib/nessus/plugins/solaris8_x86_108870.nasl +lib/nessus/plugins/solaris8_x86_108900.nasl +lib/nessus/plugins/solaris8_x86_108920.nasl +lib/nessus/plugins/solaris8_x86_108950.nasl +lib/nessus/plugins/solaris8_x86_108969.nasl +lib/nessus/plugins/solaris8_x86_108976.nasl +lib/nessus/plugins/solaris8_x86_108986.nasl +lib/nessus/plugins/solaris8_x86_108988.nasl +lib/nessus/plugins/solaris8_x86_108994.nasl +lib/nessus/plugins/solaris8_x86_109008.nasl +lib/nessus/plugins/solaris8_x86_109078.nasl +lib/nessus/plugins/solaris8_x86_109092.nasl +lib/nessus/plugins/solaris8_x86_109135.nasl +lib/nessus/plugins/solaris8_x86_109148.nasl +lib/nessus/plugins/solaris8_x86_109150.nasl +lib/nessus/plugins/solaris8_x86_109155.nasl +lib/nessus/plugins/solaris8_x86_109239.nasl +lib/nessus/plugins/solaris8_x86_109321.nasl +lib/nessus/plugins/solaris8_x86_109325.nasl +lib/nessus/plugins/solaris8_x86_109327.nasl +lib/nessus/plugins/solaris8_x86_109329.nasl +lib/nessus/plugins/solaris8_x86_109355.nasl +lib/nessus/plugins/solaris8_x86_109401.nasl +lib/nessus/plugins/solaris8_x86_109459.nasl +lib/nessus/plugins/solaris8_x86_109668.nasl +lib/nessus/plugins/solaris8_x86_109784.nasl +lib/nessus/plugins/solaris8_x86_109806.nasl +lib/nessus/plugins/solaris8_x86_109895.nasl +lib/nessus/plugins/solaris8_x86_109897.nasl +lib/nessus/plugins/solaris8_x86_109899.nasl +lib/nessus/plugins/solaris8_x86_109923.nasl +lib/nessus/plugins/solaris8_x86_109952.nasl +lib/nessus/plugins/solaris8_x86_110069.nasl +lib/nessus/plugins/solaris8_x86_110076.nasl +lib/nessus/plugins/solaris8_x86_110287.nasl +lib/nessus/plugins/solaris8_x86_110323.nasl +lib/nessus/plugins/solaris8_x86_110325.nasl +lib/nessus/plugins/solaris8_x86_110336.nasl +lib/nessus/plugins/solaris8_x86_110400.nasl +lib/nessus/plugins/solaris8_x86_110402.nasl +lib/nessus/plugins/solaris8_x86_110417.nasl +lib/nessus/plugins/solaris8_x86_110454.nasl +lib/nessus/plugins/solaris8_x86_110459.nasl +lib/nessus/plugins/solaris8_x86_110462.nasl +lib/nessus/plugins/solaris8_x86_110616.nasl +lib/nessus/plugins/solaris8_x86_110669.nasl +lib/nessus/plugins/solaris8_x86_110671.nasl +lib/nessus/plugins/solaris8_x86_110672.nasl +lib/nessus/plugins/solaris8_x86_110897.nasl +lib/nessus/plugins/solaris8_x86_110899.nasl +lib/nessus/plugins/solaris8_x86_110904.nasl +lib/nessus/plugins/solaris8_x86_110917.nasl +lib/nessus/plugins/solaris8_x86_110935.nasl +lib/nessus/plugins/solaris8_x86_110944.nasl +lib/nessus/plugins/solaris8_x86_110946.nasl +lib/nessus/plugins/solaris8_x86_110954.nasl +lib/nessus/plugins/solaris8_x86_110956.nasl +lib/nessus/plugins/solaris8_x86_110958.nasl +lib/nessus/plugins/solaris8_x86_111070.nasl +lib/nessus/plugins/solaris8_x86_111072.nasl +lib/nessus/plugins/solaris8_x86_111233.nasl +lib/nessus/plugins/solaris8_x86_111235.nasl +lib/nessus/plugins/solaris8_x86_111314.nasl +lib/nessus/plugins/solaris8_x86_111322.nasl +lib/nessus/plugins/solaris8_x86_111326.nasl +lib/nessus/plugins/solaris8_x86_111401.nasl +lib/nessus/plugins/solaris8_x86_111505.nasl +lib/nessus/plugins/solaris8_x86_111549.nasl +lib/nessus/plugins/solaris8_x86_111571.nasl +lib/nessus/plugins/solaris8_x86_111589.nasl +lib/nessus/plugins/solaris8_x86_111597.nasl +lib/nessus/plugins/solaris8_x86_111607.nasl +lib/nessus/plugins/solaris8_x86_111625.nasl +lib/nessus/plugins/solaris8_x86_111627.nasl +lib/nessus/plugins/solaris8_x86_111827.nasl +lib/nessus/plugins/solaris8_x86_111875.nasl +lib/nessus/plugins/solaris8_x86_111882.nasl +lib/nessus/plugins/solaris8_x86_112040.nasl +lib/nessus/plugins/solaris8_x86_112238.nasl +lib/nessus/plugins/solaris8_x86_112240.nasl +lib/nessus/plugins/solaris8_x86_112352.nasl +lib/nessus/plugins/solaris8_x86_112460.nasl +lib/nessus/plugins/solaris8_x86_112612.nasl +lib/nessus/plugins/solaris8_x86_112669.nasl +lib/nessus/plugins/solaris8_x86_112793.nasl +lib/nessus/plugins/solaris8_x86_112797.nasl +lib/nessus/plugins/solaris8_x86_112847.nasl +lib/nessus/plugins/solaris8_x86_113651.nasl +lib/nessus/plugins/solaris8_x86_113686.nasl +lib/nessus/plugins/solaris8_x86_113688.nasl +lib/nessus/plugins/solaris8_x86_113793.nasl +lib/nessus/plugins/solaris8_x86_114046.nasl +lib/nessus/plugins/solaris8_x86_114154.nasl +lib/nessus/plugins/solaris8_x86_114163.nasl +lib/nessus/plugins/solaris8_x86_114617.nasl +lib/nessus/plugins/solaris8_x86_114674.nasl +lib/nessus/plugins/solaris8_x86_114985.nasl +lib/nessus/plugins/solaris8_x86_115798.nasl +lib/nessus/plugins/solaris8_x86_116442.nasl +lib/nessus/plugins/solaris8_x86_117001.nasl +lib/nessus/plugins/solaris9_112233.nasl +lib/nessus/plugins/solaris9_112601.nasl +lib/nessus/plugins/solaris9_112617.nasl +lib/nessus/plugins/solaris9_112661.nasl +lib/nessus/plugins/solaris9_112807.nasl +lib/nessus/plugins/solaris9_112808.nasl +lib/nessus/plugins/solaris9_112810.nasl +lib/nessus/plugins/solaris9_112817.nasl +lib/nessus/plugins/solaris9_112874.nasl +lib/nessus/plugins/solaris9_112875.nasl +lib/nessus/plugins/solaris9_112908.nasl +lib/nessus/plugins/solaris9_112921.nasl +lib/nessus/plugins/solaris9_112922.nasl +lib/nessus/plugins/solaris9_112923.nasl +lib/nessus/plugins/solaris9_112925.nasl +lib/nessus/plugins/solaris9_112926.nasl +lib/nessus/plugins/solaris9_112960.nasl +lib/nessus/plugins/solaris9_112963.nasl +lib/nessus/plugins/solaris9_112970.nasl +lib/nessus/plugins/solaris9_112998.nasl +lib/nessus/plugins/solaris9_113146.nasl +lib/nessus/plugins/solaris9_113240.nasl +lib/nessus/plugins/solaris9_113273.nasl +lib/nessus/plugins/solaris9_113278.nasl +lib/nessus/plugins/solaris9_113279.nasl +lib/nessus/plugins/solaris9_113319.nasl +lib/nessus/plugins/solaris9_113322.nasl +lib/nessus/plugins/solaris9_113329.nasl +lib/nessus/plugins/solaris9_113451.nasl +lib/nessus/plugins/solaris9_113475.nasl +lib/nessus/plugins/solaris9_113492.nasl +lib/nessus/plugins/solaris9_113575.nasl +lib/nessus/plugins/solaris9_113579.nasl +lib/nessus/plugins/solaris9_113713.nasl +lib/nessus/plugins/solaris9_113718.nasl +lib/nessus/plugins/solaris9_114008.nasl +lib/nessus/plugins/solaris9_114014.nasl +lib/nessus/plugins/solaris9_114016.nasl +lib/nessus/plugins/solaris9_114049.nasl +lib/nessus/plugins/solaris9_114125.nasl +lib/nessus/plugins/solaris9_114133.nasl +lib/nessus/plugins/solaris9_114135.nasl +lib/nessus/plugins/solaris9_114332.nasl +lib/nessus/plugins/solaris9_114361.nasl +lib/nessus/plugins/solaris9_114495.nasl +lib/nessus/plugins/solaris9_114564.nasl +lib/nessus/plugins/solaris9_114569.nasl +lib/nessus/plugins/solaris9_114571.nasl +lib/nessus/plugins/solaris9_114636.nasl +lib/nessus/plugins/solaris9_114684.nasl +lib/nessus/plugins/solaris9_114713.nasl +lib/nessus/plugins/solaris9_114729.nasl +lib/nessus/plugins/solaris9_114861.nasl +lib/nessus/plugins/solaris9_114875.nasl +lib/nessus/plugins/solaris9_114971.nasl +lib/nessus/plugins/solaris9_115172.nasl +lib/nessus/plugins/solaris9_115553.nasl +lib/nessus/plugins/solaris9_115754.nasl +lib/nessus/plugins/solaris9_115926.nasl +lib/nessus/plugins/solaris9_116237.nasl +lib/nessus/plugins/solaris9_116243.nasl +lib/nessus/plugins/solaris9_116247.nasl +lib/nessus/plugins/solaris9_116308.nasl +lib/nessus/plugins/solaris9_116453.nasl +lib/nessus/plugins/solaris9_116489.nasl +lib/nessus/plugins/solaris9_116494.nasl +lib/nessus/plugins/solaris9_116807.nasl +lib/nessus/plugins/solaris9_117071.nasl +lib/nessus/plugins/solaris9_x86_112234.nasl +lib/nessus/plugins/solaris9_x86_112662.nasl +lib/nessus/plugins/solaris9_x86_113112.nasl +lib/nessus/plugins/solaris9_x86_113241.nasl +lib/nessus/plugins/solaris9_x86_113719.nasl +lib/nessus/plugins/solaris9_x86_113870.nasl +lib/nessus/plugins/solaris9_x86_113986.nasl +lib/nessus/plugins/solaris9_x86_113996.nasl +lib/nessus/plugins/solaris9_x86_114009.nasl +lib/nessus/plugins/solaris9_x86_114015.nasl +lib/nessus/plugins/solaris9_x86_114017.nasl +lib/nessus/plugins/solaris9_x86_114050.nasl +lib/nessus/plugins/solaris9_x86_114134.nasl +lib/nessus/plugins/solaris9_x86_114136.nasl +lib/nessus/plugins/solaris9_x86_114137.nasl +lib/nessus/plugins/solaris9_x86_114145.nasl +lib/nessus/plugins/solaris9_x86_114210.nasl +lib/nessus/plugins/solaris9_x86_114242.nasl +lib/nessus/plugins/solaris9_x86_114273.nasl +lib/nessus/plugins/solaris9_x86_114328.nasl +lib/nessus/plugins/solaris9_x86_114342.nasl +lib/nessus/plugins/solaris9_x86_114354.nasl +lib/nessus/plugins/solaris9_x86_114362.nasl +lib/nessus/plugins/solaris9_x86_114432.nasl +lib/nessus/plugins/solaris9_x86_114435.nasl +lib/nessus/plugins/solaris9_x86_114436.nasl +lib/nessus/plugins/solaris9_x86_114496.nasl +lib/nessus/plugins/solaris9_x86_114565.nasl +lib/nessus/plugins/solaris9_x86_114568.nasl +lib/nessus/plugins/solaris9_x86_114570.nasl +lib/nessus/plugins/solaris9_x86_114637.nasl +lib/nessus/plugins/solaris9_x86_114685.nasl +lib/nessus/plugins/solaris9_x86_114714.nasl +lib/nessus/plugins/solaris9_x86_114715.nasl +lib/nessus/plugins/solaris9_x86_114730.nasl +lib/nessus/plugins/solaris9_x86_114733.nasl +lib/nessus/plugins/solaris9_x86_114858.nasl +lib/nessus/plugins/solaris9_x86_114862.nasl +lib/nessus/plugins/solaris9_x86_114876.nasl +lib/nessus/plugins/solaris9_x86_114932.nasl +lib/nessus/plugins/solaris9_x86_114972.nasl +lib/nessus/plugins/solaris9_x86_114980.nasl +lib/nessus/plugins/solaris9_x86_115168.nasl +lib/nessus/plugins/solaris9_x86_115755.nasl +lib/nessus/plugins/solaris9_x86_115880.nasl +lib/nessus/plugins/solaris9_x86_115927.nasl +lib/nessus/plugins/solaris9_x86_116044.nasl +lib/nessus/plugins/solaris9_x86_116045.nasl +lib/nessus/plugins/solaris9_x86_116046.nasl +lib/nessus/plugins/solaris9_x86_116238.nasl +lib/nessus/plugins/solaris9_x86_116244.nasl +lib/nessus/plugins/solaris9_x86_116248.nasl +lib/nessus/plugins/solaris9_x86_116309.nasl +lib/nessus/plugins/solaris9_x86_116454.nasl +lib/nessus/plugins/solaris9_x86_116558.nasl +lib/nessus/plugins/solaris9_x86_116808.nasl +lib/nessus/plugins/solaris9_x86_117072.nasl lib/nessus/plugins/solaris_lpd_env_cmd_exec.nasl +lib/nessus/plugins/sophos_installed.nasl lib/nessus/plugins/source_routed.nasl lib/nessus/plugins/spank.nasl +lib/nessus/plugins/spidersales_sql_injection.nasl lib/nessus/plugins/spinclient.nasl lib/nessus/plugins/spyke_flaws.nasl lib/nessus/plugins/sql_injection.nasl lib/nessus/plugins/sqlqhit_information_disclosure.nasl lib/nessus/plugins/squid_dos.nasl +lib/nessus/plugins/squid_ntlm.nasl +lib/nessus/plugins/squid_null_url_auth_bypass.nasl lib/nessus/plugins/squid_overflows.nasl +lib/nessus/plugins/squirrelmail_143.nasl +lib/nessus/plugins/squirrelmail_detect.nasl lib/nessus/plugins/squirremail_cross_site_scripting.nasl lib/nessus/plugins/squirremail_multiple_flaws.nasl lib/nessus/plugins/sscd_input.nasl @@ -1697,6 +3223,8 @@ lib/nessus/plugins/ssh_detect.nasl lib/nessus/plugins/ssh_dropbear.nasl lib/nessus/plugins/ssh_forwarding.nasl +lib/nessus/plugins/ssh_func.inc +lib/nessus/plugins/ssh_get_info.nasl lib/nessus/plugins/ssh_insertion.nasl lib/nessus/plugins/ssh_kerberos.nasl lib/nessus/plugins/ssh_keygen.nasl @@ -1723,6 +3251,10 @@ lib/nessus/plugins/stronghold_swish.nasl lib/nessus/plugins/stun_detection.nasl lib/nessus/plugins/subseven.nasl +lib/nessus/plugins/subversion_1_0_3.nasl +lib/nessus/plugins/subversion_1_0_4.nasl +lib/nessus/plugins/subversion_1_0_5.nasl +lib/nessus/plugins/subversion_detection.nasl lib/nessus/plugins/sun_cobalt_adaptive_firewall_detect.nasl lib/nessus/plugins/sun_one_jsp_source.nasl lib/nessus/plugins/sunftpd_overflow.nasl @@ -1730,6 +3262,7 @@ lib/nessus/plugins/sunkill.nasl lib/nessus/plugins/superguestbook_config_disclosure.nasl lib/nessus/plugins/superm_son_hserver_traversal.nasl +lib/nessus/plugins/surgeldap_file_disclosure.nasl lib/nessus/plugins/suse_cgi_bin_sdb.nasl lib/nessus/plugins/suse_identd.nasl lib/nessus/plugins/swat_detect.nasl @@ -1741,7 +3274,9 @@ lib/nessus/plugins/systat.nasl lib/nessus/plugins/tanned_format_string.nasl lib/nessus/plugins/tcp_chorusing.nasl +lib/nessus/plugins/tcp_options_dos.nasl lib/nessus/plugins/tcp_seq.nasl +lib/nessus/plugins/tcp_seq_window.nasl lib/nessus/plugins/tcpip_ambiguities.nasl lib/nessus/plugins/teardrop.nasl lib/nessus/plugins/technote.nasl @@ -1774,19 +3309,23 @@ lib/nessus/plugins/tomcat_devname_DoS.nasl lib/nessus/plugins/tomcat_directory_listing_and_file_disclosure.nasl lib/nessus/plugins/tomcat_path_disclosure.nasl +lib/nessus/plugins/tomcat_server_default_files.nasl lib/nessus/plugins/tomcat_snoop.nasl lib/nessus/plugins/tomcat_source_exposure.nasl +lib/nessus/plugins/tomcat_srcjsp_malformed_request.nasl lib/nessus/plugins/tomcat_status.nasl lib/nessus/plugins/torturecgis.nasl lib/nessus/plugins/traceroute.nasl lib/nessus/plugins/translate_f.nasl lib/nessus/plugins/trendmicro_emanager.nasl lib/nessus/plugins/trillian_installed.nasl +lib/nessus/plugins/trillian_patchg.nasl lib/nessus/plugins/trinity.nasl lib/nessus/plugins/trinoo.nasl lib/nessus/plugins/tripwire_webpage.nasl lib/nessus/plugins/trojan_horses.nasl lib/nessus/plugins/truegalerie_admin_bypass.nasl +lib/nessus/plugins/tsweb_detect.nasl lib/nessus/plugins/ttawebtop.nasl lib/nessus/plugins/ttcms_code_injection.nasl lib/nessus/plugins/ttforum_code_injection.nasl @@ -1794,14 +3333,19 @@ lib/nessus/plugins/ttyprompt.nasl lib/nessus/plugins/typo3_dev_read.nasl lib/nessus/plugins/typsoft_ftp_DoS.nasl +lib/nessus/plugins/typsoftftp_1_10.nasl lib/nessus/plugins/uddi.inc lib/nessus/plugins/uddi.nasl lib/nessus/plugins/ultraseek_detect.nasl lib/nessus/plugins/ultraseek_dos.nasl lib/nessus/plugins/unicast_dos.nasl lib/nessus/plugins/unknown_services.nasl +lib/nessus/plugins/unreal_detection.nasl +lib/nessus/plugins/unreal_dos.nasl lib/nessus/plugins/unreal_game_engine.nasl +lib/nessus/plugins/unreal_ircd_cloaking.nasl lib/nessus/plugins/upb_code_injection.nasl +lib/nessus/plugins/upb_info_leak.nasl lib/nessus/plugins/upload_cgi.nasl lib/nessus/plugins/upload_lite_cgi.nasl lib/nessus/plugins/uploader_exe.nasl @@ -1810,6 +3354,7 @@ lib/nessus/plugins/upnp_xp_tcp.nasl lib/nessus/plugins/urlscan_detect.nasl lib/nessus/plugins/usermin_session_id.nasl +lib/nessus/plugins/usrobotics_disclosed_password.nasl lib/nessus/plugins/ustorekeeper.nasl lib/nessus/plugins/uw_imap_overflow.nasl lib/nessus/plugins/uw_imap_overflow_two.nasl @@ -1818,6 +3363,7 @@ lib/nessus/plugins/vcatch_detection.nasl lib/nessus/plugins/vchat_logs.nasl lib/nessus/plugins/vftpd_overflow.nasl +lib/nessus/plugins/vhost_xss.nasl lib/nessus/plugins/view_source_cgi.nasl lib/nessus/plugins/viewpage_file_reading.nasl lib/nessus/plugins/vignette_info_leak.nasl @@ -1842,6 +3388,7 @@ lib/nessus/plugins/wayboard.nasl lib/nessus/plugins/web3000_detection.nasl lib/nessus/plugins/web_chat_xss.nasl +lib/nessus/plugins/web_loadbalancer.nasl lib/nessus/plugins/web_traversal.nasl lib/nessus/plugins/webactive_log.nasl lib/nessus/plugins/webadmin.nasl @@ -1874,6 +3421,7 @@ lib/nessus/plugins/webmirror.nasl lib/nessus/plugins/webnews.nasl lib/nessus/plugins/webplus.nasl +lib/nessus/plugins/webplus_install_path.nasl lib/nessus/plugins/webplus_version.nasl lib/nessus/plugins/webseal_DoS.nasl lib/nessus/plugins/websendmail.nasl @@ -1895,6 +3443,7 @@ lib/nessus/plugins/wfchat_user_disclosure.nasl lib/nessus/plugins/wftp.nasl lib/nessus/plugins/wftp_241_dos.nasl +lib/nessus/plugins/wftp_321_overflow.nasl lib/nessus/plugins/wftp_dos.nasl lib/nessus/plugins/whois_raw.nasl lib/nessus/plugins/wihphoto_file_read.nasl @@ -1902,6 +3451,7 @@ lib/nessus/plugins/win_trinoo.nasl lib/nessus/plugins/winamp_buffer_overflow.nasl lib/nessus/plugins/windmail.nasl +lib/nessus/plugins/windows_asn1_vuln_ntlm.nasl lib/nessus/plugins/windows_terminal_services.nasl lib/nessus/plugins/wingate.nasl lib/nessus/plugins/wingate_denial.nasl @@ -1920,27 +3470,31 @@ lib/nessus/plugins/wordit_logbook.nasl lib/nessus/plugins/wordpress_flaws.nasl lib/nessus/plugins/worldclient_server_detection.nasl -lib/nessus/plugins/worldflash_detection.nasl lib/nessus/plugins/worldspan_gw_DoS.nasl +lib/nessus/plugins/worm_netsky_b.nasl lib/nessus/plugins/wrap.nasl lib/nessus/plugins/writesrv.nasl lib/nessus/plugins/ws4d_overflow.nasl lib/nessus/plugins/ws4e_too_long_url.nasl +lib/nessus/plugins/ws_ftp_client_overflows.nasl lib/nessus/plugins/wsftp_overflows.nasl lib/nessus/plugins/wsmp3d_cmd_exec.nasl lib/nessus/plugins/wu_ftpd_fb_realpath_offby1.nasl lib/nessus/plugins/wu_ftpd_glob.nasl lib/nessus/plugins/wu_ftpd_overflow.nasl lib/nessus/plugins/wu_ftpd_pasv_format_string.nasl +lib/nessus/plugins/wu_ftpd_restricted_gid_bypass.nasl lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl lib/nessus/plugins/wuftpd_ls_DoS.nasl lib/nessus/plugins/www_default_page.nasl lib/nessus/plugins/www_fingerprinting_hmap.nasl lib/nessus/plugins/www_hosting_copyrighted_material.nasl +lib/nessus/plugins/www_incomplete_auth_DoS.nasl lib/nessus/plugins/www_infinite_request_DoS.nasl lib/nessus/plugins/www_server_name.nasl lib/nessus/plugins/www_too_long_auth.nasl +lib/nessus/plugins/www_too_long_auth_DoS.nasl lib/nessus/plugins/www_too_long_cookie.nasl lib/nessus/plugins/www_too_long_header.nasl lib/nessus/plugins/www_too_long_header10.nasl @@ -1962,6 +3516,8 @@ lib/nessus/plugins/xmail_overflow.nasl lib/nessus/plugins/xmb_sql_injection.nasl lib/nessus/plugins/xmb_xss.nasl +lib/nessus/plugins/xmicro_default_password.nasl +lib/nessus/plugins/xnews.nasl lib/nessus/plugins/xolox_installed.nasl lib/nessus/plugins/xoops_myheader_url_xss.nasl lib/nessus/plugins/xoops_path_disclosure.nasl From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 15: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 9757516A4D0 for ; Fri, 23 Jul 2004 15:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C60743D45 for ; Fri, 23 Jul 2004 15:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NFoMwv024905 for ; Fri, 23 Jul 2004 15:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NFoMpW024904; Fri, 23 Jul 2004 15:50:22 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 15:50:22 GMT Resent-Message-Id: <200407231550.i6NFoMpW024904@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79E3116A4CE for ; Fri, 23 Jul 2004 15:48:52 +0000 (GMT) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01DA143D39 for ; Fri, 23 Jul 2004 15:48:52 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf21aec.mail.bellsouth.netESMTP <20040723154847.ETCJ1792.imf21aec.mail.bellsouth.net@gentoo.ahze.net> for ; Fri, 23 Jul 2004 11:48:47 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6NFmlkE000238; Fri, 23 Jul 2004 11:48:47 -0400 (EDT) (envelope-from ahze) Message-Id: <200407231548.i6NFmlkE000238@gentoo.ahze.net> Date: Fri, 23 Jul 2004 11:48:47 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69488: [MAINTAINER] math/fftw3: [Only show i386 options to i386] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 15:50:24 -0000 >Number: 69488 >Category: ports >Synopsis: [MAINTAINER] math/fftw3: [Only show i386 options to i386] >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 Jul 23 15:50:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - only show i386 options to i386 Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- fftw3-3.0.1_1.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/opt/cvs/freebsd-src/ports/math/fftw3/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 9 Jul 2004 17:42:34 -0000 1.23 +++ Makefile 23 Jul 2004 15:40:23 -0000 @@ -19,7 +19,7 @@ COMMENT= Fast C routines to compute the Discrete Fourier Transform USE_GMAKE= yes -USE_INC_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=15 USE_GNOME= gnomehack gnomeprefix gnometarget lthack pkgconfig USE_REINPLACE= yes INSTALLS_SHLIB= yes @@ -36,12 +36,16 @@ FFTW3F_INSTALL_TARGET=install-pkgconfigDATA install-libLTLIBRARIES install-exec OPTIONS= OPTIMIZED_CFLAGS "Enable optimized CFLAGS" off \ - OPTIMIZED_ATHLON "Enable AMD K7(Athlon) optimizations" off \ - SSE "Enable SSE optimized routines" off \ SMP_THREADS "Enable FFTW SMP threads library" off .include +.if ${ARCH} == "i386" +OPTIONS+= OPTIMIZED_ATHLON "Enable AMD K7(Athlon) optimizations" off \ + SSE "Enable SSE optimized routines" off + +.endif + .if defined(WITH_OPTIMIZED_CFLAGS) && !defined(WITH_OPTIMIZED_ATHLON) CONFIGURE_ENV+= CFLAGS="${CFLAGS:N-O:N-O*} -O2 -ffast-math -fomit-frame-pointer" .endif --- fftw3-3.0.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 16: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 1970B16A4CE for ; Fri, 23 Jul 2004 16:00:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C52E43D5E for ; Fri, 23 Jul 2004 16:00:53 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NG0rKq025667 for ; Fri, 23 Jul 2004 16:00:53 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NG0rEW025666; Fri, 23 Jul 2004 16:00:53 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 16:00:53 GMT Message-Id: <200407231600.i6NG0rEW025666@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Oliver Eikemeier Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oliver Eikemeier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 16:00:54 -0000 The following reply was made to PR ports/69487; it has been noted by GNATS. From: Oliver Eikemeier To: Thomas-Martin Seck Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 Date: Fri, 23 Jul 2004 17:53:00 +0200 Thomas-Martin Seck wrote: > [...] > This issue does not seem to be related to the vendor patch against the > LDAP authentication helpers as I originally thought (see ports/69465) > but > until this issue is sorted out upstream, keep leaving this patch alone > since I cannot test LDAP authentication myself yet. I believe this is caused by the vendor patch and does in no way releate to the OpenLDAP version used. The vendor patch breaks -H, -P and authentication. They changed checkLDAP from if (ldap_simple_bind_s(ld, dn, password) != LDAP_SUCCESS) return 1; return 0; to if (ldap_simple_bind_s(ld, dn, password) != LDAP_SUCCESS) ret = 1; return 0; which can't possibly work. I could show you some more examples of code that is obviously wrong after this patch. Besides, you can test this by yourself by repeating the steps given in You shouldn't be able to authenticate or crash. Again: I can't see any signs that this relates to the OpenLDAP version used. -Oliver From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 16:07:58 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 7015716A4CE; Fri, 23 Jul 2004 16:07:58 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31EDB43D5D; Fri, 23 Jul 2004 16:07:58 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (212.11.115.40) by mail.tiscali.cz (6.7.021) id 40AE2ED3017D93CF; Fri, 23 Jul 2004 18:07:57 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1Bns2M-0007Ep-Ms ; Fri, 23 Jul 2004 06:52:02 +0200 Date: Fri, 23 Jul 2004 06:52:02 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040723045202.GA26132@sanatana.dharma> References: <200407222020.i6MKKVeU079307@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407222020.i6MKKVeU079307@freefall.freebsd.org> User-Agent: Mutt/1.5.6i cc: knu@FreeBSD.org Subject: Re: ports/69447: portupgrade: py-musicbrain - 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: Fri, 23 Jul 2004 16:07:58 -0000 ehm. there is a small bug in my pr DISTNAME= python-${PORTNAME}-1.0b1 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 16: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 AB3AF16A4CE for ; Fri, 23 Jul 2004 16:10:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 966D243D49 for ; Fri, 23 Jul 2004 16:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NGASsm030023 for ; Fri, 23 Jul 2004 16:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NGAS0A030018; Fri, 23 Jul 2004 16:10:28 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 16:10:28 GMT Resent-Message-Id: <200407231610.i6NGAS0A030018@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Udo Schweigert Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A124F16A4CE for ; Fri, 23 Jul 2004 16:06:52 +0000 (GMT) Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BE4A43D45 for ; Fri, 23 Jul 2004 16:06:51 +0000 (GMT) (envelope-from udo.schweigert@siemens.com) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.12.6/8.12.6) with ESMTP id i6NG6oqO028523 for ; Fri, 23 Jul 2004 18:06:50 +0200 Received: from mars.cert.siemens.com (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.11.7/8.11.7) with ESMTP id i6NG6n402431 for ; Fri, 23 Jul 2004 18:06:49 +0200 (MEST) Received: from alaska.cert.siemens.com (reims.mchp.siemens.de [139.23.202.134]) mail/cert.mc.pre,v 1.61 2004/06/20 16:46:46 mailadm Exp $) with ESMTP id i6NG6n6d055738 for ; Fri, 23 Jul 2004 18:06:49 +0200 (CEST) Received: from alaska.cert.siemens.com (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.17 2004/05/08 20:26:28 ust Exp $) with ESMTP id i6NG6nc8086126 for ; Fri, 23 Jul 2004 18:06:49 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.com) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id i6NG6nYG068188; Fri, 23 Jul 2004 18:06:49 +0200 (CEST) (envelope-from ust) Message-Id: <200407231606.i6NG6nYG068188@alaska.cert.siemens.com> Date: Fri, 23 Jul 2004 18:06:49 +0200 (CEST) From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69489: maintainer-update of security/nessus-*-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Udo Schweigert List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 16:10:29 -0000 >Number: 69489 >Category: ports >Synopsis: maintainer-update of security/nessus-*-devel >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 Jul 23 16:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Udo Schweigert >Release: FreeBSD 4.10-RELEASE-p2 i386 >Organization: >Environment: >Description: Maintainer-update of the security/nessus-*-devel ports: - Upgrade to nessus version 2.1.1 >How-To-Repeat: >Fix: diff -ru /usr/ports/security/nessus-devel/Makefile nessus-devel/Makefile --- /usr/ports/security/nessus-devel/Makefile Tue Jul 13 06:09:32 2004 +++ nessus-devel/Makefile Fri Jul 23 17:40:47 2004 @@ -4,7 +4,7 @@ # PORTNAME= nessus-devel -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-devel/distinfo nessus-devel/distinfo --- /usr/ports/security/nessus-devel/distinfo Tue Jul 13 06:09:32 2004 +++ nessus-devel/distinfo Fri Jul 23 17:41:20 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-core-2.1.0.tar.gz) = 13a4c7aca8a96dc2db127377db3a3659 -SIZE (nessus/nessus-core-2.1.0.tar.gz) = 670934 +MD5 (nessus/nessus-core-2.1.1.tar.gz) = 924759857987dac7603ffe18c7ac0403 +SIZE (nessus/nessus-core-2.1.1.tar.gz) = 671732 diff -ru /usr/ports/security/nessus-libnasl-devel/Makefile nessus-libnasl-devel/Makefile --- /usr/ports/security/nessus-libnasl-devel/Makefile Tue Jul 13 06:09:32 2004 +++ nessus-libnasl-devel/Makefile Fri Jul 23 17:32:35 2004 @@ -4,7 +4,7 @@ # PORTNAME= nessus-libnasl-devel -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libnasl-devel/distinfo nessus-libnasl-devel/distinfo --- /usr/ports/security/nessus-libnasl-devel/distinfo Tue Jul 13 06:09:32 2004 +++ nessus-libnasl-devel/distinfo Fri Jul 23 17:32:56 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/libnasl-2.1.0.tar.gz) = fb680bcf7ed5a00f00cffba0e185af3f -SIZE (nessus/libnasl-2.1.0.tar.gz) = 356196 +MD5 (nessus/libnasl-2.1.1.tar.gz) = bab0620b8157dfee0fd1cc8acb24a016 +SIZE (nessus/libnasl-2.1.1.tar.gz) = 358602 diff -ru /usr/ports/security/nessus-libraries-devel/Makefile nessus-libraries-devel/Makefile --- /usr/ports/security/nessus-libraries-devel/Makefile Tue Jul 13 06:09:32 2004 +++ nessus-libraries-devel/Makefile Fri Jul 23 17:23:33 2004 @@ -7,7 +7,7 @@ # client. PORTNAME= nessus-libraries-devel -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-libraries-devel/distinfo nessus-libraries-devel/distinfo --- /usr/ports/security/nessus-libraries-devel/distinfo Tue Jul 13 06:09:32 2004 +++ nessus-libraries-devel/distinfo Fri Jul 23 17:24:07 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-libraries-2.1.0.tar.gz) = 0b1043b6dcad019299b202fe24a1c97d -SIZE (nessus/nessus-libraries-2.1.0.tar.gz) = 423610 +MD5 (nessus/nessus-libraries-2.1.1.tar.gz) = 5cac4f2a5174b7832e7d34954fb554da +SIZE (nessus/nessus-libraries-2.1.1.tar.gz) = 423621 diff -ru /usr/ports/security/nessus-plugins-devel/Makefile nessus-plugins-devel/Makefile --- /usr/ports/security/nessus-plugins-devel/Makefile Tue Jul 13 06:09:32 2004 +++ nessus-plugins-devel/Makefile Fri Jul 23 17:46:31 2004 @@ -4,7 +4,7 @@ # PORTNAME= nessus-plugins-devel -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= security MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ diff -ru /usr/ports/security/nessus-plugins-devel/distinfo nessus-plugins-devel/distinfo --- /usr/ports/security/nessus-plugins-devel/distinfo Tue Jul 13 06:09:32 2004 +++ nessus-plugins-devel/distinfo Fri Jul 23 17:47:16 2004 @@ -1,2 +1,2 @@ -MD5 (nessus/nessus-plugins-2.1.0.tar.gz) = 29e5dfb2220b80fcfe6ed19e4e5d122f -SIZE (nessus/nessus-plugins-2.1.0.tar.gz) = 1664249 +MD5 (nessus/nessus-plugins-2.1.1.tar.gz) = 9a5aaed7e8bbbe598e047c05aeea5aeb +SIZE (nessus/nessus-plugins-2.1.1.tar.gz) = 1767372 diff -ru /usr/ports/security/nessus-plugins-devel/pkg-plist nessus-plugins-devel/pkg-plist --- /usr/ports/security/nessus-plugins-devel/pkg-plist Tue Jul 13 06:09:32 2004 +++ nessus-plugins-devel/pkg-plist Fri Jul 23 17:50:39 2004 @@ -252,6 +252,7 @@ lib/nessus/plugins/argosoft_multiple_flaws.nasl lib/nessus/plugins/args_bat.nasl lib/nessus/plugins/arkeia.nasl +lib/nessus/plugins/artmedic_kleinanzeigen_file_inclusion.nasl lib/nessus/plugins/artmedic_links5_file_inclusion.nasl lib/nessus/plugins/ascend_kill.nasl lib/nessus/plugins/asip-status.nasl @@ -346,6 +347,7 @@ lib/nessus/plugins/bugbear_b.nasl lib/nessus/plugins/bugbear_b_1080.nasl lib/nessus/plugins/bugzilla_detect.nasl +lib/nessus/plugins/bugzilla_multiple_vulns.nasl lib/nessus/plugins/bugzilla_sql_vulns.nasl lib/nessus/plugins/bugzilla_vulns.nasl lib/nessus/plugins/bugzilla_xss_and_tmp_files.nasl @@ -421,6 +423,7 @@ lib/nessus/plugins/cobalt_web_admin_server.nasl lib/nessus/plugins/codered_x.nasl lib/nessus/plugins/cold_fusion_admin_dos.nasl +lib/nessus/plugins/comersus_xss.nasl lib/nessus/plugins/commerce_cgi.nasl lib/nessus/plugins/communigatepro_overflow.nasl lib/nessus/plugins/communigatepro_referer_field.nasl @@ -501,6 +504,7 @@ lib/nessus/plugins/directory_manager.nasl lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl +lib/nessus/plugins/distcc_detection.nasl lib/nessus/plugins/dlink_router_overflow.nasl lib/nessus/plugins/dmail_overflow.nasl lib/nessus/plugins/dns_cache_sniffing.nasl @@ -625,6 +629,8 @@ lib/nessus/plugins/freebsd_ecartis_100s20030814_1.nasl lib/nessus/plugins/freebsd_emil_21b9.nasl lib/nessus/plugins/freebsd_ethereal_0103.nasl +lib/nessus/plugins/freebsd_ethereal_0104.nasl +lib/nessus/plugins/freebsd_ethereal_0105.nasl lib/nessus/plugins/freebsd_exim_433_20_1.nasl lib/nessus/plugins/freebsd_ezbounce_104_a_1.nasl lib/nessus/plugins/freebsd_fetchmail_620.nasl @@ -685,6 +691,7 @@ lib/nessus/plugins/freebsd_phpBB_208_2.nasl lib/nessus/plugins/freebsd_phpMyAdmin_254.nasl lib/nessus/plugins/freebsd_phpMyAdmin_2571.nasl +lib/nessus/plugins/freebsd_php_438.nasl lib/nessus/plugins/freebsd_phpnuke_69.nasl lib/nessus/plugins/freebsd_phpnuke_73.nasl lib/nessus/plugins/freebsd_pine_421.nasl @@ -931,6 +938,7 @@ lib/nessus/plugins/imap_overflow.nasl lib/nessus/plugins/imate_overflow.nasl lib/nessus/plugins/imp_content_type_xss.nasl +lib/nessus/plugins/imp_detect.nasl lib/nessus/plugins/imp_mime_viewer_html_xss.nasl lib/nessus/plugins/imp_session_hijacking.nasl lib/nessus/plugins/imp_sql_injection.nasl @@ -953,6 +961,7 @@ lib/nessus/plugins/invision_power_board_xss.nasl lib/nessus/plugins/invision_power_top_site_sql_injection.nasl lib/nessus/plugins/ion_p.nasl +lib/nessus/plugins/ipb_sql_disclosure.nasl lib/nessus/plugins/ipinsight_detection.nasl lib/nessus/plugins/iplanet_app_server_detection.nasl lib/nessus/plugins/iplanet_app_server_overflow.nasl @@ -1032,13 +1041,13 @@ lib/nessus/plugins/leifwright_blog_cmd_execution.nasl lib/nessus/plugins/les_visiteurs.nasl lib/nessus/plugins/libgtop_daemon.nasl -lib/nessus/plugins/libwhisker_settings.nasl lib/nessus/plugins/limewire_installed.nasl lib/nessus/plugins/line_overflow.nasl lib/nessus/plugins/linksys_ap_default_password.nasl lib/nessus/plugins/linksys_dos.nasl lib/nessus/plugins/linksys_empty_GET_DoS.nasl lib/nessus/plugins/linksys_gozila_cgi_DoS.nasl +lib/nessus/plugins/linksys_next_file_file_disclosure.nasl lib/nessus/plugins/linux26_tcpopt_dos.nasl lib/nessus/plugins/linux_tftp.nes lib/nessus/plugins/linux_zero_len_fragment.nasl @@ -1070,6 +1079,7 @@ lib/nessus/plugins/macosx_SecUpd20040524.nasl lib/nessus/plugins/macosx_SecUpd20040607.nasl lib/nessus/plugins/macosx_multiple_vulns.nasl +lib/nessus/plugins/macosx_server_default_password.nasl lib/nessus/plugins/macosx_version.nasl lib/nessus/plugins/magic_winmail_pop_format_string.nasl lib/nessus/plugins/mail_asn1_decoding.nasl @@ -1130,6 +1140,8 @@ lib/nessus/plugins/mod_ntlm.nasl lib/nessus/plugins/mod_python_handle.nasl lib/nessus/plugins/mod_python_malformed_query.nasl +lib/nessus/plugins/mod_rootme_backdoor.nasl +lib/nessus/plugins/mod_ssl_hook_functions_format_string_vuln.nasl lib/nessus/plugins/mod_ssl_offby1.nasl lib/nessus/plugins/mod_ssl_overflow.nasl lib/nessus/plugins/mod_ssl_uuencode_binary.nasl @@ -1139,6 +1151,7 @@ lib/nessus/plugins/monkeyweb_too_big_post.nasl lib/nessus/plugins/moodle_xss.nasl lib/nessus/plugins/mountd_overflow.nasl +lib/nessus/plugins/mozilla_firefox_code_exec.nasl lib/nessus/plugins/mpcsw_guestbook_database.nasl lib/nessus/plugins/mq_toolbar_detection.nasl lib/nessus/plugins/ms_index_server.nasl @@ -1184,6 +1197,7 @@ lib/nessus/plugins/myphpnuke_code_injection.nasl lib/nessus/plugins/myserver_dos.nasl lib/nessus/plugins/myserver_traversal.nasl +lib/nessus/plugins/mysql_auth_bypass_zeropass.nasl lib/nessus/plugins/mysql_bad_password.nasl lib/nessus/plugins/mysql_double_free.nasl lib/nessus/plugins/mysql_flaws.nasl @@ -1324,6 +1338,8 @@ lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/openwebmail_cmd_exec.nasl lib/nessus/plugins/openwebmail_content_type_xss.nasl +lib/nessus/plugins/openwebmail_detect.nasl +lib/nessus/plugins/openwebmail_vacation_input_validation.nasl lib/nessus/plugins/opera_arbitrary_file_dropping.nasl lib/nessus/plugins/opera_heap_corruption.nasl lib/nessus/plugins/opera_href_overflow.nasl @@ -1367,6 +1383,11 @@ lib/nessus/plugins/oscommerce_session_id_xss.nasl lib/nessus/plugins/oshare.nasl lib/nessus/plugins/ospf_detect.nasl +lib/nessus/plugins/osticket_attachment_code_execution.nasl +lib/nessus/plugins/osticket_backdoored.nasl +lib/nessus/plugins/osticket_large_attachment_upload.nasl +lib/nessus/plugins/osticket_setup_php_accessible.nasl +lib/nessus/plugins/osticket_view_attachments.nasl lib/nessus/plugins/overnet.nasl lib/nessus/plugins/owa-anonymous.nasl lib/nessus/plugins/owl_browse.nasl @@ -1430,9 +1451,11 @@ lib/nessus/plugins/php_safe_mode.nasl lib/nessus/plugins/php_socket_iovec_alloc_overflow.nasl lib/nessus/plugins/php_split_mime.nasl +lib/nessus/plugins/php_strip_tags_memory_limit_vuln.nasl lib/nessus/plugins/phpay_info_disclosure.nasl lib/nessus/plugins/phpbb_sql_injection.nasl lib/nessus/plugins/phpbb_sql_injection2.nasl +lib/nessus/plugins/phpbb_sql_injection3.nasl lib/nessus/plugins/phpbb_xss.nasl lib/nessus/plugins/phpcatalog_sql_injection.nasl lib/nessus/plugins/phpdig_code_injection.nasl @@ -1455,6 +1478,7 @@ lib/nessus/plugins/ping_host.nasl lib/nessus/plugins/pingpong.inc lib/nessus/plugins/piranha.nasl +lib/nessus/plugins/pirelli_router_default_password.nasl lib/nessus/plugins/pivot_file_inclusion.nasl lib/nessus/plugins/pjreview_neo_file_reading.nasl lib/nessus/plugins/platinum_ftp.nasl @@ -1758,8 +1782,11 @@ lib/nessus/plugins/redhat-RHSA-2004-249.nasl lib/nessus/plugins/redhat-RHSA-2004-255.nasl lib/nessus/plugins/redhat-RHSA-2004-260.nasl +lib/nessus/plugins/redhat-RHSA-2004-342.nasl lib/nessus/plugins/redhat-RHSA-2004-354.nasl lib/nessus/plugins/redhat-RHSA-2004-360.nasl +lib/nessus/plugins/redhat-RHSA-2004-392.nasl +lib/nessus/plugins/redhat-RHSA-2004-395.nasl lib/nessus/plugins/redhat_fixes.nasl lib/nessus/plugins/relative_field_vulnerability.nasl lib/nessus/plugins/remote_pc_detect.nasl @@ -2095,6 +2122,13 @@ lib/nessus/plugins/smb_nt_ms04-014.nasl lib/nessus/plugins/smb_nt_ms04-015.nasl lib/nessus/plugins/smb_nt_ms04-016.nasl +lib/nessus/plugins/smb_nt_ms04-018.nasl +lib/nessus/plugins/smb_nt_ms04-019.nasl +lib/nessus/plugins/smb_nt_ms04-020.nasl +lib/nessus/plugins/smb_nt_ms04-021.nasl +lib/nessus/plugins/smb_nt_ms04-022.nasl +lib/nessus/plugins/smb_nt_ms04-023.nasl +lib/nessus/plugins/smb_nt_ms04-024.nasl lib/nessus/plugins/smb_null_params_dos.nasl lib/nessus/plugins/smb_reg_MTS_access.nasl lib/nessus/plugins/smb_reg_autologon.nasl @@ -2177,6 +2211,992 @@ lib/nessus/plugins/socks4_username_overflow.nasl lib/nessus/plugins/socks4a_hostname_overflow.nasl lib/nessus/plugins/sojourn.nasl +lib/nessus/plugins/solaris.inc +lib/nessus/plugins/solaris251_103558.nasl +lib/nessus/plugins/solaris251_103566.nasl +lib/nessus/plugins/solaris251_103582.nasl +lib/nessus/plugins/solaris251_103594.nasl +lib/nessus/plugins/solaris251_103603.nasl +lib/nessus/plugins/solaris251_103627.nasl +lib/nessus/plugins/solaris251_103630.nasl +lib/nessus/plugins/solaris251_103640.nasl +lib/nessus/plugins/solaris251_103663.nasl +lib/nessus/plugins/solaris251_103670.nasl +lib/nessus/plugins/solaris251_103680.nasl +lib/nessus/plugins/solaris251_103686.nasl +lib/nessus/plugins/solaris251_103690.nasl +lib/nessus/plugins/solaris251_103699.nasl +lib/nessus/plugins/solaris251_103738.nasl +lib/nessus/plugins/solaris251_103743.nasl +lib/nessus/plugins/solaris251_103817.nasl +lib/nessus/plugins/solaris251_103866.nasl +lib/nessus/plugins/solaris251_103867.nasl +lib/nessus/plugins/solaris251_103879.nasl +lib/nessus/plugins/solaris251_103882.nasl +lib/nessus/plugins/solaris251_103891.nasl +lib/nessus/plugins/solaris251_103901.nasl +lib/nessus/plugins/solaris251_103959.nasl +lib/nessus/plugins/solaris251_103995.nasl +lib/nessus/plugins/solaris251_104010.nasl +lib/nessus/plugins/solaris251_104093.nasl +lib/nessus/plugins/solaris251_104166.nasl +lib/nessus/plugins/solaris251_104178.nasl +lib/nessus/plugins/solaris251_104212.nasl +lib/nessus/plugins/solaris251_104220.nasl +lib/nessus/plugins/solaris251_104266.nasl +lib/nessus/plugins/solaris251_104283.nasl +lib/nessus/plugins/solaris251_104331.nasl +lib/nessus/plugins/solaris251_104334.nasl +lib/nessus/plugins/solaris251_104338.nasl +lib/nessus/plugins/solaris251_104471.nasl +lib/nessus/plugins/solaris251_104489.nasl +lib/nessus/plugins/solaris251_104498.nasl +lib/nessus/plugins/solaris251_104516.nasl +lib/nessus/plugins/solaris251_104533.nasl +lib/nessus/plugins/solaris251_104552.nasl +lib/nessus/plugins/solaris251_104578.nasl +lib/nessus/plugins/solaris251_104613.nasl +lib/nessus/plugins/solaris251_104637.nasl +lib/nessus/plugins/solaris251_104650.nasl +lib/nessus/plugins/solaris251_104654.nasl +lib/nessus/plugins/solaris251_104661.nasl +lib/nessus/plugins/solaris251_104692.nasl +lib/nessus/plugins/solaris251_104736.nasl +lib/nessus/plugins/solaris251_104776.nasl +lib/nessus/plugins/solaris251_104795.nasl +lib/nessus/plugins/solaris251_104818.nasl +lib/nessus/plugins/solaris251_104841.nasl +lib/nessus/plugins/solaris251_104849.nasl +lib/nessus/plugins/solaris251_104873.nasl +lib/nessus/plugins/solaris251_104893.nasl +lib/nessus/plugins/solaris251_104935.nasl +lib/nessus/plugins/solaris251_104960.nasl +lib/nessus/plugins/solaris251_104968.nasl +lib/nessus/plugins/solaris251_104976.nasl +lib/nessus/plugins/solaris251_105050.nasl +lib/nessus/plugins/solaris251_105076.nasl +lib/nessus/plugins/solaris251_105092.nasl +lib/nessus/plugins/solaris251_105133.nasl +lib/nessus/plugins/solaris251_105165.nasl +lib/nessus/plugins/solaris251_105203.nasl +lib/nessus/plugins/solaris251_105251.nasl +lib/nessus/plugins/solaris251_105299.nasl +lib/nessus/plugins/solaris251_105784.nasl +lib/nessus/plugins/solaris251_105962.nasl +lib/nessus/plugins/solaris251_105998.nasl +lib/nessus/plugins/solaris251_106160.nasl +lib/nessus/plugins/solaris251_106224.nasl +lib/nessus/plugins/solaris251_106382.nasl +lib/nessus/plugins/solaris251_106396.nasl +lib/nessus/plugins/solaris251_106411.nasl +lib/nessus/plugins/solaris251_106441.nasl +lib/nessus/plugins/solaris251_106602.nasl +lib/nessus/plugins/solaris251_106662.nasl +lib/nessus/plugins/solaris251_106663.nasl +lib/nessus/plugins/solaris251_106689.nasl +lib/nessus/plugins/solaris251_106905.nasl +lib/nessus/plugins/solaris251_106909.nasl +lib/nessus/plugins/solaris251_107020.nasl +lib/nessus/plugins/solaris251_107756.nasl +lib/nessus/plugins/solaris251_108194.nasl +lib/nessus/plugins/solaris251_108205.nasl +lib/nessus/plugins/solaris251_108289.nasl +lib/nessus/plugins/solaris251_108363.nasl +lib/nessus/plugins/solaris251_108470.nasl +lib/nessus/plugins/solaris251_108497.nasl +lib/nessus/plugins/solaris251_108658.nasl +lib/nessus/plugins/solaris251_108802.nasl +lib/nessus/plugins/solaris251_108928.nasl +lib/nessus/plugins/solaris251_109275.nasl +lib/nessus/plugins/solaris251_109392.nasl +lib/nessus/plugins/solaris251_109721.nasl +lib/nessus/plugins/solaris251_111025.nasl +lib/nessus/plugins/solaris251_111279.nasl +lib/nessus/plugins/solaris251_111281.nasl +lib/nessus/plugins/solaris251_111499.nasl +lib/nessus/plugins/solaris251_111576.nasl +lib/nessus/plugins/solaris251_111840.nasl +lib/nessus/plugins/solaris251_111916.nasl +lib/nessus/plugins/solaris251_112086.nasl +lib/nessus/plugins/solaris251_112454.nasl +lib/nessus/plugins/solaris251_112770.nasl +lib/nessus/plugins/solaris251_112891.nasl +lib/nessus/plugins/solaris251_x86_103559.nasl +lib/nessus/plugins/solaris251_x86_103581.nasl +lib/nessus/plugins/solaris251_x86_103595.nasl +lib/nessus/plugins/solaris251_x86_103604.nasl +lib/nessus/plugins/solaris251_x86_103628.nasl +lib/nessus/plugins/solaris251_x86_103631.nasl +lib/nessus/plugins/solaris251_x86_103641.nasl +lib/nessus/plugins/solaris251_x86_103664.nasl +lib/nessus/plugins/solaris251_x86_103681.nasl +lib/nessus/plugins/solaris251_x86_103687.nasl +lib/nessus/plugins/solaris251_x86_103691.nasl +lib/nessus/plugins/solaris251_x86_103700.nasl +lib/nessus/plugins/solaris251_x86_103717.nasl +lib/nessus/plugins/solaris251_x86_103739.nasl +lib/nessus/plugins/solaris251_x86_103744.nasl +lib/nessus/plugins/solaris251_x86_103818.nasl +lib/nessus/plugins/solaris251_x86_103868.nasl +lib/nessus/plugins/solaris251_x86_103881.nasl +lib/nessus/plugins/solaris251_x86_103886.nasl +lib/nessus/plugins/solaris251_x86_103892.nasl +lib/nessus/plugins/solaris251_x86_103960.nasl +lib/nessus/plugins/solaris251_x86_103996.nasl +lib/nessus/plugins/solaris251_x86_104011.nasl +lib/nessus/plugins/solaris251_x86_104167.nasl +lib/nessus/plugins/solaris251_x86_104185.nasl +lib/nessus/plugins/solaris251_x86_104221.nasl +lib/nessus/plugins/solaris251_x86_104241.nasl +lib/nessus/plugins/solaris251_x86_104267.nasl +lib/nessus/plugins/solaris251_x86_104284.nasl +lib/nessus/plugins/solaris251_x86_104332.nasl +lib/nessus/plugins/solaris251_x86_104335.nasl +lib/nessus/plugins/solaris251_x86_104472.nasl +lib/nessus/plugins/solaris251_x86_104500.nasl +lib/nessus/plugins/solaris251_x86_104517.nasl +lib/nessus/plugins/solaris251_x86_104554.nasl +lib/nessus/plugins/solaris251_x86_104557.nasl +lib/nessus/plugins/solaris251_x86_104579.nasl +lib/nessus/plugins/solaris251_x86_104614.nasl +lib/nessus/plugins/solaris251_x86_104638.nasl +lib/nessus/plugins/solaris251_x86_104641.nasl +lib/nessus/plugins/solaris251_x86_104651.nasl +lib/nessus/plugins/solaris251_x86_104655.nasl +lib/nessus/plugins/solaris251_x86_104663.nasl +lib/nessus/plugins/solaris251_x86_104693.nasl +lib/nessus/plugins/solaris251_x86_104737.nasl +lib/nessus/plugins/solaris251_x86_104777.nasl +lib/nessus/plugins/solaris251_x86_104819.nasl +lib/nessus/plugins/solaris251_x86_104842.nasl +lib/nessus/plugins/solaris251_x86_104848.nasl +lib/nessus/plugins/solaris251_x86_104874.nasl +lib/nessus/plugins/solaris251_x86_104894.nasl +lib/nessus/plugins/solaris251_x86_104936.nasl +lib/nessus/plugins/solaris251_x86_104961.nasl +lib/nessus/plugins/solaris251_x86_104969.nasl +lib/nessus/plugins/solaris251_x86_105051.nasl +lib/nessus/plugins/solaris251_x86_105093.nasl +lib/nessus/plugins/solaris251_x86_105105.nasl +lib/nessus/plugins/solaris251_x86_105124.nasl +lib/nessus/plugins/solaris251_x86_105127.nasl +lib/nessus/plugins/solaris251_x86_105134.nasl +lib/nessus/plugins/solaris251_x86_105166.nasl +lib/nessus/plugins/solaris251_x86_105207.nasl +lib/nessus/plugins/solaris251_x86_105300.nasl +lib/nessus/plugins/solaris251_x86_105354.nasl +lib/nessus/plugins/solaris251_x86_105496.nasl +lib/nessus/plugins/solaris251_x86_105638.nasl +lib/nessus/plugins/solaris251_x86_105785.nasl +lib/nessus/plugins/solaris251_x86_105963.nasl +lib/nessus/plugins/solaris251_x86_105999.nasl +lib/nessus/plugins/solaris251_x86_106161.nasl +lib/nessus/plugins/solaris251_x86_106225.nasl +lib/nessus/plugins/solaris251_x86_106397.nasl +lib/nessus/plugins/solaris251_x86_106412.nasl +lib/nessus/plugins/solaris251_x86_106442.nasl +lib/nessus/plugins/solaris251_x86_106603.nasl +lib/nessus/plugins/solaris251_x86_106664.nasl +lib/nessus/plugins/solaris251_x86_106665.nasl +lib/nessus/plugins/solaris251_x86_106690.nasl +lib/nessus/plugins/solaris251_x86_106906.nasl +lib/nessus/plugins/solaris251_x86_106910.nasl +lib/nessus/plugins/solaris251_x86_107021.nasl +lib/nessus/plugins/solaris251_x86_107757.nasl +lib/nessus/plugins/solaris251_x86_108196.nasl +lib/nessus/plugins/solaris251_x86_108206.nasl +lib/nessus/plugins/solaris251_x86_108290.nasl +lib/nessus/plugins/solaris251_x86_108364.nasl +lib/nessus/plugins/solaris251_x86_108471.nasl +lib/nessus/plugins/solaris251_x86_108498.nasl +lib/nessus/plugins/solaris251_x86_108659.nasl +lib/nessus/plugins/solaris251_x86_108803.nasl +lib/nessus/plugins/solaris251_x86_108929.nasl +lib/nessus/plugins/solaris251_x86_109276.nasl +lib/nessus/plugins/solaris251_x86_109393.nasl +lib/nessus/plugins/solaris251_x86_109722.nasl +lib/nessus/plugins/solaris251_x86_111026.nasl +lib/nessus/plugins/solaris251_x86_111280.nasl +lib/nessus/plugins/solaris251_x86_111282.nasl +lib/nessus/plugins/solaris251_x86_111518.nasl +lib/nessus/plugins/solaris251_x86_111577.nasl +lib/nessus/plugins/solaris251_x86_111841.nasl +lib/nessus/plugins/solaris251_x86_111917.nasl +lib/nessus/plugins/solaris251_x86_112087.nasl +lib/nessus/plugins/solaris251_x86_112455.nasl +lib/nessus/plugins/solaris251_x86_112892.nasl +lib/nessus/plugins/solaris26_105181.nasl +lib/nessus/plugins/solaris26_105210.nasl +lib/nessus/plugins/solaris26_105216.nasl +lib/nessus/plugins/solaris26_105338.nasl +lib/nessus/plugins/solaris26_105377.nasl +lib/nessus/plugins/solaris26_105379.nasl +lib/nessus/plugins/solaris26_105395.nasl +lib/nessus/plugins/solaris26_105401.nasl +lib/nessus/plugins/solaris26_105405.nasl +lib/nessus/plugins/solaris26_105407.nasl +lib/nessus/plugins/solaris26_105528.nasl +lib/nessus/plugins/solaris26_105529.nasl +lib/nessus/plugins/solaris26_105552.nasl +lib/nessus/plugins/solaris26_105558.nasl +lib/nessus/plugins/solaris26_105562.nasl +lib/nessus/plugins/solaris26_105564.nasl +lib/nessus/plugins/solaris26_105566.nasl +lib/nessus/plugins/solaris26_105615.nasl +lib/nessus/plugins/solaris26_105633.nasl +lib/nessus/plugins/solaris26_105665.nasl +lib/nessus/plugins/solaris26_105667.nasl +lib/nessus/plugins/solaris26_105669.nasl +lib/nessus/plugins/solaris26_105693.nasl +lib/nessus/plugins/solaris26_105703.nasl +lib/nessus/plugins/solaris26_105722.nasl +lib/nessus/plugins/solaris26_105755.nasl +lib/nessus/plugins/solaris26_105780.nasl +lib/nessus/plugins/solaris26_105786.nasl +lib/nessus/plugins/solaris26_105800.nasl +lib/nessus/plugins/solaris26_105802.nasl +lib/nessus/plugins/solaris26_105837.nasl +lib/nessus/plugins/solaris26_105924.nasl +lib/nessus/plugins/solaris26_105990.nasl +lib/nessus/plugins/solaris26_106027.nasl +lib/nessus/plugins/solaris26_106040.nasl +lib/nessus/plugins/solaris26_106049.nasl +lib/nessus/plugins/solaris26_106112.nasl +lib/nessus/plugins/solaris26_106123.nasl +lib/nessus/plugins/solaris26_106125.nasl +lib/nessus/plugins/solaris26_106193.nasl +lib/nessus/plugins/solaris26_106222.nasl +lib/nessus/plugins/solaris26_106235.nasl +lib/nessus/plugins/solaris26_106242.nasl +lib/nessus/plugins/solaris26_106257.nasl +lib/nessus/plugins/solaris26_106292.nasl +lib/nessus/plugins/solaris26_106301.nasl +lib/nessus/plugins/solaris26_106303.nasl +lib/nessus/plugins/solaris26_106331.nasl +lib/nessus/plugins/solaris26_106361.nasl +lib/nessus/plugins/solaris26_106415.nasl +lib/nessus/plugins/solaris26_106437.nasl +lib/nessus/plugins/solaris26_106439.nasl +lib/nessus/plugins/solaris26_106448.nasl +lib/nessus/plugins/solaris26_106468.nasl +lib/nessus/plugins/solaris26_106522.nasl +lib/nessus/plugins/solaris26_106569.nasl +lib/nessus/plugins/solaris26_106592.nasl +lib/nessus/plugins/solaris26_106625.nasl +lib/nessus/plugins/solaris26_106629.nasl +lib/nessus/plugins/solaris26_106639.nasl +lib/nessus/plugins/solaris26_106648.nasl +lib/nessus/plugins/solaris26_106649.nasl +lib/nessus/plugins/solaris26_106650.nasl +lib/nessus/plugins/solaris26_106834.nasl +lib/nessus/plugins/solaris26_107298.nasl +lib/nessus/plugins/solaris26_107326.nasl +lib/nessus/plugins/solaris26_107336.nasl +lib/nessus/plugins/solaris26_107565.nasl +lib/nessus/plugins/solaris26_107618.nasl +lib/nessus/plugins/solaris26_107733.nasl +lib/nessus/plugins/solaris26_107758.nasl +lib/nessus/plugins/solaris26_107766.nasl +lib/nessus/plugins/solaris26_107774.nasl +lib/nessus/plugins/solaris26_107991.nasl +lib/nessus/plugins/solaris26_108129.nasl +lib/nessus/plugins/solaris26_108199.nasl +lib/nessus/plugins/solaris26_108201.nasl +lib/nessus/plugins/solaris26_108307.nasl +lib/nessus/plugins/solaris26_108333.nasl +lib/nessus/plugins/solaris26_108346.nasl +lib/nessus/plugins/solaris26_108388.nasl +lib/nessus/plugins/solaris26_108468.nasl +lib/nessus/plugins/solaris26_108492.nasl +lib/nessus/plugins/solaris26_108499.nasl +lib/nessus/plugins/solaris26_108660.nasl +lib/nessus/plugins/solaris26_108804.nasl +lib/nessus/plugins/solaris26_108890.nasl +lib/nessus/plugins/solaris26_108893.nasl +lib/nessus/plugins/solaris26_108895.nasl +lib/nessus/plugins/solaris26_109100.nasl +lib/nessus/plugins/solaris26_109266.nasl +lib/nessus/plugins/solaris26_109339.nasl +lib/nessus/plugins/solaris26_109388.nasl +lib/nessus/plugins/solaris26_109719.nasl +lib/nessus/plugins/solaris26_110128.nasl +lib/nessus/plugins/solaris26_110883.nasl +lib/nessus/plugins/solaris26_110990.nasl +lib/nessus/plugins/solaris26_111039.nasl +lib/nessus/plugins/solaris26_111236.nasl +lib/nessus/plugins/solaris26_111240.nasl +lib/nessus/plugins/solaris26_111560.nasl +lib/nessus/plugins/solaris26_111645.nasl +lib/nessus/plugins/solaris26_111859.nasl +lib/nessus/plugins/solaris26_111973.nasl +lib/nessus/plugins/solaris26_112073.nasl +lib/nessus/plugins/solaris26_112456.nasl +lib/nessus/plugins/solaris26_112765.nasl +lib/nessus/plugins/solaris26_112814.nasl +lib/nessus/plugins/solaris26_112893.nasl +lib/nessus/plugins/solaris26_113754.nasl +lib/nessus/plugins/solaris26_114889.nasl +lib/nessus/plugins/solaris26_114941.nasl +lib/nessus/plugins/solaris26_115563.nasl +lib/nessus/plugins/solaris26_x86_105182.nasl +lib/nessus/plugins/solaris26_x86_105211.nasl +lib/nessus/plugins/solaris26_x86_105217.nasl +lib/nessus/plugins/solaris26_x86_105339.nasl +lib/nessus/plugins/solaris26_x86_105380.nasl +lib/nessus/plugins/solaris26_x86_105396.nasl +lib/nessus/plugins/solaris26_x86_105402.nasl +lib/nessus/plugins/solaris26_x86_105406.nasl +lib/nessus/plugins/solaris26_x86_105408.nasl +lib/nessus/plugins/solaris26_x86_105530.nasl +lib/nessus/plugins/solaris26_x86_105553.nasl +lib/nessus/plugins/solaris26_x86_105559.nasl +lib/nessus/plugins/solaris26_x86_105563.nasl +lib/nessus/plugins/solaris26_x86_105565.nasl +lib/nessus/plugins/solaris26_x86_105567.nasl +lib/nessus/plugins/solaris26_x86_105601.nasl +lib/nessus/plugins/solaris26_x86_105616.nasl +lib/nessus/plugins/solaris26_x86_105617.nasl +lib/nessus/plugins/solaris26_x86_105639.nasl +lib/nessus/plugins/solaris26_x86_105666.nasl +lib/nessus/plugins/solaris26_x86_105668.nasl +lib/nessus/plugins/solaris26_x86_105670.nasl +lib/nessus/plugins/solaris26_x86_105694.nasl +lib/nessus/plugins/solaris26_x86_105704.nasl +lib/nessus/plugins/solaris26_x86_105723.nasl +lib/nessus/plugins/solaris26_x86_105756.nasl +lib/nessus/plugins/solaris26_x86_105781.nasl +lib/nessus/plugins/solaris26_x86_105787.nasl +lib/nessus/plugins/solaris26_x86_105801.nasl +lib/nessus/plugins/solaris26_x86_105803.nasl +lib/nessus/plugins/solaris26_x86_105838.nasl +lib/nessus/plugins/solaris26_x86_105991.nasl +lib/nessus/plugins/solaris26_x86_106028.nasl +lib/nessus/plugins/solaris26_x86_106041.nasl +lib/nessus/plugins/solaris26_x86_106050.nasl +lib/nessus/plugins/solaris26_x86_106113.nasl +lib/nessus/plugins/solaris26_x86_106124.nasl +lib/nessus/plugins/solaris26_x86_106126.nasl +lib/nessus/plugins/solaris26_x86_106194.nasl +lib/nessus/plugins/solaris26_x86_106223.nasl +lib/nessus/plugins/solaris26_x86_106236.nasl +lib/nessus/plugins/solaris26_x86_106243.nasl +lib/nessus/plugins/solaris26_x86_106248.nasl +lib/nessus/plugins/solaris26_x86_106258.nasl +lib/nessus/plugins/solaris26_x86_106293.nasl +lib/nessus/plugins/solaris26_x86_106302.nasl +lib/nessus/plugins/solaris26_x86_106304.nasl +lib/nessus/plugins/solaris26_x86_106353.nasl +lib/nessus/plugins/solaris26_x86_106362.nasl +lib/nessus/plugins/solaris26_x86_106416.nasl +lib/nessus/plugins/solaris26_x86_106438.nasl +lib/nessus/plugins/solaris26_x86_106440.nasl +lib/nessus/plugins/solaris26_x86_106449.nasl +lib/nessus/plugins/solaris26_x86_106469.nasl +lib/nessus/plugins/solaris26_x86_106523.nasl +lib/nessus/plugins/solaris26_x86_106570.nasl +lib/nessus/plugins/solaris26_x86_106593.nasl +lib/nessus/plugins/solaris26_x86_106626.nasl +lib/nessus/plugins/solaris26_x86_106640.nasl +lib/nessus/plugins/solaris26_x86_106657.nasl +lib/nessus/plugins/solaris26_x86_106658.nasl +lib/nessus/plugins/solaris26_x86_106659.nasl +lib/nessus/plugins/solaris26_x86_106835.nasl +lib/nessus/plugins/solaris26_x86_107299.nasl +lib/nessus/plugins/solaris26_x86_107327.nasl +lib/nessus/plugins/solaris26_x86_107338.nasl +lib/nessus/plugins/solaris26_x86_107566.nasl +lib/nessus/plugins/solaris26_x86_107619.nasl +lib/nessus/plugins/solaris26_x86_107734.nasl +lib/nessus/plugins/solaris26_x86_107759.nasl +lib/nessus/plugins/solaris26_x86_107767.nasl +lib/nessus/plugins/solaris26_x86_107775.nasl +lib/nessus/plugins/solaris26_x86_107992.nasl +lib/nessus/plugins/solaris26_x86_108130.nasl +lib/nessus/plugins/solaris26_x86_108200.nasl +lib/nessus/plugins/solaris26_x86_108202.nasl +lib/nessus/plugins/solaris26_x86_108308.nasl +lib/nessus/plugins/solaris26_x86_108334.nasl +lib/nessus/plugins/solaris26_x86_108389.nasl +lib/nessus/plugins/solaris26_x86_108469.nasl +lib/nessus/plugins/solaris26_x86_108493.nasl +lib/nessus/plugins/solaris26_x86_108500.nasl +lib/nessus/plugins/solaris26_x86_108661.nasl +lib/nessus/plugins/solaris26_x86_108805.nasl +lib/nessus/plugins/solaris26_x86_108891.nasl +lib/nessus/plugins/solaris26_x86_108894.nasl +lib/nessus/plugins/solaris26_x86_108896.nasl +lib/nessus/plugins/solaris26_x86_109101.nasl +lib/nessus/plugins/solaris26_x86_109267.nasl +lib/nessus/plugins/solaris26_x86_109340.nasl +lib/nessus/plugins/solaris26_x86_109389.nasl +lib/nessus/plugins/solaris26_x86_109720.nasl +lib/nessus/plugins/solaris26_x86_110884.nasl +lib/nessus/plugins/solaris26_x86_110991.nasl +lib/nessus/plugins/solaris26_x86_111040.nasl +lib/nessus/plugins/solaris26_x86_111237.nasl +lib/nessus/plugins/solaris26_x86_111241.nasl +lib/nessus/plugins/solaris26_x86_111561.nasl +lib/nessus/plugins/solaris26_x86_111860.nasl +lib/nessus/plugins/solaris26_x86_111974.nasl +lib/nessus/plugins/solaris26_x86_112074.nasl +lib/nessus/plugins/solaris26_x86_112457.nasl +lib/nessus/plugins/solaris26_x86_112766.nasl +lib/nessus/plugins/solaris26_x86_112815.nasl +lib/nessus/plugins/solaris26_x86_112894.nasl +lib/nessus/plugins/solaris26_x86_113755.nasl +lib/nessus/plugins/solaris26_x86_114890.nasl +lib/nessus/plugins/solaris26_x86_114942.nasl +lib/nessus/plugins/solaris26_x86_115428.nasl +lib/nessus/plugins/solaris26_x86_115564.nasl +lib/nessus/plugins/solaris7_106541.nasl +lib/nessus/plugins/solaris7_106725.nasl +lib/nessus/plugins/solaris7_106793.nasl +lib/nessus/plugins/solaris7_106934.nasl +lib/nessus/plugins/solaris7_106938.nasl +lib/nessus/plugins/solaris7_106942.nasl +lib/nessus/plugins/solaris7_106944.nasl +lib/nessus/plugins/solaris7_106949.nasl +lib/nessus/plugins/solaris7_106950.nasl +lib/nessus/plugins/solaris7_106952.nasl +lib/nessus/plugins/solaris7_106978.nasl +lib/nessus/plugins/solaris7_107022.nasl +lib/nessus/plugins/solaris7_107038.nasl +lib/nessus/plugins/solaris7_107058.nasl +lib/nessus/plugins/solaris7_107115.nasl +lib/nessus/plugins/solaris7_107171.nasl +lib/nessus/plugins/solaris7_107178.nasl +lib/nessus/plugins/solaris7_107180.nasl +lib/nessus/plugins/solaris7_107200.nasl +lib/nessus/plugins/solaris7_107259.nasl +lib/nessus/plugins/solaris7_107285.nasl +lib/nessus/plugins/solaris7_107337.nasl +lib/nessus/plugins/solaris7_107374.nasl +lib/nessus/plugins/solaris7_107403.nasl +lib/nessus/plugins/solaris7_107441.nasl +lib/nessus/plugins/solaris7_107443.nasl +lib/nessus/plugins/solaris7_107451.nasl +lib/nessus/plugins/solaris7_107454.nasl +lib/nessus/plugins/solaris7_107456.nasl +lib/nessus/plugins/solaris7_107475.nasl +lib/nessus/plugins/solaris7_107477.nasl +lib/nessus/plugins/solaris7_107589.nasl +lib/nessus/plugins/solaris7_107636.nasl +lib/nessus/plugins/solaris7_107650.nasl +lib/nessus/plugins/solaris7_107654.nasl +lib/nessus/plugins/solaris7_107684.nasl +lib/nessus/plugins/solaris7_107702.nasl +lib/nessus/plugins/solaris7_107709.nasl +lib/nessus/plugins/solaris7_107716.nasl +lib/nessus/plugins/solaris7_107792.nasl +lib/nessus/plugins/solaris7_107794.nasl +lib/nessus/plugins/solaris7_107885.nasl +lib/nessus/plugins/solaris7_107887.nasl +lib/nessus/plugins/solaris7_107893.nasl +lib/nessus/plugins/solaris7_107972.nasl +lib/nessus/plugins/solaris7_108117.nasl +lib/nessus/plugins/solaris7_108162.nasl +lib/nessus/plugins/solaris7_108219.nasl +lib/nessus/plugins/solaris7_108221.nasl +lib/nessus/plugins/solaris7_108263.nasl +lib/nessus/plugins/solaris7_108301.nasl +lib/nessus/plugins/solaris7_108317.nasl +lib/nessus/plugins/solaris7_108319.nasl +lib/nessus/plugins/solaris7_108327.nasl +lib/nessus/plugins/solaris7_108376.nasl +lib/nessus/plugins/solaris7_108381.nasl +lib/nessus/plugins/solaris7_108451.nasl +lib/nessus/plugins/solaris7_108482.nasl +lib/nessus/plugins/solaris7_108484.nasl +lib/nessus/plugins/solaris7_108551.nasl +lib/nessus/plugins/solaris7_108574.nasl +lib/nessus/plugins/solaris7_108585.nasl +lib/nessus/plugins/solaris7_108662.nasl +lib/nessus/plugins/solaris7_108721.nasl +lib/nessus/plugins/solaris7_108748.nasl +lib/nessus/plugins/solaris7_108750.nasl +lib/nessus/plugins/solaris7_108756.nasl +lib/nessus/plugins/solaris7_108758.nasl +lib/nessus/plugins/solaris7_108760.nasl +lib/nessus/plugins/solaris7_108762.nasl +lib/nessus/plugins/solaris7_108764.nasl +lib/nessus/plugins/solaris7_108798.nasl +lib/nessus/plugins/solaris7_108800.nasl +lib/nessus/plugins/solaris7_108838.nasl +lib/nessus/plugins/solaris7_109203.nasl +lib/nessus/plugins/solaris7_109253.nasl +lib/nessus/plugins/solaris7_109372.nasl +lib/nessus/plugins/solaris7_109404.nasl +lib/nessus/plugins/solaris7_109409.nasl +lib/nessus/plugins/solaris7_109709.nasl +lib/nessus/plugins/solaris7_109744.nasl +lib/nessus/plugins/solaris7_109797.nasl +lib/nessus/plugins/solaris7_109949.nasl +lib/nessus/plugins/solaris7_110070.nasl +lib/nessus/plugins/solaris7_110646.nasl +lib/nessus/plugins/solaris7_110869.nasl +lib/nessus/plugins/solaris7_111093.nasl +lib/nessus/plugins/solaris7_111238.nasl +lib/nessus/plugins/solaris7_111242.nasl +lib/nessus/plugins/solaris7_111350.nasl +lib/nessus/plugins/solaris7_111590.nasl +lib/nessus/plugins/solaris7_111600.nasl +lib/nessus/plugins/solaris7_111646.nasl +lib/nessus/plugins/solaris7_111931.nasl +lib/nessus/plugins/solaris7_111980.nasl +lib/nessus/plugins/solaris7_112300.nasl +lib/nessus/plugins/solaris7_112448.nasl +lib/nessus/plugins/solaris7_112604.nasl +lib/nessus/plugins/solaris7_112672.nasl +lib/nessus/plugins/solaris7_112820.nasl +lib/nessus/plugins/solaris7_112899.nasl +lib/nessus/plugins/solaris7_113752.nasl +lib/nessus/plugins/solaris7_114891.nasl +lib/nessus/plugins/solaris7_114944.nasl +lib/nessus/plugins/solaris7_115565.nasl +lib/nessus/plugins/solaris7_116456.nasl +lib/nessus/plugins/solaris7_116858.nasl +lib/nessus/plugins/solaris7_x86_106542.nasl +lib/nessus/plugins/solaris7_x86_106737.nasl +lib/nessus/plugins/solaris7_x86_106794.nasl +lib/nessus/plugins/solaris7_x86_106935.nasl +lib/nessus/plugins/solaris7_x86_106939.nasl +lib/nessus/plugins/solaris7_x86_106943.nasl +lib/nessus/plugins/solaris7_x86_106945.nasl +lib/nessus/plugins/solaris7_x86_106951.nasl +lib/nessus/plugins/solaris7_x86_106953.nasl +lib/nessus/plugins/solaris7_x86_106979.nasl +lib/nessus/plugins/solaris7_x86_107023.nasl +lib/nessus/plugins/solaris7_x86_107039.nasl +lib/nessus/plugins/solaris7_x86_107116.nasl +lib/nessus/plugins/solaris7_x86_107172.nasl +lib/nessus/plugins/solaris7_x86_107179.nasl +lib/nessus/plugins/solaris7_x86_107181.nasl +lib/nessus/plugins/solaris7_x86_107201.nasl +lib/nessus/plugins/solaris7_x86_107260.nasl +lib/nessus/plugins/solaris7_x86_107286.nasl +lib/nessus/plugins/solaris7_x86_107339.nasl +lib/nessus/plugins/solaris7_x86_107375.nasl +lib/nessus/plugins/solaris7_x86_107404.nasl +lib/nessus/plugins/solaris7_x86_107442.nasl +lib/nessus/plugins/solaris7_x86_107444.nasl +lib/nessus/plugins/solaris7_x86_107452.nasl +lib/nessus/plugins/solaris7_x86_107455.nasl +lib/nessus/plugins/solaris7_x86_107457.nasl +lib/nessus/plugins/solaris7_x86_107476.nasl +lib/nessus/plugins/solaris7_x86_107478.nasl +lib/nessus/plugins/solaris7_x86_107637.nasl +lib/nessus/plugins/solaris7_x86_107651.nasl +lib/nessus/plugins/solaris7_x86_107655.nasl +lib/nessus/plugins/solaris7_x86_107685.nasl +lib/nessus/plugins/solaris7_x86_107703.nasl +lib/nessus/plugins/solaris7_x86_107710.nasl +lib/nessus/plugins/solaris7_x86_107793.nasl +lib/nessus/plugins/solaris7_x86_107795.nasl +lib/nessus/plugins/solaris7_x86_107886.nasl +lib/nessus/plugins/solaris7_x86_107888.nasl +lib/nessus/plugins/solaris7_x86_107894.nasl +lib/nessus/plugins/solaris7_x86_107973.nasl +lib/nessus/plugins/solaris7_x86_108088.nasl +lib/nessus/plugins/solaris7_x86_108092.nasl +lib/nessus/plugins/solaris7_x86_108118.nasl +lib/nessus/plugins/solaris7_x86_108163.nasl +lib/nessus/plugins/solaris7_x86_108220.nasl +lib/nessus/plugins/solaris7_x86_108222.nasl +lib/nessus/plugins/solaris7_x86_108302.nasl +lib/nessus/plugins/solaris7_x86_108320.nasl +lib/nessus/plugins/solaris7_x86_108328.nasl +lib/nessus/plugins/solaris7_x86_108377.nasl +lib/nessus/plugins/solaris7_x86_108382.nasl +lib/nessus/plugins/solaris7_x86_108452.nasl +lib/nessus/plugins/solaris7_x86_108483.nasl +lib/nessus/plugins/solaris7_x86_108485.nasl +lib/nessus/plugins/solaris7_x86_108552.nasl +lib/nessus/plugins/solaris7_x86_108575.nasl +lib/nessus/plugins/solaris7_x86_108663.nasl +lib/nessus/plugins/solaris7_x86_108722.nasl +lib/nessus/plugins/solaris7_x86_108749.nasl +lib/nessus/plugins/solaris7_x86_108751.nasl +lib/nessus/plugins/solaris7_x86_108757.nasl +lib/nessus/plugins/solaris7_x86_108759.nasl +lib/nessus/plugins/solaris7_x86_108761.nasl +lib/nessus/plugins/solaris7_x86_108763.nasl +lib/nessus/plugins/solaris7_x86_108765.nasl +lib/nessus/plugins/solaris7_x86_108799.nasl +lib/nessus/plugins/solaris7_x86_108801.nasl +lib/nessus/plugins/solaris7_x86_108839.nasl +lib/nessus/plugins/solaris7_x86_109204.nasl +lib/nessus/plugins/solaris7_x86_109252.nasl +lib/nessus/plugins/solaris7_x86_109254.nasl +lib/nessus/plugins/solaris7_x86_109373.nasl +lib/nessus/plugins/solaris7_x86_109402.nasl +lib/nessus/plugins/solaris7_x86_109405.nasl +lib/nessus/plugins/solaris7_x86_109410.nasl +lib/nessus/plugins/solaris7_x86_109710.nasl +lib/nessus/plugins/solaris7_x86_109745.nasl +lib/nessus/plugins/solaris7_x86_109950.nasl +lib/nessus/plugins/solaris7_x86_110071.nasl +lib/nessus/plugins/solaris7_x86_110647.nasl +lib/nessus/plugins/solaris7_x86_110808.nasl +lib/nessus/plugins/solaris7_x86_110870.nasl +lib/nessus/plugins/solaris7_x86_111094.nasl +lib/nessus/plugins/solaris7_x86_111239.nasl +lib/nessus/plugins/solaris7_x86_111243.nasl +lib/nessus/plugins/solaris7_x86_111351.nasl +lib/nessus/plugins/solaris7_x86_111591.nasl +lib/nessus/plugins/solaris7_x86_111601.nasl +lib/nessus/plugins/solaris7_x86_111932.nasl +lib/nessus/plugins/solaris7_x86_111981.nasl +lib/nessus/plugins/solaris7_x86_112301.nasl +lib/nessus/plugins/solaris7_x86_112449.nasl +lib/nessus/plugins/solaris7_x86_112673.nasl +lib/nessus/plugins/solaris7_x86_112821.nasl +lib/nessus/plugins/solaris7_x86_112900.nasl +lib/nessus/plugins/solaris7_x86_113753.nasl +lib/nessus/plugins/solaris7_x86_114892.nasl +lib/nessus/plugins/solaris7_x86_114945.nasl +lib/nessus/plugins/solaris7_x86_115429.nasl +lib/nessus/plugins/solaris7_x86_115566.nasl +lib/nessus/plugins/solaris7_x86_116457.nasl +lib/nessus/plugins/solaris8_108528.nasl +lib/nessus/plugins/solaris8_108773.nasl +lib/nessus/plugins/solaris8_108835.nasl +lib/nessus/plugins/solaris8_108869.nasl +lib/nessus/plugins/solaris8_108899.nasl +lib/nessus/plugins/solaris8_108909.nasl +lib/nessus/plugins/solaris8_108919.nasl +lib/nessus/plugins/solaris8_108949.nasl +lib/nessus/plugins/solaris8_108968.nasl +lib/nessus/plugins/solaris8_108975.nasl +lib/nessus/plugins/solaris8_108981.nasl +lib/nessus/plugins/solaris8_108985.nasl +lib/nessus/plugins/solaris8_108987.nasl +lib/nessus/plugins/solaris8_108993.nasl +lib/nessus/plugins/solaris8_109007.nasl +lib/nessus/plugins/solaris8_109077.nasl +lib/nessus/plugins/solaris8_109091.nasl +lib/nessus/plugins/solaris8_109134.nasl +lib/nessus/plugins/solaris8_109147.nasl +lib/nessus/plugins/solaris8_109149.nasl +lib/nessus/plugins/solaris8_109152.nasl +lib/nessus/plugins/solaris8_109154.nasl +lib/nessus/plugins/solaris8_109202.nasl +lib/nessus/plugins/solaris8_109238.nasl +lib/nessus/plugins/solaris8_109320.nasl +lib/nessus/plugins/solaris8_109324.nasl +lib/nessus/plugins/solaris8_109326.nasl +lib/nessus/plugins/solaris8_109328.nasl +lib/nessus/plugins/solaris8_109354.nasl +lib/nessus/plugins/solaris8_109458.nasl +lib/nessus/plugins/solaris8_109667.nasl +lib/nessus/plugins/solaris8_109695.nasl +lib/nessus/plugins/solaris8_109783.nasl +lib/nessus/plugins/solaris8_109793.nasl +lib/nessus/plugins/solaris8_109805.nasl +lib/nessus/plugins/solaris8_109815.nasl +lib/nessus/plugins/solaris8_109887.nasl +lib/nessus/plugins/solaris8_109893.nasl +lib/nessus/plugins/solaris8_109894.nasl +lib/nessus/plugins/solaris8_109896.nasl +lib/nessus/plugins/solaris8_109898.nasl +lib/nessus/plugins/solaris8_109922.nasl +lib/nessus/plugins/solaris8_109951.nasl +lib/nessus/plugins/solaris8_110068.nasl +lib/nessus/plugins/solaris8_110075.nasl +lib/nessus/plugins/solaris8_110286.nasl +lib/nessus/plugins/solaris8_110322.nasl +lib/nessus/plugins/solaris8_110335.nasl +lib/nessus/plugins/solaris8_110386.nasl +lib/nessus/plugins/solaris8_110387.nasl +lib/nessus/plugins/solaris8_110389.nasl +lib/nessus/plugins/solaris8_110416.nasl +lib/nessus/plugins/solaris8_110453.nasl +lib/nessus/plugins/solaris8_110458.nasl +lib/nessus/plugins/solaris8_110461.nasl +lib/nessus/plugins/solaris8_110615.nasl +lib/nessus/plugins/solaris8_110668.nasl +lib/nessus/plugins/solaris8_110670.nasl +lib/nessus/plugins/solaris8_110820.nasl +lib/nessus/plugins/solaris8_110896.nasl +lib/nessus/plugins/solaris8_110898.nasl +lib/nessus/plugins/solaris8_110903.nasl +lib/nessus/plugins/solaris8_110916.nasl +lib/nessus/plugins/solaris8_110934.nasl +lib/nessus/plugins/solaris8_110943.nasl +lib/nessus/plugins/solaris8_110945.nasl +lib/nessus/plugins/solaris8_110953.nasl +lib/nessus/plugins/solaris8_110955.nasl +lib/nessus/plugins/solaris8_110957.nasl +lib/nessus/plugins/solaris8_111069.nasl +lib/nessus/plugins/solaris8_111071.nasl +lib/nessus/plugins/solaris8_111232.nasl +lib/nessus/plugins/solaris8_111234.nasl +lib/nessus/plugins/solaris8_111313.nasl +lib/nessus/plugins/solaris8_111321.nasl +lib/nessus/plugins/solaris8_111325.nasl +lib/nessus/plugins/solaris8_111332.nasl +lib/nessus/plugins/solaris8_111400.nasl +lib/nessus/plugins/solaris8_111504.nasl +lib/nessus/plugins/solaris8_111548.nasl +lib/nessus/plugins/solaris8_111570.nasl +lib/nessus/plugins/solaris8_111588.nasl +lib/nessus/plugins/solaris8_111596.nasl +lib/nessus/plugins/solaris8_111606.nasl +lib/nessus/plugins/solaris8_111624.nasl +lib/nessus/plugins/solaris8_111626.nasl +lib/nessus/plugins/solaris8_111647.nasl +lib/nessus/plugins/solaris8_111826.nasl +lib/nessus/plugins/solaris8_111874.nasl +lib/nessus/plugins/solaris8_111881.nasl +lib/nessus/plugins/solaris8_111883.nasl +lib/nessus/plugins/solaris8_112039.nasl +lib/nessus/plugins/solaris8_112237.nasl +lib/nessus/plugins/solaris8_112390.nasl +lib/nessus/plugins/solaris8_112459.nasl +lib/nessus/plugins/solaris8_112609.nasl +lib/nessus/plugins/solaris8_112611.nasl +lib/nessus/plugins/solaris8_112668.nasl +lib/nessus/plugins/solaris8_112792.nasl +lib/nessus/plugins/solaris8_112796.nasl +lib/nessus/plugins/solaris8_112846.nasl +lib/nessus/plugins/solaris8_113650.nasl +lib/nessus/plugins/solaris8_113685.nasl +lib/nessus/plugins/solaris8_113687.nasl +lib/nessus/plugins/solaris8_113792.nasl +lib/nessus/plugins/solaris8_114162.nasl +lib/nessus/plugins/solaris8_114673.nasl +lib/nessus/plugins/solaris8_114802.nasl +lib/nessus/plugins/solaris8_114984.nasl +lib/nessus/plugins/solaris8_115797.nasl +lib/nessus/plugins/solaris8_116455.nasl +lib/nessus/plugins/solaris8_117000.nasl +lib/nessus/plugins/solaris8_x86_108529.nasl +lib/nessus/plugins/solaris8_x86_108774.nasl +lib/nessus/plugins/solaris8_x86_108836.nasl +lib/nessus/plugins/solaris8_x86_108870.nasl +lib/nessus/plugins/solaris8_x86_108900.nasl +lib/nessus/plugins/solaris8_x86_108920.nasl +lib/nessus/plugins/solaris8_x86_108950.nasl +lib/nessus/plugins/solaris8_x86_108969.nasl +lib/nessus/plugins/solaris8_x86_108976.nasl +lib/nessus/plugins/solaris8_x86_108986.nasl +lib/nessus/plugins/solaris8_x86_108988.nasl +lib/nessus/plugins/solaris8_x86_108994.nasl +lib/nessus/plugins/solaris8_x86_109008.nasl +lib/nessus/plugins/solaris8_x86_109078.nasl +lib/nessus/plugins/solaris8_x86_109092.nasl +lib/nessus/plugins/solaris8_x86_109135.nasl +lib/nessus/plugins/solaris8_x86_109148.nasl +lib/nessus/plugins/solaris8_x86_109150.nasl +lib/nessus/plugins/solaris8_x86_109155.nasl +lib/nessus/plugins/solaris8_x86_109239.nasl +lib/nessus/plugins/solaris8_x86_109321.nasl +lib/nessus/plugins/solaris8_x86_109325.nasl +lib/nessus/plugins/solaris8_x86_109327.nasl +lib/nessus/plugins/solaris8_x86_109329.nasl +lib/nessus/plugins/solaris8_x86_109355.nasl +lib/nessus/plugins/solaris8_x86_109401.nasl +lib/nessus/plugins/solaris8_x86_109459.nasl +lib/nessus/plugins/solaris8_x86_109668.nasl +lib/nessus/plugins/solaris8_x86_109784.nasl +lib/nessus/plugins/solaris8_x86_109806.nasl +lib/nessus/plugins/solaris8_x86_109895.nasl +lib/nessus/plugins/solaris8_x86_109897.nasl +lib/nessus/plugins/solaris8_x86_109899.nasl +lib/nessus/plugins/solaris8_x86_109923.nasl +lib/nessus/plugins/solaris8_x86_109952.nasl +lib/nessus/plugins/solaris8_x86_110069.nasl +lib/nessus/plugins/solaris8_x86_110076.nasl +lib/nessus/plugins/solaris8_x86_110287.nasl +lib/nessus/plugins/solaris8_x86_110323.nasl +lib/nessus/plugins/solaris8_x86_110325.nasl +lib/nessus/plugins/solaris8_x86_110336.nasl +lib/nessus/plugins/solaris8_x86_110400.nasl +lib/nessus/plugins/solaris8_x86_110402.nasl +lib/nessus/plugins/solaris8_x86_110417.nasl +lib/nessus/plugins/solaris8_x86_110454.nasl +lib/nessus/plugins/solaris8_x86_110459.nasl +lib/nessus/plugins/solaris8_x86_110462.nasl +lib/nessus/plugins/solaris8_x86_110616.nasl +lib/nessus/plugins/solaris8_x86_110669.nasl +lib/nessus/plugins/solaris8_x86_110671.nasl +lib/nessus/plugins/solaris8_x86_110672.nasl +lib/nessus/plugins/solaris8_x86_110897.nasl +lib/nessus/plugins/solaris8_x86_110899.nasl +lib/nessus/plugins/solaris8_x86_110904.nasl +lib/nessus/plugins/solaris8_x86_110917.nasl +lib/nessus/plugins/solaris8_x86_110935.nasl +lib/nessus/plugins/solaris8_x86_110944.nasl +lib/nessus/plugins/solaris8_x86_110946.nasl +lib/nessus/plugins/solaris8_x86_110954.nasl +lib/nessus/plugins/solaris8_x86_110956.nasl +lib/nessus/plugins/solaris8_x86_110958.nasl +lib/nessus/plugins/solaris8_x86_111070.nasl +lib/nessus/plugins/solaris8_x86_111072.nasl +lib/nessus/plugins/solaris8_x86_111233.nasl +lib/nessus/plugins/solaris8_x86_111235.nasl +lib/nessus/plugins/solaris8_x86_111314.nasl +lib/nessus/plugins/solaris8_x86_111322.nasl +lib/nessus/plugins/solaris8_x86_111326.nasl +lib/nessus/plugins/solaris8_x86_111401.nasl +lib/nessus/plugins/solaris8_x86_111505.nasl +lib/nessus/plugins/solaris8_x86_111549.nasl +lib/nessus/plugins/solaris8_x86_111571.nasl +lib/nessus/plugins/solaris8_x86_111589.nasl +lib/nessus/plugins/solaris8_x86_111597.nasl +lib/nessus/plugins/solaris8_x86_111607.nasl +lib/nessus/plugins/solaris8_x86_111625.nasl +lib/nessus/plugins/solaris8_x86_111627.nasl +lib/nessus/plugins/solaris8_x86_111827.nasl +lib/nessus/plugins/solaris8_x86_111875.nasl +lib/nessus/plugins/solaris8_x86_111882.nasl +lib/nessus/plugins/solaris8_x86_112040.nasl +lib/nessus/plugins/solaris8_x86_112238.nasl +lib/nessus/plugins/solaris8_x86_112240.nasl +lib/nessus/plugins/solaris8_x86_112352.nasl +lib/nessus/plugins/solaris8_x86_112460.nasl +lib/nessus/plugins/solaris8_x86_112612.nasl +lib/nessus/plugins/solaris8_x86_112669.nasl +lib/nessus/plugins/solaris8_x86_112793.nasl +lib/nessus/plugins/solaris8_x86_112797.nasl +lib/nessus/plugins/solaris8_x86_112847.nasl +lib/nessus/plugins/solaris8_x86_113651.nasl +lib/nessus/plugins/solaris8_x86_113686.nasl +lib/nessus/plugins/solaris8_x86_113688.nasl +lib/nessus/plugins/solaris8_x86_113793.nasl +lib/nessus/plugins/solaris8_x86_114046.nasl +lib/nessus/plugins/solaris8_x86_114154.nasl +lib/nessus/plugins/solaris8_x86_114163.nasl +lib/nessus/plugins/solaris8_x86_114617.nasl +lib/nessus/plugins/solaris8_x86_114674.nasl +lib/nessus/plugins/solaris8_x86_114985.nasl +lib/nessus/plugins/solaris8_x86_115798.nasl +lib/nessus/plugins/solaris8_x86_116442.nasl +lib/nessus/plugins/solaris8_x86_117001.nasl +lib/nessus/plugins/solaris9_112233.nasl +lib/nessus/plugins/solaris9_112601.nasl +lib/nessus/plugins/solaris9_112617.nasl +lib/nessus/plugins/solaris9_112661.nasl +lib/nessus/plugins/solaris9_112807.nasl +lib/nessus/plugins/solaris9_112808.nasl +lib/nessus/plugins/solaris9_112810.nasl +lib/nessus/plugins/solaris9_112817.nasl +lib/nessus/plugins/solaris9_112874.nasl +lib/nessus/plugins/solaris9_112875.nasl +lib/nessus/plugins/solaris9_112908.nasl +lib/nessus/plugins/solaris9_112921.nasl +lib/nessus/plugins/solaris9_112922.nasl +lib/nessus/plugins/solaris9_112923.nasl +lib/nessus/plugins/solaris9_112925.nasl +lib/nessus/plugins/solaris9_112926.nasl +lib/nessus/plugins/solaris9_112960.nasl +lib/nessus/plugins/solaris9_112963.nasl +lib/nessus/plugins/solaris9_112970.nasl +lib/nessus/plugins/solaris9_112998.nasl +lib/nessus/plugins/solaris9_113146.nasl +lib/nessus/plugins/solaris9_113240.nasl +lib/nessus/plugins/solaris9_113273.nasl +lib/nessus/plugins/solaris9_113278.nasl +lib/nessus/plugins/solaris9_113279.nasl +lib/nessus/plugins/solaris9_113319.nasl +lib/nessus/plugins/solaris9_113322.nasl +lib/nessus/plugins/solaris9_113329.nasl +lib/nessus/plugins/solaris9_113451.nasl +lib/nessus/plugins/solaris9_113475.nasl +lib/nessus/plugins/solaris9_113492.nasl +lib/nessus/plugins/solaris9_113575.nasl +lib/nessus/plugins/solaris9_113579.nasl +lib/nessus/plugins/solaris9_113713.nasl +lib/nessus/plugins/solaris9_113718.nasl +lib/nessus/plugins/solaris9_114008.nasl +lib/nessus/plugins/solaris9_114014.nasl +lib/nessus/plugins/solaris9_114016.nasl +lib/nessus/plugins/solaris9_114049.nasl +lib/nessus/plugins/solaris9_114125.nasl +lib/nessus/plugins/solaris9_114133.nasl +lib/nessus/plugins/solaris9_114135.nasl +lib/nessus/plugins/solaris9_114332.nasl +lib/nessus/plugins/solaris9_114361.nasl +lib/nessus/plugins/solaris9_114495.nasl +lib/nessus/plugins/solaris9_114564.nasl +lib/nessus/plugins/solaris9_114569.nasl +lib/nessus/plugins/solaris9_114571.nasl +lib/nessus/plugins/solaris9_114636.nasl +lib/nessus/plugins/solaris9_114684.nasl +lib/nessus/plugins/solaris9_114713.nasl +lib/nessus/plugins/solaris9_114729.nasl +lib/nessus/plugins/solaris9_114861.nasl +lib/nessus/plugins/solaris9_114875.nasl +lib/nessus/plugins/solaris9_114971.nasl +lib/nessus/plugins/solaris9_115172.nasl +lib/nessus/plugins/solaris9_115553.nasl +lib/nessus/plugins/solaris9_115754.nasl +lib/nessus/plugins/solaris9_115926.nasl +lib/nessus/plugins/solaris9_116237.nasl +lib/nessus/plugins/solaris9_116243.nasl +lib/nessus/plugins/solaris9_116247.nasl +lib/nessus/plugins/solaris9_116308.nasl +lib/nessus/plugins/solaris9_116453.nasl +lib/nessus/plugins/solaris9_116489.nasl +lib/nessus/plugins/solaris9_116494.nasl +lib/nessus/plugins/solaris9_116807.nasl +lib/nessus/plugins/solaris9_117071.nasl +lib/nessus/plugins/solaris9_x86_112234.nasl +lib/nessus/plugins/solaris9_x86_112662.nasl +lib/nessus/plugins/solaris9_x86_113112.nasl +lib/nessus/plugins/solaris9_x86_113241.nasl +lib/nessus/plugins/solaris9_x86_113719.nasl +lib/nessus/plugins/solaris9_x86_113870.nasl +lib/nessus/plugins/solaris9_x86_113986.nasl +lib/nessus/plugins/solaris9_x86_113996.nasl +lib/nessus/plugins/solaris9_x86_114009.nasl +lib/nessus/plugins/solaris9_x86_114015.nasl +lib/nessus/plugins/solaris9_x86_114017.nasl +lib/nessus/plugins/solaris9_x86_114050.nasl +lib/nessus/plugins/solaris9_x86_114134.nasl +lib/nessus/plugins/solaris9_x86_114136.nasl +lib/nessus/plugins/solaris9_x86_114137.nasl +lib/nessus/plugins/solaris9_x86_114145.nasl +lib/nessus/plugins/solaris9_x86_114210.nasl +lib/nessus/plugins/solaris9_x86_114242.nasl +lib/nessus/plugins/solaris9_x86_114273.nasl +lib/nessus/plugins/solaris9_x86_114328.nasl +lib/nessus/plugins/solaris9_x86_114342.nasl +lib/nessus/plugins/solaris9_x86_114354.nasl +lib/nessus/plugins/solaris9_x86_114362.nasl +lib/nessus/plugins/solaris9_x86_114432.nasl +lib/nessus/plugins/solaris9_x86_114435.nasl +lib/nessus/plugins/solaris9_x86_114436.nasl +lib/nessus/plugins/solaris9_x86_114496.nasl +lib/nessus/plugins/solaris9_x86_114565.nasl +lib/nessus/plugins/solaris9_x86_114568.nasl +lib/nessus/plugins/solaris9_x86_114570.nasl +lib/nessus/plugins/solaris9_x86_114637.nasl +lib/nessus/plugins/solaris9_x86_114685.nasl +lib/nessus/plugins/solaris9_x86_114714.nasl +lib/nessus/plugins/solaris9_x86_114715.nasl +lib/nessus/plugins/solaris9_x86_114730.nasl +lib/nessus/plugins/solaris9_x86_114733.nasl +lib/nessus/plugins/solaris9_x86_114858.nasl +lib/nessus/plugins/solaris9_x86_114862.nasl +lib/nessus/plugins/solaris9_x86_114876.nasl +lib/nessus/plugins/solaris9_x86_114932.nasl +lib/nessus/plugins/solaris9_x86_114972.nasl +lib/nessus/plugins/solaris9_x86_114980.nasl +lib/nessus/plugins/solaris9_x86_115168.nasl +lib/nessus/plugins/solaris9_x86_115755.nasl +lib/nessus/plugins/solaris9_x86_115880.nasl +lib/nessus/plugins/solaris9_x86_115927.nasl +lib/nessus/plugins/solaris9_x86_116044.nasl +lib/nessus/plugins/solaris9_x86_116045.nasl +lib/nessus/plugins/solaris9_x86_116046.nasl +lib/nessus/plugins/solaris9_x86_116238.nasl +lib/nessus/plugins/solaris9_x86_116244.nasl +lib/nessus/plugins/solaris9_x86_116248.nasl +lib/nessus/plugins/solaris9_x86_116309.nasl +lib/nessus/plugins/solaris9_x86_116454.nasl +lib/nessus/plugins/solaris9_x86_116558.nasl +lib/nessus/plugins/solaris9_x86_116808.nasl +lib/nessus/plugins/solaris9_x86_117072.nasl lib/nessus/plugins/solaris_lpd_env_cmd_exec.nasl lib/nessus/plugins/sophos_installed.nasl lib/nessus/plugins/source_routed.nasl @@ -2191,6 +3211,7 @@ lib/nessus/plugins/squid_null_url_auth_bypass.nasl lib/nessus/plugins/squid_overflows.nasl lib/nessus/plugins/squirrelmail_143.nasl +lib/nessus/plugins/squirrelmail_detect.nasl lib/nessus/plugins/squirremail_cross_site_scripting.nasl lib/nessus/plugins/squirremail_multiple_flaws.nasl lib/nessus/plugins/sscd_input.nasl @@ -2371,7 +3392,6 @@ lib/nessus/plugins/web_traversal.nasl lib/nessus/plugins/webactive_log.nasl lib/nessus/plugins/webadmin.nasl -lib/nessus/plugins/webadmincheck.nasl lib/nessus/plugins/webalizer.nasl lib/nessus/plugins/webc_cgi_installed.nasl lib/nessus/plugins/webc_cgi_overflows.nasl >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 16: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 1ED9316A4CF for ; Fri, 23 Jul 2004 16:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFCEF43D2F for ; Fri, 23 Jul 2004 16:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NGAS2w030057 for ; Fri, 23 Jul 2004 16:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NGAS6M030056; Fri, 23 Jul 2004 16:10:28 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 16:10:28 GMT Resent-Message-Id: <200407231610.i6NGAS6M030056@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71B5D16A4E6 for ; Fri, 23 Jul 2004 16:07:57 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEEA843D41 for ; Fri, 23 Jul 2004 16:07:56 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (212.11.115.40) by mail.tiscali.cz (6.7.021) id 40AE2ED3017D93BB for FreeBSD-gnats-submit@freebsd.org; Fri, 23 Jul 2004 18:07:55 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BntHs-000K8n-Cu for ; Fri, 23 Jul 2004 08:12:08 +0200 Message-Id: Date: Fri, 23 Jul 2004 08:12:08 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69490: unbreak port py-ltxml X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Radim Kolar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 16:10:29 -0000 >Number: 69490 >Category: ports >Synopsis: unbreak port py-ltxml >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 Jul 23 16:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #8: Tue Jul 20 20:32:29 CEST 2004 root@sanatana.dharma:/usr/src/sys/i386/compile/UP i386 >Description: update python interface. this needs ltxml 1.2.6 from my previous pr. to build. >How-To-Repeat: >Fix: diff -Naur /usr/ports/textproc/py-ltxml/Makefile py-ltxml/Makefile --- /usr/ports/textproc/py-ltxml/Makefile Tue Jun 22 19:27:41 2004 +++ py-ltxml/Makefile Fri Jul 23 08:01:18 2004 @@ -7,7 +7,7 @@ PORTNAME= ltxml PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc python MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/LTXML/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,10 +15,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Python bindings to the LT XML toolkit - -BROKEN= "Checksum mismatch" -EXPIRATION_DATE=2004-08-20 -DEPRECATED= ${BROKEN} BUILD_DEPENDS= ${LOCALBASE}/include/ltxml12/lt-safe.h:${PORTSDIR}/textproc/ltxml RUN_DEPENDS= ${BUILD_DEPENDS} diff -Naur /usr/ports/textproc/py-ltxml/distinfo py-ltxml/distinfo --- /usr/ports/textproc/py-ltxml/distinfo Fri Nov 14 23:45:47 2003 +++ py-ltxml/distinfo Wed Jul 21 22:00:02 2004 @@ -1 +1,2 @@ -MD5 (PyLTXML-1.3.tar.gz) = 4e2eea613868da8115c858e1a872da5e +MD5 (PyLTXML-1.3.tar.gz) = 7e900d491d426e09713e5ce3a4682991 +SIZE (PyLTXML-1.3.tar.gz) = 27974 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 16: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 851A516A4CE for ; Fri, 23 Jul 2004 16:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 471BA43D31 for ; Fri, 23 Jul 2004 16:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NGATV0030070 for ; Fri, 23 Jul 2004 16:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NGATdK030069; Fri, 23 Jul 2004 16:10:29 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 16:10:29 GMT Resent-Message-Id: <200407231610.i6NGATdK030069@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5EA516A4D6 for ; Fri, 23 Jul 2004 16:07:57 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9957343D41 for ; Fri, 23 Jul 2004 16:07:57 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (212.11.115.40) by mail.tiscali.cz (6.7.021) id 40AE2ED3017D93C4 for FreeBSD-gnats-submit@freebsd.org; Fri, 23 Jul 2004 18:07:56 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BntBV-000IfS-JW for ; Fri, 23 Jul 2004 08:05:33 +0200 Message-Id: Date: Fri, 23 Jul 2004 08:05:33 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69491: [PATCH] textproc/ltxml: update to 1.2.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, 23 Jul 2004 16:10:29 -0000 >Number: 69491 >Category: ports >Synopsis: [PATCH] textproc/ltxml: update to 1.2.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: Fri Jul 23 16:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #8: Tue Jul 20 20:32:29 CEST 2004 >Description: - Update to 1.2.6 - needed for unbreaking python interface - add support for optimized cflags knob Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- ltxml-1.2.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/ltxml/Makefile /home/hsn/hacked/ltxml/Makefile --- /usr/ports/textproc/ltxml/Makefile Thu Feb 5 12:45:02 2004 +++ /home/hsn/hacked/ltxml/Makefile Fri Jul 23 08:03:43 2004 @@ -6,8 +6,7 @@ # PORTNAME= ltxml -PORTVERSION= 1.2.5 -PORTREVISION= 3 +PORTVERSION= 1.2.6 CATEGORIES= textproc MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/LTXML/ @@ -20,6 +19,7 @@ USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-zlib=/usr --enable-multi-byte +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" MAN1= ltxml.1 xmlnorm.1 pesis.1 sgcount.1 sggrep.1 sgmlsb.1 \ sgmlseg.1 sgmltoken.1 sgmltrans.1 sgrpg.1 textonly.1 \ @@ -30,13 +30,25 @@ sggrep sgmlsb sgmlseg sgmltrans sgrpg sgsort simple simpleq \ textonly unknit xmlnorm -post-patch: - @${PERL} -pi -e 's|CFLAGS=.*$$|CFLAGS=\$$CFLAGS|g ; \ - s|CXXFLAGS=.*$$|CXXFLAGS=\$$CXXFLAGS|g' ${WRKSRC}/configure +.include +.ifdef WITH_OPTIMIZED_CFLAGS +CFLAGS+= -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations -O3 +.endif + +pre-everything:: +.ifndef(WITH_OPTIMIZED_CFLAGS) + @${ECHO_MSG} '===>' + @${ECHO_MSG} '===> You can enable extra optimizations by defining WITH_O PTIMIZED_CFLAGS' + @${ECHO_MSG} "===> For example, 'make WITH_OPTIMIZED_CFLAGS=yes'" +.endif post-install: .for file in ${PROGRAMS:S/sgmlseg//} ${STRIP_CMD} ${PREFIX}/bin/${file} .endfor -.include +post-patch: + @${PERL} -pi -e 's|CFLAGS=.*$$|CFLAGS=\$$CFLAGS|g ; \ + s|CXXFLAGS=.*$$|CXXFLAGS=\$$CXXFLAGS|g' ${WRKSRC}/configure + +.include diff -ruN --exclude=CVS /usr/ports/textproc/ltxml/distinfo /home/hsn/hacked/ltxml/distinfo --- /usr/ports/textproc/ltxml/distinfo Fri Mar 19 14:13:51 2004 +++ /home/hsn/hacked/ltxml/distinfo Fri Jul 23 07:27:14 2004 @@ -1,2 +1,2 @@ -MD5 (ltxml-1.2.5.tar.gz) = 7aa37556dc9b532013c3bf9698e7d630 -SIZE (ltxml-1.2.5.tar.gz) = 1081135 +MD5 (ltxml-1.2.6.tar.gz) = e36d870a1ca025805eddc8048666db7d +SIZE (ltxml-1.2.6.tar.gz) = 1144896 diff -ruN --exclude=CVS /usr/ports/textproc/ltxml/pkg-plist /home/hsn/hacked/ltxml/pkg-plist --- /usr/ports/textproc/ltxml/pkg-plist Fri Jan 31 10:40:18 2003 +++ /home/hsn/hacked/ltxml/pkg-plist Fri Jul 23 07:40:35 2004 @@ -43,6 +43,8 @@ include/ltxml12/sys/lt-sstring.h include/ltxml12/sys/lt-umalloc.h include/ltxml12/sys/namespaces.h +include/ltxml12/sys/nf16check.h +include/ltxml12/sys/nf16data.h include/ltxml12/sys/nsl-ibit.h include/ltxml12/sys/nsl-stack.h include/ltxml12/sys/nslfile.h --- ltxml-1.2.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 16:56: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 0EFB816A4CE; Fri, 23 Jul 2004 16:56:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E234E43D45; Fri, 23 Jul 2004 16:56:24 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6NGuOCx032815; Fri, 23 Jul 2004 16:56:24 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NGuOFQ032811; Fri, 23 Jul 2004 16:56:24 GMT (envelope-from arved) Date: Fri, 23 Jul 2004 16:56:24 GMT From: Tilman Linneweh Message-Id: <200407231656.i6NGuOFQ032811@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69474: Maintainer update: security/tinyca to version 0.6.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, 23 Jul 2004 16:56:25 -0000 Synopsis: Maintainer update: security/tinyca to version 0.6.4 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jul 23 16:56:19 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69474 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17:00: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 4D19516A4F2 for ; Fri, 23 Jul 2004 17:00:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 304A343D45 for ; Fri, 23 Jul 2004 17:00:53 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NH0pCY032994 for ; Fri, 23 Jul 2004 17:00:51 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NH0p8j032992; Fri, 23 Jul 2004 17:00:51 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 17:00:51 GMT Message-Id: <200407231700.i6NH0p8j032992@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas-Martin Seck Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 17:00:53 -0000 The following reply was made to PR ports/69487; it has been noted by GNATS. From: Thomas-Martin Seck To: Oliver Eikemeier Cc: Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 Date: Fri, 23 Jul 2004 18:51:26 +0200 * Oliver Eikemeier (eikemeier@fillmore-labs.com): > Thomas-Martin Seck wrote: > > >[...] > >This issue does not seem to be related to the vendor patch against the > >LDAP authentication helpers as I originally thought (see ports/69465) > >but > >until this issue is sorted out upstream, keep leaving this patch alone > >since I cannot test LDAP authentication myself yet. > > I believe this is caused by the vendor patch and does in no way releate > to the OpenLDAP version used. The vendor patch breaks -H, -P and > authentication. You are probably right, but... [...] > You shouldn't be able to authenticate or crash. > > Again: I can't see any signs that this relates to the OpenLDAP version > used. This sounds plausible, too, unfortunately I do not have an LDAP server to test against and squid bug #1018 says "with OpenLDAP 2.1 it works" and when I asked Edwin Groothuis for feedback he said the vendor patch would make no difference, the problem depended on the OpenLDAP version. So for me the problem /seems/ to be OpenLDAP 2.2. I have to believe what I am told so until I get a clear statement about the cause of the problem I like to revert the port to a known good state ASAP. /Should work/ has bitten me too often, so I am bit reluctant to believe this (no offence meant!). I am a bit at a loss now, because I want to avoid to break user's setups when they upgrade squid and OpenLDAP at the same time, mostly because I do not have any positive feedback wrt OpenLDAP 2.2, that's all. If I had, things were easier for me, so everyone using the OpenLDAP 2.2 client libraries for squid authentication is invited to mail success stories to me :) Anyway: if you have not done so already please connect Henrik Nordström and try to sort this out with him. I am convinced both of you can collaborate on this and come to a solution really quickly. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17:00: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 0166C16A4DC for ; Fri, 23 Jul 2004 17:00:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB28B43D2D for ; Fri, 23 Jul 2004 17:00:57 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NH0sXe033035 for ; Fri, 23 Jul 2004 17:00:54 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NH0siu033034; Fri, 23 Jul 2004 17:00:54 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:00:54 GMT Resent-Message-Id: <200407231700.i6NH0siu033034@freefall.freebsd.org> 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 9E5BE16A4CE for ; Fri, 23 Jul 2004 16:57:54 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F3C43D31 for ; Fri, 23 Jul 2004 16:57:52 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id F0F7F157EB for ; Sat, 24 Jul 2004 00:59:20 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 21481-03 for ; Sat, 24 Jul 2004 00:59:20 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 51430157CF; Sat, 24 Jul 2004 00:59:20 +0800 (CST) Message-Id: <20040723165920.51430157CF@mail.dragon2.net> Date: Sat, 24 Jul 2004 00:59:20 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69492: [NEW PORT] www/p5-Kwiki-UserPreferences: Kwiki User Preferences Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 17:00:58 -0000 >Number: 69492 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-UserPreferences: Kwiki User Preferences Plugin >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 Jul 23 17:00:54 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: - required by another new port p5-Kwiki-UserName Kwiki::UserPreferences - Kwiki User Preferences Plugin WWW: http://search.cpan.org/dist/Kwiki-UserPreferences/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-UserPreferences-0.11.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-UserPreferences # p5-Kwiki-UserPreferences/Makefile # p5-Kwiki-UserPreferences/distinfo # p5-Kwiki-UserPreferences/pkg-descr # p5-Kwiki-UserPreferences/pkg-plist # echo c - p5-Kwiki-UserPreferences mkdir -p p5-Kwiki-UserPreferences > /dev/null 2>&1 echo x - p5-Kwiki-UserPreferences/Makefile sed 's/^X//' >p5-Kwiki-UserPreferences/Makefile << 'END-of-p5-Kwiki-UserPreferences/Makefile' X# New ports collection makefile for: p5-Kwiki-UserPreferences X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-UserPreferences XPORTVERSION= 0.11 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki User Preferences Plugin X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::UserPreferences.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-UserPreferences/Makefile echo x - p5-Kwiki-UserPreferences/distinfo sed 's/^X//' >p5-Kwiki-UserPreferences/distinfo << 'END-of-p5-Kwiki-UserPreferences/distinfo' XMD5 (Kwiki-UserPreferences-0.11.tar.gz) = 38d5ca8e751862137709cf16ae5696c8 XSIZE (Kwiki-UserPreferences-0.11.tar.gz) = 8745 END-of-p5-Kwiki-UserPreferences/distinfo echo x - p5-Kwiki-UserPreferences/pkg-descr sed 's/^X//' >p5-Kwiki-UserPreferences/pkg-descr << 'END-of-p5-Kwiki-UserPreferences/pkg-descr' XKwiki::UserPreferences - Kwiki User Preferences Plugin X XWWW: http://search.cpan.org/dist/Kwiki-UserPreferences/ XAuthor: Brian Ingerson END-of-p5-Kwiki-UserPreferences/pkg-descr echo x - p5-Kwiki-UserPreferences/pkg-plist sed 's/^X//' >p5-Kwiki-UserPreferences/pkg-plist << 'END-of-p5-Kwiki-UserPreferences/pkg-plist' X%%SITE_PERL%%/Kwiki/UserPreferences.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/UserPreferences/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/UserPreferences X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-UserPreferences/pkg-plist exit --- p5-Kwiki-UserPreferences-0.11.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17:01: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 308D616A4CE for ; Fri, 23 Jul 2004 17:01:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A7743D31 for ; Fri, 23 Jul 2004 17:01:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NH14ml033103 for ; Fri, 23 Jul 2004 17:01:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NH14Io033102; Fri, 23 Jul 2004 17:01:04 GMT (envelope-from gnats) Date: Fri, 23 Jul 2004 17:01:04 GMT Message-Id: <200407231701.i6NH14Io033102@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/69490: unbreak port py-ltxml 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: Fri, 23 Jul 2004 17:01:05 -0000 The following reply was made to PR ports/69490; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, hsn@netmag.cz Cc: Subject: Re: ports/69490: unbreak port py-ltxml Date: Fri, 23 Jul 2004 21:00:35 +0400 it's not a way to fix such breakages. you should to diff both tarballs to be sure if the new one have no vulnerabilities. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17: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 112B616A4D5 for ; Fri, 23 Jul 2004 17:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8075043D2D for ; Fri, 23 Jul 2004 17:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NHANc3037109 for ; Fri, 23 Jul 2004 17:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NHANHj037108; Fri, 23 Jul 2004 17:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:10:23 GMT Resent-Message-Id: <200407231710.i6NHANHj037108@freefall.freebsd.org> 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 9126B16A4CE for ; Fri, 23 Jul 2004 17:04:16 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DF8643D2D for ; Fri, 23 Jul 2004 17:04:16 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 10695157EB for ; Sat, 24 Jul 2004 01:05:45 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 21481-05 for ; Sat, 24 Jul 2004 01:05:44 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 4CBB1157CF; Sat, 24 Jul 2004 01:05:44 +0800 (CST) Message-Id: <20040723170544.4CBB1157CF@mail.dragon2.net> Date: Sat, 24 Jul 2004 01:05:44 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69493: [NEW PORT] www/p5-Kwiki-Revisions: Kwiki Revisions Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 17:10:24 -0000 >Number: 69493 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-Revisions: Kwiki Revisions Plugin >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 Jul 23 17:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: Kwiki::Revisions - Kwiki Revisions Plugin shows recently changed files on your Kwiki. WWW: http://search.cpan.org/dist/Kwiki-Revisions/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-Revisions-0.11.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-Revisions # p5-Kwiki-Revisions/Makefile # p5-Kwiki-Revisions/distinfo # p5-Kwiki-Revisions/pkg-descr # p5-Kwiki-Revisions/pkg-plist # echo c - p5-Kwiki-Revisions mkdir -p p5-Kwiki-Revisions > /dev/null 2>&1 echo x - p5-Kwiki-Revisions/Makefile sed 's/^X//' >p5-Kwiki-Revisions/Makefile << 'END-of-p5-Kwiki-Revisions/Makefile' X# New ports collection makefile for: p5-Kwiki-Revisions X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-Revisions XPORTVERSION= 0.11 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki Revisions Plugin X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::Revisions.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-Revisions/Makefile echo x - p5-Kwiki-Revisions/distinfo sed 's/^X//' >p5-Kwiki-Revisions/distinfo << 'END-of-p5-Kwiki-Revisions/distinfo' XMD5 (Kwiki-Revisions-0.11.tar.gz) = 90cda6c4f16babf00e23e1af797adfe1 XSIZE (Kwiki-Revisions-0.11.tar.gz) = 8656 END-of-p5-Kwiki-Revisions/distinfo echo x - p5-Kwiki-Revisions/pkg-descr sed 's/^X//' >p5-Kwiki-Revisions/pkg-descr << 'END-of-p5-Kwiki-Revisions/pkg-descr' XKwiki::Revisions - Kwiki Revisions Plugin X Xshows recently changed files on your Kwiki. X XWWW: http://search.cpan.org/dist/Kwiki-Revisions/ XAuthor: Brian Ingerson END-of-p5-Kwiki-Revisions/pkg-descr echo x - p5-Kwiki-Revisions/pkg-plist sed 's/^X//' >p5-Kwiki-Revisions/pkg-plist << 'END-of-p5-Kwiki-Revisions/pkg-plist' X%%SITE_PERL%%/Kwiki/Revisions.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/Revisions/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/Revisions X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-Revisions/pkg-plist exit --- p5-Kwiki-Revisions-0.11.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17: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 1954816A4D8 for ; Fri, 23 Jul 2004 17:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3E5C43D1F for ; Fri, 23 Jul 2004 17:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NHANg7037122 for ; Fri, 23 Jul 2004 17:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NHANCj037121; Fri, 23 Jul 2004 17:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:10:23 GMT Resent-Message-Id: <200407231710.i6NHANCj037121@freefall.freebsd.org> 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 DB89916A4CE for ; Fri, 23 Jul 2004 17:07:25 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 554E043D31 for ; Fri, 23 Jul 2004 17:07:24 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id 04DCF157EB for ; Sat, 24 Jul 2004 01:08:53 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 21481-06 for ; Sat, 24 Jul 2004 01:08:52 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 4ADDE157CF; Sat, 24 Jul 2004 01:08:52 +0800 (CST) Message-Id: <20040723170852.4ADDE157CF@mail.dragon2.net> Date: Sat, 24 Jul 2004 01:08:52 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69494: [NEW PORT] www/p5-Kwiki-Search: Kwiki Search Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 17:10:24 -0000 >Number: 69494 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-Search: Kwiki Search Plugin >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 Jul 23 17:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: Kwiki::Search - Kwiki Search Plugin WWW: http://search.cpan.org/dist/Kwiki-Search/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-Search-0.11.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-Search # p5-Kwiki-Search/Makefile # p5-Kwiki-Search/distinfo # p5-Kwiki-Search/pkg-descr # p5-Kwiki-Search/pkg-plist # echo c - p5-Kwiki-Search mkdir -p p5-Kwiki-Search > /dev/null 2>&1 echo x - p5-Kwiki-Search/Makefile sed 's/^X//' >p5-Kwiki-Search/Makefile << 'END-of-p5-Kwiki-Search/Makefile' X# New ports collection makefile for: p5-Kwiki-Search X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-Search XPORTVERSION= 0.11 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki Search Plugin X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::Search.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-Search/Makefile echo x - p5-Kwiki-Search/distinfo sed 's/^X//' >p5-Kwiki-Search/distinfo << 'END-of-p5-Kwiki-Search/distinfo' XMD5 (Kwiki-Search-0.11.tar.gz) = 1814356bbcae47d1c05c7e1e55d5e693 XSIZE (Kwiki-Search-0.11.tar.gz) = 8476 END-of-p5-Kwiki-Search/distinfo echo x - p5-Kwiki-Search/pkg-descr sed 's/^X//' >p5-Kwiki-Search/pkg-descr << 'END-of-p5-Kwiki-Search/pkg-descr' XKwiki::Search - Kwiki Search Plugin X XWWW: http://search.cpan.org/dist/Kwiki-Search/ XAuthor: Brian Ingerson END-of-p5-Kwiki-Search/pkg-descr echo x - p5-Kwiki-Search/pkg-plist sed 's/^X//' >p5-Kwiki-Search/pkg-plist << 'END-of-p5-Kwiki-Search/pkg-plist' X%%SITE_PERL%%/Kwiki/Search.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/Search/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/Search X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-Search/pkg-plist exit --- p5-Kwiki-Search-0.11.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17: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 5F73916A4CF for ; Fri, 23 Jul 2004 17:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42FA943D58 for ; Fri, 23 Jul 2004 17:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NHUB5e037969 for ; Fri, 23 Jul 2004 17:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NHUBDR037966; Fri, 23 Jul 2004 17:30:11 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:30:11 GMT Resent-Message-Id: <200407231730.i6NHUBDR037966@freefall.freebsd.org> 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 A0F8016A4CE for ; Fri, 23 Jul 2004 17:21:33 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CC9243D49 for ; Fri, 23 Jul 2004 17:21:33 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id BD1F3157EB for ; Sat, 24 Jul 2004 01:23:01 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 21481-10 for ; Sat, 24 Jul 2004 01:23:01 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 1DB4C157CF; Sat, 24 Jul 2004 01:23:01 +0800 (CST) Message-Id: <20040723172301.1DB4C157CF@mail.dragon2.net> Date: Sat, 24 Jul 2004 01:23:01 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69495: [NEW PORT] www/p5-Kwiki-RecentChanges: Kwiki Recent Changes Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 17:30:24 -0000 >Number: 69495 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-RecentChanges: Kwiki Recent Changes Plugin >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 Jul 23 17:30:11 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: Kwiki::RecentChanges - Kwiki Recent Changes Plugin shows recently changed files on your Kwiki. WWW: http://search.cpan.org/dist/Kwiki-RecentChanges/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-RecentChanges-0.11.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-RecentChanges # p5-Kwiki-RecentChanges/Makefile # p5-Kwiki-RecentChanges/distinfo # p5-Kwiki-RecentChanges/pkg-descr # p5-Kwiki-RecentChanges/pkg-plist # echo c - p5-Kwiki-RecentChanges mkdir -p p5-Kwiki-RecentChanges > /dev/null 2>&1 echo x - p5-Kwiki-RecentChanges/Makefile sed 's/^X//' >p5-Kwiki-RecentChanges/Makefile << 'END-of-p5-Kwiki-RecentChanges/Makefile' X# New ports collection makefile for: p5-Kwiki-RecentChanges X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-RecentChanges XPORTVERSION= 0.11 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki Recent Changes Plugin X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::RecentChanges.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-RecentChanges/Makefile echo x - p5-Kwiki-RecentChanges/distinfo sed 's/^X//' >p5-Kwiki-RecentChanges/distinfo << 'END-of-p5-Kwiki-RecentChanges/distinfo' XMD5 (Kwiki-RecentChanges-0.11.tar.gz) = ad7673146fb0b23f34107c36ce29ddeb XSIZE (Kwiki-RecentChanges-0.11.tar.gz) = 8542 END-of-p5-Kwiki-RecentChanges/distinfo echo x - p5-Kwiki-RecentChanges/pkg-descr sed 's/^X//' >p5-Kwiki-RecentChanges/pkg-descr << 'END-of-p5-Kwiki-RecentChanges/pkg-descr' XKwiki::RecentChanges - Kwiki Recent Changes Plugin X Xshows recently changed files on your Kwiki. X XWWW: http://search.cpan.org/dist/Kwiki-RecentChanges/ XAuthor: Brian Ingerson END-of-p5-Kwiki-RecentChanges/pkg-descr echo x - p5-Kwiki-RecentChanges/pkg-plist sed 's/^X//' >p5-Kwiki-RecentChanges/pkg-plist << 'END-of-p5-Kwiki-RecentChanges/pkg-plist' X%%SITE_PERL%%/Kwiki/RecentChanges.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/RecentChanges/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/RecentChanges X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-RecentChanges/pkg-plist exit --- p5-Kwiki-RecentChanges-0.11.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17: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 8C0D216A4CF for ; Fri, 23 Jul 2004 17:30:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74D0C43D58 for ; Fri, 23 Jul 2004 17:30:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NHUC9W038004 for ; Fri, 23 Jul 2004 17:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NHUCDo038003; Fri, 23 Jul 2004 17:30:12 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:30:12 GMT Resent-Message-Id: <200407231730.i6NHUCDo038003@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Guido Falsi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4ADB16A4CE for ; Fri, 23 Jul 2004 17:22:44 +0000 (GMT) Received: from mail.dada.it (mail2.dada.it [195.110.100.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 692D543D1D for ; Fri, 23 Jul 2004 17:22:43 +0000 (GMT) (envelope-from mad@madpilot.net) Received: (qmail 32324 invoked from network); 23 Jul 2004 17:22:39 -0000 Received: from unknown (HELO madpilot.net) (195.110.114.197) by mail.dada.it with SMTP; 23 Jul 2004 17:22:39 -0000 Received: (qmail 46011 invoked from network); 23 Jul 2004 17:22:41 -0000 Received: from wedge.madpilot.net (192.168.13.11) by 0 with SMTP; 23 Jul 2004 17:22:41 -0000 Received: from wedge.madpilot.net (localhost.madpilot.net [127.0.0.1]) by wedge.madpilot.net (8.12.11/8.12.11) with ESMTP id i6NHMf6R069236 for ; Fri, 23 Jul 2004 19:22:41 +0200 (CEST) (envelope-from mad@wedge.madpilot.net) Received: (from mad@localhost) by wedge.madpilot.net (8.12.11/8.12.11/Submit) id i6NHMeQE069224; Fri, 23 Jul 2004 19:22:40 +0200 (CEST) (envelope-from mad) Message-Id: <200407231722.i6NHMeQE069224@wedge.madpilot.net> Date: Fri, 23 Jul 2004 19:22:40 +0200 (CEST) From: Guido Falsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69496: [maintainer-update] comms/obexapp fix build when mpeg4ip is installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Guido Falsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 17:30:24 -0000 >Number: 69496 >Category: ports >Synopsis: [maintainer-update] comms/obexapp fix build when mpeg4ip is installed >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 Jul 23 17:30:12 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 5.2-CURRENT i386 >Organization: none >Environment: System: FreeBSD wedge.madpilot.net 5.2-CURRENT FreeBSD 5.2-CURRENT #2: Thu Jul 22 17:02:40 CEST 2004 root@wedge.madpilot.net:/usr/obj/usr/src/sys/WEDGE i386 >Description: received a report of the port not building when the mpeg4ip port is installed, because mpeg4ip installs an include file(sdp.h) which shadows the system one. Fixed by changing the include directory precedence. reported and solution suggested by: Panagiotis Astithas >How-To-Repeat: >Fix: diff -ruN obexapp.old/files/patch-Makefile obexapp/files/patch-Makefile --- obexapp.old/files/patch-Makefile Fri Jul 23 19:15:34 2004 +++ obexapp/files/patch-Makefile Fri Jul 23 19:17:43 2004 @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Apr 12 03:10:25 2004 -+++ Makefile Mon Apr 12 03:10:59 2004 +--- Makefile.orig Fri Apr 9 23:09:09 2004 ++++ Makefile Fri Jul 23 19:17:16 2004 @@ -1,8 +1,10 @@ # $Id: Makefile,v 1.7 2004/04/09 21:09:09 max Exp $ # $FreeBSD$ @@ -13,3 +13,14 @@ PROG= obexapp MAN1= obexapp.1 +@@ -13,8 +15,8 @@ + + DEBUG_FLAGS= -g + +-CFLAGS= -I/usr/local/include \ +- -I/usr/local/include/openobex ++CFLAGS= -I/usr/local/include/openobex \ ++ -I/usr/local/include + + DPADD= ${LIBBLUETOOTH} ${LIBSDP} ${LIBBSDXML} + LDADD= -L/usr/lib -L/usr/local/lib \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17: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 6C09616A4D1 for ; Fri, 23 Jul 2004 17:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AC3843D39 for ; Fri, 23 Jul 2004 17:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NHeNJB039593 for ; Fri, 23 Jul 2004 17:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NHeMYE039574; Fri, 23 Jul 2004 17:40:22 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:40:22 GMT Resent-Message-Id: <200407231740.i6NHeMYE039574@freefall.freebsd.org> 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 38C6216A4CE for ; Fri, 23 Jul 2004 17:38:11 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63DC943D49 for ; Fri, 23 Jul 2004 17:38:10 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.109] (port=50071 helo=inbox.ru) by mx2.mail.ru with esmtp id 1Bo3zk-000FMh-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 23 Jul 2004 21:38:09 +0400 Message-Id: Date: Fri, 23 Jul 2004 21:38:09 +0400 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69497: [ maintainer ] astro/xplanet: add WITHOUT_PNM knob, fix typo. 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: Fri, 23 Jul 2004 17:40:24 -0000 >Number: 69497 >Category: ports >Synopsis: [ maintainer ] astro/xplanet: add WITHOUT_PNM knob, fix typo. >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 Jul 23 17:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #6: Tue Jul 20 17:04:20 MSD 2004 root@lame.novel.ru:/usr/obj/usr/src/sys/NOV i386 >Description: - Add forgotten WITHOUT_PNM knob - Typo: WITH_TIFF should really be WITHOUT_TIFF >How-To-Repeat: >Fix: diff -ruN xplanet.orig/Makefile xplanet/Makefile --- xplanet.orig/Makefile Fri Jul 23 21:18:56 2004 +++ xplanet/Makefile Fri Jul 23 21:25:10 2004 @@ -58,7 +58,14 @@ CONFIGURE_ARGS+= --without-png .endif -.if !defined(WITH_TIFF) +.if !defined(WITHOUT_PNM) +CONFIGURE_ARGS+= --with-pnm +LIB_DEPENDS+= netpbm.1:${PORTSDIR}/graphics/netpbm +.else +CONFIGURE_ARGS+= --without-pnm +.endif + +.if !defined(WITHOUT_TIFF) CONFIGURE_ARGS+= --with-tiff LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff .else >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 17: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 CEDDB16A4D1 for ; Fri, 23 Jul 2004 17:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3E3443D46 for ; Fri, 23 Jul 2004 17:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NHeNqf039606 for ; Fri, 23 Jul 2004 17:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NHeNr6039605; Fri, 23 Jul 2004 17:40:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 17:40:23 GMT Resent-Message-Id: <200407231740.i6NHeNr6039605@freefall.freebsd.org> 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 CBE9C16A4CE for ; Fri, 23 Jul 2004 17:38:40 +0000 (GMT) Received: from mail.dragon2.net (sungsung.csie.nctu.edu.tw [140.113.215.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66C0D43D3F for ; Fri, 23 Jul 2004 17:38:40 +0000 (GMT) (envelope-from clsung@dragon2.net) Received: from localhost (unknown [127.0.0.1]) by mail.dragon2.net (Postfix) with ESMTP id E4576158A8 for ; Sat, 24 Jul 2004 01:40:08 +0800 (CST) Received: from mail.dragon2.net ([127.0.0.1])port 10024) with ESMTP id 39574-04 for ; Sat, 24 Jul 2004 01:40:08 +0800 (CST) Received: by mail.dragon2.net (Postfix, from userid 1022) id 28DEB158A7; Sat, 24 Jul 2004 01:40:08 +0800 (CST) Message-Id: <20040723174008.28DEB158A7@mail.dragon2.net> Date: Sat, 24 Jul 2004 01:40:08 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69498: [NEW PORT] www/p5-Kwiki-RecentChangesRSS: Kwiki RSS Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 17:40:24 -0000 >Number: 69498 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-RecentChangesRSS: Kwiki RSS Plugin >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 Jul 23 17:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST >Description: Kwiki::RecentChangesRSS - Kwiki RSS Plugin Provides an RSS 2.0 feed of your (Kwiki) recent changes. WWW: http://search.cpan.org/dist/Kwiki-RecentChangesRSS/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-RecentChangesRSS-0.02.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-RecentChangesRSS # p5-Kwiki-RecentChangesRSS/Makefile # p5-Kwiki-RecentChangesRSS/distinfo # p5-Kwiki-RecentChangesRSS/pkg-descr # p5-Kwiki-RecentChangesRSS/pkg-plist # echo c - p5-Kwiki-RecentChangesRSS mkdir -p p5-Kwiki-RecentChangesRSS > /dev/null 2>&1 echo x - p5-Kwiki-RecentChangesRSS/Makefile sed 's/^X//' >p5-Kwiki-RecentChangesRSS/Makefile << 'END-of-p5-Kwiki-RecentChangesRSS/Makefile' X# New ports collection makefile for: p5-Kwiki-RecentChangesRSS X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-RecentChangesRSS XPORTVERSION= 0.02 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki RSS Plugin X XBUILD_DEPENDS= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple \ X ${SITE_PERL}/XML/RSS.pm:${PORTSDIR}/textproc/p5-XML-RSS XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::RecentChangesRSS.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-RecentChangesRSS/Makefile echo x - p5-Kwiki-RecentChangesRSS/distinfo sed 's/^X//' >p5-Kwiki-RecentChangesRSS/distinfo << 'END-of-p5-Kwiki-RecentChangesRSS/distinfo' XMD5 (Kwiki-RecentChangesRSS-0.02.tar.gz) = cd2993c734ade7ce491d0853aa36c8e8 XSIZE (Kwiki-RecentChangesRSS-0.02.tar.gz) = 4261 END-of-p5-Kwiki-RecentChangesRSS/distinfo echo x - p5-Kwiki-RecentChangesRSS/pkg-descr sed 's/^X//' >p5-Kwiki-RecentChangesRSS/pkg-descr << 'END-of-p5-Kwiki-RecentChangesRSS/pkg-descr' XKwiki::RecentChangesRSS - Kwiki RSS Plugin X XProvides an RSS 2.0 feed of your (Kwiki) recent changes. X XWWW: http://search.cpan.org/dist/Kwiki-RecentChangesRSS/ XAuthor: Brian Ingerson END-of-p5-Kwiki-RecentChangesRSS/pkg-descr echo x - p5-Kwiki-RecentChangesRSS/pkg-plist sed 's/^X//' >p5-Kwiki-RecentChangesRSS/pkg-plist << 'END-of-p5-Kwiki-RecentChangesRSS/pkg-plist' X%%SITE_PERL%%/Kwiki/RecentChangesRSS.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/RecentChangesRSS/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/RecentChangesRSS X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-RecentChangesRSS/pkg-plist exit --- p5-Kwiki-RecentChangesRSS-0.02.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 18:00: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 96DDD16A4CF for ; Fri, 23 Jul 2004 18:00:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8625D43D1D for ; Fri, 23 Jul 2004 18:00:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NI0KUs040281 for ; Fri, 23 Jul 2004 18:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NI0Kks040279; Fri, 23 Jul 2004 18:00:20 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 18:00:20 GMT Resent-Message-Id: <200407231800.i6NI0Kks040279@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08C2716A4CE for ; Fri, 23 Jul 2004 17:56:10 +0000 (GMT) Received: from imf18aec.mail.bellsouth.net (imf18aec.mail.bellsouth.net [205.152.59.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8118643D53 for ; Fri, 23 Jul 2004 17:56:09 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf18aec.mail.bellsouth.netESMTP <20040723175607.DUJB1786.imf18aec.mail.bellsouth.net@gentoo.ahze.net>; Fri, 23 Jul 2004 13:56:07 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6NHu6i7059175; Fri, 23 Jul 2004 13:56:06 -0400 (EDT) (envelope-from ahze) Message-Id: <200407231756.i6NHu6i7059175@gentoo.ahze.net> Date: Fri, 23 Jul 2004 13:56:06 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: amistry@am-productions.biz Subject: ports/69499: [PATCH] multimedia/avidemux2: [SDL/faad 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: Fri, 23 Jul 2004 18:00:20 -0000 >Number: 69499 >Category: ports >Synopsis: [PATCH] multimedia/avidemux2: [SDL/faad support] >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 Jul 23 18:00:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: - Add SDL & faad support - add nasm to i386 build (for MMX) Port maintainer (amistry@am-productions.biz) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- avidemux2-2.0.26.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/opt/cvs/freebsd-src/ports/multimedia/avidemux2/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 23 Jul 2004 09:06:06 -0000 1.11 +++ Makefile 23 Jul 2004 17:48:59 -0000 @@ -24,6 +24,7 @@ USE_X_PREFIX= yes USE_LIBTOOL_VER=15 USE_GNOME= gnomeprefix gnomehack gtk20 +WANT_SDL= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include \ -I${LOCALBASE}/include/ffmpeg \ @@ -37,6 +38,14 @@ .include +.if ${HAVE_SDL:Msdl}!="" +WITH_SDL= yes +.endif + +.if exists(${LOCALBASE}/lib/libfaad.so.0) +WITH_FAAD= yes +.endif + .if exists(${LOCALBASE}/bin/mpeg2enc) WITH_MPEGENC= yes .endif @@ -60,12 +69,22 @@ .if ${ARCH} != "i386" CONFIGURE_ARGS+= --disable-mmx +.else +BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm .endif .if defined(WITH_A52) LIB_DEPENDS+= a52.0:${PORTSDIR}/audio/liba52 .endif +.if defined(WITH_SDL) +USE_SDL+= sdl +.endif + +.if defined(WITH_FAAD) +LIB_DEPENDS+= faad.0:${PORTSDIR}/audio/faad +.endif + pre-everything:: .if !defined(WITH_MPEGENC) @${ECHO_MSG} "To enable mpeg support define WITH_MPEGENC." @@ -79,6 +98,14 @@ @${ECHO_MSG} "To enable A/52 support define WITH_A52." .endif +.if !defined(WITH_SDL) + @${ECHO_MSG} "To enable SDL support define WITH_SDL." +.endif + +.if !defined(WITH_FAAD) + @${ECHO_MSG) "To enable FAAD (mpeg4/aac) support define WITH_FAAD." +.endif + post-patch: @${TOUCH} ${WRKSRC}/* @${REINPLACE_CMD} 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure ${WRKSRC}/*/*/Makefile @@ -87,5 +114,9 @@ @${REINPLACE_CMD} 's|ADM_LOCALEDIR=$${datadir}/locale|ADM_LOCALEDIR=${PREFIX}/share/locale|' ${WRKSRC}/configure @${REINPLACE_CMD} "s|-O2|${CFLAGS}|" ${WRKSRC}/adm_lavcodec/Makefile @${REINPLACE_CMD} "s|-O2||" ${WRKSRC}/configure + @${REINPLACE_CMD} 's|SDL/|SDL11/|' \ + ${WRKSRC}/avidemux/ADM_audiodevice/ADM_deviceSDL.cpp \ + ${WRKSRC}/avidemux/ADM_gui2/GUI_sdlDraw.cpp \ + ${WRKSRC}/avidemux/main.cpp .include --- avidemux2-2.0.26.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 18:08: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 6A45316A4CE; Fri, 23 Jul 2004 18:08:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B50E43D54; Fri, 23 Jul 2004 18:08:21 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6NI8LTK044217; Fri, 23 Jul 2004 18:08:21 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NI8La5044213; Fri, 23 Jul 2004 18:08:21 GMT (envelope-from sem) Date: Fri, 23 Jul 2004 18:08:21 GMT From: Sergey Matveychuk Message-Id: <200407231808.i6NI8La5044213@freefall.freebsd.org> To: hsn@netmag.cz, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69491: [PATCH] textproc/ltxml: update to 1.2.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, 23 Jul 2004 18:08:21 -0000 Synopsis: [PATCH] textproc/ltxml: update to 1.2.6 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Fri Jul 23 18:08:09 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69491 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 18:40: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 7908B16A4CE for ; Fri, 23 Jul 2004 18:40:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D46443D49 for ; Fri, 23 Jul 2004 18:40:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NIeEbd046177 for ; Fri, 23 Jul 2004 18:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NIeEuq046176; Fri, 23 Jul 2004 18:40:14 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 18:40:14 GMT Resent-Message-Id: <200407231840.i6NIeEuq046176@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Simon Dick Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F363D16A4CE for ; Fri, 23 Jul 2004 18:37:53 +0000 (GMT) Received: from home.irrelevant.org (dsl-217-155-238-245.zen.co.uk [217.155.238.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C61F43D46 for ; Fri, 23 Jul 2004 18:37:52 +0000 (GMT) (envelope-from simond@home.irrelevant.org) Received: from simond by home.irrelevant.org with local (Exim 4.30; FreeBSD) id 1Bo4vP-000GR6-K4; Fri, 23 Jul 2004 19:37:43 +0100 Message-Id: Date: Fri, 23 Jul 2004 19:37:43 +0100 From: Simon Dick Sender: Simon Dick To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: sean@mcneil.com Subject: ports/69501: Maintainer port update: mail/squirrelmail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simon Dick List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 18:40:14 -0000 >Number: 69501 >Category: ports >Synopsis: Maintainer port update: mail/squirrelmail >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 Jul 23 18:40:13 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Simon Dick >Release: FreeBSD 4.9-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD nelly.internal.irrelevant.org 4.9-RELEASE-p1 FreeBSD 4.9-RELEASE-p1 #5: Sat Feb 7 07:48:58 GMT 2004 root@nelly.internal.irrelevant.org:/usr/obj/usr/src/sys/ELEPHANT i386 >Description: Fix ports use of USE_PHP, sorry! >How-To-Repeat: >Fix: --- Makefile.orig Fri Jul 23 19:34:46 2004 +++ Makefile Fri Jul 23 19:35:10 2004 @@ -26,7 +26,7 @@ .endif .ifdef WITH_LDAP -USE_PHP= ${USE_PHP} ldap +USE_PHP+= ldap .endif .ifndef WITHOUT_WWWDIR >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 19:02: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 8D89016A4CE; Fri, 23 Jul 2004 19:02:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E2C243D1D; Fri, 23 Jul 2004 19:02:50 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6NJ2oqX046926; Fri, 23 Jul 2004 19:02:50 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NJ2oAp046922; Fri, 23 Jul 2004 19:02:50 GMT (envelope-from sem) Date: Fri, 23 Jul 2004 19:02:50 GMT From: Sergey Matveychuk Message-Id: <200407231902.i6NJ2oAp046922@freefall.freebsd.org> To: hsn@netmag.cz, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69490: unbreak port py-ltxml X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 19:02:50 -0000 Synopsis: unbreak port py-ltxml State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Fri Jul 23 19:02:39 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69490 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 19:08: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 65A8E16A4CE; Fri, 23 Jul 2004 19:08:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4757443D4C; Fri, 23 Jul 2004 19:08:17 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6NJ8Hjr050772; Fri, 23 Jul 2004 19:08:17 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NJ8Hux050768; Fri, 23 Jul 2004 19:08:17 GMT (envelope-from sem) Date: Fri, 23 Jul 2004 19:08:17 GMT From: Sergey Matveychuk Message-Id: <200407231908.i6NJ8Hux050768@freefall.freebsd.org> To: simond@irrelevant.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69501: Maintainer port update: mail/squirrelmail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 19:08:17 -0000 Synopsis: Maintainer port update: mail/squirrelmail State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Fri Jul 23 19:08:09 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69501 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 19:31: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 379EC16A4CE; Fri, 23 Jul 2004 19:31:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1864143D39; Fri, 23 Jul 2004 19:31:33 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6NJVWBw052651; Fri, 23 Jul 2004 19:31:32 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NJVWxP052647; Fri, 23 Jul 2004 19:31:32 GMT (envelope-from sem) Date: Fri, 23 Jul 2004 19:31:32 GMT From: Sergey Matveychuk Message-Id: <200407231931.i6NJVWxP052647@freefall.freebsd.org> To: bogorodskiy@inbox.ru, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69497: [ maintainer ] astro/xplanet: add WITHOUT_PNM knob, fix typo. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 19:31:33 -0000 Synopsis: [ maintainer ] astro/xplanet: add WITHOUT_PNM knob, fix typo. State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Fri Jul 23 19:31:26 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69497 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 19:40: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 CB15116A4CE for ; Fri, 23 Jul 2004 19:40:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0C9343D2D for ; Fri, 23 Jul 2004 19:40:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NJe58V052860 for ; Fri, 23 Jul 2004 19:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NJe5pQ052859; Fri, 23 Jul 2004 19:40:05 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 19:40:05 GMT Resent-Message-Id: <200407231940.i6NJe5pQ052859@freefall.freebsd.org> 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 Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D75316A4CE for ; Fri, 23 Jul 2004 19:31:58 +0000 (GMT) Received: from imf16aec.mail.bellsouth.net (imf16aec.mail.bellsouth.net [205.152.59.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F12743D45 for ; Fri, 23 Jul 2004 19:31:57 +0000 (GMT) (envelope-from ahze@gentoo.ahze.net) Received: from gentoo.ahze.net ([68.209.163.3]) by imf16aec.mail.bellsouth.netESMTP <20040723193156.HCCZ1721.imf16aec.mail.bellsouth.net@gentoo.ahze.net> for ; Fri, 23 Jul 2004 15:31:56 -0400 Received: (from root@localhost) by gentoo.ahze.net (8.12.11/8.12.11/Submit) id i6NJVpl4073418; Fri, 23 Jul 2004 15:31:51 -0400 (EDT) (envelope-from ahze) Message-Id: <200407231931.i6NJVpl4073418@gentoo.ahze.net> Date: Fri, 23 Jul 2004 15:31:51 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69503: [NEW PORT] x11-toolkits/p5-Tk-JPEG-Lite: Very simplistic image viewer that loads JPEG 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: Fri, 23 Jul 2004 19:40:05 -0000 >Number: 69503 >Category: ports >Synopsis: [NEW PORT] x11-toolkits/p5-Tk-JPEG-Lite: Very simplistic image viewer that loads JPEG images >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 Jul 23 19:40:05 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.2-CURRENT FreeBSD 5.2-CURRENT #57: Fri Jul 16 00:36:31 EDT 2004 >Description: Very simplistic image viewer that loads JPEG images WWW: http://search.cpan.org/~srezic/Tk-JPEG-Lite/ Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Tk-JPEG-Lite-2.01403.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Tk-JPEG-Lite # p5-Tk-JPEG-Lite/pkg-descr # p5-Tk-JPEG-Lite/Makefile # p5-Tk-JPEG-Lite/pkg-plist # p5-Tk-JPEG-Lite/distinfo # echo c - p5-Tk-JPEG-Lite mkdir -p p5-Tk-JPEG-Lite > /dev/null 2>&1 echo x - p5-Tk-JPEG-Lite/pkg-descr sed 's/^X//' >p5-Tk-JPEG-Lite/pkg-descr << 'END-of-p5-Tk-JPEG-Lite/pkg-descr' XVery simplistic image viewer that loads JPEG images X XWWW: http://search.cpan.org/~srezic/Tk-JPEG-Lite/ END-of-p5-Tk-JPEG-Lite/pkg-descr echo x - p5-Tk-JPEG-Lite/Makefile sed 's/^X//' >p5-Tk-JPEG-Lite/Makefile << 'END-of-p5-Tk-JPEG-Lite/Makefile' X# New ports collection makefile for: p5-Tk-JPEG-Lite X# Date created: 2004-07-23 X# Whom: Michael Johnson X# X# $FreeBSD$ X# X XPORTNAME= Tk-JPEG-Lite XPORTVERSION= 2.01403 XCATEGORIES= x11-toolkits graphics perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Tk XPKGNAMEPREFIX= p5- X XMAINTAINER= ports@FreeBSD.org XCOMMENT= Very simplistic image viewer that loads JPEG images X XBUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk XLIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes XUSE_REINPLACE= yes X XMAN1= tkjpeg.1 XMAN3= Tk::JPEG::Lite.3 X Xpost-patch: X @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ X ${WRKSRC}/Makefile.PL X X.include END-of-p5-Tk-JPEG-Lite/Makefile echo x - p5-Tk-JPEG-Lite/pkg-plist sed 's/^X//' >p5-Tk-JPEG-Lite/pkg-plist << 'END-of-p5-Tk-JPEG-Lite/pkg-plist' Xbin/tkjpeg X%%SITE_PERL%%/%%PERL_ARCH%%/Tk/JPEG/Lite.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/JPEG/Lite/.packlist X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/JPEG/Lite/Lite.bs X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/JPEG/Lite/Lite.so X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/JPEG/Lite X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/JPEG 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Tk/JPEG 2>/dev/null || true END-of-p5-Tk-JPEG-Lite/pkg-plist echo x - p5-Tk-JPEG-Lite/distinfo sed 's/^X//' >p5-Tk-JPEG-Lite/distinfo << 'END-of-p5-Tk-JPEG-Lite/distinfo' XMD5 (Tk-JPEG-Lite-2.01403.tar.gz) = 5d930c96e03869c49ad58dd56974a683 XSIZE (Tk-JPEG-Lite-2.01403.tar.gz) = 19328 END-of-p5-Tk-JPEG-Lite/distinfo exit --- p5-Tk-JPEG-Lite-2.01403.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 19:44: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 5E0FF16A4CE; Fri, 23 Jul 2004 19:44:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EF1243D2D; Fri, 23 Jul 2004 19:44:32 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6NJiWV9053020; Fri, 23 Jul 2004 19:44:32 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NJiVEM053016; Fri, 23 Jul 2004 19:44:31 GMT (envelope-from sem) Date: Fri, 23 Jul 2004 19:44:31 GMT From: Sergey Matveychuk Message-Id: <200407231944.i6NJiVEM053016@freefall.freebsd.org> To: mad@madpilot.net, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69496: [maintainer-update] comms/obexapp fix build when mpeg4ip is installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 19:44:32 -0000 Synopsis: [maintainer-update] comms/obexapp fix build when mpeg4ip is installed State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Fri Jul 23 19:44:24 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69496 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 20: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 A346316A4D0 for ; Fri, 23 Jul 2004 20:00:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9228243D2F for ; Fri, 23 Jul 2004 20:00:47 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NK0l5L053449 for ; Fri, 23 Jul 2004 20:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NK0l4g053448; Fri, 23 Jul 2004 20:00:47 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 20:00:47 GMT Resent-Message-Id: <200407232000.i6NK0l4g053448@freefall.freebsd.org> 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 9457116A4CE for ; Fri, 23 Jul 2004 19:53:45 +0000 (GMT) Received: from dwarf.jawa.at (62-99-226-181.static.adsl-line.inode.at [62.99.226.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7BAC43D46 for ; Fri, 23 Jul 2004 19:53:42 +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 i6NJrKPC001125; Fri, 23 Jul 2004 21:53:20 +0200 (CEST) (envelope-from mranner@dwarf.jawa.at) Received: (from root@localhost) by dwarf.jawa.at (8.12.11/8.12.9/Submit) id i6NJrJHp001124; Fri, 23 Jul 2004 21:53:19 +0200 (CEST) (envelope-from mranner) Message-Id: <200407231953.i6NJrJHp001124@dwarf.jawa.at> Date: Fri, 23 Jul 2004 21:53:19 +0200 (CEST) From: Michael Ranner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Volker Stolz Subject: ports/69504: [NEW PORT] net-mgmt/nrg: "NRG does visualizing network and resource utilization data" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 20:00:47 -0000 >Number: 69504 >Category: ports >Synopsis: [NEW PORT] net-mgmt/nrg: "NRG does visualizing network and resource utilization data" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 20:00:44 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 #0: Fri Jun 25 23:02:44 CEST 2004 >Description: NRG is a system for maintaining and visualizing network data and other resource utilization data. It automates the maintenance of RRDtool databases and graph web pages (that look like MRTG web pages.) NRG is primarily configured using very terse meta- configuration strings. These strings tell NRG to autodiscover network devices and verify that their current NRG configuration is correct. WWW: http://nrg.hep.wisc.edu/ Obsoletes ports/61539 fixes some issues with previous pr and incorporates some advices from vs. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- nrg-0.99.22.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: # # nrg # nrg/files # nrg/files/nrg-apcupsdstat.patch # nrg/files/patch-examples # nrg/files/patch-nrg-apachestat # nrg/files/patch-nrg-bindstat # nrg/files/patch-nrg-rrdkeeper # nrg/files/patch-nrg-sendmailstat # nrg/files/run-nrg.sh # nrg/Makefile # nrg/distinfo # nrg/pkg-descr # nrg/pkg-message # nrg/pkg-plist # echo c - nrg mkdir -p nrg > /dev/null 2>&1 echo c - nrg/files mkdir -p nrg/files > /dev/null 2>&1 echo x - nrg/files/nrg-apcupsdstat.patch sed 's/^X//' >nrg/files/nrg-apcupsdstat.patch << 'END-of-nrg/files/nrg-apcupsdstat.patch' X--- collectors/nrg-apcupsdstat.in.orig Fri Mar 5 18:13:13 2004 X+++ collectors/nrg-apcupsdstat.in Fri Mar 5 18:13:13 2004 X@@ -0,0 +1,146 @@ X+#!@PERL@ X+# X+# nrg-apcupsdstat - a nrg collector for reporting apcupsd statistics X+# X+# options: temp and battery X+# X+# michael ranner X+# X+# $Id$ X+# X+ X+$mode = 'battery'; X+$server = 'localhost'; X+$port = '7000'; X+$stamp = '0'; X+$stat = '0'; X+$apcnisclient = "/usr/local/bin/apcnisclient"; X+ X+#------------------------------------------------------------------ X+# parse argv... X+ X+while ( $ARGV[0] =~ /^-/ ) { X+ $arg = $ARGV[0]; X+ if ( $arg =~ /^-d/ ) { X+ $debug = 1; X+ shift @ARGV; X+ } elsif ( $arg =~ /^-p/ ) { X+ $port = $ARGV[1]; X+ shift @ARGV; shift @ARGV; X+ } elsif ( $arg =~ /^-m/ ) { X+ $mode = $ARGV[1]; X+ shift @ARGV; shift @ARGV; X+ } else { X+ print "unknown option: \"$arg\"\n"; X+ &usage; X+ exit 1; X+ } X+ $i++; X+} X+ X+if ( $#ARGV != 0 ) { X+ print "usage: nrg-apcupsdstat [args] apc_server\n"; X+ exit; X+} X+$server = $ARGV[0]; X+ X+if ( $debug ) { X+ $date = `date`; chop $date; X+ print "nrg-apcupsdstat: started in debug mode at $date\n"; X+ print "nrg-apcupsdstat: contacting $server at $port\n"; X+} X+ X+if ( $mode ne 'load' && $mode ne 'temp' && $mode ne 'battery' X+ && $mode ne 'inv' && $mode ne 'outv' && $mode ne 'battv' ) { X+ print "unknown mode: \"$mode\"\n"; X+ &usage; X+ exit 1; X+} X+ X+#------------------------------------------------------------------ X+# get the stats from apc nis client... X+ X+if ( $port !~ /^\d+$/ ) { X+ $port = getservbyname($port,'tcp') || &abend; X+} X+ X+open(CLIENT, "$apcnisclient $server:$port status|"); X+ X+while() { X+ push(@details, $_); X+} X+close(CLIENT); X+ X+if ( ! @details ) { &abend; } X+ X+#------------------------------------------------------------------ X+# parse the stats... X+ X+foreach $_ (@details) { X+ ($n, $stamp) = split(": ") if /^DATE/; X+ X+ if ($mode eq "battery") { X+ next if !/^BCHARGE/; X+ ($k, $n, $stat) = split; X+ last; X+ } elsif ($mode eq "battv") { X+ next if !/^BATTV/; X+ ($k, $n, $stat) = split; X+ last; X+ } elsif ($mode eq "inv") { X+ next if !/^LINEV/; X+ ($k, $n, $stat) = split; X+ last; X+ } elsif ($mode eq "load") { X+ next if !/^LOADPCT/; X+ ($k, $n, $stat) = split; X+ last; X+ } elsif ($mode eq "temp") { X+ next if !/^ITEMP/; X+ ($k, $n, $stat) = split; X+ last; X+ } elsif ($mode eq "outv") { X+ next if !/^OUTPUTV/; X+ ($k, $n, $stat) = split; X+ last; X+ } X+ X+} X+ X+$stamp = time; X+ X+#------------------------------------------------------------------ X+# print out nrg collector format output... X+ X+if ( ! $stamp || ! $stat ) { X+ #print "nrg-apcupsdstat: could not get stats from $server!\n"; X+ $stamp = time; X+ $details = "no stats from $server"; X+} else { X+ $details = "$stat $mode GAUGE"; X+} X+ X+$localtime = scalar localtime($stamp); X+print "$stamp $localtime\n"; X+print "INF uptime\n"; # FIXME X+print "$details\n"; X+ X+exit; X+ X+#================================================================== X+ X+sub usage { X+ print "usage: nrg-apcupsdstat [-d] [-p port] [-m mode] apc_server\n"; X+} X+ X+#------------------------------------------------------------------ X+ X+sub abend { X+ if ( $debug) {"nrg-sendmail: connection to $server:$port failed\n";} X+ $stamp = time; X+ $localtime = scalar localtime($stamp); X+ print "$stamp $localtime\n"; X+ print "INF uptime\n"; X+ print "connection to $server port $port failed\n"; X+ exit; X+} X--- Makefile.in.orig Fri Jul 23 21:42:58 2004 X+++ Makefile.in Fri Jul 23 21:43:11 2004 X@@ -19,7 +19,7 @@ X CONTRIB_DIR = ${prefix}/contrib X X BIN_FILES = \ X- dsreport mrtg2nrg nrg-apachestat nrg-autoconf \ X+ dsreport mrtg2nrg nrg-apachestat nrg-apcupsdstat nrg-autoconf \ X nrg-bindresponse nrg-bindstat nrg-bindstatd \ X nrg-cgikeeper nrg-discover-apache nrg-discover-bind \ X nrg-discover-errors nrg-discover-ifaces nrg-discover-netdev \ X--- configure.orig Fri Jul 23 21:44:13 2004 X+++ configure Fri Jul 23 21:38:18 2004 X@@ -2019,6 +2019,7 @@ X Makefile \ X collectors/nrg-apmstat \ X collectors/nrg-apachestat \ X+ collectors/nrg-apcupsdstat \ X collectors/nrg-bindresponse \ X collectors/nrg-bindstat \ X collectors/nrg-bindstatd \ X@@ -2189,6 +2190,7 @@ X Makefile \ X collectors/nrg-apmstat \ X collectors/nrg-apachestat \ X+ collectors/nrg-apcupsdstat \ X collectors/nrg-bindresponse \ X collectors/nrg-bindstat \ X collectors/nrg-bindstatd \ X@@ -2312,6 +2314,7 @@ X X for f in \ X collectors/nrg-apachestat \ X+ collectors/nrg-apcupsdstat \ X collectors/nrg-bindresponse \ X collectors/nrg-bindstat \ X collectors/nrg-bindstatd \ END-of-nrg/files/nrg-apcupsdstat.patch echo x - nrg/files/patch-examples sed 's/^X//' >nrg/files/patch-examples << 'END-of-nrg/files/patch-examples' X--- ./examples/Makefile.ops.in.orig Sun Jul 20 20:51:10 2003 X+++ ./examples/Makefile.ops.in Fri Mar 5 18:08:03 2004 X@@ -4,8 +4,8 @@ X # $Id: Makefile.ops.in,v 1.41 2003/07/20 15:16:04 rader Exp $ X # X X-WEB_PREFIX = /usr/local/web/html X-NRG_WEB_TITLE = "Somesite's NRG Home Page" X+WEB_PREFIX = /usr/local/www/data X+NRG_WEB_TITLE = "FreeBSD NRG Homepage" X MCONF_FILES = NRG.mconf Site.mconf X NRG_WEB_DIR = nrg X END-of-nrg/files/patch-examples echo x - nrg/files/patch-nrg-apachestat sed 's/^X//' >nrg/files/patch-nrg-apachestat << 'END-of-nrg/files/patch-nrg-apachestat' X--- ./collectors/nrg-apachestat.in.orig Sun Jul 20 20:51:09 2003 X+++ ./collectors/nrg-apachestat.in Fri Mar 5 18:08:03 2004 X@@ -11,7 +11,7 @@ X $mode = "requests"; X $server = "localhost"; X $port = "80"; X-$url = "server-status"; X+$url = "server-status?auto"; X $stamp = 0; X $stat = 0; X X@@ -88,15 +88,24 @@ X # parse the stats... X X while() { X+ if ( $_ =~ /Uptime: (\d+)/ ) { X+ $uptime = $1; X+ last; X+ } X if ( $_ =~ /Server uptime:/ ) { X if ( $_ =~ /(\d+) hour/ ) { $uptime += $1*60*60; } X if ( $_ =~ /(\d+) minute/ ) { $uptime += $1*60; } X if ( $_ =~ /(\d+) second/ ) { $uptime += $1; } X } X- if ( $mode eq 'requests' && $_ =~ /Total accesses: (\d+)/ ) { X+ if ( $mode eq 'requests' && $_ =~ /Total accesses: (\d+)/i ) { X $stat = $1; X &debug("$stat accesses\n"); X- last; X+ last if $url !~ /auto$/; X+ } X+ if ( $mode eq 'bytes' && $_ =~ /Total kBytes: (\d+)/ ) { X+ $stat = $1*1024; X+ &debug("$stat bytes\n"); X+ last if $url !~ /auto$/; X } X if ( $mode eq 'bytes' && $_ =~ /Total Traffic: (\d+) kB/ ) { X $stat = $1*1024; X@@ -105,6 +114,11 @@ X } X if ( $mode eq 'bytes' && $_ =~ /Total Traffic: (\d+)\.(\d) MB/ ) { X $stat = ($1*1024*1024) + (($2/10)*1024*1024); X+ &debug("$stat bytes\n"); X+ last; X+ } X+ if ( $mode eq 'bytes' && $_ =~ /Total Traffic: (\d+)\.(\d) GB/ ) { X+ $stat = ($1*1024*1024*1024) + (($2/10)*1024*1024*1024); X &debug("$stat bytes\n"); X last; X } END-of-nrg/files/patch-nrg-apachestat echo x - nrg/files/patch-nrg-bindstat sed 's/^X//' >nrg/files/patch-nrg-bindstat << 'END-of-nrg/files/patch-nrg-bindstat' X--- ./collectors/nrg-bindstat.in.orig Sun Jul 20 20:51:09 2003 X+++ ./collectors/nrg-bindstat.in Fri Mar 5 18:08:03 2004 X@@ -24,7 +24,7 @@ X $version = "4.9.6"; X $mode = "queries"; X $server = "localhost"; X-$port = "88888"; X+$port = "28888"; X $stamp = 0; X $stat = 0; X END-of-nrg/files/patch-nrg-bindstat echo x - nrg/files/patch-nrg-rrdkeeper sed 's/^X//' >nrg/files/patch-nrg-rrdkeeper << 'END-of-nrg/files/patch-nrg-rrdkeeper' X--- src/nrg-rrdkeeper.in.orig Fri Mar 5 18:04:41 2004 X+++ src/nrg-rrdkeeper.in Fri Mar 5 18:05:19 2004 X@@ -631,6 +631,12 @@ X X } X X+ $dir = $path; X+ $dir =~ s/[^\/]+.rrd//; X+ if (! -d $dir) { X+ system("mkdir -p $dir"); X+ } X+ X #print "RRDs::create @create_options \n"; X RRDs::create @create_options; X END-of-nrg/files/patch-nrg-rrdkeeper echo x - nrg/files/patch-nrg-sendmailstat sed 's/^X//' >nrg/files/patch-nrg-sendmailstat << 'END-of-nrg/files/patch-nrg-sendmailstat' X--- ./collectors/nrg-sendmailstat.in.orig Sun Jul 20 20:51:09 2003 X+++ ./collectors/nrg-sendmailstat.in Fri Mar 5 18:08:03 2004 X@@ -13,7 +13,7 @@ X X $mode = 'msgs'; X $server = 'localhost'; X-$port = '88889'; X+$port = '28889'; X $stamp = '0'; X $stat = '0'; X END-of-nrg/files/patch-nrg-sendmailstat echo x - nrg/files/run-nrg.sh sed 's/^X//' >nrg/files/run-nrg.sh << 'END-of-nrg/files/run-nrg.sh' X#!/bin/sh X XLOG=/var/log/run-nrg.log X X#renice 5 -p $$ >/dev/null 2>&1 X/usr/local/nrg/run-nrg >$LOG X#/usr/local/nrg/run-nrg.local >>$LOG END-of-nrg/files/run-nrg.sh echo x - nrg/Makefile sed 's/^X//' >nrg/Makefile << 'END-of-nrg/Makefile' X# New ports collection makefile for: nrg X# Date created: 18 January 2004 X# Whom: Michael Ranner X# X# $FreeBSD$ X# X XPORTNAME= nrg XPORTVERSION= 0.99.22 XCATEGORIES= net-mgmt sysutils XMASTER_SITES= ftp://nrg.hep.wisc.edu/pub/src/nrg/ \ X http://www.ranner.jawa.at/stuff/ X XMAINTAINER= mranner@inode.at XCOMMENT= "NRG does visualizing network and resource utilization data" X XBUILD_DEPENDS= ${SITE_PERL}/RRDp.pm:${PORTSDIR}/net/rrdtool \ X ${LOCALBASE}/bin/snmpget:${PORTSDIR}/net-mgmt/net-snmp4 XRUN_DEPENDS= ${SITE_PERL}/RRDp.pm:${PORTSDIR}/net/rrdtool \ X ${LOCALBASE}/bin/snmpget:${PORTSDIR}/net-mgmt/net-snmp4 \ X ${SITE_PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes X XNRG_WEB_PREFIX?= ${PREFIX}/www/data XNRG_WEB_DIR?= nrg XNRG_WEB_TITLE?= FreeBSD NRG Homepage X XSITE_PERL_ARCH= ${SITE_PERL}/${PERL_ARCH} X XPKGMESSAGE= ${WRKDIR}/pkg-message XUSE_PERL5= yes XUSE_REINPLACE= yes XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --prefix=${LOCALBASE}/nrg XALL_TARGET= pingd X Xpre-fetch: X @${ECHO} "" X @${ECHO} "You may use the following build options:" X @${ECHO} "" X @${ECHO} " -DWITH_APCNISCLIENT to build collector for nrg-apcupsdstat" X @${ECHO} "" X X.if defined(WITH_APCNISCLIENT) XEXTRA_PATCHES+= ${PATCHDIR}/nrg-apcupsdstat.patch XPLIST_FILES+= nrg/bin/nrg-apcupsdstat X.endif X Xpost-patch: X @${REINPLACE_CMD} -e "s,= @WEB_PREFIX@,= ${NRG_WEB_PREFIX},g" \ X -e "s,= @NRG_WEB_DIR@,= ${NRG_WEB_DIR},g" \ X -e "s,= @NRG_WEB_TITLE@,= \"${NRG_WEB_TITLE}\",g" \ X ${WRKSRC}/examples/Makefile.ops.in X @${REINPLACE_CMD} -e "s,,,g" \ X ${WRKSRC}/roverpingd/send.c ${WRKSRC}/roverpingd/pingd.c \ X ${WRKSRC}/roverpingd/read_list.c X @${REINPLACE_CMD} -e "s,,,g" \ X -e "s, MAXINT, INT_MAX,g" \ X ${WRKSRC}/roverpingd/write_stats.c X Xpre-install: X @${SED} 's|%%PREFIX%%|${PREFIX}|g' <${.CURDIR}/pkg-message >${PKGMESSAGE} X Xpost-install: X @${INSTALL_SCRIPT} ${FILESDIR}/run-nrg.sh ${PREFIX}/nrg/ X @${CAT} ${PKGMESSAGE} X X.include END-of-nrg/Makefile echo x - nrg/distinfo sed 's/^X//' >nrg/distinfo << 'END-of-nrg/distinfo' XMD5 (nrg-0.99.22.tar.gz) = 439242d8567aab1a375873128a34fc5c XSIZE (nrg-0.99.22.tar.gz) = 2889103 END-of-nrg/distinfo echo x - nrg/pkg-descr sed 's/^X//' >nrg/pkg-descr << 'END-of-nrg/pkg-descr' XNRG is a system for maintaining and visualizing network data and Xother resource utilization data. It automates the maintenance of XRRDtool databases and graph web pages (that look like MRTG web Xpages.) NRG is primarily configured using very terse meta- Xconfiguration strings. These strings tell NRG to autodiscover Xnetwork devices and verify that their current NRG configuration Xis correct. X XWWW: http://nrg.hep.wisc.edu/ END-of-nrg/pkg-descr echo x - nrg/pkg-message sed 's/^X//' >nrg/pkg-message << 'END-of-nrg/pkg-message' X X************************************************************ X XFor configuration and upgrade, please read file located at: X%%PREFIX%%/nrg/html/index.html X XAfer configuration add the next line to crontab: X*/5 * * * * %%PREFIX%%/nrg/run-nrg.sh X X************************************************************ X END-of-nrg/pkg-message echo x - nrg/pkg-plist sed 's/^X//' >nrg/pkg-plist << 'END-of-nrg/pkg-plist' Xnrg/bin/dsreport Xnrg/bin/mrtg2nrg Xnrg/bin/nrg-apachestat Xnrg/bin/nrg-autoconf Xnrg/bin/nrg-bindresponse Xnrg/bin/nrg-bindstat Xnrg/bin/nrg-bindstatd Xnrg/bin/nrg-cgikeeper Xnrg/bin/nrg-discover-apache Xnrg/bin/nrg-discover-bind Xnrg/bin/nrg-discover-errors Xnrg/bin/nrg-discover-ifaces Xnrg/bin/nrg-discover-netdev Xnrg/bin/nrg-discover-pingd Xnrg/bin/nrg-discover-pvcs Xnrg/bin/nrg-discover-sendmail Xnrg/bin/nrg-discover-snmpd Xnrg/bin/rrdmerge Xnrg/bin/nrg-discover-tables Xnrg/bin/nrg-discover-tcp Xnrg/bin/nrg-find-confs Xnrg/bin/nrg-indexmaker Xnrg/bin/nrg-rrdkeeper Xnrg/bin/nrg-pingdstat Xnrg/bin/nrg-runmaker Xnrg/bin/nrg-sendmailstat Xnrg/bin/nrg-sendmailstatd Xnrg/bin/nrg-snmpwalk Xnrg/bin/nrg-spiketrimmer Xnrg/bin/nrg-tablemaker Xnrg/bin/nrg-tcpresponse Xnrg/bin/rrdtrim Xnrg/etc/nrg-oid-names Xnrg/etc/run-star-head.pl Xnrg/etc/run-star-tail.pl Xnrg/templates/database-mrtg.rrd.tm Xnrg/templates/discover-bind.tm Xnrg/templates/discover-apache.tm Xnrg/templates/discover-errors.tm Xnrg/templates/discover-ifaces.tm Xnrg/templates/discover-netdev.tm Xnrg/templates/discover-pingd.tm Xnrg/templates/discover-pvcs.tm Xnrg/templates/discover-sendmail.tm Xnrg/templates/discover-snmpd.tm Xnrg/templates/discover-tables.tm Xnrg/templates/discover-tcp.tm Xnrg/templates/graph-current.cgi.tm Xnrg/templates/graph-longterm.cgi.tm Xnrg/templates/graph-mrtg.cgi.tm Xnrg/templates/table-df.cgi.tm Xnrg/templates/table-errors.cgi.tm Xnrg/templates/table-ifaces.cgi.tm Xnrg/templates/table-load.cgi.tm Xnrg/templates/table-mem.cgi.tm Xnrg/templates/table-ping-latency.cgi.tm Xnrg/templates/table-ping-loss.cgi.tm Xnrg/templates/table-swap.cgi.tm Xnrg/templates/table-tcp.cgi.tm Xnrg/examples/Default.conf Xnrg/examples/NRG.mconf Xnrg/examples/Site.mconf Xnrg/examples/apache.mconf Xnrg/examples/bind.mconf Xnrg/examples/cisco.mconf Xnrg/examples/ftp.mconf Xnrg/examples/http.mconf Xnrg/examples/iface-errors.mconf Xnrg/examples/ifaces.mconf Xnrg/examples/imap.mconf Xnrg/examples/ping.mconf Xnrg/examples/pop.mconf Xnrg/examples/procurve.mconf Xnrg/examples/sendmail.mconf Xnrg/examples/smtp.mconf Xnrg/examples/ssh.mconf Xnrg/examples/trunk.mconf Xnrg/examples/unix.mconf Xnrg/html/apachestat.html Xnrg/html/bindstat.html Xnrg/html/changes Xnrg/html/collectors.html Xnrg/html/conf-string-list.html Xnrg/html/conf-strings.html Xnrg/html/configuration.html Xnrg/html/contrib.html Xnrg/html/index.html Xnrg/html/install.html Xnrg/html/log2rrd.html Xnrg/html/nrg+rrd.gif Xnrg/html/metaconf-strings.html Xnrg/html/metaconf.html Xnrg/html/mrtg-vs-nrg.html Xnrg/html/mrtg2nrg.html Xnrg/html/operation.html Xnrg/html/readme.html Xnrg/html/templates.html Xnrg/html/sample-conf.html Xnrg/html/sendmailstat.html Xnrg/html/upgrade.html Xnrg/html/whats-new Xnrg/Makefile Xnrg/Default.conf Xnrg/NRG.mconf Xnrg/Site.mconf Xnrg/.VERSION Xnrg/run-nrg.sh X@dirrm nrg/templates X@dirrm nrg/html X@dirrm nrg/examples X@dirrm nrg/etc X@dirrm nrg/bin X@dirrm nrg/archive X@dirrm nrg END-of-nrg/pkg-plist exit --- nrg-0.99.22.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 20:20: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 8B87016A4CE; Fri, 23 Jul 2004 20:20:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EEC743D49; Fri, 23 Jul 2004 20:20:43 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6NKKhXA057770; Fri, 23 Jul 2004 20:20:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NKKhIZ057766; Fri, 23 Jul 2004 20:20:43 GMT (envelope-from linimon) Date: Fri, 23 Jul 2004 20:20:43 GMT From: Mark Linimon Message-Id: <200407232020.i6NKKhIZ057766@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-www@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69500: phpMyAdmin-2.5.7.1 doesn't work with php4-4.3.8_1 apache-2.0.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 20:20:43 -0000 Old Synopsis: phpMyAdmin-2.5.7.1 doesn´t work with php4-4.3.8_1 apache-2.0.50 New Synopsis: phpMyAdmin-2.5.7.1 doesn't work with php4-4.3.8_1 apache-2.0.50 Responsible-Changed-From-To: freebsd-www->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 23 20:18:44 GMT 2004 Responsible-Changed-Why: This is a ports bug, not a www bug. (Those are only used for problems with the FreeBSD web pages themselves.) http://www.freebsd.org/cgi/query-pr.cgi?pr=69500 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 20:25:47 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 6E46816A4CF for ; Fri, 23 Jul 2004 20:25:47 +0000 (GMT) Received: from web11707.mail.yahoo.com (web11707.mail.yahoo.com [216.136.172.73]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C18A43D41 for ; Fri, 23 Jul 2004 20:25:47 +0000 (GMT) (envelope-from ginipginob@yahoo.com) Message-ID: <20040723202547.36729.qmail@web11707.mail.yahoo.com> Received: from [68.65.227.161] by web11707.mail.yahoo.com via HTTP; Fri, 23 Jul 2004 13:25:47 PDT Date: Fri, 23 Jul 2004 13:25:47 -0700 (PDT) From: Eric Osterweil To: freebsd-ports@freebsd.org, freebsd-ports-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: isc-dhcp3-server and OS 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: Fri, 23 Jul 2004 20:25:47 -0000 Hey everyone, I've been struggling with something that I think is a compatibility issue for some time. I have been running the isc-dhcp3-server for some time now. Recently, one of the macintoshes on my network upgraded from 10.3.3 to 10.3.4 and had their airport extreme software move up as well. Basically, I've re-OSed the mac, and I can still only get a lease from the dhcp server once in a LONG while. What's worse is, I am able to connect to other DHCP servers (like those built into access points). Does anyone have any idea why this is happening? If I do a tcpdump on the mac, I can see it receive information, but the lease doesn't seem to register with the networking software. Is this a known issue w/ OS X? Thanks in advance... Please reply to me directly as I am not on this mailing list, Eric Osterweil __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 21:30: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 579AF16A4CE; Fri, 23 Jul 2004 21:30:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 378AB43D41; Fri, 23 Jul 2004 21:30:10 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6NLUAjY064630; Fri, 23 Jul 2004 21:30:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NLU92r064626; Fri, 23 Jul 2004 21:30:09 GMT (envelope-from linimon) Date: Fri, 23 Jul 2004 21:30:09 GMT From: Mark Linimon Message-Id: <200407232130.i6NLU92r064626@freefall.freebsd.org> To: martin@waedt.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69500: phpMyAdmin-2.5.7.1 doesn't work with php4-4.3.8_1 apache-2.0.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 21:30:10 -0000 Synopsis: phpMyAdmin-2.5.7.1 doesn't work with php4-4.3.8_1 apache-2.0.50 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Jul 23 21:29:37 GMT 2004 State-Changed-Why: The maintainer has already proposed a fix in ports/69336. http://www.freebsd.org/cgi/query-pr.cgi?pr=69500 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 22:00: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 EE4BF16A4E0 for ; Fri, 23 Jul 2004 22:00:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3F5D43D2D for ; Fri, 23 Jul 2004 22:00:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NM0SKI066394 for ; Fri, 23 Jul 2004 22:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NM0SBp066392; Fri, 23 Jul 2004 22:00:28 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 22:00:28 GMT Resent-Message-Id: <200407232200.i6NM0SBp066392@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, HAYASHI Yasushi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14BEA16A4CE for ; Fri, 23 Jul 2004 22:00:13 +0000 (GMT) Received: from yasi.minidns.net (218-228-205-227.eonet.ne.jp [218.228.205.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 519D543D41 for ; Fri, 23 Jul 2004 22:00:12 +0000 (GMT) (envelope-from yasi@yasi.minidns.net) Received: from yasi.minidns.net (localhost.yasi.to [127.0.0.1]) by yasi.minidns.net (8.12.10/8.12.10) with ESMTP id i6NM0AAk095426; Sat, 24 Jul 2004 07:00:11 +0900 (JST) (envelope-from yasi@yasi.minidns.net) Received: (from root@localhost) by yasi.minidns.net (8.12.10/8.12.10/Submit) id i6NM0AS7095425; Sat, 24 Jul 2004 07:00:10 +0900 (JST) (envelope-from yasi) Message-Id: <200407232200.i6NM0AS7095425@yasi.minidns.net> Date: Sat, 24 Jul 2004 07:00:10 +0900 (JST) From: HAYASHI Yasushi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: yasi@yasi.to Subject: ports/69505: [maintainer update] www/zope-epoz update to 0.8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: HAYASHI Yasushi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 22:00:29 -0000 >Number: 69505 >Category: ports >Synopsis: [maintainer update] www/zope-epoz 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: Fri Jul 23 22:00:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: HAYASHI Yasushi >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: personal >Environment: System: FreeBSD yasi.minidns.net 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Thu Jul 1 09:03:13 JST 2004 yasi@yasi.minidns.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Epoz, a cross-browser-wysiwyg editor for Zope was updated to 0.8.2. >How-To-Repeat: >Fix: diff -urN www/zope-epoz.old/Makefile www/zope-epoz/Makefile --- www/zope-epoz.old/Makefile Sat Jul 24 06:40:55 2004 +++ www/zope-epoz/Makefile Sat Jul 24 06:42:02 2004 @@ -6,7 +6,7 @@ # PORTNAME= epoz -PORTVERSION= 0.8.1 +PORTVERSION= 0.8.2 CATEGORIES= www zope MASTER_SITES= http://mjablonski.zope.de/Epoz/releases/ PKGNAMEPREFIX= zope- diff -urN www/zope-epoz.old/distinfo www/zope-epoz/distinfo --- www/zope-epoz.old/distinfo Sat Jul 24 06:40:55 2004 +++ www/zope-epoz/distinfo Sat Jul 24 06:42:30 2004 @@ -1,2 +1,2 @@ -MD5 (zope/Epoz-0.8.1.tar.gz) = 095fc9bdac90b0451170b17b78e4206c -SIZE (zope/Epoz-0.8.1.tar.gz) = 45001 +MD5 (zope/Epoz-0.8.2.tar.gz) = 230d63393b1bdef89c49ab8a7b3fc8d8 +SIZE (zope/Epoz-0.8.2.tar.gz) = 43303 diff -urN www/zope-epoz.old/files/patch-EpozPostTidy.py www/zope-epoz/files/patch-EpozPostTidy.py --- www/zope-epoz.old/files/patch-EpozPostTidy.py Sat Jul 24 06:40:55 2004 +++ www/zope-epoz/files/patch-EpozPostTidy.py Thu Jan 1 09:00:00 1970 @@ -1,20 +0,0 @@ ---- Extensions/EpozPostTidy.py.orig Mon May 10 18:49:57 2004 -+++ Extensions/EpozPostTidy.py Wed May 26 23:54:41 2004 -@@ -25,6 +25,8 @@ - # Internal Link? - if tag=="a" and key=="href": - value = self.getRelativeUrl(self.pageurl, value) -+ if tag=="img" and key=="src": -+ value = self.getRelativeUrl(self.pageurl, value) - attributes += ' %s="%s"' % (key,value) - self.res += "<%s%s>" % (tag, attributes) - -@@ -44,7 +46,7 @@ - self.res += "<%s%s />" % (tag, attributes) - - def handle_data(self, data): -- self.res += data.strip() -+ self.res += data - - def handle_charref(self, data): - self.res += "&%s;" % data >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 22: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 D55B216A4CF for ; Fri, 23 Jul 2004 22:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7BF343D54 for ; Fri, 23 Jul 2004 22:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NMANsr070435 for ; Fri, 23 Jul 2004 22:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NMANxG070434; Fri, 23 Jul 2004 22:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 22:10:23 GMT Resent-Message-Id: <200407232210.i6NMANxG070434@freefall.freebsd.org> 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 Waedt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFC2816A4CF for ; Fri, 23 Jul 2004 22:05:29 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id E168243D55 for ; Fri, 23 Jul 2004 22:05:29 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6NM5Ti5022454 for ; Fri, 23 Jul 2004 22:05:29 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6NM5Tn1022453; Fri, 23 Jul 2004 22:05:29 GMT (envelope-from nobody) Message-Id: <200407232205.i6NM5Tn1022453@www.freebsd.org> Date: Fri, 23 Jul 2004 22:05:29 GMT From: Martin Waedt To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: =?iso-8859-1?q?ports/69506=3A_phpMyAdmin-2=2E5=2E7=2E1_doesn=B4?= =?iso-8859-1?q?t_work_with_php4-4=2E3=2E8=5F1__apache-2=2E0=2E50?= X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 23 Jul 2004 22:10:26 -0000 >Number: 69506 >Category: ports >Synopsis: phpMyAdmin-2.5.7.1 doesn´t work with php4-4.3.8_1 apache-2.0.50 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 22:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Martin Waedt >Release: 4.9-STABLE >Organization: Waedt GmbH >Environment: FreeBSD corinthian.office.niebauer 4.9-STABLE FreeBSD 4.9-STABLE #5: Sat Mar 27 12:54:04 CET 2004 root@corinthian.office.niebauer.com:/usr/obj/usr/src/sys/CORINTHIAN i386 >Description: After upgrading php4 to version 4-4.3.8_1 phpmyadmin doesn't work anymore Following error occures: Fatal error: Call to undefined function: preg_match() in /usr/local/www/phpMyAdmin/libraries/defines.lib.php on line 25 I'm not a php pro but I think it has something to do with the Version string. // php version if (!defined('PMA_PHP_INT_VERSION')) { if (!preg_match('@([0-9]{1,2}).([0-9]{1,2}).([0-9]{1,2})@', phpversion(), $match)) { $result = preg_match('@([0-9]{1,2}).([0-9]{1,2})@', phpversion(), $match); It looks like that phpmyadmin is not able to get the version of php. >How-To-Repeat: Upgrade to php 4-4.3.8_1 It also occures with 5.2.1-RELEASE-p9. >Fix: I'm not a php pro but I think it has something to do with the Version string. line 25 of phpMyAdmin/libraries/defines.lib.php // php version if (!defined('PMA_PHP_INT_VERSION')) { if (!preg_match('@([0-9]{1,2}).([0-9]{1,2}).([0-9]{1,2})@', phpversion(), $match)) { $result = preg_match('@([0-9]{1,2}).([0-9]{1,2})@', phpversion(), $match); It looks like that phpmyadmin is not able to get the version of php. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 22: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 0A8DD16A4CE for ; Fri, 23 Jul 2004 22:10:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D577F43D58 for ; Fri, 23 Jul 2004 22:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NMANwi070448 for ; Fri, 23 Jul 2004 22:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NMAN34070447; Fri, 23 Jul 2004 22:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 22:10:23 GMT Resent-Message-Id: <200407232210.i6NMAN34070447@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Egorin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AA0616A4EE for ; Fri, 23 Jul 2004 22:08:53 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id A838143D31 for ; Fri, 23 Jul 2004 22:08:52 +0000 (GMT) (envelope-from vladimir@math.uic.edu) Received: from cat.math.uic.edu (c-67-162-104-112.client.comcast.net[67.162.104.112]) by comcast.net (rwcrmhc11) with SMTP id <200407232208510130028s44e>; Fri, 23 Jul 2004 22:08:52 +0000 Received: (qmail 2240 invoked by uid 31415); 23 Jul 2004 22:08:51 -0000 Message-Id: <20040723220851.2239.qmail@cat.math.uic.edu> Date: 23 Jul 2004 22:08:51 -0000 From: Vladimir Egorin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69507: Problem with fvwm-2.5.10 and X.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vladimir Egorin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 22:10:26 -0000 >Number: 69507 >Category: ports >Synopsis: Problem with fvwm-2.5.10 and X.org >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 23 22:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Vladimir Egorin >Release: FreeBSD 5.2-CURRENT i386 >Organization: University of Illinois at Chicago >Environment: System: FreeBSD kot.podval.edu 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Fri Jul 23 01:34:56 CDT 2004 vladimir@kot.podval.edu:/usr/obj/usr/src/sys/CAT i386 >Description: fvwm-2.5.10 compiled against X.org doesn't properly refresh the screen when moving windows. Windows that have been moved contain a "footprint" of windows that have been under them. For example, see a screen dump of an xterm window at http://www.math.uic.edu/~vladimir/xterm.jpg X config is at http://www.math.uic.edu/~vladimir/XF86Config; and .fvwm2rc is at http://www.math.uic.edu/~vladimir/fvwm2rc There is no problem with fvwm2 port (fvwm version 2.4.x), or other window managers (I've tried kde and good old twm). I've reported the problem to fvwm mailing list (fvwm@fvwm.org), but so far there has been no responces. fvwm2-devel plus XFree86-4.3 work ok. >How-To-Repeat: Compile fvmw2-devel with x.org >Fix: I wish I knew :-) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 23 23: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 E382B16A4CE for ; Fri, 23 Jul 2004 23:10:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8A7E43D53 for ; Fri, 23 Jul 2004 23:10:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6NNANx1077264 for ; Fri, 23 Jul 2004 23:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6NNAN3F077263; Fri, 23 Jul 2004 23:10:23 GMT (envelope-from gnats) Resent-Date: Fri, 23 Jul 2004 23:10:23 GMT Resent-Message-Id: <200407232310.i6NNAN3F077263@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Bruce A. Mah" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C769F16A4CE; Fri, 23 Jul 2004 23:01:47 +0000 (GMT) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id A788643D1D; Fri, 23 Jul 2004 23:01:47 +0000 (GMT) (envelope-from bmah@tomcat.kitchenlab.org) Received: from tomcat.kitchenlab.org (adsl-64-142-31-107.sonic.net [64.142.31.107]) by b.mail.sonic.net (8.12.11/8.12.11) with ESMTP id i6NN1lZY008315 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 23 Jul 2004 16:01:47 -0700 Received: from tomcat.kitchenlab.org (localhost.kitchenlab.org [127.0.0.1]) i6NN1k8N086929; Fri, 23 Jul 2004 16:01:46 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.org) Received: (from bmah@localhost) by tomcat.kitchenlab.org (8.12.11/8.12.11/Submit) id i6NN1kVe086928; Fri, 23 Jul 2004 16:01:46 -0700 (PDT) (envelope-from bmah) Message-Id: <200407232301.i6NN1kVe086928@tomcat.kitchenlab.org> Date: Fri, 23 Jul 2004 16:01:46 -0700 (PDT) From: "Bruce A. Mah" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: lev@FreeBSD.org Subject: ports/69508: [PATCH] Update devel/subversion to 1.0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Bruce A. Mah" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 23:10:25 -0000 >Number: 69508 >Category: ports >Synopsis: [PATCH] Update devel/subversion to 1.0.6 >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: Fri Jul 23 23:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Bruce A. Mah >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD tomcat.kitchenlab.org 5.2-CURRENT FreeBSD 5.2-CURRENT #14: Wed Jun 30 06:48:19 PDT 2004 root@tomcat.kitchenlab.org:/usr/obj/usr/src/sys/NIMITZ5 i386 >Description: subversion 1.0.5 has a (fairly low risk) security issue, already documented in the VuXML database. The attached patch updates the devel/subversion port to 1.0.6. I can commit this if lev@ approves. >How-To-Repeat: >Fix: --- subversion.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/subversion/Makefile,v retrieving revision 1.65 diff -u -r1.65 Makefile --- Makefile 17 Jun 2004 06:37:54 -0000 1.65 +++ Makefile 23 Jul 2004 22:57:27 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/devel/subversion/Makefile,v 1.65 2004/06/17 06:37:54 lev Exp $ PORTNAME= subversion -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 CATEGORIES= devel MASTER_SITES= http://subversion.tigris.org/tarballs/ Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/subversion/distinfo,v retrieving revision 1.30 diff -u -r1.30 distinfo --- distinfo 17 Jun 2004 06:37:54 -0000 1.30 +++ distinfo 23 Jul 2004 22:57:27 -0000 @@ -1,2 +1,2 @@ -MD5 (subversion-1.0.5.tar.bz2) = 8e8288fee061f5278ec201fc5e5e141c -SIZE (subversion-1.0.5.tar.bz2) = 6079903 +MD5 (subversion-1.0.6.tar.bz2) = bb05fe041fef7491b3555904d97f5e1c +SIZE (subversion-1.0.6.tar.bz2) = 6022074 --- subversion.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 00: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 52E8D16A4CE for ; Sat, 24 Jul 2004 00:10:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DBE743D45 for ; Sat, 24 Jul 2004 00:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O0APbN084910 for ; Sat, 24 Jul 2004 00:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O0AP63084909; Sat, 24 Jul 2004 00:10:25 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 00:10:25 GMT Message-Id: <200407240010.i6O0AP63084909@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Palle Girgensohn Subject: Re: ports/67839: www/mod_jk2-apache2 2.0.2: uri /*.jsp matches all subdirs 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: Sat, 24 Jul 2004 00:10:25 -0000 The following reply was made to PR ports/67839; it has been noted by GNATS. From: Palle Girgensohn To: Volker Stolz , freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/67839: www/mod_jk2-apache2 2.0.2: uri /*.jsp matches all subdirs Date: Sat, 24 Jul 2004 02:08:00 +0200 --On fredag, juli 23, 2004 15.51.43 +0200 Volker Stolz wrote: > Can you please provide a patch or what the entry should look like? > > Note to the maintainer: > The do-install-target of www/mod_jk2 looks fishy to me: Shouldn't this > also be executed when installing the package? Well, yeah, but I think it is done. See the @exec tag...? $ cat pkg-plist libexec/apache%%APACHE2%%/mod_jk2.so @exec %D/sbin/apxs -e -A -n jk2 %f @unexec %D/sbin/apxs -e -A -n jk2 %f From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 00:20: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 6BE8716A4CE for ; Sat, 24 Jul 2004 00:20:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5421C43D55 for ; Sat, 24 Jul 2004 00:20:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O0KGBQ085161 for ; Sat, 24 Jul 2004 00:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O0KGvJ085160; Sat, 24 Jul 2004 00:20:16 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 00:20:16 GMT Resent-Message-Id: <200407240020.i6O0KGvJ085160@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Florent Thoumie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBEA316A4CE for ; Sat, 24 Jul 2004 00:13:05 +0000 (GMT) Received: from gw.xbsd.org (xbsd.org [81.56.254.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42AF643D3F for ; Sat, 24 Jul 2004 00:13:02 +0000 (GMT) (envelope-from flz@xbsd.org) Received: by gw.xbsd.org (Postfix, from userid 201) id 41FF1E00; Sat, 24 Jul 2004 02:13:01 +0200 (CEST) Message-Id: <20040724001301.41FF1E00@gw.xbsd.org> Date: Sat, 24 Jul 2004 02:13:01 +0200 (CEST) From: Florent Thoumie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69509: New port: emulators/raine - Arcade Emulator for M68000, M68020 and Z80 based hardware X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Florent Thoumie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 00:20:17 -0000 >Number: 69509 >Category: ports >Synopsis: New port: emulators/raine - Arcade Emulator for M68000, M68020 and Z80 based hardware >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 Jul 24 00:20:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Florent Thoumie >Release: FreeBSD 4.9-RC i386 >Organization: Xbsd.org >Environment: System: FreeBSD gw 4.9-RC FreeBSD 4.9-RC #4: Sun Oct 5 14:25:09 CEST 2003 rf@gw:/usr/src/sys/compile/GW i386 >Description: Arcade Emulator for M68000, M68020 and Z80 based hardware. WWW: http://www.rainemu.com/ Thanks to Radim Kolar who did the initial work. >How-To-Repeat: N/A >Fix: --- raine-0.40.4.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: # # raine # raine/Makefile # raine/files # raine/files/patch-makefile # raine/distinfo # raine/pkg-descr # raine/pkg-plist # echo c - raine mkdir -p raine > /dev/null 2>&1 echo x - raine/Makefile sed 's/^X//' >raine/Makefile << 'END-of-raine/Makefile' X# New ports collection makefile for: raine X# Date created: Jul 22 2004 X# Whom: Florent Thoumie X# X# $FreeBSD$ X# X XPORTNAME= raine XPORTVERSION= 0.40.4 XCATEGORIES= emulators games XMASTER_SITES= http://www.rainemu.com/html/archive/ XDISTNAME= ${PORTNAME}s-${PORTVERSION} X XMAINTAINER= flz@xbsd.org XCOMMENT= Arcade Emulator for M68000, M68020 and Z80 based hardware X XBUILD_DEPENDS= ${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm XLIB_DEPENDS= alleg.41:${PORTSDIR}/devel/allegro X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} XUSE_BZIP2= yes XUSE_GMAKE= yes XUSE_REINPLACE= yes XUSE_X_PREFIX= yes XUSE_SDL= sdl XMAKEFILE= makefile XMAKE_ENV= PREFIX=${PREFIX} X XONLY_FOR_ARCHS= i386 X Xpost-patch: X ${REINPLACE_CMD} -e "s, [$$]_mcpu,,g" ${WRKSRC}/detect-cpu X ${REINPLACE_CMD} -e "s,sdl-config,${SDL_CONFIG},g" ${WRKSRC}/makefile X X.include END-of-raine/Makefile echo c - raine/files mkdir -p raine/files > /dev/null 2>&1 echo x - raine/files/patch-makefile sed 's/^X//' >raine/files/patch-makefile << 'END-of-raine/files/patch-makefile' X--- makefile Sat Jun 12 16:02:17 2004 X+++ makefile.new Sat Jul 24 01:48:21 2004 X@@ -30,7 +30,7 @@ X # Try to detect mingw... If you want to build the dos and the mingw X # version on the same system you should unset djdir before making X # the mingw version. X-ifeq ($(shell uname),Linux) X+ifeq ($(shell uname),FreeBSD) X OSTYPE=linux-gnu X endif X X@@ -182,11 +182,11 @@ X X # SDL = 1 X X- prefix = $(DESTDIR) X- bindir = $(prefix)/usr/games X- sharedir = $(prefix)/usr/share X- mandir = $(sharedir)/man/man6 X- rainedata = $(sharedir)/games/raine X+ prefix = $(PREFIX) X+ bindir = $(prefix)/bin X+ sharedir = $(prefix)/share X+ mandir = $(prefix)/man/man6 X+ rainedata = $(sharedir)/raine X langdir = $(rainedata)/languages X romdir = $(rainedata)/roms X X@@ -205,6 +205,7 @@ X AFLAGS = -f elf X X INCDIR += ` allegro-config --cflags` X+ INCDIR += -I/usr/X11R6/include X X DEFINE = -D__RAINE__ \ X -DRAINE_UNIX \ X@@ -224,8 +225,8 @@ X endif # if OSTYPE == cygwin X X ifdef SDL X-LIBS += `sdl-config --libs` X-LIBS_STATIC += `sdl-config --static-libs` X+LIBS += `/usr/local/bin/sdl11-config --libs` X+LIBS_STATIC += `/usr/local/bin/sdl11-config --static-libs` X endif X X ifndef ASM X@@ -364,8 +365,8 @@ X CFLAGS += -DNO020 -DRAINECPS X endif X ifdef SDL X-CFLAGS += -DSDL `sdl-config --cflags` X-CFLAGS_MCU += -DSDL `sdl-config --cflags` X+CFLAGS += -DSDL `/usr/local/bin/sdl11-config --cflags` X+CFLAGS_MCU += -DSDL `/usr/local/bin/sdl11-config --cflags` X else X OBJDIRS += $(OBJDIR)/alleg \ X $(OBJDIR)/gui X@@ -774,8 +775,8 @@ X else X # avoid allegro when we can, sdl is much more reliable for sound X OBJS += $(OBJDIR)/sdl/sasound.o X-CFLAGS += `sdl-config --cflags` X-LIBS += `sdl-config --libs` X+CFLAGS += `/usr/local/bin/sdl11-config --cflags` X+LIBS += `/usr/local/bin/sdl11-config --libs` X endif X endif X END-of-raine/files/patch-makefile echo x - raine/distinfo sed 's/^X//' >raine/distinfo << 'END-of-raine/distinfo' XMD5 (raines-0.40.4.tar.bz2) = d496fc5a04b442915a6a020ab3ac640b XSIZE (raines-0.40.4.tar.bz2) = 1551606 END-of-raine/distinfo echo x - raine/pkg-descr sed 's/^X//' >raine/pkg-descr << 'END-of-raine/pkg-descr' XArcade Emulator for M68000, M68020 and Z80 based hardware. X XWWW: http://www.rainemu.com/ X X- Florent Thoumie Xflz@xbsd.org END-of-raine/pkg-descr echo x - raine/pkg-plist sed 's/^X//' >raine/pkg-plist << 'END-of-raine/pkg-plist' Xbin/raine X%%DATADIR%%/cheats.cfg X%%DATADIR%%/languages/Brasil.cfg X%%DATADIR%%/languages/CZECH.CFG X%%DATADIR%%/languages/Catala.cfg X%%DATADIR%%/languages/Dansk.cfg X%%DATADIR%%/languages/Dutch.cfg X%%DATADIR%%/languages/English.cfg X%%DATADIR%%/languages/Español.cfg X%%DATADIR%%/languages/Euskera.cfg X%%DATADIR%%/languages/Finnish.cfg X%%DATADIR%%/languages/French.cfg X%%DATADIR%%/languages/French2.cfg X%%DATADIR%%/languages/German.cfg X%%DATADIR%%/languages/German2.cfg X%%DATADIR%%/languages/Italian.cfg X%%DATADIR%%/languages/Japanese.cfg X%%DATADIR%%/languages/POLISH.CFG X%%DATADIR%%/languages/Portugal.cfg X%%DATADIR%%/languages/Spanish.cfg X%%DATADIR%%/languages/Svenska.cfg X%%DATADIR%%/languages/Template.cfg X%%DATADIR%%/languages/Turkish.cfg X%%DATADIR%%/languages/galego.cfg X%%DATADIR%%/raine.dat X@dirrm %%DATADIR%%/roms X@dirrm %%DATADIR%%/languages X@dirrm %%DATADIR%% END-of-raine/pkg-plist exit --- raine-0.40.4.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 00: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 229E816A4CE for ; Sat, 24 Jul 2004 00:40:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02DFA43D1F for ; Sat, 24 Jul 2004 00:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O0eKib086606 for ; Sat, 24 Jul 2004 00:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O0eKuP086605; Sat, 24 Jul 2004 00:40:20 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 00:40:20 GMT Resent-Message-Id: <200407240040.i6O0eKuP086605@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andreas Kohn Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8843416A4CE for ; Sat, 24 Jul 2004 00:30:27 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F6EF43D39 for ; Sat, 24 Jul 2004 00:30:27 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6O0URYR041947 for ; Sat, 24 Jul 2004 00:30:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6O0URnu041945; Sat, 24 Jul 2004 00:30:27 GMT (envelope-from nobody) Message-Id: <200407240030.i6O0URnu041945@www.freebsd.org> Date: Sat, 24 Jul 2004 00:30:27 GMT From: Andreas Kohn To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69510: Update net/skype to 0.90.0.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: Sat, 24 Jul 2004 00:40:21 -0000 >Number: 69510 >Category: ports >Synopsis: Update net/skype to 0.90.0.14 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 00:40:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Andreas Kohn >Release: FreeBSD 5.2-CURRENT #89: Wed Jul 21 02:43:17 CEST 2004 >Organization: >Environment: >Description: The net/skype port is currently at version 0.90.0.4, the officially released version is 0.90.0.14 >How-To-Repeat: Install the port. >Fix: diff -ruN skype.orig/Makefile skype/Makefile --- skype.orig/Makefile Sat Jul 24 02:26:04 2004 +++ skype/Makefile Fri Jul 23 23:01:29 2004 @@ -2,14 +2,14 @@ # Date created: Jun 21. 2004 # Whom: netchild@FreeBSD.org # -# $FreeBSD: /repoman/r/pcvs/ports/net/skype/Makefile,v 1.2 2004/06/23 17:4 netchild Exp $ +# $FreeBSD: ports/net/skype/Makefile,v 1.2 2004/06/23 17:49:54 netchild Ex # PORTNAME= skype -PORTVERSION= 0.90.0.4 +PORTVERSION= 0.90.0.14 CATEGORIES= net MASTER_SITES= http://download.skype.com/linux/ -DISTNAME= skype_ver-0_90_0_4-staticQT +DISTNAME= skype_ver-0_90_0_14-staticQT MAINTAINER= netchild@FreeBSD.org COMMENT= P2P VoIP software diff -ruN skype.orig/distinfo skype/distinfo --- skype.orig/distinfo Sat Jul 24 02:26:04 2004 +++ skype/distinfo Fri Jul 23 23:02:23 2004 @@ -1,2 +1,2 @@ -MD5 (skype_ver-0_90_0_4-staticQT.tar.bz2) = 2343cc3ae7b73325134cc51482dd83 -SIZE (skype_ver-0_90_0_4-staticQT.tar.bz2) = 5693856 +MD5 (skype_ver-0_90_0_14-staticQT.tar.bz2) = a0e297fa503d57ef6117768101d2c +SIZE (skype_ver-0_90_0_14-staticQT.tar.bz2) = 5768600 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 00:42: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 DF12716A4CE; Sat, 24 Jul 2004 00:42:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0E3043D45; Sat, 24 Jul 2004 00:42:34 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6O0gYEa086794; Sat, 24 Jul 2004 00:42:34 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O0gYDl086790; Sat, 24 Jul 2004 00:42:34 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 00:42:34 GMT From: Pav Lucistnik Message-Id: <200407240042.i6O0gYDl086790@freefall.freebsd.org> To: guto@galle.com.br, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69479: ERROR: fetch pure-ftpd-1.0.20.tar.bz2: File unavailable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 00:42:35 -0000 Synopsis: ERROR: fetch pure-ftpd-1.0.20.tar.bz2: File unavailable State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 00:41:41 GMT 2004 State-Changed-Why: pure-ftpd 1.0.20 was re-issued, you must have older pure-ftpd-1.0.20.tar.bz2 already downloaded. run make distclean in pure-ftpd port directory. http://www.freebsd.org/cgi/query-pr.cgi?pr=69479 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 00: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 9422416A4CE for ; Sat, 24 Jul 2004 00:50:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76B8D43D55 for ; Sat, 24 Jul 2004 00:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O0oVpT086952 for ; Sat, 24 Jul 2004 00:50:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O0oVnl086951; Sat, 24 Jul 2004 00:50:31 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 00:50:31 GMT Message-Id: <200407240050.i6O0oVnl086951@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: michael johnson Subject: Re: ports/69503: [NEW PORT] x11-toolkits/p5-Tk-JPEG-Lite: Very simplistic image viewer that loads JPEG images X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: michael johnson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 00:50:31 -0000 The following reply was made to PR ports/69503; it has been noted by GNATS. From: michael johnson To: michael johnson , freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69503: [NEW PORT] x11-toolkits/p5-Tk-JPEG-Lite: Very simplistic image viewer that loads JPEG images Date: Fri, 23 Jul 2004 20:45:36 -0400 After thinking about the CATEGORIES section I think it should just be "graphics perl5" and not include x11-toolkits From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01: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 36DD916A4CE for ; Sat, 24 Jul 2004 01:10:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F08543D1F for ; Sat, 24 Jul 2004 01:10:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O1AFvH091343 for ; Sat, 24 Jul 2004 01:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1AExZ091342; Sat, 24 Jul 2004 01:10:15 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 01:10:15 GMT Message-Id: <200407240110.i6O1AExZ091342@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Palle Girgensohn Subject: Re: ports/67839: www/mod_jk2-apache2 2.0.2: uri /*.jsp matches all subdirs 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: Sat, 24 Jul 2004 01:10:15 -0000 The following reply was made to PR ports/67839; it has been noted by GNATS. From: Palle Girgensohn To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/67839: www/mod_jk2-apache2 2.0.2: uri /*.jsp matches all subdirs Date: Sat, 24 Jul 2004 03:03:17 +0200 Hi. I doubt that the originator will read this, due to the mail address specified, but anyway, this is probably not FreeBSD specific, and anyway, I would not recommend using the workers2.properties file to set this kind of things. Instead, use apache's config stuff. See Regards, Palle From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01: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 D5F4A16A4CE for ; Sat, 24 Jul 2004 01:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D11E743D58 for ; Sat, 24 Jul 2004 01:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O1USTk092160 for ; Sat, 24 Jul 2004 01:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1USll092159; Sat, 24 Jul 2004 01:30:28 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 01:30:28 GMT Message-Id: <200407240130.i6O1USll092159@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: vladimir-fvwm@math.uic.edu Subject: Re: ports/69507: Problem with fvwm-2.5.10 and X.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: vladimir-fvwm@math.uic.edu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 01:30:29 -0000 The following reply was made to PR ports/69507; it has been noted by GNATS. From: vladimir-fvwm@math.uic.edu To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69507: Problem with fvwm-2.5.10 and X.org Date: Fri, 23 Jul 2004 20:25:19 -0500 On Fri, Jul 23, 2004 at 10:10:23PM +0000, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/69507'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69507 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: Problem with fvwm-2.5.10 and X.org > >Arrival-Date: Fri Jul 23 22:10:23 GMT 2004 I apologize: this bug report can be closed. The problem was with X server configuration and not with fvwm. -- Vladimir From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:36: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 C532816A4CE; Sat, 24 Jul 2004 01:36:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A801943D3F; Sat, 24 Jul 2004 01:36:18 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6O1aI3R093319; Sat, 24 Jul 2004 01:36:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1aI6u093315; Sat, 24 Jul 2004 01:36:18 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 01:36:18 GMT From: Mark Linimon Message-Id: <200407240136.i6O1aI6u093315@freefall.freebsd.org> To: vladimir@cat.math.uic.edu, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69507: Problem with fvwm-2.5.10 and 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: Sat, 24 Jul 2004 01:36:18 -0000 Synopsis: Problem with fvwm-2.5.10 and X.org State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 01:36:02 GMT 2004 State-Changed-Why: Submitter notes that this PR can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=69507 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:39: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 B8CC016A4CF; Sat, 24 Jul 2004 01:39:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ACC243D5A; Sat, 24 Jul 2004 01:39:21 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1dLLF093481; Sat, 24 Jul 2004 01:39:21 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1dLuO093477; Sat, 24 Jul 2004 01:39:21 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:39:21 GMT From: Ying-Chieh Liao Message-Id: <200407240139.i6O1dLuO093477@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69492: [NEW PORT] www/p5-Kwiki-UserPreferences: Kwiki User Preferences Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:39:21 -0000 Synopsis: [NEW PORT] www/p5-Kwiki-UserPreferences: Kwiki User Preferences Plugin State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Jul 24 01:39:12 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69492 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:40: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 3C79B16A4CE for ; Sat, 24 Jul 2004 01:40:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19E6343D45 for ; Sat, 24 Jul 2004 01:40:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O1e7GI093553 for ; Sat, 24 Jul 2004 01:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1e7YI093552; Sat, 24 Jul 2004 01:40:07 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 01:40:07 GMT Resent-Message-Id: <200407240140.i6O1e7YI093552@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimura Fuyuki Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9BF316A4CE for ; Sat, 24 Jul 2004 01:37:51 +0000 (GMT) Received: from mgate14.so-net.ne.jp (mgate14.so-net.ne.jp [210.139.254.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EFB043D3F for ; Sat, 24 Jul 2004 01:37:50 +0000 (GMT) (envelope-from fuyuki@hadaly.org) Received: from mail.dg8.so-net.ne.jp (mspool12.so-net.ne.jp [210.139.248.12]) by mgate14.so-net.ne.jp with ESMTP id i6O1bnL18826 for ; Sat, 24 Jul 2004 10:37:49 +0900 (JST) Received: from ns.nigredo.org (pd33871.spprac00.ap.so-net.ne.jp [61.211.56.113]) by mail.dg8.so-net.ne.jp with ESMTP id i6O1bnE11268 for ; Sat, 24 Jul 2004 10:37:49 +0900 (JST) Message-Id: <86vfge9od5.wl%fuyuki@hadaly.org> Date: Sat, 24 Jul 2004 10:37:42 +0900 From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69511: Update port: japanese/cal.rb (chase distfile) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:40:08 -0000 >Number: 69511 >Category: ports >Synopsis: Update port: japanese/cal.rb (chase distfile) >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 Jul 24 01:40:07 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: FreeBSD ns.nigredo.org 5.2.1-RELEASE-p9 i386 >Description: Update distinfo and unbreak >How-To-Repeat: >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/japanese/cal.rb/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 9 Jun 2004 07:58:53 -0000 1.10 +++ Makefile 24 Jul 2004 01:34:28 -0000 @@ -7,6 +7,7 @@ PORTNAME= cal.rb PORTVERSION= 1.17 +PORTREVISION= 1 CATEGORIES= japanese deskutils MASTER_SITES= http://aglaia.c.u-tokyo.ac.jp/~yamamoto/Script/Calendar/ DISTFILES= cal.rb Calendar.rb era_name @@ -14,8 +15,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Displays a Japanese calendar - -BROKEN= "Size mismatch" EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= Index: distinfo =================================================================== RCS file: /cvs/FreeBSD/ports/japanese/cal.rb/distinfo,v retrieving revision 1.9 diff -u -r1.9 distinfo --- distinfo 29 Jan 2004 07:24:37 -0000 1.9 +++ distinfo 24 Jul 2004 01:29:56 -0000 @@ -1,6 +1,6 @@ MD5 (cal.rb-1.17/cal.rb) = ae467414630d0f68373589bb738c5c34 SIZE (cal.rb-1.17/cal.rb) = 2231 -MD5 (cal.rb-1.17/Calendar.rb) = f77cd29b06b24c9d4824160bc525a85b -SIZE (cal.rb-1.17/Calendar.rb) = 16831 +MD5 (cal.rb-1.17/Calendar.rb) = f569281e2fa602870bc954996623b28f +SIZE (cal.rb-1.17/Calendar.rb) = 16895 MD5 (cal.rb-1.17/era_name) = 2c3c6a4de0d7d8a2101fbe7165509982 SIZE (cal.rb-1.17/era_name) = 2804 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:41: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 C5ADE16A4D1; Sat, 24 Jul 2004 01:41:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A986743D2F; Sat, 24 Jul 2004 01:41:39 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1fd20093729; Sat, 24 Jul 2004 01:41:39 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1fd9F093725; Sat, 24 Jul 2004 01:41:39 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:41:39 GMT From: Ying-Chieh Liao Message-Id: <200407240141.i6O1fd9F093725@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69493: [NEW PORT] www/p5-Kwiki-Revisions: Kwiki Revisions Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:41:39 -0000 Synopsis: [NEW PORT] www/p5-Kwiki-Revisions: Kwiki Revisions Plugin State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Jul 24 01:41:32 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69493 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:42: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 D61C416A4CE; Sat, 24 Jul 2004 01:42:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B89D643D1F; Sat, 24 Jul 2004 01:42:49 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1gnTj093859; Sat, 24 Jul 2004 01:42:49 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1gnLH093855; Sat, 24 Jul 2004 01:42:49 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:42:49 GMT From: Ying-Chieh Liao Message-Id: <200407240142.i6O1gnLH093855@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69494: [NEW PORT] www/p5-Kwiki-Search: Kwiki Search Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:42:50 -0000 Synopsis: [NEW PORT] www/p5-Kwiki-Search: Kwiki Search Plugin State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Jul 24 01:42:43 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69494 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:44: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 5BD4D16A4CE; Sat, 24 Jul 2004 01:44:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC3143D1D; Sat, 24 Jul 2004 01:44:53 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1ir0s094175; Sat, 24 Jul 2004 01:44:53 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1irZ1094171; Sat, 24 Jul 2004 01:44:53 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:44:53 GMT From: Ying-Chieh Liao Message-Id: <200407240144.i6O1irZ1094171@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69495: [NEW PORT] www/p5-Kwiki-RecentChanges: Kwiki Recent Changes Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:44:53 -0000 Synopsis: [NEW PORT] www/p5-Kwiki-RecentChanges: Kwiki Recent Changes Plugin State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Jul 24 01:44:46 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69495 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:47: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 5113416A4D5; Sat, 24 Jul 2004 01:47:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE37B43D54; Sat, 24 Jul 2004 01:47:29 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1lTB0094330; Sat, 24 Jul 2004 01:47:29 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1lT1t094326; Sat, 24 Jul 2004 01:47:29 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:47:29 GMT From: Ying-Chieh Liao Message-Id: <200407240147.i6O1lT1t094326@freefall.freebsd.org> To: clsung@dragon2.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69498: [NEW PORT] www/p5-Kwiki-RecentChangesRSS: Kwiki RSS Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:47:32 -0000 Synopsis: [NEW PORT] www/p5-Kwiki-RecentChangesRSS: Kwiki RSS Plugin State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Jul 24 01:47:22 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69498 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:48: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 A11BD16A4CF; Sat, 24 Jul 2004 01:48:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8363B43D1D; Sat, 24 Jul 2004 01:48:03 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) i6O1m3F6094389; Sat, 24 Jul 2004 01:48:03 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1m3eI094385; Sat, 24 Jul 2004 01:48:03 GMT (envelope-from mezz) Date: Sat, 24 Jul 2004 01:48:03 GMT From: Jeremy Messenger Message-Id: <200407240148.i6O1m3eI094385@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org Subject: Re: ports/69237: [PATCH] Update www/phpbb to 2.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, 24 Jul 2004 01:48:03 -0000 Synopsis: [PATCH] Update www/phpbb to 2.0.10 Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: mezz Responsible-Changed-When: Sat Jul 24 01:47:46 GMT 2004 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69237 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:48: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 33CAE16A4F9; Sat, 24 Jul 2004 01:48:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1599543D3F; Sat, 24 Jul 2004 01:48:41 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1me25094435; Sat, 24 Jul 2004 01:48:40 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1meTJ094431; Sat, 24 Jul 2004 01:48:40 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:48:40 GMT From: Ying-Chieh Liao Message-Id: <200407240148.i6O1meTJ094431@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lev@FreeBSD.org Subject: Re: ports/69508: [PATCH] Update devel/subversion to 1.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: Sat, 24 Jul 2004 01:48:41 -0000 Synopsis: [PATCH] Update devel/subversion to 1.0.6 Responsible-Changed-From-To: freebsd-ports-bugs->lev Responsible-Changed-By: ijliao Responsible-Changed-When: Sat Jul 24 01:48:29 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69508 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:49: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 CC8EA16A4CE; Sat, 24 Jul 2004 01:49:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DB5F43D41; Sat, 24 Jul 2004 01:49:24 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1nOMB094481; Sat, 24 Jul 2004 01:49:24 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1nOD0094477; Sat, 24 Jul 2004 01:49:24 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:49:24 GMT From: Ying-Chieh Liao Message-Id: <200407240149.i6O1nOD0094477@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, netchild@FreeBSD.org Subject: Re: ports/69510: Update net/skype to 0.90.0.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: Sat, 24 Jul 2004 01:49:26 -0000 Synopsis: Update net/skype to 0.90.0.14 Responsible-Changed-From-To: freebsd-ports-bugs->netchild Responsible-Changed-By: ijliao Responsible-Changed-When: Sat Jul 24 01:49:17 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69510 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:53: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 BE03A16A4CE; Sat, 24 Jul 2004 01:53:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A180643D45; Sat, 24 Jul 2004 01:53:19 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O1rJiH094806; Sat, 24 Jul 2004 01:53:19 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1rJ83094802; Sat, 24 Jul 2004 01:53:19 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 01:53:19 GMT From: Ying-Chieh Liao Message-Id: <200407240153.i6O1rJ83094802@freefall.freebsd.org> To: ahze@ahze.net, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69488: [MAINTAINER] math/fftw3: [Only show i386 options to i386] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 01:53:19 -0000 Synopsis: [MAINTAINER] math/fftw3: [Only show i386 options to i386] State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Sat Jul 24 01:53:13 GMT 2004 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=69488 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 01:59: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 4CB4A16A4CE; Sat, 24 Jul 2004 01:59:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E53EB43D2F; Sat, 24 Jul 2004 01:59:45 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) i6O1xjXT094953; Sat, 24 Jul 2004 01:59:45 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O1xjqe094949; Sat, 24 Jul 2004 01:59:45 GMT (envelope-from mezz) Date: Sat, 24 Jul 2004 01:59:45 GMT From: Jeremy Messenger Message-Id: <200407240159.i6O1xjqe094949@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org Subject: Re: ports/69483: [Maintainer Update] x11-toolkits/gauche-gtk 0.4 -> 0.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, 24 Jul 2004 01:59:46 -0000 Synopsis: [Maintainer Update] x11-toolkits/gauche-gtk 0.4 -> 0.4.1 Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: mezz Responsible-Changed-When: Sat Jul 24 01:59:28 GMT 2004 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69483 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 02:37: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 9B43D16A4CE; Sat, 24 Jul 2004 02:37:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CF6843D45; Sat, 24 Jul 2004 02:37:03 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) i6O2b3Tk002802; Sat, 24 Jul 2004 02:37:03 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O2b3wX002798; Sat, 24 Jul 2004 02:37:03 GMT (envelope-from mezz) Date: Sat, 24 Jul 2004 02:37:03 GMT From: Jeremy Messenger Message-Id: <200407240237.i6O2b3wX002798@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org Subject: Re: ports/69489: maintainer-update of security/nessus-*-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 02:37:03 -0000 Synopsis: maintainer-update of security/nessus-*-devel Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: mezz Responsible-Changed-When: Sat Jul 24 02:36:44 GMT 2004 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69489 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 02: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 9436516A4CE for ; Sat, 24 Jul 2004 02:50:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AE1843D39 for ; Sat, 24 Jul 2004 02:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O2oGD4003039 for ; Sat, 24 Jul 2004 02:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O2oGA4003038; Sat, 24 Jul 2004 02:50:16 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 02:50:16 GMT Resent-Message-Id: <200407240250.i6O2oGA4003038@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58A7D16A4CE for ; Sat, 24 Jul 2004 02:45:55 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D83E43D48 for ; Sat, 24 Jul 2004 02:45:55 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id C39813EA93A for ; Sat, 24 Jul 2004 10:45:53 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 83152-02 for ; Sat, 24 Jul 2004 10:45:51 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 1EE6D3EA936; Sat, 24 Jul 2004 10:45:51 +0800 (CST) Message-Id: <20040724024551.1EE6D3EA936@utopia.leeym.com> Date: Sat, 24 Jul 2004 10:45:51 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69512: OPTIONS and NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Yen-Ming Lee List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 02:50:16 -0000 >Number: 69512 >Category: ports >Synopsis: OPTIONS and NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) >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 Jul 24 02:50:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #143: Tue Jul 6 05:16:06 CST 2004 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: If a port has OPTIONS and NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) in its Makefile, the NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) will be ignored when !_OPTIONS_OK. This problem occurs when I was trying to apply OPTIONS in mail/openwebmail, which has NO_BUILD already. The port entered the build target and showed: ===> Building for openwebmail-2.32 make: cannot open Makefile. *** Error code 2 However, since it has NO_BUILD, it shouldn't do build at all. >How-To-Repeat: Let's make a simpler sample. - put NO_CHECKSUM in lang/php4/Makefile - cd /usr/ports/lang/php4 && make rmcofig clean - cd /usr/ports/lang/php4 && make checksum - and php4 port will ignore NO_CHECKSUM and do checksum. >Fix: Remove defined(_OPTIONS_OK) when disabling targets. --- bsd.port.mk.diff begins here --- --- /home/leeym/cvs/ports/Mk/bsd.port.mk Sat Jul 24 10:17:10 2004 +++ /usr/ports/Mk/bsd.port.mk Sat Jul 24 10:24:42 2004 @@ -2738,25 +2738,25 @@ ################################################################ # Disable checksum -.if defined(NO_CHECKSUM) && !target(checksum) && defined(_OPTIONS_OK) +.if defined(NO_CHECKSUM) && !target(checksum) checksum: fetch @${DO_NADA} .endif # Disable build -.if defined(NO_BUILD) && !target(build) && defined(_OPTIONS_OK) +.if defined(NO_BUILD) && !target(build) build: configure @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE} .endif # Disable install -.if defined(NO_INSTALL) && !target(install) && defined(_OPTIONS_OK) +.if defined(NO_INSTALL) && !target(install) install: build @${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE} .endif # Disable package -.if defined(NO_PACKAGE) && !target(package) && defined(_OPTIONS_OK) +.if defined(NO_PACKAGE) && !target(package) package: .if defined(IGNORE_SILENT) @${DO_NADA} --- bsd.port.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 03: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 50B9B16A4CE for ; Sat, 24 Jul 2004 03:00:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 368EF43D2F for ; Sat, 24 Jul 2004 03:00:52 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O30qN1003324 for ; Sat, 24 Jul 2004 03:00:52 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O30pNt003322; Sat, 24 Jul 2004 03:00:52 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 03:00:52 GMT Message-Id: <200407240300.i6O30pNt003322@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jake Hamby Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jake Hamby List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 03:00:52 -0000 The following reply was made to PR ports/69404; it has been noted by GNATS. From: Jake Hamby To: John Merryweather Cooper Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread Date: Fri, 23 Jul 2004 19:57:29 -0700 This is a multi-part message in MIME format. --------------030509020001010107050200 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit John Merryweather Cooper wrote: > What is your __FREEBSD_version in ? Is there a configure > script? What are the available options? Can you send me a full build > log using: #define __FreeBSD_version 502123 /* Master, propagated to newvers */ > # script -a build log gmake Attached below. > What, if anything, do you have set for CFLAGS in /etc/make.conf? I'm using: CPUTYPE?=p4 CFLAGS= -O2 -pipe -Jake --------------030509020001010107050200 Content-Type: text/plain; name="build_log" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="build_log" Script started on Fri Jul 23 19:54:52 2004 Making all in browser gmake[1]: Entering directory `/usr/home/jhamby/Code/monodoc-1.0/browser' mcs -debug -out:monodoc.dll -target:library /resource:./mono-ecma.xsl,mono-ecma.xsl /resource:./ecmaspec-html.xsl,ecmaspec-html.xsl ./colorizer.cs ./man-provider.cs ./monohb-provider.cs ./xhtml-provider.cs ./ecma-provider.cs ./simple-provider.cs ./html-helper.cs ./provider.cs ./index.cs ./error-provider.cs ./ecmaspec-provider.cs ./editing.cs ./settings.cs ./commentservice.cs ./XmlNodeWriter.cs AssemblyInfo.cs -r:ICSharpCode.SharpZipLib.dll -r:System.Web -r:System.Web.Services ./ecma-provider.cs(962) warning CS0618: 'System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable, System.Xml.Xsl.XsltArgumentList, System.IO.TextWriter)' is obsolete: 'You should pass XmlResolver to Transform() method' ./ecma-provider.cs(974) warning CS0618: 'System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable, System.Xml.Xsl.XsltArgumentList, System.Xml.XmlWriter)' is obsolete: 'You should pass XmlResolver to Transform() method' ./ecma-provider.cs(985) warning CS0618: 'System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader)' is obsolete: 'You should pass evidence.' ./ecmaspec-provider.cs(115) warning CS0618: 'System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader)' is obsolete: 'You should pass evidence.' ./ecmaspec-provider.cs(121) warning CS0618: 'System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable, System.Xml.Xsl.XsltArgumentList, System.IO.TextWriter)' is obsolete: 'You should pass XmlResolver to Transform() method' ./editing.cs(39) warning CS0162: Unreachable code detected Compilation succeeded - 6 warning(s) mcs -debug -out:browser.exe ./browser.cs ./list.cs ./elabel.cs ./history.cs ./Contributions.cs ./XmlNodeWriter.cs -resource:./../monodoc.png,monodoc.png -resource:./browser.glade,browser.glade -pkg:gtkhtml-sharp -pkg:glade-sharp -r:System.Web.Services -r:./monodoc.dll Assertion failed: (lu->lu_myreq->lr_owner == lu), function _lock_acquire, file /usr/src/lib/libpthread/sys/lock.c, line 171. gmake[1]: *** [browser.exe] Abort trap (core dumped) gmake[1]: Leaving directory `/usr/home/jhamby/Code/monodoc-1.0/browser' gmake: *** [all-recursive] Error 1 Script done on Fri Jul 23 19:54:58 2004 --------------030509020001010107050200-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 05: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 7B97616A4CE for ; Sat, 24 Jul 2004 05:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BBE243D1D for ; Sat, 24 Jul 2004 05:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O5KKRo025832 for ; Sat, 24 Jul 2004 05:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O5KKXp025831; Sat, 24 Jul 2004 05:20:20 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 05:20:20 GMT Resent-Message-Id: <200407240520.i6O5KKXp025831@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Tom McLaughlin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67E7416A4CE for ; Sat, 24 Jul 2004 05:11:56 +0000 (GMT) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id C7F2743D41 for ; Sat, 24 Jul 2004 05:11:55 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 15838 invoked from network); 24 Jul 2004 05:11:55 -0000 Received: from compass.straycat.dhs.org (192.168.1.32) by alexandria.straycat.dhs.org with SMTP; 24 Jul 2004 05:11:55 -0000 Message-Id: <1090645915.0@compass.straycat.dhs.org> Date: Sat, 24 Jul 2004 01:11:55 -0400 From: "Tom McLaughlin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 cc: jus@security.za.net Subject: ports/69513: Update port: mail/ripmime to 1.3.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: Sat, 24 Jul 2004 05:20:27 -0000 >Number: 69513 >Category: ports >Synopsis: Update port: mail/ripmime to 1.3.2.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 05:20:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tom McLaughlin >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD 5.2-CURRENT #0: Tue Jul 20 02:50:04 EDT 2004 root@compass.straycat.dhs.org:/usr/obj/usr/src/sys/COMPASS >Description: Attached patch updates ripmime to 1.3.2.2. Maintainer CCed on PR. >How-To-Repeat: >Fix: --- ripmime-1.3.2.2.diff begins here --- diff -Nur ripmime.orig/Makefile ripmime/Makefile --- ripmime.orig/Makefile Thu Apr 29 04:40:19 2004 +++ ripmime/Makefile Sat Jul 24 00:58:11 2004 @@ -6,7 +6,7 @@ # PORTNAME= ripmime -PORTVERSION= 1.3.1.1 +PORTVERSION= 1.3.2.2 CATEGORIES= mail MASTER_SITES= http://www.pldaniels.com/ripmime/ diff -Nur ripmime.orig/distinfo ripmime/distinfo --- ripmime.orig/distinfo Thu Apr 29 04:40:19 2004 +++ ripmime/distinfo Sat Jul 24 01:00:28 2004 @@ -1,2 +1,2 @@ -MD5 (ripmime-1.3.1.1.tar.gz) = 65c62c35a0c4c24eed36cc4a635656df -SIZE (ripmime-1.3.1.1.tar.gz) = 137171 +MD5 (ripmime-1.3.2.2.tar.gz) = c1eaa37c276f41300da399ce2923c28f +SIZE (ripmime-1.3.2.2.tar.gz) = 142057 diff -Nur ripmime.orig/files/patch-Makefile ripmime/files/patch-Makefile --- ripmime.orig/files/patch-Makefile Wed Apr 28 23:02:37 2004 +++ ripmime/files/patch-Makefile Sat Jul 24 01:00:07 2004 @@ -1,11 +1,11 @@ ---- Makefile.orig Mon Apr 5 09:00:49 2004 -+++ Makefile Mon Apr 5 20:53:46 2004 +--- Makefile.orig Sun Jul 18 22:04:13 2004 ++++ Makefile Sat Jul 24 00:59:54 2004 @@ -5,7 +5,7 @@ - # PERFORMANCE RELATED FLAG SETS - #CFLAGS=-Wall -O3 -march=i686 - #CFLAGS= -Wall -O3 -march=k6 --CFLAGS= -Wall -g $(CPU_OPTS) -+#CFLAGS= -Wall -g $(CPU_OPTS) - #CFLAGS= -Wall -O3 -march=i686 + # if there isn't already a default CFLAGS set, + # use our recommended settings. + #CFLAGS ?= -Wall -g -O2 -Werror $(CPU_OPTS) +-CFLAGS=-Wall -g -O2 -Werror ++#CFLAGS=-Wall -g -O2 -Werror # OLE decoding is still considered to be 'beta' mode - so it + # disabled in the stable release of ripMIME for now diff -Nur ripmime.orig/files/patch-ripOLE_Makefile ripmime/files/patch-ripOLE_Makefile --- ripmime.orig/files/patch-ripOLE_Makefile Wed Dec 31 19:00:00 1969 +++ ripmime/files/patch-ripOLE_Makefile Sat Jul 24 01:06:23 2004 @@ -0,0 +1,11 @@ +--- ripOLE/Makefile.orig Sat May 22 00:16:01 2004 ++++ ripOLE/Makefile Sat Jul 24 01:05:45 2004 +@@ -1,7 +1,7 @@ + + OBJS= ole.o olestream-unwrap.o bytedecoders.o logger.o pldstr.o + #CFLAGS ?= -Wall -Werror -g -O2 +-CFLAGS=-Wall -Werror -g -O2 ++#CFLAGS=-Wall -Werror -g -O2 + #DEFINES ?= + #DEFINES=-DDEBUG_TIMETEST + --- ripmime-1.3.2.2.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 05: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 A0AAA16A4CF for ; Sat, 24 Jul 2004 05:20:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A57143D3F for ; Sat, 24 Jul 2004 05:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O5KQjU025858 for ; Sat, 24 Jul 2004 05:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O5KQC6025857; Sat, 24 Jul 2004 05:20:26 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 05:20:26 GMT Resent-Message-Id: <200407240520.i6O5KQC6025857@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aaron Zauner Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95B3B16A4CE for ; Sat, 24 Jul 2004 05:16:21 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 9106E43D45 for ; Sat, 24 Jul 2004 05:16:20 +0000 (GMT) (envelope-from az_mail@gmx.at) Received: (qmail 1006 invoked by uid 65534); 24 Jul 2004 05:16:19 -0000 Received: from 62-99-107-155.static.sdsl-line.inode.at (EHLO jesus.weboink.org) (62.99.207.155) by mail.gmx.net (mp017) with SMTP; 24 Jul 2004 07:16:19 +0200 Message-Id: <20040724071410.3b30f5e5@jesus.weboink.org> Date: Sat, 24 Jul 2004 07:14:10 +0200 From: Aaron Zauner To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69514: [PATCH] rtcw fetch fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 05:20:27 -0000 Note: There was a bad value `<[' for the field `>Severity:'. It was set to the default value of `serious'. Note: There was a bad value `<[' for the field `>Priority:'. It was set to the default value of `medium'. >Number: 69514 >Category: ports >Synopsis: [PATCH] rtcw fetch fix >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 05:20:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Aaron Zauner >Release: FreeBSD 4.10-RELEASE i386 >Organization: BSD User Group Austria >Environment: System: FreeBSD jesus.weboink.org 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Tue Jun 22 04:08:11 CEST 2004 root@jesus.weboink.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: >How-To-Repeat: >Fix: --- rtcw.diff begins here --- --- Makefile Sat Jul 24 07:04:07 2004 +++ Makefile.new Sat Jul 24 07:05:08 2004 @@ -8,16 +8,16 @@ PORTNAME= rtcw PORTVERSION= 1.1b CATEGORIES= games linux -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/wolf/linux/ +MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/wolf/linux/old/ DISTNAME= wolf-linux-${PORTVERSION}.x86 EXTRACT_SUFX= .run MAINTAINER= nik@FreeBSD.org COMMENT= Return to Castle Wolfenstein for Linux -BROKEN= "Does not fetch" -EXPIRATION_DATE=2004-08-20 -DEPRECATED= ${BROKEN} +#BROKEN= "Does not fetch" +#EXPIRATION_DATE=2004-08-20 +#DEPRECATED= ${BROKEN} ONLY_FOR_ARCHS= i386 USE_LINUX_PREFIX= yes --- rtcw.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 05: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 B542316A4CE for ; Sat, 24 Jul 2004 05:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9516643D58 for ; Sat, 24 Jul 2004 05:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O5UNrY026877 for ; Sat, 24 Jul 2004 05:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O5UNTu026876; Sat, 24 Jul 2004 05:30:23 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 05:30:23 GMT Resent-Message-Id: <200407240530.i6O5UNTu026876@freefall.freebsd.org> 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 6B6D016A4CE for ; Sat, 24 Jul 2004 05:22:03 +0000 (GMT) Received: from going04.iis.sinica.edu.tw (going04.iis.sinica.edu.tw [140.109.19.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id D337243D2D for ; Sat, 24 Jul 2004 05:22:02 +0000 (GMT) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: from going04.iis.sinica.edu.tw (localhost.iis.sinica.edu.tw [127.0.0.1])i6ODOeN5025821 for ; Sat, 24 Jul 2004 13:24:40 GMT (envelope-from clsung@going04.iis.sinica.edu.tw) Received: (from clsung@localhost)i6ODOevU025820; Sat, 24 Jul 2004 13:24:40 GMT (envelope-from clsung) Message-Id: <200407241324.i6ODOevU025820@going04.iis.sinica.edu.tw> Date: Sat, 24 Jul 2004 13:24:40 GMT From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69515: [NEW PORT] www/p5-Kwiki-UserName: Kwiki User Name Plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 05:30:23 -0000 >Number: 69515 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-UserName: Kwiki User Name Plugin >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 Jul 24 05:30:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD going04.iis.sinica.edu.tw 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Mon Feb 23 20:45:55 GMT 2004 >Description: Kwiki::UserName - Kwiki User Name Plugin WWW: http://search.cpan.org/dist/Kwiki-UserName/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-UserName-0.11.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-UserName # p5-Kwiki-UserName/Makefile # p5-Kwiki-UserName/distinfo # p5-Kwiki-UserName/pkg-descr # p5-Kwiki-UserName/pkg-plist # echo c - p5-Kwiki-UserName mkdir -p p5-Kwiki-UserName > /dev/null 2>&1 echo x - p5-Kwiki-UserName/Makefile sed 's/^X//' >p5-Kwiki-UserName/Makefile << 'END-of-p5-Kwiki-UserName/Makefile' X# New ports collection makefile for: p5-Kwiki-UserName X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-UserName XPORTVERSION= 0.11 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki User Name Plugin X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki \ X ${SITE_PERL}/Kwiki/UserPreferences.pm:${PORTSDIR}/www/p5-Kwiki-UserPreferences XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::UserName.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-UserName/Makefile echo x - p5-Kwiki-UserName/distinfo sed 's/^X//' >p5-Kwiki-UserName/distinfo << 'END-of-p5-Kwiki-UserName/distinfo' XMD5 (Kwiki-UserName-0.11.tar.gz) = 2cfdf085bfe850a792cd0beb57670442 XSIZE (Kwiki-UserName-0.11.tar.gz) = 8312 END-of-p5-Kwiki-UserName/distinfo echo x - p5-Kwiki-UserName/pkg-descr sed 's/^X//' >p5-Kwiki-UserName/pkg-descr << 'END-of-p5-Kwiki-UserName/pkg-descr' XKwiki::UserName - Kwiki User Name Plugin X XWWW: http://search.cpan.org/dist/Kwiki-UserName/ XAuthor: Brian Ingerson END-of-p5-Kwiki-UserName/pkg-descr echo x - p5-Kwiki-UserName/pkg-plist sed 's/^X//' >p5-Kwiki-UserName/pkg-plist << 'END-of-p5-Kwiki-UserName/pkg-plist' X%%SITE_PERL%%/Kwiki/UserName.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/UserName/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/UserName X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-UserName/pkg-plist exit --- p5-Kwiki-UserName-0.11.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 05: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 DBEE016A4CE for ; Sat, 24 Jul 2004 05:30:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE4AB43D58 for ; Sat, 24 Jul 2004 05:30:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O5UNsc026899 for ; Sat, 24 Jul 2004 05:30:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O5UNrc026898; Sat, 24 Jul 2004 05:30:23 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 05:30:23 GMT Resent-Message-Id: <200407240530.i6O5UNrc026898@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22F2A16A4CE for ; Sat, 24 Jul 2004 05:25:30 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id A51A943D49 for ; Sat, 24 Jul 2004 05:25:29 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 4882A3EA953 for ; Sat, 24 Jul 2004 13:25:28 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 97039-09 for ; Sat, 24 Jul 2004 13:25:23 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 153E73EA946; Sat, 24 Jul 2004 13:25:22 +0800 (CST) Message-Id: <20040724052522.153E73EA946@utopia.leeym.com> Date: Sat, 24 Jul 2004 13:25:22 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69516: fix port: misc/matrix-kmod X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Yen-Ming Lee List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 05:30:24 -0000 >Number: 69516 >Category: ports >Synopsis: fix port: misc/matrix-kmod >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 Jul 24 05:30:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #143: Tue Jul 6 05:16:06 CST 2004 root@utopia.leeym.com:/usr/obj/usr/src/sys/UTOPIA i386 >Description: update DESTDIR / PREFIX / pkg-plist and unbreak this port. >How-To-Repeat: >Fix: --- matrix-kmod.diff begins here --- diff -ruN --exclude CVS /usr/ports/misc/matrix-kmod/Makefile matrix-kmod/Makefile --- /usr/ports/misc/matrix-kmod/Makefile Mon May 19 02:01:40 2003 +++ matrix-kmod/Makefile Sat Jul 24 13:16:47 2004 @@ -11,10 +11,10 @@ MASTER_SITES= http://www.belousov.com/download/ PKGNAMESUFFIX= -kmod -MAINTAINER= strijar@urai.ru +MAINTAINER= strijar@urai.ru COMMENT= Screensaver for console (matrix_saver.ko) "Matrix" like -MAKE_ENV= DESTDIR="${PREFIX}/lib/matrix" +KMODDIR= ${PREFIX}/modules .include @@ -22,11 +22,9 @@ BROKEN= "Need FreeBSD 4.0 or above" .endif -.if ${OSVERSION} >= 500113 -BROKEN= "Installation fails" -.endif - -pre-install: - ${MKDIR} ${PREFIX}/lib/matrix/modules +do-install: + @${MKDIR} ${KMODDIR} + ${INSTALL_SCRIPT} ${FILESDIR}/matrix_saver.sh ${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${WRKSRC}/*.ko ${KMODDIR} .include diff -ruN --exclude CVS /usr/ports/misc/matrix-kmod/files/matrix_saver.sh matrix-kmod/files/matrix_saver.sh --- /usr/ports/misc/matrix-kmod/files/matrix_saver.sh Thu Jan 1 08:00:00 1970 +++ matrix-kmod/files/matrix_saver.sh Sat Jul 24 13:12:25 2004 @@ -0,0 +1,22 @@ +#!/bin/sh + +if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then + echo "$0: Cannot determine the PREFIX" >&2 + exit 1 +fi + +case "$1" in +start) + if [ -x ${PREFIX}/modules/matrix_saver.ko ]; then + echo -n ' matrix_saver' + kldload ${PREFIX}/modules/matrix_saver.ko + fi + ;; +stop) + kldunload -v -n matrix_saver && echo -n ' matrix_saver' + ;; +*) + echo "Usage: $0 {start|stop}" >&2 + exit 1 + ;; +esac diff -ruN --exclude CVS /usr/ports/misc/matrix-kmod/pkg-plist matrix-kmod/pkg-plist --- /usr/ports/misc/matrix-kmod/pkg-plist Sun Mar 11 03:09:48 2001 +++ matrix-kmod/pkg-plist Sat Jul 24 13:14:34 2004 @@ -1,3 +1,3 @@ -lib/matrix/modules/matrix_saver.ko -@dirrm lib/matrix/modules -@dirrm lib/matrix +etc/rc.d/matrix_saver.sh +modules/matrix_saver.ko +@unexec rmdir -p %D/modules 2>/dev/null || true --- matrix-kmod.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 05:40: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 72BFE16A4CE for ; Sat, 24 Jul 2004 05:40:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5421943D31 for ; Sat, 24 Jul 2004 05:40:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O5eKFF030173 for ; Sat, 24 Jul 2004 05:40:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O5eKq8030171; Sat, 24 Jul 2004 05:40:20 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 05:40:20 GMT Resent-Message-Id: <200407240540.i6O5eKq8030171@freefall.freebsd.org> 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 D3B0416A4CE for ; Sat, 24 Jul 2004 05:31:08 +0000 (GMT) Received: from going04.iis.sinica.edu.tw (going04.iis.sinica.edu.tw [140.109.19.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED15643D39 for ; Sat, 24 Jul 2004 05:31:07 +0000 (GMT) (envelope-from clsung@going04.iis.sinica.edu.tw) Received: from going04.iis.sinica.edu.tw (localhost.iis.sinica.edu.tw [127.0.0.1])i6ODXnN5032889 for ; Sat, 24 Jul 2004 13:33:49 GMT (envelope-from clsung@going04.iis.sinica.edu.tw) Received: (from clsung@localhost)i6ODXnLE032888; Sat, 24 Jul 2004 13:33:49 GMT (envelope-from clsung) Message-Id: <200407241333.i6ODXnLE032888@going04.iis.sinica.edu.tw> Date: Sat, 24 Jul 2004 13:33:49 GMT From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69517: [NEW PORT] www/p5-Kwiki-Archive-Rcs: Kwiki Page Archival Using RCS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 05:40:20 -0000 >Number: 69517 >Category: ports >Synopsis: [NEW PORT] www/p5-Kwiki-Archive-Rcs: Kwiki Page Archival Using RCS >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 Jul 24 05:40:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD going04.iis.sinica.edu.tw 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Mon Feb 23 20:45:55 GMT 2004 >Description: Kwiki::Archive::Rcs - Kwiki Page Archival Using RCS WWW: http://search.cpan.org/dist/Kwiki-Archive-Rcs/ Author: Brian Ingerson Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Kwiki-Archive-Rcs-0.10.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Kwiki-Archive-Rcs # p5-Kwiki-Archive-Rcs/Makefile # p5-Kwiki-Archive-Rcs/distinfo # p5-Kwiki-Archive-Rcs/pkg-descr # p5-Kwiki-Archive-Rcs/pkg-plist # echo c - p5-Kwiki-Archive-Rcs mkdir -p p5-Kwiki-Archive-Rcs > /dev/null 2>&1 echo x - p5-Kwiki-Archive-Rcs/Makefile sed 's/^X//' >p5-Kwiki-Archive-Rcs/Makefile << 'END-of-p5-Kwiki-Archive-Rcs/Makefile' X# New ports collection makefile for: p5-Kwiki-Archive-Rcs X# Date created: Jul 24 2004 X# Whom: Cheng-Lung Sung X# X# $FreeBSD$ X# X XPORTNAME= Kwiki-Archive-Rcs XPORTVERSION= 0.10 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Kwiki XPKGNAMEPREFIX= p5- X XMAINTAINER= clsung@dragon2.net XCOMMENT= Kwiki Page Archival Using RCS X XBUILD_DEPENDS= ${SITE_PERL}/Kwiki.pm:${PORTSDIR}/www/p5-Kwiki XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Kwiki::Archive::Rcs.3 X X.include X X.if ${PERL_LEVEL} < 500601 XIGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again X.endif X X.include END-of-p5-Kwiki-Archive-Rcs/Makefile echo x - p5-Kwiki-Archive-Rcs/distinfo sed 's/^X//' >p5-Kwiki-Archive-Rcs/distinfo << 'END-of-p5-Kwiki-Archive-Rcs/distinfo' XMD5 (Kwiki-Archive-Rcs-0.10.tar.gz) = f8d801a34d8635c9f394d901e89a1e3b XSIZE (Kwiki-Archive-Rcs-0.10.tar.gz) = 8652 END-of-p5-Kwiki-Archive-Rcs/distinfo echo x - p5-Kwiki-Archive-Rcs/pkg-descr sed 's/^X//' >p5-Kwiki-Archive-Rcs/pkg-descr << 'END-of-p5-Kwiki-Archive-Rcs/pkg-descr' XKwiki::Archive::Rcs - Kwiki Page Archival Using RCS X XWWW: http://search.cpan.org/dist/Kwiki-Archive-Rcs/ XAuthor: Brian Ingerson END-of-p5-Kwiki-Archive-Rcs/pkg-descr echo x - p5-Kwiki-Archive-Rcs/pkg-plist sed 's/^X//' >p5-Kwiki-Archive-Rcs/pkg-plist << 'END-of-p5-Kwiki-Archive-Rcs/pkg-plist' X%%SITE_PERL%%/Kwiki/Archive/Rcs.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/Archive/Rcs/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwiki/Archive/Rcs X@unexec rmdir %D/%%SITE_PERL%%/Kwiki/Archive 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/Kwiki 2>/dev/null || true END-of-p5-Kwiki-Archive-Rcs/pkg-plist exit --- p5-Kwiki-Archive-Rcs-0.10.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:02: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 48AF416A4CE for ; Sat, 24 Jul 2004 06:02:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21B6F43D41 for ; Sat, 24 Jul 2004 06:01:55 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O60igD047210 for ; Sat, 24 Jul 2004 06:00:44 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O60iaY047199; Sat, 24 Jul 2004 06:00:44 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 06:00:44 GMT Resent-Message-Id: <200407240600.i6O60iaY047199@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Tom McLaughlin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12CC816A4CE for ; Sat, 24 Jul 2004 05:58:42 +0000 (GMT) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 8875843D2D for ; Sat, 24 Jul 2004 05:58:41 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 3333 invoked from network); 24 Jul 2004 05:58:41 -0000 Received: from compass.straycat.dhs.org (192.168.1.32) by alexandria.straycat.dhs.org with SMTP; 24 Jul 2004 05:58:41 -0000 Message-Id: <1090648721.0@compass.straycat.dhs.org> Date: Sat, 24 Jul 2004 01:58:41 -0400 From: "Tom McLaughlin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 cc: rael@vectorstar.net Subject: ports/69518: Update Port: textproc/sagasu 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: Sat, 24 Jul 2004 06:02:30 -0000 >Number: 69518 >Category: ports >Synopsis: Update Port: textproc/sagasu 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: Sat Jul 24 06:00:44 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tom McLaughlin >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD 5.2-CURRENT #0: Tue Jul 20 02:50:04 EDT 2004 root@compass.straycat.dhs.org:/usr/obj/usr/src/sys/COMPASS >Description: Attached patch updates sagasu to 2.0.6. Tested and runs fine on both 4.10 and -CURRENT. Maintainer is CC'ed on PR. >How-To-Repeat: >Fix: --- sagasu-2.0.6.diff begins here --- diff -Nur sagasu.orig/Makefile sagasu/Makefile --- sagasu.orig/Makefile Mon Apr 5 04:10:10 2004 +++ sagasu/Makefile Sat Jul 24 01:37:59 2004 @@ -5,8 +5,7 @@ # $FreeBSD: ports/textproc/sagasu/Makefile,v 1.5 2004/04/05 03:29:50 marcus Exp $ PORTNAME= sagasu -PORTVERSION= 2.0.5 -PORTREVISION= 2 +PORTVERSION= 2.0.6 CATEGORIES= textproc gnome MASTER_SITES= http://www3.sympatico.ca/sarrazip/dev/ \ http://demian.dyndns.org/src/ @@ -26,7 +25,5 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} -post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ;' ${WRKSRC}/configure .include diff -Nur sagasu.orig/distinfo sagasu/distinfo --- sagasu.orig/distinfo Wed Mar 31 04:10:55 2004 +++ sagasu/distinfo Sat Jul 24 01:29:18 2004 @@ -1,2 +1,2 @@ -MD5 (sagasu-2.0.5.tar.gz) = 9c0eeac7bb3591b4abb3e8ce9f3ac932 -SIZE (sagasu-2.0.5.tar.gz) = 288761 +MD5 (sagasu-2.0.6.tar.gz) = aa76b9ecaf9be537d5485aad39c40437 +SIZE (sagasu-2.0.6.tar.gz) = 282513 --- sagasu-2.0.6.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:02: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 7436316A4CE; Sat, 24 Jul 2004 06:02:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54AA143D39; Sat, 24 Jul 2004 06:02:56 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6O62u9k048596; Sat, 24 Jul 2004 06:02:56 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O62uXe048592; Sat, 24 Jul 2004 06:02:56 GMT (envelope-from ijliao) Date: Sat, 24 Jul 2004 06:02:56 GMT From: Ying-Chieh Liao Message-Id: <200407240602.i6O62uXe048592@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nik@FreeBSD.org Subject: Re: ports/69514: [PATCH] rtcw fetch fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 06:02:56 -0000 Synopsis: [PATCH] rtcw fetch fix Responsible-Changed-From-To: freebsd-ports-bugs->nik Responsible-Changed-By: ijliao Responsible-Changed-When: Sat Jul 24 06:02:49 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69514 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:05: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 B42F416A4CE; Sat, 24 Jul 2004 06:05:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 921C943D53; Sat, 24 Jul 2004 06:05:54 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6O65sKb052161; Sat, 24 Jul 2004 06:05:54 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O65sRq052157; Sat, 24 Jul 2004 06:05:54 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 06:05:54 GMT From: Sergey Matveychuk Message-Id: <200407240605.i6O65sRq052157@freefall.freebsd.org> To: leeym@utopia.leeym.com, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69516: fix port: misc/matrix-kmod X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 06:05:54 -0000 Synopsis: fix port: misc/matrix-kmod State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Sat Jul 24 06:05:11 GMT 2004 State-Changed-Why: Waiting for maintainer approving http://www.freebsd.org/cgi/query-pr.cgi?pr=69516 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:08: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 92ACA16A4CE; Sat, 24 Jul 2004 06:08:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7109D43D1F; Sat, 24 Jul 2004 06:08:58 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6O68wMo052560; Sat, 24 Jul 2004 06:08:58 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O68wFY052556; Sat, 24 Jul 2004 06:08:58 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 06:08:58 GMT From: Sergey Matveychuk Message-Id: <200407240608.i6O68wFY052556@freefall.freebsd.org> To: tmclaugh@sdf.lonestar.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69518: Update Port: textproc/sagasu 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: Sat, 24 Jul 2004 06:08:58 -0000 Synopsis: Update Port: textproc/sagasu to 2.0.6 State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Sat Jul 24 06:08:20 GMT 2004 State-Changed-Why: Waiting for a maintainer approvement http://www.freebsd.org/cgi/query-pr.cgi?pr=69518 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06: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 51E0F16A4CE for ; Sat, 24 Jul 2004 06:10:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3098143D46 for ; Sat, 24 Jul 2004 06:10:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O6APTI052625 for ; Sat, 24 Jul 2004 06:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O6APT1052624; Sat, 24 Jul 2004 06:10:25 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 06:10:25 GMT Message-Id: <200407240610.i6O6APT1052624@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/69516: fix port: misc/matrix-kmod 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: Sat, 24 Jul 2004 06:10:26 -0000 The following reply was made to PR ports/69516; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, leeym@utopia.leeym.com, strijar@urai.ru Cc: Subject: Re: ports/69516: fix port: misc/matrix-kmod Date: Sat, 24 Jul 2004 10:04:26 +0400 2maintainer: approve or disprove it please. -- Sem. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06: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 9CC5216A4CE for ; Sat, 24 Jul 2004 06:10:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75C9E43D1F for ; Sat, 24 Jul 2004 06:10:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O6AQaN052638 for ; Sat, 24 Jul 2004 06:10:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O6AQPq052637; Sat, 24 Jul 2004 06:10:26 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 06:10:26 GMT Resent-Message-Id: <200407240610.i6O6AQPq052637@freefall.freebsd.org> 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 4E8A716A4CE for ; Sat, 24 Jul 2004 06:07:36 +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 19C7543D46 for ; Sat, 24 Jul 2004 06:07:36 +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 02DFB106C00; Sat, 24 Jul 2004 14:07:33 +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 23601-05; Sat, 24 Jul 2004 14:07:32 +0800 (CST) Received: by FreeBSD.csie.NCTU.edu.tw (Postfix, from userid 1038) id 9107A106BEB; Sat, 24 Jul 2004 14:07:32 +0800 (CST) Message-Id: <20040724060732.9107A106BEB@FreeBSD.csie.NCTU.edu.tw> Date: Sat, 24 Jul 2004 14:07:32 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: clsung@dragon2.net Subject: ports/69519: fix port: chinese/qterm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Cheng-Lung Sung List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 06:10:26 -0000 >Number: 69519 >Category: ports >Synopsis: fix port: chinese/qterm >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 06:10:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-RELEASE i386 >Organization: FreeBSD @ Taiwan >Environment: FreeBSD sungsung.csie.nctu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Wed Jun 9 11:27:45 CST 2004 root@sungsung.csie.nctu.edu.tw:/usr/obj/usr/src/sys/SUNGSUNG i386 >Description: - unbroken port - use QString::null instead of "" >How-To-Repeat: >Fix: diff -ruN /usr/ports/chinese/qterm/Makefile ./qterm/Makefile --- /usr/ports/chinese/qterm/Makefile Sat Jul 3 05:31:40 2004 +++ ./qterm/Makefile Sat Jul 24 14:04:13 2004 @@ -26,10 +26,6 @@ .include -.if ${OSVERSION} < 500000 -BROKEN= "Does not compile on FreeBSD 4.x" -.endif - pre-everything:: @${ECHO_MSG} "Define WITHOUT_PYTHON to\ disable PYTHON scripts support." @@ -39,5 +35,9 @@ ${WRKSRC}/qterm/qtermtelnet.cpp @${REINPLACE_CMD} -e 's,-lssl,-lssl -lcrypto,' \ ${WRKSRC}/configure +.if ${OSVERSION} < 500000 + @${REINPLACE_CMD} -e 's,?"":,?QString::null:,' \ + ${WRKSRC}/qterm/qtermconfig.cpp +.endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:12: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 90F8F16A4CE; Sat, 24 Jul 2004 06:12:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CA3043D41; Sat, 24 Jul 2004 06:12:09 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6O6C9xJ052769; Sat, 24 Jul 2004 06:12:09 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O6C9X9052765; Sat, 24 Jul 2004 06:12:09 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 06:12:09 GMT From: Sergey Matveychuk Message-Id: <200407240612.i6O6C9X9052765@freefall.freebsd.org> To: tmclaugh@sdf.lonestar.org, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69513: Update port: mail/ripmime to 1.3.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: Sat, 24 Jul 2004 06:12:09 -0000 Synopsis: Update port: mail/ripmime to 1.3.2.2 State-Changed-From-To: open->feedback State-Changed-By: sem State-Changed-When: Sat Jul 24 06:11:24 GMT 2004 State-Changed-Why: Waiting a maintainer approvement http://www.freebsd.org/cgi/query-pr.cgi?pr=69513 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:13: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 308BA16A4CE; Sat, 24 Jul 2004 06:13:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FD5043D49; Sat, 24 Jul 2004 06:13:56 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6O6DtUs055140; Sat, 24 Jul 2004 06:13:55 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O6Dt45055136; Sat, 24 Jul 2004 06:13:55 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 06:13:55 GMT From: Sergey Matveychuk Message-Id: <200407240613.i6O6Dt45055136@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/69512: OPTIONS and NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 06:13:56 -0000 Synopsis: OPTIONS and NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 06:12:53 GMT 2004 Responsible-Changed-Why: portmgr territory http://www.freebsd.org/cgi/query-pr.cgi?pr=69512 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 06:19: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 2548916A4CE; Sat, 24 Jul 2004 06:19:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0634743D4C; Sat, 24 Jul 2004 06:19:06 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6O6J5CU064248; Sat, 24 Jul 2004 06:19:05 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O6J5Sh064244; Sat, 24 Jul 2004 06:19:05 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 06:19:05 GMT From: Sergey Matveychuk Message-Id: <200407240619.i6O6J5Sh064244@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69504: [NEW PORT] net-mgmt/nrg: "NRG does visualizing network and resource utilization data" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 06:19:06 -0000 Synopsis: [NEW PORT] net-mgmt/nrg: "NRG does visualizing network and resource utilization data" Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 06:18:58 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=69504 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07:00: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 E1E9216A4CE for ; Sat, 24 Jul 2004 07:00:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2D5543D41 for ; Sat, 24 Jul 2004 07:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O70eSk036069 for ; Sat, 24 Jul 2004 07:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O70ekv036068; Sat, 24 Jul 2004 07:00:40 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 07:00:40 GMT Resent-Message-Id: <200407240700.i6O70ekv036068@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aaron Dalton Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3198E16A4CE for ; Sat, 24 Jul 2004 06:53:03 +0000 (GMT) Received: from priv-edtnes27.telusplanet.net (outbound04.telus.net [199.185.220.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD34443D2F for ; Sat, 24 Jul 2004 06:53:02 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from d137-186-216-226.abhsia.telus.net ([137.186.216.226]) by priv-edtnes27.telusplanet.netESMTP <20040724065302.ECNF12165.priv-edtnes27.telusplanet.net@d137-186-216-226.abhsia.telus.net>; Sat, 24 Jul 2004 00:53:02 -0600 Message-Id: <200407240054.10740.aaron@daltons.ca> Date: Sat, 24 Jul 2004 00:54:10 -0600 From: Aaron Dalton To: FreeBSD-gnats-submit@FreeBSD.org cc: aaron@daltons.ca Subject: ports/69520: Update port: security/doorman - This shell archive replaces pr-69213 which has not yet been processed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 07:00:41 -0000 >Number: 69520 >Category: ports >Synopsis: Update port: security/doorman - This shell archive replaces pr >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 07:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Aaron Dalton >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: FreeBSD galan.daltons.ca 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Sun Jun 27 22:48:19 MDT 2004 root@galan.daltons.ca:/usr/src/sys/i386/compile/GALAN i386 >Description: Brings Doorman to the most recent version which now includes firewall scripts for Open, Net, and FreeBSD. This update also adds LSOF as both a run and build dependency. >How-To-Repeat: >Fix: --- submission.txt 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: # # doorman # doorman/Makefile # doorman/distinfo # doorman/pkg-descr # doorman/pkg-message # doorman/pkg-plist # echo c - doorman mkdir -p doorman > /dev/null 2>&1 echo x - doorman/Makefile sed 's/^X//' >doorman/Makefile << 'END-of-doorman/Makefile' X# New ports collection makefile for: doorman X# Date created: 16 July 2004 X# Whom: Aaron Dalton X# X# $FreeBSD$ X# X XPORTNAME= doorman XPORTVERSION= 0.7 XCATEGORIES= security XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= doorman XEXTRACT_SUFX= .tgz X XMAINTAINER= aaron@daltons.ca XCOMMENT= A Port Knocking implementation, both daemon and client X XBUILD_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof XRUN_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof X XMAN1= knock.1 XMAN5= knockcf.5 doormand.cf.5 guestlist.5 XMAN8= doormand.8 X#MANCOMPRESSED= yes X XGNU_CONFIGURE= yes X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-doorman/Makefile echo x - doorman/distinfo sed 's/^X//' >doorman/distinfo << 'END-of-doorman/distinfo' XMD5 (doorman-0.7.tgz) = 2fc68973fca5f93ddfbf976e840a87c5 XSIZE (doorman-0.7.tgz) = 138617 END-of-doorman/distinfo echo x - doorman/pkg-descr sed 's/^X//' >doorman/pkg-descr << 'END-of-doorman/pkg-descr' XThis project allows a server to run silently, invisibly, with all TCP ports Xclosed... except to those who know... the secret knock! X XWWW: http://doorman.sourceforge.net/ X X- Aaron Dalton Xaaron@daltons.ca END-of-doorman/pkg-descr echo x - doorman/pkg-message sed 's/^X//' >doorman/pkg-message << 'END-of-doorman/pkg-message' X X****************************************************************************** X XTo configure Doorman, please edit the files guestlist and doormand.cf found in X /usr/local/etc/doormand. Documentation can be found using: X X $ man guestlist X $ man doormand.cf X Xor by visiting the Doorman website at http://doorman.sourceforge.net. X X****************************************************************************** END-of-doorman/pkg-message echo x - doorman/pkg-plist sed 's/^X//' >doorman/pkg-plist << 'END-of-doorman/pkg-plist' Xbin/knock Xetc/doormand/doormand.cf.EXAMPLE Xetc/doormand/guestlist.EXAMPLE Xetc/doormand/ipchains_add Xetc/doormand/ipchains_delete Xetc/doormand/ipf_add Xetc/doormand/ipf_delete Xetc/doormand/ipfw_add Xetc/doormand/ipfw_delete Xetc/doormand/iptables_add Xetc/doormand/iptables_delete Xetc/doormand/pfctl_add Xetc/doormand/pfctl_delete Xsbin/doormand X@dirrm etc/doormand END-of-doorman/pkg-plist exit --- submission.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: 69213 which has not yet been processed From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07: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 395F916A4CE; Sat, 24 Jul 2004 07:11:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18FA543D2D; Sat, 24 Jul 2004 07:11:26 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6O7BPXm040232; Sat, 24 Jul 2004 07:11:25 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O7BPKB040228; Sat, 24 Jul 2004 07:11:25 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 07:11:25 GMT From: Mark Linimon Message-Id: <200407240711.i6O7BPKB040228@freefall.freebsd.org> To: aaron@daltons.ca, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69213: New Port: security/doorman - A Portknocking implementation< X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 07:11:26 -0000 Synopsis: New Port: security/doorman - A Portknocking implementation< State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 07:10:55 GMT 2004 State-Changed-Why: Superceded by ports/69520. http://www.freebsd.org/cgi/query-pr.cgi?pr=69213 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07:36: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 1E93116A4CE; Sat, 24 Jul 2004 07:36:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F216343D41; Sat, 24 Jul 2004 07:36:56 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6O7aurV042593; Sat, 24 Jul 2004 07:36:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O7auuW042589; Sat, 24 Jul 2004 07:36:56 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 07:36:56 GMT From: Mark Linimon Message-Id: <200407240736.i6O7auuW042589@freefall.freebsd.org> To: tmseck@netcologne.de, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69480: Re: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 07:36:57 -0000 Synopsis: Re: ERROR: squid-2.5.STABLE6-ldap_helpers.patch not found State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 07:36:15 GMT 2004 State-Changed-Why: Misfiled followup to ports/69477, already closed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 24 07:36:15 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=69480 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07: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 6CA2316A4CF for ; Sat, 24 Jul 2004 07:40:18 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 458BD43D5D for ; Sat, 24 Jul 2004 07:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O7eI5w042731 for ; Sat, 24 Jul 2004 07:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O7eIQj042730; Sat, 24 Jul 2004 07:40:18 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 07:40:18 GMT Resent-Message-Id: <200407240740.i6O7eIQj042730@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Francois Tigeot Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F08F16A4CE for ; Sat, 24 Jul 2004 07:37:29 +0000 (GMT) Received: from ares.wolfpond.org (ns1.wolfpond.org [62.212.96.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 467B243D49 for ; Sat, 24 Jul 2004 07:37:27 +0000 (GMT) (envelope-from ftigeot@wolfpond.org) Received: from aoi.wolfpond.org (aoi.wolfpond.org [IPv6:2001:7a8:24db:1:20c:76ff:feb4:27e1]) by ares.wolfpond.org (8.12.10/8.12.10) with ESMTP id i6O7bPNf082806 for ; Sat, 24 Jul 2004 09:37:25 +0200 (CEST) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (localhost [127.0.0.1]) by aoi.wolfpond.org (8.12.11/8.12.11) with ESMTP id i6O7bWV3032150 for ; Sat, 24 Jul 2004 09:37:32 +0200 (CEST) (envelope-from ftigeot@aoi.wolfpond.org) Received: (from ftigeot@localhost) by aoi.wolfpond.org (8.12.11/8.12.11/Submit) id i6O7bWgU032149; Sat, 24 Jul 2004 09:37:32 +0200 (CEST) (envelope-from ftigeot) Message-Id: <200407240737.i6O7bWgU032149@aoi.wolfpond.org> Date: Sat, 24 Jul 2004 09:37:32 +0200 (CEST) From: Francois Tigeot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69521: [patch] graphics/libgphoto2 fails to download pictures on amd64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Francois Tigeot List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 07:40:18 -0000 >Number: 69521 >Category: ports >Synopsis: [patch] graphics/libgphoto2 fails to download pictures on amd64 >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: Sat Jul 24 07:40:17 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Francois Tigeot >Release: FreeBSD 5.2-CURRENT amd64 >Organization: >Environment: System: FreeBSD aoi.wolfpond.org 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sun Jun 27 22:03:09 CEST 2004 ftigeot@aoi.wolfpond.org:/usr/obj/usr/src/sys/AOI amd64 libgphoto2-2.1.4_1 >Description: On a FreeBSD/amd64 machine libgphoto2 is unable to download full-size pictures from an USB camera. >How-To-Repeat: Plug a digital camera and try to download a full-size picture with one of graphics/libgphoto2 front-ends such as graphics/digikam. >Fix: Put the following patch in graphics/libgphoto2/files and recompile the port. --- patch-libgphoto2::gphoto2-filesys.c begins here --- --- libgphoto2/gphoto2-filesys.c.orig Sun Jan 18 20:46:59 2004 +++ libgphoto2/gphoto2-filesys.c Thu Jul 22 07:55:25 2004 @@ -1920,7 +1920,7 @@ #elif HAVE_SYSCTL && (__FreeBSD__ || __NetBSD__ || __OpenBSD__ || __APPLE__ ) int mib[2] = { CTL_HW, HW_PHYSMEM }; - int value; + unsigned long value; size_t valuelen = sizeof(value); *free=0; if (sysctl(mib, 2 , &value, &valuelen, NULL, 0) == -1) { --- patch-libgphoto2::gphoto2-filesys.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07:41: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 90BEE16A4D2; Sat, 24 Jul 2004 07:41:42 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F91643D5E; Sat, 24 Jul 2004 07:41:42 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6O7fg1B042836; Sat, 24 Jul 2004 07:41:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O7ff1X042830; Sat, 24 Jul 2004 07:41:41 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 07:41:41 GMT From: Mark Linimon Message-Id: <200407240741.i6O7ff1X042830@freefall.freebsd.org> To: estartu@augusta.de, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69485: Re: Update port: www/zope security update to zope-2.7.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, 24 Jul 2004 07:41:42 -0000 Synopsis: Re: Update port: www/zope security update to zope-2.7.2 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 07:40:59 GMT 2004 State-Changed-Why: Misfiled followup to ports/69476, which already seems to contain this patch. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 24 07:40:59 GMT 2004 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=69485 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07:47: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 D179A16A4CE; Sat, 24 Jul 2004 07:47:05 +0000 (GMT) Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B94A43D39; Sat, 24 Jul 2004 07:47:05 +0000 (GMT) (envelope-from udo.schweigert@siemens.com) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by thoth.sbs.de (8.12.6/8.12.6) with ESMTP id i6O7l41j004047; Sat, 24 Jul 2004 09:47:04 +0200 Received: from mars.cert.siemens.com (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.7/8.11.7) with ESMTP id i6O7l3G11100; Sat, 24 Jul 2004 09:47:03 +0200 (MEST) Received: from alaska.cert.siemens.com (reims.mchp.siemens.de [139.23.202.134]) mail/cert.mc.pre,v 1.61 2004/06/20 16:46:46 mailadm Exp $) with ESMTP id i6O7l3qF051078; Sat, 24 Jul 2004 09:47:03 +0200 (CEST) Received: from alaska.cert.siemens.com (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.17 2004/05/08 20:26:28 ust Exp $) with ESMTP id i6O7l3Nk063518; Sat, 24 Jul 2004 09:47:03 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.com) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id i6O7l3bm030606; Sat, 24 Jul 2004 09:47:03 +0200 (CEST) (envelope-from ust) Date: Sat, 24 Jul 2004 09:47:03 +0200 From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040724074703.GA98010@alaska.cert.siemens.com> Mail-Followup-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <200407200840.i6K8e38P040739@alaska.cert.siemens.com> <200407200840.i6K8eMlt013459@freefall.freebsd.org> <20040723154600.GA32490@alaska.cert.siemens.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040723154600.GA32490@alaska.cert.siemens.com> X-Operating-System: FreeBSD 4.10-RELEASE-p2 User-Agent: Mutt/1.5.6i Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 07:47:06 -0000 Here's another patch for security/nessus/Makfile to be applied after the big upgrade patch to 2.0.12. It fixes handling of the different gtk versions. Index: Makefile =================================================================== RCS file: /home/ncvs/work/ports/nessus/Makefile,v retrieving revision 1.80 diff -u -r1.80 Makefile --- Makefile 23 Jul 2004 15:18:59 -0000 1.80 +++ Makefile 24 Jul 2004 07:42:35 -0000 @@ -30,7 +30,10 @@ .include -.if ${HAVE_GNOME:Mgtk12}!="" +.if ${HAVE_GNOME:Mgtk20}!="" +USE_GNOME+= gtk20 +PKGNAMESUFFIX= -gtk2 +.elif ${HAVE_GNOME:Mgtk12}!="" USE_GNOME+= gtk12 PKGNAMESUFFIX= -gtk .else -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 München / Germany | email : Udo.Schweigert@siemens.com SCD2, certificates | http://scd.siemens.com/db4/lookUp?tcgid=ZZZZZZYG From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07: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 11B7D16A4CF for ; Sat, 24 Jul 2004 07:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0531243D3F for ; Sat, 24 Jul 2004 07:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O7oJff043037 for ; Sat, 24 Jul 2004 07:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O7oJb2043036; Sat, 24 Jul 2004 07:50:19 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 07:50:19 GMT Resent-Message-Id: <200407240750.i6O7oJb2043036@freefall.freebsd.org> 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 659CD16A4CE for ; Sat, 24 Jul 2004 07:46:49 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 5811243D48 for ; Sat, 24 Jul 2004 07:46:48 +0000 (GMT) (envelope-from h.eichmann@gmx.de) Received: (qmail 2594 invoked by uid 65534); 24 Jul 2004 07:46:46 -0000 Received: from pD9EC1E62.dip.t-dialin.net (EHLO [192.168.254.42]) (217.236.30.98) by mail.gmx.net (mp005) with SMTP; 24 Jul 2004 09:46:46 +0200 Message-Id: <200407240950.24562.h.eichmann@gmx.de> Date: Sat, 24 Jul 2004 08:50:24 +0100 From: Heiner To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69522: Port upgrade: x11-fm/krusader to 1.40 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 07:50:20 -0000 >Number: 69522 >Category: ports >Synopsis: Port upgrade: x11-fm/krusader to 1.40 >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 Jul 24 07:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Heiner Eichmann >Release: FreeBSD 4.10-STABLE i386 >Organization: Sirius Cybernetics Corp. >Environment: FreeBSD 7of9.unimatrix-zero.borg 4.10-STABLE FreeBSD 4.10-STABLE #1: Sun Jun 20 14:49:25 CEST 2004 root@7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL >Description: Upgrade to 1.40 >How-To-Repeat: >Fix: see attached diff --Boundary-00=_AThABFmiBnaPGJg Content-Type: text/x-diff; charset="iso-8859-1"; name="diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="diff" diff -urN ../../x11-fm/krusader/Makefile ./Makefile --- ../../x11-fm/krusader/Makefile Mon Apr 5 05:30:23 2004 +++ ./Makefile Thu Jul 22 20:31:38 2004 @@ -2,12 +2,11 @@ # Date created: 21-04-2003 # Whom: Heiner # -# $FreeBSD: ports/x11-fm/krusader/Makefile,v 1.6 2004/04/05 03:30:23 marcus Exp $ +# $FreeBSD: /repoman/r/pcvs/ports/x11-fm/krusader/Makefile,v 1.6 2004/04/05 03:30:23 marcus Exp $ # PORTNAME= krusader -PORTVERSION= 1.30 -PORTREVISION= 2 +PORTVERSION= 1.40 CATEGORIES= x11-fm kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=krusader diff -urN ../../x11-fm/krusader/distinfo ./distinfo --- ../../x11-fm/krusader/distinfo Wed Apr 14 22:36:12 2004 +++ ./distinfo Thu Jul 22 20:34:44 2004 @@ -1,2 +1,2 @@ -MD5 (krusader-1.30.tar.gz) = a4f248257f7b30d995caa4dcb014d1ca -SIZE (krusader-1.30.tar.gz) = 2134612 +MD5 (krusader-1.40.tar.gz) = 9fe6f4ccdd9b8a5a1ff2e331ba449ff8 +SIZE (krusader-1.40.tar.gz) = 2630534 diff -urN ../../x11-fm/krusader/pkg-descr ./pkg-descr --- ../../x11-fm/krusader/pkg-descr Mon Dec 8 07:15:05 2003 +++ ./pkg-descr Sat Jul 24 09:08:33 2004 @@ -1,23 +1,27 @@ -Krusader is a File Manager for KDE, patterned after old-school managers like -Midnight Commander and Norton Commander. It features basically all your -file-management needs, plus extensive archive handling, supporting many archive -formats, mounted filesystems support, ftp, and much much more. +Krusader is an advanced twin-panel (commander-style) file-manager for KDE 3.x +(similar to Midnight or Total Commander) but with many extras. It provides all +the file-management features you could possibly want. +Plus: extensive archive handling, mounted filesystem support, FTP, advanced +search module, viewer/editor, directory synchronisation, file content +comparisons, powerful batch renaming and much much more. +It supports the following archive formats: tar, zip, bzip2, gzip, rar, ace, +arj and rpm and can handle other KIOSlaves such as smb:// or fish:// +It is (almost) completely customizable, very user friendly, fast and looks +great on your desktop! :-) -List of changes of MAJOR changes from 1.20 version: -* Creating new files with SHIFT+F4 -* Tabbed - browsing! (click the middle or right mouse button on a folder) -* a new view dialog, click SHIFT-F3 -* Panel swapping by Ctrl+U -* Right click menu, can now "open" multiple files (with the same mimetype) -* Updates to the search module -* A new command line widget, with many tweaks (ctrl+enter,ctrl+shift+enter,...) -* run-in-terminal keeps the terminal open. -* A new bookmark system is here! courtasy of Jan Halasa -* In-place renaming (thanks to Heiner Eichmann) -* New KIO slaves to handle archives. -* Support for multi-file properties. -* Krusader now obeys KDE's date time format +Many things changed since 1.30, so here's some hightlights: +* Configuring custom color for the panel (much requested feature) +* Quick-mode for mountman (just press and HOLD the mountman icon) +* Panel is now configurable (which columns to show, show icons or not ...) +* Support for single-click selection mode +* New toolbar for the panel +* a Locate frontend +* A new konfigurator (thanks to csaba) +* New quick-search mode for the panel (thanks to heiner) +* Ability to edit/view files from the search results window +* A folder-history button, a-la-total commander. thanks to Hans Loffler +* Synchronizer (thanks csaba) +* File splitter WWW: http://krusader.sourceforge.net - -Heiner (h.eichmann@gmx.de) +Heiner (h.eichmann@gmx.de) \ No newline at end of file diff -urN ../../x11-fm/krusader/pkg-message ./pkg-message --- ../../x11-fm/krusader/pkg-message Sat May 17 23:29:17 2003 +++ ./pkg-message Sat Jul 24 08:38:49 2004 @@ -1,5 +1,4 @@ -If you would like to use more archivers that this -program supports, install the following ports: +Krusder supports the following additional archivers: archivers/zip archivers/unzip @@ -9,3 +8,10 @@ archivers/unace archivers/unarj archivers/rpm + +To use 'update DB' button in the locate dialog, open Settings->Konfigurator, +Dependencies and write '/usr/libexec/locate.updatedb' into the field 'updatedb'. + +Krusader allows to diff file with kdiff3 (textproc/kdiff3) or kompare (devel/kdesdk). + +Krusader supports krename (sysutils/krename) for renaming operations. diff -urN ../../x11-fm/krusader/pkg-plist ./pkg-plist --- ../../x11-fm/krusader/pkg-plist Mon Dec 8 07:15:05 2003 +++ ./pkg-plist Thu Jul 22 20:57:57 2004 @@ -10,6 +10,7 @@ share/apps/krusader/icons/hicolor/16x16/actions/kr_bookman.png share/apps/krusader/icons/hicolor/16x16/actions/kr_bookmark.png share/apps/krusader/icons/hicolor/16x16/actions/kr_calc.png +share/apps/krusader/icons/hicolor/16x16/actions/kr_combine.png share/apps/krusader/icons/hicolor/16x16/actions/kr_compare.png share/apps/krusader/icons/hicolor/16x16/actions/kr_comparedirs.png share/apps/krusader/icons/hicolor/16x16/actions/kr_ftp_connect.png @@ -22,6 +23,8 @@ share/apps/krusader/icons/hicolor/16x16/actions/kr_properties.png share/apps/krusader/icons/hicolor/16x16/actions/kr_select.png share/apps/krusader/icons/hicolor/16x16/actions/kr_selectall.png +share/apps/krusader/icons/hicolor/16x16/actions/kr_split.png +share/apps/krusader/icons/hicolor/16x16/actions/kr_syncdirs.png share/apps/krusader/icons/hicolor/16x16/actions/kr_terminal.png share/apps/krusader/icons/hicolor/16x16/actions/kr_treeview.png share/apps/krusader/icons/hicolor/16x16/actions/kr_unselect.png @@ -33,6 +36,7 @@ share/apps/krusader/icons/hicolor/22x22/actions/kr_bookman.png share/apps/krusader/icons/hicolor/22x22/actions/kr_bookmark.png share/apps/krusader/icons/hicolor/22x22/actions/kr_calc.png +share/apps/krusader/icons/hicolor/22x22/actions/kr_combine.png share/apps/krusader/icons/hicolor/22x22/actions/kr_compare.png share/apps/krusader/icons/hicolor/22x22/actions/kr_comparedirs.png share/apps/krusader/icons/hicolor/22x22/actions/kr_ftp_connect.png @@ -45,6 +49,8 @@ share/apps/krusader/icons/hicolor/22x22/actions/kr_properties.png share/apps/krusader/icons/hicolor/22x22/actions/kr_select.png share/apps/krusader/icons/hicolor/22x22/actions/kr_selectall.png +share/apps/krusader/icons/hicolor/22x22/actions/kr_split.png +share/apps/krusader/icons/hicolor/22x22/actions/kr_syncdirs.png share/apps/krusader/icons/hicolor/22x22/actions/kr_terminal.png share/apps/krusader/icons/hicolor/22x22/actions/kr_treeview.png share/apps/krusader/icons/hicolor/22x22/actions/kr_unselect.png @@ -56,8 +62,10 @@ share/apps/krusader/icons/hicolor/32x32/actions/kr_bookman.png share/apps/krusader/icons/hicolor/32x32/actions/kr_bookmark.png share/apps/krusader/icons/hicolor/32x32/actions/kr_calc.png +share/apps/krusader/icons/hicolor/32x32/actions/kr_combine.png share/apps/krusader/icons/hicolor/32x32/actions/kr_compare.png share/apps/krusader/icons/hicolor/32x32/actions/kr_comparedirs.png +share/apps/krusader/icons/hicolor/32x32/actions/kr_dependencies.png share/apps/krusader/icons/hicolor/32x32/actions/kr_ftp_connect.png share/apps/krusader/icons/hicolor/32x32/actions/kr_ftp_disconnect.png share/apps/krusader/icons/hicolor/32x32/actions/kr_ftp_new.png @@ -68,6 +76,8 @@ share/apps/krusader/icons/hicolor/32x32/actions/kr_properties.png share/apps/krusader/icons/hicolor/32x32/actions/kr_select.png share/apps/krusader/icons/hicolor/32x32/actions/kr_selectall.png +share/apps/krusader/icons/hicolor/32x32/actions/kr_split.png +share/apps/krusader/icons/hicolor/32x32/actions/kr_syncdirs.png share/apps/krusader/icons/hicolor/32x32/actions/kr_terminal.png share/apps/krusader/icons/hicolor/32x32/actions/kr_treeview.png share/apps/krusader/icons/hicolor/32x32/actions/kr_unselect.png @@ -105,9 +115,18 @@ share/doc/HTML/en/krusader/terminalEmu.png share/doc/HTML/en/krusader/toolbar.png share/doc/HTML/en/krusader/using-krusader.sgml +share/icons/hicolor/16x16/apps/krusader.png +share/icons/hicolor/16x16/apps/krusader_red.png +share/icons/hicolor/22x22/apps/krusader.png +share/icons/hicolor/22x22/apps/krusader_red.png share/icons/hicolor/32x32/apps/krusader.png -share/icons/hicolor/32x32/apps/krusader2.png -share/icons/locolor/16x16/apps/krusader.png +share/icons/hicolor/32x32/apps/krusader_red.png +share/icons/hicolor/48x48/apps/krusader.png +share/icons/hicolor/48x48/apps/krusader_red.png +share/icons/hicolor/64x64/apps/krusader.png +share/icons/hicolor/64x64/apps/krusader_red.png +share/locale/bg/LC_MESSAGES/krusader.mo +share/locale/ca/LC_MESSAGES/krusader.mo share/locale/cs/LC_MESSAGES/krusader.mo share/locale/de/LC_MESSAGES/krusader.mo share/locale/dk/LC_MESSAGES/krusader.mo @@ -122,9 +141,7 @@ share/locale/ru/LC_MESSAGES/krusader.mo share/locale/sk/LC_MESSAGES/krusader.mo share/locale/sv/LC_MESSAGES/krusader.mo -share/mimelnk/application/x-ace.desktop -share/nls/POSIX -share/nls/en_US.US-ASCII +share/locale/zh_CN/LC_MESSAGES/krusader.mo share/services/krarc.protocol @dirrm share/doc/HTML/en/krusader @dirrm share/apps/krusader/icons/hicolor/32x32/actions --Boundary-00=_AThABFmiBnaPGJg-- >Release-Note: >Audit-Trail: >Unformatted: --Boundary-00=_AThABFmiBnaPGJg Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline X-send-pr-version: send-pr 3.113 X-GNATS-Notify: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 07: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 3B10D16A4D0 for ; Sat, 24 Jul 2004 07:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3472143D3F for ; Sat, 24 Jul 2004 07:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O7oNpu043056 for ; Sat, 24 Jul 2004 07:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O7oMhL043045; Sat, 24 Jul 2004 07:50:22 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 07:50:22 GMT Message-Id: <200407240750.i6O7oMhL043045@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Udo Schweigert Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Udo Schweigert List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 07:50:23 -0000 The following reply was made to PR ports/69333; it has been noted by GNATS. From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/69333: maintainer-update of security/nessus-* Date: Sat, 24 Jul 2004 09:47:03 +0200 Here's another patch for security/nessus/Makfile to be applied after the big upgrade patch to 2.0.12. It fixes handling of the different gtk versions. Index: Makefile =================================================================== RCS file: /home/ncvs/work/ports/nessus/Makefile,v retrieving revision 1.80 diff -u -r1.80 Makefile --- Makefile 23 Jul 2004 15:18:59 -0000 1.80 +++ Makefile 24 Jul 2004 07:42:35 -0000 @@ -30,7 +30,10 @@ .include -.if ${HAVE_GNOME:Mgtk12}!="" +.if ${HAVE_GNOME:Mgtk20}!="" +USE_GNOME+= gtk20 +PKGNAMESUFFIX= -gtk2 +.elif ${HAVE_GNOME:Mgtk12}!="" USE_GNOME+= gtk12 PKGNAMESUFFIX= -gtk .else -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 München / Germany | email : Udo.Schweigert@siemens.com SCD2, certificates | http://scd.siemens.com/db4/lookUp?tcgid=ZZZZZZYG From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 09: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 699B516A4D8 for ; Sat, 24 Jul 2004 09:30:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F18743D41 for ; Sat, 24 Jul 2004 09:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O9UThe056110 for ; Sat, 24 Jul 2004 09:30:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O9USFw056090; Sat, 24 Jul 2004 09:30:29 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 09:30:29 GMT Resent-Message-Id: <200407240930.i6O9USFw056090@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Wille Harald Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C7F816A4CE for ; Sat, 24 Jul 2004 09:20:55 +0000 (GMT) Received: from mail.creativenet.de (mail.creativenet.de [194.162.37.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 994B043D1F for ; Sat, 24 Jul 2004 09:20:53 +0000 (GMT) (envelope-from harald.wille@students.jku.at) Received: (qmail 15165 invoked by uid 1014); 24 Jul 2004 09:20:51 -0000 Received: from harald.wille@students.jku.at by 2-1ha-de by uid 1002 with qmail-scanner-1.20 (clamscan: 0.67. Clear:RC:1(81.223.63.85):. Processed in 1.773579 secs); 24 Jul 2004 09:20:51 -0000 Received: from 81-223-63-85.dynamic.adsl-line.inode.at (HELO oasis.wipe.at) (81.223.63.85) by mail.creativenet.de with SMTP; 24 Jul 2004 09:20:49 -0000 Received: from oasis.wipe.at (localhost [127.0.0.1]) by oasis.wipe.at (8.12.10/8.12.10) with ESMTP id i6O9Kioq014815 for ; Sat, 24 Jul 2004 11:20:44 +0200 (CEST) (envelope-from iqd@oasis.wipe.at) Received: (from iqd@localhost) by oasis.wipe.at (8.12.10/8.12.10/Submit) id i6O9KibQ014814; Sat, 24 Jul 2004 11:20:44 +0200 (CEST) (envelope-from iqd) Message-Id: <200407240920.i6O9KibQ014814@oasis.wipe.at> Date: Sat, 24 Jul 2004 11:20:44 +0200 (CEST) From: Wille Harald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69523: misc/wmweather+ Update to version 2.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Wille Harald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 09:30:29 -0000 >Number: 69523 >Category: ports >Synopsis: misc/wmweather+ Update to version 2.9 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 09:30:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Wille Harald >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: FreeBSD oasis.wipe.at 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #5: Thu Jul 22 11:36:40 CEST 2004 root@oasis.wipe.at:/usr/obj/usr/src/sys/HYPERDRIVE i386 >Description: Upgrade port to version 2.9 >How-To-Repeat: >Fix: --- patch.diff begins here --- diff -ruN wmweather+.orig/Makefile wmweather+/Makefile --- wmweather+.orig/Makefile Wed Feb 4 06:07:46 2004 +++ wmweather+/Makefile Thu Jul 22 19:20:27 2004 @@ -5,8 +5,7 @@ # $FreeBSD: ports/misc/wmweather+/Makefile,v 1.3 2004/02/04 05:07:46 marcus Exp $ PORTNAME= wmweather+ -PORTVERSION= 2.4 -PORTREVISION= 2 +PORTVERSION= 2.9 CATEGORIES= misc windowmaker MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= wmweatherplus diff -ruN wmweather+.orig/distinfo wmweather+/distinfo --- wmweather+.orig/distinfo Thu Mar 25 00:14:11 2004 +++ wmweather+/distinfo Thu Jul 22 19:20:27 2004 @@ -1,2 +1,2 @@ -MD5 (wmweather+-2.4.tar.gz) = f09d1b31da5fd171b27715121e2d9662 -SIZE (wmweather+-2.4.tar.gz) = 216938 +MD5 (wmweather+-2.9.tar.gz) = ede58d7ed589d5c41b9b68a2703a8f7d +SIZE (wmweather+-2.9.tar.gz) = 292955 diff -ruN wmweather+.orig/files/patch-convert.c wmweather+/files/patch-convert.c --- wmweather+.orig/files/patch-convert.c Fri Apr 11 22:37:09 2003 +++ wmweather+/files/patch-convert.c Thu Jul 22 19:20:27 2004 @@ -1,6 +1,16 @@ --- convert.c.orig Sun Sep 22 22:00:53 2002 -+++ convert.c Fri Apr 11 02:07:44 2003 -@@ -52,7 +52,7 @@ ++++ convert.c Thu Jul 22 19:04:18 2004 +@@ -18,6 +18,9 @@ + */ + + #include ++#ifndef NAN ++#define NAN (0.0/0.0) ++#endif + #if TM_IN_SYS_TIME + # if TIME_WITH_SYS_TIME + # include +@@ -52,7 +55,7 @@ if(temp_C==999 || dewpt_C==999) return 999; f=1782.75*(dewpt_C-temp_C)/((237.7+dewpt_C)*(237.7+temp_C)); @@ -9,7 +19,7 @@ } int rh_F(int temp_F, int dewpt_F){ -@@ -61,7 +61,7 @@ +@@ -61,7 +64,7 @@ if(temp_F==999 || dewpt_F==999) return 999; f=3208.95*(dewpt_F-temp_F)/((395.86+dewpt_F)*(395.86+temp_F)); @@ -18,7 +28,7 @@ } int heatindex_C(int temp_C, int rh){ -@@ -75,7 +75,7 @@ +@@ -75,7 +78,7 @@ temp2=temp_C*temp_C; rh2=rh*rh; @@ -27,7 +37,7 @@ #endif } -@@ -88,9 +88,9 @@ +@@ -88,9 +91,9 @@ temp3=temp2*temp_F; rh2=rh*rh; rh3=rh2*rh; @@ -39,7 +49,7 @@ #endif } -@@ -106,14 +106,14 @@ +@@ -106,14 +109,14 @@ ret=35.74 + 0.6215*temp_F + (-35.75 + 0.4275*temp_F)*pow(windspeed*50292/57875.0, 0.16); if(ret>temp_F) return temp_F; @@ -56,7 +66,7 @@ } float m2mi(int meters){ -@@ -125,27 +125,27 @@ +@@ -125,27 +128,27 @@ int knots2mph(int knots){ if(knots<0) return knots; @@ -89,7 +99,7 @@ } int knots2beaufort(int knots){ -@@ -170,12 +170,12 @@ +@@ -170,12 +173,12 @@ int temp_C2F(int temp_C){ if(temp_C==999) return 999; diff -ruN wmweather+.orig/files/patch-convert.h wmweather+/files/patch-convert.h --- wmweather+.orig/files/patch-convert.h Fri Apr 11 22:37:09 2003 +++ wmweather+/files/patch-convert.h Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- convert.h.orig Fri Sep 6 04:04:06 2002 -+++ convert.h Fri Apr 11 02:07:44 2003 -@@ -12,6 +12,8 @@ - * x<0 is used for rh, pressure, and windspeed - */ - -+#define NAN 0/0 -+ - /* Calculations */ - int rh_C(int temp_C, int dewpt_C); - int rh_F(int temp_F, int dewpt_F); diff -ruN wmweather+.orig/files/patch-moon.c wmweather+/files/patch-moon.c --- wmweather+.orig/files/patch-moon.c Fri Apr 11 22:37:09 2003 +++ wmweather+/files/patch-moon.c Thu Jul 22 19:20:46 2004 @@ -1,5 +1,5 @@ ---- moon.c.orig Sun Sep 22 22:00:53 2002 -+++ moon.c Fri Apr 11 02:07:44 2003 +--- moon.c.old Fri May 14 04:55:39 2004 ++++ moon.c Thu Jul 22 17:26:25 2004 @@ -44,7 +44,7 @@ #include "wmgeneral/wmgeneral-x11.h" diff -ruN wmweather+.orig/files/patch-subst.c wmweather+/files/patch-subst.c --- wmweather+.orig/files/patch-subst.c Fri Apr 11 22:37:09 2003 +++ wmweather+/files/patch-subst.c Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- subst.c.orig Sun Sep 22 22:00:53 2002 -+++ subst.c Fri Apr 11 02:07:44 2003 -@@ -48,7 +48,7 @@ - char *format=NULL; - size_t formatlen=0; - int flags; -- ssize_t str_start; -+ size_t str_start; - - for(i=j=0; s[i]!='\0'; i++){ - if(s[i]!='%'){ diff -ruN wmweather+.orig/files/patch-wmweather+.c wmweather+/files/patch-wmweather+.c --- wmweather+.orig/files/patch-wmweather+.c Fri Apr 11 22:37:09 2003 +++ wmweather+/files/patch-wmweather+.c Thu Jul 22 19:20:49 2004 @@ -1,6 +1,6 @@ ---- wmweather+.c.orig Sun Mar 23 01:04:41 2003 -+++ wmweather+.c Fri Apr 11 02:07:45 2003 -@@ -103,7 +103,7 @@ +--- wmweather+.c.old Tue Mar 30 05:17:20 2004 ++++ wmweather+.c Thu Jul 22 17:26:54 2004 +@@ -104,7 +104,7 @@ /********************************** * Prototypes **********************************/ @@ -9,20 +9,3 @@ void printversion(void); int readconf(char *file); int parse_option(char *option, char *value); -@@ -671,12 +671,12 @@ - F("Please specify a METAR station.\n See http://www.nws.noaa.gov/tg/siteloc.shtml\n"); - } - if(latitude==999){{ -- time_t t=0; - int flag=0; -- -- localtime(&t); -+ time_t t=time(NULL); -+ struct tm *tm; -+ tm=gmtime(&t); - latitude=0; -- longitude=timezone/240; -+ longitude=tm->tm_gmtoff/240; - if(longitude<0){ - flag=1; - longitude=-longitude; diff -ruN wmweather+.orig/pkg-descr wmweather+/pkg-descr --- wmweather+.orig/pkg-descr Fri Apr 11 22:37:09 2003 +++ wmweather+/pkg-descr Thu Jul 22 19:20:49 2004 @@ -5,4 +5,4 @@ You will need to look up the METAR code for your city (a standard code used in aviation) -WWW: http://www.nws.noaa.gov/tg/siteloc.shtml +WWW: http://sourceforge.net/projects/wmweatherplus/ --- patch.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 09:39: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 CE7A416A4CF for ; Sat, 24 Jul 2004 09:39:11 +0000 (GMT) Received: from mail.creativenet.de (mail.creativenet.de [194.162.37.11]) by mx1.FreeBSD.org (Postfix) with SMTP id CC03443D46 for ; Sat, 24 Jul 2004 09:39:08 +0000 (GMT) (envelope-from harald.wille@students.jku.at) Received: (qmail 7075 invoked by uid 1014); 24 Jul 2004 09:39:08 -0000 Received: from harald.wille@students.jku.at by 2-1ha-de by uid 1002 with qmail-scanner-1.20 (clamscan: 0.67. Clear:RC:1(81.223.63.104):. Processed in 0.147201 secs); 24 Jul 2004 09:39:08 -0000 Received: from 81-223-63-104.dynamic.adsl-line.inode.at (HELO oasis.wipe.at) (81.223.63.104) by mail.creativenet.de with SMTP; 24 Jul 2004 09:39:07 -0000 Received: from oasis.wipe.at (localhost [127.0.0.1]) by oasis.wipe.at (8.12.10/8.12.10) with ESMTP id i6O9d3oq015084; Sat, 24 Jul 2004 11:39:03 +0200 (CEST) (envelope-from iqd@oasis.wipe.at) Received: (from iqd@localhost) by oasis.wipe.at (8.12.10/8.12.10/Submit) id i6O9d3ms015083; Sat, 24 Jul 2004 11:39:03 +0200 (CEST) (envelope-from iqd) Date: Sat, 24 Jul 2004 11:39:03 +0200 From: Wille Harald To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20040724093903.GB15036@oasis.wipe.at> References: <200407240920.i6O9KibQ014814@oasis.wipe.at> <200407240930.i6O9USqo056042@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407240930.i6O9USqo056042@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i X-Scanned-By: MIMEDefang 2.43 Subject: Re: ports/69523: misc/wmweather+ Update to version 2.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, 24 Jul 2004 09:39:11 -0000 I forgot to mention to delte following files: files/patch-convert.h files/patch-subst.c Thank you. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 09: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 6DA1C16A4CE for ; Sat, 24 Jul 2004 09:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54AD543D53 for ; Sat, 24 Jul 2004 09:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O9eSX1057517 for ; Sat, 24 Jul 2004 09:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O9eSuM057516; Sat, 24 Jul 2004 09:40:28 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 09:40:28 GMT Message-Id: <200407240940.i6O9eSuM057516@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Wille Harald Subject: Re: ports/69195: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Wille Harald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 09:40:28 -0000 The following reply was made to PR ports/69195; it has been noted by GNATS. From: Wille Harald To: Volker Stolz Cc: freebsd-gnats-submit@freebsd.org, mhsin@mhsin.org, harald.wille@students.jku.at Subject: Re: ports/69195: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes Date: Sat, 24 Jul 2004 11:36:35 +0200 --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello ! First i apologize for the late review, but i had some ISP problems. NAN is only defined in math.h on -CURRENT, not on the 4.x Releases. So you have to define NAN yourself (or additionally include math.h). NAN 0/0 segfaults, cause of the usage of gcc 3.x (also on STABLE if you use gcc 3.x). NAN (0.0/0.0) works on both gcc versions. (POSIX definition) The math.h version on STABLE does not have the C99 definitions like on CURRENT. I already worked on the newest wmweather+ version (2.9). math.h is already included in the new port version, but nevertheless you have to define NAN cause of the missing C99 definitions on STABLE (and i dont know when it will be MFC). I attached the patch for this problem and sent an upgrade PR for version 2.9 (see http://www.freebsd.org/cgi/query-pr.cgi?pr=69523 for the new 2.9) Delete the file "files/patch-convert.h" (not used any more cause math.h is already defined in convert.c and apply the patch. Greets, Harald --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-Makefile.diff" --- wmweather+/Makefile.orig Wed Feb 4 06:07:46 2004 +++ wmweather+/Makefile Sat Jul 24 10:49:51 2004 @@ -6,7 +6,7 @@ PORTNAME= wmweather+ PORTVERSION= 2.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= misc windowmaker MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= wmweatherplus --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch_wmp24.diff" --- wmweather+/files/patch-convert.c.orig Fri Apr 11 22:37:09 2003 +++ wmweather+/files/patch-convert.c Fri Jul 23 00:26:46 2004 @@ -1,6 +1,16 @@ --- convert.c.orig Sun Sep 22 22:00:53 2002 -+++ convert.c Fri Apr 11 02:07:44 2003 -@@ -52,7 +52,7 @@ ++++ convert.c Thu Jul 22 23:46:02 2004 +@@ -18,6 +18,9 @@ + */ + + #include ++#ifndef NAN ++#define NAN (0.0/0.0) ++#endif + #if TM_IN_SYS_TIME + # if TIME_WITH_SYS_TIME + # include +@@ -52,7 +55,7 @@ if(temp_C==999 || dewpt_C==999) return 999; f=1782.75*(dewpt_C-temp_C)/((237.7+dewpt_C)*(237.7+temp_C)); @@ -9,7 +19,7 @@ } int rh_F(int temp_F, int dewpt_F){ -@@ -61,7 +61,7 @@ +@@ -61,7 +64,7 @@ if(temp_F==999 || dewpt_F==999) return 999; f=3208.95*(dewpt_F-temp_F)/((395.86+dewpt_F)*(395.86+temp_F)); @@ -18,7 +28,7 @@ } int heatindex_C(int temp_C, int rh){ -@@ -75,7 +75,7 @@ +@@ -75,7 +78,7 @@ temp2=temp_C*temp_C; rh2=rh*rh; @@ -27,7 +37,7 @@ #endif } -@@ -88,9 +88,9 @@ +@@ -88,9 +91,9 @@ temp3=temp2*temp_F; rh2=rh*rh; rh3=rh2*rh; @@ -39,7 +49,7 @@ #endif } -@@ -106,14 +106,14 @@ +@@ -106,14 +109,14 @@ ret=35.74 + 0.6215*temp_F + (-35.75 + 0.4275*temp_F)*pow(windspeed*50292/57875.0, 0.16); if(ret>temp_F) return temp_F; @@ -56,7 +66,7 @@ } float m2mi(int meters){ -@@ -125,27 +125,27 @@ +@@ -125,27 +128,27 @@ int knots2mph(int knots){ if(knots<0) return knots; @@ -89,7 +99,7 @@ } int knots2beaufort(int knots){ -@@ -170,12 +170,12 @@ +@@ -170,12 +173,12 @@ int temp_C2F(int temp_C){ if(temp_C==999) return 999; --IS0zKkzwUGydFO0o-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 09: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 3F4F716A4CE for ; Sat, 24 Jul 2004 09:40:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 213F643D53 for ; Sat, 24 Jul 2004 09:40:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O9eXqu057542 for ; Sat, 24 Jul 2004 09:40:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O9eW9Y057541; Sat, 24 Jul 2004 09:40:32 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 09:40:32 GMT Message-Id: <200407240940.i6O9eW9Y057541@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Wille Harald Subject: Re: ports/69523: misc/wmweather+ Update to version 2.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Wille Harald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 09:40:33 -0000 The following reply was made to PR ports/69523; it has been noted by GNATS. From: Wille Harald To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/69523: misc/wmweather+ Update to version 2.9 Date: Sat, 24 Jul 2004 11:39:03 +0200 I forgot to mention to delte following files: files/patch-convert.h files/patch-subst.c Thank you. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 09: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 6786B16A4CF for ; Sat, 24 Jul 2004 09:50:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EA7743D41 for ; Sat, 24 Jul 2004 09:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6O9oPID057885 for ; Sat, 24 Jul 2004 09:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6O9oPxc057884; Sat, 24 Jul 2004 09:50:25 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 09:50:25 GMT Resent-Message-Id: <200407240950.i6O9oPxc057884@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, statue@statue.netlab.cse.yzu.edu.tw Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9381416A4CE for ; Sat, 24 Jul 2004 09:46:46 +0000 (GMT) Received: from statue.netlab.cse.yzu.edu.tw (statue.netlab.cse.yzu.edu.tw [140.138.150.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 139BE43D41 for ; Sat, 24 Jul 2004 09:46:46 +0000 (GMT) (envelope-from statue@statue.netlab.cse.yzu.edu.tw) Received: from statue.netlab.cse.yzu.edu.tw (localhost.netlab.cse.yzu.edu.tw [127.0.0.1])i6O9kgDT015876 for ; Sat, 24 Jul 2004 17:46:42 +0800 (CST) (envelope-from statue@statue.netlab.cse.yzu.edu.tw) Received: (from statue@localhost)i6O9kfaW015875; Sat, 24 Jul 2004 17:46:41 +0800 (CST) (envelope-from statue) Message-Id: <200407240946.i6O9kfaW015875@statue.netlab.cse.yzu.edu.tw> Date: Sat, 24 Jul 2004 17:46:41 +0800 (CST) From: statue To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69524: New port: chinese/BBMan X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: statue@statue.netlab.cse.yzu.edu.tw List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 09:50:25 -0000 >Number: 69524 >Category: ports >Synopsis: New port: chinese/BBMan >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 Jul 24 09:50:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD statue.netlab.cse.yzu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Tue May 25 22:47:12 GMT 2004 root@perseus.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: BBMam is a BBS client for X Window System. WWW: http://nccu.edu.tw/92753008/BBMan/ >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: # # BBMan/ # BBMan/Makefile # BBMan/distinfo # BBMan/pkg-descr # BBMan/pkg-plist # echo c - BBMan/ mkdir -p BBMan/ > /dev/null 2>&1 echo x - BBMan/Makefile sed 's/^X//' >BBMan/Makefile << 'END-of-BBMan/Makefile' X# New ports collection makefile for: zh-BBMan X# Date created: 24 July 2004 X# Whom: Shen Chuan-Hsing X# X# $FreeBSD$ X# X XPORTNAME= BBMan XPORTVERSION= 1.7.1 XCATEGORIES= chinese x11 XMASTER_SITES= http://nccu.edu.tw/92753008/BBMan/ XDISTNAME= BBMan-src-v1-7-1 XEXTRACT_SUFX= .zip X XMAINTAINER= ports@FreeBSD.ORG XCOMMENT= BBMan is a BBS client for X Window System X XLIB_DEPENDS= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 X XUSE_ZIP= yes XWRKSRC= ${WRKDIR}/BBMan XUSE_X_PREFIX= yes X Xdo-build: X cd ${WRKSRC} && g++ main.cpp `wxgtk2-2.4-config --libs --cxxflags` -O2 -o BBMan X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/BBMan ${PREFIX}/bin/BBMan X X.include END-of-BBMan/Makefile echo x - BBMan/distinfo sed 's/^X//' >BBMan/distinfo << 'END-of-BBMan/distinfo' XMD5 (BBMan-src-v1-7-1.zip) = 4948f782d2cda4e044ff1b59254e3f45 XSIZE (BBMan-src-v1-7-1.zip) = 87650 END-of-BBMan/distinfo echo x - BBMan/pkg-descr sed 's/^X//' >BBMan/pkg-descr << 'END-of-BBMan/pkg-descr' XBBMam is a BBS client for X Window System. X XWWW: http://nccu.edu.tw/92753008/BBMan/ END-of-BBMan/pkg-descr echo x - BBMan/pkg-plist sed 's/^X//' >BBMan/pkg-plist << 'END-of-BBMan/pkg-plist' Xbin/BBMan END-of-BBMan/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 10:00: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 B24D516A4CE for ; Sat, 24 Jul 2004 10:00:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B70D43D31 for ; Sat, 24 Jul 2004 10:00:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OA0VT0058144 for ; Sat, 24 Jul 2004 10:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OA0V38058143; Sat, 24 Jul 2004 10:00:31 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 10:00:31 GMT Resent-Message-Id: <200407241000.i6OA0V38058143@freefall.freebsd.org> 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 70A7216A4CE for ; Sat, 24 Jul 2004 09:59:39 +0000 (GMT) Received: from ib.com.ua (ib.com.ua [217.144.67.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A0B843D2D for ; Sat, 24 Jul 2004 09:59:38 +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.12.10/8.12.10) with ESMTP id i6O9uvNx076512 for ; Sat, 24 Jul 2004 12:56:57 +0300 (EEST) (envelope-from toha@ib.com.ua) Received: (from toha@localhost) by ib.com.ua (8.12.10/8.12.10/Submit) id i6O9uqrf076511; Sat, 24 Jul 2004 12:56:52 +0300 (EEST) (envelope-from toha) Message-Id: <200407240956.i6O9uqrf076511@ib.com.ua> Date: Sat, 24 Jul 2004 12:56:52 +0300 (EEST) From: Anton Yudin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69525: Upgrading jakarta-commons-{pool,dbcp} 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: Sat, 24 Jul 2004 10:00:32 -0000 >Number: 69525 >Category: ports >Synopsis: Upgrading jakarta-commons-{pool,dbcp} >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 10:00:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Anton Yudin >Release: FreeBSD 4.9-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD .ua 4.9-RELEASE-p10 FreeBSD 4.9-RELEASE-p10 #0: Fri Jul 16 10:53:40 EEST 2004 root@.ua:/usr/src/sys/compile/ i386 >Description: Upgrade jakarta-commons-pool-1.1 to jakarta-commons-pool-1.2 Upgrade jakarta-commons-dbcp-1.1 to jakarta-commons-dbcp-1.2.1 >How-To-Repeat: >Fix: apply this patch. diff -ruN java/jakarta-commons-pool.orig/Makefile java/jakarta-commons-pool/Makefile --- java/jakarta-commons-pool.orig/Makefile Sat Jul 24 12:34:10 2004 +++ java/jakarta-commons-pool/Makefile Sat Jul 24 12:34:20 2004 @@ -6,7 +6,7 @@ # PORTNAME= commons-pool -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= java MASTER_SITES= http://www.apache.org/dist/jakarta/commons/pool/source/ PKGNAMEPREFIX= jakarta- diff -ruN java/jakarta-commons-pool.orig/distinfo java/jakarta-commons-pool/distinfo --- java/jakarta-commons-pool.orig/distinfo Sat Jul 24 12:34:10 2004 +++ java/jakarta-commons-pool/distinfo Sat Jul 24 12:36:14 2004 @@ -1,2 +1,2 @@ -MD5 (jakarta/commons-pool-1.1-src.tar.gz) = 344b568101f56cf5bc73d43e6fbe5892 -SIZE (jakarta/commons-pool-1.1-src.tar.gz) = 46476 +MD5 (jakarta/commons-pool-1.2-src.tar.gz) = e7dc9f479c6a4260f84f6751b434295a +SIZE (jakarta/commons-pool-1.2-src.tar.gz) = 269500 diff -ruN java/jakarta-commons-dbcp.orig/Makefile java/jakarta-commons-dbcp/Makefile --- java/jakarta-commons-dbcp.orig/Makefile Sat Jul 24 12:42:53 2004 +++ java/jakarta-commons-dbcp/Makefile Sat Jul 24 12:43:07 2004 @@ -6,7 +6,7 @@ # PORTNAME= commons-dbcp -PORTVERSION= 1.1 +PORTVERSION= 1.2.1 CATEGORIES= java MASTER_SITES= ${MASTER_SITE_APACHE_JAKARTA} MASTER_SITE_SUBDIR= commons/dbcp/source diff -ruN java/jakarta-commons-dbcp.orig/distinfo java/jakarta-commons-dbcp/distinfo --- java/jakarta-commons-dbcp.orig/distinfo Sat Jul 24 12:42:53 2004 +++ java/jakarta-commons-dbcp/distinfo Sat Jul 24 12:44:38 2004 @@ -1,2 +1,2 @@ -MD5 (jakarta/commons-dbcp-1.1-src.tar.gz) = 0b18468ef288406ea6d073c35abd9311 -SIZE (jakarta/commons-dbcp-1.1-src.tar.gz) = 85728 +MD5 (jakarta/commons-dbcp-1.2.1-src.tar.gz) = b7336a1d34ea0e8e9c39b67af510c46d +SIZE (jakarta/commons-dbcp-1.1-src.tar.gz) = 578573 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 10: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 0C1AD16A4CE for ; Sat, 24 Jul 2004 10:10:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00B6843D1D for ; Sat, 24 Jul 2004 10:10:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OAAUVZ062468 for ; Sat, 24 Jul 2004 10:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OAAUUa062467; Sat, 24 Jul 2004 10:10:30 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 10:10:30 GMT Resent-Message-Id: <200407241010.i6OAAUUa062467@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Tom McLaughlin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3560116A4CE for ; Sat, 24 Jul 2004 10:04:29 +0000 (GMT) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 4B3DE43D41 for ; Sat, 24 Jul 2004 10:04:26 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 8147 invoked from network); 24 Jul 2004 10:04:25 -0000 Received: from compass.straycat.dhs.org (192.168.1.32) by alexandria.straycat.dhs.org with SMTP; 24 Jul 2004 10:04:25 -0000 Message-Id: <1090663465.0@compass.straycat.dhs.org> Date: Sat, 24 Jul 2004 06:04:25 -0400 From: "Tom McLaughlin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 cc: rui@ruilopes.com Subject: ports/69526: Port Update: textproc/meld - fix unfetchable distfile and update to latest 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, 24 Jul 2004 10:10:31 -0000 >Number: 69526 >Category: ports >Synopsis: Port Update: textproc/meld - fix unfetchable distfile and update to latest 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: Sat Jul 24 10:10:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tom McLaughlin >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD 5.2-CURRENT #0: Tue Jul 20 02:50:04 EDT 2004 root@compass.straycat.dhs.org:/usr/obj/usr/src/sys/COMPASS >Description: Meld has moved it's distfile from Source Forge to the Gnome mirrors. Current version of the port is no longer fetchable becuase of this move. Attached patch corrects distfile location and updates it to the latest release. Maintainer is CC'ed on PR. >How-To-Repeat: >Fix: --- meld-0.9.4.1.diff begins here --- diff -u meld.orig/Makefile meld/Makefile --- meld.orig/Makefile Mon Apr 5 04:10:07 2004 +++ meld/Makefile Sat Jul 24 06:01:35 2004 @@ -6,12 +6,10 @@ # PORTNAME= meld -PORTVERSION= 0.9.1 -PORTREVISION= 2 +PORTVERSION= 0.9.4.1 CATEGORIES= textproc devel python -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= meld -EXTRACT_SUFX= .tgz +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.9 MAINTAINER= rui@ruilopes.com COMMENT= GNOME 2 visual diff and merge tool @@ -31,7 +29,7 @@ s,(libdir := )(.*),\1${PREFIX}/share,g ; \ s,( glade2/pixmaps/\*\.){xpm\,png},\1xpm\1png,g' ${WRKSRC}/GNUmakefile @${REINPLACE_CMD} -E 's,(.+)(install )-D (-m 644 \$$\^ \$$@),\1mkdir -m 755 -p $$(shell dirname $$@) \&\& \2\3,g' ${WRKSRC}/po/GNUmakefile - @${REINPLACE_CMD} -e 's,^Path=.*$$,Icon=${DATADIR}/glade2/pixmaps/icon.png,' ${WRKSRC}/meld.desktop + @${REINPLACE_CMD} -e 's,^Icon=.*$$,Icon=${DATADIR}/glade2/pixmaps/icon.png,' ${WRKSRC}/meld.desktop.in post-install: ${INSTALL_DATA} ${WRKSRC}/meld.desktop ${PREFIX}/share/gnome/applications diff -u meld.orig/distinfo meld/distinfo --- meld.orig/distinfo Wed Mar 31 04:10:50 2004 +++ meld/distinfo Sat Jul 24 04:47:38 2004 @@ -1,2 +1,2 @@ -MD5 (meld-0.9.1.tgz) = 1dfd1205c405bc263fc49ea1d92d47bf -SIZE (meld-0.9.1.tgz) = 118854 +MD5 (meld-0.9.4.1.tar.gz) = fd468b01e3fef2a4e6c4c388ddeb3a24 +SIZE (meld-0.9.4.1.tar.gz) = 361915 diff -u meld.orig/pkg-plist meld/pkg-plist --- meld.orig/pkg-plist Fri Dec 5 04:07:44 2003 +++ meld/pkg-plist Sat Jul 24 05:10:26 2004 @@ -1,33 +1,33 @@ bin/meld +share/application-registry/meld.applications +share/applications/meld.desktop +%%DOCSDIR%%/manual.html +%%DOCSDIR%%/stylesheet.css share/gnome/applications/meld.desktop +share/locale/cs/LC_MESSAGES/meld.mo +share/locale/de/LC_MESSAGES/meld.mo +share/locale/en_CA/LC_MESSAGES/meld.mo +share/locale/en_GB/LC_MESSAGES/meld.mo +share/locale/fr/LC_MESSAGES/meld.mo +share/locale/ja/LC_MESSAGES/meld.mo +share/locale/ko/LC_MESSAGES/meld.mo +share/locale/nl/LC_MESSAGES/meld.mo +share/locale/pt/LC_MESSAGES/meld.mo +share/locale/pt_BR/LC_MESSAGES/meld.mo +share/locale/sr/LC_MESSAGES/meld.mo +share/locale/sr@Latn/LC_MESSAGES/meld.mo share/meld/cvsview.py share/meld/cvsview.pyc +share/meld/cvsview.pyo share/meld/diffutil.py share/meld/diffutil.pyc +share/meld/diffutil.pyo share/meld/dirdiff.py share/meld/dirdiff.pyc +share/meld/dirdiff.pyo share/meld/filediff.py share/meld/filediff.pyc -share/meld/gnomeglade.py -share/meld/gnomeglade.pyc -share/meld/meldapp.py -share/meld/meldapp.pyc -share/meld/melddoc.py -share/meld/melddoc.pyc -share/meld/misc.py -share/meld/misc.pyc -share/meld/paths.py -share/meld/paths.pyc -share/meld/prefs.py -share/meld/prefs.pyc -share/meld/task.py -share/meld/task.pyc -share/meld/tree.py -share/meld/tree.pyc -share/meld/undo.py -share/meld/undo.pyc -share/locale/en_IE/LC_MESSAGES/meld.mo -share/locale/fr/LC_MESSAGES/meld.mo +share/meld/filediff.pyo share/meld/glade2/cvsview.glade share/meld/glade2/dirdiff.glade share/meld/glade2/filediff.glade @@ -40,11 +40,13 @@ share/meld/glade2/pixmaps/close.xpm share/meld/glade2/pixmaps/cvs-add-16.png share/meld/glade2/pixmaps/cvs-commit-16.png +share/meld/glade2/pixmaps/cvs-icon-small.png share/meld/glade2/pixmaps/cvs-icon.png share/meld/glade2/pixmaps/cvs-remove-16.png share/meld/glade2/pixmaps/cvs-update-16.png share/meld/glade2/pixmaps/icon.png -share/meld/glade2/pixmaps/logo.png +share/meld/glade2/pixmaps/svn-icon-small.png +share/meld/glade2/pixmaps/svn-icon.png share/meld/glade2/pixmaps/tree-file-changed.png share/meld/glade2/pixmaps/tree-file-new.png share/meld/glade2/pixmaps/tree-file-newer.png @@ -52,11 +54,50 @@ share/meld/glade2/pixmaps/tree-folder-changed.png share/meld/glade2/pixmaps/tree-folder-new.png share/meld/glade2/pixmaps/tree-folder-normal.png -%%DOCSDIR%%/manual.html -%%DOCSDIR%%/stylesheet.css -@dirrm %%DOCSDIR%% -@unexec (rmdir %D/share/locale/en_IE/LC_MESSAGES && rmdir %D/share/locale/en_IE) 2>/dev/null || true -@unexec (rmdir %D/share/locale/fr/LC_MESSAGES && rmdir %D/share/locale/fr) 2>/dev/null || true +share/meld/gnomeglade.py +share/meld/gnomeglade.pyc +share/meld/gnomeglade.pyo +share/meld/meldapp.py +share/meld/meldapp.pyc +share/meld/meldapp.pyo +share/meld/melddoc.py +share/meld/melddoc.pyc +share/meld/melddoc.pyo +share/meld/misc.py +share/meld/misc.pyc +share/meld/misc.pyo +share/meld/paths.py +share/meld/paths.pyc +share/meld/paths.pyo +share/meld/prefs.py +share/meld/prefs.pyc +share/meld/prefs.pyo +share/meld/svnview.py +share/meld/svnview.pyc +share/meld/svnview.pyo +share/meld/task.py +share/meld/task.pyc +share/meld/task.pyo +share/meld/tree.py +share/meld/tree.pyc +share/meld/tree.pyo +share/meld/undo.py +share/meld/undo.pyc +share/meld/undo.pyo +share/pixmaps/meld.png @dirrm share/meld/glade2/pixmaps @dirrm share/meld/glade2 @dirrm share/meld +@unexec (rmdir %D/share/locale/sr@Latn/LC_MESSAGES && rmdir %D/share/locale/sr@Latn) 2>/dev/null || true +@unexec (rmdir %D/share/locale/sr/LC_MESSAGES && rmdir %D/share/locale/sr) 2>/dev/null || true +@unexec (rmdir %D/share/locale/pt_BR/LC_MESSAGES && rmdir %D/share/locale/pt_BR) 2>/dev/null || true +@unexec (rmdir %D/share/locale/pt/LC_MESSAGES && rmdir %D/share/locale/pt) 2>/dev/null || true +@unexec (rmdir %D/share/locale/nl/LC_MESSAGES && rmdir %D/share/locale/nl) 2>/dev/null || true +@unexec (rmdir %D/share/locale/ko/LC_MESSAGES && rmdir %D/share/locale/ko) 2>/dev/null || true +@unexec (rmdir %D/share/locale/ja/LC_MESSAGES && rmdir %D/share/locale/ja) 2>/dev/null || true +@unexec (rmdir %D/share/locale/fr/LC_MESSAGES && rmdir %D/share/locale/fr) 2>/dev/null || true +@unexec (rmdir %D/share/locale/en_GB/LC_MESSAGES && rmdir %D/share/locale/en_GB) 2>/dev/null || true +@unexec (rmdir %D/share/locale/en_CA/LC_MESSAGES && rmdir %D/share/locale/en_CA) 2>/dev/null || true +@unexec (rmdir %D/share/locale/de/LC_MESSAGES && rmdir %D/share/locale/de) 2>/dev/null || true +@unexec (rmdir %D/share/locale/cs/LC_MESSAGES && rmdir %D/share/locale/cs) 2>/dev/null || true +@dirrm %%DOCSDIR%% --- meld-0.9.4.1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 10: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 7B49D16A4D0 for ; Sat, 24 Jul 2004 10:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F09A43D45 for ; Sat, 24 Jul 2004 10:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OAKKYj062751 for ; Sat, 24 Jul 2004 10:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OAKJqV062750; Sat, 24 Jul 2004 10:20:20 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 10:20:20 GMT Message-Id: <200407241020.i6OAKJqV062750@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas-Martin Seck Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 10:20:20 -0000 The following reply was made to PR ports/69487; it has been noted by GNATS. From: Thomas-Martin Seck To: Oliver Eikemeier Cc: bug-followup@freebsd.org Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 Date: Sat, 24 Jul 2004 12:16:55 +0200 * Oliver Eikemeier (eikemeier@fillmore-labs.com): > Thomas-Martin Seck wrote: > > >This sounds plausible, too, unfortunately I do not have an LDAP server > >to test against and squid bug #1018 says "with OpenLDAP 2.1 it works" > >and when I asked Edwin Groothuis for feedback he said the vendor patch > >would make no difference, the problem depended on the OpenLDAP version. > > squid bug #1018 also tells you to do > > /usr/local/libexec/squid/squid_ldap_auth -b o=BarNet,c=AU -f uid=%s -h > ldap.barnet.com.au Thanks, I overlooked that. I assumed that the test scenario was a local one and did not look closer. > I'm CC'ed on the squid bug, which he will hopefully grab soon. The > latest patch should break LDAP authentication, on all platforms no > matter which OpenLDAP version used, so you can expect to see messages on > the Squid lists soon. Ok. I guess we can leave the port as is for now and close this PR. I'd like to see the patch's information removed from distinfo, though. Would you mind committing this part? Thanks! From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 10: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 53D2F16A4CE for ; Sat, 24 Jul 2004 10:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35CE243D2F for ; Sat, 24 Jul 2004 10:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OAURQl063063 for ; Sat, 24 Jul 2004 10:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OAUQs6063034; Sat, 24 Jul 2004 10:30:27 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 10:30:27 GMT Resent-Message-Id: <200407241030.i6OAUQs6063034@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Tom McLaughlin" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C1FB16A4CE for ; Sat, 24 Jul 2004 10:23:08 +0000 (GMT) Received: from straycat.dhs.org (h0050da134090.ne.client2.attbi.com [24.91.148.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 840E443D4C for ; Sat, 24 Jul 2004 10:23:07 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: (qmail 30388 invoked from network); 24 Jul 2004 10:23:07 -0000 Received: from compass.straycat.dhs.org (192.168.1.32) by alexandria.straycat.dhs.org with SMTP; 24 Jul 2004 10:23:07 -0000 Message-Id: <1090664587.0@compass.straycat.dhs.org> Date: Sat, 24 Jul 2004 06:23:07 -0400 From: "Tom McLaughlin" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.3.3 cc: perky@FreeBSD.org Subject: ports/69527: Port Update: net/liferea - Recommended bug fix release 0.5.2b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 10:30:27 -0000 >Number: 69527 >Category: ports >Synopsis: Port Update: net/liferea - Recommended bug fix release 0.5.2b >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: Sat Jul 24 10:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Tom McLaughlin >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD 5.2-CURRENT #0: Tue Jul 20 02:50:04 EDT 2004 root@compass.straycat.dhs.org:/usr/obj/usr/src/sys/COMPASS >Description: Attached patch updates liferea to 0.5.2b which is the recommended release due to s serious bug in 0.5.2 which can potentially destroy subscription URLs. Many of my subscription URLs have already been damaged so I cannot vouch for how well this latest version fixes this bug. Maintainer is CC'ed on PR. ref: http://sourceforge.net/project/shownotes.php?release_id=255387 >How-To-Repeat: >Fix: --- liferea-0.5.2b.diff begins here --- diff -u liferea.orig/Makefile liferea/Makefile --- liferea.orig/Makefile Fri Jul 23 03:26:55 2004 +++ liferea/Makefile Sat Jul 24 05:18:22 2004 @@ -6,7 +6,7 @@ # PORTNAME= liferea -PORTVERSION= 0.5.2 +PORTVERSION= 0.5.2b CATEGORIES= net gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= liferea diff -u liferea.orig/distinfo liferea/distinfo --- liferea.orig/distinfo Fri Jul 23 03:26:55 2004 +++ liferea/distinfo Sat Jul 24 05:33:46 2004 @@ -1,2 +1,2 @@ -MD5 (liferea-0.5.2.tar.gz) = 4790c907f018e7f6c92e2b922a250ac8 -SIZE (liferea-0.5.2.tar.gz) = 913017 +MD5 (liferea-0.5.2b.tar.gz) = 320a3b93bbf9d105ba45e0ca6dedcefe +SIZE (liferea-0.5.2b.tar.gz) = 912965 --- liferea-0.5.2b.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 10: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 34BB816A4CE for ; Sat, 24 Jul 2004 10:30:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 318D243D2D for ; Sat, 24 Jul 2004 10:30:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OAUVUd063101 for ; Sat, 24 Jul 2004 10:30:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OAUVAt063099; Sat, 24 Jul 2004 10:30:31 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 10:30:31 GMT Message-Id: <200407241030.i6OAUVAt063099@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthew Seaman Subject: Re: ports/69506: phpMyAdmin-2.5.7.1 doesn?t work with php4-4.3.8_1 apache-2.0.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 10:30:31 -0000 The following reply was made to PR ports/69506; it has been noted by GNATS. From: Matthew Seaman To: Martin Waedt Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/69506: phpMyAdmin-2.5.7.1 doesn?t work with php4-4.3.8_1 apache-2.0.50 Date: Sat, 24 Jul 2004 11:26:18 +0100 --Bn2rw/3z4jIqBvZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable The fix for this problem was submitted in PR ports/69336 last Tuesday. Could someone please commit that? Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --Bn2rw/3z4jIqBvZU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBAjlKiD657aJF7eIRAllXAKCfaLdTjVuMaH2gr8afL2sbxp38cACcCiKH DSCeu6bI1DWnbMHT8Pe7JL8= =NDhN -----END PGP SIGNATURE----- --Bn2rw/3z4jIqBvZU-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 10:53: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 3765B16A4CE; Sat, 24 Jul 2004 10:53:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5B043D39; Sat, 24 Jul 2004 10:53:40 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OArdWj064991; Sat, 24 Jul 2004 10:53:40 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OArdhU064987; Sat, 24 Jul 2004 10:53:39 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 10:53:39 GMT From: Pav Lucistnik Message-Id: <200407241053.i6OArdhU064987@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perky@FreeBSD.org Subject: Re: ports/69527: Port Update: net/liferea - Recommended bug fix release 0.5.2b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 10:53:40 -0000 Synopsis: Port Update: net/liferea - Recommended bug fix release 0.5.2b Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: pav Responsible-Changed-When: Sat Jul 24 10:53:32 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69527 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 11:06: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 D21F516A4CE; Sat, 24 Jul 2004 11:06:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B610243D54; Sat, 24 Jul 2004 11:06:40 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OB6eCa069039; Sat, 24 Jul 2004 11:06:40 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OB6elD069035; Sat, 24 Jul 2004 11:06:40 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 11:06:40 GMT From: Pav Lucistnik Message-Id: <200407241106.i6OB6elD069035@freefall.freebsd.org> To: yasi@yasi.to, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69476: Update port: www/zope security update to zope-2.7.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, 24 Jul 2004 11:06:40 -0000 Synopsis: Update port: www/zope security update to zope-2.7.2 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 11:06:31 GMT 2004 State-Changed-Why: Maintainer's version committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=69476 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 11:06: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 EB9D916A4CF; Sat, 24 Jul 2004 11:06:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDED543D1D; Sat, 24 Jul 2004 11:06:58 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OB6w6M069092; Sat, 24 Jul 2004 11:06:58 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OB6w1v069088; Sat, 24 Jul 2004 11:06:58 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 11:06:58 GMT From: Pav Lucistnik Message-Id: <200407241106.i6OB6w1v069088@freefall.freebsd.org> To: rainer@ultra-secure.de, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/68716: zope doesn't work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 11:06:59 -0000 Synopsis: zope doesn't work State-Changed-From-To: feedback->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 11:06:48 GMT 2004 State-Changed-Why: This have been fixed in zope-2.7.2 http://www.freebsd.org/cgi/query-pr.cgi?pr=68716 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 11:12: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 130B716A4CE; Sat, 24 Jul 2004 11:12:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECEF943D3F; Sat, 24 Jul 2004 11:12:23 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OBCNxO069387; Sat, 24 Jul 2004 11:12:23 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OBCNF1069383; Sat, 24 Jul 2004 11:12:23 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 11:12:23 GMT From: Pav Lucistnik Message-Id: <200407241112.i6OBCNF1069383@freefall.freebsd.org> To: dmlb@FreeBSD.org, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/69470: net/isc-dhcp3-server: required_files in rc.subr incorrectly 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: Sat, 24 Jul 2004 11:12:24 -0000 Synopsis: net/isc-dhcp3-server: required_files in rc.subr incorrectly used State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Sat Jul 24 11:12:09 GMT 2004 State-Changed-Why: Asked for maintainer's approval. Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Sat Jul 24 11:12:09 GMT 2004 Responsible-Changed-Why: Track. http://www.freebsd.org/cgi/query-pr.cgi?pr=69470 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 11:21: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 0F4A616A4CE; Sat, 24 Jul 2004 11:21:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B5843D49; Sat, 24 Jul 2004 11:21:40 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OBLeOa069824; Sat, 24 Jul 2004 11:21:40 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OBLeqT069820; Sat, 24 Jul 2004 11:21:40 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 11:21:40 GMT From: Pav Lucistnik Message-Id: <200407241121.i6OBLeqT069820@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org Subject: Re: ports/69464: php4-wddx broken - php4 cannot load wddx.so X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 11:21:41 -0000 Synopsis: php4-wddx broken - php4 cannot load wddx.so Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: pav Responsible-Changed-When: Sat Jul 24 11:21:32 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69464 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 11: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 111F716A4CE for ; Sat, 24 Jul 2004 11:50:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E460B43D7B for ; Sat, 24 Jul 2004 11:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OBoMjQ072208 for ; Sat, 24 Jul 2004 11:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OBoMPq072202; Sat, 24 Jul 2004 11:50:22 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 11:50:22 GMT Resent-Message-Id: <200407241150.i6OBoMPq072202@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry A Grigorovich Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64DA816A4CE for ; Sat, 24 Jul 2004 11:41:21 +0000 (GMT) Received: from hydra.bionet.nsc.ru (hydra.bionet.nsc.ru [193.125.179.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3758743D58 for ; Sat, 24 Jul 2004 11:41:20 +0000 (GMT) (envelope-from odip@bionet.nsc.ru) Received: by hydra.bionet.nsc.ru (Postfix, from userid 1001) id EFE2A5540; Sat, 24 Jul 2004 18:41:15 +0700 (NOVST) Message-Id: <20040724114115.EFE2A5540@hydra.bionet.nsc.ru> Date: Sat, 24 Jul 2004 18:41:15 +0700 (NOVST) From: Dmitry A Grigorovich To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69528: [PATCH] samba-2.2.10 port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dmitry A Grigorovich List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 11:50:23 -0000 >Number: 69528 >Category: ports >Synopsis: [PATCH] samba-2.2.10 port >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 11:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dmitry A Grigorovich >Release: FreeBSD 4.8-RELEASE-p4 i386 >Organization: ICiG SB RAS, Novosibirsk, Russia >Environment: System: FreeBSD hydra.bionet.nsc.ru 4.8-RELEASE-p4 FreeBSD 4.8-RELEASE-p4 #4: Sat Oct 4 02:33:02 NOVST 2003 root@hydra.bionet.nsc.ru:/usr/obj/usr/src/sys/ODIP i386 >Description: There are samba-2.2.10, a fixed version of samba-2.2.9 >How-To-Repeat: None >Fix: Apply patch, reinstall port --- diff-samba-2.2.10 begins here --- diff -ur samba/Makefile samba-2.2.10/Makefile --- samba/Makefile Fri Jul 23 13:32:52 2004 +++ samba-2.2.10/Makefile Sat Jul 24 13:22:25 2004 @@ -6,8 +6,7 @@ # PORTNAME= samba -PORTVERSION= 2.2.9 -PORTREVISION= 1 +PORTVERSION= 2.2.10 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SAMBA} MASTER_SITE_SUBDIR= . old-versions @@ -29,7 +28,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A free SMB and CIFS client and server for UNIX -FORBIDDEN= "Potential buffer overruns" CONFLICTS= ja-samba-2.* samba-3.* sharity-light-1.* USE_SUBMAKE= YES diff -ur samba/distinfo samba-2.2.10/distinfo --- samba/distinfo Fri Jul 23 13:32:52 2004 +++ samba-2.2.10/distinfo Sat Jul 24 13:24:10 2004 @@ -1,5 +1,5 @@ -MD5 (samba-2.2.9.tar.gz) = 49f9e41a1876c629ae9355ed7599047f -SIZE (samba-2.2.9.tar.gz) = 5453486 +MD5 (samba-2.2.10.tar.gz) = 14033253e9ebbf3d6c1612468ad8914b +SIZE (samba-2.2.10.tar.gz) = 5503115 MD5 (samba-2.2.8a-freebsd-jail-patch-20040226.gz) = 2c036c89365a97a404dc6939c7ef99ec SIZE (samba-2.2.8a-freebsd-jail-patch-20040226.gz) = 3056 MD5 (samba-2.2.9-browsing-hacks.diff) = 39f95cdb2f9833b4eec7a05000fe2cbf --- diff-samba-2.2.10 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 12: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 D2E8416A4D0 for ; Sat, 24 Jul 2004 12:00:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1C2C43D5E for ; Sat, 24 Jul 2004 12:00:49 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OC0le5072578 for ; Sat, 24 Jul 2004 12:00:47 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OC0lrd072576; Sat, 24 Jul 2004 12:00:47 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 12:00:47 GMT Resent-Message-Id: <200407241200.i6OC0lrd072576@freefall.freebsd.org> 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 5C56416A4CE for ; Sat, 24 Jul 2004 11:53:50 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id E250743D41 for ; Sat, 24 Jul 2004 11:53:48 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) i6OBrhmH096677 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 24 Jul 2004 12:53:43 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i6OBrhgA096676; Sat, 24 Jul 2004 12:53:43 +0100 (BST) (envelope-from matthew) Message-Id: <200407241153.i6OBrhgA096676@happy-idiot-talk.infracaninophile.co.uk> Date: Sat, 24 Jul 2004 12:53:43 +0100 (BST) From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69529: [ Maintainer update ] net/phpldapadmin -- tracking bsd.php.mk changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 12:00:50 -0000 >Number: 69529 >Category: ports >Synopsis: [ Maintainer update ] net/phpldapadmin -- tracking bsd.php.mk changes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 12:00:47 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 4.10-STABLE i386 >Organization: Infracaninophile >Environment: System: FreeBSD happy-idiot-talk.infracaninophile.co.uk 4.10-STABLE FreeBSD 4.10-STABLE #79: Thu Jul 22 11:38:52 BST 2004 root@happy-idiot-talk.infracaninophile.co.uk:/usr/obj/usr/src/sys/HAPPY-IDIOT-TALK i386 >Description: This PR supercedes ports/69337 which should be closed. Changes: phpLDAPadmin doesn't work with php5, so add BROKEN_WITH_PHP=5. Add explicit dependencies required PHP extension modules: net/php4-ldap security/php4-openssl www/php4-session >How-To-Repeat: >Fix: --- phpldapadmin.diff begins here --- diff -Nur /usr/ports/net/phpldapadmin/Makefile phpldapadmin/Makefile --- /usr/ports/net/phpldapadmin/Makefile Thu May 20 17:31:29 2004 +++ phpldapadmin/Makefile Sat Jul 24 12:43:22 2004 @@ -7,7 +7,7 @@ PORTNAME= phpldapadmin PORTVERSION= 0.9.4b -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= phpldapadmin @@ -16,11 +16,15 @@ COMMENT= A set of PHP-scripts to administer LDAP servers over the web NO_BUILD= yes +USE_PHP= ldap openssl session + +BROKEN_WITH_PHP= 5 .if defined(WITH_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp PKGNAMESUFFIX= -suphp +RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp +WANT_PHP_CGI= yes PKGINST_SKEL= ${PKGDIR}/pkg-install${PKGNAMESUFFIX} PKGINSTALL= ${WRKDIR}/pkg-install${PKGNAMESUFFIX} PKGDEINST_SKEL= ${PKGDIR}/pkg-deinstall${PKGNAMESUFFIX} @@ -35,7 +39,6 @@ .else -USE_PHP= yes WANT_PHP_WEB= yes .endif diff -Nur /usr/ports/net/phpldapadmin/pkg-message phpldapadmin/pkg-message --- /usr/ports/net/phpldapadmin/pkg-message Thu May 20 17:31:30 2004 +++ phpldapadmin/pkg-message Mon Jul 19 15:29:04 2004 @@ -10,6 +10,3 @@ Alias /phpldapadmin/ "%%PREFIX%%/%%PLADIR%%/" -You will need a version of PHP with LDAP functionality enabled, -which is not the default. If necessary, enable the 'OPENLDAP' -option in the PHP port's configuration screen and reinstall. --- phpldapadmin.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 12:11:52 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 1198416A4CE; Sat, 24 Jul 2004 12:11:52 +0000 (GMT) Received: from mail.oav.net (mail01.oav.net [193.218.105.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FC2C43D1F; Sat, 24 Jul 2004 12:11:51 +0000 (GMT) (envelope-from kiwi@oav.net) Received: from localhost (nat-out.openvisp.net [193.218.105.29]) by mail01.oav.net (Postfix) with ESMTP id 8A52345067; Sat, 24 Jul 2004 14:09:41 +0200 (CEST) (envelope-from kiwi@oav.net) Received: from kaneda.oav.net ([193.218.105.29]) by localhost (kaneda.oav.net [172.31.3.1]) (amavisd-new, port 10024) with LMTP id 65653-05; Sat, 24 Jul 2004 14:11:47 +0200 (CEST) Received: from [192.168.0.7] (kiwi.oav.net [82.225.248.92]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by kaneda.oav.net (Postfix) with ESMTP id 5052E15227; Sat, 24 Jul 2004 14:11:47 +0200 (CEST) (envelope-from kiwi@oav.net) In-Reply-To: <20040723202547.36729.qmail@web11707.mail.yahoo.com> References: <20040723202547.36729.qmail@web11707.mail.yahoo.com> Mime-Version: 1.0 (Apple Message framework v618) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: Xavier Beaudouin Date: Sat, 24 Jul 2004 14:12:04 +0200 To: Eric Osterweil X-Mailer: Apple Mail (2.618) X-Virus-Scanned: by amavisd-new at kaneda.oav.net X-Spam-Status: No, hits=0 tagged_above=-999 required=6.3 tests= X-Spam-Level: cc: freebsd-ports-bugs@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: isc-dhcp3-server and OS 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, 24 Jul 2004 12:11:52 -0000 Hi Eric, I have 2 macs at home and a FreeBSD 5.2.1 DHCP server box and it works=20= like a charm for me... /Xavier Le 23 juil. 04, =E0 22:25, Eric Osterweil a =E9crit : > Hey everyone, > > I've been struggling with something that I think is a > compatibility issue for some time. I have been > running the isc-dhcp3-server for some time now. > Recently, one of the macintoshes on my network > upgraded from 10.3.3 to 10.3.4 and had their airport > extreme software move up as well. > > Basically, I've re-OSed the mac, and I can still only > get a lease from the dhcp server once in a LONG while. > What's worse is, I am able to connect to other DHCP > servers (like those built into access points). > > Does anyone have any idea why this is happening? If I > do a tcpdump on the mac, I can see it receive > information, but the lease doesn't seem to register > with the networking software. Is this a known issue > w/ OS X? > > Thanks in advance... Please reply to me directly as I > am not on this mailing list, > > Eric Osterweil > > > > =09 > __________________________________ > Do you Yahoo!? > Yahoo! Mail - 50x more storage than other providers! > http://promotions.yahoo.com/new_mail > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to=20 > "freebsd-ports-unsubscribe@freebsd.org" > -- Xavier Beaudouin - Unix System Administrator & Projects Leader. President of Kazar Organization : http://www.kazar.net/ Please visit http://caudium.net/, home of Caudium & Camas projects From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 12: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 1637F16A4CE for ; Sat, 24 Jul 2004 12:30:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04F6943D49 for ; Sat, 24 Jul 2004 12:30:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OCUS0j080171 for ; Sat, 24 Jul 2004 12:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OCUSSF080167; Sat, 24 Jul 2004 12:30:28 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 12:30:28 GMT Resent-Message-Id: <200407241230.i6OCUSSF080167@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, statue@freebsd.sinica.edu.tw Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3586416A4CE for ; Sat, 24 Jul 2004 12:21:13 +0000 (GMT) Received: from statue.netlab.cse.yzu.edu.tw (statue.netlab.cse.yzu.edu.tw [140.138.150.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B61343D48 for ; Sat, 24 Jul 2004 12:21:12 +0000 (GMT) (envelope-from statue@statue.netlab.cse.yzu.edu.tw) Received: from statue.netlab.cse.yzu.edu.tw (localhost.netlab.cse.yzu.edu.tw [127.0.0.1])i6OCLBh6027392 for ; Sat, 24 Jul 2004 20:21:11 +0800 (CST) (envelope-from statue@statue.netlab.cse.yzu.edu.tw) Received: (from statue@localhost)i6OCLA6o027391; Sat, 24 Jul 2004 20:21:10 +0800 (CST) (envelope-from statue) Message-Id: <200407241221.i6OCLA6o027391@statue.netlab.cse.yzu.edu.tw> Date: Sat, 24 Jul 2004 20:21:10 +0800 (CST) From: statue@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69530: New port: chinese/gcin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: statue@freebsd.sinica.edu.tw List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 12:30:29 -0000 >Number: 69530 >Category: ports >Synopsis: New port: chinese/gcin >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 Jul 24 12:30:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD statue.netlab.cse.yzu.edu.tw 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Tue May 25 22:47:12 GMT 2004 root@perseus.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: gcin is a Gtk Chinese INput application in X, well support in Traditional Chinese(Big5) charsets. WWW: http://www.csie.nctu.edu.tw/~cp76/gcin/ >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: # # gcin/ # gcin/Makefile # gcin/distinfo # gcin/files # gcin/pkg-descr # gcin/pkg-plist # gcin/files/extrapatch-IMdkit::lib::Makefile # gcin/files/extrapatch-Makefile # gcin/files/patch-IMdkit::Makefile # gcin/files/patch-Makefile # gcin/files/patch-configure # gcin/files/patch-tsin-util.c # gcin/files/patch-tsin.c # echo c - gcin/ mkdir -p gcin/ > /dev/null 2>&1 echo x - gcin/Makefile sed 's/^X//' >gcin/Makefile << 'END-of-gcin/Makefile' X# New ports collection makefile for: gcin X# Date created: Feb 18 2004 X# Whom: Shen Chuan-Hsing X# X# $FreeBSD$ X# X XPORTNAME= gcin XPORTVERSION= 0.1.8 XPORTNAME= gcin XCATEGORIES= chinese XMASTER_SITES= http://www.csie.nctu.edu.tw/~cp76/gcin/download/ X XMAINTAINER= ports@FreeBSD.org XCOMMENT= A triditional chinese input utility in X X XUSE_BZIP2= YES XHAS_CONFIGURE= YES XUSE_GNOME= gtk20 XUSE_GMAKE= YES X X#USE_REINPLACE= yes X X.include X X.if ${OSVERSION} < 500041 XBUILD_DEPENDS= gcc33:${PORTSDIR}/lang/gcc33 XEXTRA_PATCHES= ${FILESDIR}/extrapatch-Makefile \ X ${FILESDIR}/extrapatch-IMdkit::lib::Makefile X.endif X X.include END-of-gcin/Makefile echo x - gcin/distinfo sed 's/^X//' >gcin/distinfo << 'END-of-gcin/distinfo' XMD5 (gcin-0.1.8.tar.bz2) = 38c377ec4be9185ba1df9c9a835f850c XSIZE (gcin-0.1.8.tar.bz2) = 383452 END-of-gcin/distinfo echo c - gcin/files mkdir -p gcin/files > /dev/null 2>&1 echo x - gcin/pkg-descr sed 's/^X//' >gcin/pkg-descr << 'END-of-gcin/pkg-descr' Xgcin is a Gtk Chinese INput application in X, well support in Traditional XChinese(Big5) charsets. X XWWW: http://www.csie.nctu.edu.tw/~cp76/gcin/ END-of-gcin/pkg-descr echo x - gcin/pkg-plist sed 's/^X//' >gcin/pkg-plist << 'END-of-gcin/pkg-plist' Xbin/gcin Xlib/menu/gcin Xlib/menu/gcin-setup Xshare/gcin/table/pho.tab Xshare/gcin/table/et.kbm Xshare/gcin/table/zo.kbm Xshare/gcin/table/tsin Xshare/gcin/table/tsin.idx Xshare/gcin/table/symbol-table Xshare/icons/gcin.png Xshare/icons/gcin Xshare/icons/gcin/pin-fixed24.png Xshare/icons/gcin/pin-float16.png X@dirrm lib/menu X@dirrm share/icons X@dirrm share/gcin/table X@dirrm share/gcin END-of-gcin/pkg-plist echo x - gcin/files/extrapatch-IMdkit::lib::Makefile sed 's/^X//' >gcin/files/extrapatch-IMdkit::lib::Makefile << 'END-of-gcin/files/extrapatch-IMdkit::lib::Makefile' X--- IMdkit/lib/Makefile.orig Sat Jul 24 19:20:13 2004 X+++ IMdkit/lib/Makefile Sat Jul 24 19:20:17 2004 X@@ -1,6 +1,6 @@ X include ../../config.mak X X-CC = gcc X+CC = gcc33 X #CFLAGS = -c -O2 -fno-strength-reduce -Dlinux -D__i386__ -D_POSIX_C_SOURCE=199309L -D_POSIX_SOURCE -D_XOPEN_SOURCE=500L -D_BSD_SOURCE -D_SVID_SOURCE -DFUNCPROTO=15 -DNARROWPROTO -DUNIXCONN -DTCPCONN -DXIM_t -DTRANS_SERVER X CFLAGS = -c $(OPTFLAGS) -fno-strength-reduce -DXIM_t -DTRANS_SERVER X INC = -I../include -I/usr/X11R6/include END-of-gcin/files/extrapatch-IMdkit::lib::Makefile echo x - gcin/files/extrapatch-Makefile sed 's/^X//' >gcin/files/extrapatch-Makefile << 'END-of-gcin/files/extrapatch-Makefile' X--- Makefile.orig Sat Jul 24 19:46:18 2004 X+++ Makefile Sat Jul 24 19:46:24 2004 X@@ -1,4 +1,5 @@ X OPTFLAGS=-g X+CC=gcc33 X X include config.mak X END-of-gcin/files/extrapatch-Makefile echo x - gcin/files/patch-IMdkit::Makefile sed 's/^X//' >gcin/files/patch-IMdkit::Makefile << 'END-of-gcin/files/patch-IMdkit::Makefile' X--- IMdkit/Makefile.orig Sat Jul 24 19:18:15 2004 X+++ IMdkit/Makefile Sat Jul 24 19:18:30 2004 X@@ -2,15 +2,15 @@ X all: libXimd.a Xi18n_sample/sampleIM X X libXimd.a: X- make -C lib X+ gmake -C lib X X Xi18n_sample/sampleIM: X- cd Xi18n_sample; make X+ cd Xi18n_sample; gmake X X clean: X rm -f *.bak *~ X- make -C lib clean X- make -C Xi18n_sample clean X+ gmake -C lib clean X+ gmake -C Xi18n_sample clean X X install: X @echo nothing to be installed. END-of-gcin/files/patch-IMdkit::Makefile echo x - gcin/files/patch-Makefile sed 's/^X//' >gcin/files/patch-Makefile << 'END-of-gcin/files/patch-Makefile' X--- Makefile.orig Sat Jul 24 19:46:36 2004 X+++ Makefile Sat Jul 24 19:57:34 2004 X@@ -27,7 +27,7 @@ X PROGS_CV=kbmcv X X all: $(PROGS) $(DATA) $(PROGS_CV) gcin.spec X- make -C data X+ gmake -C data X X gcin: $(OBJS) $(IMdkitLIB) X $(CC) -o $@ $(OBJS) $(IMdkitLIB) $(LDFLAGS) X@@ -35,28 +35,28 @@ X ln -sf $@ $@.test X X tslearn: $(OBJS_TSLEARN) X- cc -o $@ $(OBJS_TSLEARN) $(LDFLAGS) X+ $(CC) -o $@ $(OBJS_TSLEARN) $(LDFLAGS) X X gcin-setup: $(OBJS_gcin_steup) X- cc -o $@ $(OBJS_gcin_steup) $(LDFLAGS) X+ $(CC) -o $@ $(OBJS_gcin_steup) $(LDFLAGS) X X phoa2d: $(OBJS_phoa2d) X- cc -o $@ $(OBJS_phoa2d) $(LDFLAGS) X+ $(CC) -o $@ $(OBJS_phoa2d) $(LDFLAGS) X X phod2a: $(OBJS_phod2a) X- cc -o $@ $(OBJS_phod2a) $(LDFLAGS) X+ $(CC) -o $@ $(OBJS_phod2a) $(LDFLAGS) X X tsa2d: $(OBJS_tsa2d) X- cc -o $@ $(OBJS_tsa2d) $(LDFLAGS) X+ $(CC) -o $@ $(OBJS_tsa2d) $(LDFLAGS) X X tsd2a: $(OBJS_tsd2a) X- cc -o $@ $(OBJS_tsd2a) $(LDFLAGS) X+ $(CC) -o $@ $(OBJS_tsd2a) $(LDFLAGS) X X kbmcv: $(OBJS_kbmcv) X $(CC) -o $@ $(OBJS_kbmcv) X X $(IMdkitLIB): X- make -C IMdkit/lib X+ gmake -C IMdkit/lib X X install: X install -d $(GCIN_TABLE_DIR) X@@ -68,8 +68,8 @@ X install -s $(PROGS) $(bindir) X install -d $(libdir)/menu X install -m 644 menu/* $(libdir)/menu X- make -C data install X- if [ $(prefix) = /usr/local ]; then \ X+ gmake -C data install X+ if [ $(prefix) != /usr/local ]; then \ X install -m 644 menu/* /usr/lib/menu; \ X which update-menus >& /dev/null && update-menus; \ X sh modify-XIM; \ X@@ -79,8 +79,8 @@ X install -m 644 menu/* $(libdir)/menu; \ X fi X clean: X- make -C IMdkit clean X- make -C data clean X+ gmake -C IMdkit clean X+ gmake -C data clean X rm -f *.o *~ *.E config.mak tags core.* $(PROGS) $(PROGS_CV) $(DATA) .depend gcin.spec menu/*~ X cd ..; tar cvfj gcin.tbz gcin X END-of-gcin/files/patch-Makefile echo x - gcin/files/patch-configure sed 's/^X//' >gcin/files/patch-configure << 'END-of-gcin/files/patch-configure' X--- configure.ori Sat Jul 24 18:03:53 2004 X+++ configure Sat Jul 24 18:06:48 2004 X@@ -55,7 +55,7 @@ X echo "DOC_DIR=$datadir/doc/gcin-$GCIN_VERSION" >> config.mak X echo "GCIN_ICON_DIR=\$(datadir)/icons/gcin" >> config.mak X X-if [ $bindir == /usr/bin ]; then X+if [ $bindir = /usr/bin ]; then X cd menu X for i in * X do END-of-gcin/files/patch-configure echo x - gcin/files/patch-tsin-util.c sed 's/^X//' >gcin/files/patch-tsin-util.c << 'END-of-gcin/files/patch-tsin-util.c' X--- tsin-util.c.orig Sat Jul 24 19:34:37 2004 X+++ tsin-util.c Sat Jul 24 19:34:55 2004 X@@ -149,7 +149,7 @@ X for(;hashno<256;hashno++) hashidx[hashno]++; X X if ((fw=fopen(tsidxfname,"w"))==NULL) { X- error("%s create err", tsidxfname); X+ p_err("%s create err", tsidxfname); X return FALSE; X } X END-of-gcin/files/patch-tsin-util.c echo x - gcin/files/patch-tsin.c sed 's/^X//' >gcin/files/patch-tsin.c << 'END-of-gcin/files/patch-tsin.c' X--- tsin.c.orig Sat Jul 24 19:33:14 2004 X+++ tsin.c Sat Jul 24 19:34:11 2004 X@@ -722,7 +722,7 @@ X selidx[0]=tmp; X X if ((fp=fopen(tsidxfname,"r+"))==NULL) { X- error("%s modify err", tsidxfname); X+ p_err("%s modify err", tsidxfname); X return; X } X END-of-gcin/files/patch-tsin.c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 12: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 5EEF016A4CE for ; Sat, 24 Jul 2004 12:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54EB743D5C for ; Sat, 24 Jul 2004 12:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OCeNUA082819 for ; Sat, 24 Jul 2004 12:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OCeNLE082814; Sat, 24 Jul 2004 12:40:23 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 12:40:23 GMT Resent-Message-Id: <200407241240.i6OCeNLE082814@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Herbert J. Skuhra" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A8416A4CE for ; Sat, 24 Jul 2004 12:32:50 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0231F43D45 for ; Sat, 24 Jul 2004 12:32:50 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6OCWnlJ055088 for ; Sat, 24 Jul 2004 12:32:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6OCWnR8055087; Sat, 24 Jul 2004 12:32:49 GMT (envelope-from nobody) Message-Id: <200407241232.i6OCWnR8055087@www.freebsd.org> Date: Sat, 24 Jul 2004 12:32:49 GMT From: "Herbert J. Skuhra" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69531: new port audio/mixmos X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 12:40:23 -0000 >Number: 69531 >Category: ports >Synopsis: new port audio/mixmos >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 Jul 24 12:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Herbert J. Skuhra >Release: FreeBSD 5.2.1-RELEASE-p9 >Organization: >Environment: FreeBSD oslo.norge 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Thu Jul 1 06:31:26 CEST 2004 herbert@oslo.norge:/usr/obj/usr/src/sys/PC1 i386 >Description: Mixmos is a nice GTK2 mixer that is not yet included in the freebsd ports. Have a look at http://clay.ll.pl/mixmos.html ! >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: # # audio/mixmos # audio/mixmos/Makefile # audio/mixmos/distinfo # audio/mixmos/files # audio/mixmos/files/patch-src::mixer.h # audio/mixmos/files/patch-src::prefs.h # audio/mixmos/pkg-descr # audio/mixmos/pkg-plist # echo c - audio/mixmos mkdir -p audio/mixmos > /dev/null 2>&1 echo x - audio/mixmos/Makefile sed 's/^X//' >audio/mixmos/Makefile << 'END-of-audio/mixmos/Makefile' X# New ports collection makefile for: mixmos X# Date created: 24 Jul 2004 X# Whom: Herbert J. Skuhra X XPORTNAME= mixmos XPORTVERSION= 0.2.0 XCATEGORIES= audio XMASTER_SITES= http://clay.ll.pl/download/ X XMAINTAINER= herbert.skuhra@gmx.at XCOMMENT= A GTK2 audio mixer X XUSE_GNOME= gtk20 XGNU_CONFIGURE= yes XUSE_ICONV= yes XCONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib" X X.include END-of-audio/mixmos/Makefile echo x - audio/mixmos/distinfo sed 's/^X//' >audio/mixmos/distinfo << 'END-of-audio/mixmos/distinfo' XMD5 (mixmos-0.2.0.tar.gz) = 49276a57807e0f54ae6c3f824b007654 XSIZE (mixmos-0.2.0.tar.gz) = 243621 END-of-audio/mixmos/distinfo echo c - audio/mixmos/files mkdir -p audio/mixmos/files > /dev/null 2>&1 echo x - audio/mixmos/files/patch-src::mixer.h sed 's/^X//' >audio/mixmos/files/patch-src::mixer.h << 'END-of-audio/mixmos/files/patch-src::mixer.h' X--- src/mixer.h.orig Sat Jul 24 13:16:52 2004 X+++ src/mixer.h Sat Jul 24 13:17:30 2004 X@@ -23,7 +23,7 @@ X #include X #include X #include X-#include X+#include X #include X #include X #include END-of-audio/mixmos/files/patch-src::mixer.h echo x - audio/mixmos/files/patch-src::prefs.h sed 's/^X//' >audio/mixmos/files/patch-src::prefs.h << 'END-of-audio/mixmos/files/patch-src::prefs.h' X--- src/prefs.h.orig Sat Jul 24 13:17:03 2004 X+++ src/prefs.h Sat Jul 24 13:17:16 2004 X@@ -20,7 +20,7 @@ X */ X X X-#include X+#include X X #define config_filename "mixmos" X END-of-audio/mixmos/files/patch-src::prefs.h echo x - audio/mixmos/pkg-descr sed 's/^X//' >audio/mixmos/pkg-descr << 'END-of-audio/mixmos/pkg-descr' XIt's attempt to create a nice and useful soundcard volume control program. X XWWW: http://clay.ll.pl/mixmos.html END-of-audio/mixmos/pkg-descr echo x - audio/mixmos/pkg-plist sed 's/^X//' >audio/mixmos/pkg-plist << 'END-of-audio/mixmos/pkg-plist' Xbin/mixmos Xman/man1/mixmos.1 Xshare/mixmos/pixmaps/classic/bass.png Xshare/mixmos/pixmaps/classic/bass_mute.png Xshare/mixmos/pixmaps/classic/cd.png Xshare/mixmos/pixmaps/classic/cd_mute.png Xshare/mixmos/pixmaps/classic/cd_rec.png Xshare/mixmos/pixmaps/classic/gain.png Xshare/mixmos/pixmaps/classic/gain_mute.png Xshare/mixmos/pixmaps/classic/gainout.png Xshare/mixmos/pixmaps/classic/gainout_mute.png Xshare/mixmos/pixmaps/classic/line.png Xshare/mixmos/pixmaps/classic/line_mute.png Xshare/mixmos/pixmaps/classic/line_rec.png Xshare/mixmos/pixmaps/classic/mic.png Xshare/mixmos/pixmaps/classic/mic_mute.png Xshare/mixmos/pixmaps/classic/mic_rec.png Xshare/mixmos/pixmaps/classic/pcm.png Xshare/mixmos/pixmaps/classic/pcm_mute.png Xshare/mixmos/pixmaps/classic/speaker.png Xshare/mixmos/pixmaps/classic/speaker_mute.png Xshare/mixmos/pixmaps/classic/synth.png Xshare/mixmos/pixmaps/classic/synth_mute.png Xshare/mixmos/pixmaps/classic/synth_rec.png Xshare/mixmos/pixmaps/classic/treble.png Xshare/mixmos/pixmaps/classic/treble_mute.png Xshare/mixmos/pixmaps/classic/unknown.png Xshare/mixmos/pixmaps/classic/unknown_mute.png Xshare/mixmos/pixmaps/classic/unknown_rec.png Xshare/mixmos/pixmaps/classic/volume.png Xshare/mixmos/pixmaps/classic/volume_mute.png Xshare/mixmos/pixmaps/classic/volume_rec.png Xshare/mixmos/pixmaps/exit.png Xshare/mixmos/pixmaps/icon.png Xshare/mixmos/pixmaps/lock_1.png Xshare/mixmos/pixmaps/lock_2.png Xshare/mixmos/pixmaps/logo.png Xshare/mixmos/pixmaps/mute_1.png Xshare/mixmos/pixmaps/mute_2.png Xshare/mixmos/pixmaps/options.png Xshare/mixmos/pixmaps/restore.png Xshare/mixmos/pixmaps/store.png Xshare/mixmos/pixmaps/transparent/bass.png Xshare/mixmos/pixmaps/transparent/bass_mute.png Xshare/mixmos/pixmaps/transparent/cd.png Xshare/mixmos/pixmaps/transparent/cd_mute.png Xshare/mixmos/pixmaps/transparent/cd_rec.png Xshare/mixmos/pixmaps/transparent/gain.png Xshare/mixmos/pixmaps/transparent/gain_mute.png Xshare/mixmos/pixmaps/transparent/gainout.png Xshare/mixmos/pixmaps/transparent/gainout_mute.png Xshare/mixmos/pixmaps/transparent/line.png Xshare/mixmos/pixmaps/transparent/line_mute.png Xshare/mixmos/pixmaps/transparent/line_rec.png Xshare/mixmos/pixmaps/transparent/mic.png Xshare/mixmos/pixmaps/transparent/mic_mute.png Xshare/mixmos/pixmaps/transparent/mic_rec.png Xshare/mixmos/pixmaps/transparent/pcm.png Xshare/mixmos/pixmaps/transparent/pcm_mute.png Xshare/mixmos/pixmaps/transparent/speaker.png Xshare/mixmos/pixmaps/transparent/speaker_mute.png Xshare/mixmos/pixmaps/transparent/synth.png Xshare/mixmos/pixmaps/transparent/synth_mute.png Xshare/mixmos/pixmaps/transparent/synth_rec.png Xshare/mixmos/pixmaps/transparent/treble.png Xshare/mixmos/pixmaps/transparent/treble_mute.png Xshare/mixmos/pixmaps/transparent/unknown.png Xshare/mixmos/pixmaps/transparent/unknown_mute.png Xshare/mixmos/pixmaps/transparent/unknown_rec.png Xshare/mixmos/pixmaps/transparent/volume.png Xshare/mixmos/pixmaps/transparent/volume_mute.png Xshare/mixmos/pixmaps/transparent/volume_rec.png X@dirrm share/mixmos/pixmaps/transparent X@dirrm share/mixmos/pixmaps/classic X@dirrm share/mixmos/pixmaps X@dirrm share/mixmos END-of-audio/mixmos/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 12: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 0A61F16A4CE for ; Sat, 24 Jul 2004 12:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEC1C43D45 for ; Sat, 24 Jul 2004 12:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OCoKJk084058 for ; Sat, 24 Jul 2004 12:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OCoK7t084057; Sat, 24 Jul 2004 12:50:20 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 12:50:20 GMT Resent-Message-Id: <200407241250.i6OCoK7t084057@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stacey Roberts Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9403516A4CE; Sat, 24 Jul 2004 12:44:06 +0000 (GMT) Received: from heisenberg.zen.co.uk (heisenberg.zen.co.uk [212.23.3.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD3C243D1F; Sat, 24 Jul 2004 12:44:05 +0000 (GMT) (envelope-from stacey@vickiandstacey.com) Received: from [82.68.31.180] (helo=Demon.vickiandstacey.com) by heisenberg.zen.co.uk with esmtp (Exim 4.30) id 1BoLsg-0002Ge-51; Sat, 24 Jul 2004 12:44:02 +0000 Received: from thor.vickiandstacey.com ([192.168.1.33]) i6OCi2YF094203; Sat, 24 Jul 2004 13:44:02 +0100 (BST) (envelope-from stacey@vickiandstacey.com) Received: from thor.vickiandstacey.com (localhost [127.0.0.1]) i6OChrHo087395; Sat, 24 Jul 2004 13:43:59 +0100 (BST) (envelope-from stacey@thor.vickiandstacey.com) Received: (from stacey@localhost) by thor.vickiandstacey.com (8.12.10/8.12.10/Submit) id i6OChmsV087394; Sat, 24 Jul 2004 13:43:48 +0100 (BST) (envelope-from stacey) Message-Id: <200407241243.i6OChmsV087394@thor.vickiandstacey.com> Date: Sat, 24 Jul 2004 13:43:48 +0100 (BST) From: Stacey Roberts To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: gnome@FreeBSD.org Subject: ports/69532: portupgrade -R libgail-gnome-1.0.4 fails with compiler error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stacey Roberts List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 12:50:21 -0000 >Number: 69532 >Category: ports >Synopsis: portupgrade -R libgail-gnome-1.0.4 fails with compiler error >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: Sat Jul 24 12:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Stacey Roberts >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD thor.vickiandstacey.com 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Thu Jul 8 18:26:56 BST 2004 stacey@thor.vickiandstacey.com:/usr/obj/usr/src/sys/THOR i386 >Description: After fresh update of ports tree, portupgrade -R libgail-gnome-1.0.4 fails as follows: >How-To-Repeat: Update ports tree Attempt to portupgrade libgail-gnome-1.0.4 >Fix: Don't know >Release-Note: >Audit-Trail: >Unformatted: >> libgail-gnome-1.0.5.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/gnome2. >> Attempting to fetch from ftp://ftp.mirror.ac.uk/sites/ftp.gnome.org/pub/GNOME/sources/libgail-gnome/1.0/. Receiving libgail-gnome-1.0.5.tar.bz2 (200446 bytes): 100% 200446 bytes transferred in 3.8 seconds (51.69 kBps) ===> Extracting for libgail-gnome-1.0.5 >> Checksum OK for gnome2/libgail-gnome-1.0.5.tar.bz2. ===> Patching for libgail-gnome-1.0.5 ===> Applying FreeBSD patches for libgail-gnome-1.0.5 ===> libgail-gnome-1.0.5 depends on executable: gmake - found ===> libgail-gnome-1.0.5 depends on file: /usr/local/bin/libtool13 - found ===> libgail-gnome-1.0.5 depends on file: /usr/X11R6/libdata/pkgconfig/gnome-mime-data-2.0.pc - found ===> libgail-gnome-1.0.5 depends on executable: pkg-config - found ===> libgail-gnome-1.0.5 depends on file: /usr/local/bin/intltool-extract - found ===> libgail-gnome-1.0.5 depends on shared library: X11.6 - found ===> libgail-gnome-1.0.5 depends on shared library: esd.2 - found ===> libgail-gnome-1.0.5 depends on shared library: glib-2.0.400 - found ===> libgail-gnome-1.0.5 depends on shared library: atk-1.0.600 - found ===> libgail-gnome-1.0.5 depends on shared library: pango-1.0.399 - found ===> libgail-gnome-1.0.5 depends on shared library: gtk-x11-2.0.400 - found ===> libgail-gnome-1.0.5 depends on shared library: linc.1 - found ===> libgail-gnome-1.0.5 depends on shared library: IDL-2.0 - found ===> libgail-gnome-1.0.5 depends on shared library: ORBit-2.0 - found ===> libgail-gnome-1.0.5 depends on shared library: glade-2.0.0 - found ===> libgail-gnome-1.0.5 depends on shared library: xml2.5 - found ===> libgail-gnome-1.0.5 depends on shared library: xslt.2 - found ===> libgail-gnome-1.0.5 depends on shared library: bonobo-2.0 - found ===> libgail-gnome-1.0.5 depends on shared library: gconf-2.5 - found ===> libgail-gnome-1.0.5 depends on shared library: gnomevfs-2.600 - found ===> libgail-gnome-1.0.5 depends on shared library: gailutil.17 - found ===> libgail-gnome-1.0.5 depends on shared library: gnomecanvas-2.600 - found ===> libgail-gnome-1.0.5 depends on shared library: art_lgpl_2.5 - found ===> libgail-gnome-1.0.5 depends on shared library: gnome-2.600 - found ===> libgail-gnome-1.0.5 depends on shared library: bonoboui-2.0 - found ===> libgail-gnome-1.0.5 depends on shared library: gnomeui-2.600 - found ===> libgail-gnome-1.0.5 depends on shared library: spi.9 - found ===> libgail-gnome-1.0.5 depends on shared library: gnome-desktop-2.3 - found ===> libgail-gnome-1.0.5 depends on shared library: wnck-1.13 - found ===> libgail-gnome-1.0.5 depends on shared library: panel-applet-2.0 - found ===> Configuring for libgail-gnome-1.0.5 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking whether gmake sets $(MAKE)... yes checking for working aclocal-1.4... missing checking for working autoconf... found checking for working automake-1.4... missing checking for working autoheader... found checking for working makeinfo... found checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ANSI C... none needed checking build system type... i386-portbld-freebsd5.2.1 checking host system type... i386-portbld-freebsd5.2.1 checking for a sed that does not truncate output... /usr/bin/sed checking for egrep... grep -E checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking how to run the C++ preprocessor... c++ -E checking for g77... no checking for f77... f77 checking whether we are using the GNU Fortran 77 compiler... yes checking whether f77 accepts -g... yes checking the maximum length of command line arguments... (cached) 65536 checking command to parse /usr/bin/nm -B output from cc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if cc static flag works... yes checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.2.1 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.2.1 ld.so appending configuration tag "F77" to libtool checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for f77 option to produce PIC... -fPIC checking if f77 PIC flag -fPIC works... yes checking if f77 supports -c -o file.o... yes checking whether the f77 linker (/usr/bin/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.2.1 ld.so checking host system type... i386-unknown-freebsd5.2.1 checking for ranlib... ranlib checking whether we are using GNU C... yes checking for object suffix... o checking for executable suffix... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.lo... yes checking if cc supports -fno-rtti -fno-exceptions ... no checking if cc static flag -static works... -static checking whether ln -s works... yes checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking for BSD-compatible nm... /usr/bin/nm -B checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/bin/ld option to reload object files... -r checking dynamic linker characteristics... freebsd5.2.1 ld.so checking if libtool supports shared libraries... yes *** Warning: the command libtool uses to detect shared libraries, *** /usr/bin/file, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for objdir... .libs creating libtool checking for Win32... no checking for aclocal flags... checking for pkg-config... /usr/local/bin/pkg-config checking for atk >= 0.7.2 gtk+-2.0 >= 1.3.11 libbonobo-2.0 >= 1.1.0 libbonoboui-2.0 >= 1.1.0 libgnomeui-2.0 >= 1.1.0 libspi-1.0 >= 0.10.0 libpanelapplet-2.0 >= 0.0.18... yes checking DEPS_CFLAGS... -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I /usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonob oui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 - I/usr/X11R6/include/panel-2.0 checking DEPS_LIBS... -Wl,--export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -lspi -lpanel-applet-2 -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lxml2 -lgnomecanvas-2 -lgnome-2 -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lXrandr -lXi -lXinera ma -lXcursor -latk-1.0 -lgdk_pixbuf-2.0 -lpangoxft-1.0 -lXft -lfreetype -lz -lXrender -lXext -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lbonobo-2 -lgconf-2 -lgnomevfs-2 -lbonobo-activation -lORBit-2 -lm -lgmodule-2.0 -lgthread-2.0 -lc_r - lglib-2.0 -liconv checking for atk >= 0.7.2 gtk+-2.0 >= 1.3.11 libbonobo-2.0 >= 1.1.0 libbonoboui-2.0 >= 1.1.0 libgnomeui-2.0 >= 1.1.0 libspi-1.0 >= 0.10.0 cspi-1.0 >= 0.10.0 libpanelapplet-2.0 >= 0.0.18... yes checking TEST_CFLAGS... -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I /usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonob oui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 - I/usr/X11R6/include/panel-2.0 checking TEST_LIBS... -Wl,--export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -lcspi -lspi -lpanel-applet-2 -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lxml2 -lgnomecanvas-2 -lgnome-2 -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lXrandr -lXi - lXinerama -lXcursor -latk-1.0 -lgdk_pixbuf-2.0 -lpangoxft-1.0 -lXft -lfreetype -lz -lXrender -lXext -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lbonobo-2 -lgconf-2 -lgnomevfs-2 -lbonobo-activation -lORBit-2 -lm -lgmodule-2.0 -lgthread-2.0 -lc_r -lglib-2.0 -liconv checking for gethostent... yes checking for setsockopt... yes checking for connect... yes configure: creating ./config.status config.status: creating Makefile config.status: creating libgail-gnome.pc config.status: creating gail-gnome/Makefile config.status: creating test/Makefile config.status: creating config.h config.status: executing default-1 commands ===> Building for libgail-gnome-1.0.5 gmake all-recursive gmake[1]: Entering directory `/usr/ports/x11-toolkits/libgail-gnome/work/libgail-gnome-1.0.5' Making all in gail-gnome gmake[2]: Entering directory `/usr/ports/x11-toolkits/libgail-gnome/work/libgail-gnome-1.0.5/gail-gnome' /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo-contr ol-a ccessible.c mkdir .libs cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo-control-accessible.c -fPIC -DPIC -o .libs/bonobo-control-accessible.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo-control-accessible.c -o bonobo-control-accessible.o >/dev/null 2>&1 mv -f .libs/bonobo-control-accessible.lo bonobo-control-accessible.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo-contr ol-f rame-accessible.c rm -f .libs/bonobo-control-frame-accessible.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo-control-frame-accessible.c -fPIC -DPIC -o .libs/bonobo-control-frame-accessible.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo-control-frame-accessible.c -o bonobo-control-frame-accessible.o >/dev/null 2>&1 mv -f .libs/bonobo-control-frame-accessible.lo bonobo-control-frame-accessible.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_plug_ atk_ object.c rm -f .libs/bonobo_plug_atk_object.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_plug_atk_object.c -fPIC -DPIC -o .libs/bonobo_plug_atk_object.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_plug_atk_object.c -o bonobo_plug_atk_object.o >/dev/null 2>&1 mv -f .libs/bonobo_plug_atk_object.lo bonobo_plug_atk_object.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_plug_ atk_ object_factory.c rm -f .libs/bonobo_plug_atk_object_factory.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_plug_atk_object_factory.c -fPIC -DPIC -o .libs/bonobo_plug_atk_object_factory.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_plug_atk_object_factory.c -o bonobo_plug_atk_object_factory.o >/dev/null 2>&1 mv -f .libs/bonobo_plug_atk_object_factory.lo bonobo_plug_atk_object_factory.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_socke t_at k_object.c rm -f .libs/bonobo_socket_atk_object.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_socket_atk_object.c -fPIC -DPIC -o .libs/bonobo_socket_atk_object.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_socket_atk_object.c -o bonobo_socket_atk_object.o >/dev/null 2>&1 mv -f .libs/bonobo_socket_atk_object.lo bonobo_socket_atk_object.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_socke t_at k_object_factory.c rm -f .libs/bonobo_socket_atk_object_factory.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_socket_atk_object_factory.c -fPIC -DPIC -o .libs/bonobo_socket_atk_object_factory.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c bonobo_socket_atk_object_factory.c -o bonobo_socket_atk_object_factory.o >/dev/null 2>&1 mv -f .libs/bonobo_socket_atk_object_factory.lo bonobo_socket_atk_object_factory.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c panel-applet -atk -object-factory.c rm -f .libs/panel-applet-atk-object-factory.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c panel-applet-atk-object-factory.c -fPIC -DPIC -o .libs/panel-applet-atk-object-factory.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c panel-applet-atk-object-factory.c -o panel-applet-atk-object-factory.o >/dev/null 2>&1 mv -f .libs/panel-applet-atk-object-factory.lo panel-applet-atk-object-factory.lo /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2. 0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local/include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0 /include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/g nome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c panel-applet -atk -object.c rm -f .libs/panel-applet-atk-object.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -DVERSION=\"1.0.5\" -DORBIT2=1 -D_THREAD_SAFE -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/libbonobo-2.0 -I/usr/local/include/orbit-2.0 -I/usr/local /include/bonobo-activation-2.0 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libart-2.0 -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freety pe2 -I/usr/X11R6/include/libbonoboui-2.0 -I/usr/X11R6/include/libgnomecanvas-2.0 -I/usr/X11R6/include/libgnome-2.0 -I/usr/X11R6/include/gconf/2 -I/usr/X11R6/include/gnome-vfs-2.0 -I/usr/X11R6/lib/gnome-vfs-2.0/include -I/usr/X11R6/include/libgnomeui-2.0 -I/usr/X11R6/include/at-spi-1.0 -I/usr/X11R6/include/panel-2.0 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -c panel-applet-atk-object.c -fPIC -DPIC -o .libs/panel-applet-atk-object.lo panel-applet-atk-object.c: In function `panel_applet_atk_object_new': panel-applet-atk-object.c:115: error: `ATK_ROLE_EMBEDDED' undeclared (first use in this function) panel-applet-atk-object.c:115: error: (Each undeclared identifier is reported only once panel-applet-atk-object.c:115: error: for each function it appears in.) gmake[2]: *** [panel-applet-atk-object.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/x11-toolkits/libgail-gnome/work/libgail-gnome-1.0.5/gail-gnome' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkits/libgail-gnome/work/libgail-gnome-1.0.5' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/x11-toolkits/libgail-gnome. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade62522.56 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! x11-toolkits/libgail-gnome (libgail-gnome-1.0.4) (compiler error) ---> Packages processed: 2 done, 55 ignored, 0 skipped and 1 failed # From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 13: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 2366B16A4CE for ; Sat, 24 Jul 2004 13:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0236943D55 for ; Sat, 24 Jul 2004 13:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6ODKNkX091132 for ; Sat, 24 Jul 2004 13:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ODKNgr091131; Sat, 24 Jul 2004 13:20:23 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 13:20:23 GMT Resent-Message-Id: <200407241320.i6ODKNgr091131@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC52B16A4CE; Sat, 24 Jul 2004 13:11:09 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9E1B43D58; Sat, 24 Jul 2004 13:11:08 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (213.235.70.121) by mail.tiscali.cz (6.7.021) id 40AE2ED30181C62A; Sat, 24 Jul 2004 15:11:07 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1Bo6xd-0000xr-Ld ; Fri, 23 Jul 2004 22:48:09 +0200 Message-Id: Date: Fri, 23 Jul 2004 22:48:09 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: skv@FreeBSD.org Subject: ports/69533: sablotron 1.0.1 update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Radim Kolar List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 13:20:24 -0000 >Number: 69533 >Category: ports >Synopsis: sablotron 1.0.1 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: Sat Jul 24 13:20:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p8 FreeBSD 5.2.1-RELEASE-p8 #8: Tue Jul 20 20:32:29 CEST 2004 root@sanatana.dharma:/usr/src/sys/i386/compile/UP i386 >Description: update to 1.0.1 version which fixed several bugs in old code. >How-To-Repeat: >Fix: diff -Naur /usr/ports/textproc/sablotron/Makefile sablotron/Makefile --- /usr/ports/textproc/sablotron/Makefile Wed Mar 31 10:49:38 2004 +++ sablotron/Makefile Fri Jul 23 22:31:31 2004 @@ -6,8 +6,8 @@ # PORTNAME= Sablot -PORTVERSION= 1.0 -PORTREVISION= 2 +PORTVERSION= 1.0.1 +PORTREVISION= 0 CATEGORIES= textproc MASTER_SITES= http://download-2.gingerall.cz/download/sablot/ diff -Naur /usr/ports/textproc/sablotron/distinfo sablotron/distinfo --- /usr/ports/textproc/sablotron/distinfo Wed Mar 31 10:49:38 2004 +++ sablotron/distinfo Fri Jul 23 22:31:40 2004 @@ -1,2 +1,2 @@ -MD5 (Sablot-1.0.tar.gz) = 16f6487f1872a31ed566b0f2cfeba895 -SIZE (Sablot-1.0.tar.gz) = 484144 +MD5 (Sablot-1.0.1.tar.gz) = 8d06392ef2e46652bce1c5e2b68d0662 +SIZE (Sablot-1.0.1.tar.gz) = 485874 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 13: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 3395C16A4CE for ; Sat, 24 Jul 2004 13:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19E2E43D46 for ; Sat, 24 Jul 2004 13:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6ODeL5B094705 for ; Sat, 24 Jul 2004 13:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ODeL0J094704; Sat, 24 Jul 2004 13:40:21 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 13:40:21 GMT Resent-Message-Id: <200407241340.i6ODeL0J094704@freefall.freebsd.org> 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 Rodriguez Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3A4816A4CF for ; Sat, 24 Jul 2004 13:32:35 +0000 (GMT) Received: from devel1.labs.v2project.com (cliente-212079143235.cm256.senpc.supercable.es [212.79.143.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB72D43D31 for ; Sat, 24 Jul 2004 13:32:34 +0000 (GMT) (envelope-from king@v2project.com) Received: by devel1.labs.v2project.com (Postfix, from userid 1001) id C3C301D6C6; Sat, 24 Jul 2004 15:32:49 +0200 (CEST) Message-Id: <20040724133249.C3C301D6C6@devel1.labs.v2project.com> Date: Sat, 24 Jul 2004 15:32:49 +0200 (CEST) From: Jose Rodriguez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69534: New port: misc/jbidwatcher X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jose Rodriguez List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 13:40:22 -0000 >Number: 69534 >Category: ports >Synopsis: New port: misc/jbidwatcher >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 Jul 24 13:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jose Rodriguez >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD devel1.labs.v2project.com 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Fri Jul 16 21:43:17 CEST 2004 root@devel1.labs.v2project.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: >How-To-Repeat: >Fix: --- jbidwatcher-0.9.3.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # jbidwatcher # jbidwatcher/files # jbidwatcher/files/jbidwatcher.sh # jbidwatcher/distinfo # jbidwatcher/pkg-descr # jbidwatcher/Makefile # jbidwatcher/pkg-plist # echo c - jbidwatcher mkdir -p jbidwatcher > /dev/null 2>&1 echo c - jbidwatcher/files mkdir -p jbidwatcher/files > /dev/null 2>&1 echo x - jbidwatcher/files/jbidwatcher.sh sed 's/^X//' >jbidwatcher/files/jbidwatcher.sh << 'END-of-jbidwatcher/files/jbidwatcher.sh' X#!/bin/sh X# X# Need improvements, any suggestions? X# X Xexec /usr/local/bin/javavm -jar /usr/local/share/java/jbidwatcher/JBidWatcher-0.9.3.1.jar $@ END-of-jbidwatcher/files/jbidwatcher.sh echo x - jbidwatcher/distinfo sed 's/^X//' >jbidwatcher/distinfo << 'END-of-jbidwatcher/distinfo' XMD5 (JBidWatcher-0.9.3.1.jar) = c3453c675f3c1e3773a52add8d839fcb XSIZE (JBidWatcher-0.9.3.1.jar) = 469325 END-of-jbidwatcher/distinfo echo x - jbidwatcher/pkg-descr sed 's/^X//' >jbidwatcher/pkg-descr << 'END-of-jbidwatcher/pkg-descr' XA Java-based application allowing you to monitor ebay auctions, X submit bids, snipe (bid at the last moment), Xand otherwise track your auction-site experience. XIt includes adult-auction management, MANY currencies X(yen, pound, dollar (US, Canada, Australian, and New Taiwanese), XSwiss Francs, and euro, presently), Xdrag-and-drop of auction URLs, a unique and powerful 'multisniping' feature. X XWWW: http://www.jbidwatcher.com/ END-of-jbidwatcher/pkg-descr echo x - jbidwatcher/Makefile sed 's/^X//' >jbidwatcher/Makefile << 'END-of-jbidwatcher/Makefile' X# New ports collection makefile for: SETISupport X# Date Created: Sat Jul 24 14:57:10 CEST 2004 X# Whom: Jose Rodriguez X# X# $FreeBSD:$ X# X XPORTNAME= jbidwatcher XPORTVERSION= 0.9.3.1 XCATEGORIES= misc java XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XDISTNAME= JBidWatcher-${PORTVERSION} XEXTRACT_SUFX= .jar XEXTRACT_ONLY= X XMAINTAINER= king@v2project.com XCOMMENT= A Java-based application allowing you to monitor EBAY auctions X XRUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ X ${LOCALBASE}/etc/javavms:${PORTSDIR}/java/jre X XUSE_XLIB= yes XNO_BUILD= yes X Xdo-install: X @${MKDIR} ${PREFIX}/share/java/jbidwatcher X @${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${PREFIX}/share/java/jbidwatcher X @${INSTALL_SCRIPT} ${FILESDIR}/jbidwatcher.sh ${PREFIX}/bin/jbidwatcher X X.include END-of-jbidwatcher/Makefile echo x - jbidwatcher/pkg-plist sed 's/^X//' >jbidwatcher/pkg-plist << 'END-of-jbidwatcher/pkg-plist' Xbin/jbidwatcher Xshare/java/jbidwatcher/JBidWatcher-0.9.3.1.jar X@dirrm share/java/jbidwatcher END-of-jbidwatcher/pkg-plist exit --- jbidwatcher-0.9.3.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 13: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 73B9F16A4CF for ; Sat, 24 Jul 2004 13:40:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69DD543D46 for ; Sat, 24 Jul 2004 13:40:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6ODeMPi094718 for ; Sat, 24 Jul 2004 13:40:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ODeMmf094717; Sat, 24 Jul 2004 13:40:22 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 13:40:22 GMT Resent-Message-Id: <200407241340.i6ODeMmf094717@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Sivachenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1250A16A4CE for ; Sat, 24 Jul 2004 13:33:24 +0000 (GMT) Received: from tear.demos.su (tear.demos.ru [194.87.2.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11E0443D1D for ; Sat, 24 Jul 2004 13:33:23 +0000 (GMT) (envelope-from mitya@tear.demos.su) Received: (from mitya@localhost) by tear.demos.su (8.12.11/8.12.11) id i6ODXOut005374; Sat, 24 Jul 2004 17:33:24 +0400 (MSD) (envelope-from mitya) Message-Id: <200407241333.i6ODXOut005374@tear.demos.su> Date: Sat, 24 Jul 2004 17:33:24 +0400 (MSD) From: Dmitry Sivachenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69535: Repo-copy request www/rt3 -> www/rt32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dmitry Sivachenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 13:40:22 -0000 >Number: 69535 >Category: ports >Synopsis: Repo-copy request www/rt3 -> www/rt32 >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 Jul 24 13:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dmitry Sivachenko >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD tear.demos.su 4.10-STABLE FreeBSD 4.10-STABLE #0: Tue Jun 22 15:59:28 MSD 2004 mitya@tear.demos.su:/usr/obj/usr/src/sys/TEAR i386 >Description: Please make a repo-copy of ports/www/rt3 -> ports/www/rt32. I wish to commit a new version of rt (3.2.1) and to keep older rt-3.0.11 for a while. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 13:43: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 6B71516A4CE; Sat, 24 Jul 2004 13:43:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D67643D39; Sat, 24 Jul 2004 13:43:29 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from freefall.freebsd.org (demon@localhost [127.0.0.1]) i6ODhTBX095100; Sat, 24 Jul 2004 13:43:29 GMT (envelope-from demon@freefall.freebsd.org) Received: (from demon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6ODhT3H095096; Sat, 24 Jul 2004 13:43:29 GMT (envelope-from demon) Date: Sat, 24 Jul 2004 13:43:29 GMT From: Dmitry Sivachenko Message-Id: <200407241343.i6ODhT3H095096@freefall.freebsd.org> To: demon@freebsd.org, demon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/69535: Repo-copy request www/rt3 -> www/rt32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 13:43:29 -0000 Synopsis: Repo-copy request www/rt3 -> www/rt32 State-Changed-From-To: open->repocopy State-Changed-By: demon State-Changed-When: Sat Jul 24 13:42:41 GMT 2004 State-Changed-Why: This is repo-copy request. Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: demon Responsible-Changed-When: Sat Jul 24 13:42:41 GMT 2004 Responsible-Changed-Why: This is repo-copy request. http://www.freebsd.org/cgi/query-pr.cgi?pr=69535 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 14: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 5266516A4CE for ; Sat, 24 Jul 2004 14:40:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FBD943D2F for ; Sat, 24 Jul 2004 14:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OEeQcx005473 for ; Sat, 24 Jul 2004 14:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OEeQpm005472; Sat, 24 Jul 2004 14:40:26 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 14:40:26 GMT Resent-Message-Id: <200407241440.i6OEeQpm005472@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jochen Gensch Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9996116A4CF for ; Sat, 24 Jul 2004 14:36:45 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A0C43D31 for ; Sat, 24 Jul 2004 14:36:45 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6OEajZP071194 for ; Sat, 24 Jul 2004 14:36:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6OEajfn071193; Sat, 24 Jul 2004 14:36:45 GMT (envelope-from nobody) Message-Id: <200407241436.i6OEajfn071193@www.freebsd.org> Date: Sat, 24 Jul 2004 14:36:45 GMT From: Jochen Gensch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: ports/69537: Portupgrade cannot be run by cron properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 14:40:26 -0000 >Number: 69537 >Category: ports >Synopsis: Portupgrade cannot be run by cron properly >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 Jul 24 14:40:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jochen Gensch >Release: 4.10 >Organization: >Environment: FreeBSD serverspeedy.da-butze.uga 4.10-RELEASE FreeBSD 4.10-RELEASE #1: Fri Jun 11 16:02:32 CEST 2004 status@serverspeedy.da-butze.uga:/usr/obj/usr/src/sys/APM i386 >Description: When you run a portupgrade by cron, it ends up with messages like "fetch error" or "unknown build error" etc. I have posted a bug report on the portupgrade cron problem some time ago, but the fixes so far just prevent it from deleting the ports being upgraded. >How-To-Repeat: Use a "portupgrade -arR" initialized by cron. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 15:17: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 2C61716A4CE; Sat, 24 Jul 2004 15:17:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 106E243D1F; Sat, 24 Jul 2004 15:17:32 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OFHV8h011054; Sat, 24 Jul 2004 15:17:31 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OFHV6T011050; Sat, 24 Jul 2004 15:17:31 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 15:17:31 GMT From: Sergey Matveychuk Message-Id: <200407241517.i6OFHV6T011050@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69528: [PATCH] samba-2.2.10 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: Sat, 24 Jul 2004 15:17:32 -0000 Synopsis: [PATCH] samba-2.2.10 port Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 15:17:15 GMT 2004 Responsible-Changed-Why: take it http://www.freebsd.org/cgi/query-pr.cgi?pr=69528 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 15:21: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 2D0FE16A4CE; Sat, 24 Jul 2004 15:21:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FE1143D45; Sat, 24 Jul 2004 15:21:50 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from freefall.freebsd.org (adamw@localhost [127.0.0.1]) i6OFLnrv011264; Sat, 24 Jul 2004 15:21:49 GMT (envelope-from adamw@freefall.freebsd.org) Received: (from adamw@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OFLn6I011260; Sat, 24 Jul 2004 15:21:49 GMT (envelope-from adamw) Date: Sat, 24 Jul 2004 15:21:49 GMT From: Adam Weinberger Message-Id: <200407241521.i6OFLn6I011260@freefall.freebsd.org> To: stacey@vickiandstacey.com, adamw@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69532: portupgrade -R libgail-gnome-1.0.4 fails with compiler error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 15:21:50 -0000 Synopsis: portupgrade -R libgail-gnome-1.0.4 fails with compiler error State-Changed-From-To: open->closed State-Changed-By: adamw State-Changed-When: Sat Jul 24 15:21:17 GMT 2004 State-Changed-Why: Oops... my fault. This should be fixed now. http://www.freebsd.org/cgi/query-pr.cgi?pr=69532 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 15:29: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 81E5716A4CE; Sat, 24 Jul 2004 15:29:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65CD143D1D; Sat, 24 Jul 2004 15:29:19 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OFTJbG011395; Sat, 24 Jul 2004 15:29:19 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OFTJY0011391; Sat, 24 Jul 2004 15:29:19 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 15:29:19 GMT From: Sergey Matveychuk Message-Id: <200407241529.i6OFTJY0011391@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/69537: Portupgrade cannot be run by cron properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 15:29:19 -0000 Synopsis: Portupgrade cannot be run by cron properly Responsible-Changed-From-To: freebsd-ports-bugs->knu Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 15:28:51 GMT 2004 Responsible-Changed-Why: Over to the maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69537 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 15:52: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 A6AF016A4CE; Sat, 24 Jul 2004 15:52:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BE7243D46; Sat, 24 Jul 2004 15:52:37 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OFqbFV013320; Sat, 24 Jul 2004 15:52:37 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OFqbJr013316; Sat, 24 Jul 2004 15:52:37 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 15:52:37 GMT From: Sergey Matveychuk Message-Id: <200407241552.i6OFqbJr013316@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org Subject: Re: ports/69533: sablotron 1.0.1 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, 24 Jul 2004 15:52:37 -0000 Synopsis: sablotron 1.0.1 update Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 15:51:19 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69533 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 15:56: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 36A7716A4CE; Sat, 24 Jul 2004 15:56:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CE6D43D2D; Sat, 24 Jul 2004 15:56:46 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OFukob013721; Sat, 24 Jul 2004 15:56:46 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OFujdn013716; Sat, 24 Jul 2004 15:56:45 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 15:56:45 GMT From: Sergey Matveychuk Message-Id: <200407241556.i6OFujdn013716@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69522: Port upgrade: x11-fm/krusader to 1.40 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 15:56:46 -0000 Synopsis: Port upgrade: x11-fm/krusader to 1.40 Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 15:56:40 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=69522 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 15:58: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 D1DB616A4CE; Sat, 24 Jul 2004 15:58:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B680143D41; Sat, 24 Jul 2004 15:58:24 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OFwObO013806; Sat, 24 Jul 2004 15:58:24 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OFwOjA013802; Sat, 24 Jul 2004 15:58:24 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 15:58:24 GMT From: Sergey Matveychuk Message-Id: <200407241558.i6OFwOjA013802@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69523: misc/wmweather+ Update to version 2.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, 24 Jul 2004 15:58:24 -0000 Synopsis: misc/wmweather+ Update to version 2.9 Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 15:58:20 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=69523 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 16:05: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 5457916A4CF; Sat, 24 Jul 2004 16:05:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38E7C43D41; Sat, 24 Jul 2004 16:05:01 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OG51Kl014167; Sat, 24 Jul 2004 16:05:01 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OG50Gl014163; Sat, 24 Jul 2004 16:05:00 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 16:05:00 GMT From: Sergey Matveychuk Message-Id: <200407241605.i6OG50Gl014163@freefall.freebsd.org> To: tmseck@netcologne.de, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 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: Sat, 24 Jul 2004 16:05:01 -0000 Synopsis: [Maintainer] www/squid: use OpenLDAP 2.1 State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Jul 24 16:04:10 GMT 2004 State-Changed-Why: Remove ldap_helpers.patch. Closed on submitter request. http://www.freebsd.org/cgi/query-pr.cgi?pr=69487 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 16:18: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 8167C16A4CE; Sat, 24 Jul 2004 16:18:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6355A43D2D; Sat, 24 Jul 2004 16:18:17 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OGIHoT018295; Sat, 24 Jul 2004 16:18:17 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OGIGX2018291; Sat, 24 Jul 2004 16:18:16 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 16:18:16 GMT From: Sergey Matveychuk Message-Id: <200407241618.i6OGIGX2018291@freefall.freebsd.org> To: m.seaman@infracaninophile.co.uk, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69337: [ Maintainer update ] net/phpldapadmin -- tracking PHP megacommit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 16:18:17 -0000 Synopsis: [ Maintainer update ] net/phpldapadmin -- tracking PHP megacommit State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Jul 24 16:17:29 GMT 2004 State-Changed-Why: Superceded by ports/69529. http://www.freebsd.org/cgi/query-pr.cgi?pr=69337 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 16:38:34 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 0E47416A510; Sat, 24 Jul 2004 16:38:34 +0000 (GMT) Received: from heisenberg.zen.co.uk (heisenberg.zen.co.uk [212.23.3.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2DE443D41; Sat, 24 Jul 2004 16:38:33 +0000 (GMT) (envelope-from stacey@vickiandstacey.com) Received: from [82.68.31.177] (helo=Demon.vickiandstacey.com) by heisenberg.zen.co.uk with esmtp (Exim 4.30) id 1BoPXc-00015k-Pk; Sat, 24 Jul 2004 16:38:32 +0000 Received: from crom.vickiandstacey.com (crom [192.168.1.10]) i6OGcVuK011816; Sat, 24 Jul 2004 17:38:31 +0100 (BST) (envelope-from stacey@vickiandstacey.com) Received: from crom.vickiandstacey.com (localhost [127.0.0.1]) i6OGcDZk066657; Sat, 24 Jul 2004 17:38:18 +0100 (BST) (envelope-from stacey@crom.vickiandstacey.com) Received: (from stacey@localhost) by crom.vickiandstacey.com (8.12.11/8.12.11/Submit) id i6OGc8Qe066656; Sat, 24 Jul 2004 17:38:08 +0100 (BST) (envelope-from stacey) Date: Sat, 24 Jul 2004 17:38:08 +0100 From: Stacey Roberts To: Adam Weinberger Message-ID: <20040724163808.GT495@crom.vickiandstacey.com> References: <200407241521.i6OFLn6I011260@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407241521.i6OFLn6I011260@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i X-Originating-Heisenberg-IP: [82.68.31.177] cc: freebsd-ports-bugs@freebsd.org cc: stacey@vickiandstacey.com Subject: Re: ports/69532: portupgrade -R libgail-gnome-1.0.4 fails with compiler error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 16:38:35 -0000 Hi Adam, Thanks for looking into this. I'll re-cvsup my ports tree later to obtain the fix. Thanks again. Regards, Stacey ----- Original Message ----- From: "Adam Weinberger " To: To stacey@vickiandstacey.com Date: Sat, 24 Jul, 2004 16:21 BST Subject: Re: ports/69532: portupgrade -R libgail-gnome-1.0.4 fails with compiler error > Synopsis: portupgrade -R libgail-gnome-1.0.4 fails with compiler error > > State-Changed-From-To: open->closed > State-Changed-By: adamw > State-Changed-When: Sat Jul 24 15:21:17 GMT 2004 > State-Changed-Why: > Oops... my fault. This should be fixed now. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69532 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 16:38: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 D3E5A16A4CE; Sat, 24 Jul 2004 16:38:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B68B843D39; Sat, 24 Jul 2004 16:38:38 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OGccwp020099; Sat, 24 Jul 2004 16:38:38 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OGcci5020095; Sat, 24 Jul 2004 16:38:38 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 16:38:38 GMT From: Pav Lucistnik Message-Id: <200407241638.i6OGcci5020095@freefall.freebsd.org> To: tmclaugh@sdf.lonestar.org, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69462: New port: audio/muine - Mono based Gnome audio player X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 16:38:38 -0000 Synopsis: New port: audio/muine - Mono based Gnome audio player State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 16:38:29 GMT 2004 State-Changed-Why: New port added, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=69462 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 16:45: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 ADE9216A4CE; Sat, 24 Jul 2004 16:45:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9334B43D45; Sat, 24 Jul 2004 16:45:06 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OGj6jA020365; Sat, 24 Jul 2004 16:45:06 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OGj6ab020361; Sat, 24 Jul 2004 16:45:06 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 16:45:06 GMT From: Pav Lucistnik Message-Id: <200407241645.i6OGj6ab020361@freefall.freebsd.org> To: pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/69475: xemacs invalidly calls xargs (witj unexisting -e flag) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 16:45:06 -0000 Synopsis: xemacs invalidly calls xargs (witj unexisting -e flag) Responsible-Changed-From-To: freebsd-ports-bugs->kiri Responsible-Changed-By: pav Responsible-Changed-When: Sat Jul 24 16:44:57 GMT 2004 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=69475 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 16: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 7E86016A4CE; Sat, 24 Jul 2004 16:46:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6226E43D49; Sat, 24 Jul 2004 16:46:37 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OGkbIE020468; Sat, 24 Jul 2004 16:46:37 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OGkatN020464; Sat, 24 Jul 2004 16:46:36 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 16:46:36 GMT From: Pav Lucistnik Message-Id: <200407241646.i6OGkatN020464@freefall.freebsd.org> To: ahze@ahze.net, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pav@FreeBSD.org Subject: Re: ports/69499: [PATCH] multimedia/avidemux2: [SDL/faad 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: Sat, 24 Jul 2004 16:46:37 -0000 Synopsis: [PATCH] multimedia/avidemux2: [SDL/faad support] State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Sat Jul 24 16:46:22 GMT 2004 State-Changed-Why: Asked maintainer for approval. Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Sat Jul 24 16:46:22 GMT 2004 Responsible-Changed-Why: Handle. http://www.freebsd.org/cgi/query-pr.cgi?pr=69499 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17: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 C383016A4D1; Sat, 24 Jul 2004 17:00:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A644343D3F; Sat, 24 Jul 2004 17:00:48 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OH0mSp020975; Sat, 24 Jul 2004 17:00:48 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OH0mMq020971; Sat, 24 Jul 2004 17:00:48 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 17:00:48 GMT From: Sergey Matveychuk Message-Id: <200407241700.i6OH0mMq020971@freefall.freebsd.org> To: renato@galle.com.br, sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken 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: Sat, 24 Jul 2004 17:00:48 -0000 Synopsis: [PATCH] databases/firebird: patch to fix broken build State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Jul 24 17:00:40 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69430 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17:07: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 E91DB16A4CE; Sat, 24 Jul 2004 17:07:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCF4943D2F; Sat, 24 Jul 2004 17:07:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OH7x1R024925; Sat, 24 Jul 2004 17:07:59 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OH7xxv024921; Sat, 24 Jul 2004 17:07:59 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 17:07:59 GMT From: Pav Lucistnik Message-Id: <200407241707.i6OH7xxv024921@freefall.freebsd.org> To: yasi@yasi.to, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69505: [maintainer update] www/zope-epoz 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: Sat, 24 Jul 2004 17:08:00 -0000 Synopsis: [maintainer update] www/zope-epoz update to 0.8.2 State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 17:07:52 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69505 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17: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 6849C16A4CE for ; Sat, 24 Jul 2004 17:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 493B243D31 for ; Sat, 24 Jul 2004 17:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OHAMjw025050 for ; Sat, 24 Jul 2004 17:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHAM5J025049; Sat, 24 Jul 2004 17:10:22 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 17:10:22 GMT Resent-Message-Id: <200407241710.i6OHAM5J025049@freefall.freebsd.org> 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 Thegler Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E42AE16A4CE; Sat, 24 Jul 2004 17:04:05 +0000 (GMT) Received: from cicero1.cybercity.dk (cicero1.cybercity.dk [212.242.40.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82A1F43D49; Sat, 24 Jul 2004 17:04:05 +0000 (GMT) (envelope-from lth@dask.thegler.dk) Received: from dask.thegler.dk (port156.ds1-bav.adsl.cybercity.dk [217.157.188.161]) by cicero1.cybercity.dk (Postfix) with ESMTP id 887A97E77B9; Sat, 24 Jul 2004 19:04:03 +0200 (CEST) Received: by dask.thegler.dk (Postfix, from userid 1001) id 2978B3EEA; Sat, 24 Jul 2004 19:04:03 +0200 (CEST) Message-Id: <20040724170403.2978B3EEA@dask.thegler.dk> Date: Sat, 24 Jul 2004 19:04:03 +0200 (CEST) From: Lars Thegler To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: demon@FreeBSD.org Subject: ports/69538: [PATCH] devel/p5-Module-Info: update to 0.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 17:10:22 -0000 >Number: 69538 >Category: ports >Synopsis: [PATCH] devel/p5-Module-Info: update to 0.26 >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 Jul 24 17:10:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Lars Thegler >Release: FreeBSD 4.10-BETA i386 >Organization: >Environment: System: FreeBSD dask.thegler.dk 4.10-BETA FreeBSD 4.10-BETA #3: Mon Apr 12 17:02:50 CEST 2004 >Description: - Update to 0.26 Port maintainer (demon@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Module-Info-0.26.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/p5-Module-Info/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 24 Feb 2004 11:03:45 -0000 1.4 +++ Makefile 24 Jul 2004 17:03:38 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Module-Info -PORTVERSION= 0.24 +PORTVERSION= 0.26 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Module Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/p5-Module-Info/distinfo,v retrieving revision 1.3 diff -u -u -r1.3 distinfo --- distinfo 24 Feb 2004 11:03:45 -0000 1.3 +++ distinfo 24 Jul 2004 17:03:38 -0000 @@ -1,2 +1,2 @@ -MD5 (Module-Info-0.24.tar.gz) = 7100fd4384f105f76e2133212ef393d3 -SIZE (Module-Info-0.24.tar.gz) = 41844 +MD5 (Module-Info-0.26.tar.gz) = bf94f4dcdb57e3f4c52cb24ffa9e50d1 +SIZE (Module-Info-0.26.tar.gz) = 42237 --- p5-Module-Info-0.26.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17:16: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 6C2AE16A4CE; Sat, 24 Jul 2004 17:16:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F11543D4C; Sat, 24 Jul 2004 17:16:59 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6OHGx8E025343; Sat, 24 Jul 2004 17:16:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHGuaR025339; Sat, 24 Jul 2004 17:16:57 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 17:16:57 GMT From: Mark Linimon Message-Id: <200407241716.i6OHGuaR025339@freefall.freebsd.org> To: martin@waedt.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69506: phpMyAdmin-2.5.7.1 doesn't work with php4-4.3.8_1 apache-2.0.50 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 17:16:59 -0000 Old Synopsis: phpMyAdmin-2.5.7.1 doesn´t work with php4-4.3.8_1 apache-2.0.50 New Synopsis: phpMyAdmin-2.5.7.1 doesn't work with php4-4.3.8_1 apache-2.0.50 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 17:15:59 GMT 2004 State-Changed-Why: The maintainer already has a fix in ports/69336, which is pending. http://www.freebsd.org/cgi/query-pr.cgi?pr=69506 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 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 DFA3A16A4CE for ; Sat, 24 Jul 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 DCBE443D41 for ; Sat, 24 Jul 2004 17:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OHKQJb025440 for ; Sat, 24 Jul 2004 17:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHKQn8025439; Sat, 24 Jul 2004 17:20:26 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 17:20:26 GMT Message-Id: <200407241720.i6OHKQn8025439@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Pav Lucistnik Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Pav Lucistnik List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 17:20:27 -0000 The following reply was made to PR ports/69404; it has been noted by GNATS. From: Pav Lucistnik To: freebsd-gnats-submit@FreeBSD.org, jhamby@anobject.com Cc: Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread Date: Sat, 24 Jul 2004 19:12:59 +0200 --=-fRlii9ywA9TOR388iNBf Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Can you try to remove those CFLAGS from make.conf, recompile mono without them and try again with monodoc? --=20 Pav Lucistnik Ah I don't know what you mean, so I'll just sit here and smile at you :) --=-fRlii9ywA9TOR388iNBf 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.4 (FreeBSD) iD8DBQBBApibntdYP8FOsoIRAmcXAJ0ZxD70yamjxOwYHnWwWBaltPYDKACgqxLL VZeecZtlAaZcOt1Vre/c6Y4= =OnrF -----END PGP SIGNATURE----- --=-fRlii9ywA9TOR388iNBf-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17: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 7227316A4CE for ; Sat, 24 Jul 2004 17:20:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 549D743D2D for ; Sat, 24 Jul 2004 17:20:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OHKT5Q025468 for ; Sat, 24 Jul 2004 17:20:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHKTSZ025467; Sat, 24 Jul 2004 17:20:29 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 17:20:29 GMT Message-Id: <200407241720.i6OHKTSZ025467@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Oliver Eikemeier Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oliver Eikemeier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 17:20:29 -0000 The following reply was made to PR ports/69487; it has been noted by GNATS. From: Oliver Eikemeier To: Thomas-Martin Seck Cc: bug-followup@freebsd.org Subject: Re: ports/69487: [Maintainer] www/squid: use OpenLDAP 2.1 Date: Sat, 24 Jul 2004 19:14:52 +0200 Thomas-Martin Seck wrote: > Ok. I guess we can leave the port as is for now and close this PR. I'd > like to see the patch's information removed from distinfo, though. Would > you mind committing this part? Thanks! Eh, yes. If I only were not this lazy, and Sem not this damn fast... -Oliver From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17:39: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 1E99E16A4CF; Sat, 24 Jul 2004 17:39:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 029E543D4C; Sat, 24 Jul 2004 17:39:35 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OHdYOH027686; Sat, 24 Jul 2004 17:39:34 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHdYxe027682; Sat, 24 Jul 2004 17:39:34 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 17:39:34 GMT From: Pav Lucistnik Message-Id: <200407241739.i6OHdYxe027682@freefall.freebsd.org> To: m.seaman@infracaninophile.co.uk, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69336: [ Maintainer update ] databases/phpmyadmin -- tracking PHP mega-commit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 17:39:35 -0000 Synopsis: [ Maintainer update ] databases/phpmyadmin -- tracking PHP mega-commit State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 17:39:28 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69336 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 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 451E316A4D1 for ; Sat, 24 Jul 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 2D9E343D41 for ; Sat, 24 Jul 2004 17:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OHeHit027784 for ; Sat, 24 Jul 2004 17:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHeHlf027783; Sat, 24 Jul 2004 17:40:17 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 17:40:17 GMT Resent-Message-Id: <200407241740.i6OHeHlf027783@freefall.freebsd.org> 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 7C62816A4CE; Sat, 24 Jul 2004 17:31:04 +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 4CE7B43D4C; Sat, 24 Jul 2004 17:31:04 +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 94C33106BF3; Sun, 25 Jul 2004 01:31:02 +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 82161-03; Sun, 25 Jul 2004 01:31:02 +0800 (CST) Received: by FreeBSD.csie.NCTU.edu.tw (Postfix, from userid 1038) id 126FF106BEB; Sun, 25 Jul 2004 01:31:02 +0800 (CST) Message-Id: <20040724173102.126FF106BEB@FreeBSD.csie.NCTU.edu.tw> Date: Sun, 25 Jul 2004 01:31:02 +0800 (CST) From: Cheng-Lung Sung To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: demon@FreeBSD.org Subject: ports/69539: [PATCH] devel/Proc-Simple: update to 1.21 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 17:40:26 -0000 >Number: 69539 >Category: ports >Synopsis: [PATCH] devel/Proc-Simple: update to 1.21 >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 Jul 24 17:40:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Cheng-Lung Sung >Release: FreeBSD 4.10-STABLE i386 >Organization: FreeBSD in Taiwan >Environment: System: FreeBSD FreeBSD.csie.NCTU.edu.tw 4.10-STABLE FreeBSD 4.10-STABLE #0: Sat May 29 08:18:00 CST 2004 >Description: - Update to 1.21 - add WWW, Author in pkg-descr Port maintainer (demon@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- p5-Proc-Simple-1.21.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Proc-Simple/Makefile /home/clsung/p5-Proc-Simple/Makefile --- /usr/ports/devel/p5-Proc-Simple/Makefile Sat Oct 25 05:35:42 2003 +++ /home/clsung/p5-Proc-Simple/Makefile Sun Jul 25 01:27:24 2004 @@ -6,7 +6,7 @@ # PORTNAME= Proc-Simple -PORTVERSION= 1.19 +PORTVERSION= 1.21 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Proc diff -ruN --exclude=CVS /usr/ports/devel/p5-Proc-Simple/distinfo /home/clsung/p5-Proc-Simple/distinfo --- /usr/ports/devel/p5-Proc-Simple/distinfo Fri Mar 19 05:32:46 2004 +++ /home/clsung/p5-Proc-Simple/distinfo Sun Jul 25 01:27:40 2004 @@ -1,2 +1,2 @@ -MD5 (Proc-Simple-1.19.tar.gz) = f84fe9aace707965ee68d3fab3409fbe -SIZE (Proc-Simple-1.19.tar.gz) = 9080 +MD5 (Proc-Simple-1.21.tar.gz) = 79e1dfbd0facf75b32d06c52caf2faeb +SIZE (Proc-Simple-1.21.tar.gz) = 12221 diff -ruN --exclude=CVS /usr/ports/devel/p5-Proc-Simple/pkg-descr /home/clsung/p5-Proc-Simple/pkg-descr --- /usr/ports/devel/p5-Proc-Simple/pkg-descr Fri Jun 27 09:52:15 1997 +++ /home/clsung/p5-Proc-Simple/pkg-descr Sun Jul 25 01:29:08 2004 @@ -15,3 +15,5 @@ $myproc->start(sub { sleep(10); }); +WWW: http://search.cpan.org/dist/Proc-Simple/ +Author: Michael Schilli --- p5-Proc-Simple-1.21.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 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 BF78A16A4D1 for ; Sat, 24 Jul 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 BA5A543D41 for ; Sat, 24 Jul 2004 17:40:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OHeJd9027791 for ; Sat, 24 Jul 2004 17:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHeJlk027790; Sat, 24 Jul 2004 17:40:19 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 17:40:19 GMT Message-Id: <200407241740.i6OHeJlk027790@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rui Lopes Subject: Re: ports/69526: Port Update: textproc/meld - fix unfetchabledistfile and update to latest version 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: Sat, 24 Jul 2004 17:40:26 -0000 The following reply was made to PR ports/69526; it has been noted by GNATS. From: Rui Lopes To: freebsd-gnats-submit@FreeBSD.org, tmclaugh@sdf.lonestar.org Cc: Subject: Re: ports/69526: Port Update: textproc/meld - fix unfetchable distfile and update to latest version Date: Sat, 24 Jul 2004 18:38:17 +0100 This is a multi-part message in MIME format. --------------060206010206090401090204 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi Tom, Thanks for taking time for updating meld port! Dear commiter, please commit the attached patch instead, it combines this PR with other tweaks. Overall the patch contains: * Update to 0.9.4.1 * Update MASTER_SITES since Meld moved to Gnome servers * Use the bzip2 package * Add x-generate-plist make target to aid the plist generation -- Rui Lopes --------------060206010206090401090204 Content-Type: text/plain; name="meld-updateto-0.9.4.1.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="meld-updateto-0.9.4.1.patch" # * Update to 0.9.4.1 # * Update MASTER_SITES since Meld has moved to Gnome servers # * Use the bzip2 package # * Add x-generate-plist make target to aid the plist generation # -- Rui Lopes diff -ruN meld.orig/Makefile meld/Makefile --- meld.orig/Makefile Sun Jul 18 21:50:01 2004 +++ meld/Makefile Sat Jul 24 18:03:00 2004 @@ -6,18 +6,17 @@ # PORTNAME= meld -PORTVERSION= 0.9.1 -PORTREVISION= 2 +PORTVERSION= 0.9.4.1 CATEGORIES= textproc devel python -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= meld -EXTRACT_SUFX= .tgz +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.9 MAINTAINER= rui@ruilopes.com COMMENT= GNOME 2 visual diff and merge tool RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gnome/__init__.py:${PORTSDIR}/x11-toolkits/py-gnome2 +USE_BZIP2= yes USE_PYTHON= yes USE_X_PREFIX= yes NO_BUILD= yes @@ -27,16 +26,15 @@ MAKEFILE= GNUmakefile post-patch: - @${REINPLACE_CMD} -E 's,(prefix := )(.*),\1${PREFIX},g ; \ - s,(libdir := )(.*),\1${PREFIX}/share,g ; \ - s,( glade2/pixmaps/\*\.){xpm\,png},\1xpm\1png,g' ${WRKSRC}/GNUmakefile - @${REINPLACE_CMD} -E 's,(.+)(install )-D (-m 644 \$$\^ \$$@),\1mkdir -m 755 -p $$(shell dirname $$@) \&\& \2\3,g' ${WRKSRC}/po/GNUmakefile - @${REINPLACE_CMD} -e 's,^Path=.*$$,Icon=${DATADIR}/glade2/pixmaps/icon.png,' ${WRKSRC}/meld.desktop + @${REINPLACE_CMD} -E 's,(prefix := )(.*),\1${PREFIX},; \ + s,(libdir := )(.*),\1${PREFIX}/share,' ${WRKSRC}/GNUmakefile post-install: ${INSTALL_DATA} ${WRKSRC}/meld.desktop ${PREFIX}/share/gnome/applications ${INSTALL_DATA} ${WRKSRC}/manual/stylesheet.css ${DOCSDIR} - @cd ${DATADIR} && \ - ${PYTHON_CMD} -c "import compileall; compileall.compile_dir('.', 0)" + +# This target is only meant to be used by the port maintainer. +x-generate-plist: + (${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX}|${SED} -E 's,.*share/nls/.+$$,,g;s,share/doc/meld,%%DOCSDIR%%,;s,^@dirrm share/(gnome|pixmaps|application|locale).*,,'|${TR} -s '\n') > temp-pkg-plist .include diff -ruN meld.orig/distinfo meld/distinfo --- meld.orig/distinfo Sun Jul 18 21:50:01 2004 +++ meld/distinfo Sat Jul 24 16:35:38 2004 @@ -1,2 +1,2 @@ -MD5 (meld-0.9.1.tgz) = 1dfd1205c405bc263fc49ea1d92d47bf -SIZE (meld-0.9.1.tgz) = 118854 +MD5 (meld-0.9.4.1.tar.bz2) = cd5f02e084529c581ce52a22647ca4dc +SIZE (meld-0.9.4.1.tar.bz2) = 333123 diff -ruN meld.orig/pkg-plist meld/pkg-plist --- meld.orig/pkg-plist Sun Jul 18 21:50:01 2004 +++ meld/pkg-plist Sat Jul 24 17:49:44 2004 @@ -1,33 +1,33 @@ bin/meld +share/application-registry/meld.applications +share/applications/meld.desktop +%%DOCSDIR%%/manual.html +%%DOCSDIR%%/stylesheet.css share/gnome/applications/meld.desktop +share/locale/cs/LC_MESSAGES/meld.mo +share/locale/de/LC_MESSAGES/meld.mo +share/locale/en_CA/LC_MESSAGES/meld.mo +share/locale/en_GB/LC_MESSAGES/meld.mo +share/locale/fr/LC_MESSAGES/meld.mo +share/locale/ja/LC_MESSAGES/meld.mo +share/locale/ko/LC_MESSAGES/meld.mo +share/locale/nl/LC_MESSAGES/meld.mo +share/locale/pt/LC_MESSAGES/meld.mo +share/locale/pt_BR/LC_MESSAGES/meld.mo +share/locale/sr/LC_MESSAGES/meld.mo +share/locale/sr@Latn/LC_MESSAGES/meld.mo share/meld/cvsview.py share/meld/cvsview.pyc +share/meld/cvsview.pyo share/meld/diffutil.py share/meld/diffutil.pyc +share/meld/diffutil.pyo share/meld/dirdiff.py share/meld/dirdiff.pyc +share/meld/dirdiff.pyo share/meld/filediff.py share/meld/filediff.pyc -share/meld/gnomeglade.py -share/meld/gnomeglade.pyc -share/meld/meldapp.py -share/meld/meldapp.pyc -share/meld/melddoc.py -share/meld/melddoc.pyc -share/meld/misc.py -share/meld/misc.pyc -share/meld/paths.py -share/meld/paths.pyc -share/meld/prefs.py -share/meld/prefs.pyc -share/meld/task.py -share/meld/task.pyc -share/meld/tree.py -share/meld/tree.pyc -share/meld/undo.py -share/meld/undo.pyc -share/locale/en_IE/LC_MESSAGES/meld.mo -share/locale/fr/LC_MESSAGES/meld.mo +share/meld/filediff.pyo share/meld/glade2/cvsview.glade share/meld/glade2/dirdiff.glade share/meld/glade2/filediff.glade @@ -40,11 +40,13 @@ share/meld/glade2/pixmaps/close.xpm share/meld/glade2/pixmaps/cvs-add-16.png share/meld/glade2/pixmaps/cvs-commit-16.png +share/meld/glade2/pixmaps/cvs-icon-small.png share/meld/glade2/pixmaps/cvs-icon.png share/meld/glade2/pixmaps/cvs-remove-16.png share/meld/glade2/pixmaps/cvs-update-16.png share/meld/glade2/pixmaps/icon.png -share/meld/glade2/pixmaps/logo.png +share/meld/glade2/pixmaps/svn-icon-small.png +share/meld/glade2/pixmaps/svn-icon.png share/meld/glade2/pixmaps/tree-file-changed.png share/meld/glade2/pixmaps/tree-file-new.png share/meld/glade2/pixmaps/tree-file-newer.png @@ -52,11 +54,38 @@ share/meld/glade2/pixmaps/tree-folder-changed.png share/meld/glade2/pixmaps/tree-folder-new.png share/meld/glade2/pixmaps/tree-folder-normal.png -%%DOCSDIR%%/manual.html -%%DOCSDIR%%/stylesheet.css -@dirrm %%DOCSDIR%% -@unexec (rmdir %D/share/locale/en_IE/LC_MESSAGES && rmdir %D/share/locale/en_IE) 2>/dev/null || true -@unexec (rmdir %D/share/locale/fr/LC_MESSAGES && rmdir %D/share/locale/fr) 2>/dev/null || true +share/meld/gnomeglade.py +share/meld/gnomeglade.pyc +share/meld/gnomeglade.pyo +share/meld/meldapp.py +share/meld/meldapp.pyc +share/meld/meldapp.pyo +share/meld/melddoc.py +share/meld/melddoc.pyc +share/meld/melddoc.pyo +share/meld/misc.py +share/meld/misc.pyc +share/meld/misc.pyo +share/meld/paths.py +share/meld/paths.pyc +share/meld/paths.pyo +share/meld/prefs.py +share/meld/prefs.pyc +share/meld/prefs.pyo +share/meld/svnview.py +share/meld/svnview.pyc +share/meld/svnview.pyo +share/meld/task.py +share/meld/task.pyc +share/meld/task.pyo +share/meld/tree.py +share/meld/tree.pyc +share/meld/tree.pyo +share/meld/undo.py +share/meld/undo.pyc +share/meld/undo.pyo +share/pixmaps/meld.png @dirrm share/meld/glade2/pixmaps @dirrm share/meld/glade2 @dirrm share/meld +@dirrm %%DOCSDIR%% --------------060206010206090401090204-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 17:53: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 BB6C216A4CE; Sat, 24 Jul 2004 17:53:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F40E43D1D; Sat, 24 Jul 2004 17:53:23 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) i6OHrNTk028323; Sat, 24 Jul 2004 17:53:23 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OHrNfH028319; Sat, 24 Jul 2004 17:53:23 GMT (envelope-from pav) Date: Sat, 24 Jul 2004 17:53:23 GMT From: Pav Lucistnik Message-Id: <200407241753.i6OHrNfH028319@freefall.freebsd.org> To: m.seaman@infracaninophile.co.uk, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69529: [ Maintainer update ] net/phpldapadmin -- tracking bsd.php.mk 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, 24 Jul 2004 17:53:23 -0000 Synopsis: [ Maintainer update ] net/phpldapadmin -- tracking bsd.php.mk changes State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Jul 24 17:53:17 GMT 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69529 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 18: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 377F316A4CE for ; Sat, 24 Jul 2004 18:10:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D91643D31 for ; Sat, 24 Jul 2004 18:10:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OIAPk5033185 for ; Sat, 24 Jul 2004 18:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OIAPoH033184; Sat, 24 Jul 2004 18:10:25 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 18:10:25 GMT Message-Id: <200407241810.i6OIAPoH033184@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Clive Lin Subject: Re: ports/69524: New port: chinese/BBMan 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: Sat, 24 Jul 2004 18:10:27 -0000 The following reply was made to PR ports/69524; it has been noted by GNATS. From: Clive Lin To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/69524: New port: chinese/BBMan Date: Sun, 25 Jul 2004 02:05:30 +0800 On Sat, Jul 24, 2004 at 05:46:41PM +0800, statue wrote: > >Synopsis: New port: chinese/BBMan > BBMam is a BBS client for X Window System. uhm, more specifically, a telnet client supports ANSI color, blinking, tabbed connection. how about let it be in net? -- Clive Tong-I Lin | http://tongi.org | PGP KeyID: A008C03E From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 18:16: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 CEB7916A4CE; Sat, 24 Jul 2004 18:16:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4A8D43D2D; Sat, 24 Jul 2004 18:16:40 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from freefall.freebsd.org (demon@localhost [127.0.0.1]) i6OIGeaQ033413; Sat, 24 Jul 2004 18:16:40 GMT (envelope-from demon@freefall.freebsd.org) Received: (from demon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OIGeRk033409; Sat, 24 Jul 2004 18:16:40 GMT (envelope-from demon) Date: Sat, 24 Jul 2004 18:16:40 GMT From: Dmitry Sivachenko Message-Id: <200407241816.i6OIGeRk033409@freefall.freebsd.org> To: lth@FreeBSD.org, demon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69538: [PATCH] devel/p5-Module-Info: update to 0.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 18:16:41 -0000 Synopsis: [PATCH] devel/p5-Module-Info: update to 0.26 State-Changed-From-To: open->closed State-Changed-By: demon State-Changed-When: Sat Jul 24 18:15:40 GMT 2004 State-Changed-Why: Port updated, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=69538 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 18:21: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 0DF2716A4CE; Sat, 24 Jul 2004 18:21:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5BB443D1D; Sat, 24 Jul 2004 18:21:20 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from freefall.freebsd.org (demon@localhost [127.0.0.1]) i6OILKMQ033636; Sat, 24 Jul 2004 18:21:20 GMT (envelope-from demon@freefall.freebsd.org) Received: (from demon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OILKpR033632; Sat, 24 Jul 2004 18:21:20 GMT (envelope-from demon) Date: Sat, 24 Jul 2004 18:21:20 GMT From: Dmitry Sivachenko Message-Id: <200407241821.i6OILKpR033632@freefall.freebsd.org> To: clsung@tiger2.net, demon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69539: [PATCH] devel/Proc-Simple: update to 1.21 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 18:21:21 -0000 Synopsis: [PATCH] devel/Proc-Simple: update to 1.21 State-Changed-From-To: open->closed State-Changed-By: demon State-Changed-When: Sat Jul 24 18:20:12 GMT 2004 State-Changed-Why: Port updated, thanks! BTW, information about the author does not belong to pkg-descr. http://www.freebsd.org/cgi/query-pr.cgi?pr=69539 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 18:24: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 DCC4716A4CE; Sat, 24 Jul 2004 18:24:48 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C256743D39; Sat, 24 Jul 2004 18:24:48 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) i6OIOm2q033704; Sat, 24 Jul 2004 18:24:48 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OIOmFb033700; Sat, 24 Jul 2004 18:24:48 GMT (envelope-from mezz) Date: Sat, 24 Jul 2004 18:24:48 GMT From: Jeremy Messenger Message-Id: <200407241824.i6OIOmFb033700@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org Subject: Re: ports/69333: maintainer-update of security/nessus-* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 18:24:49 -0000 Synopsis: maintainer-update of security/nessus-* Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: mezz Responsible-Changed-When: Sat Jul 24 18:24:30 GMT 2004 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69333 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 18: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 E1EC816A572 for ; Sat, 24 Jul 2004 18:30:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 262CC43D60 for ; Sat, 24 Jul 2004 18:30:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OIUUu4034373 for ; Sat, 24 Jul 2004 18:30:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OIUUX8034370; Sat, 24 Jul 2004 18:30:30 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 18:30:30 GMT Resent-Message-Id: <200407241830.i6OIUUX8034370@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sascha Luck Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC5AC16A4CE for ; Sat, 24 Jul 2004 18:21:13 +0000 (GMT) Received: from rincewind.c4inet.net (rincewind.c4inet.net [193.120.144.209]) by mx1.FreeBSD.org (Postfix) with SMTP id E007A43D31 for ; Sat, 24 Jul 2004 18:21:12 +0000 (GMT) (envelope-from sascha@rincewind.c4inet.net) Received: (qmail 11658 invoked by uid 1000); 24 Jul 2004 18:21:11 -0000 Message-Id: <20040724182111.11657.qmail@rincewind.c4inet.net> Date: 24 Jul 2004 18:21:11 -0000 From: Sascha Luck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69540: clashing configure options in ports/nagios X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sascha Luck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 18:30:41 -0000 >Number: 69540 >Category: ports >Synopsis: clashing configure options in ports/nagios >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 Jul 24 18:30:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sascha Luck >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: C4I Networks Ltd. >Environment: System: FreeBSD devlab.eirconnect.net 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Sat Jul 17 03:18:02 IST 2004 sascha@devlab.eirconnect.net:/usr/obj/usr/src/sys/DEVLAB i386 >Description: ports/nagios can be built with MySQL support (WITH_MYSQL). If this option is configured, nagios will be built with both: --mysql-xdata and --with-template-extinfo as the latter is selected by default. These two options are mutually exclusive, as the Nagios CGIs are then built with both database and template config file support for extended data. This will result in neither option working. >How-To-Repeat: Build ports/nagios with WITH_MYSQL enabled. Configure extended data for monitoring hosts. Use either the database or the template .cfg file. Neither will work. >Fix: *** Makefile Mon Feb 23 04:42:03 2004 --- Makefile.mysql-xdata Sat Jul 24 19:08:52 2004 *************** *** 45,49 **** --with-nagios-grp=${NAGIOSGROUP} \ --with-template-objects \ - --with-template-extinfo \ --sbindir=${PREFIX}/share/nagios/cgi-bin \ --libexecdir=${PREFIX}/libexec/nagios \ --- 45,48 ---- *************** *** 52,55 **** --- 51,58 ---- --localstatedir=${NAGIOSDIR} \ --prefix=${PREFIX} + + .if !defined(WITH_MYSQL) + CONFIGURE_ARGS+= --with-template-extinfo + .endif .if defined(WITH_GD1) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 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 690A216A4CF for ; Sat, 24 Jul 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 6321543D45 for ; Sat, 24 Jul 2004 18:50:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OIoZjk041251 for ; Sat, 24 Jul 2004 18:50:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OIoZPc041250; Sat, 24 Jul 2004 18:50:35 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 18:50:35 GMT Message-Id: <200407241850.i6OIoZPc041250@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jake Hamby Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jake Hamby List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 18:50:35 -0000 The following reply was made to PR ports/69404; it has been noted by GNATS. From: Jake Hamby To: pav@FreeBSD.org Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/69404: mono compiler (mcs) crashes with assertion failure in libpthread Date: Sat, 24 Jul 2004 10:55:23 -0700 Pav Lucistnik wrote: > Can you try to remove those CFLAGS from make.conf, recompile mono > without them and try again with monodoc? Still crashes when built w/ normal CFLAGS. Btw, here is the output of "mono --version": Mono JIT compiler version 1.0, (C) 2002-2004 Novell, Inc and Contributors. www.go-mono.com TLS: normal GC: Included Boehm (with typed GC) SIGSEGV : normal Globalization: ICU As the globalization line indicates, I previously installed devel/icu2-2.8 for i18n support in Mono. I doubt that this is the source of the problem, though. -Jake From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 19: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 777A116A4CE for ; Sat, 24 Jul 2004 19:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 601B243D31 for ; Sat, 24 Jul 2004 19:20:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OJKKap057568 for ; Sat, 24 Jul 2004 19:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OJKK6W057566; Sat, 24 Jul 2004 19:20:20 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 19:20:20 GMT Resent-Message-Id: <200407241920.i6OJKK6W057566@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mark Daniel Reidel Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BECA16A4CE for ; Sat, 24 Jul 2004 19:13:28 +0000 (GMT) Received: from karm.dyndns.org (pD9E89CE7.dip.t-dialin.net [217.232.156.231]) by mx1.FreeBSD.org (Postfix) with SMTP id 34F8343D1F for ; Sat, 24 Jul 2004 19:13:27 +0000 (GMT) (envelope-from root@karm.dyndns.org) Received: (qmail 95463 invoked by uid 0); 24 Jul 2004 19:13:22 -0000 Message-Id: <20040724191322.95462.qmail@karm.dyndns.org> Date: 24 Jul 2004 19:13:22 -0000 From: Mark Daniel Reidel To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69541: [MAINTAINER] audio/gmpc: update to 0.11.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, 24 Jul 2004 19:20:20 -0000 >Number: 69541 >Category: ports >Synopsis: [MAINTAINER] audio/gmpc: update to 0.11.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 24 19:20:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Mark Daniel Reidel >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD alu.reidel.info 5.2-CURRENT FreeBSD 5.2-CURRENT #12: Fri Jul 2 20:37:09 CEST >Description: - Update to 0.11.1 - Supports streaming via musicpd - NLS-support for french added - Changed master-sites >How-To-Repeat: >Fix: --- gmpc-0.11.1,1.patch begins here --- diff -ruN --exclude=CVS /tmp/portbk/audio/gmpc/Makefile /usr/ports/audio/gmpc/Makefile --- /tmp/portbk/audio/gmpc/Makefile Sat Jul 24 20:30:59 2004 +++ /usr/ports/audio/gmpc/Makefile Sat Jul 24 21:11:46 2004 @@ -6,26 +6,34 @@ # PORTNAME= gmpc -PORTVERSION= 0.10.3 +PORTVERSION= 0.11.1 PORTEPOCH= 1 CATEGORIES= audio -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= musicpd +MASTER_SITES= http://mercury.chem.pitt.edu/~shank/ \ + http://download.qballcow.nl/programs/gmpc/ MAINTAINER= ports@mark.reidel.info COMMENT= Tray-aware GTK2 client for musicpd GNU_CONFIGURE= yes -USE_GNOME= glib20 gtk20 libglade2 +USE_GNOME= glib20 gtk20 libglade2 gnomevfs2 CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ CFLAGS+= -I${PREFIX}/include +OPTIONS= NLS "Native language support" on + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/gmpc ${PREFIX}/bin/ ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/pixmaps/*.png ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/glade/gmpc.glade ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/glade/*.glade ${DATADIR} +.if !defined(WITHOUT_NLS) +.for language in fr + ${MKDIR} ${LOCALBASE}/share/locale/${language}/LC_MESSAGES + ${INSTALL_DATA} ${WRKSRC}/po/${language}.gmo ${PREFIX}/share/locale/${language}/LC_MESSAGES/gmpc.mo +.endfor +.endif .include diff -ruN --exclude=CVS /tmp/portbk/audio/gmpc/distinfo /usr/ports/audio/gmpc/distinfo --- /tmp/portbk/audio/gmpc/distinfo Sat Jul 24 20:30:59 2004 +++ /usr/ports/audio/gmpc/distinfo Sat Jul 24 20:34:39 2004 @@ -1,2 +1,2 @@ -MD5 (gmpc-0.10.3.tar.gz) = c87307039fdd852260271dea9f0580af -SIZE (gmpc-0.10.3.tar.gz) = 145028 +MD5 (gmpc-0.11.1.tar.gz) = 1b7c233c52073dec6eb983119605494a +SIZE (gmpc-0.11.1.tar.gz) = 209726 diff -ruN --exclude=CVS /tmp/portbk/audio/gmpc/pkg-plist /usr/ports/audio/gmpc/pkg-plist --- /tmp/portbk/audio/gmpc/pkg-plist Sat Jul 24 20:30:59 2004 +++ /usr/ports/audio/gmpc/pkg-plist Sat Jul 24 20:57:33 2004 @@ -1,11 +1,19 @@ bin/gmpc -share/gmpc/tray.png -share/gmpc/media-play.png -share/gmpc/media-pause.png +share/gmpc/gmpc-tray.png +share/gmpc/gmpc.png +share/gmpc/media-album.png +share/gmpc/media-artist.png +share/gmpc/media-audiofile.png share/gmpc/media-next.png +share/gmpc/media-pause.png +share/gmpc/media-play.png share/gmpc/media-prev.png -share/gmpc/gmpc-tray.png share/gmpc/media-stop.png -share/gmpc/gmpc.png +share/gmpc/media-stream.png +share/gmpc/player-repeat.png +share/gmpc/player-shuffle.png share/gmpc/gmpc.glade +share/gmpc/playlist.glade +share/gmpc/open-location.glade +share/gmpc/add-browser.glade @dirrm share/gmpc --- gmpc-0.11.1,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 19:37: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 CF7D416A4CF; Sat, 24 Jul 2004 19:37:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B365F43D31; Sat, 24 Jul 2004 19:37:51 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OJbpX4064603; Sat, 24 Jul 2004 19:37:51 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OJbp9m064599; Sat, 24 Jul 2004 19:37:51 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 19:37:51 GMT From: Sergey Matveychuk Message-Id: <200407241937.i6OJbp9m064599@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/66625: New Port: reply-o-matic X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 19:37:52 -0000 Synopsis: New Port: reply-o-matic Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 19:37:46 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=66625 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20:00: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 056E516A4CE for ; Sat, 24 Jul 2004 20:00:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB77143D39 for ; Sat, 24 Jul 2004 20:00:43 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OK0hQm071804 for ; Sat, 24 Jul 2004 20:00:43 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OK0hr2071773; Sat, 24 Jul 2004 20:00:43 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 20:00:43 GMT Resent-Message-Id: <200407242000.i6OK0hr2071773@freefall.freebsd.org> 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 Y.Bogdanov" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49A4016A4CE; Sat, 24 Jul 2004 19:58:49 +0000 (GMT) Received: from mail.brj.pp.ru (brj.pp.ru [80.255.136.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A93F43D2D; Sat, 24 Jul 2004 19:58:47 +0000 (GMT) (envelope-from root@brj.pp.ru) Received: by mail.brj.pp.ru (Postfix, from userid 0) id 2E54711597; Sun, 25 Jul 2004 03:58:44 +0800 (KRAST) Message-Id: <20040724195844.2E54711597@mail.brj.pp.ru> Date: Sun, 25 Jul 2004 03:58:44 +0800 (KRAST) From: "Roman Y.Bogdanov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: "Roman Y.Bogdanov" Subject: ports/69542: update port: audio/napster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Roman Y.Bogdanov" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 20:00:44 -0000 >Number: 69542 >Category: ports >Synopsis: update port: audio/napster >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 Jul 24 20:00:43 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Y. Bogdanov >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: n/a >Environment: System: FreeBSD brj.pp.ru 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Thu Jul 15 01:04:50 KRAST 2004 root@brj.pp.ru:/usr/src/sys/i386/compile/brj-5x i386 >Description: I'am run a opennapster server in our local campus network. My server use about 700 local clients. The majority of clients uses windows client SunshineeUN with russian windows CP1251 codepage. For users of my server I have made patch which does code conversion CP1251 in Russian locale freebsd koi8. Users happy very much because can talk from freebsd to clients windows in Russian. >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: # # audio # audio/napster # audio/napster/Makefile # audio/napster/distinfo # audio/napster/pkg-descr # audio/napster/pkg-plist # audio/napster/files # audio/napster/files/extra-win2koi # audio/napster/files/patch-doc::Makefile.in # echo c - audio mkdir -p audio > /dev/null 2>&1 echo c - audio/napster mkdir -p audio/napster > /dev/null 2>&1 echo x - audio/napster/Makefile sed 's/^X//' >audio/napster/Makefile << 'END-of-audio/napster/Makefile' X# New ports collection makefile for: napster X# Date created: Thu Nov 18 01:07:00 PST 1999 X# Whom: dburr@FreeBSD.org X# X# $FreeBSD: ports/audio/napster/Makefile,v 1.24 2004/06/23 16:32:16 petef Exp $ X# X XPORTNAME= nap XPORTVERSION= 1.5.3 XCATEGORIES= audio net XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= nap X XMAINTAINER= petef@FreeBSD.org XCOMMENT?= An MP3 sharing, search, and chat client for the OpenNAP network X XGNU_CONFIGURE= yes XUSE_REINPLACE= yes X XMAN1= nap.1 X X.if defined(WITH_ENCODING_PATCH) Xpre-configure:: X @${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-win2koi X.endif X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for file in NEWS README doc/napster.txt doc/userguide.html X ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} X.endfor X.endif X X.include END-of-audio/napster/Makefile echo x - audio/napster/distinfo sed 's/^X//' >audio/napster/distinfo << 'END-of-audio/napster/distinfo' XMD5 (nap-1.5.3.tar.gz) = b39ceb2bac8432e1aef11b0d4ecf4c7c XSIZE (nap-1.5.3.tar.gz) = 319902 END-of-audio/napster/distinfo echo x - audio/napster/pkg-descr sed 's/^X//' >audio/napster/pkg-descr << 'END-of-audio/napster/pkg-descr' XNap is a console Napster client that supports MP3 sharing, search, and Xchatting. It now defaults to connecting to the OpenNAP network because Xthe official Napster.com network has client filters. X XWWW: http://quasar.mathstat.uottawa.ca/~selinger/nap/ X X- Pete Xpetef@FreeBSD.org END-of-audio/napster/pkg-descr echo x - audio/napster/pkg-plist sed 's/^X//' >audio/napster/pkg-plist << 'END-of-audio/napster/pkg-plist' Xbin/nap Xbin/napping X%%PORTDOCS%%%%DOCSDIR%%/NEWS X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/napster.txt X%%PORTDOCS%%%%DOCSDIR%%/userguide.html X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-audio/napster/pkg-plist echo c - audio/napster/files mkdir -p audio/napster/files > /dev/null 2>&1 echo x - audio/napster/files/extra-win2koi sed 's/^X//' >audio/napster/files/extra-win2koi << 'END-of-audio/napster/files/extra-win2koi' Xdiff -urN src/cmds.c src/cmds.c X--- src/cmds.c Wed Jul 21 18:57:52 2004 X+++ src/cmds.c Wed Jul 21 19:10:36 2004 X@@ -52,6 +52,8 @@ X #include "memwatch.h" X #endif X X+#include "recoder.h" X+ X extern info_t info; X extern scroll_t *mscroll, *mscrollend; X extern int lastlogflag; X@@ -1744,8 +1746,10 @@ X } X X msg = fixquotes(cstr(str, 2)); X+ recodepage(msg,msg,1); X sendpack(s, NAP_TELL, "%s %s", tok[1], msg); X recent = findquery(chanl, tok[1]); X+ recodepage(msg,msg,2); X wp(win, "%s* --> (%s%s%s)%s %s\n", GREEN, WHITE, tok[1], GREEN, WHITE, msg); X drw(win); X X@@ -2712,6 +2716,7 @@ X O_NAP_FUNC(dtopic) X { X chans_t *cur; X+ char *k_topic=curchan->topic; X X if (num == 1) X { X@@ -2738,7 +2743,8 @@ X drw(win); X return(1); X } X- X+ X+ recodepage(str,str,1); X sendpack(s, NAP_TOPIC, "%s", cstr(str, 1)); X X return(1); X@@ -2822,6 +2828,7 @@ X return(-3); X } X X+ recodepage(str,str,1); X sendpack(s, NAP_ANNOUNCE, "%s", cstr(str, 1)); X X return(1); X@@ -4696,6 +4703,7 @@ X } X else if (curchan->q == 2 && buf[0] != '\0') X { X+ recodepage(buf,buf,1); X ssock(ircsock, "PRIVMSG %s :%s\n", curchan->nm, buf); X recent = curchan; X wp(win, "%s<%s%s%s>%s %s\n", BRIGHT(MAGENTA), WHITE, mnick, BRIGHT(MAGENTA), WHITE, buf); Xdiff -urN src/recoder.h src/recoder.h X--- src/recoder.h Thu Jan 1 07:00:00 1970 X+++ src/recoder.h Wed Jul 21 19:10:36 2004 X@@ -0,0 +1,51 @@ X+/* X+ X+ brj.pp.ru decoder library X+ X+*/ X+ X+#include X+#include X+ X+unsigned char kw[] = {128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, X+ 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, X+ 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175, X+ 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, X+ 254,224,225,246,228,229,244,227,245,232,233,234,235,236,237,238, X+ 239,255,240,241,242,243,230,226,252,251,231,248,253,249,247,250, X+ 222,192,193,214,196,197,212,195,213,200,201,202,203,204,205,206, X+ 207,223,208,209,210,211,198,194,220,219,199,216,221,217,215,218}; X+ X+unsigned char wk[] = {128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, X+ 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, X+ 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175, X+ 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, X+ 225,226,247,231,228,229,246,250,233,234,235,236,237,238,239,240, X+ 242,243,244,245,230,232,227,254,251,253,255,249,248,252,224,241, X+ 193,194,215,199,196,197,214,218,201,202,203,204,205,206,207,208, X+ 210,211,212,213,198,200,195,222,219,221,223,217,216,220,192,209}; X+ X+unsigned char *table; X+ X+char *recodepage(char * source, char * dest, int codenum) X+{ X+ X+if((codenum == 1)){table=kw;} X+if((codenum == 2)){table=wk;} X+ X+int j=0; X+ X+strcpy(dest,source); X+ X+int i=0; X+for(i=0;inm, tok[0]) || wmode) Xdiff -urN src/winio.c src/winio.c X--- src/winio.c Wed Jul 21 18:57:52 2004 X+++ src/winio.c Wed Jul 21 19:13:10 2004 X@@ -1007,13 +1007,16 @@ X drw(win); X } else if (curchan->q == 1) { X msg = fixquotes(strdup(command)); X+ recodepage(msg,msg,1); X sendpack(s, NAP_TELL, "%s %s", curchan->nm, msg); X recent = curchan; X+ recodepage(msg,msg,2); X wp(win, "%s* --> (%s%s%s)%s %s\n", GREEN, WHITE, curchan->nm, GREEN, WHITE, msg); X drw(win); X free(msg); X recent = NULL; X } else if (curchan->q == 2) { X+ recodepage(command,command,1); X ssock(ircsock, "PRIVMSG %s :%s\n", curchan->nm, command); X recent = curchan; X wp(win, "%s<%s%s%s>%s %s\n", BRIGHT(MAGENTA), WHITE, mnick, BRIGHT(MAGENTA), WHITE, command); X@@ -1021,6 +1024,7 @@ X recent = NULL; X } else { X msg = fixquotes(strdup(command)); X+ recodepage(msg,msg,1); X if (sendpack(s, NAP_SAY, "%s %s", curchan->nm, msg) == -1) { X delsock(s); /* s is the server, or -1 if no server */ X } END-of-audio/napster/files/extra-win2koi echo x - audio/napster/files/patch-doc::Makefile.in sed 's/^X//' >audio/napster/files/patch-doc::Makefile.in << 'END-of-audio/napster/files/patch-doc::Makefile.in' X--- doc/Makefile.in.orig Wed Jun 23 11:20:36 2004 X+++ doc/Makefile.in Wed Jun 23 11:22:22 2004 X@@ -124,7 +124,7 @@ X sysconfdir = @sysconfdir@ X target_alias = @target_alias@ X EXTRA_DIST = nap.1.in userguide.html napster.txt X-htmldir = $(prefix)/doc/nap X+htmldir = $(prefix)/share/doc/nap X man_MANS = nap.1 X html_DATA = userguide.html X all: all-am X@@ -208,6 +208,7 @@ X rm -f $(DESTDIR)$(man1dir)/$$inst; \ X done X install-htmlDATA: $(html_DATA) X+.ifndef(NOPORTDOCS) X @$(NORMAL_INSTALL) X $(mkdir_p) $(DESTDIR)$(htmldir) X @list='$(html_DATA)'; for p in $$list; do \ X@@ -216,6 +217,7 @@ X echo " $(htmlDATA_INSTALL) $$d$$p $(DESTDIR)$(htmldir)/$$f"; \ X $(htmlDATA_INSTALL) $$d$$p $(DESTDIR)$(htmldir)/$$f; \ X done X+.endif X X uninstall-htmlDATA: X @$(NORMAL_UNINSTALL) END-of-audio/napster/files/patch-doc::Makefile.in exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20:02: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 E3A1716A4CE; Sat, 24 Jul 2004 20:02:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C805143D45; Sat, 24 Jul 2004 20:02:55 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6OK2tAh072687; Sat, 24 Jul 2004 20:02:55 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OK2th8072683; Sat, 24 Jul 2004 20:02:55 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 20:02:55 GMT From: Mark Linimon Message-Id: <200407242002.i6OK2th8072683@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69520: new port: security/doorman X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 20:02:56 -0000 Old Synopsis: Update port: security/doorman New Synopsis: new port: security/doorman Class-Changed-From-To: update->change-request Class-Changed-By: linimon Class-Changed-When: Sat Jul 24 20:02:11 GMT 2004 Class-Changed-Why: New ports are change-requests. (It would have been 'update' if the PR it replaced had already been committed). http://www.freebsd.org/cgi/query-pr.cgi?pr=69520 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20:04: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 B759816A4ED; Sat, 24 Jul 2004 20:04:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BD0D43D41; Sat, 24 Jul 2004 20:04:02 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6OK42rm073098; Sat, 24 Jul 2004 20:04:02 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OK42j3073094; Sat, 24 Jul 2004 20:04:02 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 20:04:02 GMT From: Mark Linimon Message-Id: <200407242004.i6OK42j3073094@freefall.freebsd.org> To: fehlner@gmx.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/62583: [NEW PORT] sysutils/usermatic: Scripts to automate the maintenance of accounts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 20:04:02 -0000 Synopsis: [NEW PORT] sysutils/usermatic: Scripts to automate the maintenance of accounts State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 20:03:39 GMT 2004 State-Changed-Why: Superceded by ports/68870. http://www.freebsd.org/cgi/query-pr.cgi?pr=62583 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20:05: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 BEDF616A4DA; Sat, 24 Jul 2004 20:05:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 603E343D4C; Sat, 24 Jul 2004 20:05:15 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6OK5Fp5073515; Sat, 24 Jul 2004 20:05:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OK5ELq073511; Sat, 24 Jul 2004 20:05:14 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 20:05:14 GMT From: Mark Linimon Message-Id: <200407242005.i6OK5ELq073511@freefall.freebsd.org> To: dsh@neva.vlink.ru, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/65024: new port: www/parser-pgsql (postgresql driver for parser) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 20:05:28 -0000 Synopsis: new port: www/parser-pgsql (postgresql driver for parser) State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jul 24 20:04:53 GMT 2004 State-Changed-Why: Duplicate of ports/65023. http://www.freebsd.org/cgi/query-pr.cgi?pr=65024 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20:10: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 8C5CA16A4CE for ; Sat, 24 Jul 2004 20:10:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CA5543D45 for ; Sat, 24 Jul 2004 20:10:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OKA6G6078969 for ; Sat, 24 Jul 2004 20:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OKA6Y6078966; Sat, 24 Jul 2004 20:10:06 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 20:10:06 GMT Resent-Message-Id: <200407242010.i6OKA6Y6078966@freefall.freebsd.org> 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 Y.Bogdanov" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDDCB16A4CF for ; Sat, 24 Jul 2004 20:09:21 +0000 (GMT) Received: from mail.brj.pp.ru (brj.pp.ru [80.255.136.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B19B43D45 for ; Sat, 24 Jul 2004 20:09:21 +0000 (GMT) (envelope-from brj@brj.pp.ru) Received: by mail.brj.pp.ru (Postfix, from userid 1002) id 11F5011597; Sun, 25 Jul 2004 04:09:20 +0800 (KRAST) Message-Id: <20040724200920.11F5011597@mail.brj.pp.ru> Date: Sun, 25 Jul 2004 04:09:20 +0800 (KRAST) From: "Roman Y.Bogdanov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: "Roman Y.Bogdanov" Subject: ports/69543: new metaport russian/ru-napster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Roman Y.Bogdanov" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 20:10:06 -0000 >Number: 69543 >Category: ports >Synopsis: new metaport russian/ru-napster >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 Jul 24 20:10:06 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Y. Bogdanov >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: n/a >Environment: System: FreeBSD brj.pp.ru 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Thu Jul 15 01:04:50 KRAST 2004 root@brj.pp.ru:/usr/src/sys/i386/compile/brj-5x i386 >Description: DEPEND'S on PR 69542 Add depended-metaportirussian/ru-napster on audio/napster with russian encoding patch >How-To-Repeat: n/a >Fix: --- ru-nap 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: # # russian # russian/napster # russian/napster/Makefile # echo c - russian mkdir -p russian > /dev/null 2>&1 echo c - russian/napster mkdir -p russian/napster > /dev/null 2>&1 echo x - russian/napster/Makefile sed 's/^X//' >russian/napster/Makefile << 'END-of-russian/napster/Makefile' X# New ports collection makefile for: napster X# Date created: 21.07.2004 X# Whom: Roman Y. Bogdanov X# X# $FreeBSD$ X# X XPORTNAME= napster XCATEGORIES= russian X XMAINTAINER= sam@brj.pp.ru XCOMMENT= ru-napster - client for the OpenNAP network with Russian koi8 <> win1251 encoding patch X XMASTERDIR= ${.CURDIR}/../../audio/napster X XCONFLICTS= nap-[0-9]* X XWITH_ENCODING_PATCH= yes X X.include "${MASTERDIR}/Makefile" END-of-russian/napster/Makefile exit --- ru-nap ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20: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 7EB1116A4CE for ; Sat, 24 Jul 2004 20:20:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51AA543D48 for ; Sat, 24 Jul 2004 20:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OKKKP2080444 for ; Sat, 24 Jul 2004 20:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OKKKSg080443; Sat, 24 Jul 2004 20:20:20 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 20:20:20 GMT Resent-Message-Id: <200407242020.i6OKKKSg080443@freefall.freebsd.org> 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 Shterenzon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E46416A4CE for ; Sat, 24 Jul 2004 20:14:58 +0000 (GMT) Received: from smtp1.actcom.co.il (smtp.actcom.co.il [192.114.47.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15F3343D39 for ; Sat, 24 Jul 2004 20:14:54 +0000 (GMT) (envelope-from mapc@oven.org) Received: from mail.oven.org (line22-32.adsl.actcom.co.il [192.115.22.32]) by smtp1.actcom.co.il (8.12.11/8.12.11) with ESMTP id i6OKEocM027900 for ; Sat, 24 Jul 2004 23:14:51 +0300 Received: from alchemy.oven.org (alchemy.oven.org [10.0.1.2]) by mail.oven.org (Postfix) with ESMTP id 7C1044BC9; Sat, 24 Jul 2004 23:14:44 +0300 (IDT) Received: from alchemy.oven.org (island@localhost [127.0.0.1]) by alchemy.oven.org (8.12.11/8.12.11) with ESMTP id i6OKEdTt069463; Sat, 24 Jul 2004 23:14:39 +0300 (IDT) (envelope-from mapc@alchemy.oven.org) Received: (from mapc@localhost) by alchemy.oven.org (8.12.11/8.12.11/Submit) id i6OKEc1J069462; Sat, 24 Jul 2004 23:14:38 +0300 (IDT) (envelope-from mapc) Message-Id: <200407242014.i6OKEc1J069462@alchemy.oven.org> Date: Sat, 24 Jul 2004 23:14:38 +0300 (IDT) From: Roman Shterenzon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ports@oven.org Subject: ports/69544: Fix audio/lopster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 20:20:24 -0000 >Number: 69544 >Category: ports >Synopsis: Fix audio/lopster >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 Jul 24 20:20:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD alchemy.oven.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Sat Jun 5 23:11:42 IDT 2004 root@alchemy.oven.org:/local/obj/local/src/sys/ALCHEMY i386 >Description: Distribution was rerolled. No need to bump the portrevision, since the old dist didn't even compile. >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/lopster/distinfo lopster/distinfo --- /usr/ports/audio/lopster/distinfo Sat Jul 24 22:43:33 2004 +++ lopster/distinfo Sat Jul 24 23:11:36 2004 @@ -1,2 +1,2 @@ -MD5 (lopster-1.2.1.tar.gz) = c6b192a4c62b50999fa1117924204156 -SIZE (lopster-1.2.1.tar.gz) = 632376 +MD5 (lopster-1.2.1.tar.gz) = 229621304a1f458c7302f9d4da738b73 +SIZE (lopster-1.2.1.tar.gz) = 632462 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20: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 B22D016A4CE for ; Sat, 24 Jul 2004 20:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92AB643D2F for ; Sat, 24 Jul 2004 20:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OKURux083709 for ; Sat, 24 Jul 2004 20:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OKURnm083707; Sat, 24 Jul 2004 20:30:27 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 20:30:27 GMT Message-Id: <200407242030.i6OKURnm083707@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Roman Shterenzon Subject: Re: ports/69544: Fix audio/lopster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Roman Shterenzon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 20:30:27 -0000 The following reply was made to PR ports/69544; it has been noted by GNATS. From: Roman Shterenzon To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69544: Fix audio/lopster Date: Sat, 24 Jul 2004 23:24:18 +0300 (IDT) Hmm.. Please change the MASTER_SITE to http://lopster.sourceforge.net/download/ (and comment out MASTER_SITE_SUBDIR) others still host the bad version Thanks, --Roman From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20: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 BEF5116A4CE; Sat, 24 Jul 2004 20:41:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2BDF43D1D; Sat, 24 Jul 2004 20:41:19 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i6OKfJ8B088358; Sat, 24 Jul 2004 20:41:19 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OKfJKZ088354; Sat, 24 Jul 2004 20:41:19 GMT (envelope-from arved) Date: Sat, 24 Jul 2004 20:41:19 GMT From: Tilman Linneweh Message-Id: <200407242041.i6OKfJKZ088354@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, petef@FreeBSD.org Subject: Re: ports/69542: update port: audio/napster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 20:41:19 -0000 Synopsis: update port: audio/napster Responsible-Changed-From-To: freebsd-ports-bugs->petef Responsible-Changed-By: arved Responsible-Changed-When: Sat Jul 24 20:40:50 GMT 2004 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69542 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 20:48: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 B573416A4CE; Sat, 24 Jul 2004 20:48:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97ED343D49; Sat, 24 Jul 2004 20:48:58 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) i6OKmwut091279; Sat, 24 Jul 2004 20:48:58 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OKmwfO091275; Sat, 24 Jul 2004 20:48:58 GMT (envelope-from sem) Date: Sat, 24 Jul 2004 20:48:58 GMT From: Sergey Matveychuk Message-Id: <200407242048.i6OKmwfO091275@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/69543: new metaport russian/ru-napster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 20:48:58 -0000 Synopsis: new metaport russian/ru-napster Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: sem Responsible-Changed-When: Sat Jul 24 20:48:53 GMT 2004 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=69543 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 21:30: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 3713D16A4CE for ; Sat, 24 Jul 2004 21:30:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CE5343D2D for ; Sat, 24 Jul 2004 21:30:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OLUGIb099281 for ; Sat, 24 Jul 2004 21:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OLUGeg099280; Sat, 24 Jul 2004 21:30:16 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 21:30:16 GMT Resent-Message-Id: <200407242130.i6OLUGeg099280@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dejan Lesjak Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3036C16A4CE for ; Sat, 24 Jul 2004 21:27:24 +0000 (GMT) Received: from avs3.arnes.si (avs3.arnes.si [193.2.1.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E9E543D2F for ; Sat, 24 Jul 2004 21:27:23 +0000 (GMT) (envelope-from lesi@idefix.ijs.si) Received: from localhost (avs3.arnes.si [193.2.1.68]) by avs3.arnes.si (Postfix) with ESMTP id 49D131D798B for ; Sat, 24 Jul 2004 23:27:22 +0200 (CEST) Received: from avs3.arnes.si ([193.2.1.68]) by localhost (avs3.arnes.si [193.2.1.68]) (amavisd-new, port 10024) with ESMTP id 97076-09 for ; Sat, 24 Jul 2004 23:27:22 +0200 (CEST) Received: from idefix.ijs.si (clj8-144.dial-up.arnes.si [194.249.52.144]) by avs3.arnes.si (Postfix) with ESMTP id 0ADE41D7987 for ; Sat, 24 Jul 2004 23:27:21 +0200 (CEST) Received: by idefix.ijs.si (Postfix, from userid 1001) id 6F2AF33C2D; Sat, 24 Jul 2004 23:27:21 +0200 (CEST) Message-Id: <20040724212721.6F2AF33C2D@idefix.ijs.si> Date: Sat, 24 Jul 2004 23:27:21 +0200 (CEST) From: Dejan Lesjak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/69545: [PATCH] Fix XFree86-4-libraries/Makefile.inc after X.Org switch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dejan Lesjak List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jul 2004 21:30:19 -0000 >Number: 69545 >Category: ports >Synopsis: [PATCH] Fix XFree86-4-libraries/Makefile.inc after X.Org switch >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: Sat Jul 24 21:30:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dejan Lesjak >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD idefix.ijs.si 5.2-CURRENT FreeBSD 5.2-CURRENT #5: Thu Jul 22 03:16:32 CEST 2004 lesi@idefix.ijs.si:/usr/obj/usr/src/sys/IDEFIX i386 >Description: The bsd.port.mk no longer defines XFREE86_VERSION?=4 for XFree86-4 ports. However ports/x11/XFree86-4-libraries/Makefile.inc still expects this define, which breaks xfree ports. Since ports now check for X_WINDOW_SYSTEM variable in their makefiles, this check can now be removed. Attached is the patch for Makefile.inc. >How-To-Repeat: >Fix: --- Makefile.inc.diff begins here --- Index: Makefile.inc =================================================================== RCS file: /usr/local/freebsd-cvs/ports/x11/XFree86-4-libraries/Makefile.inc,v retrieving revision 1.6 diff -u -r1.6 Makefile.inc --- Makefile.inc 6 Feb 2004 04:41:48 -0000 1.6 +++ Makefile.inc 24 Jul 2004 21:13:57 -0000 @@ -26,13 +26,6 @@ XINSTALL_DIRS?= ${XBUILD_DIRS} _XINCLUDE_DIRS= include ${XBUILD_DIRS} ${XINCLUDE_DIRS} -pre-everything:: - @if [ "x${XFREE86_VERSION}" != "x4" ]; then \ - ${ECHO_MSG} "If you use the XFree86-4 ports you must have XFREE86_VERSION=4"; \ - ${ECHO_MSG} "set in your /etc/make.conf."; \ - ${FALSE}; \ - fi; - .if !target(pre-configure) pre-configure: @${REINPLACE_CMD} -e 's|%%PTHREAD_CFLAGS%%|${PTHREAD_CFLAGS}|g ; \ --- Makefile.inc.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 21:32: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 612CF16A4CE; Sat, 24 Jul 2004 21:32:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F52E43D1F; Sat, 24 Jul 2004 21:32:39 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6OLWdM0000989; Sat, 24 Jul 2004 21:32:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OLWdvj000985; Sat, 24 Jul 2004 21:32:39 GMT (envelope-from linimon) Date: Sat, 24 Jul 2004 21:32:39 GMT From: Mark Linimon Message-Id: <200407242132.i6OLWdvj000985@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, x11@FreeBSD.org Subject: Re: ports/69545: [PATCH] Fix XFree86-4-libraries/Makefile.inc after X.Org switch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 21:32:39 -0000 Synopsis: [PATCH] Fix XFree86-4-libraries/Makefile.inc after X.Org switch Responsible-Changed-From-To: freebsd-ports-bugs->x11 Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 24 21:32:25 GMT 2004 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=69545 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 21:47: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 DEDC916A4CE; Sat, 24 Jul 2004 21:47:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0FB543D1D; Sat, 24 Jul 2004 21:47:14 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6OLlEOF001334; Sat, 24 Jul 2004 21:47:14 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OLlEwa001330; Sat, 24 Jul 2004 21:47:14 GMT (envelope-from vs) Date: Sat, 24 Jul 2004 21:47:14 GMT From: Volker Stolz Message-Id: <200407242147.i6OLlEwa001330@freefall.freebsd.org> To: mhsin@mhsin.org, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69195: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 21:47:15 -0000 Synopsis: [PATCH] misc/wmweather+ causes FP exception (divide by zero) on -CURRENT boxes State-Changed-From-To: feedback->closed State-Changed-By: vs State-Changed-When: Sat Jul 24 21:46:07 GMT 2004 State-Changed-Why: Fixed in maintainer-update ports/69523 http://www.freebsd.org/cgi/query-pr.cgi?pr=69195 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 22: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 EC63916A4CE for ; Sat, 24 Jul 2004 22:10:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC01043D46 for ; Sat, 24 Jul 2004 22:10:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OMABY2005676 for ; Sat, 24 Jul 2004 22:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OMABfa005675; Sat, 24 Jul 2004 22:10:11 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 22:10:11 GMT Message-Id: <200407242210.i6OMABfa005675@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69519: fix port: chinese/qterm 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: Sat, 24 Jul 2004 22:10:12 -0000 The following reply was made to PR ports/69519; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, clsung@dragon2.net, gavin@freebsdchina.org Cc: Subject: Re: ports/69519: fix port: chinese/qterm Date: Sun, 25 Jul 2004 00:03:55 +0300 Dear maintainer, please review the proposed patch - already tested it, it works. Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 22:22: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 CAA4716A4CE; Sat, 24 Jul 2004 22:22:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A272343D2D; Sat, 24 Jul 2004 22:22:55 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6OMMtTI006364; Sat, 24 Jul 2004 22:22:55 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OMMti7006360; Sat, 24 Jul 2004 22:22:55 GMT (envelope-from vs) Date: Sat, 24 Jul 2004 22:22:55 GMT From: Volker Stolz Message-Id: <200407242222.i6OMMti7006360@freefall.freebsd.org> To: fehlner@gmx.de, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/68870: [NEW PORT] sysutils/usermatic: Scripts to automate the maintenance of accounts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 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, 24 Jul 2004 22:22:56 -0000 Synopsis: [NEW PORT] sysutils/usermatic: Scripts to automate the maintenance of accounts State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Sat Jul 24 22:19:51 GMT 2004 State-Changed-Why: There's a NO_BUILD=yes missing, right? Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Sat Jul 24 22:19:51 GMT 2004 Responsible-Changed-Why: There's a NO_BUILD=yes missing, right? http://www.freebsd.org/cgi/query-pr.cgi?pr=68870 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 22: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 4DD0D16A4D7 for ; Sat, 24 Jul 2004 22:40:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35D5A43D60 for ; Sat, 24 Jul 2004 22:40:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OMeQIu007991 for ; Sat, 24 Jul 2004 22:40:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OMeQib007990; Sat, 24 Jul 2004 22:40:26 GMT (envelope-from gnats) Date: Sat, 24 Jul 2004 22:40:26 GMT Message-Id: <200407242240.i6OMeQib007990@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Volker Stolz" Subject: Re: ports/69541: [MAINTAINER] audio/gmpc: update to 0.11.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: Sat, 24 Jul 2004 22:40:34 -0000 The following reply was made to PR ports/69541; it has been noted by GNATS. From: "Volker Stolz" To: freebsd-gnats-submit@freebsd.org, ports@mark.reidel.info Cc: Subject: Re: ports/69541: [MAINTAINER] audio/gmpc: update to 0.11.1 Date: Sun, 25 Jul 2004 00:32:52 +0300 Does not build on 4.x: playlist2.c: In function `pl2_row_moved': playlist2.c:615: syntax error before `int' playlist2.c:630: `i' undeclared (first use in this function) playlist2.c:630: (Each undeclared identifier is reported only once playlist2.c:630: for each function it appears in.) *** Error code 1 Stop in /usr/ports/audio/gmpc/work/gmpc-0.11.1/src. Most probably this either needs patches for C89 or USE_GCC=3.x Volker From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 22: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 8BCFC16A4D8 for ; Sat, 24 Jul 2004 22:40:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5770443D60 for ; Sat, 24 Jul 2004 22:40:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6OMeNDw007976 for ; Sat, 24 Jul 2004 22:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OMeNjX007975; Sat, 24 Jul 2004 22:40:23 GMT (envelope-from gnats) Resent-Date: Sat, 24 Jul 2004 22:40:23 GMT Resent-Message-Id: <200407242240.i6OMeNjX007975@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimura Fuyuki Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9D716A4CE for ; Sat, 24 Jul 2004 22:32:01 +0000 (GMT) Received: from mgate15.so-net.ne.jp (mgate15.so-net.ne.jp [210.139.254.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7272243D4C for ; Sat, 24 Jul 2004 22:32:00 +0000 (GMT) (envelope-from fuyuki@hadaly.org) Received: from mail.dg8.so-net.ne.jp (mspool12.so-net.ne.jp [210.139.248.12]) by mgate15.so-net.ne.jp with ESMTP id i6OMVxD20162 for ; Sun, 25 Jul 2004 07:31:59 +0900 (JST) Received: from ns.nigredo.org (pdd3025.spprac00.ap.so-net.ne.jp [218.221.48.37]) by mail.dg8.so-net.ne.jp with ESMTP id i6OMVxE10946 for ; Sun, 25 Jul 2004 07:31:59 +0900 (JST) Message-Id: <86ekn1ox47.wl%fuyuki@hadaly.org> Date: Sun, 25 Jul 2004 07:31:52 +0900 From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/69546: Update port: databases/qdbm to 1.8.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: Sat, 24 Jul 2004 22:40:34 -0000 >Number: 69546 >Category: ports >Synopsis: Update port: databases/qdbm to 1.8.14 >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 Jul 24 22:40:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: FreeBSD ns.nigredo.org 5.2.1-RELEASE-p9 i386 >Description: Update to 1.8.14 >How-To-Repeat: >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/databases/qdbm/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- Makefile 9 Jul 2004 05:08:41 -0000 1.25 +++ Makefile 24 Jul 2004 22:16:05 -0000 @@ -6,7 +6,7 @@ # PORTNAME= qdbm -PORTVERSION= 1.8.13 +PORTVERSION= 1.8.14 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} \ http://qdbm.sourceforge.net/ Index: distinfo =================================================================== RCS file: /cvs/FreeBSD/ports/databases/qdbm/distinfo,v retrieving revision 1.25 diff -u -r1.25 distinfo --- distinfo 9 Jul 2004 05:08:41 -0000 1.25 +++ distinfo 24 Jul 2004 22:19:31 -0000 @@ -1,2 +1,2 @@ -MD5 (qdbm-1.8.13.tar.gz) = af5f9648bf95169a2fcf541d76d6649f -SIZE (qdbm-1.8.13.tar.gz) = 806205 +MD5 (qdbm-1.8.14.tar.gz) = 4c0fc1666e049de020132012899c5bc2 +SIZE (qdbm-1.8.14.tar.gz) = 808779 Index: pkg-plist =================================================================== RCS file: /cvs/FreeBSD/ports/databases/qdbm/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- pkg-plist 5 Jan 2004 23:35:27 -0000 1.6 +++ pkg-plist 24 Jul 2004 22:28:56 -0000 @@ -27,5 +27,5 @@ include/vista.h lib/libqdbm.a lib/libqdbm.so -lib/libqdbm.so.1 -lib/libqdbm.so.1.0.0 +lib/libqdbm.so.2 +lib/libqdbm.so.2.0.0 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 24 22:58: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 B4E7216A4CE; Sat, 24 Jul 2004 22:58:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 938B943D41; Sat, 24 Jul 2004 22:58:20 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) i6OMwKcY008465; Sat, 24 Jul 2004 22:58:20 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6OMwKCY008461; Sat, 24 Jul 2004 22:58:20 GMT (envelope-from vs) Date: Sat, 24 Jul 2004 22:58:20 GMT From: Volker Stolz Message-Id: <200407242258.i6OMwKCY008461@freefall.freebsd.org> To: jylefort@brutele.be, vs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vs@FreeBSD.org Subject: Re: ports/66762: Update port: games/xpilot-ng (split into games/xpilot-ng-server and games/xpilot-ng-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: Sat, 24 Jul 2004 22:58:20 -0000 Synopsis: Update port: games/xpilot-ng (split into games/xpilot-ng-server and games/xpilot-ng-client) State-Changed-From-To: open->feedback State-Changed-By: vs State-Changed-When: Sat Jul 24 22:57:28 GMT 2004 State-Changed-Why: Shouldn't this better be USE_GCC=3.3? Responsible-Changed-From-To: freebsd-ports-bugs->vs Responsible-Changed-By: vs Responsible-Changed-When: Sat Jul 24 22:57:28 GMT 2004 Responsible-Changed-Why: I'll handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=66762