From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:20:05 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BF4B16A420 for ; Sun, 19 Feb 2006 01:20:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0D3C43D46 for ; Sun, 19 Feb 2006 01:20:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1K45u052927 for ; Sun, 19 Feb 2006 01:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1K4kr052926; Sun, 19 Feb 2006 01:20:04 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 01:20:04 GMT Resent-Message-Id: <200602190120.k1J1K4kr052926@freefall.freebsd.org> 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 Yasuhiro Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4259D16A422; Sun, 19 Feb 2006 01:10:51 +0000 (GMT) (envelope-from yasu@home.utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAD9143D55; Sun, 19 Feb 2006 01:10:50 +0000 (GMT) (envelope-from yasu@home.utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id 09303B83D; Sun, 19 Feb 2006 10:10:49 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by eastasia.home.utahime.org (Postfix) with ESMTP id CD4742F; Sun, 19 Feb 2006 10:10:48 +0900 (JST) Received: by eastasia.home.utahime.org (Postfix, from userid 1000) id B008C29; Sun, 19 Feb 2006 10:10:48 +0900 (JST) Message-Id: <20060219011048.B008C29@eastasia.home.utahime.org> Date: Sun, 19 Feb 2006 10:10:48 +0900 (JST) From: KIMURA Yasuhiro To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: clsung@FreeBSD.org Subject: ports/93541: security/clamsmtp: does not start with new rc script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:20:05 -0000 >Number: 93541 >Category: ports >Synopsis: security/clamsmtp: does not start with new rc script >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 19 01:20:03 GMT 2006 >Closed-Date: >Last-Modified: >Originator: KIMURA Yasuhiro >Release: FreeBSD 6.0-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD xxxx 6.0-RELEASE-p4 FreeBSD 6.0-RELEASE-p4 #0: Thu Jan 26 01:26:11 JST 2006 xxxx i386 >Description: After files/clamsmtpd.sh.in is updated, startup fails with option error. (BTW, I wonder if using -d option of clamsmtpd in rc script is really meaningful...) >How-To-Repeat: Install with latest port and start up with # /usr/local/etc/rc.d/clamsmtp.sh start >Fix: --- patch-clamsmtp begins here --- Index: security/clamsmtp/files/clamsmtpd.sh.in =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/security/clamsmtp/files/clamsmtpd.sh.in,v retrieving revision 1.2 diff -u -r1.2 clamsmtpd.sh.in --- security/clamsmtp/files/clamsmtpd.sh.in 17 Feb 2006 02:45:40 -0000 1.2 +++ security/clamsmtp/files/clamsmtpd.sh.in 19 Feb 2006 00:35:26 -0000 @@ -20,8 +20,6 @@ rcvar=${name}_enable command=%%PREFIX%%/sbin/${name} -command_args="-f ${clamsmtpd_conf} -p ${clamsmtpd_pid} -d ${clamsmtpd_debug}" -pidfile=${clamsmtpd_pid} sig_stop=-KILL load_rc_config ${name} @@ -29,6 +27,12 @@ : ${clamsmtpd_enable="NO"} : ${clamsmtpd_conf="%%PREFIX%%/etc/clamsmtpd.conf"} : ${clamsmtpd_pid="%%CLAMAV_PID_DIR%%/clamsmtpd.pid"} -: ${clamsmtpd_debug="0"} + +if [ -z ${clamsmtpd_debug} ]; then + command_args="-f ${clamsmtpd_conf} -p ${clamsmtpd_pid}" +else + command_args="-f ${clamsmtpd_conf} -p ${clamsmtpd_pid} -d ${clamsmtpd_debug}" +fi +pidfile=${clamsmtpd_pid} run_rc_command "$1" --- patch-clamsmtp ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:24:10 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 944E316A420; Sun, 19 Feb 2006 01:24:10 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D0B843D46; Sun, 19 Feb 2006 01:24:10 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1OAAx053139; Sun, 19 Feb 2006 01:24:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1OADF053133; Sun, 19 Feb 2006 01:24:10 GMT (envelope-from edwin) Date: Sun, 19 Feb 2006 01:24:10 GMT From: Edwin Groothuis Message-Id: <200602190124.k1J1OADF053133@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org Cc: Subject: Re: ports/93541: security/clamsmtp: does not start with new rc script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:24:10 -0000 Synopsis: security/clamsmtp: does not start with new rc script Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 19 01:24:09 UTC 2006 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=93541 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:40:06 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C53A316A422 for ; Sun, 19 Feb 2006 01:40:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB1A243D48 for ; Sun, 19 Feb 2006 01:40:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1e5pa054534 for ; Sun, 19 Feb 2006 01:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1e5mc054533; Sun, 19 Feb 2006 01:40:05 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 01:40:05 GMT Resent-Message-Id: <200602190140.k1J1e5mc054533@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 000C916A420 for ; Sun, 19 Feb 2006 01:38:44 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: from relay00.pair.com (relay00.pair.com [209.68.5.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 9670143D45 for ; Sun, 19 Feb 2006 01:38:44 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 16395 invoked from network); 19 Feb 2006 01:38:43 -0000 Received: from unknown (HELO phobos.mars.bsd) (unknown) by unknown with SMTP; 19 Feb 2006 01:38:43 -0000 Message-Id: <1140313125.98890@phobos.mars.bsd> Date: Sat, 18 Feb 2006 22:38:45 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: ports/93542: [NEW PORT] games/linux-enemyterritory-etpro: ET Pro - The Enemy Territory Competition Mod X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:40:06 -0000 >Number: 93542 >Category: ports >Synopsis: [NEW PORT] games/linux-enemyterritory-etpro: ET Pro - The Enemy Territory Competition Mod >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 Feb 19 01:40:05 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE #0: Sat May 21 12:14:47 ART 2005 root@ale.varnet.bsd:/usr/src/sys/i386/compile/ATHLON-ALE >Description: >How-To-Repeat: >Fix: --- linux-enemyterritory-etpro.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # linux-enemyterritory-etpro # linux-enemyterritory-etpro/Makefile # linux-enemyterritory-etpro/pkg-descr # linux-enemyterritory-etpro/distinfo # linux-enemyterritory-etpro/pkg-plist # echo c - linux-enemyterritory-etpro mkdir -p linux-enemyterritory-etpro > /dev/null 2>&1 echo x - linux-enemyterritory-etpro/Makefile sed 's/^X//' >linux-enemyterritory-etpro/Makefile << 'END-of-linux-enemyterritory-etpro/Makefile' X# New ports collection makefile for: etpro X# Date created: 18 Feb 2006 X# Whom: Alejandro Pulver X# X# $FreeBSD$ X# X XPORTNAME= etpro XPORTVERSION= 3.2.5 XCATEGORIES= games linux XMASTER_SITES= http://bani.anime.net/etpro/ \ X http://dl.vpclan.de/etpro/ \ X http://www.enemyterritory.sk/files/ \ X ftp://download:etpro@preachers.cz/ \ X http://ftp.freenet.de/pub/4players/hosted/wolfenstein/users/mods/ \ X http://www.dakteam.org/ \ X http://www.enemyterritory.cl/files/ XPKGNAMEPREFIX= linux-enemyterritory- XDISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g} X XMAINTAINER= alejandro@varnet.biz XCOMMENT= ET Pro - The Enemy Territory Competition Mod X XRUN_DEPENDS= et:${PORTSDIR}/games/linux-enemyterritory X XPREFIX?= ${X11BASE} XONLY_FOR_ARCHS= i386 XUSE_ZIP= yes XUSE_LINUX= yes XNO_WRKSUBDIR= yes X XDATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME} X XPLIST_SUB= VERSION="${PORTVERSION:S/./_/g}" X Xdo-build: X.for f in et etded X @(${ECHO} "#!/bin/sh"; \ X ${ECHO} 'exec ${PREFIX}/bin/${f} +set fs_game ${PORTNAME} "$$@"') > \ X ${WRKSRC}/${f}-${PORTNAME} X.endfor X Xdo-install: X.for f in et etded X ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME} ${PREFIX}/bin X.endfor X ${MKDIR} ${DATADIR} X ${CP} -R ${WRKSRC}/${PORTNAME}/* ${DATADIR} X X.include END-of-linux-enemyterritory-etpro/Makefile echo x - linux-enemyterritory-etpro/pkg-descr sed 's/^X//' >linux-enemyterritory-etpro/pkg-descr << 'END-of-linux-enemyterritory-etpro/pkg-descr' XET Pro is a mod specifically targeted at competition play, with features Xspecifically designed for administration of competition servers. X XET Pro has been chosen as the official tournament mod for STA, TWL, CAL, XClanbase, and ESL. X XThe official IRC channel for ET Pro is #etpro on irc.freenode.net X XWWW: http://etpro.anime.net/ END-of-linux-enemyterritory-etpro/pkg-descr echo x - linux-enemyterritory-etpro/distinfo sed 's/^X//' >linux-enemyterritory-etpro/distinfo << 'END-of-linux-enemyterritory-etpro/distinfo' XMD5 (etpro-3_2_5.zip) = 5b00b6a10772151ed16833ec649b07e5 XSHA256 (etpro-3_2_5.zip) = 5bd3eeb0aa130d56592b675079db50eba4952e225f0350ddff2be4dbd1a9331a XSIZE (etpro-3_2_5.zip) = 3693471 END-of-linux-enemyterritory-etpro/distinfo echo x - linux-enemyterritory-etpro/pkg-plist sed 's/^X//' >linux-enemyterritory-etpro/pkg-plist << 'END-of-linux-enemyterritory-etpro/pkg-plist' Xbin/et-etpro Xbin/etded-etpro X%%DATADIR%%/animations/scripts/human_base.script X%%DATADIR%%/etpro-%%VERSION%%.pk3 X%%DATADIR%%/etpro_cheats.dat X%%DATADIR%%/etpromapscripts/battery.script X%%DATADIR%%/etpromapscripts/fueldump.script X%%DATADIR%%/etpromapscripts/fueldump_lms.script X%%DATADIR%%/etpromapscripts/goldrush.script X%%DATADIR%%/etpromapscripts/oasis.script X%%DATADIR%%/etpromapscripts/oasis_lms.script X%%DATADIR%%/etpromapscripts/radar.script X%%DATADIR%%/etpromapscripts/railgun.script X%%DATADIR%%/etpromapscripts/railgun_lms.script X%%DATADIR%%/example.cfg X%%DATADIR%%/maps/battery.script X%%DATADIR%%/maps/fueldump.script X%%DATADIR%%/maps/fueldump_lms.script X%%DATADIR%%/maps/goldrush.script X%%DATADIR%%/maps/oasis.script X%%DATADIR%%/maps/oasis_lms.script X%%DATADIR%%/maps/radar.script X%%DATADIR%%/maps/railgun.script X%%DATADIR%%/maps/railgun_lms.script X%%DATADIR%%/qagame.mp.i386.so X%%DATADIR%%/qagame_mp_x86.dll X@dirrm %%DATADIR%%/maps X@dirrm %%DATADIR%%/etpromapscripts X@dirrm %%DATADIR%%/configs X@dirrm %%DATADIR%%/animations/scripts X@dirrm %%DATADIR%%/animations X@dirrm %%DATADIR%% END-of-linux-enemyterritory-etpro/pkg-plist exit --- linux-enemyterritory-etpro.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:40:07 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 049C016A420 for ; Sun, 19 Feb 2006 01:40:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E57643D49 for ; Sun, 19 Feb 2006 01:40:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1e6pH054547 for ; Sun, 19 Feb 2006 01:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1e6jE054546; Sun, 19 Feb 2006 01:40:06 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 01:40:06 GMT Resent-Message-Id: <200602190140.k1J1e6jE054546@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5C8516A422 for ; Sun, 19 Feb 2006 01:39:28 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 5DCAB43D46 for ; Sun, 19 Feb 2006 01:39:28 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 1021 invoked from network); 19 Feb 2006 01:39:26 -0000 Received: from unknown (HELO phobos.mars.bsd) (unknown) by unknown with SMTP; 19 Feb 2006 01:39:26 -0000 Message-Id: <1140313169.98891@phobos.mars.bsd> Date: Sat, 18 Feb 2006 22:39:29 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: ports/93543: [NEW PORT] games/linux-enemyterritory-etpub: ET Pub - An Enemy Territory Modification X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:40:07 -0000 >Number: 93543 >Category: ports >Synopsis: [NEW PORT] games/linux-enemyterritory-etpub: ET Pub - An Enemy Territory Modification >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 Feb 19 01:40:05 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE #0: Sat May 21 12:14:47 ART 2005 root@ale.varnet.bsd:/usr/src/sys/i386/compile/ATHLON-ALE >Description: >How-To-Repeat: >Fix: --- linux-enemyterritory-etpub.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # linux-enemyterritory-etpub # linux-enemyterritory-etpub/pkg-descr # linux-enemyterritory-etpub/Makefile # linux-enemyterritory-etpub/pkg-plist # linux-enemyterritory-etpub/distinfo # echo c - linux-enemyterritory-etpub mkdir -p linux-enemyterritory-etpub > /dev/null 2>&1 echo x - linux-enemyterritory-etpub/pkg-descr sed 's/^X//' >linux-enemyterritory-etpub/pkg-descr << 'END-of-linux-enemyterritory-etpub/pkg-descr' XET Pub - An Enemy Territory Modification. X XGoals of ET Pub: X X* Be configuration compatible with shrubet (cvars AND shrubbot.cfg) X* Match useful shrub features (e.g. Play Dead, Corpse Dragging, etc.) X* Fix bugs. X* Add features to try to imporve gameplay on public servers. (e.g. Active X Team Balance) X XWWW: http://et.tjw.org/etpub/ END-of-linux-enemyterritory-etpub/pkg-descr echo x - linux-enemyterritory-etpub/Makefile sed 's/^X//' >linux-enemyterritory-etpub/Makefile << 'END-of-linux-enemyterritory-etpub/Makefile' X# New ports collection makefile for: etpub X# Date created: 18 Feb 2006 X# Whom: Alejandro Pulver X# X# $FreeBSD$ X# X XPORTNAME= etpub XPORTVERSION= 0.6.5 XCATEGORIES= games linux XMASTER_SITES= http://et.tjw.org/etpub/dist/ XPKGNAMEPREFIX= linux-enemyterritory- XDISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ X ${PORTNAME}_client-20060205.pk3 XEXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} X XMAINTAINER= alejandro@varnet.biz XCOMMENT= ET Pub - An Enemy Territory Modification X XRUN_DEPENDS= et:${PORTSDIR}/games/linux-enemyterritory X XPREFIX?= ${X11BASE} XONLY_FOR_ARCHS= i386 XUSE_ZIP= yes XUSE_LINUX= yes X XDATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME} XDOCSDIR= ${PREFIX}/share/doc/enemyterritory-${PORTNAME} X Xpre-patch: X @${FIND} ${WRKSRC} -type f -exec ${SH} -c \ X '${FILE} "$$0" | ${GREP} -q text && \ X ${REINPLACE_CMD} -i "" -e "s/ $$//" "$$0"' {} \; X Xdo-build: X.for f in et etded X @(${ECHO} "#!/bin/sh"; \ X ${ECHO} 'exec ${PREFIX}/bin/${f} +set fs_game ${PORTNAME} "$$@"') > \ X ${WRKSRC}/${f}-${PORTNAME} X.endfor X Xdo-install: X.for f in et etded X ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME} ${PREFIX}/bin X.endfor X ${MKDIR} ${DATADIR} X ${INSTALL_PROGRAM} ${WRKSRC}/glibc-2.1/qagame.mp.i386.so ${DATADIR} X ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}_client-20060205.pk3 ${DATADIR} X ${CP} -R ${WRKSRC}/extra ${DATADIR} X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X. for f in ChangeLog.txt Install.txt Upgrade-0.6.txt X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X. endfor X ${CP} -R ${WRKSRC}/docs ${DOCSDIR} X.endif X X.include END-of-linux-enemyterritory-etpub/Makefile echo x - linux-enemyterritory-etpub/pkg-plist sed 's/^X//' >linux-enemyterritory-etpub/pkg-plist << 'END-of-linux-enemyterritory-etpub/pkg-plist' Xbin/et-etpub Xbin/etded-etpub X%%DATADIR%%/etpub_client-20060205.pk3 X%%DATADIR%%/extra/PHP/xpsave/README.txt X%%DATADIR%%/extra/PHP/xpsave/xpsave.php X%%DATADIR%%/extra/PHP/xpsave/xpsave_table.php X%%DATADIR%%/extra/paks/hiddenvo/README.txt X%%DATADIR%%/extra/paks/hiddenvo/hiddenvo.pk3 X%%DATADIR%%/qagame.mp.i386.so X%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.txt X%%PORTDOCS%%%%DOCSDIR%%/Install.txt X%%PORTDOCS%%%%DOCSDIR%%/Upgrade-0.6.txt X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/Commented/default.cfg X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/Commented/server.cfg X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/Commented/shrubbot.cfg X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/NoComments/default.cfg X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/NoComments/server.cfg X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/NoComments/shrubbot.cfg X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/mapscripts/README.txt X%%PORTDOCS%%%%DOCSDIR%%/docs/Example/mapscripts/stalingrad.script X%%PORTDOCS%%%%DOCSDIR%%/docs/index.html X%%PORTDOCS%%%%DOCSDIR%%/docs/index_de.html X%%PORTDOCS%%%%DOCSDIR%%/docs/index_fr.html X%%PORTDOCS%%%%DOCSDIR%%/docs/index_pub.html X%%PORTDOCS%%%%DOCSDIR%%/docs/index_pub_de.html X%%PORTDOCS%%%%DOCSDIR%%/docs/index_pub_fr.html X%%PORTDOCS%%%%DOCSDIR%%/docs/obituaries.html X%%PORTDOCS%%%%DOCSDIR%%/docs/obituaries_fr.html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs/Example/mapscripts X%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs/Example/NoComments X%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs/Example/Commented X%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs/Example X%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm %%DATADIR%%/extra/paks/hiddenvo X@dirrm %%DATADIR%%/extra/paks X@dirrm %%DATADIR%%/extra/PHP/xpsave X@dirrm %%DATADIR%%/extra/PHP X@dirrm %%DATADIR%%/extra X@dirrm %%DATADIR%% END-of-linux-enemyterritory-etpub/pkg-plist echo x - linux-enemyterritory-etpub/distinfo sed 's/^X//' >linux-enemyterritory-etpub/distinfo << 'END-of-linux-enemyterritory-etpub/distinfo' XMD5 (etpub-0.6.5.zip) = 96bddd85cdafa35e082c5c957246e7b0 XSHA256 (etpub-0.6.5.zip) = d7bc2b09fa1460745836c4733a0cc31c41e4039f262a86b20732d7ff0da7ac70 XSIZE (etpub-0.6.5.zip) = 2063391 XMD5 (etpub_client-20060205.pk3) = 6a2923a43cab1da0fb3f4e31c7b6d5ee XSHA256 (etpub_client-20060205.pk3) = 169c2f7c456497ced9825d265a4cae4454ac1f4a46e093fb0172b9a5552c77f4 XSIZE (etpub_client-20060205.pk3) = 1955062 END-of-linux-enemyterritory-etpub/distinfo exit --- linux-enemyterritory-etpub.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:45:25 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F3A516A423; Sun, 19 Feb 2006 01:45:25 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B85943D45; Sun, 19 Feb 2006 01:45:25 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1jOQK054834; Sun, 19 Feb 2006 01:45:24 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1jOHp054830; Sun, 19 Feb 2006 01:45:24 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:45:24 GMT From: Marcus Alves Grando Message-Id: <200602190145.k1J1jOHp054830@freefall.freebsd.org> To: hendrik@scholz.net, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93260: multimedia/transcode failure while linking w/ ImageMagick X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:45:25 -0000 Synopsis: multimedia/transcode failure while linking w/ ImageMagick State-Changed-From-To: feedback->closed State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:45:24 UTC 2006 State-Changed-Why: Requested by submitter. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=93260 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:48:22 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5962316A420; Sun, 19 Feb 2006 01:48:22 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 136D243D46; Sun, 19 Feb 2006 01:48:22 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1mLB4055082; Sun, 19 Feb 2006 01:48:21 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1mLBU055078; Sun, 19 Feb 2006 01:48:21 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:48:21 GMT From: Marcus Alves Grando Message-Id: <200602190148.k1J1mLBU055078@freefall.freebsd.org> To: alecn2002@yandex.ru, nik@FreeBSD.org, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93503: PATCH: Update ports/finance/kmymoney to version 0.8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:48:22 -0000 Synopsis: PATCH: Update ports/finance/kmymoney to version 0.8.2 State-Changed-From-To: feedback->closed State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:48:21 UTC 2006 State-Changed-Why: Supersedes by 93277. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=93503 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:50:07 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D312F16A420 for ; Sun, 19 Feb 2006 01:50:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D51F943D49 for ; Sun, 19 Feb 2006 01:50:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1o4PG055199 for ; Sun, 19 Feb 2006 01:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1o4OZ055198; Sun, 19 Feb 2006 01:50:04 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 01:50:04 GMT Resent-Message-Id: <200602190150.k1J1o4OZ055198@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59B5916A420 for ; Sun, 19 Feb 2006 01:40:50 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.FreeBSD.org (Postfix) with SMTP id ED4AE43D49 for ; Sun, 19 Feb 2006 01:40:49 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 98473 invoked from network); 19 Feb 2006 01:40:48 -0000 Received: from unknown (HELO phobos.mars.bsd) (unknown) by unknown with SMTP; 19 Feb 2006 01:40:48 -0000 Message-Id: <1140313251.98892@phobos.mars.bsd> Date: Sat, 18 Feb 2006 22:40:51 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: ports/93544: [NEW PORT] games/linux-enemyterritory-jaymod: Jaymod - An Enemy Territory Modification X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:50:08 -0000 X-List-Received-Date: Sun, 19 Feb 2006 01:50:08 -0000 >Number: 93544 >Category: ports >Synopsis: [NEW PORT] games/linux-enemyterritory-jaymod: Jaymod - An Enemy Territory Modification >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 Feb 19 01:50:04 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE #0: Sat May 21 12:14:47 ART 2005 root@ale.varnet.bsd:/usr/src/sys/i386/compile/ATHLON-ALE >Description: >How-To-Repeat: >Fix: --- linux-enemyterritory-jaymod.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # linux-enemyterritory-jaymod # linux-enemyterritory-jaymod/pkg-descr # linux-enemyterritory-jaymod/Makefile # linux-enemyterritory-jaymod/distinfo # linux-enemyterritory-jaymod/pkg-plist # echo c - linux-enemyterritory-jaymod mkdir -p linux-enemyterritory-jaymod > /dev/null 2>&1 echo x - linux-enemyterritory-jaymod/pkg-descr sed 's/^X//' >linux-enemyterritory-jaymod/pkg-descr << 'END-of-linux-enemyterritory-jaymod/pkg-descr' XJaymod is an add-on modification to RTCW: Enemy Territory. X XThe idea for Jaymod came from the main features of Shrubmod. Shrubmod has Xlong been out of date and unsupported, and with the instability issues that Xcome with Shrubmod, something had to be done to get a Shrub-like server-side Xmod that would provide most of Shrub's features, be stable, and be supported. X XThis mod has, obviously, outgrown the original objective of being server-side Xonly. Some of the ideas I wanted to implement could not be done with server Xcode only, so the decision was made to start working on the client end as Xwell. I wanted this to be as easy as possible for end users, and now only one Xpak needs to be downloaded (on the fly) to be able to play this mod. X XWWW: http://jaymod.clanfu.org/ END-of-linux-enemyterritory-jaymod/pkg-descr echo x - linux-enemyterritory-jaymod/Makefile sed 's/^X//' >linux-enemyterritory-jaymod/Makefile << 'END-of-linux-enemyterritory-jaymod/Makefile' X# New ports collection makefile for: jaymod X# Date created: 18 Feb 2006 X# Whom: Alejandro Pulver X# X# $FreeBSD$ X# X XPORTNAME= jaymod XPORTVERSION= 1.4 XCATEGORIES= games linux XMASTER_SITES= http://jaymod.clanfu.org/lib/downloads/ \ X http://budjb.com/lib/downloads/ \ X http://www.zenenterprises.org/bud/jaymod/ \ X http://www.spherens.com/zen/et/distro/ XPKGNAMEPREFIX= linux-enemyterritory- X XMAINTAINER= alejandro@varnet.biz XCOMMENT= Jaymod - An Enemy Territory Modification X XRUN_DEPENDS= et:${PORTSDIR}/games/linux-enemyterritory X XPREFIX?= ${X11BASE} XONLY_FOR_ARCHS= i386 XUSE_LINUX= yes XNO_WRKSUBDIR= yes X XDATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME} XDOCSDIR= ${PREFIX}/share/doc/enemyterritory-${PORTNAME} X XPLIST_SUB= VERSION="${PORTVERSION}" X Xdo-build: X.for f in et etded X @(${ECHO} "#!/bin/sh"; \ X ${ECHO} 'exec ${PREFIX}/bin/${f} +set fs_game ${PORTNAME} "$$@"') > \ X ${WRKSRC}/${f}-${PORTNAME} X.endfor X Xdo-install: X.for f in et etded X ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME} ${PREFIX}/bin X.endfor X ${MKDIR} ${DATADIR} X ${INSTALL_PROGRAM} ${WRKSRC}/qagame.mp.i386.so ${DATADIR} X.for f in jaymod-${PORTVERSION}.pk3 jaymod.cfg-sample X ${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR} X.endfor X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X. for f in jaymod-${PORTVERSION}.pdf readme.txt X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X. endfor X.endif X X.include END-of-linux-enemyterritory-jaymod/Makefile echo x - linux-enemyterritory-jaymod/distinfo sed 's/^X//' >linux-enemyterritory-jaymod/distinfo << 'END-of-linux-enemyterritory-jaymod/distinfo' XMD5 (jaymod-1.4.tar.gz) = 86e69f4985c5c10be9ee61b15abb9292 XSHA256 (jaymod-1.4.tar.gz) = 41b1f9fa51724c67867c2c2805441277fc4f35fe10253157c718a0619570ba77 XSIZE (jaymod-1.4.tar.gz) = 4189340 END-of-linux-enemyterritory-jaymod/distinfo echo x - linux-enemyterritory-jaymod/pkg-plist sed 's/^X//' >linux-enemyterritory-jaymod/pkg-plist << 'END-of-linux-enemyterritory-jaymod/pkg-plist' Xbin/et-jaymod Xbin/etded-jaymod X%%PORTDOCS%%%%DOCSDIR%%/jaymod-%%VERSION%%.pdf X%%DATADIR%%/jaymod-%%VERSION%%.pk3 X%%DATADIR%%/jaymod.cfg-sample X%%DATADIR%%/qagame.mp.i386.so X%%PORTDOCS%%%%DOCSDIR%%/readme.txt X@dirrm %%DATADIR%% X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-linux-enemyterritory-jaymod/pkg-plist exit --- linux-enemyterritory-jaymod.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:50:08 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0592C16A422 for ; Sun, 19 Feb 2006 01:50:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 798A843D55 for ; Sun, 19 Feb 2006 01:50:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1o5UU055212 for ; Sun, 19 Feb 2006 01:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1o5R4055211; Sun, 19 Feb 2006 01:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 01:50:05 GMT Resent-Message-Id: <200602190150.k1J1o5R4055211@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7896016A420 for ; Sun, 19 Feb 2006 01:41:41 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: from relay01.pair.com (relay01.pair.com [209.68.5.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 20ADA43D45 for ; Sun, 19 Feb 2006 01:41:41 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 67131 invoked from network); 19 Feb 2006 01:41:39 -0000 Received: from unknown (HELO phobos.mars.bsd) (unknown) by unknown with SMTP; 19 Feb 2006 01:41:39 -0000 Message-Id: <1140313302.98925@phobos.mars.bsd> Date: Sat, 18 Feb 2006 22:41:42 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: ports/93545: [NEW PORT] games/linux-enemyterritory-shrub: Shrub - An Enemy Territory Modification X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:50:08 -0000 >Number: 93545 >Category: ports >Synopsis: [NEW PORT] games/linux-enemyterritory-shrub: Shrub - An Enemy Territory Modification >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 Feb 19 01:50:04 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE #0: Sat May 21 12:14:47 ART 2005 root@ale.varnet.bsd:/usr/src/sys/i386/compile/ATHLON-ALE >Description: >How-To-Repeat: >Fix: --- linux-enemyterritory-shrub.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # linux-enemyterritory-shrub # linux-enemyterritory-shrub/distinfo # linux-enemyterritory-shrub/Makefile # linux-enemyterritory-shrub/pkg-descr # linux-enemyterritory-shrub/pkg-plist # echo c - linux-enemyterritory-shrub mkdir -p linux-enemyterritory-shrub > /dev/null 2>&1 echo x - linux-enemyterritory-shrub/distinfo sed 's/^X//' >linux-enemyterritory-shrub/distinfo << 'END-of-linux-enemyterritory-shrub/distinfo' XMD5 (1.2-test13-l.zip) = b8aa344e128070d1b5174ee7e2b1d3d4 XSHA256 (1.2-test13-l.zip) = d90d0dbf364d2fffd85ca265d7189f5c9e03035961892309f6445f5fe9cb69fa XSIZE (1.2-test13-l.zip) = 567743 END-of-linux-enemyterritory-shrub/distinfo echo x - linux-enemyterritory-shrub/Makefile sed 's/^X//' >linux-enemyterritory-shrub/Makefile << 'END-of-linux-enemyterritory-shrub/Makefile' X# New ports collection makefile for: shrub X# Date created: 18 Feb 2006 X# Whom: Alejandro Pulver X# X# $FreeBSD$ X# X XPORTNAME= shrub XPORTVERSION= 1.2 XCATEGORIES= games linux XMASTER_SITES= http://www.etstats.com/shrubet/downloads/ XPKGNAMEPREFIX= linux-enemyterritory- XDISTNAME= 1.2-test13-l X XMAINTAINER= alejandro@varnet.biz XCOMMENT= Shrub - An Enemy Territory Modification X XRUN_DEPENDS= et:${PORTSDIR}/games/linux-enemyterritory X XPREFIX?= ${X11BASE} XONLY_FOR_ARCHS= i386 XUSE_ZIP= yes XUSE_LINUX= yes XNO_WRKSUBDIR= yes X XDATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME} X Xdo-build: X.for f in et etded X @(${ECHO} "#!/bin/sh"; \ X ${ECHO} 'exec ${PREFIX}/bin/${f} +set fs_game ${PORTNAME} "$$@"') > \ X ${WRKSRC}/${f}-${PORTNAME} X.endfor X Xdo-install: X.for f in et etded X ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME} ${PREFIX}/bin X.endfor X ${MKDIR} ${DATADIR} X ${INSTALL_PROGRAM} ${WRKSRC}/qagame.mp.i386.so ${DATADIR} X X.include END-of-linux-enemyterritory-shrub/Makefile echo x - linux-enemyterritory-shrub/pkg-descr sed 's/^X//' >linux-enemyterritory-shrub/pkg-descr << 'END-of-linux-enemyterritory-shrub/pkg-descr' XThe shrub mod is a server-side mod for Wolfenstein: Enemy Territory. X XWWW: http://www.planetwolfenstein.com/shrub/ END-of-linux-enemyterritory-shrub/pkg-descr echo x - linux-enemyterritory-shrub/pkg-plist sed 's/^X//' >linux-enemyterritory-shrub/pkg-plist << 'END-of-linux-enemyterritory-shrub/pkg-plist' Xbin/et-shrub Xbin/etded-shrub X%%DATADIR%%/qagame.mp.i386.so X@dirrm %%DATADIR%% END-of-linux-enemyterritory-shrub/pkg-plist exit --- linux-enemyterritory-shrub.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:50:08 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A14E16A420 for ; Sun, 19 Feb 2006 01:50:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36D2543D5D for ; Sun, 19 Feb 2006 01:50:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1o5FP055265 for ; Sun, 19 Feb 2006 01:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1o5KT055263; Sun, 19 Feb 2006 01:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 01:50:05 GMT Resent-Message-Id: <200602190150.k1J1o5KT055263@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D583716A420 for ; Sun, 19 Feb 2006 01:45:15 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: from relay00.pair.com (relay00.pair.com [209.68.5.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 66B9543D45 for ; Sun, 19 Feb 2006 01:45:15 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 17404 invoked from network); 19 Feb 2006 01:45:14 -0000 Received: from unknown (HELO phobos.mars.bsd) (unknown) by unknown with SMTP; 19 Feb 2006 01:45:14 -0000 Message-Id: <1140313516.98966@phobos.mars.bsd> Date: Sat, 18 Feb 2006 22:45:16 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: ports/93546: [PATCH] bsd.sites.mk and relevant ports: add MASTER_SITE_IDSOFTWARE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:50:08 -0000 >Number: 93546 >Category: ports >Synopsis: [PATCH] bsd.sites.mk and relevant ports: add MASTER_SITE_IDSOFTWARE >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 Feb 19 01:50:05 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE #0: Sat May 21 12:14:47 ART 2005 root@ale.varnet.bsd:/usr/src/sys/i386/compile/ATHLON-ALE >Description: This patch adds the MASTER_SITE_IDSOFTWARE list of mirrors to bsd.sites.mk and adds it to the following ports: games/doom games/linux-quake3 games/linux-quake4 games/qcc games/quake-data games/quake-source games/quake2-data games/quake2-source games/quake2forge games/quake2lnx games/quake3 games/quake3-data games/rtcw >How-To-Repeat: >Fix: --- diff begins here --- --- /usr/ports/Mk/bsd.sites.mk_orig Thu Feb 2 06:33:21 2006 +++ bsd.sites.mk Sat Feb 18 13:17:41 2006 @@ -458,6 +458,21 @@ http://public.planetmirror.com/pub/gnu-alpha/%SUBDIR%/ .endif +.if !defined(IGNORE_MASTER_SITE_IDSOFTWARE) +MASTER_SITE_IDSOFTWARE+= \ + ftp://ftp.chg.ru/.3/games/idgames/idstuff/%SUBDIR%/ \ + ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/%SUBDIR%/ \ + ftp://ftp.fu-berlin.de/pc/games/idgames/idstuff/%SUBDIR%/ \ + http://www.gamers.org/pub/idgames/idstuff/%%SUBDIR%%/ \ + ftp://ftp.games.skynet.be/spool1/games/ftp.idsoftware.com/%SUBDIR%/ \ + ftp://ftp.mirror.nl/disk2/idsoftware/idstuff/%SUBDIR%/ \ + ftp://ftp.nsu.ru/mirrors/ftp.idsoftware.com/idstuff/%SUBDIR%/ \ + ftp://ftp.ntua.gr/pub/vendors/idgames/idstuff/%SUBDIR%/ \ + ftp://ftp.omen.net.au/games/idstuff/%SUBDIR%/ \ + ftp://ftp.sunsite.org.uk/sites/ftp.idsoftware.com/idstuff/%SUBDIR%/ \ + ftp://ftp.idsoftware.com/idstuff/%SUBDIR%/ +.endif + .if !defined(IGNORE_MASTER_SITE_ISC) MASTER_SITE_ISC+= \ ftp://ftp.isc.org/isc/%SUBDIR%/ \ diff -urN games/doom/Makefile games/doom/Makefile --- games/doom/Makefile Thu Nov 17 09:04:35 2005 +++ games/doom/Makefile Sat Feb 18 13:09:45 2006 @@ -8,11 +8,8 @@ PORTNAME= doom PORTVERSION= 1.10 CATEGORIES= games -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/source/ \ - http://ftp.sunet.se/pub/pc/games/idgames/idstuff/source/ \ - http://www.gamers.org/pub/idgames/idstuff/source/ \ - ftp://ftp.ntua.gr/pub/vendors/idgames/idstuff/source/ - +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= source DISTNAME= doomsrc MAINTAINER= jmz@FreeBSD.org diff -urN games/linux-quake3/Makefile games/linux-quake3/Makefile --- games/linux-quake3/Makefile Tue Dec 20 01:47:08 2005 +++ games/linux-quake3/Makefile Sat Feb 18 13:26:13 2006 @@ -8,8 +8,8 @@ PORTNAME= quake3 DISTVERSION= 1.32b-3 CATEGORIES= games linux -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/quake3/linux/ \ - http://3dgamers.iinet.net.au/pub/3dgamers/games/quake3arena/ +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= quake3/linux PKGNAMEPREFIX= linux- DISTNAME= linuxq3apoint-${DISTVERSION}.x86 EXTRACT_SUFX= .run diff -urN games/linux-quake4/Makefile games/linux-quake4/Makefile --- games/linux-quake4/Makefile Mon Jan 16 20:11:04 2006 +++ games/linux-quake4/Makefile Sat Feb 18 13:32:12 2006 @@ -13,7 +13,7 @@ http://bsd.gubkin.ru/myports/ \ ftp://ftp.dvo.ru/pub/distfiles/ \ ftp://ftp.amfodent.ru/pub/FreeBSD/distfiles/ \ - ftp://ftp.idsoftware.com/idstuff/quake4/linux/ + ${MASTER_SITE_IDSOFTWARE:S|$|quake4/linux/old/|} PKGNAMEPREFIX= linux- DISTNAME= ${PORTNAME}-${PKGNAMEPREFIX}${PORTVERSION}.x86 EXTRACT_SUFX= .run diff -urN games/qcc/Makefile games/qcc/Makefile --- games/qcc/Makefile Thu Nov 17 09:00:14 2005 +++ games/qcc/Makefile Sat Feb 18 13:16:31 2006 @@ -8,7 +8,8 @@ PORTNAME= qcc PORTVERSION= 1.01 CATEGORIES= games devel -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/source/ +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= source DISTNAME= ${PORTNAME} MAINTAINER= danfe@FreeBSD.org diff -urN games/quake-data/Makefile games/quake-data/Makefile --- games/quake-data/Makefile Mon Dec 12 06:25:23 2005 +++ games/quake-data/Makefile Sat Feb 18 13:43:00 2006 @@ -44,15 +44,13 @@ .endif .if defined(WITH_QUAKEWORLD) -MASTER_SITES+= ftp://ftp.idsoftware.com/idstuff/quakeworld/unix/:qw \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quakeworld/unix/:qw +MASTER_SITES+= ${MASTER_SITE_IDSOFTWARE:S|$|quakeworld/unix/:qw|} DISTFILES+= ${PROGFILE}:qw EXTRACT_ONLY+= ${PROGFILE} PLIST_SUB+= QUAKEWORLD="" .if defined(WITH_QUAKEWORLD_SKINS) -MASTER_SITES+= ftp://ftp.idsoftware.com/idstuff/quakeworld/skins/:skins \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quakeworld/skins/:skins +MASTER_SITES+= ${MASTER_SITE_IDSOFTWARE:S|$|quakeworld/skins/:skins|} DISTFILES+= ${SKINFILES:S/$/:skins/} EXTRACT_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip PLIST_SUB+= QUAKEWORLD_SKINS="" diff -urN games/quake-source/Makefile games/quake-source/Makefile --- games/quake-source/Makefile Sat Dec 31 12:45:44 2005 +++ games/quake-source/Makefile Sat Feb 18 13:45:24 2006 @@ -8,11 +8,11 @@ PORTNAME= source PORTVERSION= 1.01 CATEGORIES= games -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/source/:s \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/source/:s +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= source PKGNAMEPREFIX= quake- DISTNAME= qcc -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:s +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= alejandro@varnet.biz COMMENT= Quake and QuakeWorld source @@ -29,8 +29,7 @@ .include .if defined(WITH_QUAKEWORLD) -MASTER_SITES+= ftp://ftp.idsoftware.com/idstuff/quakeworld/unix/:qw \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quakeworld/unix/:qw +MASTER_SITES+= ${MASTER_SITE_IDSOFTWARE:S|$|quakeworld/unix/:qw|} DISTFILES+= qwsv-2.30-glibc-i386-unknown-linux2.0${EXTRACT_SUFX}:qw USE_REINPLACE= yes PLIST_SUB+= QUAKEWORLD="" diff -urN games/quake2-data/Makefile games/quake2-data/Makefile --- games/quake2-data/Makefile Wed Dec 28 18:15:32 2005 +++ games/quake2-data/Makefile Sat Feb 18 13:39:21 2006 @@ -9,8 +9,8 @@ PORTVERSION= 3.20 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/quake2/ \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quake2/ +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= quake2 PKGNAMEPREFIX= ${Q2PKGNAMEPREFIX} DISTFILES= ${Q2FULL} DIST_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} diff -urN games/quake2-source/Makefile games/quake2-source/Makefile --- games/quake2-source/Makefile Mon Nov 14 18:38:12 2005 +++ games/quake2-source/Makefile Sat Feb 18 13:46:54 2006 @@ -9,8 +9,7 @@ PORTVERSION= 3.21 CATEGORIES= games MASTER_SITES= http://www.icculus.org/quake2/files/:icc \ - ftp://ftp.idsoftware.com/idstuff/quake2/source/:id \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quake2/source/:id + ${MASTER_SITE_IDSOFTWARE:S|$|quake2/source/:id|} PKGNAMEPREFIX= quake2- DISTNAME= quake2-r0.16.2 DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:icc diff -urN games/quake2forge/Makefile games/quake2forge/Makefile --- games/quake2forge/Makefile Thu Dec 22 14:27:08 2005 +++ games/quake2forge/Makefile Sat Feb 18 13:48:26 2006 @@ -9,8 +9,7 @@ PORTVERSION= 0.3 CATEGORIES= games MASTER_SITES= http://www.galgenberg.net/distfiles/:qf \ - ftp://ftp.idsoftware.com/idstuff/quake2/source/:id \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quake2/source/:id + ${MASTER_SITE_IDSOFTWARE:S|$|quake2/source/:id|} DISTNAME= quake2-${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:qf DIST_SUBDIR= ${PORTNAME} diff -urN games/quake2lnx/Makefile games/quake2lnx/Makefile --- games/quake2lnx/Makefile Wed Dec 28 18:15:32 2005 +++ games/quake2lnx/Makefile Sat Feb 18 13:49:17 2006 @@ -11,7 +11,7 @@ CATEGORIES= games MASTER_SITES= http://offload1.icculus.org/quake2/files/:icc \ http://www.icculus.org/quake2/files/:icc \ - ftp://ftp.idsoftware.com/idstuff/quake2/source/:id + ${MASTER_SITE_IDSOFTWARE:S|$|quake2/source/:id|} DISTNAME= quake2-r${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:icc DIST_SUBDIR= ${PORTNAME} diff -urN games/quake3/Makefile games/quake3/Makefile --- games/quake3/Makefile Thu Jan 19 20:34:06 2006 +++ games/quake3/Makefile Sat Feb 18 13:50:20 2006 @@ -9,7 +9,7 @@ PORTVERSION= 1.32b PORTREVISION= 4 CATEGORIES= games -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/source/ \ +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE:S|$|source/|} \ http://www.proarena.com/p/ftpx/x8524/quake_3_arena/ \ http://www.planetgargoyle.com/ \ http://www.teamdarkside.net/ \ diff -urN games/quake3-data/Makefile games/quake3-data/Makefile --- games/quake3-data/Makefile Tue Dec 20 08:59:17 2005 +++ games/quake3-data/Makefile Sat Feb 18 13:51:02 2006 @@ -8,8 +8,8 @@ PORTNAME= data DISTVERSION= 1.32b-3 CATEGORIES= games -MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/quake3/linux/ \ - ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quake3/linux/ +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= quake3/linux PKGNAMEPREFIX= ${Q3PKGNAMEPREFIX} DISTNAME= linuxq3apoint-${DISTVERSION}.x86 EXTRACT_SUFX= .run diff -urN games/rtcw/Makefile games/rtcw/Makefile --- games/rtcw/Makefile Tue Jan 31 08:47:22 2006 +++ games/rtcw/Makefile Sat Feb 18 13:54:00 2006 @@ -8,9 +8,8 @@ PORTNAME= rtcw DISTVERSION= 1.41-3 CATEGORIES= games linux -MASTER_SITES= ftp://ftp.chg.ru/.3/games/idgames/idstuff/wolf/linux/ \ - ftp://ftp.idsoftware.com/idstuff/wolf/linux/ \ - http://downloads-3dg.planetmirror.com/pub/3dgamers/games/returnwolfenstein/ +MASTER_SITES= ${MASTER_SITE_IDSOFTWARE} +MASTER_SITE_SUBDIR= wolf/linux DISTNAME= wolf-linux-${DISTVERSION}.x86 EXTRACT_SUFX= .run --- diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:50:30 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5506F16A420; Sun, 19 Feb 2006 01:50:30 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B95643D48; Sun, 19 Feb 2006 01:50:30 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1oTfA055305; Sun, 19 Feb 2006 01:50:29 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1oSiS055301; Sun, 19 Feb 2006 01:50:28 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:50:28 GMT From: Marcus Alves Grando Message-Id: <200602190150.k1J1oSiS055301@freefall.freebsd.org> To: holger@e-gitt.net, jmelo@freebsdbrasil.com.br, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/92967: Deprecated port: mail/pgp4pine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:50:30 -0000 Synopsis: Deprecated port: mail/pgp4pine State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:49:25 UTC 2006 State-Changed-Why: Feedback received. http://www.freebsd.org/cgi/query-pr.cgi?pr=92967 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:51:26 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9D3F16A422; Sun, 19 Feb 2006 01:51:26 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 618B143D46; Sun, 19 Feb 2006 01:51:26 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1pQFP055423; Sun, 19 Feb 2006 01:51:26 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1pQFC055419; Sun, 19 Feb 2006 01:51:26 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:51:26 GMT From: Marcus Alves Grando Message-Id: <200602190151.k1J1pQFC055419@freefall.freebsd.org> To: tig@lvlworld.com, tigger@lvlworld.com, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/92956: Update port: sysutils/sysupdate Spelling corrections and support for FBSD 6 Release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:51:26 -0000 Synopsis: Update port: sysutils/sysupdate Spelling corrections and support for FBSD 6 Release State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:50:59 UTC 2006 State-Changed-Why: Feedback received. http://www.freebsd.org/cgi/query-pr.cgi?pr=92956 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:51:54 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96D5D16A420; Sun, 19 Feb 2006 01:51:54 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 554AF43D45; Sun, 19 Feb 2006 01:51:54 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1psqS055530; Sun, 19 Feb 2006 01:51:54 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1psve055526; Sun, 19 Feb 2006 01:51:54 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:51:54 GMT From: Marcus Alves Grando Message-Id: <200602190151.k1J1psve055526@freefall.freebsd.org> To: mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mnag@FreeBSD.org Cc: Subject: Re: ports/93040: Update port: mail/smtpd fix mastersite X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:51:54 -0000 Synopsis: Update port: mail/smtpd fix mastersite Responsible-Changed-From-To: freebsd-ports-bugs->mnag Responsible-Changed-By: mnag Responsible-Changed-When: Sun Feb 19 01:51:53 UTC 2006 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=93040 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:54:09 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52F0816A422; Sun, 19 Feb 2006 01:54:09 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 082BE43D46; Sun, 19 Feb 2006 01:54:09 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1s8Oe055615; Sun, 19 Feb 2006 01:54:08 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1s8wC055611; Sun, 19 Feb 2006 01:54:08 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:54:08 GMT From: Marcus Alves Grando Message-Id: <200602190154.k1J1s8wC055611@freefall.freebsd.org> To: nivit@email.it, fullermd@over-yonder.net, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93401: [PATCH] Add dependancy to devel/py-celementtree X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:54:09 -0000 Synopsis: [PATCH] Add dependancy to devel/py-celementtree State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:53:45 UTC 2006 State-Changed-Why: Feedback received. http://www.freebsd.org/cgi/query-pr.cgi?pr=93401 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:55:57 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59ABA16A422; Sun, 19 Feb 2006 01:55:57 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1239743D45; Sun, 19 Feb 2006 01:55:57 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1tuDq055731; Sun, 19 Feb 2006 01:55:56 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1tu3h055727; Sun, 19 Feb 2006 01:55:56 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:55:56 GMT From: Marcus Alves Grando Message-Id: <200602190155.k1J1tu3h055727@freefall.freebsd.org> To: james@now.ie, alejandro@varnet.biz, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/92691: [UPDATE] net/vnc: clean-up X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:55:57 -0000 Synopsis: [UPDATE] net/vnc: clean-up State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:55:12 UTC 2006 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=92691 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:58:10 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CB1916A422; Sun, 19 Feb 2006 01:58:10 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2668843D45; Sun, 19 Feb 2006 01:58:10 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1w9Gn055834; Sun, 19 Feb 2006 01:58:10 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1w9RB055830; Sun, 19 Feb 2006 01:58:09 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:58:09 GMT From: Marcus Alves Grando Message-Id: <200602190158.k1J1w9RB055830@freefall.freebsd.org> To: mutoh@openedu.org, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/92757: Currently lang/squeak web browser plugin can't work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:58:10 -0000 Synopsis: Currently lang/squeak web browser plugin can't work State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:57:44 UTC 2006 State-Changed-Why: Feedback received. http://www.freebsd.org/cgi/query-pr.cgi?pr=92757 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:58:44 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE3BD16A423; Sun, 19 Feb 2006 01:58:44 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80ADC43D46; Sun, 19 Feb 2006 01:58:44 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1wimm055884; Sun, 19 Feb 2006 01:58:44 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1wh7e055880; Sun, 19 Feb 2006 01:58:43 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:58:43 GMT From: Marcus Alves Grando Message-Id: <200602190158.k1J1wh7e055880@freefall.freebsd.org> To: rui@ruilopes.com, alex@kiesel.name, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/92781: www/axis installs files in wrong directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:58:44 -0000 Synopsis: www/axis installs files in wrong directory State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:58:20 UTC 2006 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=92781 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 01:59:38 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C79D816A420; Sun, 19 Feb 2006 01:59:38 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 826C043D45; Sun, 19 Feb 2006 01:59:38 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J1xcRC055947; Sun, 19 Feb 2006 01:59:38 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J1xb8A055943; Sun, 19 Feb 2006 01:59:37 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 01:59:37 GMT From: Marcus Alves Grando Message-Id: <200602190159.k1J1xb8A055943@freefall.freebsd.org> To: bra@fsn.hu, itetcu@people.tecnik93.com, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/92810: [PATCH] net-p2p/jigdo: convert to OPTIONS and unBREAK X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 01:59:38 -0000 Synopsis: [PATCH] net-p2p/jigdo: convert to OPTIONS and unBREAK State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 01:59:10 UTC 2006 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=92810 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:28:26 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEDB816A422; Sun, 19 Feb 2006 02:28:25 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A615943D46; Sun, 19 Feb 2006 02:28:25 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2SPrK057106; Sun, 19 Feb 2006 02:28:25 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2SO6m057102; Sun, 19 Feb 2006 02:28:24 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:28:24 GMT From: Marcus Alves Grando Message-Id: <200602190228.k1J2SO6m057102@freefall.freebsd.org> To: rehsack@liwing.de, bsam@ipt.ru, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/90867: [patch] devel/gaphor: update to new release 0.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:28:26 -0000 Synopsis: [patch] devel/gaphor: update to new release 0.7.1 State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:26:06 UTC 2006 State-Changed-Why: Feedback timeout. +40 days. http://www.freebsd.org/cgi/query-pr.cgi?pr=90867 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:30:27 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD68516A422; Sun, 19 Feb 2006 02:30:27 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65D2943D45; Sun, 19 Feb 2006 02:30:27 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2URKY057971; Sun, 19 Feb 2006 02:30:27 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2UQPq057952; Sun, 19 Feb 2006 02:30:26 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:30:26 GMT From: Marcus Alves Grando Message-Id: <200602190230.k1J2UQPq057952@freefall.freebsd.org> To: yoshiakikt.rim.or.jp@kt.rim.or.jp, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/90934: ports:pari-devel update (2.2.10.alpha -> 2.2.11.alpha) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:30:27 -0000 Synopsis: ports:pari-devel update (2.2.10.alpha -> 2.2.11.alpha) State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:28:28 UTC 2006 State-Changed-Why: Feedback timeout. BTW update are incorrect. http://www.freebsd.org/cgi/query-pr.cgi?pr=90934 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:33:49 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 421C616A422; Sun, 19 Feb 2006 02:33:49 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE0C243D45; Sun, 19 Feb 2006 02:33:48 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2Xmx1058503; Sun, 19 Feb 2006 02:33:48 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2XmSU058499; Sun, 19 Feb 2006 02:33:48 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:33:48 GMT From: Marcus Alves Grando Message-Id: <200602190233.k1J2XmSU058499@freefall.freebsd.org> To: tingo@start.no, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/90988: sane-backends overwrites and installed snapscan.conf file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:33:49 -0000 Synopsis: sane-backends overwrites and installed snapscan.conf file State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:30:30 UTC 2006 State-Changed-Why: Feedback timeout and no fix available. http://www.freebsd.org/cgi/query-pr.cgi?pr=90988 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:40:09 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6197816A420 for ; Sun, 19 Feb 2006 02:40:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D37BE43D46 for ; Sun, 19 Feb 2006 02:40:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2e8QV058648 for ; Sun, 19 Feb 2006 02:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2e887058647; Sun, 19 Feb 2006 02:40:08 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 02:40:08 GMT Resent-Message-Id: <200602190240.k1J2e887058647@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Pedro F. Giffuni" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA6616A420 for ; Sun, 19 Feb 2006 02:34:00 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B0343D45 for ; Sun, 19 Feb 2006 02:33:59 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k1J2XxHo085423 for ; Sun, 19 Feb 2006 02:33:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k1J2Xxks085422; Sun, 19 Feb 2006 02:33:59 GMT (envelope-from nobody) Message-Id: <200602190233.k1J2Xxks085422@www.freebsd.org> Date: Sun, 19 Feb 2006 02:33:59 GMT From: "Pedro F. Giffuni" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: ports/93547: Update math/glpk to version 4.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:40:09 -0000 >Number: 93547 >Category: ports >Synopsis: Update math/glpk to version 4.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: Sun Feb 19 02:40:08 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 6.0-Release (amd64) >Organization: >Environment: FreeBSD etoile.cable.net.co 6.0-RELEASE FreeBSD 6.0-RELEASE #12: Sat Feb 11 13:45:47 COT 2006 root@etoile.cable.net.co:/usr/src/sys/amd64/compile/DIMENSION amd64 >Description: glpk doesn't have the option for generating a shared library, but on amd64 I need to build glpk with -fPIC in order to link dynamically a package called SYMPHONY (part of COIN-OR). While looking at the glpk port I also noticed there is a new version so I updated it. While here, pet portlint by renaming a "file" variable with docus. Of course this must be reviewed by the maintainer. >How-To-Repeat: >Fix: Patch follows: diff -ruN glpk.orig/Makefile glpk/Makefile --- glpk.orig/Makefile Sat Feb 18 20:16:49 2006 +++ glpk/Makefile Sat Feb 18 21:16:50 2006 @@ -6,7 +6,7 @@ # PORTNAME= glpk -PORTVERSION= 4.8 +PORTVERSION= 4.9 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= glpk @@ -22,9 +22,15 @@ post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - for file in ${DOCFILES} ; do \ - ${INSTALL_DATA} ${WRKSRC}/doc/$$file ${DOCSDIR} ; \ + for docus in ${DOCFILES} ; do \ + ${INSTALL_DATA} ${WRKSRC}/doc/$$docus ${DOCSDIR} ; \ done .endif -.include +.include + +.if ${ARCH} == "amd64" +CFLAGS+= -fPIC +.endif + +.include diff -ruN glpk.orig/distinfo glpk/distinfo --- glpk.orig/distinfo Sat Feb 18 20:16:49 2006 +++ glpk/distinfo Sat Feb 18 20:57:53 2006 @@ -1,2 +1,3 @@ -MD5 (glpk-4.8.tar.gz) = ec4df7a56a4ed98369c9f0bc7c82322b -SIZE (glpk-4.8.tar.gz) = 972875 +MD5 (glpk-4.9.tar.gz) = e1aecaf58adaaf155d178a95e46f8d77 +SHA256 (glpk-4.9.tar.gz) = 473e8d1f69cd5be1fae2e31a9992e020cc2150d3892eec8c2fb85ac97633584d +SIZE (glpk-4.9.tar.gz) = 1018189 diff -ruN glpk.orig/pkg-plist glpk/pkg-plist --- glpk.orig/pkg-plist Sat Feb 18 20:16:49 2006 +++ glpk/pkg-plist Sat Feb 18 21:20:15 2006 @@ -2,10 +2,12 @@ bin/tspsol include/glpavl.h include/glpdmp.h +include/glphbm.h include/glpiet.h include/glpinv.h include/glpios.h include/glpipm.h +include/glpipp.h include/glpk.h include/glplib.h include/glplpp.h >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:41:21 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9991F16A470; Sun, 19 Feb 2006 02:41:21 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C3D643D4C; Sun, 19 Feb 2006 02:41:16 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2fDA1058788; Sun, 19 Feb 2006 02:41:13 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2fDD2058784; Sun, 19 Feb 2006 02:41:13 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:41:13 GMT From: Marcus Alves Grando Message-Id: <200602190241.k1J2fDD2058784@freefall.freebsd.org> To: avleeuwen@piwebs.com, gvs@rinet.ru, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91557: graphics/ImageMagick port fails to compile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:41:21 -0000 Synopsis: graphics/ImageMagick port fails to compile State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:37:13 UTC 2006 State-Changed-Why: Already fixed. Thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=91557 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:42:55 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50C5A16A422; Sun, 19 Feb 2006 02:42:55 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD2A43D6D; Sun, 19 Feb 2006 02:42:50 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2goL6058860; Sun, 19 Feb 2006 02:42:50 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2gnW9058856; Sun, 19 Feb 2006 02:42:49 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:42:49 GMT From: Marcus Alves Grando Message-Id: <200602190242.k1J2gnW9058856@freefall.freebsd.org> To: babak@farrokhi.net, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91661: new port net/sofia-sip X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:42:55 -0000 Synopsis: new port net/sofia-sip State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:41:16 UTC 2006 State-Changed-Why: Feedback received. New shar. http://www.freebsd.org/cgi/query-pr.cgi?pr=91661 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:44:14 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3257F16A422; Sun, 19 Feb 2006 02:44:14 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BF6143D55; Sun, 19 Feb 2006 02:44:13 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2iDNB058986; Sun, 19 Feb 2006 02:44:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2iDfI058982; Sun, 19 Feb 2006 02:44:13 GMT (envelope-from edwin) Date: Sun, 19 Feb 2006 02:44:13 GMT From: Edwin Groothuis Message-Id: <200602190244.k1J2iDfI058982@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org Cc: Subject: Re: ports/93547: Update math/glpk to version 4.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:44:14 -0000 Synopsis: Update math/glpk to version 4.9 Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 19 02:44:12 UTC 2006 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=93547 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:46:10 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86CED16A422; Sun, 19 Feb 2006 02:46:10 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41C1543D48; Sun, 19 Feb 2006 02:46:10 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2kA1b059033; Sun, 19 Feb 2006 02:46:10 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2k5lq059029; Sun, 19 Feb 2006 02:46:05 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:46:05 GMT From: Marcus Alves Grando Message-Id: <200602190246.k1J2k5lq059029@freefall.freebsd.org> To: l0kit0@exactas.org, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91800: misc/linux-opengroupware fail to resolv apache20 dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:46:10 -0000 Synopsis: misc/linux-opengroupware fail to resolv apache20 dependency State-Changed-From-To: feedback->closed State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:42:55 UTC 2006 State-Changed-Why: Port already depend of apache. RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache20 Thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=91800 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:46:43 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C3DF16A420; Sun, 19 Feb 2006 02:46:43 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D3943D48; Sun, 19 Feb 2006 02:46:43 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2kh8m059080; Sun, 19 Feb 2006 02:46:43 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2kgYg059076; Sun, 19 Feb 2006 02:46:42 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:46:42 GMT From: Marcus Alves Grando Message-Id: <200602190246.k1J2kgYg059076@freefall.freebsd.org> To: ip@doom.homeunix.org, alejandro@varnet.biz, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91842: [UPDATE] games/tenebrae: fix plist problem X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:46:43 -0000 Synopsis: [UPDATE] games/tenebrae: fix plist problem State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:46:13 UTC 2006 State-Changed-Why: Feedback received. Approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=91842 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:47:44 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D544F16A422; Sun, 19 Feb 2006 02:47:44 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C9E443D48; Sun, 19 Feb 2006 02:47:44 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2li0K059127; Sun, 19 Feb 2006 02:47:44 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2lhju059123; Sun, 19 Feb 2006 02:47:43 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:47:43 GMT From: Marcus Alves Grando Message-Id: <200602190247.k1J2lhju059123@freefall.freebsd.org> To: mukai@jmuk.org, smatsui@karashi.org, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91854: [PATCH] japanese/ja-scim-skk: update to 0.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:47:45 -0000 Synopsis: [PATCH] japanese/ja-scim-skk: update to 0.5.2 State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:46:45 UTC 2006 State-Changed-Why: Feedback timeout. 33 days. http://www.freebsd.org/cgi/query-pr.cgi?pr=91854 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:52:33 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B660016A420; Sun, 19 Feb 2006 02:52:33 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E93F43D45; Sun, 19 Feb 2006 02:52:33 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2qXDo059310; Sun, 19 Feb 2006 02:52:33 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2qXkN059306; Sun, 19 Feb 2006 02:52:33 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:52:33 GMT From: Marcus Alves Grando Message-Id: <200602190252.k1J2qXkN059306@freefall.freebsd.org> To: avleeuwen@piwebs.com, freebsdoperajan06@oldach.net, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91900: ports/www/opera should advise on libmap.conf entries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:52:33 -0000 Synopsis: ports/www/opera should advise on libmap.conf entries State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:47:47 UTC 2006 State-Changed-Why: Feedback timeout. 32 days. No patch available. http://www.freebsd.org/cgi/query-pr.cgi?pr=91900 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:53:35 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E30016A422; Sun, 19 Feb 2006 02:53:35 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E71BB43D46; Sun, 19 Feb 2006 02:53:34 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2rYJq059356; Sun, 19 Feb 2006 02:53:34 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2rXLE059352; Sun, 19 Feb 2006 02:53:33 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:53:33 GMT From: Marcus Alves Grando Message-Id: <200602190253.k1J2rXLE059352@freefall.freebsd.org> To: toha@toha.org.ua, edwin@mavetju.org, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91928: [patch] games/wormux update to 0.7 beta 2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:53:35 -0000 Synopsis: [patch] games/wormux update to 0.7 beta 2 State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:52:36 UTC 2006 State-Changed-Why: Feedback timeout. 32 days. Patch available. http://www.freebsd.org/cgi/query-pr.cgi?pr=91928 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 02:58:07 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD03316A423; Sun, 19 Feb 2006 02:58:07 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E3F243D66; Sun, 19 Feb 2006 02:58:04 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J2w3NQ059465; Sun, 19 Feb 2006 02:58:03 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J2w37p059461; Sun, 19 Feb 2006 02:58:03 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 02:58:03 GMT From: Marcus Alves Grando Message-Id: <200602190258.k1J2w37p059461@freefall.freebsd.org> To: tarc@tarc.po.cs.msu.su, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/91963: [patch] moviedb compiling (BROKEN variable) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 02:58:07 -0000 Synopsis: [patch] moviedb compiling (BROKEN variable) State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 02:57:26 UTC 2006 State-Changed-Why: Feedback received. Approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=91963 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 03:01:43 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DAA516A422; Sun, 19 Feb 2006 03:01:43 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E3BD43D45; Sun, 19 Feb 2006 03:01:43 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J31gnd060716; Sun, 19 Feb 2006 03:01:42 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J31gQv060708; Sun, 19 Feb 2006 03:01:42 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 03:01:42 GMT From: Marcus Alves Grando Message-Id: <200602190301.k1J31gQv060708@freefall.freebsd.org> To: eol1@yahoo.com, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93371: Update: mail/mixminion X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 03:01:43 -0000 Synopsis: Update: mail/mixminion State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 03:00:39 UTC 2006 State-Changed-Why: Feedback received. New patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=93371 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 03:02:34 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FD7F16A422; Sun, 19 Feb 2006 03:02:34 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 115C243D46; Sun, 19 Feb 2006 03:02:34 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J32Xdm060777; Sun, 19 Feb 2006 03:02:33 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J32XXp060773; Sun, 19 Feb 2006 03:02:33 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 03:02:33 GMT From: Marcus Alves Grando Message-Id: <200602190302.k1J32XXp060773@freefall.freebsd.org> To: changbom.yoon@gmail.com, bh@izb.knu.ac.kr, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93377: [PATCH] multimedia/quodlibet: build failure on ia64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 03:02:34 -0000 Synopsis: [PATCH] multimedia/quodlibet: build failure on ia64 State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 03:01:48 UTC 2006 State-Changed-Why: Feedback received. Approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=93377 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 03:03:15 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E4D716A420; Sun, 19 Feb 2006 03:03:15 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD7C243D45; Sun, 19 Feb 2006 03:03:13 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from freefall.freebsd.org (mnag@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J33Ddo060842; Sun, 19 Feb 2006 03:03:13 GMT (envelope-from mnag@freefall.freebsd.org) Received: (from mnag@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J33C6h060838; Sun, 19 Feb 2006 03:03:12 GMT (envelope-from mnag) Date: Sun, 19 Feb 2006 03:03:12 GMT From: Marcus Alves Grando Message-Id: <200602190303.k1J33C6h060838@freefall.freebsd.org> To: lulf@kerneled.org, lulf@studby.ntnu.no, mnag@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93449: [maintainer-update] Update devel/bazaar-ng to use cElementTree X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 03:03:15 -0000 Synopsis: [maintainer-update] Update devel/bazaar-ng to use cElementTree State-Changed-From-To: feedback->open State-Changed-By: mnag State-Changed-When: Sun Feb 19 03:02:40 UTC 2006 State-Changed-Why: Feedback received. Approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=93449 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 03:10:09 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFFC316A420 for ; Sun, 19 Feb 2006 03:10:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C49843D46 for ; Sun, 19 Feb 2006 03:10:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J3A9rC061026 for ; Sun, 19 Feb 2006 03:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J3A9DV061025; Sun, 19 Feb 2006 03:10:09 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 03:10:09 GMT Resent-Message-Id: <200602190310.k1J3A9DV061025@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, SANETO Takanori Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CE8716A420 for ; Sun, 19 Feb 2006 03:07:38 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F24843D46 for ; Sun, 19 Feb 2006 03:07:38 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k1J37b5c000308 for ; Sun, 19 Feb 2006 03:07:37 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k1J37bDB000307; Sun, 19 Feb 2006 03:07:37 GMT (envelope-from nobody) Message-Id: <200602190307.k1J37bDB000307@www.freebsd.org> Date: Sun, 19 Feb 2006 03:07:37 GMT From: SANETO Takanori To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: ports/93548: lang/ezm3 uses old malloc which may complain about unknown char in MALLOC_OPTIONS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 03:10:09 -0000 >Number: 93548 >Category: ports >Synopsis: lang/ezm3 uses old malloc which may complain about unknown char in MALLOC_OPTIONS >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 19 03:10:08 GMT 2006 >Closed-Date: >Last-Modified: >Originator: SANETO Takanori >Release: 7.0-CURRENT >Organization: an individual >Environment: FreeBSD muse.sanewo.ddo.jp 7.0-CURRENT FreeBSD 7.0-CURRENT #822: Sun Jan 15 06:08:54 JST 2006 root@muse.sanewo.ddo.jp:/export/usr/obj/usr/src/sys/MUSE i386 >Description: ezm3 contains modified version of old (phk) malloc implementaion in m3core.a. This cause incompatibility in interpretation of MALLOC_OPTIONS environment variable and /etc/malloc.conf setting. When, for example, 'k' is in these settings, application built with m3 (e.g. cvsup) will submit warning "unknown char in MALLOC_OPTIONS". >How-To-Repeat: rebuild ezm3 and cvsup under current. run cvsup with MALLOC_OPTIONS=k. >Fix: replace malloc in ezm3 under CURRENT, or at least, refer different env/file for malloc setting for ezm3 (e.g., M3_MALLOC_OPTIONS and /etc/m3_malloc.conf). >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 03:12:14 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE64516A420; Sun, 19 Feb 2006 03:12:14 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EE2E43D46; Sun, 19 Feb 2006 03:12:14 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J3CEL0061250; Sun, 19 Feb 2006 03:12:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J3CEHs061246; Sun, 19 Feb 2006 03:12:14 GMT (envelope-from edwin) Date: Sun, 19 Feb 2006 03:12:14 GMT From: Edwin Groothuis Message-Id: <200602190312.k1J3CEHs061246@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jdp@FreeBSD.org Cc: Subject: Re: ports/93548: lang/ezm3 uses old malloc which may complain about unknown char in MALLOC_OPTIONS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 03:12:14 -0000 Synopsis: lang/ezm3 uses old malloc which may complain about unknown char in MALLOC_OPTIONS Responsible-Changed-From-To: freebsd-ports-bugs->jdp Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 19 03:12:13 UTC 2006 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=93548 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 05:41:22 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30BC316A423; Sun, 19 Feb 2006 05:41:22 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 852BF43D48; Sun, 19 Feb 2006 05:41:21 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from freefall.freebsd.org (clive@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J5fLb5076229; Sun, 19 Feb 2006 05:41:21 GMT (envelope-from clive@freefall.freebsd.org) Received: (from clive@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J5fLgC076225; Sun, 19 Feb 2006 05:41:21 GMT (envelope-from clive) Date: Sun, 19 Feb 2006 05:41:21 GMT From: Clive Lin Message-Id: <200602190541.k1J5fLgC076225@freefall.freebsd.org> To: delphij@freebsd.org, clive@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93462: [MAINTAINER UPDATE] Upgrade textproc/stardict2 to 2.4.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 05:41:22 -0000 Synopsis: [MAINTAINER UPDATE] Upgrade textproc/stardict2 to 2.4.6 State-Changed-From-To: open->closed State-Changed-By: clive State-Changed-When: Sun Feb 19 05:41:10 UTC 2006 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=93462 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 06:06:47 2006 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 488B616A420; Sun, 19 Feb 2006 06:06:47 +0000 (GMT) (envelope-from freebsdoperajan06@oldach.net) Received: from rigel.oldach.net (rigel.oldach.net [194.8.96.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2593243D48; Sun, 19 Feb 2006 06:06:45 +0000 (GMT) (envelope-from freebsdoperajan06@oldach.net) Received: from sep.oldach.net (p548FB551.dip0.t-ipconnect.de [84.143.181.81]) by rigel.oldach.net (8.13.4/8.13.4/hmo30jul04) with ESMTP id k1J66g8C067333 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 19 Feb 2006 07:06:43 +0100 (CET) (envelope-from freebsdoperajan06@oldach.net) Received: from sep.oldach.net (localhost [127.0.0.1]) by sep.oldach.net (8.13.4/8.13.4/hmo26jun05) with ESMTP id k1J66f1T083263 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 19 Feb 2006 07:06:41 +0100 (CET) (envelope-from freebsdoperajan06@oldach.net) Received: (from hmo@localhost) by sep.oldach.net (8.13.4/8.13.4/Submit/hmo26jun05) id k1J66eQk083262; Sun, 19 Feb 2006 07:06:40 +0100 (CET) (envelope-from freebsdoperajan06@oldach.net) Message-Id: <200602190606.k1J66eQk083262@sep.oldach.net> In-Reply-To: <200602190252.k1J2qXkN059306@freefall.freebsd.org> from Marcus Alves Grando at "Feb 19, 2006 2:52:33 am" To: freebsd-ports-bugs@FreeBSD.org Date: Sun, 19 Feb 2006 07:06:40 +0100 (CET) From: freebsdoperajan06@oldach.net (Helge Oldach) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.88, clamav-milter version 0.87 on rigel.oldach.net X-Virus-Scanned: ClamAV version 0.88, clamav-milter version 0.87 on sep.oldach.net X-Virus-Status: Clean X-Spam-Flag: NO X-Scanned-By: milter-spamc/0.25.321 (rigel.oldach.net [194.8.96.250]); Sun, 19 Feb 2006 07:06:44 +0100 X-Spam-Status: NO, hits=2.20 required=5.00 X-Spam-Level: ** Cc: mnag@FreeBSD.org, avleeuwen@piwebs.com Subject: Re: ports/91900: ports/www/opera should advise on libmap.conf entries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 06:06:47 -0000 I suggests to patch as follows: --- www/opera/pkg-message~ Sat Jan 28 00:01:58 2006 +++ www/opera/pkg-message Sun Feb 19 07:03:08 2006 @@ -1,5 +1,15 @@ If you are running FreeBSD 5.x or 6.x and are experiencing a core dump when starting Opera, try updating the compat4x port. -Plugins do not work in FreeBSD 5.x or higher - please disable them. +To enable the built-in plug-ins you need to add this to /etc/libmap.conf: + +# Opera - Motif +[/usr/X11R6/share/opera/plugins/operamotifwrapper-1] +libXm.so.1 libXm.so.3 +libXThrStub.so.6 libXtst.so.6 +[/usr/X11R6/share/opera/plugins/operamotifwrapper-2] +libXm.so.2 libXm.so.3 +libXThrStub.so.6 libXtst.so.6 +[/usr/X11R6/share/opera/plugins/operamotifwrapper-3] +libXThrStub.so.6 libXtst.so.6 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 06:10:12 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47A8016A420 for ; Sun, 19 Feb 2006 06:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11F9843D46 for ; Sun, 19 Feb 2006 06:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J6ABYs076993 for ; Sun, 19 Feb 2006 06:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J6ABSh076986; Sun, 19 Feb 2006 06:10:11 GMT (envelope-from gnats) Date: Sun, 19 Feb 2006 06:10:11 GMT Message-Id: <200602190610.k1J6ABSh076986@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: freebsdoperajan06@oldach.net (Helge Oldach) Cc: Subject: Re: ports/91900: ports/www/opera should advise on libmap.conf entries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 19 Feb 2006 06:10:12 -0000 The following reply was made to PR ports/91900; it has been noted by GNATS. From: freebsdoperajan06@oldach.net (Helge Oldach) To: freebsd-ports-bugs@FreeBSD.org Cc: avleeuwen@piwebs.com, mnag@FreeBSD.org Subject: Re: ports/91900: ports/www/opera should advise on libmap.conf entries Date: Sun, 19 Feb 2006 07:06:40 +0100 (CET) I suggests to patch as follows: --- www/opera/pkg-message~ Sat Jan 28 00:01:58 2006 +++ www/opera/pkg-message Sun Feb 19 07:03:08 2006 @@ -1,5 +1,15 @@ If you are running FreeBSD 5.x or 6.x and are experiencing a core dump when starting Opera, try updating the compat4x port. -Plugins do not work in FreeBSD 5.x or higher - please disable them. +To enable the built-in plug-ins you need to add this to /etc/libmap.conf: + +# Opera - Motif +[/usr/X11R6/share/opera/plugins/operamotifwrapper-1] +libXm.so.1 libXm.so.3 +libXThrStub.so.6 libXtst.so.6 +[/usr/X11R6/share/opera/plugins/operamotifwrapper-2] +libXm.so.2 libXm.so.3 +libXThrStub.so.6 libXtst.so.6 +[/usr/X11R6/share/opera/plugins/operamotifwrapper-3] +libXThrStub.so.6 libXtst.so.6 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 07:10:12 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5160616A420 for ; Sun, 19 Feb 2006 07:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE17643D46 for ; Sun, 19 Feb 2006 07:10:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J7ABTn079491 for ; Sun, 19 Feb 2006 07:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J7AB2Y079490; Sun, 19 Feb 2006 07:10:11 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 07:10:11 GMT Resent-Message-Id: <200602190710.k1J7AB2Y079490@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Scott Blachowicz Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62ACF16A422 for ; Sun, 19 Feb 2006 07:04:52 +0000 (GMT) (envelope-from scott@sabami.seaslug.org) Received: from rwcrmhc14.comcast.net (rwcrmhc14.comcast.net [216.148.227.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D87543D45 for ; Sun, 19 Feb 2006 07:04:52 +0000 (GMT) (envelope-from scott@sabami.seaslug.org) Received: from sabami.seaslug.org (mail.dsab.rresearch.com[24.16.90.208]) by comcast.net (rwcrmhc14) with ESMTP id <20060219070451m140036h8ne>; Sun, 19 Feb 2006 07:04:51 +0000 Received: by sabami.seaslug.org (Postfix, from userid 1000) id D92F262CF; Sat, 18 Feb 2006 23:04:50 -0800 (PST) Message-Id: <20060219070450.D92F262CF@sabami.seaslug.org> Date: Sat, 18 Feb 2006 23:04:50 -0800 (PST) From: Scott Blachowicz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: scott@mail.dsab.rresearch.com Subject: ports/93549: need to apply this patch to update nmh port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Scott Blachowicz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 07:10:12 -0000 >Number: 93549 >Category: ports >Synopsis: need to apply this patch to update nmh port >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 Feb 19 07:10:06 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Scott Blachowicz >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD ns1.dsab.rresearch.com 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun Jul 10 23:08:07 PDT 2005 root@ns1.dsab.rresearch.com:/usr/src/sys/i386/compile/SAB i386 >Description: This patch updates to the latest released version of nmh and corrects a packaging problem where a file wasn't getting removed on pkg_delete. >How-To-Repeat: >Fix: Apply this patch with 'patch -Ep1' in the port dir. It should end up removing these: files/patch-aa, files/patch-ab, files/patch-ac, files/patch-ad It looks like the comment removal logic of send-pr might mangle the patch, so it can be retrieved separately from here: http://www.dsab.rresearch.com/~scott/nmh-1.2-diffs.txt >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 07:40:25 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB53A16A420 for ; Sun, 19 Feb 2006 07:40:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34B5C43D7B for ; Sun, 19 Feb 2006 07:40:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J7e3ds081643 for ; Sun, 19 Feb 2006 07:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J7e2DG081642; Sun, 19 Feb 2006 07:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 07:40:03 GMT Resent-Message-Id: <200602190740.k1J7e2DG081642@freefall.freebsd.org> 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 Luckie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D3DC16A420 for ; Sun, 19 Feb 2006 07:34:01 +0000 (GMT) (envelope-from mjl@luckie.org.nz) Received: from grunt13.ihug.co.nz (grunt13.ihug.co.nz [203.109.254.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD52E43D45 for ; Sun, 19 Feb 2006 07:34:00 +0000 (GMT) (envelope-from mjl@luckie.org.nz) Received: from 203-109-220-215.bliink.ihug.co.nz (latex.plunket.luckie.org.nz) [203.109.220.215] by grunt13.ihug.co.nz with esmtp (Exim 3.35 #1 (Debian)) id 1FAj4v-0004cO-00; Sun, 19 Feb 2006 20:33:58 +1300 Received: from rayon.plunket.luckie.org.nz ([192.168.1.8]) by latex.plunket.luckie.org.nz with esmtp (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FAj4u-0007vs-WB for FreeBSD-gnats-submit@freebsd.org; Sun, 19 Feb 2006 20:33:57 +1300 Received: from mjl by rayon.plunket.luckie.org.nz with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FAj4u-0002Aq-It for FreeBSD-gnats-submit@freebsd.org; Sun, 19 Feb 2006 20:33:56 +1300 Message-Id: Date: Sun, 19 Feb 2006 20:33:56 +1300 From: Matthew Luckie Sender: Matthew Luckie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/93550: [new port] thunderbird-dictionaries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Luckie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 07:40:25 -0000 >Number: 93550 >Category: ports >Synopsis: [new port] thunderbird-dictionaries >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 Feb 19 07:40:02 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Matthew Luckie >Release: FreeBSD 6.0-RELEASE i386 >Organization: University of Waikato >Environment: System: FreeBSD rayon.plunket.luckie.org.nz 6.0-RELEASE FreeBSD 6.0-RELEASE #4: Wed Jan 4 13:42:42 NZDT 2006 root@rayon.plunket.luckie.org.nz:/usr/src/sys/i386/compile/rayon i386 >Description: Thunderbird has plugin dictionaries, but you need to be root to install them. This port allows the appropriate dictionaries to be selected and installed. >How-To-Repeat: N/A >Fix: --- thunderbird-dictionaries.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: # # thunderbird-dictionaries # thunderbird-dictionaries/distinfo # thunderbird-dictionaries/Makefile # thunderbird-dictionaries/pkg-descr # thunderbird-dictionaries/pkg-plist # echo c - thunderbird-dictionaries mkdir -p thunderbird-dictionaries > /dev/null 2>&1 echo x - thunderbird-dictionaries/distinfo sed 's/^X//' >thunderbird-dictionaries/distinfo << 'END-of-thunderbird-dictionaries/distinfo' XMD5 (thunderbird/spell-af-ZA.xpi) = ae85349fb1274fe9c32ab05f85b5f463 XSHA256 (thunderbird/spell-af-ZA.xpi) = 2032dd39d317cda0eac8a36e8d89cd2f11af2e5a88bed8b958149622c77fb306 XSIZE (thunderbird/spell-af-ZA.xpi) = 595437 XMD5 (thunderbird/spell-bg.xpi) = 7a0bd2330808766be3576a480721b593 XSHA256 (thunderbird/spell-bg.xpi) = 481b9995d6cf40cbcfe64a0ac622966fccd3151f56b5c0426d61abdbeb9028c1 XSIZE (thunderbird/spell-bg.xpi) = 264986 XMD5 (thunderbird/spell-ca.xpi) = 2c1b1c98b33bc768aed7dc92a0a0c54b XSHA256 (thunderbird/spell-ca.xpi) = a4d8c852e1fc420f2c16d97fbaca55b68d3b7198bc3456e41512032891f89a91 XSIZE (thunderbird/spell-ca.xpi) = 495044 XMD5 (thunderbird/spell-cs.xpi) = 2b97865792d0afdecb7acae16454a459 XSHA256 (thunderbird/spell-cs.xpi) = bafc6037efc3d733201703b2d5d9b2852e657222f31421498f1bea9d218828d1 XSIZE (thunderbird/spell-cs.xpi) = 628321 XMD5 (thunderbird/spell-cy-GB.xpi) = a0a673640b3b7ee3f0d8e1bafe20862f XSHA256 (thunderbird/spell-cy-GB.xpi) = dd7b5b1ec2eed7977740b3249bad4b1cae176c4c7d84ddcad799b2a7ead86597 XSIZE (thunderbird/spell-cy-GB.xpi) = 689165 XMD5 (thunderbird/spell-da.xpi) = 950335a5cf28e1a425a2d0db825a5839 XSHA256 (thunderbird/spell-da.xpi) = 3460e85e6d0b0b5565f42a96feaaac01fb5ad6076ecd355f2e435b0a3318acc0 XSIZE (thunderbird/spell-da.xpi) = 537114 XMD5 (thunderbird/spell-de-AT.xpi) = b498f24a49120f9c33a73c50dfa00bd3 XSHA256 (thunderbird/spell-de-AT.xpi) = f403105aee755ad8230868343a67874935006f02d59261dbf894ecd94f05ebe9 XSIZE (thunderbird/spell-de-AT.xpi) = 11093 XMD5 (thunderbird/spell-de-CH.xpi) = 594cba9e951fdb0964b92f9de4da0ead XSHA256 (thunderbird/spell-de-CH.xpi) = 36eb4c768c0a3976dc258298de504971e5bd5e73390f3f79e5990fa8ea5bef62 XSIZE (thunderbird/spell-de-CH.xpi) = 352216 XMD5 (thunderbird/spell-de-DE.xpi) = ca983441de50359c9aad8123ecc7adda XSHA256 (thunderbird/spell-de-DE.xpi) = f77b26671cbf11d790b6c896440e778331acebe52ad80c80c0c46ece1d2e864e XSIZE (thunderbird/spell-de-DE.xpi) = 352463 XMD5 (thunderbird/spell-el.xpi) = d8c16c4a44ad4620edbcc6fc17207f97 XSHA256 (thunderbird/spell-el.xpi) = c21faa3fa59b370f29a92f4b271672c49265ad475f5b75927f7800828b077d55 XSIZE (thunderbird/spell-el.xpi) = 1448270 XMD5 (thunderbird/spell-en-AU.xpi) = a762af69e11eaad5d3d413dd2c86c745 XSHA256 (thunderbird/spell-en-AU.xpi) = 4f9aea2dbd13ffe047f5b1953d43a3f1ad6d9c017a6f03b9e185e33b37b9dbd1 XSIZE (thunderbird/spell-en-AU.xpi) = 205713 XMD5 (thunderbird/spell-en-CA.xpi) = b74e470762636ffe34c5084f0dbf5399 XSHA256 (thunderbird/spell-en-CA.xpi) = eed4ff6cca059a80200b9676cea0479d08bccd7366f5101efc9741c452b7a675 XSIZE (thunderbird/spell-en-CA.xpi) = 336411 XMD5 (thunderbird/spell-en-NZ.xpi) = 181ee877bcbbb54460c64592273c0680 XSHA256 (thunderbird/spell-en-NZ.xpi) = f1c08b9ea156a29433dc3dc56bb5ae90b7a57a54445691e25b9e7329ad58ab8b XSIZE (thunderbird/spell-en-NZ.xpi) = 223483 XMD5 (thunderbird/spell-es-ES.xpi) = 71e9a6229f9fc12e3b4748e274bd8638 XSHA256 (thunderbird/spell-es-ES.xpi) = 34cf54e8831330f822cc59415d79537f34cad758e08868d217681de8df9571da XSIZE (thunderbird/spell-es-ES.xpi) = 195111 XMD5 (thunderbird/spell-es-MX.xpi) = ff753ee0ba4dba693c22f610aa56f5f0 XSHA256 (thunderbird/spell-es-MX.xpi) = 258d34b78e3e16b697ffad321e343d0ce92147e492f6fa5b3e8bf9db91ad4d66 XSIZE (thunderbird/spell-es-MX.xpi) = 201380 XMD5 (thunderbird/spell-fo.xpi) = 002ee510e098f695d3421e67c0e43ff2 XSHA256 (thunderbird/spell-fo.xpi) = 6c31c5c339b82abec601a1da0c1c950c460e7a3170c829b85170455f7707f7fe XSIZE (thunderbird/spell-fo.xpi) = 241210 XMD5 (thunderbird/spell-fr-FR.xpi) = d50a3a4cc8c303016330cab9eef07cd1 XSHA256 (thunderbird/spell-fr-FR.xpi) = 77ea9cd3fd24489337d5996514e002a1b026276d0df63cb85b9c60ed5edc1c7f XSIZE (thunderbird/spell-fr-FR.xpi) = 326263 XMD5 (thunderbird/spell-ga.xpi) = 0939c83e4a773634e41689712e3f8859 XSHA256 (thunderbird/spell-ga.xpi) = 53b70e56764ddd5f89a28969a588698bb5ada04127ceff8b8a8545f92eb64859 XSIZE (thunderbird/spell-ga.xpi) = 210288 XMD5 (thunderbird/spell-gl.xpi) = 0f1d330326c1af0e8d119f378735fc91 XSHA256 (thunderbird/spell-gl.xpi) = ea88734c14479c803c9a8de50a8264c539c101889399983c9fe02d1c7309a614 XSIZE (thunderbird/spell-gl.xpi) = 148959 XMD5 (thunderbird/spell-he-IL.xpi) = 15895fdb19dc8fbcb98d088605f2c685 XSHA256 (thunderbird/spell-he-IL.xpi) = f26d7605bc00bf9ac896ae740897881dd7ffb062cee0501ca828643106835595 XSIZE (thunderbird/spell-he-IL.xpi) = 840097 XMD5 (thunderbird/spell-hr.xpi) = 499a5a499de28948fae196cc245c9f85 XSHA256 (thunderbird/spell-hr.xpi) = d21d9b67d4ca8a1bc30f0456af7c959035c8ced09f0865c20902af7d26095140 XSIZE (thunderbird/spell-hr.xpi) = 811483 XMD5 (thunderbird/spell-hu.xpi) = 622830acfcf1f9ed8a4b2944837577a4 XSHA256 (thunderbird/spell-hu.xpi) = c4f5507615665f64e82be3ad8a358b2e644b8a816b83a5dcb4a82291c6c91ff5 XSIZE (thunderbird/spell-hu.xpi) = 1043917 XMD5 (thunderbird/spell-ia.xpi) = 509a326095849a5655a01fb1bab5b253 XSHA256 (thunderbird/spell-ia.xpi) = 60d060f8c20d1a8630f8cdbd9b37a8183ff580172181a0c52523930d1770f818 XSIZE (thunderbird/spell-ia.xpi) = 91587 XMD5 (thunderbird/spell-it.xpi) = ffb0c12c0e985f178503575b78bde581 XSHA256 (thunderbird/spell-it.xpi) = 0ee25550d30f2b87beab13208b96473431b0e8e5f267ba3d7d644293198f2b6c XSIZE (thunderbird/spell-it.xpi) = 338288 XMD5 (thunderbird/spell-la.xpi) = c8c4326301d1cf72caacdd0961279a31 XSHA256 (thunderbird/spell-la.xpi) = a14a03e476678337eab4b408d24ebcb14d709c41c7a1fbde7dc04cf235451609 XSIZE (thunderbird/spell-la.xpi) = 57617 XMD5 (thunderbird/spell-lt.xpi) = 089e299885b3239c32c86054c8e919a4 XSHA256 (thunderbird/spell-lt.xpi) = 82c82f627483ae1e23cb6b7628a30a20c5defe87d988711c5570ea263f8d609d XSIZE (thunderbird/spell-lt.xpi) = 66613 XMD5 (thunderbird/spell-lv-LV.xpi) = a2178096c52f03b5b9d6acaadd6fe1be XSHA256 (thunderbird/spell-lv-LV.xpi) = 1050e5b297ebbbcbf2b76ff313477eb083579c7752aa76c823947948b55c2d26 XSIZE (thunderbird/spell-lv-LV.xpi) = 1098233 XMD5 (thunderbird/spell-mi.xpi) = f863592c869991d596de45380338f793 XSHA256 (thunderbird/spell-mi.xpi) = 07bc7c0c9cb1b8a793b8f6dda3a636302bfa8b89ea28d4fe5fca2c0e7a959bff XSIZE (thunderbird/spell-mi.xpi) = 79020 XMD5 (thunderbird/spell-ms.xpi) = 11ceedc2fe20e8eb4ed16c485abcc35f XSHA256 (thunderbird/spell-ms.xpi) = f0eb3b3a88b327937954ecc425667b136628f1631eacb559fd5daf4269470f93 XSIZE (thunderbird/spell-ms.xpi) = 65498 XMD5 (thunderbird/spell-nb.xpi) = a57b2683b7cc57832c6deedd805fbe5f XSHA256 (thunderbird/spell-nb.xpi) = ac19d858b931817ad19dc77875555ef2f381d059924ac57ab60037a38fe84112 XSIZE (thunderbird/spell-nb.xpi) = 587114 XMD5 (thunderbird/spell-nl.xpi) = bac8d295dbf57dd86d0a9259b05a775d XSHA256 (thunderbird/spell-nl.xpi) = 289460f51f6f788087e4f82754d4292eed3f63b570651a63fd8353fbc853304d XSIZE (thunderbird/spell-nl.xpi) = 508812 XMD5 (thunderbird/spell-nn.xpi) = 450d19ee5f5bfd6cd3f4e39956c3a7ce XSHA256 (thunderbird/spell-nn.xpi) = 8dcd82ccfeb1d8ba5e725c68a70060ea091d13492d88d6bdf6ca149aebad4421 XSIZE (thunderbird/spell-nn.xpi) = 462744 XMD5 (thunderbird/spell-pl.xpi) = 4951aefa9afd2be89c4dfedc71c26f59 XSHA256 (thunderbird/spell-pl.xpi) = 0ebb2d5369fdd8029c67a795f99f1560b9b955e68dc6b559ddd117c0e7319159 XSIZE (thunderbird/spell-pl.xpi) = 759342 XMD5 (thunderbird/spell-pt.xpi) = 24d60a61f7143ab7ead1f19892180ce7 XSHA256 (thunderbird/spell-pt.xpi) = 71a16ce0cac73a6325a6f2f8197ad280c82d19b4a6f8a88dbf0b34943794294b XSIZE (thunderbird/spell-pt.xpi) = 136899 XMD5 (thunderbird/spell-pt-BR.xpi) = 58da6b1e64fb47fe3fad1f4cb5ad6a07 XSHA256 (thunderbird/spell-pt-BR.xpi) = 5c4b68b821e76ec87c023472c7b49a24ca7deaf0f95d33b7a5c9e9b5e2aecb18 XSIZE (thunderbird/spell-pt-BR.xpi) = 95922 XMD5 (thunderbird/spell-ro.xpi) = 63b3e971e0d6196b44b8f097931b38fb XSHA256 (thunderbird/spell-ro.xpi) = 444164f92d0b1432bace8d91e9eba9dc5850c3bdae3f54a9f782aed8b935bf17 XSIZE (thunderbird/spell-ro.xpi) = 139001 XMD5 (thunderbird/spell-ru.xpi) = 401f130c50df97b3859fe17b261a5a69 XSHA256 (thunderbird/spell-ru.xpi) = 2d3fba0bfdf8ac782927e70c2a8e7de331f0508473bcce5937fa7215f1c82917 XSIZE (thunderbird/spell-ru.xpi) = 467757 XMD5 (thunderbird/spell-ru-ie.xpi) = e115c13ae930070a784c2f7b9cf39122 XSHA256 (thunderbird/spell-ru-ie.xpi) = 10e64ad9a9a136cde1aa00fd621a1976a291f897ad4b80ee9f1c97935a33ae72 XSIZE (thunderbird/spell-ru-ie.xpi) = 984273 XMD5 (thunderbird/spell-sk.xpi) = 25eec563c43484001d3beaed90ed9213 XSHA256 (thunderbird/spell-sk.xpi) = 9dc481fdb4f788712cc286a00d6be90a8142954f8b345ebb404a12b10c93a475 XSIZE (thunderbird/spell-sk.xpi) = 187733 XMD5 (thunderbird/spell-sl.xpi) = 01e96c3f0a86bd6e4dfc17d610640259 XSHA256 (thunderbird/spell-sl.xpi) = be3b8acfe9610ea255aed791e79a98cdb12dbb4177dd9f802b139721f65c8b6d XSIZE (thunderbird/spell-sl.xpi) = 1186588 XMD5 (thunderbird/spell-sv.xpi) = 47da6dc9dc9331a82190731d19c80ec1 XSHA256 (thunderbird/spell-sv.xpi) = 497b80d29b7246a0e37909365f850fc29ef1a606709d508c0e0c63cb4e130e32 XSIZE (thunderbird/spell-sv.xpi) = 118607 XMD5 (thunderbird/spell-uk.xpi) = 3db52608eea5db2fc48319562e06530e XSHA256 (thunderbird/spell-uk.xpi) = 648295fd0f0819cc7280980474be905b8a84334a81aecefc2c2b2225f313822d XSIZE (thunderbird/spell-uk.xpi) = 1378571 XMD5 (thunderbird/spell-zu-ZA.xpi) = ed25d59f25ff31a4e4d88df484389f99 XSHA256 (thunderbird/spell-zu-ZA.xpi) = 00a54ffb7b79a50f7c5341b9f19d00aa1cdfef884c5e430ceeb93aefcdddddd6 XSIZE (thunderbird/spell-zu-ZA.xpi) = 218351 END-of-thunderbird-dictionaries/distinfo echo x - thunderbird-dictionaries/Makefile sed 's/^X//' >thunderbird-dictionaries/Makefile << 'END-of-thunderbird-dictionaries/Makefile' X# Ports collection Makefile for: thunderbird-dictionaries X# Date created: 19 February 2006 X# Whom: Matthew Luckie X# Based on: multimedia/mplayer-skins X# X# $FreeBSD$ X# X XPORTNAME= thunderbird-dictionaries XPORTVERSION= 20060219 XCATEGORIES= mail XMASTER_SITES= http://mozdev.dns4.com/dictionaries/ \ X http://ftp.heanet.ie/pub/mozdev/dictionaries/ \ X http://mozdev.oregonstate.edu/dictionaries/ \ X http://mirror.meisterwerk.net/rmozdev/dictionaries/ \ X http://ftp.ntua.gr/pub/www/mozdev/dictionaries/ \ X http://www.devlib.org/mozdev/dictionaries/ \ X http://ftp.iasi.roedu.net/mirrors/mozdev.org/dictionaries/ \ X http://mozdev.archive.hk/dictionaries/ XDISTFILES= # filled in later after options XDIST_SUBDIR= thunderbird X XMAINTAINER= mjl@luckie.org.nz XCOMMENT= Dictionaries for Mozilla Thunderbird X XRUN_DEPENDS= ${X11BASE}/bin/thunderbird:${PORTSDIR}/mail/thunderbird X XUSE_X_PREFIX= yes XUSE_ZIP= yes XWRKSRC= ${WRKDIR}/dictionaries X X# Dictionary files XAF_ZA_FILE= spell-af-ZA.xpi XBG_FILE= spell-bg.xpi XCA_FILE= spell-ca.xpi XCS_FILE= spell-cs.xpi XCY_GB_FILE= spell-cy-GB.xpi XDA_FILE= spell-da.xpi XDE_AT_FILE= spell-de-AT.xpi XDE_CH_FILE= spell-de-CH.xpi XDE_DE_FILE= spell-de-DE.xpi XEL_FILE= spell-el.xpi XEN_AU_FILE= spell-en-AU.xpi XEN_CA_FILE= spell-en-CA.xpi XEN_NZ_FILE= spell-en-NZ.xpi XES_ES_FILE= spell-es-ES.xpi XES_MX_FILE= spell-es-MX.xpi XFO_FILE= spell-fo.xpi XFR_FR_FILE= spell-fr-FR.xpi XGA_FILE= spell-ga.xpi XGL_FILE= spell-gl.xpi XHE_IL_FILE= spell-he-IL.xpi XHR_FILE= spell-hr.xpi XHU_FILE= spell-hu.xpi XIA_FILE= spell-ia.xpi XIT_FILE= spell-it.xpi XLA_FILE= spell-la.xpi XLT_FILE= spell-lt.xpi XLV_LV_FILE= spell-lv-LV.xpi XMI_FILE= spell-mi.xpi XMS_FILE= spell-ms.xpi XNB_FILE= spell-nb.xpi XNL_FILE= spell-nl.xpi XNN_FILE= spell-nn.xpi XPL_FILE= spell-pl.xpi XPT_FILE= spell-pt.xpi XPT_BR_FILE= spell-pt-BR.xpi XRO_FILE= spell-ro.xpi XRU_FILE= spell-ru.xpi XSK_FILE= spell-sk.xpi XSL_FILE= spell-sl.xpi XSV_FILE= spell-sv.xpi XUK_FILE= spell-uk.xpi XZU_ZA_FILE= spell-zu-ZA.xpi X X# Dictionary options XOPTIONS= DICT_ALL "all dictionaries" on XOPTIONS+= DICT_AF_ZA "Afrikaans" off XOPTIONS+= DICT_BG "Bulgarian" off XOPTIONS+= DICT_CA "Catalan" off XOPTIONS+= DICT_HR "Croatian" off XOPTIONS+= DICT_CS "Czech" off XOPTIONS+= DICT_DA "Danish" off XOPTIONS+= DICT_NL "Dutch" off XOPTIONS+= DICT_EN_AU "English (Australia)" off XOPTIONS+= DICT_EN_CA "English (Canada)" off XOPTIONS+= DICT_EN_NZ "English (New Zealand)" off XOPTIONS+= DICT_EN_GB "English (United Kingdom)" off XOPTIONS+= DICT_FR_FR "French (France)" off XOPTIONS+= DICT_FO "Faroese" off XOPTIONS+= DICT_GL "Galician (Spain)" off XOPTIONS+= DICT_DE_AT "German (Austria)" off XOPTIONS+= DICT_DE_DE "German (Germany)" off XOPTIONS+= DICT_DE_CH "German (Switzerland)" off XOPTIONS+= DICT_EL "Greek" off XOPTIONS+= DICT_HE_IL "Hebrew" off XOPTIONS+= DICT_HU "Hungarian" off XOPTIONS+= DICT_IA "Interlingua" off XOPTIONS+= DICT_GA "Irish" off XOPTIONS+= DICT_IT "Italian" off XOPTIONS+= DICT_LA "Latin" off XOPTIONS+= DICT_LV_LV "Latvian" off XOPTIONS+= DICT_LT "Lithuanian" off XOPTIONS+= DICT_MS "Malay" off XOPTIONS+= DICT_MI "Maori" off XOPTIONS+= DICT_NB "Norwegian (Bokmal)" off XOPTIONS+= DICT_NN "Norwegian (Nynorsk)" off XOPTIONS+= DICT_PL "Polish" off XOPTIONS+= DICT_PT "Portuguese (Portugal)" off XOPTIONS+= DICT_PT_BR "Portuguese (Brasil)" off XOPTIONS+= DICT_RO "Romanian" off XOPTIONS+= DICT_RU "Russian" off XOPTIONS+= DICT_ES_MX "Spanish (Mexico)" off XOPTIONS+= DICT_ES_ES "Spanish (Spain)" off XOPTIONS+= DICT_SK "Slovak" off XOPTIONS+= DICT_SL "Slovenian" off XOPTIONS+= DICT_SV "Swedish" off XOPTIONS+= DICT_UK "Ukrainian" off XOPTIONS+= DICT_CY_GB "Welsh" off XOPTIONS+= DICT_ZU_ZA "Zulu (South Africa)" off X X.include X X# For batch building, build all dictionaries X.if defined(BATCH) XWITH_DICT_ALL=yes X.endif X X# All available dictionaries XALLDICTS= AF_ZA BG CA CS CY_GB DA DE_AT DE_CH DE_DE EL EN_AU EN_CA \ X EN_NZ ES_ES ES_MX FO FR_FR GA GL HE_IL HR HU IA IT LA LT \ X LV_LV MI MS NB NL NN PL PT PT_BR RO RU SK SL SV \ X UK ZU_ZA X X# this dictionary requires special handling in do-install XBG_DICT= BG X X# Build and install all dictionaries X.if defined(WITH_DICT_ALL) X.for f in ${ALLDICTS} XWITH_DICT_${f}= yes X.endfor X.endif X X# Figure out which distfiles to use, and how to construct the plist X.for f in ${ALLDICTS} X.ifdef(WITH_DICT_${f}) XPLIST_SUB+= ${f}="" XHAVE_DICT= yes XDISTFILES+= ${${f}_FILE} X.else XPLIST_SUB+= ${f}="@comment " X.endif X.endfor X X# Extract the relevant distfiles Xdo-extract: X @${MKDIR} ${WRKSRC} X.for f in ${ALLDICTS} X.ifdef(WITH_DICT_${f}) X @${UNZIP_CMD} -q ${DISTDIR}/${DIST_SUBDIR}/${${f}_FILE} -d ${WRKSRC}/${${f}_FILE} X.endif X.endfor X X# Check to make sure that at least one dictionary was selected Xdo-build: X.if !defined(HAVE_DICT) X @${ECHO_MSG} "No dictionary selected" X @${FALSE} X.else X @${DO_NADA} X.endif X X# Install the requested dictionaries Xdo-install: X @${MKDIR} ${PREFIX}/lib/thunderbird/components/myspell X.for f in ${ALLDICTS} X.ifdef(WITH_DICT_${f}) X.if ${BG_DICT}==${f} X @${INSTALL_DATA} \ X ${WRKSRC}/${${f}_FILE}/bin/components/myspell/${${f}_FILE:S/spell-//:S/xpi//}aff \ X ${PREFIX}/lib/thunderbird/components/myspell X @${INSTALL_DATA} \ X ${WRKSRC}/${${f}_FILE}/bin/components/myspell/${${f}_FILE:S/spell-//:S/xpi//}dic \ X ${PREFIX}/lib/thunderbird/components/myspell X.else X @${INSTALL_DATA} \ X ${WRKSRC}/${${f}_FILE}/${${f}_FILE:S/spell-//:S/xpi//}aff \ X ${PREFIX}/lib/thunderbird/components/myspell X @${INSTALL_DATA} \ X ${WRKSRC}/${${f}_FILE}/${${f}_FILE:S/spell-//:S/xpi//}dic \ X ${PREFIX}/lib/thunderbird/components/myspell X.endif X.endif X.endfor X X.include END-of-thunderbird-dictionaries/Makefile echo x - thunderbird-dictionaries/pkg-descr sed 's/^X//' >thunderbird-dictionaries/pkg-descr << 'END-of-thunderbird-dictionaries/pkg-descr' XLocalized Dictionaries for Mozilla Thunderbird X XWWW: http://www.mozilla.com/thunderbird/dictionaries.html END-of-thunderbird-dictionaries/pkg-descr echo x - thunderbird-dictionaries/pkg-plist sed 's/^X//' >thunderbird-dictionaries/pkg-plist << 'END-of-thunderbird-dictionaries/pkg-plist' X%%AF_ZA%%lib/thunderbird/components/myspell/af-ZA.aff X%%AF_ZA%%lib/thunderbird/components/myspell/af-ZA.dic X%%BG%%lib/thunderbird/components/myspell/bg.aff X%%BG%%lib/thunderbird/components/myspell/bg.dic X%%CA%%lib/thunderbird/components/myspell/ca.aff X%%CA%%lib/thunderbird/components/myspell/ca.dic X%%CS%%lib/thunderbird/components/myspell/cs.aff X%%CS%%lib/thunderbird/components/myspell/cs.dic X%%CY_GB%%lib/thunderbird/components/myspell/cy-GB.aff X%%CY_GB%%lib/thunderbird/components/myspell/cy-GB.dic X%%DA%%lib/thunderbird/components/myspell/da.aff X%%DA%%lib/thunderbird/components/myspell/da.dic X%%DE_AT%%lib/thunderbird/components/myspell/de-AT.aff X%%DE_AT%%lib/thunderbird/components/myspell/de-AT.dic X%%DE_CH%%lib/thunderbird/components/myspell/de-CH.aff X%%DE_CH%%lib/thunderbird/components/myspell/de-CH.dic X%%DE_DE%%lib/thunderbird/components/myspell/de-DE.aff X%%DE_DE%%lib/thunderbird/components/myspell/de-DE.dic X%%EL%%lib/thunderbird/components/myspell/el.aff X%%EL%%lib/thunderbird/components/myspell/el.dic X%%EN_AU%%lib/thunderbird/components/myspell/en-AU.aff X%%EN_AU%%lib/thunderbird/components/myspell/en-AU.dic X%%EN_CA%%lib/thunderbird/components/myspell/en-CA.aff X%%EN_CA%%lib/thunderbird/components/myspell/en-CA.dic X%%EN_NZ%%lib/thunderbird/components/myspell/en-NZ.aff X%%EN_NZ%%lib/thunderbird/components/myspell/en-NZ.dic X%%ES_ES%%lib/thunderbird/components/myspell/es-ES.aff X%%ES_ES%%lib/thunderbird/components/myspell/es-ES.dic X%%ES_MX%%lib/thunderbird/components/myspell/es-MX.aff X%%ES_MX%%lib/thunderbird/components/myspell/es-MX.dic X%%FO%%lib/thunderbird/components/myspell/fo.aff X%%FO%%lib/thunderbird/components/myspell/fo.dic X%%FR_FR%%lib/thunderbird/components/myspell/fr-FR.aff X%%FR_FR%%lib/thunderbird/components/myspell/fr-FR.dic X%%GA%%lib/thunderbird/components/myspell/ga.aff X%%GA%%lib/thunderbird/components/myspell/ga.dic X%%GL%%lib/thunderbird/components/myspell/gl.aff X%%GL%%lib/thunderbird/components/myspell/gl.dic X%%HE_IL%%lib/thunderbird/components/myspell/he-IL.aff X%%HE_IL%%lib/thunderbird/components/myspell/he-IL.dic X%%HR%%lib/thunderbird/components/myspell/hr.aff X%%HR%%lib/thunderbird/components/myspell/hr.dic X%%HU%%lib/thunderbird/components/myspell/hu.aff X%%HU%%lib/thunderbird/components/myspell/hu.dic X%%IA%%lib/thunderbird/components/myspell/ia.aff X%%IA%%lib/thunderbird/components/myspell/ia.dic X%%IT%%lib/thunderbird/components/myspell/it.aff X%%IT%%lib/thunderbird/components/myspell/it.dic X%%LA%%lib/thunderbird/components/myspell/la.aff X%%LA%%lib/thunderbird/components/myspell/la.dic X%%LT%%lib/thunderbird/components/myspell/lt.aff X%%LT%%lib/thunderbird/components/myspell/lt.dic X%%LV_LV%%lib/thunderbird/components/myspell/lv-LV.aff X%%LV_LV%%lib/thunderbird/components/myspell/lv-LV.dic X%%MI%%lib/thunderbird/components/myspell/mi.aff X%%MI%%lib/thunderbird/components/myspell/mi.dic X%%MS%%lib/thunderbird/components/myspell/ms.aff X%%MS%%lib/thunderbird/components/myspell/ms.dic X%%NB%%lib/thunderbird/components/myspell/nb.aff X%%NB%%lib/thunderbird/components/myspell/nb.dic X%%NL%%lib/thunderbird/components/myspell/nl.aff X%%NL%%lib/thunderbird/components/myspell/nl.dic X%%NN%%lib/thunderbird/components/myspell/nn.aff X%%NN%%lib/thunderbird/components/myspell/nn.dic X%%PL%%lib/thunderbird/components/myspell/pl.aff X%%PL%%lib/thunderbird/components/myspell/pl.dic X%%PT%%lib/thunderbird/components/myspell/pt.aff X%%PT%%lib/thunderbird/components/myspell/pt.dic X%%PT_BR%%lib/thunderbird/components/myspell/pt-BR.aff X%%PT_BR%%lib/thunderbird/components/myspell/pt-BR.dic X%%RO%%lib/thunderbird/components/myspell/ro.aff X%%RO%%lib/thunderbird/components/myspell/ro.dic X%%RU%%lib/thunderbird/components/myspell/ru.aff X%%RU%%lib/thunderbird/components/myspell/ru.dic X%%SK%%lib/thunderbird/components/myspell/sk.aff X%%SK%%lib/thunderbird/components/myspell/sk.dic X%%SL%%lib/thunderbird/components/myspell/sl.aff X%%SL%%lib/thunderbird/components/myspell/sl.dic X%%SV%%lib/thunderbird/components/myspell/sv.aff X%%SV%%lib/thunderbird/components/myspell/sv.dic X%%UK%%lib/thunderbird/components/myspell/uk.aff X%%UK%%lib/thunderbird/components/myspell/uk.dic X%%ZU_ZA%%lib/thunderbird/components/myspell/zu-ZU.aff X%%ZU_ZA%%lib/thunderbird/components/myspell/zu-ZU.dic END-of-thunderbird-dictionaries/pkg-plist exit --- thunderbird-dictionaries.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 07:44:10 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A6EC16A452; Sun, 19 Feb 2006 07:44:10 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34E0643D45; Sun, 19 Feb 2006 07:44:10 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J7iAkw081878; Sun, 19 Feb 2006 07:44:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J7iAw7081874; Sun, 19 Feb 2006 07:44:10 GMT (envelope-from edwin) Date: Sun, 19 Feb 2006 07:44:10 GMT From: Edwin Groothuis Message-Id: <200602190744.k1J7iAw7081874@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/93550: [new port] thunderbird-dictionaries X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 07:44:10 -0000 Synopsis: [new port] thunderbird-dictionaries Class-Changed-From-To: update->change-request Class-Changed-By: edwin Class-Changed-When: Sun Feb 19 07:44:09 UTC 2006 Class-Changed-Why: Fix category (new ports should be change-requests) http://www.freebsd.org/cgi/query-pr.cgi?pr=93550 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 08:20:05 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6092516A420 for ; Sun, 19 Feb 2006 08:20:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B7F943D4C for ; Sun, 19 Feb 2006 08:20:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J8K4MD083861 for ; Sun, 19 Feb 2006 08:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J8K4en083860; Sun, 19 Feb 2006 08:20:04 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 08:20:04 GMT Resent-Message-Id: <200602190820.k1J8K4en083860@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Timur I. Bakeyev" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DFBB16A494 for ; Sun, 19 Feb 2006 08:18:16 +0000 (GMT) (envelope-from timur@gnu.org) Received: from mail.bat.ru (dzokonda.xs4all.nl [194.109.164.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8915943D67 for ; Sun, 19 Feb 2006 08:18:14 +0000 (GMT) (envelope-from timur@gnu.org) Received: from timur.home.bat.ru (account timur [192.168.0.4] verified) by mail.bat.ru (CommuniGate Pro SMTP 4.2.7) with ESMTP id 705434 for FreeBSD-gnats-submit@freebsd.org; Sun, 19 Feb 2006 09:22:42 +0100 Message-Id: <1140337092.30523@timur.home.bat.ru> Date: Sun, 19 Feb 2006 09:18:12 +0100 From: "Timur I. Bakeyev" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: ports/93552: [MAINTAINER] Update of net/samba3 to 3.0.21b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 08:20:05 -0000 >Number: 93552 >Category: ports >Synopsis: [MAINTAINER] Update of net/samba3 to 3.0.21b >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: Sun Feb 19 08:20:03 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Timur I. Bakeyev >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD 6.0-STABLE #2: Sun Jan 8 03:29:17 CET 2006 root@timur.home.bat.ru:/usr/src/sys/i386/compile/COMMON >Description: Common bugs fixed in 3.0.21b include: o Server crashes in smbd. o Compile issues on 64-bit platforms. o Crash bugs on big-endian systems. o Packaging fixes for RHEL/Fedora, Solaris, & Debian. o Over 30 bugzilla reports closed. >How-To-Repeat: >Fix: --- samba3.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/samba3/Makefile,v retrieving revision 1.146 diff -u -r1.146 Makefile --- Makefile 9 Jan 2006 16:45:33 -0000 1.146 +++ Makefile 19 Feb 2006 07:41:26 -0000 @@ -6,7 +6,7 @@ # PORTNAME= samba -PORTVERSION?= 3.0.21a +PORTVERSION?= 3.0.21b PORTREVISION?= 0 PORTEPOCH?= 1 CATEGORIES?= net @@ -20,7 +20,7 @@ CONFLICTS?= ja-samba-2.* ja-samba-3.* samba-2.* sharity-light-1.* USE_ICONV= yes -#GNU_CONFIGURE= yes +GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf:259 autoheader:259 LATEST_LINK?= ${PKGNAMEPREFIX}${PORTNAME}3${PKGNAMESUFFIX} @@ -36,7 +36,8 @@ SAMBA_PRIVATE?= ${PREFIX}/private SAMBA_CONFDIR?= ${PREFIX}/etc SAMBA_SWATDIR= ${PREFIX}/share/swat -SAMBA_LIBDIR= ${PREFIX}/lib +SAMBA_LIB= lib +SAMBA_LIBDIR= ${PREFIX}/${SAMBA_LIB} RC_DIR= ${PREFIX}/etc/rc.d SAMBA_CONFIG= ${SAMBA_CONFDIR}/smb.conf @@ -54,24 +55,7 @@ CONFIGURE_ARGS+= --with-libiconv=${LOCALBASE} -.if defined(SAMBA_SUBPORT) -# Switch off all extra functionality -CONFIGURE_ARGS+= --disable-cups - -CONFIGURE_ARGS+= --without-ldap -CONFIGURE_ARGS+= --without-krb5 -CONFIGURE_ARGS+= --without-ads - -CONFIGURE_ARGS+= --without-winbind - -CONFIGURE_ARGS+= --without-syslog -CONFIGURE_ARGS+= --without-quotas -CONFIGURE_ARGS+= --without-utmp -CONFIGURE_ARGS+= --without-ldapsam -CONFIGURE_ARGS+= --without-pam -CONFIGURE_ARGS+= --without-pam_smbpass -CONFIGURE_ARGS+= --without-aio-support -.else +.if !defined(SAMBA_SUBPORT) # Samba server itself OPTIONS= LDAP "With LDAP support" on \ ADS "With Active Directory support" off \ @@ -94,8 +78,19 @@ .include -.if !defined(SAMBA_SUBPORT) +.if defined(SAMBA_SUBPORT) +# Switch off all extra functionality +CONFIGURE_ARGS+= --disable-cups --without-winbind --without-syslog \ + --without-quotas --without-utmp --without-ldapsam \ + --without-pam --without-pam_smbpass --without-aio-support + +# Dirty hack to work around usage of OPTIONS in slave ports +.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) +.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" +.endif +.else +# Samba server itself USE_RC_SUBR= yes CONFIGURE_ARGS+= --with-pam --with-readline --with-sendfile-support \ @@ -187,7 +182,7 @@ .endif .if defined(WANT_EXPSAM_MODULES) && !empty(WANT_EXPSAM_MODULES) -WANT_EXPSAM_MODULES!= ${ECHO_CMD} ${WANT_EXPSAM_MODULES} | ${SED} -e 's/ /,/g' +WANT_EXPSAM_MODULES!= ${ECHO_CMD} ${WANT_EXPSAM_MODULES} | ${SED} -E 's/ +/,/g' CONFIGURE_ARGS+= --with-expsam=${WANT_EXPSAM_MODULES} .endif # SAM @@ -195,7 +190,7 @@ .if !defined(WANT_EXP_MODULES) || empty(WANT_EXP_MODULES) WANT_EXP_MODULES= rpc_echo idmap_ad idmap_rid charset_weird .endif -WANT_EXP_MODULES!= ${ECHO_CMD} ${WANT_EXP_MODULES} | ${SED} -e 's/ /,/g' +WANT_EXP_MODULES!= ${ECHO_CMD} ${WANT_EXP_MODULES} | ${SED} -E 's/ +/,/g' CONFIGURE_ARGS+= --with-shared-modules=${WANT_EXP_MODULES} .endif @@ -225,7 +220,12 @@ .else CONFIGURE_ARGS+= --with-included-popt .endif +# !SAMBA_SUBPORT +.endif +### +### Common part for port and it's subports +### # For 4.8 - 4.11 combination of Kerberos and OpenLDAP is broken # due the conflict between system and OpenSSL port libcrypto libraries .if ${OSVERSION} > 470103 && ${OSVERSION} < 500000 @@ -265,6 +265,8 @@ CONFIGURE_ARGS+= --without-ldap .endif +.if !defined(SAMBA_SUBPORT) +# Samba server itself MAN1= findsmb.1 log2pcap.1 nmblookup.1 ntlm_auth.1 profiles.1 \ rpcclient.1 smbcacls.1 smbclient.1 smbcontrol.1 smbcquotas.1 \ smbget.1 smbsh.1 smbstatus.1 smbtar.1 smbtree.1 testparm.1 \ @@ -316,7 +318,7 @@ @${FIND} ${WRKDIR}/${DISTNAME} -type f | ${XARGS} ${CHMOD} u+w,a+r pre-install: - -@${FIND} ${SAMBA_LIBDIR} -type f 2>/dev/null | ${SORT} | ${SED} -e 's|^${PREFIX}||; s|^/||' >> ${WRKDIR}/.PLIST.exclude + -@${FIND} ${SAMBA_LIBDIR}/samba -type f 2>/dev/null | ${SORT} | ${SED} -E 's|^${PREFIX}/?||;' >> ${WRKDIR}/.PLIST.exclude post-install: .for sect in 1 5 7 8 @@ -342,14 +344,18 @@ .if defined(WITH_WINBIND_NSS) ${INSTALL_PROGRAM} ${WRKSRC}/nsswitch/nss_winbind.so ${SAMBA_LIBDIR}/nss_winbind.so.1 ${INSTALL_PROGRAM} ${WRKSRC}/nsswitch/nss_wins.so ${SAMBA_LIBDIR}/nss_wins.so.1 + ${ECHO_CMD} "${SAMBA_LIB}/nss_winbind.so.1" >> ${TMPPLIST}; + ${ECHO_CMD} "${SAMBA_LIB}/nss_wins.so.1" >> ${TMPPLIST}; .endif ${INSTALL_PROGRAM} ${WRKSRC}/nsswitch/pam_winbind.so ${SAMBA_LIBDIR} + ${ECHO_CMD} "${SAMBA_LIB}/pam_winbind.so" >> ${TMPPLIST}; .endif .if defined(WITH_PAM_SMBPASS) @${INSTALL_PROGRAM} ${WRKSRC}/bin/pam_smbpass.so ${SAMBA_LIBDIR} + ${ECHO_CMD} "${SAMBA_LIB}/pam_smbpass.so" >> ${TMPPLIST}; .endif # Lib - @${FIND} ${SAMBA_LIBDIR} -type f | ${SED} -e 's|^${PREFIX}||; s|^/||' | ${EGREP} -F -v -f ${WRKDIR}/.PLIST.exclude | ${SORT} >> ${TMPPLIST} + @${FIND} ${SAMBA_LIBDIR}/samba -type f | ${SED} -E 's|^${PREFIX}/?||;' | ${EGREP} -F -v -f ${WRKDIR}/.PLIST.exclude | ${SORT} >> ${TMPPLIST} @for d in `${FIND} ${SAMBA_LIBDIR}/samba -type d | ${SORT} -r`; do \ ${ECHO_CMD} "@unexec ${RMDIR} $$d 2>/dev/null || true" >> ${TMPPLIST}; \ done Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/samba3/distinfo,v retrieving revision 1.67 diff -u -r1.67 distinfo --- distinfo 9 Jan 2006 16:45:33 -0000 1.67 +++ distinfo 12 Feb 2006 18:48:04 -0000 @@ -1,3 +1,3 @@ -MD5 (samba-3.0.21a.tar.gz) = b5306d2681e97e4499daf7845581d116 -SHA256 (samba-3.0.21a.tar.gz) = 8f4902db38b20601cc3315fe9516a9380b067678c5a6828bd67e5a8bc46b097c -SIZE (samba-3.0.21a.tar.gz) = 17524018 +MD5 (samba-3.0.21b.tar.gz) = bb73dffb33f4a39386ef9f3e07ae28ff +SHA256 (samba-3.0.21b.tar.gz) = a5e6982024105276d347b3b521897d6937c727e273814e743ada8eddf972e7d0 +SIZE (samba-3.0.21b.tar.gz) = 17539079 Index: files/patch-configure.in =================================================================== RCS file: /home/ncvs/ports/net/samba3/files/patch-configure.in,v retrieving revision 1.14 diff -u -r1.14 patch-configure.in --- files/patch-configure.in 9 Jan 2006 16:45:33 -0000 1.14 +++ files/patch-configure.in 19 Feb 2006 06:00:54 -0000 @@ -1,6 +1,6 @@ ---- configure.in.orig Tue Jul 12 18:42:55 2005 -+++ configure.in Tue Jul 26 19:19:40 2005 -@@ -909,6 +909,21 @@ +--- configure.in.orig Mon Jan 30 15:45:07 2006 ++++ configure.in Sun Feb 19 07:00:42 2006 +@@ -967,6 +967,21 @@ AC_DEFINE(HAVE_SIG_ATOMIC_T_TYPE,1,[Whether we have the atomic_t variable type]) fi @@ -15,52 +15,10 @@ + samba_cv_struct_sigevent=yes,samba_cv_struct_sigevent=no)]) +if test x"$samba_cv_struct_sigevent" = x"yes"; then + AC_DEFINE(HAVE_STRUCT_SIGEVENT,1,[Whether we have the struct sigevent]) -+ AC_CHECK_MEMBERS([struct sigevent.sigev_value.sival_ptr,struct sigevent.sigev_value.sigval_ptr],,, ++ AC_CHECK_MEMBERS([struct sigevent.sigev_value.sival_ptr,struct sigevent.sigev_value.sigval_ptr], , , + [#include ]) +fi + AC_CACHE_CHECK([for struct timespec type],samba_cv_struct_timespec, [ AC_TRY_COMPILE([ #include -@@ -4104,30 +4119,28 @@ - - case "$host_os" in - *) -- AC_CHECK_LIB(rt,aio_read,[AIO_LIBS="$ACL_LIBS -lrt"]) -+ ac_cv_save_LIBS=$LIBS -+ AC_SEARCH_LIBS(aio_read, [rt], [ -+ if test "$ac_cv_search_aio_read" != "none required"; then -+ LIBS="$LIBS $ac_cv_search_aio_read" -+ fi -+ ]) - AC_CACHE_CHECK([for asynchronous io support],samba_cv_HAVE_AIO,[ -- aio_LIBS=$LIBS -- LIBS="$LIBS -lrt" - AC_TRY_LINK([#include - #include ], - [ struct aiocb a; return aio_read(&a);], --samba_cv_HAVE_AIO=yes,samba_cv_HAVE_AIO=no) -- LIBS=$aio_LIBS]) -+samba_cv_HAVE_AIO=yes,samba_cv_HAVE_AIO=no)]) - AC_CACHE_CHECK([for 64-bit asynchronous io support],samba_cv_HAVE_AIO64,[ -- aio_LIBS=$LIBS -- LIBS="$LIBS -lrt" - AC_TRY_LINK([#include - #include ], - [ struct aiocb64 a; return aio_read64(&a);], --samba_cv_HAVE_AIO64=yes,samba_cv_HAVE_AIO64=no) -- LIBS=$aio_LIBS]) -+samba_cv_HAVE_AIO64=yes,samba_cv_HAVE_AIO64=no)]) -+ - if test x"$samba_cv_HAVE_AIO64" = x"yes"; then - AC_DEFINE(HAVE_AIOCB64,1,[Whether 64 bit aio is available]) -- AC_DEFINE(WITH_AIO, 1, [Using asynchronous io]) -- LIBS="$LIBS -lrt" -+ AC_DEFINE(WITH_AIO,1,[Using asynchronous io]) - elif test x"$samba_cv_HAVE_AIO" = x"yes"; then -- AC_DEFINE(WITH_AIO, 1, [Using asynchronous io]) -- LIBS="$LIBS -lrt" -+ AC_DEFINE(WITH_AIO,1,[Using asynchronous io]) - fi - ;; - esac --- samba3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 08:30:09 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7D1716A420 for ; Sun, 19 Feb 2006 08:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 596BE43D49 for ; Sun, 19 Feb 2006 08:30:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J8U8ST084149 for ; Sun, 19 Feb 2006 08:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J8U8fo084148; Sun, 19 Feb 2006 08:30:08 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 08:30:08 GMT Resent-Message-Id: <200602190830.k1J8U8fo084148@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Timur I. Bakeyev" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E7FB16A420 for ; Sun, 19 Feb 2006 08:21:29 +0000 (GMT) (envelope-from timur@gnu.org) Received: from mail.bat.ru (dzokonda.xs4all.nl [194.109.164.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87F4543D46 for ; Sun, 19 Feb 2006 08:21:28 +0000 (GMT) (envelope-from timur@gnu.org) Received: from timur.home.bat.ru (account timur [192.168.0.4] verified) by mail.bat.ru (CommuniGate Pro SMTP 4.2.7) with ESMTP id 705438 for FreeBSD-gnats-submit@freebsd.org; Sun, 19 Feb 2006 09:25:57 +0100 Message-Id: <1140337287.30527@timur.home.bat.ru> Date: Sun, 19 Feb 2006 09:21:27 +0100 From: "Timur I. Bakeyev" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: ports/93553: [MAINTAINER] Update of net/samba-libsmbclient to 3.0.21b X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 08:30:10 -0000 >Number: 93553 >Category: ports >Synopsis: [MAINTAINER] Update of net/samba-libsmbclient to 3.0.21b >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: Sun Feb 19 08:30:07 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Timur I. Bakeyev >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD 6.0-STABLE #2: Sun Jan 8 03:29:17 CET 2006 root@timur.home.bat.ru:/usr/src/sys/i386/compile/COMMON >Description: Update of a slave samba3 port and a bugfix for PR92619 >How-To-Repeat: >Fix: --- samba-libsmbclient.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/samba-libsmbclient/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 9 Jan 2006 17:04:00 -0000 1.23 +++ Makefile 16 Feb 2006 21:55:50 -0000 @@ -21,60 +21,8 @@ INSTALLS_SHLIB= yes -# We WANT shared libs -CONFIGURE_ARGS+= --with-libsmbclient -SAMBA_INSTALL_LIBS= libsmbclient - -.if defined(WITH_SHAREMODES) -CONFIGURE_ARGS+= --with-libsmbsharemodes -SAMBA_INSTALL_LIBS+= libsmbsharemodes -PLIST_SUB+= SHAREMODES="" -.else -PLIST_SUB+= SHAREMODES="@comment " -.endif - -.if defined(WITH_MSRPC) -CONFIGURE_ARGS+= --with-libmsrpc -SAMBA_INSTALL_LIBS+= libmsrpc -PLIST_SUB+= MSRPC="" -.else -PLIST_SUB+= MSRPC="@comment " -.endif -# Don't check for python presence -CONFIGURE_ARGS+= --without-python - -MAN7= libsmbclient.7 - -do-build: - cd ${WRKSRC} && ${MAKE} proto - cd ${WRKSRC} && ${MAKE} libsmbclient -.if defined(WITH_SHAREMODES) - cd ${WRKSRC} && ${MAKE} libsmbsharemodes -.endif -.if defined(WITH_MSRPC) - cd ${WRKSRC} && ${MAKE} cac -.endif - -do-install: - -@${MKDIR} ${MAN8PREFIX}/man/man7 -.for man in ${MAN7} - ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/manpages/${man} ${MAN7PREFIX}/man/man7 -.endfor - -@${MKDIR} ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/include/libsmbclient.h ${PREFIX}/include -.if defined(WITH_MSRPC) - ${INSTALL_DATA} ${WRKSRC}/include/libmsrpc.h ${PREFIX}/include -.endif - -@${MKDIR} ${PREFIX}/lib -.for lib in ${SAMBA_INSTALL_LIBS} - ${INSTALL_SCRIPT} ${WRKSRC}/bin/${lib}.a ${PREFIX}/lib - ${INSTALL_SCRIPT} ${WRKSRC}/bin/${lib}.so ${PREFIX}/lib/${lib}.so.0 - ${LN} -snf ${lib}.so.0 ${PREFIX}/lib/${lib}.so -.endfor - -@${MKDIR} ${EXAMPLESDIR} - @${CP} -Rp ${WRKDIR}/${DISTNAME}/examples/libsmbclient ${EXAMPLESDIR} -.if defined(WITH_MSRPC) - @${CP} -Rp ${WRKDIR}/${DISTNAME}/examples/libmsrpc ${EXAMPLESDIR} -.endif +OPTIONS= ADS "With Active Directory support" off \ + MSRPC "Build the libmsrpc shared library" off \ + SHAREMODES "Build the libsharemods shared library" off .include "${MASTERDIR}/Makefile" Index: Makefile.inc =================================================================== RCS file: Makefile.inc diff -N Makefile.inc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile.inc 18 Feb 2006 04:27:15 -0000 @@ -0,0 +1,55 @@ +# Don't check for python presence +CONFIGURE_ARGS+= --without-python +# We WANT shared libs +CONFIGURE_ARGS+= --with-libsmbclient +SAMBA_INSTALL_LIBS= libsmbclient + +.if defined(WITH_MSRPC) +CONFIGURE_ARGS+= --with-libmsrpc +SAMBA_INSTALL_LIBS+= libmsrpc +PLIST_SUB+= MSRPC="" +.else +PLIST_SUB+= MSRPC="@comment " +.endif + +.if defined(WITH_SHAREMODES) +CONFIGURE_ARGS+= --with-libsmbsharemodes +SAMBA_INSTALL_LIBS+= libsmbsharemodes +PLIST_SUB+= SHAREMODES="" +.else +PLIST_SUB+= SHAREMODES="@comment " +.endif + +MAN7= libsmbclient.7 + +do-build: + cd ${WRKSRC} && ${MAKE} proto + cd ${WRKSRC} && ${MAKE} libsmbclient +.if defined(WITH_MSRPC) + cd ${WRKSRC} && ${MAKE} cac +.endif +.if defined(WITH_SHAREMODES) + cd ${WRKSRC} && ${MAKE} libsmbsharemodes +.endif + +do-install: + -@${MKDIR} ${MAN8PREFIX}/man/man7 +.for man in ${MAN7} + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/manpages/${man} ${MAN7PREFIX}/man/man7 +.endfor + -@${MKDIR} ${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/include/libsmbclient.h ${PREFIX}/include +.if defined(WITH_MSRPC) + ${INSTALL_DATA} ${WRKSRC}/include/libmsrpc.h ${PREFIX}/include +.endif + -@${MKDIR} ${PREFIX}/lib +.for lib in ${SAMBA_INSTALL_LIBS} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/${lib}.a ${PREFIX}/lib + ${INSTALL_SCRIPT} ${WRKSRC}/bin/${lib}.so ${PREFIX}/lib/${lib}.so.0 + ${LN} -snf ${lib}.so.0 ${PREFIX}/lib/${lib}.so +.endfor + -@${MKDIR} ${EXAMPLESDIR} + @${CP} -Rp ${WRKDIR}/${DISTNAME}/examples/libsmbclient ${EXAMPLESDIR} +.if defined(WITH_MSRPC) + @${CP} -Rp ${WRKDIR}/${DISTNAME}/examples/libmsrpc ${EXAMPLESDIR} +.endif Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/net/samba-libsmbclient/pkg-descr,v retrieving revision 1.4 diff -u -r1.4 pkg-descr --- pkg-descr 9 Jan 2006 16:51:54 -0000 1.4 +++ pkg-descr 16 Feb 2006 18:14:58 -0000 @@ -1,4 +1,4 @@ This is the set of shared libraries from the Samba port. It lets other -programs to utialize various aspects of the SMB protocol. +programs to utilize various aspects of the SMB protocol. WWW: http://www.samba.org/ Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/samba-libsmbclient/pkg-plist,v retrieving revision 1.5 diff -u -r1.5 pkg-plist --- pkg-plist 9 Jan 2006 16:51:54 -0000 1.5 +++ pkg-plist 16 Feb 2006 19:53:47 -0000 @@ -52,6 +52,9 @@ %%EXAMPLESDIR%%/libsmbclient/get_auth_data_fn.h %%EXAMPLESDIR%%/libsmbclient/smbwrapper/Makefile %%EXAMPLESDIR%%/libsmbclient/smbwrapper/README +%%EXAMPLESDIR%%/libsmbclient/smbwrapper/bsd-strlcat.c +%%EXAMPLESDIR%%/libsmbclient/smbwrapper/bsd-strlcpy.c +%%EXAMPLESDIR%%/libsmbclient/smbwrapper/bsd-strlfunc.h %%EXAMPLESDIR%%/libsmbclient/smbwrapper/opendir_smbsh.c %%EXAMPLESDIR%%/libsmbclient/smbwrapper/select.c %%EXAMPLESDIR%%/libsmbclient/smbwrapper/smbsh.c @@ -68,6 +71,7 @@ %%EXAMPLESDIR%%/libsmbclient/testread.c %%EXAMPLESDIR%%/libsmbclient/testsmbc.c %%EXAMPLESDIR%%/libsmbclient/teststat.c +%%EXAMPLESDIR%%/libsmbclient/teststat2.c %%EXAMPLESDIR%%/libsmbclient/testutime.c %%EXAMPLESDIR%%/libsmbclient/tree.c @dirrm %%EXAMPLESDIR%%/libsmbclient/smbwrapper --- samba-libsmbclient.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 19 08:30:10 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9704B16A420 for ; Sun, 19 Feb 2006 08:30:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37D6243D48 for ; Sun, 19 Feb 2006 08:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1J8U93d084214 for ; Sun, 19 Feb 2006 08:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1J8U9N2084211; Sun, 19 Feb 2006 08:30:09 GMT (envelope-from gnats) Resent-Date: Sun, 19 Feb 2006 08:30:09 GMT Resent-Message-Id: <200602190830.k1J8U9N2084211@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Babak Farrokhi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ED7216A423 for ; Sun, 19 Feb 2006 08:21:45 +0000 (GMT) (envelope-from farrokhi@royalway.propagation.net) Received: from royalway.propagation.net (royalway.propagation.net [66.221.228.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C63243D45 for ; Sun, 19 Feb 2006 08:21:44 +0000 (GMT) (envelope-from farrokhi@royalway.propagation.net) Received: from localhost (localhost [127.0.0.1]) by royalway.propagation.net (Postfix) with ESMTP id EE1ED56422 for ; Sun, 19 Feb 2006 02:21:45 -0600 (CST) Received: from royalway.propagation.net ([127.0.0.1]) by localhost (royalway.propagation.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 90487-06 for ; Sun, 19 Feb 2006 02:21:42 -0600 (CST) Received: by royalway.propagation.net (Postfix, from userid 1002) id A150B56420; Sun, 19 Feb 2006 02:21:42 -0600 (CST) Message-Id: <20060219082142.A150B56420@royalway.propagation.net> Date: Sun, 19 Feb 2006 02:21:42 -0600 (CST) From: Babak Farrokhi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/93554: [Maintainer Update] port www/pmwiki - fix pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Babak Farrokhi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2006 08:30:10 -0000 >Number: 93554 >Category: ports >Synopsis: [Maintainer Update] port www/pmwiki - fix pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 19 08:30:08 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Babak Farrokhi >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD royalway.propagation.net 5.4-STABLE FreeBSD 5.4-STABLE #6: Thu Jun 30 05:11:17 CDT 2005 root@royalway.propagation.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: - fix plist >How-To-Repeat: >Fix: --- pmwiki.patch begins here --- diff -ruN pmwiki.orig/pkg-plist pmwiki/pkg-plist --- pmwiki.orig/pkg-plist Sun Jan 29 17:53:52 2006 +++ pmwiki/pkg-plist Sun Feb 19 11:28:31 2006 @@ -1,177 +1,178 @@ -www/data/pmwiki/COPYING -www/data/pmwiki/cookbook/.cvsignore -www/data/pmwiki/cookbook/.htaccess -www/data/pmwiki/local/.htaccess -www/data/pmwiki/pmwiki.php -www/data/pmwiki/pub/guiedit/README -www/data/pmwiki/pub/guiedit/attach.gif -www/data/pmwiki/pub/guiedit/big.gif -www/data/pmwiki/pub/guiedit/center.gif -www/data/pmwiki/pub/guiedit/em.gif -www/data/pmwiki/pub/guiedit/extlink.gif -www/data/pmwiki/pub/guiedit/guiedit.js -www/data/pmwiki/pub/guiedit/h.gif -www/data/pmwiki/pub/guiedit/h1.gif -www/data/pmwiki/pub/guiedit/h2.gif -www/data/pmwiki/pub/guiedit/h3.gif -www/data/pmwiki/pub/guiedit/hr.gif -www/data/pmwiki/pub/guiedit/indent.gif -www/data/pmwiki/pub/guiedit/math.gif -www/data/pmwiki/pub/guiedit/ol.gif -www/data/pmwiki/pub/guiedit/outdent.gif -www/data/pmwiki/pub/guiedit/pagelink.gif -www/data/pmwiki/pub/guiedit/right.gif -www/data/pmwiki/pub/guiedit/small.gif -www/data/pmwiki/pub/guiedit/spellcheck.gif -www/data/pmwiki/pub/guiedit/strong.gif -www/data/pmwiki/pub/guiedit/sub.gif -www/data/pmwiki/pub/guiedit/sup.gif -www/data/pmwiki/pub/guiedit/table.gif -www/data/pmwiki/pub/guiedit/ul.gif -www/data/pmwiki/pub/guiedit/underline.gif -www/data/pmwiki/pub/skins/pmwiki/README -www/data/pmwiki/pub/skins/pmwiki/pmwiki-32.gif -www/data/pmwiki/pub/skins/pmwiki/pmwiki.css -www/data/pmwiki/pub/skins/pmwiki/pmwiki.tmpl -www/data/pmwiki/pub/skins/print/README -www/data/pmwiki/pub/skins/print/print.css -www/data/pmwiki/pub/skins/print/print.php -www/data/pmwiki/pub/skins/print/print.tmpl -www/data/pmwiki/sample-config.php -www/data/pmwiki/scripts/author.php -www/data/pmwiki/scripts/authuser.php -www/data/pmwiki/scripts/compat1x.php -www/data/pmwiki/scripts/crypt.php -www/data/pmwiki/scripts/diag.php -www/data/pmwiki/scripts/forms.php -www/data/pmwiki/scripts/guiedit.php -www/data/pmwiki/scripts/httpauth.php -www/data/pmwiki/scripts/intermap.txt -www/data/pmwiki/scripts/mailposts.php -www/data/pmwiki/scripts/pagelist.php -www/data/pmwiki/scripts/pagerev.php -www/data/pmwiki/scripts/pgcust.php -www/data/pmwiki/scripts/phpdiff.php -www/data/pmwiki/scripts/prefs.php -www/data/pmwiki/scripts/refcount.php -www/data/pmwiki/scripts/rss.php -www/data/pmwiki/scripts/simuledit.php -www/data/pmwiki/scripts/skins.php -www/data/pmwiki/scripts/stdconfig.php -www/data/pmwiki/scripts/stdmarkup.php -www/data/pmwiki/scripts/trails.php -www/data/pmwiki/scripts/transition.php -www/data/pmwiki/scripts/upload.php -www/data/pmwiki/scripts/urlapprove.php -www/data/pmwiki/scripts/vardoc.php -www/data/pmwiki/scripts/version.php -www/data/pmwiki/scripts/wikistyles.php -www/data/pmwiki/scripts/xlpage-utf-8.php -www/data/pmwiki/wikilib.d/Main.GroupAttributes -www/data/pmwiki/wikilib.d/Main.HomePage -www/data/pmwiki/wikilib.d/Main.WikiSandbox -www/data/pmwiki/wikilib.d/PmWiki.AdvancedTables -www/data/pmwiki/wikilib.d/PmWiki.Audiences -www/data/pmwiki/wikilib.d/PmWiki.AvailableActions -www/data/pmwiki/wikilib.d/PmWiki.BasicEditing -www/data/pmwiki/wikilib.d/PmWiki.BasicVariables -www/data/pmwiki/wikilib.d/PmWiki.Categories -www/data/pmwiki/wikilib.d/PmWiki.ChangeLog -www/data/pmwiki/wikilib.d/PmWiki.ChangesFromPmWiki1 -www/data/pmwiki/wikilib.d/PmWiki.ConditionalMarkup -www/data/pmwiki/wikilib.d/PmWiki.Contributors -www/data/pmwiki/wikilib.d/PmWiki.CreatingNewPages -www/data/pmwiki/wikilib.d/PmWiki.CustomInterMap -www/data/pmwiki/wikilib.d/PmWiki.CustomMarkup -www/data/pmwiki/wikilib.d/PmWiki.CustomWikiStyles -www/data/pmwiki/wikilib.d/PmWiki.DeletingPages -www/data/pmwiki/wikilib.d/PmWiki.DesignNotes -www/data/pmwiki/wikilib.d/PmWiki.DocumentationIndex -www/data/pmwiki/wikilib.d/PmWiki.EditVariables -www/data/pmwiki/wikilib.d/PmWiki.ErrorMessages -www/data/pmwiki/wikilib.d/PmWiki.FAQ -www/data/pmwiki/wikilib.d/PmWiki.FilePermissions -www/data/pmwiki/wikilib.d/PmWiki.FmtPageName -www/data/pmwiki/wikilib.d/PmWiki.Functions -www/data/pmwiki/wikilib.d/PmWiki.Glossary -www/data/pmwiki/wikilib.d/PmWiki.GroupAttributes -www/data/pmwiki/wikilib.d/PmWiki.GroupHeader -www/data/pmwiki/wikilib.d/PmWiki.GroupHeaders -www/data/pmwiki/wikilib.d/PmWiki.I18nVariables -www/data/pmwiki/wikilib.d/PmWiki.Images -www/data/pmwiki/wikilib.d/PmWiki.IncludeOtherPages -www/data/pmwiki/wikilib.d/PmWiki.InitialSetupTasks -www/data/pmwiki/wikilib.d/PmWiki.Installation -www/data/pmwiki/wikilib.d/PmWiki.InterMap -www/data/pmwiki/wikilib.d/PmWiki.Internationalizations -www/data/pmwiki/wikilib.d/PmWiki.LayoutVariables -www/data/pmwiki/wikilib.d/PmWiki.LinkVariables -www/data/pmwiki/wikilib.d/PmWiki.Links -www/data/pmwiki/wikilib.d/PmWiki.LocalCustomizations -www/data/pmwiki/wikilib.d/PmWiki.MailPosts -www/data/pmwiki/wikilib.d/PmWiki.MailingLists -www/data/pmwiki/wikilib.d/PmWiki.MarkupMasterIndex -www/data/pmwiki/wikilib.d/PmWiki.MarkupVariables -www/data/pmwiki/wikilib.d/PmWiki.OtherVariables -www/data/pmwiki/wikilib.d/PmWiki.PageDirectives -www/data/pmwiki/wikilib.d/PmWiki.PageFileFormat -www/data/pmwiki/wikilib.d/PmWiki.PageHistory -www/data/pmwiki/wikilib.d/PmWiki.Passwords -www/data/pmwiki/wikilib.d/PmWiki.PasswordsAdmin -www/data/pmwiki/wikilib.d/PmWiki.PathVariables -www/data/pmwiki/wikilib.d/PmWiki.PatrickMichaud -www/data/pmwiki/wikilib.d/PmWiki.PerGroupCustomizations -www/data/pmwiki/wikilib.d/PmWiki.PmWiki -www/data/pmwiki/wikilib.d/PmWiki.PmWikiPhilosophy -www/data/pmwiki/wikilib.d/PmWiki.RSS -www/data/pmwiki/wikilib.d/PmWiki.RefCount -www/data/pmwiki/wikilib.d/PmWiki.ReleaseNotes -www/data/pmwiki/wikilib.d/PmWiki.Requirements -www/data/pmwiki/wikilib.d/PmWiki.Security -www/data/pmwiki/wikilib.d/PmWiki.SimpleTables -www/data/pmwiki/wikilib.d/PmWiki.SimultaneousEdits -www/data/pmwiki/wikilib.d/PmWiki.SitePreferences -www/data/pmwiki/wikilib.d/PmWiki.SkinTemplates -www/data/pmwiki/wikilib.d/PmWiki.Skins -www/data/pmwiki/wikilib.d/PmWiki.TextFormattingRules -www/data/pmwiki/wikilib.d/PmWiki.Troubleshooting -www/data/pmwiki/wikilib.d/PmWiki.Upg